mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
	
	
		
			56 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			56 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
|   | <?php | ||
|  | declare(strict_types=1); | ||
|  | /** | ||
|  |  * breadcrumbs.php | ||
|  |  * Copyright (c) 2017 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/>. | ||
|  |  */ | ||
|  | 
 | ||
|  | return [ | ||
|  |     'home'                => 'Home', | ||
|  |     'edit_currency'       => 'Modifica valuta ":name"', | ||
|  |     'delete_currency'     => 'Elimina valuta ":name"', | ||
|  |     'newPiggyBank'        => 'Crea un nuovo salvadanaio', | ||
|  |     'edit_piggyBank'      => 'Modifica salvadanaio ":name"', | ||
|  |     'preferences'         => 'Preferenze', | ||
|  |     'profile'             => 'Profilo', | ||
|  |     'changePassword'      => 'Cambia la tua password', | ||
|  |     'change_email'        => 'Cambia il tuo indirizzo email', | ||
|  |     'bills'               => 'Fatture', | ||
|  |     'newBill'             => 'Nuova fattura', | ||
|  |     'edit_bill'           => 'Modifica fattura ":name"', | ||
|  |     'delete_bill'         => 'Elimina fattura ":name"', | ||
|  |     'reports'             => 'Stampe', | ||
|  |     'search_result'       => 'Risultati di ricerca per ":query"', | ||
|  |     'withdrawal_list'     => 'Spese', | ||
|  |     'deposit_list'        => 'Entrate, entrate e depositi', | ||
|  |     'transfer_list'       => 'Trasferimenti', | ||
|  |     'transfers_list'      => 'Trasferimenti', | ||
|  |     'reconciliation_list' => 'Riconciliazioni', | ||
|  |     'create_withdrawal'   => 'Crea nuovo prelievo', | ||
|  |     'create_deposit'      => 'Crea nuovo deposito', | ||
|  |     'create_transfer'     => 'Crea nuovo trasferimento', | ||
|  |     'edit_journal'        => 'Modifica transazione ":description"', | ||
|  |     'edit_reconciliation' => 'Modifica ":description"', | ||
|  |     'delete_journal'      => 'Elimina transazione ":description"', | ||
|  |     'tags'                => 'Etichette', | ||
|  |     'createTag'           => 'Crea nuova etichetta', | ||
|  |     'edit_tag'            => 'Modifica etichetta ":tag"', | ||
|  |     'delete_tag'          => 'Elimina etichetta ":tag"', | ||
|  |     'delete_journal_link' => 'Elimina il collegamento tra le transazioni', | ||
|  | ]; |