mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			2.7 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'                   => '首页',
 | |
|     'edit_currency'          => '编辑货币 ":name"',
 | |
|     'delete_currency'        => '删除货币 ":name"',
 | |
|     'newPiggyBank'           => '创建一个新的存钱罐',
 | |
|     'edit_piggyBank'         => '编辑存钱罐 ":name"',
 | |
|     'preferences'            => '设置',
 | |
|     'profile'                => '个人档案',
 | |
|     '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'    => '删除交易记录之间的连结',
 | |
|     'telemetry_index'        => '遥测',
 | |
|     'telemetry_view'         => '查看遥测',
 | |
| ];
 |