2019-01-28 20:10:52 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* breadcrumbs.php
|
2020-02-14 08:07:45 +01:00
|
|
|
* Copyright (c) 2019 james@firefly-iii.org
|
2019-01-28 20:10:52 +01:00
|
|
|
*
|
2019-10-05 06:23:46 +02:00
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
2019-01-28 20:10:52 +01:00
|
|
|
*
|
2019-10-05 06:23:46 +02:00
|
|
|
* 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.
|
2019-01-28 20:10:52 +01:00
|
|
|
*
|
2019-10-05 06:23:46 +02:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2019-01-28 20:10:52 +01:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2019-10-05 06:23:46 +02:00
|
|
|
* GNU Affero General Public License for more details.
|
2019-01-28 20:10:52 +01:00
|
|
|
*
|
2019-10-05 06:23:46 +02:00
|
|
|
* 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/>.
|
2019-01-28 20:10:52 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
return [
|
2019-05-29 18:30:52 +02:00
|
|
|
'home' => '首页',
|
2021-02-22 18:43:26 +01:00
|
|
|
'edit_currency' => '编辑货币“:name”',
|
|
|
|
|
'delete_currency' => '删除货币“:name”',
|
|
|
|
|
'newPiggyBank' => '创建新存钱罐',
|
|
|
|
|
'edit_piggyBank' => '编辑存钱罐“:name”',
|
|
|
|
|
'preferences' => '偏好设定',
|
2019-05-29 18:30:52 +02:00
|
|
|
'profile' => '个人档案',
|
2021-02-22 18:43:26 +01:00
|
|
|
'accounts' => '账户',
|
2019-05-29 18:30:52 +02:00
|
|
|
'changePassword' => '更改您的密码',
|
|
|
|
|
'change_email' => '更改您的电子邮件地址',
|
2021-02-22 18:43:26 +01:00
|
|
|
'bills' => '账单',
|
|
|
|
|
'newBill' => '新账单',
|
|
|
|
|
'edit_bill' => '编辑账单“:name”',
|
|
|
|
|
'delete_bill' => '删除账单“:name”',
|
2019-05-29 18:30:52 +02:00
|
|
|
'reports' => '报表',
|
2021-02-22 18:43:26 +01:00
|
|
|
'search_result' => '“:query”的搜索结果',
|
2019-05-29 18:30:52 +02:00
|
|
|
'withdrawal_list' => '支出',
|
2019-10-05 06:23:46 +02:00
|
|
|
'Withdrawal_list' => '支出',
|
2021-02-22 18:43:26 +01:00
|
|
|
'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”',
|
2019-05-29 18:30:52 +02:00
|
|
|
'tags' => '标签',
|
2021-02-22 18:43:26 +01:00
|
|
|
'createTag' => '创建新标签',
|
|
|
|
|
'edit_tag' => '编辑标签“:tag”',
|
|
|
|
|
'delete_tag' => '删除标签“:tag”',
|
|
|
|
|
'delete_journal_link' => '删除交易之间的关联',
|
2020-04-02 06:39:09 +02:00
|
|
|
'telemetry_index' => '遥测',
|
|
|
|
|
'telemetry_view' => '查看遥测',
|
2021-02-22 18:43:26 +01:00
|
|
|
'edit_object_group' => '编辑组“:title”',
|
|
|
|
|
'delete_object_group' => '删除组“:title”',
|
|
|
|
|
'logout_others' => '退出其他已登录设备'
|
2019-01-28 20:10:52 +01:00
|
|
|
];
|