mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-29 02:11:12 -06:00
5c3da9fd9e
Signed-off-by: James Cole <thegrumpydictator@gmail.com>
47 lines
2.0 KiB
PHP
47 lines
2.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* breadcrumbs.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
return [
|
|
'home' => '首頁',
|
|
'cash_accounts' => '現金帳戶',
|
|
'edit_account' => '編輯帳戶 ":name"',
|
|
'edit_currency' => '編輯貨幣 ":name"',
|
|
'delete_currency' => '刪除貨幣 ":name"',
|
|
'newPiggyBank' => '創建一個新的存錢筒',
|
|
'edit_piggyBank' => '編輯存錢筒 ":name"',
|
|
'preferences' => '設定',
|
|
'profile' => '個人設定',
|
|
'changePassword' => '更改密碼',
|
|
'bills' => '賬單',
|
|
'newBill' => '新增賬單',
|
|
'edit_bill' => '編輯賬單 ":name"',
|
|
'delete_bill' => '刪除賬單 ":name"',
|
|
'reports' => '報表',
|
|
'monthly_report' => '月度報告: :date',
|
|
'monthly_report_shared' => '月度報告︰ :date (包括共有賬號)',
|
|
'yearly_report' => '年度報告: :date',
|
|
'yearly_report_shared' => '年度報告︰ :date (包括共有賬號)',
|
|
'budget_report' => '預算報告: :date',
|
|
'searchResult' => '搜尋 ":query"',
|
|
'withdrawal_list' => '支出',
|
|
'deposit_list' => 'Revenue, income and deposits',
|
|
'transfer_list' => 'Transfers',
|
|
'transfers_list' => 'Transfers',
|
|
'create_withdrawal' => 'Create new withdrawal',
|
|
'create_deposit' => 'Create new deposit',
|
|
'create_transfer' => 'Create new transfer',
|
|
'edit_journal' => '編緝交易 ":description"',
|
|
'delete_journal' => '刪除交易 ":description"',
|
|
'tags' => '標籤',
|
|
'createTag' => '建立新標籤',
|
|
'edit_tag' => '編輯標籤 ":tag"',
|
|
'delete_tag' => '刪除標籤 ":tag"',
|
|
];
|