mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-16 18:25:00 -06:00
104 lines
4.1 KiB
PHP
104 lines
4.1 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/>.
|
|
*/
|
|
|
|
/*
|
|
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
*
|
|
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
*
|
|
* https://crowdin.com/project/firefly-iii
|
|
*
|
|
*/
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'home' => 'Inici',
|
|
'budgets' => 'Pressupostos',
|
|
'subscriptions' => 'Subscripcions',
|
|
'transactions' => 'Transaccions',
|
|
'title_expenses' => 'Despeses',
|
|
'title_withdrawal' => 'Despeses',
|
|
'title_revenue' => 'Ingressos / salari',
|
|
'title_deposit' => 'Ingressos / salari',
|
|
'title_transfer' => 'Transferències',
|
|
'title_transfers' => 'Transferències',
|
|
'edit_currency' => 'Edita la moneda ":name"',
|
|
'delete_currency' => 'Elimina la moneda ":name"',
|
|
'newPiggyBank' => 'Crea una guardiola nova',
|
|
'edit_piggyBank' => 'Edita la guardiola ":name"',
|
|
'preferences' => 'Preferències',
|
|
'profile' => 'Perfil',
|
|
'accounts' => 'Comptes',
|
|
'changePassword' => 'Canvia la teva contrasenya',
|
|
'change_email' => 'Canvia la teva adreça de correu',
|
|
'bills' => 'Factures',
|
|
'newBill' => 'Nova factura',
|
|
'edit_bill' => 'Edita la factura ":name"',
|
|
'delete_bill' => 'Elimina la factura ":name"',
|
|
'reports' => 'Informes',
|
|
'search_result' => 'Resultats de la cerca ":query"',
|
|
'withdrawal_list' => 'Despeses',
|
|
'Withdrawal_list' => 'Despeses',
|
|
'deposit_list' => 'Benefici, ingressos i dipòsits',
|
|
'transfer_list' => 'Transferències',
|
|
'transfers_list' => 'Transferències',
|
|
|
|
/*
|
|
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
*
|
|
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
*
|
|
* https://crowdin.com/project/firefly-iii
|
|
*
|
|
*/
|
|
|
|
|
|
'reconciliation_list' => 'Consolidacions',
|
|
'create_withdrawal' => 'Crea un nou reintegrament',
|
|
'create_deposit' => 'Crea un nou dipòsit',
|
|
'create_transfer' => 'Crea una nova transferència',
|
|
'create_new_transaction' => 'Crea una nova transacció',
|
|
'edit_journal' => 'Edita la transacció ":description"',
|
|
'edit_reconciliation' => 'Edita ":description"',
|
|
'delete_journal' => 'Elimina la transacció ":description"',
|
|
'delete_group' => 'Elimina la transacció ":description"',
|
|
'tags' => 'Etiquetes',
|
|
'createTag' => 'Crea una etiqueta nova',
|
|
'edit_tag' => 'Edita l\'etiqueta ":tag"',
|
|
'delete_tag' => 'Elimina l\'etiqueta ":tag"',
|
|
'delete_journal_link' => 'Elimina el vincle entre transaccions',
|
|
'edit_object_group' => 'Editar grup ":title"',
|
|
'delete_object_group' => 'Eliminar grup ":title"',
|
|
'logout_others' => 'Finalitzar les altres sessions',
|
|
'asset_accounts' => 'Comptes d\'actius',
|
|
'expense_accounts' => 'Comptes de despeses',
|
|
'revenue_accounts' => 'Comptes d\'ingressos',
|
|
'liabilities_accounts' => 'Passius',
|
|
'placeholder' => '[Placeholder]',
|
|
];
|