2019-03-22 18:26:46 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* breadcrumbs.php
|
2020-02-14 08:07:45 +01:00
|
|
|
* Copyright (c) 2019 james@firefly-iii.org
|
2019-03-22 18:26:46 +01:00
|
|
|
*
|
2019-10-05 06:23:46 +02:00
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
2019-03-22 18:26:46 +01:00
|
|
|
*
|
2019-10-05 06:23:46 +02:00
|
|
|
* 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.
|
2019-03-22 18:26:46 +01:00
|
|
|
*
|
2019-10-05 06:23:46 +02:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2019-03-22 18:26:46 +01:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2019-10-05 06:23:46 +02:00
|
|
|
* GNU Affero General Public License for more details.
|
2019-03-22 18:26:46 +01:00
|
|
|
*
|
2019-10-05 06:23:46 +02:00
|
|
|
* 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/>.
|
2019-03-22 18:26:46 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
return [
|
2019-05-29 18:30:52 +02:00
|
|
|
'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',
|
2019-09-07 20:28:21 +02:00
|
|
|
'Withdrawal_list' => 'Cheltuieli',
|
2019-05-29 18:30:52 +02:00
|
|
|
'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',
|
2019-06-23 10:39:59 +02:00
|
|
|
'create_new_transaction' => 'Creați o tranzacție nouă',
|
2019-05-29 18:30:52 +02:00
|
|
|
'edit_journal' => 'Editează tranzacția ":description"',
|
|
|
|
|
'edit_reconciliation' => 'Editează ":description"',
|
|
|
|
|
'delete_journal' => 'Șterge tranzacția ":description"',
|
2020-05-29 06:39:24 +02:00
|
|
|
'delete_group' => 'Șterge tranzacția ":description"',
|
2019-05-29 18:30:52 +02:00
|
|
|
'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',
|
2020-05-29 06:39:24 +02:00
|
|
|
'telemetry_index' => 'Telemetrie',
|
|
|
|
|
'telemetry_view' => 'Vizualizare telemetrie',
|
2019-03-22 18:26:46 +01:00
|
|
|
];
|