mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			57 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * help.php
 | |
|  * Copyright (c) 2018 thegrumpydictator@gmail.com
 | |
|  *
 | |
|  * This file is part of Firefly III.
 | |
|  *
 | |
|  * Firefly III is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU General Public License as published by
 | |
|  * the Free Software Foundation, either version 3 of the License, or
 | |
|  * (at your option) any later version.
 | |
|  *
 | |
|  * Firefly III is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU General Public License
 | |
|  * along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| declare(strict_types=1);
 | |
| 
 | |
| /**
 | |
|  * help.php
 | |
|  * Copyright (C) 2016 thegrumpydictator@gmail.com
 | |
|  *
 | |
|  * This software may be modified and distributed under the terms of the
 | |
|  * Creative Commons Attribution-ShareAlike 4.0 International License.
 | |
|  *
 | |
|  * See the LICENSE file for details.
 | |
|  */
 | |
| 
 | |
| return [
 | |
| 
 | |
|     // tour!
 | |
|     'main-content-title'     => 'Willkommen bei Firefly III',
 | |
|     'main-content-text'      => 'Tun Sie sich selbst einen Gefallen und folgen Sie dieser kurzen Tour, damit Sie wissen wie alles funktioniert.',
 | |
|     'sidebar-toggle-title'   => 'Sidebar um neuen Dinge zu erstellen',
 | |
|     'sidebar-toggle-text'    => 'Versteckt hinter dem Plus-Icon sind alle Schaltflächen zum Erstellen von neuen Dingen. Konten, Überweisungen, Alles!',
 | |
|     'account-menu-title'     => 'Alle Ihre Konten',
 | |
|     'account-menu-text'      => 'Hier finden Sie alle Konten, die Sie erstellt haben.',
 | |
|     'budget-menu-title'      => 'Budget',
 | |
|     'budget-menu-text'       => 'Nutzen Sie diese Seite um ihre Finanzen und Ausgabelimits zu organisieren.',
 | |
|     'report-menu-title'      => 'Berichte',
 | |
|     'report-menu-text'       => 'Schauen Sie hier nach, wenn Sie einen grundlegenden Überblick über ihre Finanzen erhalten wollen.',
 | |
|     'transaction-menu-title' => 'Überweisungen',
 | |
|     'transaction-menu-text'  => 'Alle Überweisungen, die Sie erstellt haben, finden Sie hier.',
 | |
|     'option-menu-title'      => 'Optionen',
 | |
|     'option-menu-text'       => 'Dies ist ziemlich selbsterklärend.',
 | |
|     'main-content-end-title' => 'Ende!',
 | |
|     'main-content-end-text'  => 'Denken Sie daran, dass jede Seite ein kleines Fragezeichen in der oberen rechten Ecke hat. Klicken Sie darauf um Hilfe zur aktuellen Seite zu erhalten.',
 | |
|     'index'                  => 'index',
 | |
|     'home'                   => 'home',
 | |
| ];
 |