mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| declare(strict_types=1);
 | |
| 
 | |
| 
 | |
| /**
 | |
|  * breadcrumbs.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 [
 | |
|     'home'                => 'Inicio',
 | |
|     'edit_currency'       => 'Editar moneda ":name"',
 | |
|     'delete_currency'     => 'Eliminar moneda ":name"',
 | |
|     'newPiggyBank'        => 'Crear nueva alcancía',
 | |
|     'edit_piggyBank'      => 'Editar alcancía ":name"',
 | |
|     'preferences'         => 'Preferencias',
 | |
|     'profile'             => 'Perfil',
 | |
|     'changePassword'      => 'Cambiar contraseña',
 | |
|     'bills'               => 'Facturas',
 | |
|     'newBill'             => 'Nueva factura',
 | |
|     'edit_bill'           => 'Editar factura ":name"',
 | |
|     'delete_bill'         => 'Eliminar factura ":name"',
 | |
|     'reports'             => 'Reportes',
 | |
|     'search_result'       => 'Resultados de la búsqueda para ":query"',
 | |
|     'withdrawal_list'     => 'Gastos',
 | |
|     'deposit_list'        => 'Ganancia, ingresos y depósitos',
 | |
|     'transfer_list'       => 'Transferencias',
 | |
|     'transfers_list'      => 'Transferencias',
 | |
|     'create_withdrawal'   => 'Crear nuevo retiro',
 | |
|     'create_deposit'      => 'Crear nuevo depósito',
 | |
|     'create_transfer'     => 'Crear nueva transferencia',
 | |
|     'edit_journal'        => 'Editar transacción ":description"',
 | |
|     'delete_journal'      => 'Eliminar transacción ":description"',
 | |
|     'tags'                => 'Etiquetas',
 | |
|     'createTag'           => 'Crear nueva etiqueta',
 | |
|     'edit_tag'            => 'Editar etiqueta ":tag"',
 | |
|     'delete_tag'          => 'Eliminar etiqueta ":tag"',
 | |
|     'delete_journal_link' => 'Eliminar enlace entre transacciones',
 | |
| ];
 |