mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			93 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			4.4 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'                 => 'Кнопки',
 | ||
|     'icon'                    => 'Значок',
 | ||
|     'id'                      => 'ID',
 | ||
|     'create_date'             => 'Создан',
 | ||
|     'update_date'             => 'Обновлён',
 | ||
|     'updated_at'             => 'Updated at',
 | ||
|     'balance_before'          => 'Баланс до',
 | ||
|     'balance_after'           => 'Баланс после',
 | ||
|     'name'                    => 'Имя',
 | ||
|     'role'                    => 'Роль',
 | ||
|     'currentBalance'          => 'Текущий баланс',
 | ||
|     'active'                  => 'Активен?',
 | ||
|     'lastActivity'            => 'Последняя активность',
 | ||
|     'balanceDiff'             => 'Разница баланса между :start и :end',
 | ||
|     'matchesOn'               => 'Matched on',
 | ||
|     'account_type'            => 'Тип профиля',
 | ||
|     'created_at'              => 'Created at',
 | ||
|     'account'                 => 'Account',
 | ||
|     'matchingAmount'          => 'Amount',
 | ||
|     'split_number'            => 'Split #',
 | ||
|     'destination'             => 'Destination',
 | ||
|     'source'                  => 'Source',
 | ||
|     'next_expected_match'     => 'Next expected match',
 | ||
|     'automatch'               => 'Auto match?',
 | ||
|     'repeat_freq'             => 'Repeats',
 | ||
|     'description'             => 'Описание',
 | ||
|     'amount'                  => 'Сумма',
 | ||
|     'internal_reference'      => 'Internal reference',
 | ||
|     'date'                    => 'Дата',
 | ||
|     'interest_date'           => 'Interest date',
 | ||
|     'book_date'               => 'Book date',
 | ||
|     'process_date'            => 'Processing date',
 | ||
|     'due_date'                => 'Due date',
 | ||
|     'payment_date'            => 'Payment date',
 | ||
|     'invoice_date'            => 'Invoice date',
 | ||
|     'interal_reference'       => 'Internal reference',
 | ||
|     'notes'                   => 'Заметки',
 | ||
|     'from'                    => 'Откуда',
 | ||
|     'piggy_bank'              => 'Копилка',
 | ||
|     'to'                      => 'Куда',
 | ||
|     'budget'                  => 'Бюджет',
 | ||
|     'category'                => 'Категория',
 | ||
|     'bill'                    => 'Счет к оплате',
 | ||
|     'withdrawal'              => 'Расход',
 | ||
|     'deposit'                 => 'Доход',
 | ||
|     'transfer'                => 'Перевод',
 | ||
|     'type'                    => 'Type',
 | ||
|     'completed'               => 'Completed',
 | ||
|     'iban'                    => 'IBAN',
 | ||
|     'paid_current_period'     => 'Paid this period',
 | ||
|     'email'                   => 'E-mail',
 | ||
|     'registered_at'           => 'Дата регистрации',
 | ||
|     'is_blocked'              => 'Заблокирован?',
 | ||
|     'is_admin'                => 'Администратор?',
 | ||
|     'has_two_factor'          => 'Защита (2FA)?',
 | ||
|     'blocked_code'            => 'Block code',
 | ||
|     'source_account'          => 'Source account',
 | ||
|     'destination_account'     => 'Destination account',
 | ||
|     'accounts_count'          => 'Всего счетов',
 | ||
|     'journals_count'          => 'Всего транзакций',
 | ||
|     'attachments_count'       => 'Всего вложений',
 | ||
|     'bills_count'             => 'Всего счетов к оплате',
 | ||
|     'categories_count'        => 'Всего категорий',
 | ||
|     'export_jobs_count'       => 'Задачи по экспорту',
 | ||
|     'import_jobs_count'       => 'Задачи по импорту',
 | ||
|     'budget_count'            => 'Всего категорий бюджета',
 | ||
|     'rule_and_groups_count'   => 'Всего правил и групп правил',
 | ||
|     'tags_count'              => 'Всего меток',
 | ||
|     'inward'                  => 'Inward description',
 | ||
|     'outward'                 => 'Outward description',
 | ||
|     'number_of_transactions'  => 'Number of transactions',
 | ||
|     'total_amount'            => 'Total amount',
 | ||
|     'sum'                     => 'Sum',
 | ||
|     'sum_excluding_transfers' => 'Sum (excluding transfers)',
 | ||
|     'sum_withdrawals'         => 'Sum of withdrawals',
 | ||
|     'sum_deposits'            => 'Sum of deposits',
 | ||
|     'sum_transfers'           => 'Sum of transfers',
 | ||
| ];
 |