mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-20 11:48:27 -06:00
104 lines
4.0 KiB
PHP
104 lines
4.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* breadcrumbs.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/>.
|
|
*/
|
|
|
|
/*
|
|
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
*
|
|
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
*
|
|
* https://crowdin.com/project/firefly-iii
|
|
*
|
|
*/
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'home' => 'ホーム',
|
|
'budgets' => '予算',
|
|
'subscriptions' => '講読',
|
|
'transactions' => '取引',
|
|
'title_expenses' => '支出',
|
|
'title_withdrawal' => '支出',
|
|
'title_revenue' => '収益 / 収入',
|
|
'title_deposit' => '収益 / 収入',
|
|
'title_transfer' => '送金',
|
|
'title_transfers' => '送金',
|
|
'edit_currency' => '通貨「:name」を編集する',
|
|
'delete_currency' => '通貨「:name」を削除する',
|
|
'newPiggyBank' => '新しい貯金箱を作成',
|
|
'edit_piggyBank' => '貯金箱 ":name" を編集する',
|
|
'preferences' => '設定',
|
|
'profile' => 'プロフィール',
|
|
'accounts' => '口座',
|
|
'changePassword' => 'パスワードを変更する',
|
|
'change_email' => 'メールアドレスを変更する',
|
|
'bills' => '請求',
|
|
'newBill' => '新しい請求',
|
|
'edit_bill' => '請求「:name」を編集する',
|
|
'delete_bill' => '請求「:name」を削除する',
|
|
'reports' => 'レポート',
|
|
'search_result' => '":query" の検索結果',
|
|
'withdrawal_list' => '支出',
|
|
'Withdrawal_list' => '支出',
|
|
'deposit_list' => '収入、所得、入金',
|
|
'transfer_list' => '送金',
|
|
'transfers_list' => '送金',
|
|
|
|
/*
|
|
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
|
* YOUR CHANGES WILL BE OVERWRITTEN!
|
|
* YOUR PR WITH CHANGES TO THIS FILE WILL BE REJECTED!
|
|
*
|
|
* GO TO CROWDIN TO FIX OR CHANGE TRANSLATIONS!
|
|
*
|
|
* https://crowdin.com/project/firefly-iii
|
|
*
|
|
*/
|
|
|
|
|
|
'reconciliation_list' => '調整',
|
|
'create_withdrawal' => '新規出金を作成',
|
|
'create_deposit' => '新しい入金を作成する',
|
|
'create_transfer' => '新しい送金を作成する',
|
|
'create_new_transaction' => '新規取引を作成',
|
|
'edit_journal' => '取引「:description」を編集する',
|
|
'edit_reconciliation' => '":description" を編集する',
|
|
'delete_journal' => '取り引き ":description" を削除する',
|
|
'delete_group' => '取引「:description」を削除',
|
|
'tags' => 'タグ',
|
|
'createTag' => '新しいタグを作成する',
|
|
'edit_tag' => 'タグ「:tag」を編集する',
|
|
'delete_tag' => 'タグ「:tag」を削除する',
|
|
'delete_journal_link' => '取引間のリンクを削除する',
|
|
'edit_object_group' => 'グループ「:title」を編集',
|
|
'delete_object_group' => 'グループ「:title」を削除',
|
|
'logout_others' => '他のセッションからログアウトする',
|
|
'asset_accounts' => '資産口座',
|
|
'expense_accounts' => '支出口座',
|
|
'revenue_accounts' => '収入口座',
|
|
'liabilities_accounts' => '負債',
|
|
'placeholder' => '[Placeholder]',
|
|
];
|