mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
	
	
		
			79 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			79 lines
		
	
	
		
			3.5 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/>. | ||
|  |  */ | ||
|  | 
 | ||
|  | declare(strict_types=1); | ||
|  | 
 | ||
|  | return [ | ||
|  |     'home'                   => 'Prva stran', | ||
|  |     'budgets'                => 'Budgets', | ||
|  |     'subscriptions'          => 'Subscriptions', | ||
|  |     'transactions'           => 'Transactions', | ||
|  |     'title_expenses'         => 'Expenses', | ||
|  |     'title_withdrawal'       => 'Expenses', | ||
|  |     'title_revenue'          => 'Revenue / income', | ||
|  |     'title_deposit'          => 'Revenue / income', | ||
|  |     'title_transfer'         => 'Transfers', | ||
|  |     'title_transfers'        => 'Transfers', | ||
|  |     'edit_currency'          => 'uredi valuto ":name"', | ||
|  |     'delete_currency'        => 'izbriši valuto ":name"', | ||
|  |     'newPiggyBank'           => 'ustvari novega pujska', | ||
|  |     'edit_piggyBank'         => 'uredi pujska za ":name"', | ||
|  |     'preferences'            => 'nastavitve', | ||
|  |     'profile'                => 'profil', | ||
|  |     'accounts'               => 'Računi', | ||
|  |     'changePassword'         => 'spremeni geslo', | ||
|  |     'change_email'           => 'Spremeni elektronski 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', | ||
|  |     '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'               => 'uredi značko ":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'         => 'Asset accounts', | ||
|  |     'expense_accounts'       => 'Expense accounts', | ||
|  |     'revenue_accounts'       => 'Revenue accounts', | ||
|  |     'liabilities_accounts'   => 'Liabilities', | ||
|  |     'placeholder'            => '[Placeholder]', | ||
|  | ]; |