2017-05-07 21:24:07 -03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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',
|
|
|
|
|
'searchResult' => 'Buscar ":query"',
|
2017-05-25 16:00:11 +02:00
|
|
|
'withdrawal_list' => 'Gastos',
|
2017-05-07 21:24:07 -03:00
|
|
|
'deposit_list' => 'Ganancia, ingresos y depósitos',
|
|
|
|
|
'transfer_list' => 'Transferencias',
|
|
|
|
|
'transfers_list' => 'Transferencias',
|
2017-05-25 16:00:11 +02:00
|
|
|
'create_withdrawal' => 'Crear nuevo retiro',
|
2017-05-07 21:24:07 -03:00
|
|
|
'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"',
|
2017-05-25 16:00:11 +02:00
|
|
|
];
|