mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			141 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			141 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * list.php
 | |
|  * Copyright (c) 2019 james@firefly-iii.org
 | |
|  *
 | |
|  * This file is part of Firefly III (https://github.com/firefly-iii).
 | |
|  *
 | |
|  * 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.
 | |
|  *
 | |
|  * This program is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU Affero General Public License for more details.
 | |
|  *
 | |
|  * 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/>.
 | |
|  */
 | |
| 
 | |
| declare(strict_types=1);
 | |
| 
 | |
| return [
 | |
|     'buttons'                 => 'ボタン',
 | |
|     'icon'                    => 'アイコン',
 | |
|     'id'                      => 'ID',
 | |
|     'create_date'             => '作成日時',
 | |
|     'update_date'             => '更新日時',
 | |
|     'updated_at'              => '更新日時',
 | |
|     'balance_before'          => '前の残高',
 | |
|     'balance_after'           => '後の残高',
 | |
|     'name'                    => '名前',
 | |
|     'role'                    => 'ロール',
 | |
|     'currentBalance'          => '現在の残高',
 | |
|     'linked_to_rules'         => '関連ルール',
 | |
|     'active'                  => '有効?',
 | |
|     'percentage'              => 'パーセント',
 | |
|     'recurring_transaction'   => '繰り返しの収支',
 | |
|     'next_due'                => '次の期限',
 | |
|     'transaction_type'        => 'タイプ',
 | |
|     'lastActivity'            => '最終アクティビティ',
 | |
|     'balanceDiff'             => '残高差',
 | |
|     'other_meta_data'         => 'その他のメタデータ',
 | |
|     'account_type'            => '口座の種類',
 | |
|     'created_at'              => '作成日時',
 | |
|     'account'                 => '口座',
 | |
|     'external_url'            => '外部 URL',
 | |
|     'matchingAmount'          => '金額',
 | |
|     'destination'             => '資産勘定(支出先)',
 | |
|     'source'                  => '収入アカウント(収入源)',
 | |
|     'next_expected_match'     => '次の予期された一致',
 | |
|     'automatch'               => '自動的に一致したか?',
 | |
|     'repeat_freq'             => '繰り返し',
 | |
|     'description'             => '説明',
 | |
|     'amount'                  => '金額',
 | |
|     'date'                    => '日付',
 | |
|     'interest_date'           => '利息',
 | |
|     'book_date'               => '予約日',
 | |
|     'process_date'            => '処理日',
 | |
|     'due_date'                => '締切日',
 | |
|     'payment_date'            => '引き落とし日',
 | |
|     'invoice_date'            => '日付を選択...',
 | |
|     'internal_reference'      => 'システム内参考品',
 | |
|     'notes'                   => '備考',
 | |
|     'from'                    => 'から',
 | |
|     'piggy_bank'              => '貯金箱',
 | |
|     'to'                      => '受け取り',
 | |
|     'budget'                  => '予算',
 | |
|     'category'                => 'カテゴリ',
 | |
|     'bill'                    => '請求',
 | |
|     'withdrawal'              => '出金',
 | |
|     'deposit'                 => '預金',
 | |
|     'transfer'                => '送金',
 | |
|     'type'                    => '種類',
 | |
|     'completed'               => '完了',
 | |
|     'iban'                    => '国際銀行口座番号',
 | |
|     'paid_current_period'     => '期間',
 | |
|     'email'                   => '新しいメールアドレス',
 | |
|     'registered_at'           => '登録に成功しました!',
 | |
|     'is_blocked'              => 'ブロック済み',
 | |
|     'is_admin'                => '管理者か',
 | |
|     'has_two_factor'          => '2段階認証が有効か',
 | |
|     'blocked_code'            => 'ブロックコード',
 | |
|     'source_account'          => '支出元のアカウント',
 | |
|     'destination_account'     => '送金先のアカウント',
 | |
|     'accounts_count'          => '口座数',
 | |
|     'journals_count'          => '取引数',
 | |
|     'attachments_count'       => '添付ファイル数',
 | |
|     'bills_count'             => '請求書数',
 | |
|     'categories_count'        => 'カテゴリ数',
 | |
|     'budget_count'            => '予算数',
 | |
|     'rule_and_groups_count'   => 'ルールとルールグループ数',
 | |
|     'tags_count'              => 'タグの数',
 | |
|     'tags'                    => 'タグ',
 | |
|     'inward'                  => '内向きの説明',
 | |
|     'outward'                 => '外向きの説明',
 | |
|     'number_of_transactions'  => '取引数',
 | |
|     'total_amount'            => '合計金額',
 | |
|     'sum'                     => '合計',
 | |
|     'sum_excluding_transfers' => '合計 (送金を除く)',
 | |
|     'sum_withdrawals'         => '合計出金額',
 | |
|     'sum_deposits'            => '預金合計額',
 | |
|     'sum_transfers'           => '合計送金額',
 | |
|     'sum_reconciliations'     => '調整の合計',
 | |
|     'reconcile'               => '照合',
 | |
|     'sepa_ct_id'              => 'SEPA エンドツーエンド識別子',
 | |
|     'sepa_ct_op'              => 'SEPA 反対のアカウント識別子',
 | |
|     'sepa_db'                 => 'SEPA 委任識別子',
 | |
|     'sepa_country'            => 'SEPA国',
 | |
|     'sepa_cc'                 => 'SEPA 精算コード',
 | |
|     'sepa_ep'                 => 'SEPA 外部目的',
 | |
|     'sepa_ci'                 => 'SEPA 債権者識別子',
 | |
|     'sepa_batch_id'           => 'SEPA バッチ ID',
 | |
|     'external_id'             => '外部ID',
 | |
|     'account_at_bunq'         => 'bunq口座',
 | |
|     'file_name'               => 'ファイル名',
 | |
|     'file_size'               => 'ファイルサイズ',
 | |
|     'file_type'               => 'ファイルの種類',
 | |
|     'attached_to'             => '添付先',
 | |
|     'file_exists'             => 'ファイルがすでに存在しています',
 | |
|     'spectre_bank'            => '銀行',
 | |
|     'spectre_last_use'        => '最終ログイン',
 | |
|     'spectre_status'          => '状態',
 | |
|     'bunq_payment_id'         => 'bunq 支払いID',
 | |
|     'repetitions'             => '繰り返し',
 | |
|     'title'                   => 'タイトル',
 | |
|     'transaction_s'           => '取引',
 | |
|     'field'                   => '入力欄',
 | |
|     'value'                   => '数値',
 | |
|     'interest'                => '利息',
 | |
|     'interest_period'         => '利息期間',
 | |
|     'liability_type'          => '債務形式',
 | |
|     'liability_direction'     => '債務の出入',
 | |
|     'end_date'                => '終了日',
 | |
|     'payment_info'            => '支払情報',
 | |
|     'expected_info'           => '次の予想される取引',
 | |
|     'start_date'              => '開始日',
 | |
| ];
 |