mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			88 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| declare(strict_types=1);
 | |
| 
 | |
| /**
 | |
|  * list.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 [
 | |
|     'buttons'                => 'Gumbi',
 | |
|     'icon'                   => 'Ikona',
 | |
|     'id'                     => 'ID',
 | |
|     'create_date'            => 'Ustvarjeno',
 | |
|     'update_date'            => 'Posodobljeno',
 | |
|     'balance_before'         => 'Stanje prej',
 | |
|     'balance_after'          => 'Stanje potem',
 | |
|     'name'                   => 'ime',
 | |
|     'role'                   => 'vloga',
 | |
|     'currentBalance'         => 'trenutno stanje',
 | |
|     'active'                 => 'Aktiviran?',
 | |
|     'lastActivity'           => 'zadnja aktivnost',
 | |
|     'balanceDiff'            => 'Razlika stanja med :start in :end',
 | |
|     'matchesOn'              => 'Povezano',
 | |
|     'account_type'           => 'vrsta računa',
 | |
|     'created_at'             => 'ustvarjeno',
 | |
|     'account'                => 'račun',
 | |
|     'matchingAmount'         => 'znesek',
 | |
|     'split_number'           => 'Delitev #',
 | |
|     'destination'            => 'Ciljni račun',
 | |
|     'source'                 => 'Izvor',
 | |
|     'next_expected_match'    => 'Naslenje pričakovano ujemanje',
 | |
|     'automatch'              => 'Samodejno poveži?',
 | |
|     'repeat_freq'            => 'Ponovitev',
 | |
|     'description'            => 'Opis',
 | |
|     'amount'                 => 'Znesek',
 | |
|     'internal_reference'     => 'Notranji sklic',
 | |
|     'date'                   => 'datum',
 | |
|     'interest_date'          => 'datum obresti',
 | |
|     'book_date'              => 'datum knjiženja',
 | |
|     'process_date'           => 'datum izvedbe',
 | |
|     'due_date'               => 'rok plačila',
 | |
|     'payment_date'           => 'Datum plačila',
 | |
|     'invoice_date'           => 'datum računa',
 | |
|     'interal_reference'      => 'Notranji sklic',
 | |
|     'notes'                  => 'Zabeležke',
 | |
|     'from'                   => 'Pošiljatelj',
 | |
|     'piggy_bank'             => 'Pujsek',
 | |
|     'to'                     => 'Prejemnik',
 | |
|     'budget'                 => 'Budžet',
 | |
|     'category'               => 'Kategorija',
 | |
|     'bill'                   => 'Trajnik',
 | |
|     'withdrawal'             => 'Odhodek',
 | |
|     'deposit'                => 'Prihodek',
 | |
|     'transfer'               => 'Prenos',
 | |
|     'type'                   => 'Vrsta',
 | |
|     'completed'              => 'Dokončano',
 | |
|     'iban'                   => 'IBAN',
 | |
|     'paid_current_period'    => 'Plačano v tem obdobju',
 | |
|     'email'                  => 'E-pošta',
 | |
|     'registered_at'          => 'Registriran pri',
 | |
|     'is_blocked'             => 'Je blokiran',
 | |
|     'is_admin'               => 'Je administrator',
 | |
|     'has_two_factor'         => 'Ima dvostopenjsko overovitev',
 | |
|     'blocked_code'           => 'Koda vzroka blokade',
 | |
|     'source_account'         => 'Izvorni račun',
 | |
|     'destination_account'    => 'Ciljni račun',
 | |
|     'accounts_count'         => 'Število računov',
 | |
|     'journals_count'         => 'Število transakcij',
 | |
|     'attachments_count'      => 'Število prilog',
 | |
|     'bills_count'            => 'Število trajnikov',
 | |
|     'categories_count'       => 'Število kategorij',
 | |
|     'export_jobs_count'      => 'Število izvozov',
 | |
|     'import_jobs_count'      => 'Število uvozov',
 | |
|     'budget_count'           => 'Število budžetov',
 | |
|     'rule_and_groups_count'  => 'Število pravil in skupin pravil',
 | |
|     'tags_count'             => 'Število značk',
 | |
|     'inward'                 => 'Inward description',
 | |
|     'outward'                => 'Outward description',
 | |
|     'number_of_transactions' => 'Number of transactions',
 | |
|     'total_amount'           => 'Total amount',
 | |
| 
 | |
| ];
 |