mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| declare(strict_types=1);
 | |
| 
 | |
| 
 | |
| /**
 | |
|  * breadcrumbs.php
 | |
|  * Copyright (C) 2016 thegrumpydictator@gmail.com
 | |
|  *
 | |
|  * This software may be modified and distributed under the terms of the
 | |
|  * Creative Commons Attribution-ShareAlike 4.0 International License.
 | |
|  *
 | |
|  * See the LICENSE file for details.
 | |
|  */
 | |
| 
 | |
| return [
 | |
|     'home'                => 'Prva stran',
 | |
|     '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',
 | |
|     'changePassword'      => 'spremeni geslo',
 | |
|     'bills'               => 'Trajniki',
 | |
|     'newBill'             => 'nov trajnik',
 | |
|     'edit_bill'           => 'uredi trajnik ":name"',
 | |
|     'delete_bill'         => 'izbriši trajnik ":name"',
 | |
|     'reports'             => 'Poročila',
 | |
|     'search_result'       => '',
 | |
|     'withdrawal_list'     => 'stroški',
 | |
|     'deposit_list'        => 'prihodki',
 | |
|     'transfer_list'       => 'prenosi',
 | |
|     'transfers_list'      => 'prenosi',
 | |
|     'create_withdrawal'   => 'ustvari nov odhodek',
 | |
|     'create_deposit'      => 'ustvari nov prihodek',
 | |
|     'create_transfer'     => 'ustvari nov prenos',
 | |
|     'edit_journal'        => 'uredi transakcijo ":description"',
 | |
|     'delete_journal'      => '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' => '',
 | |
| ]; |