mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			60 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | ||
| 
 | ||
| /**
 | ||
|  * breadcrumbs.php
 | ||
|  * Copyright (c) 2019 thegrumpydictator@gmail.com
 | ||
|  *
 | ||
|  * This file is part of Firefly III (https://github.com/firefly-iii).
 | ||
|  *
 | ||
|  * This program is free software: you can redistribute it and/or modify
 | ||
|  * it under the terms of the GNU Affero General Public License as
 | ||
|  * published by the Free Software Foundation, either version 3 of the
 | ||
|  * License, or (at your option) any later version.
 | ||
|  *
 | ||
|  * This program 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 Affero General Public License for more details.
 | ||
|  *
 | ||
|  * You should have received a copy of the GNU Affero General Public License
 | ||
|  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 | ||
|  */
 | ||
| 
 | ||
| declare(strict_types=1);
 | ||
| 
 | ||
| return [
 | ||
|     'home'                   => 'Αρχική',
 | ||
|     'edit_currency'          => 'Επεξεργασία νομίσματος ":name"',
 | ||
|     'delete_currency'        => 'Διαγραφή νομίσματος ":name"',
 | ||
|     'newPiggyBank'           => 'Δημιουργία ενός νέου κουμπαρά',
 | ||
|     'edit_piggyBank'         => 'Επεξεργασαία κουμπαρά ":name"',
 | ||
|     'preferences'            => 'Προτιμήσεις',
 | ||
|     'profile'                => 'Προφίλ',
 | ||
|     'changePassword'         => 'Αλλάξτε τον κωδικό σας',
 | ||
|     'change_email'           => 'Αλλάξτε τη διεύθυνση του email σας',
 | ||
|     'bills'                  => 'Λογαριασμοί',
 | ||
|     'newBill'                => 'Νέος λογαριασμός',
 | ||
|     'edit_bill'              => 'Επεξεργασία λογαριασμού ":name"',
 | ||
|     'delete_bill'            => 'Διαγραφή λογαριασμόυ ":name"',
 | ||
|     'reports'                => 'Αναφορές',
 | ||
|     'search_result'          => 'Αποτελέσματα αναζήτησης για ":query"',
 | ||
|     'withdrawal_list'        => 'Έξοδα',
 | ||
|     'Withdrawal_list'        => 'Έξοδα',
 | ||
|     'deposit_list'           => 'Έσοδα, εισόδημα και καταθέσεις',
 | ||
|     'transfer_list'          => 'Μεταφορές',
 | ||
|     'transfers_list'         => 'Μεταφορές',
 | ||
|     'reconciliation_list'    => 'Συμφωνίες',
 | ||
|     'create_withdrawal'      => 'Δημιουργία νέας ανάληψης',
 | ||
|     'create_deposit'         => 'Δημιουργία νέας κατάθεσης',
 | ||
|     'create_transfer'        => 'Δημιουργία νέας μεταφοράς',
 | ||
|     'create_new_transaction' => 'Δημιουργία μιας νέας συναλλαγής',
 | ||
|     'edit_journal'           => 'Επεξεργασία συναλλαγής ":description"',
 | ||
|     'edit_reconciliation'    => 'Επεξεργασία ":description"',
 | ||
|     'delete_journal'         => 'Διαγραφή συναλλαγής ":description"',
 | ||
|     'tags'                   => 'Ετικέτες',
 | ||
|     'createTag'              => 'Δημιουργία νέας ετικέτας',
 | ||
|     'edit_tag'               => 'Επεξεργασία ετικέτας ":tag"',
 | ||
|     'delete_tag'             => 'Διαγραφή ετικέτας ":tag"',
 | ||
|     'delete_journal_link'    => 'Διαγραφή συνδέσμου μεταξύ των συναλλαγών',
 | ||
| ];
 |