mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * breadcrumbs.php
 | |
|  * Copyright (c) 2019 james@firefly-iii.org
 | |
|  *
 | |
|  * 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'                   => 'Acasă',
 | |
|     'edit_currency'          => 'Editează moneda ":name"',
 | |
|     'delete_currency'        => 'Șterge moneda ":name"',
 | |
|     'newPiggyBank'           => 'Crează o nouă pușculiță',
 | |
|     'edit_piggyBank'         => 'Editează pușculița ":name"',
 | |
|     'preferences'            => 'Preferințe',
 | |
|     'profile'                => 'Profil',
 | |
|     'changePassword'         => 'Modificare parolă',
 | |
|     'change_email'           => 'Modificare adresă de email',
 | |
|     'bills'                  => 'Facturi',
 | |
|     'newBill'                => 'Factură nouă',
 | |
|     'edit_bill'              => 'Editează factura ":name"',
 | |
|     'delete_bill'            => 'Șterge factura ":name"',
 | |
|     'reports'                => 'Rapoarte',
 | |
|     'search_result'          => 'Rezultatele căutării ":query"',
 | |
|     'withdrawal_list'        => 'Cheltuieli',
 | |
|     'Withdrawal_list'        => 'Cheltuieli',
 | |
|     'deposit_list'           => 'Venituri și depozite',
 | |
|     'transfer_list'          => 'Transferuri',
 | |
|     'transfers_list'         => 'Transferuri',
 | |
|     'reconciliation_list'    => 'Reconcilieri',
 | |
|     'create_withdrawal'      => 'Crează o nouă retragere',
 | |
|     'create_deposit'         => 'Crează depozit nou',
 | |
|     'create_transfer'        => 'Crează transfer nou',
 | |
|     'create_new_transaction' => 'Creați o tranzacție nouă',
 | |
|     'edit_journal'           => 'Editează tranzacția ":description"',
 | |
|     'edit_reconciliation'    => 'Editează ":description"',
 | |
|     'delete_journal'         => 'Șterge tranzacția ":description"',
 | |
|     'delete_group'           => 'Delete transaction ":description"',
 | |
|     'tags'                   => 'Etichete',
 | |
|     'createTag'              => 'Crează o etichetă nouă',
 | |
|     'edit_tag'               => 'Editează eticheta ":tag"',
 | |
|     'delete_tag'             => 'Șterge eticheta ":tag"',
 | |
|     'delete_journal_link'    => 'Şterge legătura dintre tranzacţii',
 | |
|     'telemetry_index'        => 'Telemetry',
 | |
|     'telemetry_view'         => 'View telemetry',
 | |
| ];
 |