mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-22 20:16:22 +00:00
104 lines
3.8 KiB
PHP
104 lines
3.8 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' => 'Domov',
|
|
'budgets' => 'Proračuni',
|
|
'subscriptions' => 'Naročnine',
|
|
'transactions' => 'Transakcije',
|
|
'title_expenses' => 'Stroški',
|
|
'title_withdrawal' => 'Stroški',
|
|
'title_revenue' => 'Dohodki / prihodki',
|
|
'title_deposit' => 'Dohodki / prihodki',
|
|
'title_transfer' => 'Prenosi',
|
|
'title_transfers' => 'Prenosi',
|
|
'edit_currency' => 'Uredi valuto ":name"',
|
|
'delete_currency' => 'Izbriši valuto ":name"',
|
|
'newPiggyBank' => 'Ustvari nov hranilnik',
|
|
'edit_piggyBank' => 'Uredi hranilnik ":name"',
|
|
'preferences' => 'Nastavitve',
|
|
'profile' => 'Profil',
|
|
'accounts' => 'Računi',
|
|
'changePassword' => 'Spremeni geslo',
|
|
'change_email' => 'Spremenite e-poštni naslov',
|
|
'bills' => 'Trajniki',
|
|
'newBill' => 'Nov trajnik',
|
|
'edit_bill' => 'Uredi trajnik ":name"',
|
|
'delete_bill' => 'Izbriši trajnik ":name"',
|
|
'reports' => 'Poročila',
|
|
'search_result' => 'Rezultati iskanja za ":query"',
|
|
'withdrawal_list' => 'Stroški',
|
|
'Withdrawal_list' => 'Stroški',
|
|
'deposit_list' => 'Prihodki',
|
|
'transfer_list' => 'Prenosi',
|
|
'transfers_list' => 'Prenosi',
|
|
|
|
/*
|
|
* 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' => 'Poravnave',
|
|
'create_withdrawal' => 'Ustvari nov odhodek',
|
|
'create_deposit' => 'Ustvari nov prihodek',
|
|
'create_transfer' => 'ustvari nov prenos',
|
|
'create_new_transaction' => 'Ustvari novo transakcijo',
|
|
'edit_journal' => 'uredi transakcijo ":description"',
|
|
'edit_reconciliation' => 'Uredi ":description"',
|
|
'delete_journal' => 'izbriši transakcijo ":description"',
|
|
'delete_group' => 'Izbriši transakcijo ":description"',
|
|
'tags' => 'značke',
|
|
'createTag' => 'Ustvari novo značko',
|
|
'edit_tag' => 'Posodobi oznako ":tag"',
|
|
'delete_tag' => 'izbriši značko ":tag"',
|
|
'delete_journal_link' => 'Izbriši povezavo med transakcijami',
|
|
'edit_object_group' => 'Uredi skupino ":title"',
|
|
'delete_object_group' => 'Izbriši skupino ":title"',
|
|
'logout_others' => 'Odjavi druge seje',
|
|
'asset_accounts' => 'Premoženjski računi',
|
|
'expense_accounts' => 'Računi stroškov',
|
|
'revenue_accounts' => 'Račun prihodkov',
|
|
'liabilities_accounts' => 'Obveznosti',
|
|
'placeholder' => '[Placeholder]',
|
|
];
|