| 
									
										
										
										
											2019-08-08 17:03:19 +02:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * breadcrumbs.php | 
					
						
							| 
									
										
										
										
											2020-02-14 08:07:45 +01:00
										 |  |  |  * Copyright (c) 2019 james@firefly-iii.org | 
					
						
							| 
									
										
										
										
											2019-08-08 17:03:19 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-05 06:23:46 +02:00
										 |  |  |  * This file is part of Firefly III (https://github.com/firefly-iii). | 
					
						
							| 
									
										
										
										
											2019-08-08 17:03:19 +02: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-08-08 17:03:19 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-05 06:23:46 +02:00
										 |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2019-08-08 17:03:19 +02: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-08-08 17:03:19 +02: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-08-08 17:03:19 +02:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | declare(strict_types=1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | return [ | 
					
						
							|  |  |  |     'home'                   => 'Domů', | 
					
						
							|  |  |  |     'edit_currency'          => 'Upravit měnu „:name“', | 
					
						
							|  |  |  |     'delete_currency'        => 'Odstranit měnu „:name“', | 
					
						
							|  |  |  |     'newPiggyBank'           => 'Vytvořit novou pokladničku', | 
					
						
							|  |  |  |     'edit_piggyBank'         => 'Upravit pokladničku „:name“', | 
					
						
							|  |  |  |     'preferences'            => 'Předvolby', | 
					
						
							|  |  |  |     'profile'                => 'Profil', | 
					
						
							|  |  |  |     'changePassword'         => 'Změnit heslo', | 
					
						
							|  |  |  |     'change_email'           => 'Změnit e-mailovou adresu', | 
					
						
							|  |  |  |     'bills'                  => 'Účtenky a faktury', | 
					
						
							|  |  |  |     'newBill'                => 'Nová účtenka/faktura', | 
					
						
							|  |  |  |     'edit_bill'              => 'Upravit účtenku/fakturu „:name“', | 
					
						
							|  |  |  |     'delete_bill'            => 'Odstranit účtenku/fakturu „:name“', | 
					
						
							|  |  |  |     'reports'                => 'Sestavy', | 
					
						
							|  |  |  |     'search_result'          => 'Výsledky hledání pro „:query“', | 
					
						
							|  |  |  |     'withdrawal_list'        => 'Výdaje', | 
					
						
							| 
									
										
										
										
											2019-09-07 20:28:21 +02:00
										 |  |  |     'Withdrawal_list'        => 'Výdaje', | 
					
						
							| 
									
										
										
										
											2019-08-08 17:03:19 +02:00
										 |  |  |     'deposit_list'           => 'Výnosy, příjmy a vklady', | 
					
						
							|  |  |  |     'transfer_list'          => 'Převody', | 
					
						
							|  |  |  |     'transfers_list'         => 'Převody', | 
					
						
							|  |  |  |     'reconciliation_list'    => 'Vyúčtování', | 
					
						
							|  |  |  |     'create_withdrawal'      => 'Vytvořit nový výběr', | 
					
						
							|  |  |  |     'create_deposit'         => 'Vytvořit nový vklad', | 
					
						
							|  |  |  |     'create_transfer'        => 'Vytvořit nový převod', | 
					
						
							|  |  |  |     'create_new_transaction' => 'Vytvořit novou transakci', | 
					
						
							|  |  |  |     'edit_journal'           => 'Upravit transakci „:description“', | 
					
						
							|  |  |  |     'edit_reconciliation'    => 'Upravit „:description“', | 
					
						
							|  |  |  |     'delete_journal'         => 'Odstranit transakci „:description“', | 
					
						
							| 
									
										
										
										
											2020-03-06 05:25:36 +01:00
										 |  |  |     'delete_group'           => 'Odstranit transakci „:description“', | 
					
						
							| 
									
										
										
										
											2019-08-08 17:03:19 +02:00
										 |  |  |     'tags'                   => 'Štítky', | 
					
						
							|  |  |  |     'createTag'              => 'Vytvořit nový štítek', | 
					
						
							|  |  |  |     'edit_tag'               => 'Upravit štítek „:tag“', | 
					
						
							|  |  |  |     'delete_tag'             => 'Odstranit štítek „:tag“', | 
					
						
							|  |  |  |     'delete_journal_link'    => 'Odstranit vazbu mezi transakcemi', | 
					
						
							| 
									
										
										
										
											2020-04-14 20:56:30 +02:00
										 |  |  |     'telemetry_index'        => 'Telemetrie', | 
					
						
							|  |  |  |     'telemetry_view'         => 'Zobrazit telemetrii', | 
					
						
							| 
									
										
										
										
											2020-06-22 18:02:28 +02:00
										 |  |  |     'edit_object_group'      => 'Edit group ":title"', | 
					
						
							|  |  |  |     'delete_object_group'    => 'Delete group ":title"', | 
					
						
							| 
									
										
										
										
											2020-06-28 09:19:18 +02:00
										 |  |  |     'logout_others'          => 'Logout other sessions' | 
					
						
							| 
									
										
										
										
											2019-08-08 17:03:19 +02:00
										 |  |  | ]; |