mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
79 lines
3.4 KiB
PHP
79 lines
3.4 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/>.
|
|
*/
|
|
|
|
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' => '转账',
|
|
'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][占位符]',
|
|
];
|