mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-20 11:48:27 -06:00
60 lines
2.7 KiB
PHP
60 lines
2.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* breadcrumbs.php
|
|
* Copyright (c) 2019 thegrumpydictator@gmail.com
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'home' => 'Főoldal',
|
|
'edit_currency' => '":name" pénznem szerkesztése',
|
|
'delete_currency' => '":name" pénznem törlése',
|
|
'newPiggyBank' => 'Új malacpersely létrehozása',
|
|
'edit_piggyBank' => '":name" malacpersely szerkesztése',
|
|
'preferences' => 'Beállítások',
|
|
'profile' => 'Profil',
|
|
'changePassword' => 'Jelszó módosítása',
|
|
'change_email' => 'Email cím módosítása',
|
|
'bills' => 'Számlák',
|
|
'newBill' => 'Új számla',
|
|
'edit_bill' => '":name" számla szerkesztése',
|
|
'delete_bill' => '":name" számla törlése',
|
|
'reports' => 'Jelentések',
|
|
'search_result' => '":query" keresési eredményei',
|
|
'withdrawal_list' => 'Kiadások',
|
|
'Withdrawal_list' => 'Költségek',
|
|
'deposit_list' => 'Bevételek, jövedelem és betétek',
|
|
'transfer_list' => 'Átvezetések',
|
|
'transfers_list' => 'Átvezetések',
|
|
'reconciliation_list' => 'Egyeztetések',
|
|
'create_withdrawal' => 'Új költség létrehozása',
|
|
'create_deposit' => 'Új bevétel létrehozása',
|
|
'create_transfer' => 'Új átvezetés létrehozása',
|
|
'create_new_transaction' => 'Új tranzakció létrehozása',
|
|
'edit_journal' => '":description" tranzakció szerkesztése',
|
|
'edit_reconciliation' => '":description" szerkesztése',
|
|
'delete_journal' => '":description" tranzakció törlése',
|
|
'tags' => 'Cimkék',
|
|
'createTag' => 'Új címke létrehozása',
|
|
'edit_tag' => '":tag" címke szerkesztése',
|
|
'delete_tag' => '":tag" címke törlése',
|
|
'delete_journal_link' => 'Tranzakciók közötti kapcsolat törlése',
|
|
];
|