mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * list.php
 | |
|  * Copyright (C) 2016 thegrumpydictator@gmail.com
 | |
|  *
 | |
|  * This software may be modified and distributed under the terms
 | |
|  * of the MIT license.  See the LICENSE file for details.
 | |
|  */
 | |
| 
 | |
| return [
 | |
|     'buttons'             => 'Buttons',
 | |
|     'icon'                => 'Icon',
 | |
|     'create_date'         => 'Created at',
 | |
|     'update_date'         => 'Updated at',
 | |
|     'balance_before'      => 'Balance before',
 | |
|     'balance_after'       => 'Balance after',
 | |
|     'name'                => 'Nom',
 | |
|     'role'                => 'Rôle',
 | |
|     'currentBalance'      => 'Solde courant',
 | |
|     'active'              => 'Actif ?',
 | |
|     'lastActivity'        => 'Activité récente',
 | |
|     'balanceDiff'         => 'Difference solde entre :start et :end',
 | |
|     'matchedOn'           => 'Matched on',
 | |
|     'matchesOn'           => 'Matched on',
 | |
|     'matchingAmount'      => 'Montant',
 | |
|     'lastMatch'           => 'Last match',
 | |
|     'expectedMatch'       => 'Expected match',
 | |
|     'automatch'           => 'Auto match?',
 | |
|     'repeat_freq'         => 'Repeats',
 | |
|     'description'         => 'Description',
 | |
|     'amount'              => 'Amount',
 | |
|     'date'                => 'Date',
 | |
|     'interest_date'       => 'Interest date',
 | |
|     'book_date'           => 'Book date',
 | |
|     'process_date'        => 'Processing date',
 | |
|     'from'                => 'From',
 | |
|     'to'                  => 'To',
 | |
|     'budget'              => 'Budget',
 | |
|     'category'            => 'Category',
 | |
|     'bill'                => 'Bill',
 | |
|     'withdrawal'          => 'Withdrawal',
 | |
|     'deposit'             => 'Deposit',
 | |
|     'transfer'            => 'Transfer',
 | |
|     'type'                => 'Type',
 | |
|     'completed'           => 'Completed',
 | |
|     'iban'                => 'IBAN',
 | |
|     'paid_current_period' => 'Paid this period',
 | |
|     'email'               => 'Email',
 | |
|     'registered_at'       => 'Registered at',
 | |
|     'is_activated'        => 'Is activated',
 | |
|     'is_blocked'          => 'Is blocked',
 | |
|     'is_admin'            => 'Is admin',
 | |
|     'has_two_factor'      => 'Has 2FA',
 | |
|     'blocked_code'        => 'Block code',
 | |
| ];
 |