mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			65 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			3.0 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'                   => 'Domov',
 | |
|     'edit_currency'          => 'Upraviť menu „:name“',
 | |
|     'delete_currency'        => 'Odstrániť menu „:name“',
 | |
|     'newPiggyBank'           => 'Vytvoriť novú pokladničku',
 | |
|     'edit_piggyBank'         => 'Upraviť pokladničku „:name“',
 | |
|     'preferences'            => 'Predvoľby',
 | |
|     'profile'                => 'Profil',
 | |
|     'accounts'               => 'Účty',
 | |
|     'changePassword'         => 'Zmeniť heslo',
 | |
|     'change_email'           => 'Zmeniť e-mailovú adresu',
 | |
|     'bills'                  => 'Účtenky a faktúry',
 | |
|     'newBill'                => 'Nový účet',
 | |
|     'edit_bill'              => 'Upravit účet „:name“',
 | |
|     'delete_bill'            => 'Odstrániť účet „:name“',
 | |
|     'reports'                => 'Prehľady',
 | |
|     'search_result'          => 'Výsledky vyhľadávania pre „:query“',
 | |
|     'withdrawal_list'        => 'Výdaje',
 | |
|     'Withdrawal_list'        => 'Výdaje',
 | |
|     'deposit_list'           => 'Výnosy, príjmy a vklady',
 | |
|     'transfer_list'          => 'Prevody',
 | |
|     'transfers_list'         => 'Prevody',
 | |
|     'reconciliation_list'    => 'Vyúčtovania',
 | |
|     'create_withdrawal'      => 'Vytvoriť nový výber',
 | |
|     'create_deposit'         => 'Vytvoriť nový vklad',
 | |
|     'create_transfer'        => 'Vytvoriť nový prevod',
 | |
|     'create_new_transaction' => 'Vytvoriť novú transakciu',
 | |
|     'edit_journal'           => 'Upraviť transakciu „:description“',
 | |
|     'edit_reconciliation'    => 'Upraviť „:description“',
 | |
|     'delete_journal'         => 'Odstrániť transakciu „:description“',
 | |
|     'delete_group'           => 'Odstrániť transakciu „:description“',
 | |
|     'tags'                   => 'Štítky',
 | |
|     'createTag'              => 'Vytvoriť nový štítok',
 | |
|     'edit_tag'               => 'Upraviť štítok „:tag“',
 | |
|     'delete_tag'             => 'Odstrániť štítok „:tag“',
 | |
|     'delete_journal_link'    => 'Odstrániť previazanie medzi transakciami',
 | |
|     'edit_object_group'      => 'Upraviť skupinu pravidiel „:title“',
 | |
|     'delete_object_group'    => 'Zmazať skupinu pravidiel „:title“',
 | |
|     'logout_others'          => 'Odhlásiť všetky ostatné relácie'
 | |
| ];
 |