2019-01-28 20:10:52 +01:00
< ? php
/**
* firefly . 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 [
// general stuff:
2020-08-28 16:36:03 +02:00
'close' => '关闭' ,
'actions' => '操作' ,
'edit' => '编辑' ,
'delete' => '删除' ,
2021-02-25 06:27:43 +01:00
'split' => '拆分' ,
2021-02-22 18:43:26 +01:00
'single_split' => '拆分' ,
'clone' => '复制' ,
'last_seven_days' => '最近 7 天' ,
'last_thirty_days' => '最近 30 天' ,
2021-01-20 18:42:31 +01:00
'last_180_days' => '最近 180 天' ,
2020-12-30 18:43:37 +01:00
'YTD' => 'YTD' ,
2020-08-28 16:36:03 +02:00
'welcome_back' => '今天理财了吗?' ,
'everything' => '所有' ,
'today' => '今天' ,
2021-02-22 18:43:26 +01:00
'customRange' => '自定义范围' ,
2021-01-20 18:42:31 +01:00
'date_range' => '日期范围' ,
2021-02-25 06:27:43 +01:00
'apply' => '应用' ,
2020-08-28 16:36:03 +02:00
'select_date' => '选择日期..' ,
'cancel' => '取消' ,
'from' => '自' ,
'to' => '至' ,
'structure' => '结构' ,
2021-02-25 06:27:43 +01:00
'help_translating' => '帮助文档尚未提供简体中文版本,您愿意<a href="https://crowdin.com/project/firefly-iii-help">协助翻译</a>吗?' ,
2020-08-28 16:36:03 +02:00
'showEverything' => '全部显示' ,
'never' => '永不' ,
2021-02-22 18:43:26 +01:00
'no_results_for_empty_search' => '您的搜索结果为空,找不到任何内容。' ,
2020-08-28 16:36:03 +02:00
'removed_amount' => '已移除 :amount' ,
'added_amount' => '已新增 :amount' ,
'asset_account_role_help' => '基于您的选择而产生的额外选项,均可于事后调整。' ,
'Opening balance' => '初始余额' ,
2021-02-22 18:43:26 +01:00
'create_new_stuff' => '创建新内容' ,
2021-02-25 06:27:43 +01:00
'new_withdrawal' => '新支出' ,
2021-02-22 18:43:26 +01:00
'create_new_transaction' => '创建新交易' ,
2020-09-07 12:56:51 +02:00
'sidebar_frontpage_create' => '创建' ,
2020-08-28 16:36:03 +02:00
'new_transaction' => '新交易' ,
2021-02-22 18:43:26 +01:00
'no_rules_for_bill' => '此账单没有与之相关的规则。' ,
'go_to_asset_accounts' => '查看您的资产账户' ,
2020-08-28 16:36:03 +02:00
'go_to_budgets' => '前往您的预算' ,
2021-02-25 06:27:43 +01:00
'go_to_withdrawals' => '前往支出' ,
'clones_journal_x' => '此交易是“:description” (#:id) 的副本' ,
2020-08-28 16:36:03 +02:00
'go_to_categories' => '前往您的分类' ,
2021-02-22 18:43:26 +01:00
'go_to_bills' => '前往账单' ,
'go_to_expense_accounts' => '查看您的支出账户' ,
'go_to_revenue_accounts' => '查看您的收入账户' ,
2020-08-28 16:36:03 +02:00
'go_to_piggies' => '前往您的存钱罐' ,
2021-02-25 06:27:43 +01:00
'new_deposit' => '新收入' ,
2021-02-22 18:43:26 +01:00
'new_transfer' => '新转账' ,
'new_transfers' => '新转账' ,
'new_asset_account' => '新资产账户' ,
'new_expense_account' => '新支出账户' ,
'new_revenue_account' => '新收入账户' ,
'new_liabilities_account' => '新债务账户' ,
'new_budget' => '新预算' ,
'new_bill' => '新账单' ,
'block_account_logout' => '您已被强制退出登录,被封禁的帐户无法使用此站点。请确认您使用了有效的电子邮件地址进行注册。' ,
2020-08-28 16:36:03 +02:00
'flash_success' => '成功!' ,
2021-02-25 06:27:43 +01:00
'flash_info' => '提示' ,
2020-08-28 16:36:03 +02:00
'flash_warning' => '警告!' ,
'flash_error' => '错误!' ,
2021-06-11 19:44:01 +02:00
'flash_danger' => 'Danger!' ,
2021-02-22 18:43:26 +01:00
'flash_info_multiple' => '有1条消息|有:count条消息' ,
2020-08-28 16:36:03 +02:00
'flash_error_multiple' => '有1个错误|有 :count 个错误' ,
2021-02-22 18:43:26 +01:00
'net_worth' => '净资产' ,
2020-08-28 16:36:03 +02:00
'help_for_this_page' => '本页说明' ,
2022-02-05 08:59:24 +01:00
'help_for_this_page_body' => 'You can find more information about this page <a href="https://docs.firefly-iii.org/">in the documentation</a>.' ,
2020-08-28 16:36:03 +02:00
'two_factor_welcome' => '您好!' ,
2021-02-22 18:43:26 +01:00
'two_factor_enter_code' => '若要继续,请输入您的手机 App 为您生成的两步验证代码。' ,
2020-08-28 16:36:03 +02:00
'two_factor_code_here' => '在此输入代码' ,
'two_factor_title' => '两步验证' ,
'authenticate' => '验证' ,
'two_factor_forgot_title' => '遗失两步验证' ,
2021-02-22 18:43:26 +01:00
'two_factor_forgot' => '我忘记了两步验证码' ,
2020-08-28 16:36:03 +02:00
'two_factor_lost_header' => '遗失了您的两步验证吗?' ,
2021-02-22 18:43:26 +01:00
'two_factor_lost_intro' => '如果您同时遗失了备份代码,很抱歉,您无法通过网页进行恢复。您可以通过下述方式进行操作。' ,
'two_factor_lost_fix_self' => '如果这是您自己的 Firefly III 站点,请阅读<a href="https://docs.firefly-iii.org/faq/other#i-lost-my-two-factor-authentication-codes-and-backup-codes">FAQ页面中的此条目</a>以获取更多帮助。' ,
'two_factor_lost_fix_owner' => '如果这不是您自己的 Firefly III 站点,请邮件联系站点管理员(<a href="mailto::site_owner">:site_owner</a>)协助您重置两步验证。' ,
2020-08-28 16:36:03 +02:00
'mfa_backup_code' => '您已使用备用代码登录到 Firefly III 。 您不能再使用它,因此请将其划掉。' ,
2021-02-22 18:43:26 +01:00
'pref_two_factor_new_backup_codes' => '获取新的备份代码' ,
'pref_two_factor_backup_code_count' => '您还有 :count 个可用的备份代码|您还有 :count 个可用的备份代码' ,
2020-08-28 16:36:03 +02:00
'2fa_i_have_them' => '我存下来了!' ,
2021-02-22 18:43:26 +01:00
'warning_much_data' => ':days 天的数据需要一段时间加载。' ,
2020-08-28 16:36:03 +02:00
'registered' => '您已成功注册!' ,
2021-02-22 18:43:26 +01:00
'Default asset account' => '默认资产账户' ,
'no_budget_pointer' => '您还没有预算,您应该在<a href="budgets">预算页面</a>进行创建。预算可以帮助您追踪支出。' ,
'no_bill_pointer' => '您还没有账单,您应该在<a href="bills">账单页面</a>进行创建。账单可以帮助您追踪支出。' ,
'Savings account' => '储蓄账户' ,
2020-08-28 16:36:03 +02:00
'Credit card' => '信用卡' ,
2021-02-22 18:43:26 +01:00
'source_accounts' => '来源账户|来源账户' ,
'destination_accounts' => '目标账户|目标账户' ,
'user_id_is' => '您的帐户 ID 为 <strong>:user</strong>' ,
'field_supports_markdown' => '此字段支持 <a href="https://en.support.wordpress.com/markdown-quick-reference/">Markdown</a> 语法。' ,
'need_more_help' => '如果您在使用 Firefly III 时需要获取更多帮助,请<a href="https://github.com/firefly-iii/firefly-iii/issues">提交 GitHub 工单</a>。' ,
'reenable_intro_text' => '您也可以重置 <a href="#" id="reenableGuidance">页面引导流程</a>。' ,
2020-08-28 16:36:03 +02:00
'intro_boxes_after_refresh' => '当您重新整理页面后,介绍框将会重新出现。' ,
2021-02-22 18:43:26 +01:00
'show_all_no_filter' => '显示所有交易,不以日期分组' ,
2020-08-28 16:36:03 +02:00
'expenses_by_category' => '按分类的支出' ,
'expenses_by_budget' => '按预算的支出' ,
'income_by_category' => '按分类的收入' ,
2021-02-22 18:43:26 +01:00
'expenses_by_asset_account' => '按资产账户的支出' ,
'expenses_by_expense_account' => '按支出账户的支出' ,
2020-08-28 16:36:03 +02:00
'cannot_redirect_to_account' => 'Firefly III 无法重新指向您至正确页面,抱歉。' ,
'sum_of_expenses' => '支出总和' ,
'sum_of_income' => '收入总和' ,
'liabilities' => '债务' ,
2021-02-25 06:27:43 +01:00
'spent_in_specific_budget' => '预算“:budget”的支出' ,
'spent_in_specific_double' => '账户“:account”的支出' ,
2021-01-20 18:42:31 +01:00
'earned_in_specific_double' => '“:account” 中的收入' ,
2021-02-22 18:43:26 +01:00
'source_account' => '来源账户' ,
'source_account_reconciliation' => '您不能编辑对账交易的来源账户。' ,
'destination_account' => '目标账户' ,
2020-08-28 16:36:03 +02:00
'destination_account_reconciliation' => '您不能编辑对账交易的目标账户' ,
2021-02-25 06:27:43 +01:00
'sum_of_expenses_in_budget' => '预算“:budget”的总支出' ,
2020-08-28 16:36:03 +02:00
'left_in_budget_limit' => '依照预算的支出尚余' ,
'current_period' => '目前区间' ,
'show_the_current_period_and_overview' => '显示目前区间与概览' ,
2021-02-22 18:43:26 +01:00
'pref_languages_locale' => '若要正常使用英语外的语言, 您的操作系统必须配置了正确的区域信息( locale-information) 。若上述信息不存在, 则货币数据、日期与金额可能出现格式错误。' ,
'budget_in_period' => ':start – :end 预算“:name” (:currency) 的所有交易' ,
'chart_budget_in_period' => ':start – :end 预算“:name” (:currency) 的所有交易图表' ,
2020-08-28 16:36:03 +02:00
'chart_budget_in_period_only_currency' => '您的预算金额以 :currency 显示 ,因此此图表将以 :currency 显示交易。' ,
2021-02-22 18:43:26 +01:00
'chart_account_in_period' => ':start – :end 账户“:name” (:balance) 的所有交易图表' ,
'chart_category_in_period' => ':start – :end 分类“:name”的所有交易图表' ,
2020-08-28 16:36:03 +02:00
'chart_category_all' => '分类「:name」的所有交易图表' ,
2021-02-25 06:27:43 +01:00
'clone_withdrawal' => '复制此支出' ,
'clone_deposit' => '复制此收入' ,
2021-02-22 18:43:26 +01:00
'clone_transfer' => '复制此转账' ,
2020-08-28 16:36:03 +02:00
'multi_select_no_selection' => '未选取' ,
'multi_select_select_all' => '选取全部' ,
'multi_select_n_selected' => '选取' ,
'multi_select_all_selected' => '全部选取' ,
2021-02-22 18:43:26 +01:00
'multi_select_filter_placeholder' => '查找…' ,
2020-08-28 16:36:03 +02:00
'intro_next_label' => '下一个' ,
'intro_prev_label' => '上一个' ,
2021-02-22 18:43:26 +01:00
'intro_skip_label' => '跳过' ,
2020-08-28 16:36:03 +02:00
'intro_done_label' => '完成' ,
2021-02-22 18:43:26 +01:00
'between_dates_breadcrumb' => ':start – :end' ,
2020-08-28 16:36:03 +02:00
'all_journals_without_budget' => '没有预算的所有交易' ,
'journals_without_budget' => '没有预算的交易' ,
'all_journals_without_category' => '没有类别的所有交易' ,
'journals_without_category' => '没有类别的交易' ,
2021-02-22 18:43:26 +01:00
'all_journals_for_account' => '账户“:name”的所有交易' ,
'chart_all_journals_for_account' => '账户“:name”的所有交易图表' ,
'journals_in_period_for_account' => ':start – :end 账户“:name”的所有交易' ,
2021-09-25 14:20:57 +02:00
'journals_in_period_for_account_js' => 'All transactions for account {title} between {start} and {end}' ,
2021-02-25 06:27:43 +01:00
'transferred' => '已转账' ,
2020-08-28 16:36:03 +02:00
'all_withdrawal' => '所有支出' ,
'all_transactions' => '所有交易' ,
2021-02-22 18:43:26 +01:00
'title_withdrawal_between' => ':start – :end 的所有支出' ,
2020-08-28 16:36:03 +02:00
'all_deposit' => '所有收入' ,
2021-02-22 18:43:26 +01:00
'title_deposit_between' => ':start – :end 的所有收入' ,
2021-02-25 06:27:43 +01:00
'all_transfers' => '所有转账' ,
2021-02-22 18:43:26 +01:00
'title_transfers_between' => ':start – :end 的所有转账' ,
2021-02-25 06:27:43 +01:00
'all_transfer' => '所有转账' ,
2020-08-28 16:36:03 +02:00
'all_journals_for_tag' => '标签「:tag」的所有交易' ,
2021-02-22 18:43:26 +01:00
'title_transfer_between' => ':start – :end 的所有转账' ,
2020-08-28 16:36:03 +02:00
'all_journals_for_category' => '分类 :name 的所有交易' ,
'all_journals_for_budget' => '预算 :name 的所有交易' ,
'chart_all_journals_for_budget' => '预算 :name 的所有交易图表' ,
2021-02-22 18:43:26 +01:00
'journals_in_period_for_category' => ':start – :end 分类“:name”的所有交易' ,
'journals_in_period_for_tag' => ':start – :end 标签“:tag”的所有交易' ,
'not_available_demo_user' => '您尝试使用的功能对演示用户不可用。' ,
'exchange_rate_instructions' => '资产账户“@name”仅接受使用 @native_currency 的交易,若您希望使用 @foreign_currency, 请确认 @native_currency 内的总额是已知的:' ,
'transfer_exchange_rate_instructions' => '来源资产账户“@source_name”仅接受 @source_currency 的交易,目标资产账户“@dest_name”仅接受 @dest_currency 的交易,您必须用两方货币来提供正确的已转账总额。' ,
2020-08-28 16:36:03 +02:00
'transaction_data' => '交易资料' ,
'invalid_server_configuration' => '无效服务器设置' ,
'invalid_locale_settings' => 'Firefly III 无法格式化金额总数,因为您的伺服器缺乏必要套件。此处为 <a href="https://github.com/firefly-iii/help/wiki/Missing-locale-packages">如何处置的指引</a>。' ,
'quickswitch' => '快速切换' ,
2021-02-22 18:43:26 +01:00
'sign_in_to_start' => '登录即可开始您的理财规划' ,
2020-08-28 16:36:03 +02:00
'sign_in' => '登录' ,
'register_new_account' => '注册新帐号' ,
2021-02-22 18:43:26 +01:00
'forgot_my_password' => '忘记密码' ,
2020-08-28 16:36:03 +02:00
'problems_with_input' => '你的输入有一些问题。' ,
'reset_password' => '重设密码' ,
'button_reset_password' => '重设密码' ,
'reset_button' => '重置' ,
'want_to_login' => '我想登录' ,
'login_page_title' => '登录到Firefly III' ,
'register_page_title' => '在 Firefly III 注册' ,
'forgot_pw_page_title' => '忘记您 Firefly III 的密码' ,
'reset_pw_page_title' => '重设您 Firefly III 的密码' ,
2021-02-22 18:43:26 +01:00
'cannot_reset_demo_user' => '您不能重置演示用户的密码。' ,
2021-01-20 18:42:31 +01:00
'no_att_demo_user' => '演示用户不能上传附件。' ,
2020-08-28 16:36:03 +02:00
'button_register' => '注册帐号' ,
'authorization' => '认证' ,
2021-02-25 06:27:43 +01:00
'active_bills_only' => '仅包括已启用账单' ,
2021-02-22 18:43:26 +01:00
'active_bills_only_total' => '所有已启用账单' ,
2021-02-25 06:27:43 +01:00
'active_exp_bills_only' => '仅包括已启用和预期的账单' ,
2021-02-22 18:43:26 +01:00
'active_exp_bills_only_total' => '所有已启用的预期账单' ,
2021-02-25 06:27:43 +01:00
'per_period_sum_1D' => '预期每日支出' ,
'per_period_sum_1W' => '预期每周支出' ,
'per_period_sum_1M' => '预期每月支出' ,
'per_period_sum_3M' => '预期每季度支出' ,
'per_period_sum_6M' => '预期每半年支出' ,
'per_period_sum_1Y' => '预期每年支出' ,
2021-02-22 18:43:26 +01:00
'average_per_bill' => '每张账单平均值' ,
2020-08-28 16:36:03 +02:00
'expected_total' => '期望总数' ,
2021-02-22 18:43:26 +01:00
'reconciliation_account_name' => ':name 对账 (:currency)' ,
2020-09-07 12:56:51 +02:00
'saved' => '已保存' ,
2021-01-20 18:42:31 +01:00
'advanced_options' => '高级选项' ,
2021-02-22 18:43:26 +01:00
'advanced_options_explain' => 'Firefly III 的部分页面将高级选项隐藏于此按钮中。当前页面没有需要额外查看的内容,但请一定要留意其他页面!' ,
2020-12-04 20:27:40 +01:00
'here_be_dragons' => 'Hic sunt dracones' ,
2020-07-05 18:29:58 +02:00
2021-02-05 08:21:52 +01:00
// Webhooks
'webhooks' => 'Webhooks' ,
2019-01-28 20:10:52 +01:00
// API access
2020-08-28 16:36:03 +02:00
'authorization_request' => 'Firefly III :version 版授权请求' ,
2021-11-12 20:07:09 +01:00
'authorization_request_intro' => 'Application "<strong>:client</strong>" is requesting permission to access your financial administration. Would you like to authorize <strong>:client</strong> to access these records?' ,
'authorization_request_site' => 'You will be redirected to <code>:url</code> which will then be able to access your Firefly III data.' ,
'authorization_request_invalid' => 'This access request is invalid. Please never follow this link again.' ,
2020-08-28 16:36:03 +02:00
'scopes_will_be_able' => '此应用可以:' ,
'button_authorize' => '授权' ,
2021-02-22 18:43:26 +01:00
'none_in_select_list' => '(空)' ,
'no_piggy_bank' => '(无存钱罐)' ,
2020-08-28 16:36:03 +02:00
'name_in_currency' => ':name 于 :currency' ,
'paid_in_currency' => '以 :currency 支付' ,
'unpaid_in_currency' => '未以 :currency 支付' ,
'is_alpha_warning' => '您正在运行 ALPHA 版本。请注意错误和问题。' ,
'is_beta_warning' => '您正在运行 BETA 版本。请注意错误和问题。' ,
2021-02-22 18:43:26 +01:00
'all_destination_accounts' => '目标账户' ,
'all_source_accounts' => '来源账户' ,
2021-01-20 18:42:31 +01:00
'back_to_index' => '返回列表 ' ,
2021-02-22 18:43:26 +01:00
'cant_logout_guard' => 'Firefly III 无法退出登录。' ,
2021-01-20 18:42:31 +01:00
'external_url' => '外部链接' ,
2021-02-22 18:43:26 +01:00
'internal_reference' => '内部引用' ,
2019-01-28 20:10:52 +01:00
// check for updates:
2020-08-28 16:36:03 +02:00
'update_check_title' => '检查更新' ,
'admin_update_check_title' => '自动检查更新' ,
2021-02-22 18:43:26 +01:00
'admin_update_check_explain' => 'Firefly III 可以自动检查更新。当您启用此设置时,它将与 Firefly III 更新服务器通讯,查看是否有新版本的 Firefly III。当有新版时, 您将收到通知。您可以使用右边的按钮测试此通知。请在下面选择您是否希望 Firefly III 检查更新。' ,
'check_for_updates_permission' => 'Firefly III 可自动检查更新,但此功能需要您的许可。请前往<a href=":link">管理页面</a>确认您是否需要启用此功能。' ,
'updates_ask_me_later' => '稍后再次询问' ,
2020-08-28 16:36:03 +02:00
'updates_do_not_check' => '不检查更新' ,
2021-02-22 18:43:26 +01:00
'updates_enable_check' => '启用检查更新' ,
'admin_update_check_now_title' => '立即检查更新' ,
'admin_update_check_now_explain' => '如果您点击此按钮, Firefly III 将会检查您现在的版本是否为最新版。' ,
'check_for_updates_button' => '立即检查!' ,
'update_new_version_alert' => '发现可用的 Firefly III 新版本,您正在运行的版本是 :your_version, 最新版本是 :new_version( 发布于 :date) 。' ,
2020-08-28 16:36:03 +02:00
'update_version_beta' => '此版本是 BETA 版本。您可能会遇到问题。' ,
'update_version_alpha' => '此版本是 ALPHA 版本。您可能会遇到问题。' ,
2021-02-22 18:43:26 +01:00
'update_current_version_alert' => '您正在运行 :version, 这是最新的可用版本。' ,
'update_newer_version_alert' => '您正在运行 :your_version, 它比最新发布的 :new_version 更新。' ,
2020-08-28 16:36:03 +02:00
'update_check_error' => '检查更新时发生错误::error' ,
'unknown_error' => '未知错误。抱歉。' ,
2021-02-22 18:43:26 +01:00
'just_new_release' => '有新版本可用!版本 :version 发布于 :date。这个版本非常新, 等待几天后新版本才能稳定。' ,
2020-09-07 12:56:51 +02:00
'disabled_but_check' => '您已禁用更新检查。所以请不要忘记手动检查更新。谢谢!' ,
2020-08-28 16:36:03 +02:00
'admin_update_channel_title' => '更新通道' ,
2021-02-22 18:43:26 +01:00
'admin_update_channel_explain' => 'Firefly III 具有三个更新“通道”, 其决定了您在功能、改进和错误修正方面的不同体验。如果您喜欢冒险, 请使用“beta”通道; 如果您不惧危险, 请使用“alpha”通道。' ,
'update_channel_stable' => '稳定版,所有功能可以正常运行' ,
'update_channel_beta' => 'Beta版, 拥有新功能但可能崩溃' ,
'update_channel_alpha' => 'Alpha版, 随时添加新功能, 可能出现未知问题' ,
2019-01-28 20:10:52 +01:00
// search
2021-02-22 18:43:26 +01:00
'search' => '搜索' ,
2021-02-25 06:27:43 +01:00
'search_query' => '搜索语句' ,
2021-02-22 18:43:26 +01:00
'search_found_transactions' => 'Firefly III 找到 :count 条交易,用时 :time 秒。|Firefly III 找到 :count 条交易,用时 :time 秒。' ,
'search_found_more_transactions' => 'Firefly III 找到超过 :count 条交易,用时 :time 秒。' ,
2021-02-25 06:27:43 +01:00
'search_for_query' => 'Firefly III 正在搜索包含 <span class="text-info">:query</span> 的交易' ,
2021-06-30 20:02:19 +02:00
'invalid_operators_list' => 'These search parameters are not valid and have been ignored.' ,
2021-02-25 06:27:43 +01:00
'search_modifier_date_is' => '交易日期为“:value”' ,
2021-02-22 18:43:26 +01:00
'search_modifier_id' => '交易 ID 为 “:value”' ,
'search_modifier_date_before' => '交易日期为“:value”或之前' ,
'search_modifier_date_after' => '交易日期为“:value”或之后' ,
'search_modifier_created_on' => '交易创建于“:value”' ,
'search_modifier_updated_on' => '交易上次更新于“:value”' ,
'search_modifier_external_id' => '外部 ID 为“:value”' ,
2022-01-28 21:19:05 +01:00
'search_modifier_no_external_url' => 'The transaction has no external URL' ,
'search_modifier_any_external_url' => 'The transaction must have a (any) external URL' ,
2021-02-22 18:43:26 +01:00
'search_modifier_internal_reference' => '内部引用为“:value”' ,
'search_modifier_description_starts' => '描述为“:value”' ,
'search_modifier_description_ends' => '描述结尾为“:value”' ,
'search_modifier_description_contains' => '描述包含“:value”' ,
'search_modifier_description_is' => '描述为“:value”' ,
'search_modifier_currency_is' => '交易 (外币) 货币为“:value”' ,
'search_modifier_foreign_currency_is' => '交易外币为“:value”' ,
'search_modifier_has_attachments' => '交易必须有附件' ,
'search_modifier_has_no_category' => '交易不能有分类' ,
'search_modifier_has_any_category' => '交易必须有分类' ,
'search_modifier_has_no_budget' => '交易不能有预算' ,
'search_modifier_has_any_budget' => '交易必须有预算' ,
2021-04-11 07:43:07 +02:00
'search_modifier_has_no_bill' => 'The transaction must have no bill' ,
'search_modifier_has_any_bill' => 'The transaction must have a (any) bill' ,
2021-02-22 18:43:26 +01:00
'search_modifier_has_no_tag' => '交易不能有标签' ,
'search_modifier_has_any_tag' => '交易必须有标签' ,
'search_modifier_notes_contain' => '交易备注包含“:value”' ,
'search_modifier_notes_start' => '交易备注开头为“:value”' ,
'search_modifier_notes_end' => '交易备注结尾为“:value”' ,
'search_modifier_notes_are' => '交易备注全等于“:value”' ,
'search_modifier_no_notes' => '交易备注为空' ,
'search_modifier_any_notes' => '交易备注不为空' ,
'search_modifier_amount_exactly' => '金额等于:value' ,
'search_modifier_amount_less' => '金额小于或等于:value' ,
'search_modifier_amount_more' => '金额大于或等于:value' ,
'search_modifier_source_account_is' => '来源账户名称为“:value”' ,
'search_modifier_source_account_contains' => '来源账户名称包含“:value”' ,
'search_modifier_source_account_starts' => '来源账户名称开头为“:value”' ,
'search_modifier_source_account_ends' => '来源账户名称结尾为“:value”' ,
'search_modifier_source_account_id' => '来源账户 ID 为 :value' ,
'search_modifier_source_account_nr_is' => '来源账户编号 (IBAN) 为“:value”' ,
'search_modifier_source_account_nr_contains' => '来源账户编号 (IBAN) 包含“:value”' ,
'search_modifier_source_account_nr_starts' => '来源账户编号 (IBAN) 开头为“:value”' ,
'search_modifier_source_account_nr_ends' => '来源账户编号 (IBAN) 结尾为“:value”' ,
'search_modifier_destination_account_is' => '目标账户名称为“:value”' ,
'search_modifier_destination_account_contains' => '目标账户名称包含“:value”' ,
'search_modifier_destination_account_starts' => '目标账户名称开头为“:value”' ,
'search_modifier_destination_account_ends' => '目标账户名称结尾为“:value”' ,
'search_modifier_destination_account_id' => '目标账户 ID 为 :value' ,
'search_modifier_destination_is_cash' => '目标账户为 (现金) 账户' ,
'search_modifier_source_is_cash' => '来源账户为 (现金) 账户' ,
'search_modifier_destination_account_nr_is' => '目标账户编号 (IBAN) 为“:value”' ,
'search_modifier_destination_account_nr_contains' => '目标账户编号 (IBAN) 包含“:value”' ,
'search_modifier_destination_account_nr_starts' => '目标账户编号 (IBAN) 开头为“:value”' ,
'search_modifier_destination_account_nr_ends' => '目标账户编号 (IBAN) 结尾为“:value”' ,
'search_modifier_account_id' => '来源或/和目标账户 ID 为::value' ,
'search_modifier_category_is' => '分类是“:value”' ,
'search_modifier_budget_is' => '预算是“:value”' ,
'search_modifier_bill_is' => '账单是“:value”' ,
'search_modifier_transaction_type' => '交易类型是“:value”' ,
'search_modifier_tag_is' => '标签是“:value”' ,
2021-12-19 06:59:10 +01:00
'search_modifier_date_is_year' => 'Transaction is in year ":value"' ,
'search_modifier_date_is_month' => 'Transaction is in month ":value"' ,
'search_modifier_date_is_day' => 'Transaction is on day of month ":value"' ,
'search_modifier_date_before_year' => 'Transaction is before or in year ":value"' ,
'search_modifier_date_before_month' => 'Transaction is before or in month ":value"' ,
2022-01-29 09:26:49 +01:00
'search_modifier_date_before_day' => 'Transaction is before or on day of month ":value"' ,
2021-12-19 06:59:10 +01:00
'search_modifier_date_after_year' => 'Transaction is in or after year ":value"' ,
'search_modifier_date_after_month' => 'Transaction is in or after month ":value"' ,
'search_modifier_date_after_day' => 'Transaction is after or on day of month ":value"' ,
2021-02-22 18:43:26 +01:00
'update_rule_from_query' => '从搜索语句更新规则“:rule”' ,
'create_rule_from_query' => '从搜索语句创建新规则' ,
'rule_from_search_words' => '规则引擎无法处理“:string”。符合搜索语句的建议规则可能会给出不同的结果, 请仔细确认规则触发条件。' ,
2020-08-28 16:36:03 +02:00
// END
2021-02-25 06:27:43 +01:00
'modifiers_applies_are' => '搜索结果同时包含以下内容:' ,
2020-08-28 16:36:03 +02:00
'general_search_error' => '搜索时出错。请检查日志文件以获取更多信息。' ,
2021-02-22 18:43:26 +01:00
'search_box' => '搜索' ,
2021-02-25 06:27:43 +01:00
'search_box_intro' => '欢迎使用 Firefly III 的搜索功能,请输入搜索语句。由于搜索为高级功能,请确保您已阅读过帮助文件。' ,
'search_error' => '搜索时出现错误' ,
2021-02-22 18:43:26 +01:00
'search_searching' => '正在搜索...' ,
2020-08-28 16:36:03 +02:00
'search_results' => '搜索结果' ,
2019-01-28 20:10:52 +01:00
// repeat frequencies:
2020-08-28 16:36:03 +02:00
'repeat_freq_yearly' => '每年' ,
'repeat_freq_half-year' => '每半年' ,
'repeat_freq_quarterly' => '每季' ,
'repeat_freq_monthly' => '每月' ,
'repeat_freq_weekly' => '每周' ,
2022-02-05 08:59:24 +01:00
'repeat_freq_daily' => 'daily' ,
'daily' => 'daily' ,
2020-08-28 16:36:03 +02:00
'weekly' => '每周' ,
'quarterly' => '每季' ,
'half-year' => '每半年' ,
'yearly' => '每年' ,
2019-01-28 20:10:52 +01:00
// rules
2021-02-22 18:43:26 +01:00
'cannot_fire_inactive_rules' => '您不能执行已停用的规则。' ,
2020-08-28 16:36:03 +02:00
'rules' => '规则' ,
'rule_name' => '规则名称' ,
'rule_triggers' => '规则触发于' ,
2021-02-22 18:43:26 +01:00
'rule_actions' => '规则将执行' ,
2020-08-28 16:36:03 +02:00
'new_rule' => '新规则' ,
2021-02-22 18:43:26 +01:00
'new_rule_group' => '新规则组' ,
2020-08-28 16:36:03 +02:00
'rule_priority_up' => '赋予规则更高优先次序' ,
'rule_priority_down' => '赋予规则更低优先次序' ,
2021-02-22 18:43:26 +01:00
'make_new_rule_group' => '创建新规则组' ,
'store_new_rule_group' => '保存新规则组' ,
'created_new_rule_group' => '新规则组“:title”已保存! ' ,
'updated_rule_group' => '成功更新“:title”规则组' ,
'edit_rule_group' => '编辑“:title”规则组' ,
2021-02-25 06:27:43 +01:00
'duplicate_rule' => '复制规则“:title”' ,
'rule_copy_of' => ':title 副本' ,
'duplicated_rule' => '已复制规则“:title”为“:newTitle”' ,
2021-02-22 18:43:26 +01:00
'delete_rule_group' => '删除“:title”规则组' ,
'deleted_rule_group' => '已删除规则组“:title”' ,
'update_rule_group' => '更新规则组' ,
2020-08-28 16:36:03 +02:00
'no_rules_in_group' => '此群组内没有规则' ,
2021-02-22 18:43:26 +01:00
'move_rule_group_up' => '向上移动规则组' ,
'move_rule_group_down' => '向下移动规则组' ,
'save_rules_by_moving' => '将此规则移动到另一个规则组并保存:|将这些规则移动到另一个规则组并保存:' ,
'make_new_rule' => '在规则组“:title”中创建新规则' ,
2020-08-28 16:36:03 +02:00
'make_new_rule_no_group' => '建立新规则' ,
2021-02-22 18:43:26 +01:00
'instructions_rule_from_bill' => '为了匹配交易至您的新账单“:name”, Firefly III 可以建立一条新规则,对您保存的每一笔交易自动进行检查。您确认下方信息准确无误后,即可保存规则,让 Firefly III 自动将交易匹配至您的新账单。' ,
2020-08-28 16:36:03 +02:00
'instructions_rule_from_journal' => '基于您的交易之一创建一条规则。补充或提交下面的表格。' ,
2021-02-22 18:43:26 +01:00
'rule_is_strict' => '精确规则' ,
'rule_is_not_strict' => '模糊规则' ,
'rule_help_stop_processing' => '勾选此复选框时,将不会执行此组中的后续规则。' ,
'rule_help_strict' => '在精确规则中,所有触发条件必须全部满足才能执行动作。在模糊规则中,满足任意触发条件即可执行动作。' ,
'rule_help_active' => '已停用的规则永远不会被触发。' ,
2021-02-25 06:27:43 +01:00
'stored_new_rule' => '新规则“:title”已保存' ,
2020-08-28 16:36:03 +02:00
'deleted_rule' => '已删除标题为 ":title" 的规则' ,
2021-02-22 18:43:26 +01:00
'store_new_rule' => '保存新规则' ,
2020-08-28 16:36:03 +02:00
'updated_rule' => '已以 ":title" 为标题更新规则' ,
2021-02-22 18:43:26 +01:00
'default_rule_group_name' => '默认规则' ,
2021-02-25 06:27:43 +01:00
'default_rule_group_description' => '未添加至特定组的规则。' ,
2021-02-22 18:43:26 +01:00
'trigger' => '触发条件' ,
'trigger_value' => '触发值' ,
'stop_processing_other_triggers' => '停止处理其他触发条件' ,
'add_rule_trigger' => '新增触发条件' ,
2020-08-28 16:36:03 +02:00
'action' => '动作' ,
'action_value' => '动作值' ,
'stop_executing_other_actions' => '停止处理其他动作' ,
'add_rule_action' => '新增动作' ,
'edit_rule' => '编辑规则 ":title"' ,
'delete_rule' => '删除规则 ":title"' ,
'update_rule' => '更新规则' ,
2021-02-22 18:43:26 +01:00
'test_rule_triggers' => '查看匹配的交易' ,
'warning_no_matching_transactions' => '未找到符合条件的交易' ,
'warning_no_valid_triggers' => '未提供有效触发条件。' ,
2021-02-25 06:27:43 +01:00
'apply_rule_selection' => '选取交易并应用规则“:title”' ,
2021-02-22 18:43:26 +01:00
'apply_rule_selection_intro' => '规则如“:title”一般仅应用于新增的或更新后的交易, 但您可要求 Firefly III 针对已有的单笔或多笔交易执行规则。在您更新一条规则后,且必须应用此规则至其他交易时,即可使用此功能。' ,
'include_transactions_from_accounts' => '包含来自这些账户的交易' ,
2021-04-03 10:40:31 +02:00
'include' => 'Include?' ,
2021-02-22 18:43:26 +01:00
'applied_rule_selection' => '{0} 规则“:title”没有改变任何您选择的交易。|[1] 规则“:title”改变了一条您选择的交易。|[2,*] 规则“:title”改变了:count条您选择的交易。' ,
2020-08-28 16:36:03 +02:00
'execute' => '执行' ,
2021-02-25 06:27:43 +01:00
'apply_rule_group_selection' => '选取交易并应用规则组“:title”' ,
2021-02-22 18:43:26 +01:00
'apply_rule_group_selection_intro' => '规则组如“:title”一般仅应用于新增的或更新后的交易, 但您可要求 Firefly III 针对已有的单笔或多笔交易执行规则组内的规则。在您更新一个规则组后,且必须应用此组至其他交易时,即可使用此功能。' ,
'applied_rule_group_selection' => '规则组“:title”已应用至所选交易' ,
2019-01-28 20:10:52 +01:00
// actions and triggers
2021-02-22 18:43:26 +01:00
'rule_trigger_user_action' => '用户动作为“:trigger_value”' ,
'rule_trigger_source_account_starts_choice' => '来源账户名称开头为...' ,
'rule_trigger_source_account_starts' => '来源账户名称开头为“:trigger_value”' ,
'rule_trigger_source_account_ends_choice' => '来源账户结尾为…' ,
'rule_trigger_source_account_ends' => '来源账户名称结尾为“:trigger_value”' ,
'rule_trigger_source_account_is_choice' => '来源账户名称为...' ,
'rule_trigger_source_account_is' => '来源账户名称为“:trigger_value”' ,
'rule_trigger_source_account_contains_choice' => '来源账户名称包含...' ,
'rule_trigger_source_account_contains' => '来源账户名称包含“:trigger_value”' ,
'rule_trigger_account_id_choice' => '账户 ID (来源/目标) 为...' ,
'rule_trigger_account_id' => '账户 ID (来源/目标) 为“:trigger_value”' ,
'rule_trigger_source_account_id_choice' => '来源账户 ID 为...' ,
'rule_trigger_source_account_id' => '来源账户 ID 为 :trigger_value' ,
'rule_trigger_destination_account_id_choice' => '目标账户 ID 为...' ,
'rule_trigger_destination_account_id' => '目标账户 ID 为 :trigger_value' ,
'rule_trigger_account_is_cash_choice' => '账户 (来源/目标) 为 (现金) 账户' ,
'rule_trigger_account_is_cash' => '账户 (来源/目标) 为 (现金) 账户' ,
'rule_trigger_source_is_cash_choice' => '来源账户为 (现金) 账户' ,
'rule_trigger_source_is_cash' => '来源账户为 (现金) 账户' ,
'rule_trigger_destination_is_cash_choice' => '目标账户为 (现金) 账户' ,
'rule_trigger_destination_is_cash' => '目标账户为 (现金) 账户' ,
'rule_trigger_source_account_nr_starts_choice' => '来源账户编号 / IBAN 开头为...' ,
'rule_trigger_source_account_nr_starts' => '来源账户编号 / IBAN 开头为“:trigger_value”' ,
'rule_trigger_source_account_nr_ends_choice' => '来源账户编号 / IBAN 结尾为...' ,
'rule_trigger_source_account_nr_ends' => '来源账户编号 / IBAN 结尾为“:trigger_value”' ,
'rule_trigger_source_account_nr_is_choice' => '来源账户编号 / IBAN 为...' ,
'rule_trigger_source_account_nr_is' => '来源账户编号 / IBAN 为“:trigger_value”' ,
'rule_trigger_source_account_nr_contains_choice' => '来源账户编号 / IBAN 包含...' ,
'rule_trigger_source_account_nr_contains' => '来源账户编号 / IBAN 包含“:trigger_value”' ,
'rule_trigger_destination_account_starts_choice' => '目标账户名称开头为...' ,
'rule_trigger_destination_account_starts' => '目标账户名称开头为“:trigger_value”' ,
'rule_trigger_destination_account_ends_choice' => '目标账户名称结尾为...' ,
'rule_trigger_destination_account_ends' => '目标账户名称结尾为“:trigger_value”' ,
'rule_trigger_destination_account_is_choice' => '目标账户名称为...' ,
'rule_trigger_destination_account_is' => '目标账户名称为“:trigger_value”' ,
'rule_trigger_destination_account_contains_choice' => '目标账户名称包含...' ,
'rule_trigger_destination_account_contains' => '目标账户名称包含“:trigger_value”' ,
'rule_trigger_destination_account_nr_starts_choice' => '目标账户编号 / IBAN 开头为...' ,
'rule_trigger_destination_account_nr_starts' => '目标账户编号 / IBAN 开头为“:trigger_value”' ,
'rule_trigger_destination_account_nr_ends_choice' => '目标账户编号 / IBAN 结尾为...' ,
'rule_trigger_destination_account_nr_ends' => '目标账户编号 / IBAN 结尾为“:trigger_value”' ,
'rule_trigger_destination_account_nr_is_choice' => '目标账户编号 / IBAN 为...' ,
'rule_trigger_destination_account_nr_is' => '目标账户编号 / IBAN 为“:trigger_value”' ,
'rule_trigger_destination_account_nr_contains_choice' => '目标账户编号 / IBAN 包含...' ,
'rule_trigger_destination_account_nr_contains' => '目标账户编号 / IBAN 包含“:trigger_value”' ,
2021-02-25 06:27:43 +01:00
'rule_trigger_transaction_type_choice' => '转账类型为…' ,
'rule_trigger_transaction_type' => '转账类型为“:trigger_value”' ,
2020-08-28 16:36:03 +02:00
'rule_trigger_category_is_choice' => '类别...' ,
'rule_trigger_category_is' => '分类为 ":trigger_value"' ,
'rule_trigger_amount_less_choice' => '金额小于…' ,
'rule_trigger_amount_less' => '金额小于 :trigger_value' ,
2021-02-22 18:43:26 +01:00
'rule_trigger_amount_exactly_choice' => '金额为...' ,
2020-08-28 16:36:03 +02:00
'rule_trigger_amount_exactly' => '金额为 :trigger_value' ,
'rule_trigger_amount_more_choice' => '金额大于…' ,
'rule_trigger_amount_more' => '金额大于 :trigger_value' ,
2021-02-22 18:43:26 +01:00
'rule_trigger_description_starts_choice' => '描述开头为...' ,
2020-08-28 16:36:03 +02:00
'rule_trigger_description_starts' => '描述开头为 ":trigger_value"' ,
2021-02-22 18:43:26 +01:00
'rule_trigger_description_ends_choice' => '描述结尾为...' ,
'rule_trigger_description_ends' => '描述结尾为“:trigger_value”' ,
2020-08-28 16:36:03 +02:00
'rule_trigger_description_contains_choice' => '描述包含…' ,
'rule_trigger_description_contains' => '描述包含 ":trigger_value"' ,
2021-02-22 18:43:26 +01:00
'rule_trigger_description_is_choice' => '描述为…' ,
'rule_trigger_description_is' => '描述为“:trigger_value”' ,
'rule_trigger_date_is_choice' => '交易日期为...' ,
'rule_trigger_date_is' => '交易日期为“:trigger_value”' ,
'rule_trigger_date_before_choice' => '交易日期早于...' ,
'rule_trigger_date_before' => '交易日期早于“:trigger_value”' ,
'rule_trigger_date_after_choice' => '交易日期晚于...' ,
'rule_trigger_date_after' => '交易日期晚于“:trigger_value”' ,
2020-08-28 16:36:03 +02:00
'rule_trigger_created_on_choice' => 'Transaction was made on..' ,
'rule_trigger_created_on' => 'Transaction was made on ":trigger_value"' ,
2021-02-22 18:43:26 +01:00
'rule_trigger_updated_on_choice' => '交易最后编辑于...' ,
'rule_trigger_updated_on' => '交易最后编辑于“:trigger_value”' ,
2020-08-28 16:36:03 +02:00
'rule_trigger_budget_is_choice' => '预算为…' ,
'rule_trigger_budget_is' => '预算为 ":trigger_value"' ,
2021-02-22 18:43:26 +01:00
'rule_trigger_tag_is_choice' => '(其中一个) 标签为…' ,
2020-08-28 16:36:03 +02:00
'rule_trigger_tag_is' => '一个标签为 ":trigger_value"' ,
2021-02-25 06:27:43 +01:00
'rule_trigger_currency_is_choice' => '转账货币为…' ,
'rule_trigger_currency_is' => '转账货币为“:trigger_value”' ,
2021-02-22 18:43:26 +01:00
'rule_trigger_foreign_currency_is_choice' => '交易外币为...' ,
'rule_trigger_foreign_currency_is' => '交易外币为“:trigger_value”' ,
'rule_trigger_has_attachments_choice' => '至少有这么多附件' ,
'rule_trigger_has_attachments' => '拥有至少 :trigger_value 个附件' ,
'rule_trigger_store_journal' => '当创建交易时' ,
'rule_trigger_update_journal' => '当交易更新时' ,
2020-08-28 16:36:03 +02:00
'rule_trigger_has_no_category_choice' => '无分类' ,
'rule_trigger_has_no_category' => '交易没有分类' ,
'rule_trigger_has_any_category_choice' => '有一个 (任何) 分类' ,
'rule_trigger_has_any_category' => '交易有一个 (任何) 分类' ,
'rule_trigger_has_no_budget_choice' => '没有预算' ,
'rule_trigger_has_no_budget' => '交易没有预算' ,
'rule_trigger_has_any_budget_choice' => '有一个 (任何) 预算' ,
'rule_trigger_has_any_budget' => '交易有一个 (任何) 预算' ,
2021-04-11 07:43:07 +02:00
'rule_trigger_has_no_bill_choice' => 'Has no bill' ,
'rule_trigger_has_no_bill' => 'Transaction has no bill' ,
'rule_trigger_has_any_bill_choice' => 'Has a (any) bill' ,
'rule_trigger_has_any_bill' => 'Transaction has a (any) bill' ,
2020-08-28 16:36:03 +02:00
'rule_trigger_has_no_tag_choice' => '没有标签' ,
'rule_trigger_has_no_tag' => '交易没有标签' ,
'rule_trigger_has_any_tag_choice' => '有一个或多个 (任何) 标签' ,
'rule_trigger_has_any_tag' => '交易有一个或多个 (任何) 标签' ,
2021-02-22 18:43:26 +01:00
'rule_trigger_any_notes_choice' => '有 (任意) 备注' ,
'rule_trigger_any_notes' => '交易有 (任意) 备注' ,
'rule_trigger_no_notes_choice' => '无备注' ,
'rule_trigger_no_notes' => '交易没有备注' ,
'rule_trigger_notes_are_choice' => '备注为…' ,
'rule_trigger_notes_are' => '备注为“:trigger_value”' ,
'rule_trigger_notes_contain_choice' => '备注包含…' ,
'rule_trigger_notes_contain' => '备注包含“:trigger_value”' ,
'rule_trigger_notes_start_choice' => '备注开头为…' ,
'rule_trigger_notes_start' => '备注开头为“:trigger_value”' ,
'rule_trigger_notes_end_choice' => '备注结尾为…' ,
'rule_trigger_notes_end' => '备注结尾为“:trigger_value”' ,
'rule_trigger_bill_is_choice' => '账单是...' ,
'rule_trigger_bill_is' => '账单是“:trigger_value”' ,
'rule_trigger_external_id_choice' => '外部 ID 为...' ,
'rule_trigger_external_id' => '外部 ID 为“:trigger_value”' ,
'rule_trigger_internal_reference_choice' => '内部引用为...' ,
'rule_trigger_internal_reference' => '内部引用为“:trigger_value”' ,
'rule_trigger_journal_id_choice' => '交易日志 ID 为...' ,
'rule_trigger_journal_id' => '交易日志 ID 为“:trigger_value”' ,
2022-01-28 21:19:05 +01:00
'rule_trigger_no_external_url' => 'Transaction has no external URL' ,
'rule_trigger_any_external_url' => 'Transaction has an external URL' ,
2019-12-27 07:14:15 +01:00
2020-08-28 16:36:03 +02:00
// actions
2021-02-22 18:43:26 +01:00
'rule_action_delete_transaction_choice' => '删除交易 (!)' ,
'rule_action_delete_transaction' => '删除交易 (!)' ,
2020-08-28 16:36:03 +02:00
'rule_action_set_category' => '设定分类为 ":action_value"' ,
'rule_action_clear_category' => '清空分类' ,
2021-02-22 18:43:26 +01:00
'rule_action_set_budget' => '添加到预算“:action_value”' ,
2020-08-28 16:36:03 +02:00
'rule_action_clear_budget' => '清空预算' ,
'rule_action_add_tag' => '新增标签 ":action_value"' ,
'rule_action_remove_tag' => '移除标签 ":action_value"' ,
'rule_action_remove_all_tags' => '移除所有标签' ,
2021-02-22 18:43:26 +01:00
'rule_action_set_description' => '设定描述为“:action_value”' ,
'rule_action_append_description' => '描述后添加“:action_value”' ,
'rule_action_prepend_description' => '描述前添加“:action_value”' ,
2020-08-28 16:36:03 +02:00
'rule_action_set_category_choice' => '将分类设为…' ,
'rule_action_clear_category_choice' => '清空任何分类' ,
2021-02-22 18:43:26 +01:00
'rule_action_set_budget_choice' => '添加到预算…' ,
2020-08-28 16:36:03 +02:00
'rule_action_clear_budget_choice' => '清空任何预算' ,
'rule_action_add_tag_choice' => '新增标签…' ,
'rule_action_remove_tag_choice' => '移除标签…' ,
'rule_action_remove_all_tags_choice' => '移除所有标签' ,
'rule_action_set_description_choice' => '把描述设置为…' ,
2021-02-22 18:43:26 +01:00
'rule_action_update_piggy_choice' => '添加/删除存钱罐中的交易金额...' ,
'rule_action_update_piggy' => '添加/删除存钱罐“:action_value”中的交易金额' ,
'rule_action_append_description_choice' => '描述后添加…' ,
'rule_action_prepend_description_choice' => '描述前添加…' ,
'rule_action_set_source_account_choice' => '将来源账户设为...' ,
'rule_action_set_source_account' => '将来源账户设为 :action_value' ,
'rule_action_set_destination_account_choice' => '将目标账户设为…' ,
'rule_action_set_destination_account' => '将目标账户设为 :action_value' ,
'rule_action_append_notes_choice' => '备注后添加...' ,
'rule_action_append_notes' => '备注后添加“:action_value”' ,
'rule_action_prepend_notes_choice' => '备注前添加...' ,
'rule_action_prepend_notes' => '备注前添加“:action_value”' ,
'rule_action_clear_notes_choice' => '移除所有备注' ,
'rule_action_clear_notes' => '移除所有备注' ,
'rule_action_set_notes_choice' => '设定备注至…' ,
'rule_action_link_to_bill_choice' => '关联至账单…' ,
'rule_action_link_to_bill' => '关联至账单“:action_value”' ,
'rule_action_set_notes' => '设定备注至“:action_value”' ,
2021-02-25 06:27:43 +01:00
'rule_action_convert_deposit_choice' => '转换交易为收入' ,
'rule_action_convert_deposit' => '转换交易为来自“:action_value”的收入' ,
'rule_action_convert_withdrawal_choice' => '转换交易为支出' ,
'rule_action_convert_withdrawal' => '转换交易为从“:action_value”的支出' ,
2021-02-22 18:43:26 +01:00
'rule_action_convert_transfer_choice' => '转换交易为转账' ,
'rule_action_convert_transfer' => '转换交易为与“:action_value”间的转账' ,
2019-01-28 20:10:52 +01:00
2020-01-01 15:38:47 +01:00
'rules_have_read_warning' => '您看过警告了吗?' ,
2021-02-25 06:27:43 +01:00
'apply_rule_warning' => '警告:在大量交易上运行规则 (或规则组) 极为耗时,甚至会出现超时错误。如果出现此情况,规则 (或规则组) 仅会应用于所选交易中的一部分。这可能造成您的财务管理出现瑕疵,请务必留意。' ,
2021-02-22 18:43:26 +01:00
'rulegroup_for_bills_title' => '账单规则组' ,
'rulegroup_for_bills_description' => '所有包含账单的规则的特殊规则组' ,
'rule_for_bill_title' => '账单“:name”自动生成的规则' ,
'rule_for_bill_description' => '此规则自动生成,用以匹配账单“:name”。' ,
'create_rule_for_bill' => '为账单“:name”创建新规则' ,
2021-02-25 06:27:43 +01:00
'create_rule_for_bill_txt' => '恭喜,新账单“:name”创建成功! Firefly III 可以将新支出自动匹配至此账单。例如, 当您支付房租时, 支出会关联到账单“房租”。这样, Firefly III 可以准确显示账单支付进度和状态。若要使用此功能, 您必须创建一个新规则。Firefly III 已为您填写一些合理的默认字段, 请确认是否正确。如果正确, Firefly III 会自动将支出关联至正确的账单。请检查触发条件并确认无误,若有错误请自行修改。' ,
2021-02-22 18:43:26 +01:00
'new_rule_for_bill_title' => '账单“:name”的规则' ,
'new_rule_for_bill_description' => '此规则标记用于账单“:name”的交易。' ,
2019-01-28 20:10:52 +01:00
2020-08-28 16:36:03 +02:00
'new_rule_for_journal_title' => '基于交易":description"的规则' ,
2021-02-22 18:43:26 +01:00
'new_rule_for_journal_description' => '此规则基于交易“:description”, 它将匹配完全相同的交易。' ,
2020-02-14 08:07:45 +01:00
2019-01-28 20:10:52 +01:00
// tags
2021-02-22 18:43:26 +01:00
'store_new_tag' => '保存新标签' ,
2020-08-28 16:36:03 +02:00
'update_tag' => '更新标签' ,
'no_location_set' => '没有设定位置。' ,
'meta_data' => '后设资料' ,
'location' => '位置' ,
'without_date' => '不含日期' ,
'result' => '结果' ,
2021-02-25 06:27:43 +01:00
'sums_apply_to_range' => '所有总和均应用至所选范围' ,
2021-02-22 18:43:26 +01:00
'mapbox_api_key' => '若要使用地图,请从 <a href="https://www.mapbox.com/">Mapbox</a> 获取 API 密钥。打开 <code>.env</code> 文件并在 <code>MAPBOX_API_KEY=</code> 后输入密钥。' ,
2020-08-28 16:36:03 +02:00
'press_object_location' => '右键单击或长按设置对象的位置。' ,
'clear_location' => '清除位置' ,
'delete_all_selected_tags' => '删除所有选中的标签' ,
'select_tags_to_delete' => '别忘了选择一些标签。' ,
2021-02-22 18:43:26 +01:00
'deleted_x_tags' => '已删除 :count 个标签。|已删除 :count 个标签。' ,
2020-08-28 16:36:03 +02:00
'create_rule_from_transaction' => '基于交易创建规则' ,
2021-02-22 18:43:26 +01:00
'create_recurring_from_transaction' => '从交易创建定期交易' ,
2020-05-29 21:00:10 +02:00
2019-01-28 20:10:52 +01:00
// preferences
2021-02-22 18:43:26 +01:00
'equal_to_language' => '(与语言相同)' ,
'pref_home_screen_accounts' => '主屏幕账户' ,
2021-02-25 06:27:43 +01:00
'pref_home_screen_accounts_help' => '哪些账户应该显示在主屏幕上?' ,
2021-02-22 18:43:26 +01:00
'pref_view_range' => '查看范围' ,
'pref_view_range_help' => '部分图表自动按照周期分组,您的预算也将按照周期分组。请问您倾向于哪个周期?' ,
'pref_1D' => '1天' ,
'pref_1W' => '1周' ,
'pref_1M' => '1个月' ,
'pref_3M' => '3个月 (1季度)' ,
2020-05-29 06:39:24 +02:00
'pref_6M' => '6个月' ,
'pref_1Y' => '1年' ,
2022-01-09 08:02:02 +01:00
'pref_last365' => 'Last year' ,
'pref_last90' => 'Last 90 days' ,
'pref_last30' => 'Last 30 days' ,
'pref_last7' => 'Last 7 days' ,
'pref_YTD' => 'Year to date' ,
'pref_QTD' => 'Quarter to date' ,
'pref_MTD' => 'Month to date' ,
2020-05-29 06:39:24 +02:00
'pref_languages' => '语言' ,
2021-02-22 18:43:26 +01:00
'pref_locale' => '区域设置' ,
'pref_languages_help' => 'Firefly III 支持多语言,请问您倾向于哪个语言?' ,
'pref_locale_help' => 'Firefly III 允许您配置其他本地设置, 例如货币、数字、日期的格式。您的系统可能不支持此列表中的某些条目。Firefly III 没有为每个区域设置正确的日期格式;请联系开发者进行改进。' ,
'pref_locale_no_demo' => '此功能对演示用户无效。' ,
'pref_custom_fiscal_year' => '财年设置' ,
2020-05-29 06:39:24 +02:00
'pref_custom_fiscal_year_label' => '已启用' ,
2021-02-22 18:43:26 +01:00
'pref_custom_fiscal_year_help' => '在不使用1月1日至12月31日作为财年的国家, 您可开启此功能并指定财年的起止日期。' ,
2020-05-29 06:39:24 +02:00
'pref_fiscal_year_start_label' => '财政年度开始日期' ,
'pref_two_factor_auth' => '两步验证' ,
2021-02-22 18:43:26 +01:00
'pref_two_factor_auth_help' => '启用两步验证 (或双重验证) 可为您的帐户增加一层额外的安全防护,您将以已知的信息 (您的密码) 和已有的信息 (验证码) 进行登录。验证码由您的手机 App 生成,例如 Authy 或 Google Authenticator。' ,
2020-03-06 05:25:36 +01:00
'pref_enable_two_factor_auth' => '启用两步验证' ,
'pref_two_factor_auth_disabled' => '两步验证码已删除且停用' ,
2021-02-22 18:43:26 +01:00
'pref_two_factor_auth_remove_it' => '请不要忘记从您的身份验证 APP 上删除账户!' ,
2019-08-23 14:11:10 +02:00
'pref_two_factor_auth_code' => '验证码' ,
2021-02-22 18:43:26 +01:00
'pref_two_factor_auth_code_help' => '请使用手机 App( 例如 Authy 或 Google Authenticator) 扫描二维码, 并输入生成的代码。' ,
'pref_two_factor_auth_reset_code' => '重置验证码' ,
2020-03-06 05:25:36 +01:00
'pref_two_factor_auth_disable_2fa' => '停用两步验证' ,
2019-10-05 06:23:46 +02:00
'2fa_use_secret_instead' => '如果您无法扫描 QR 码,请使用密钥: <code>:secret</code>。' ,
'2fa_backup_codes' => '保存这些备份代码,以便在您丢失设备时访问。' ,
'2fa_already_enabled' => '2步验证已启用。' ,
'wrong_mfa_code' => '此MFA代码无效。' ,
2021-02-22 18:43:26 +01:00
'pref_save_settings' => '保存设置' ,
'saved_preferences' => '偏好设定已保存!' ,
'preferences_general' => '通用' ,
'preferences_frontpage' => '主屏幕' ,
2019-08-23 14:11:10 +02:00
'preferences_security' => '安全性' ,
2021-02-22 18:43:26 +01:00
'preferences_layout' => '布局' ,
2021-02-25 06:27:43 +01:00
'pref_home_show_deposits' => '在主屏幕显示收入' ,
2021-02-22 18:43:26 +01:00
'pref_home_show_deposits_info' => '主屏幕已显示您的支出账户,是否同时显示您的收入账户?' ,
2019-08-23 14:11:10 +02:00
'pref_home_do_show_deposits' => '是,要显示' ,
'successful_count' => ':count 项成功' ,
'list_page_size_title' => '页面大小' ,
2021-02-22 18:43:26 +01:00
'list_page_size_help' => '任何项目 (账户、交易等) 的列表每页最多显示此数量。' ,
2019-08-23 14:11:10 +02:00
'list_page_size_label' => '页面大小' ,
2021-02-22 18:43:26 +01:00
'between_dates' => '(:start – :end)' ,
'pref_optional_fields_transaction' => '交易选填字段' ,
'pref_optional_fields_transaction_help' => '默认情况下,建立一笔新交易 (由于丛集关系) 时,并非所有字段都是启用的。如下,您可启用您觉得对您有用的字段。当然,任何已停用但已填写的字段仍然可见,无论设置是否启用。' ,
'optional_tj_date_fields' => '日期字段' ,
2021-02-25 06:27:43 +01:00
'optional_tj_other_fields' => '其他字段' ,
2021-02-22 18:43:26 +01:00
'optional_tj_attachment_fields' => '附件字段' ,
'pref_optional_tj_interest_date' => '利息日期' ,
2020-08-28 16:36:03 +02:00
'pref_optional_tj_book_date' => '登记日期' ,
'pref_optional_tj_process_date' => '处理日期' ,
'pref_optional_tj_due_date' => '截止日期' ,
'pref_optional_tj_payment_date' => '付款日期' ,
'pref_optional_tj_invoice_date' => '发票日期' ,
2021-02-22 18:43:26 +01:00
'pref_optional_tj_internal_reference' => '内部引用' ,
'pref_optional_tj_notes' => '备注' ,
'pref_optional_tj_attachments' => '附件' ,
2022-01-28 21:19:05 +01:00
'pref_optional_tj_external_url' => 'External URL' ,
2021-02-25 06:27:43 +01:00
'pref_optional_tj_location' => '位置' ,
'pref_optional_tj_links' => '交易关联' ,
2020-08-28 16:36:03 +02:00
'optional_field_meta_dates' => '日期' ,
'optional_field_meta_business' => '商务' ,
2021-02-22 18:43:26 +01:00
'optional_field_attachments' => '附件' ,
2020-08-28 16:36:03 +02:00
'optional_field_meta_data' => '可选后设资料' ,
2022-01-28 21:19:05 +01:00
'external_url' => 'External URL' ,
2019-01-28 20:10:52 +01:00
// profile:
2021-02-22 18:43:26 +01:00
'delete_stuff_header' => '删除数据' ,
'permanent_delete_stuff' => '数据将被永久删除,无法恢复,请谨慎操作!' ,
'other_sessions_logged_out' => '所有其他设备已退出登录。' ,
'delete_all_budgets' => '删除所有预算' ,
'delete_all_categories' => '删除所有分类' ,
'delete_all_tags' => '删除所有标签' ,
'delete_all_bills' => '删除所有账单' ,
'delete_all_piggy_banks' => '删除所有存钱罐' ,
'delete_all_rules' => '删除所有规则' ,
'delete_all_recurring' => '删除所有定期交易' ,
'delete_all_object_groups' => '删除所有组' ,
'delete_all_accounts' => '删除所有账户' ,
'delete_all_asset_accounts' => '删除所有资产账户' ,
'delete_all_expense_accounts' => '删除所有支出账户' ,
'delete_all_revenue_accounts' => '删除所有收入账户' ,
'delete_all_liabilities' => '删除所有债务' ,
'delete_all_transactions' => '删除所有交易' ,
2021-02-25 06:27:43 +01:00
'delete_all_withdrawals' => '删除所有支出' ,
'delete_all_deposits' => '删除所有收入' ,
2021-02-22 18:43:26 +01:00
'delete_all_transfers' => '删除所有转账' ,
2021-02-25 06:27:43 +01:00
'also_delete_transactions' => '删除账户将同时删除所有关联的收入、支出和转账!' ,
2020-08-28 16:36:03 +02:00
'deleted_all_budgets' => '所有预算已被删除' ,
'deleted_all_categories' => '所有分类已被删除' ,
'deleted_all_tags' => '所有标签已被删除' ,
2021-02-22 18:43:26 +01:00
'deleted_all_bills' => '所有账单已被删除' ,
'deleted_all_piggy_banks' => '所有存钱罐已被删除' ,
'deleted_all_rules' => '所有规则和规则组已被删除' ,
'deleted_all_object_groups' => '所有组已被删除' ,
'deleted_all_accounts' => '所有账户已被删除' ,
'deleted_all_asset_accounts' => '所有资产账户已被删除' ,
'deleted_all_expense_accounts' => '所有支出账户已被删除' ,
'deleted_all_revenue_accounts' => '所有收入账户已被删除' ,
'deleted_all_liabilities' => '所有债务已被删除' ,
'deleted_all_transactions' => '所有交易已被删除' ,
2021-02-25 06:27:43 +01:00
'deleted_all_withdrawals' => '所有支出已被删除' ,
'deleted_all_deposits' => '所有收入已被删除' ,
2021-02-22 18:43:26 +01:00
'deleted_all_transfers' => '所有转账已被删除' ,
'deleted_all_recurring' => '所有定期交易已被删除' ,
2020-08-28 16:36:03 +02:00
'change_your_password' => '更改您的密码' ,
2021-02-25 06:27:43 +01:00
'delete_account' => '删除账户' ,
2021-02-22 18:43:26 +01:00
'current_password' => '当前密码' ,
2020-08-28 16:36:03 +02:00
'new_password' => '新密码' ,
'new_password_again' => '新密码 (再输入一次)' ,
2021-02-25 06:27:43 +01:00
'delete_your_account' => '删除您的账户' ,
'delete_your_account_help' => '删除您的账户亦将删除所有创建的账户、交易,包括<em>所有</em>您存在 Firefly III 的内容都将被清除!' ,
2020-08-28 16:36:03 +02:00
'delete_your_account_password' => '输入您的密码以继续。' ,
'password' => '密码' ,
'are_you_sure' => '是否确定?您无法还原此操作。' ,
2021-02-25 06:27:43 +01:00
'delete_account_button' => '删除您的账户' ,
2021-02-22 18:43:26 +01:00
'invalid_current_password' => '无效的当前密码!' ,
2020-08-28 16:36:03 +02:00
'password_changed' => '已变更密码!' ,
'should_change' => '我们的想法是更改您的密码。' ,
'invalid_password' => '无效密码!' ,
2021-02-22 18:43:26 +01:00
'what_is_pw_security' => '什么是“验证密码安全”?' ,
2020-08-28 16:36:03 +02:00
'secure_pw_title' => '如何选择安全密码' ,
2021-08-07 12:14:48 +02:00
'forgot_password_response' => 'Thank you. If an account exists with this email address, you will find instructions in your inbox.' ,
2021-02-22 18:43:26 +01:00
'secure_pw_history' => '每周都能看到有关网站泄漏用户密码的新闻,黑客与小偷会使用这些窃取您的个人信息,这些信息价值不菲。' ,
'secure_pw_ff' => '您在网上使用的密码都一样吗? 如果一个网站泄漏了您的密码, 黑客将可获取您的所有资料。Firefly III 需要您选择强大且独特的密码以保护您的财务记录。' ,
'secure_pw_check_box' => '为了协助您使用安全密码, Firefly III 可自动检查您的密码过去是否已被盗用。若如此, Firefly III 建议您不要使用此密码。' ,
2020-05-29 06:39:24 +02:00
'secure_pw_working_title' => '它是如何运作的?' ,
2021-02-22 18:43:26 +01:00
'secure_pw_working' => '勾选此复选框后, Firefly III 会发送您密码的 SHA1 哈希值的前5个字符至 <a href="https://www.troyhunt.com/introducing-306-million-freely-downloadable-pwned-passwords/">Troy Hunt 网站</a> 以检查是否被泄漏。根据 <a href="https://pages.nist.gov/800-63-3/sp800-63b.html">NIST 特殊刊物</a> 的建议,我们将阻止您使用不安全的密码。' ,
'secure_pw_should' => '我应该勾选此复选框吗?' ,
'secure_pw_long_password' => '是的,请总是验证您的密码是安全的。' ,
'command_line_token' => '命令行令牌' ,
'explain_command_line_token' => '您需要此令牌进行命令行操作,例如导出数据等。若没有令牌,敏感操作将无法完成。请勿泄漏您的命令行令牌,包括开发者在内的任何人都无权向您索要。如果您不小心泄漏或遗失了令牌,请使用此按钮重新生成。' ,
'regenerate_command_line_token' => '重新生成命令行令牌' ,
'token_regenerated' => '已生成新的命令行令牌' ,
2020-05-29 06:39:24 +02:00
'change_your_email' => '更改您的电子邮件地址' ,
2021-02-22 18:43:26 +01:00
'email_verification' => '您的旧邮件地址和新邮件地址都将收到一封邮件。出于安全考虑,您在验证新的电子邮件地址前将无法登录。如果您不确定此 Firefly III 站点是否能发送邮件,请不要使用此功能。如果您是站点管理员,您可以在<a href="admin">管理页面</a>进行测试。' ,
2020-05-29 06:39:24 +02:00
'email_changed_logout' => '在验证您的电子邮件地址之前,您无法登入。' ,
'login_with_new_email' => '现在,您可以使用新的电子邮件地址登入。' ,
'login_with_old_email' => '现在,您可以再次使用旧的电子邮件地址登入。' ,
'login_provider_local_only' => '当藉由 ":login_provider" 验证时,此动作不可用。' ,
2021-02-22 18:43:26 +01:00
'external_user_mgt_disabled' => '当 Firefly III 不负责用户管理或身份验证时,此操作不可用。' ,
'external_auth_disabled' => '当 Firefly III 不负责身份验证时,此操作不可用。' ,
'delete_local_info_only' => " 由于 Firefly III 不负责用户管理和身份验证时,此操作将仅删除 Firefly III 本地的信息。 " ,
'oauth' => 'OAuth 授权' ,
'profile_oauth_clients' => 'OAuth 客户端' ,
'profile_oauth_no_clients' => '您尚未创建任何 OAuth 客户端。' ,
'profile_oauth_clients_header' => '客户端' ,
'profile_oauth_client_id' => '客户端 ID' ,
'profile_oauth_client_name' => '名称' ,
'profile_oauth_client_secret' => '密钥' ,
'profile_oauth_create_new_client' => '创建新客户端' ,
'profile_oauth_create_client' => '创建客户端' ,
'profile_oauth_edit_client' => '编辑客户端' ,
'profile_oauth_name_help' => '您的用户可以识别并信任的信息' ,
'profile_oauth_redirect_url' => '跳转网址' ,
'profile_oauth_redirect_url_help' => '您的应用程序的授权回调网址' ,
'profile_authorized_apps' => '已授权应用' ,
'profile_authorized_clients' => '已授权客户端' ,
'profile_scopes' => '范围' ,
'profile_revoke' => '撤消' ,
'profile_oauth_client_secret_title' => '客户端密钥' ,
'profile_oauth_client_secret_expl' => '请妥善保存您的新客户端的密钥,此密钥仅会在这里展示一次。您现在已可以使用此密钥进行 API 请求。' ,
'profile_personal_access_tokens' => '个人访问令牌' ,
'profile_personal_access_token' => '个人访问令牌' ,
'profile_oauth_confidential' => '使用加密' ,
'profile_oauth_confidential_help' => '要求客户端使用密钥进行认证。加密客户端可以安全储存凭据且不将其泄露给未授权方,而公共应用程序(例如本地计算机或 JavaScript SPA 应用程序)无法保证凭据的安全性。' ,
'profile_personal_access_token_explanation' => '请妥善保存您的新个人访问令牌,此令牌仅会在这里展示一次。您现在已可以使用此令牌进行 API 请求。' ,
'profile_no_personal_access_token' => '您还没有创建个人访问令牌。' ,
'profile_create_new_token' => '创建新令牌' ,
'profile_create_token' => '创建令牌' ,
'profile_create' => '创建' ,
'profile_save_changes' => '保存更改' ,
'profile_whoops' => '很抱歉!' ,
'profile_something_wrong' => '发生错误!' ,
'profile_try_again' => '发生错误,请稍后再试。' ,
'amounts' => '金额' ,
2021-02-25 06:27:43 +01:00
'multi_account_warning_unknown' => '根据您创建的交易类型,后续拆分的来源和/或目标账户可能被交易的首笔拆分的配置所覆盖。' ,
'multi_account_warning_withdrawal' => '请注意,后续拆分的来源账户将会被支出的首笔拆分的配置所覆盖。' ,
'multi_account_warning_deposit' => '请注意,后续拆分的目标账户将会被收入的首笔拆分的配置所覆盖。' ,
'multi_account_warning_transfer' => '请注意,后续拆分的来源和目标账户将会被转账的首笔拆分的配置所覆盖。' ,
2020-01-01 15:38:47 +01:00
// export data:
2021-02-22 18:43:26 +01:00
'export_data_title' => '从 Firefly III 导出数据' ,
2020-05-29 06:39:24 +02:00
'export_data_menu' => '导出数据' ,
2021-02-22 18:43:26 +01:00
'export_data_bc' => '从 Firefly III 导出数据' ,
'export_data_main_title' => '从 Firefly III 导出数据' ,
'export_data_expl' => '此链接允许您从 Firefly III 导出所有交易和元数据。请查看帮助 (右上角的问号 (?) 图标) 获取更多有关信息。' ,
2020-05-29 06:39:24 +02:00
'export_data_all_transactions' => '导出所有交易' ,
2021-02-22 18:43:26 +01:00
'export_data_advanced_expl' => '如果您需要更高级或特殊类型的导出功能,请阅读如何使用命令行 <code>php artisan help firefly-iii:export-data</code> 的帮助内容。' ,
2019-01-28 20:10:52 +01:00
// attachments
2021-02-22 18:43:26 +01:00
'nr_of_attachments' => '1个附件|:count个附件' ,
'attachments' => '附件' ,
'edit_attachment' => '编辑附件“:name”' ,
'update_attachment' => '更新附件' ,
'delete_attachment' => '删除附件“:name”' ,
'attachment_deleted' => '已删除附件“:name”' ,
2020-05-29 06:39:24 +02:00
'liabilities_deleted' => '已删除债务 ":name"' ,
2021-02-22 18:43:26 +01:00
'attachment_updated' => '已更新附件“:name”' ,
'upload_max_file_size' => '最大文件尺寸::size' ,
'list_all_attachments' => '附件列表' ,
2019-01-28 20:10:52 +01:00
// transaction index
2020-05-29 06:39:24 +02:00
'title_expenses' => '支出' ,
'title_withdrawal' => '支出' ,
'title_revenue' => '收入' ,
'title_deposit' => '收入' ,
2021-02-25 06:27:43 +01:00
'title_transfer' => '转账' ,
'title_transfers' => '转账' ,
2019-01-28 20:10:52 +01:00
// convert stuff:
2021-02-25 06:27:43 +01:00
'convert_is_already_type_Withdrawal' => '此交易已经为支出' ,
'convert_is_already_type_Deposit' => '此交易已经为收入' ,
2021-02-22 18:43:26 +01:00
'convert_is_already_type_Transfer' => '此交易已经为转账' ,
2021-02-25 06:27:43 +01:00
'convert_to_Withdrawal' => '转换“:description”为支出' ,
'convert_to_Deposit' => '转换“:description”为收入' ,
2021-02-22 18:43:26 +01:00
'convert_to_Transfer' => '转换“:description”为转账' ,
2021-02-25 06:27:43 +01:00
'convert_options_WithdrawalDeposit' => '将支出转换为收入' ,
'convert_options_WithdrawalTransfer' => '将支出转换为转账' ,
'convert_options_DepositTransfer' => '将收入转换为转账' ,
'convert_options_DepositWithdrawal' => '将收入转换为支出' ,
'convert_options_TransferWithdrawal' => '将转账转换为支出' ,
'convert_options_TransferDeposit' => '将转账转换为收入' ,
'convert_Withdrawal_to_deposit' => '将此支出转换为收入' ,
'convert_Withdrawal_to_transfer' => '将此支出转换为转账' ,
'convert_Deposit_to_withdrawal' => '将此收入转换为支出' ,
'convert_Deposit_to_transfer' => '将此收入转换为转账' ,
'convert_Transfer_to_deposit' => '将此转账转换为收入' ,
'convert_Transfer_to_withdrawal' => '将此转账转换为支出' ,
2021-02-22 18:43:26 +01:00
'convert_please_set_revenue_source' => '请选择资金来源的收入账户' ,
'convert_please_set_asset_destination' => '请选择资金流向的资产账户' ,
'convert_please_set_expense_destination' => '请选择资金流向的支出账户' ,
'convert_please_set_asset_source' => '请选择资金来源的资产账户' ,
2021-02-25 06:27:43 +01:00
'convert_expl_w_d' => '将支出转换为收入时,资金将会存入显示的目标账户,而不是取出。|将支出转换为收入时,资金将会存入显示的目标账户,而不是取出。' ,
'convert_expl_w_t' => '将支出转换为转账时,资金将会从来源账户转到其他资产或债务账户,而不是在原支出账户上消费。|将支出转换为转账时,资金将会从来源账户转到其他资产或债务账户,而不是在原支出账户上消费。' ,
'convert_expl_d_w' => '将收入转换为支出时,资金将会从显示的来源账户中取出,而不是存入。|将收入转换为支出时,资金将会从显示的来源账户中取出,而不是存入。' ,
'convert_expl_d_t' => '将收入转换为转账时,资金将会从任意资产或债务账户存入列出的目标账户中。|将收入转换为转账时,资金将会从任意资产或债务账户存入列出的目标账户中。' ,
'convert_expl_t_w' => '将转账转换为支出时,资金将会在此处设定的目标账户上被消费,而不是被转走。|将转账转换为支出时,资金将会在此处设定的目标账户上被消费,而不是被转走。' ,
'convert_expl_t_d' => '将转账转换为收入时,资金将会被存入此处列出的目标账户,而不是转入。|将转账转换为收入时,资金将会被存入此处列出的目标账户,而不是转入。' ,
2021-02-22 18:43:26 +01:00
'convert_select_sources' => '要完成转换,请在下方设置新的来源账户。|要完成转换,请在下方设置新的来源账户。' ,
'convert_select_destinations' => '要完成转换,请在下方设置新的目标账户。|要完成转换,请在下方设置新的目标账户。' ,
2021-02-25 06:27:43 +01:00
'converted_to_Withdrawal' => '此交易已被转换为支出' ,
'converted_to_Deposit' => '此交易已被转换为收入' ,
2021-02-22 18:43:26 +01:00
'converted_to_Transfer' => '此交易已被转换为转账' ,
'invalid_convert_selection' => '您选择的账户已用于此交易或不存在。' ,
2019-08-23 14:11:10 +02:00
'source_or_dest_invalid' => '找不到正确的交易细节,无法转换。' ,
2021-02-25 06:27:43 +01:00
'convert_to_withdrawal' => '转换为支出' ,
'convert_to_deposit' => '转换为收入' ,
2021-02-22 18:43:26 +01:00
'convert_to_transfer' => '转换为转账' ,
2019-01-28 20:10:52 +01:00
// create new stuff:
2021-02-25 06:27:43 +01:00
'create_new_withdrawal' => '创建新支出' ,
'create_new_deposit' => '创建新收入' ,
'create_new_transfer' => '创建新转账' ,
2021-02-22 18:43:26 +01:00
'create_new_asset' => '创建新资产账户' ,
2021-03-27 20:01:28 +01:00
'create_new_liabilities' => 'Create new liability' ,
2021-02-22 18:43:26 +01:00
'create_new_expense' => '创建新支出账户' ,
'create_new_revenue' => '创建新收入账户' ,
'create_new_piggy_bank' => '创建新存钱罐' ,
'create_new_bill' => '创建新账单' ,
2019-01-28 20:10:52 +01:00
// currencies:
2021-02-22 18:43:26 +01:00
'create_currency' => '创建新货币' ,
'store_currency' => '保存新货币' ,
2019-08-23 14:11:10 +02:00
'update_currency' => '更新货币' ,
2021-02-22 18:43:26 +01:00
'new_default_currency' => ':name 现已为默认货币' ,
2019-08-23 14:11:10 +02:00
'cannot_delete_currency' => '因为仍在使用中,无法删除 :name 。' ,
2021-02-22 18:43:26 +01:00
'cannot_delete_fallback_currency' => ':name 是系统默认货币,无法删除' ,
2019-10-05 06:23:46 +02:00
'cannot_disable_currency_journals' => '无法禁用 :name, 因为仍有交易在使用。' ,
'cannot_disable_currency_last_left' => '无法禁用 :name, 因为它是目前唯一启用的货币。' ,
2021-02-22 18:43:26 +01:00
'cannot_disable_currency_account_meta' => '无法禁用 :name, 因为它已被用于资产账户。' ,
2019-10-05 06:23:46 +02:00
'cannot_disable_currency_bills' => '无法禁用 :name, 因为它仍在账单中使用。' ,
2021-02-22 18:43:26 +01:00
'cannot_disable_currency_recurring' => '无法禁用 :name, 定期交易正在使用此货币' ,
2019-10-05 06:23:46 +02:00
'cannot_disable_currency_available_budgets' => '无法禁用 :name, 因为它仍在预算中被使用。' ,
2019-11-25 18:41:40 +01:00
'cannot_disable_currency_budget_limits' => '无法禁用 :name, 因为它仍在预算中被使用。' ,
'cannot_disable_currency_current_default' => '无法禁用 :name ,因为它是当前的默认货币。' ,
'cannot_disable_currency_system_fallback' => '无法禁用 :name ,因为它是系统默认货币。' ,
2021-02-22 18:43:26 +01:00
'disable_EUR_side_effects' => '欧元是此系统的紧急备用货币。禁用它可能会产生意外的副作用,并可能使您的修改无效。' ,
2019-08-23 14:11:10 +02:00
'deleted_currency' => ':name 货币已删除' ,
2021-02-22 18:43:26 +01:00
'created_currency' => '货币 :name 已创建' ,
'could_not_store_currency' => '无法保存新货币。' ,
2019-08-23 14:11:10 +02:00
'updated_currency' => ':name 货币已更新' ,
'ask_site_owner' => '请询问 :owner 以新增、删除或编辑货币。' ,
2021-02-22 18:43:26 +01:00
'currencies_intro' => 'Firefly III 支持多种货币,您可在此设置并启用。' ,
'make_default_currency' => '设为默认' ,
'default_currency' => '默认' ,
2019-08-23 14:11:10 +02:00
'currency_is_disabled' => '已停用' ,
'enable_currency' => '启用' ,
'disable_currency' => '停用' ,
2021-02-22 18:43:26 +01:00
'currencies_default_disabled' => '大多数的货币均默认为停用,若需使用,请先启用。' ,
2019-08-23 14:11:10 +02:00
'currency_is_now_enabled' => '货币 ":name" 已被启用' ,
'currency_is_now_disabled' => '货币 ":name" 已被停用' ,
2019-01-28 20:10:52 +01:00
// forms:
2021-02-22 18:43:26 +01:00
'mandatoryFields' => '必填字段' ,
'optionalFields' => '选填字段' ,
2019-08-23 14:11:10 +02:00
'options' => '选项' ,
2019-01-28 20:10:52 +01:00
// budgets:
2021-02-22 18:43:26 +01:00
'daily_budgets' => '每日预算' ,
'weekly_budgets' => '每周预算' ,
'monthly_budgets' => '每月预算' ,
'quarterly_budgets' => '每季度预算' ,
'half_year_budgets' => '每半年预算' ,
'yearly_budgets' => '每年预算' ,
'other_budgets' => '自定义区间预算' ,
'budget_limit_not_in_range' => '此金额应用于 :start 至 :end: ' ,
'total_available_budget' => '可用预算总额 (:start – :end)' ,
'total_available_budget_in_currency' => '可用预算总额 (:currency)' ,
'see_below' => '见下方' ,
'create_new_budget' => '创建新预算' ,
'store_new_budget' => '保存新预算' ,
'stored_new_budget' => '已保存新预算“:name”' ,
'available_between' => ':start – :end 可用' ,
2019-08-23 14:11:10 +02:00
'transactionsWithoutBudget' => '无预算支出' ,
2021-02-22 18:43:26 +01:00
'transactions_no_budget' => ':start – :end 的无预算支出' ,
2021-02-25 06:27:43 +01:00
'spent_between' => ':start – :end 的支出' ,
2019-11-25 18:41:40 +01:00
'set_available_amount' => '设置可用金额' ,
'update_available_amount' => '更新可用金额' ,
2021-02-25 06:27:43 +01:00
'ab_basic_modal_explain' => '使用此表单来指定您预期在指定周期内的预算总额 (:currency)。' ,
2019-08-23 14:11:10 +02:00
'createBudget' => '新预算' ,
2019-11-25 18:41:40 +01:00
'invalid_currency' => '这是一个无效的货币' ,
2021-02-22 18:43:26 +01:00
'invalid_amount' => '请输入金额' ,
2019-11-25 18:41:40 +01:00
'set_ab' => '可用预算金额已设置' ,
'updated_ab' => '可用预算金额已更新' ,
'deleted_ab' => '可用预算金额已删除' ,
'deleted_bl' => '预算金额已移除' ,
'alt_currency_ab_create' => '以其他货币为单位设置可用预算' ,
'bl_create_btn' => '以其他货币为单位设置预算' ,
2021-02-22 18:43:26 +01:00
'inactiveBudgets' => '已停用预算' ,
'without_budget_between' => ':start – :end 的无预算交易' ,
2019-08-23 14:11:10 +02:00
'delete_budget' => '删除预算 ":name"' ,
'deleted_budget' => '已删除预算 ":name"' ,
'edit_budget' => '编辑预算 ":name"' ,
'updated_budget' => '预算 ":name" 已更新' ,
'update_amount' => '更新金额' ,
'update_budget' => '更新预算' ,
2021-02-22 18:43:26 +01:00
'update_budget_amount_range' => '更新 (预期) :start – :end 的可用金额' ,
'set_budget_limit_title' => '为预算“:budget"设置 :start – :end 的预算金额' ,
2019-11-07 06:43:29 +01:00
'set_budget_limit' => '设置预算金额' ,
2021-02-22 18:43:26 +01:00
'budget_period_navigator' => '周期导航' ,
2019-08-23 14:11:10 +02:00
'info_on_available_amount' => '我有甚麽可用?' ,
'available_amount_indication' => '使用这些金额以获得您总预算可能为何的指标' ,
'suggested' => '建议' ,
2021-02-22 18:43:26 +01:00
'average_between' => ':start – :end 的平均值' ,
'transferred_in' => '转账 (转入)' ,
'transferred_away' => '转账 (转出)' ,
'auto_budget_none' => '无自动预算' ,
'auto_budget_reset' => '设置每个周期的固定金额' ,
'auto_budget_rollover' => '每个周期添加金额' ,
2020-04-02 06:39:09 +02:00
'auto_budget_period_daily' => '每日' ,
2021-02-22 18:43:26 +01:00
'auto_budget_period_weekly' => '每周' ,
'auto_budget_period_monthly' => '每月' ,
'auto_budget_period_quarterly' => '每季度' ,
'auto_budget_period_half_year' => '每半年' ,
'auto_budget_period_yearly' => '每年' ,
'auto_budget_help' => '您可以在帮助页面了解此功能的更多信息,点击右上角的问号 (?) 图标即可。' ,
'auto_budget_reset_icon' => '此预算将周期性设置' ,
'auto_budget_rollover_icon' => '此预算的金额将周期性增加' ,
'remove_budgeted_amount' => '移除预算上限 (:currency)' ,
2019-01-28 20:10:52 +01:00
// bills:
2021-02-25 06:27:43 +01:00
'not_expected_period' => '此周期没有预期支付' ,
2021-02-22 18:43:26 +01:00
'not_or_not_yet' => '尚未' ,
'match_between_amounts' => '匹配:low至:high交易的账单。' ,
'running_again_loss' => '如果与此账单已关联的交易 (不再) 与规则相符,其间的关联可能会丢失。' ,
'bill_related_rules' => '与此账单相关的规则' ,
2019-08-23 14:11:10 +02:00
'repeats' => '重复' ,
2021-02-22 18:43:26 +01:00
'connected_journals' => '已关联交易' ,
'auto_match_on' => '由 Firefly III 自动匹配' ,
'auto_match_off' => '未由 Firefly III 自动匹配' ,
2021-02-25 06:27:43 +01:00
'next_expected_match' => '预期下次支付' ,
2021-02-22 18:43:26 +01:00
'delete_bill' => '删除账单“:name”' ,
'deleted_bill' => '已删除账单“:name”' ,
'edit_bill' => '编辑账单“:name”' ,
2019-08-23 14:11:10 +02:00
'more' => '更多' ,
'rescan_old' => '再次于所有交易执行规则' ,
2021-02-22 18:43:26 +01:00
'update_bill' => '更新账单' ,
'updated_bill' => '已更新账单“:name”' ,
'store_new_bill' => '保存新账单' ,
'stored_new_bill' => '已保存新账单“:name”' ,
'cannot_scan_inactive_bill' => '已停用的账单无法被扫描。' ,
'rescanned_bill' => '重新扫描了所有内容,并关联了:count笔交易到账单。|重新扫描了所有内容,并关联了:count笔交易到账单。' ,
'average_bill_amount_year' => '平均账单金额 (:year)' ,
'average_bill_amount_overall' => '平均账单金额 (全部)' ,
'bill_is_active' => '账单为启用状态' ,
'bill_expected_between' => ':start – :end 的预期值' ,
'bill_will_automatch' => '账单将自动关联至符合的交易' ,
'skips_over' => '跳过' ,
'bill_store_error' => '保存您的新账单时发生错误,请检查日志文件' ,
'list_inactive_rule' => '已停用的规则' ,
2021-02-25 06:27:43 +01:00
'bill_edit_rules' => 'Firefly III 将同时尝试编辑关联于该账单的规则。如果您已自行编辑过该规则, Firefly III 将不会修改任何内容。|Firefly III 将同时尝试编辑关联于该账单的:count条规则。如果您已自行编辑过该规则, Firefly III 将不会修改任何内容。' ,
'bill_expected_date' => '预期为:date' ,
2021-07-18 19:21:30 +02:00
'bill_expected_date_js' => 'Expected {date}' ,
2021-02-22 18:43:26 +01:00
'bill_paid_on' => '支付于 {date}' ,
2021-07-18 19:21:30 +02:00
'bill_repeats_weekly' => 'Repeats weekly' ,
'bill_repeats_monthly' => 'Repeats monthly' ,
'bill_repeats_quarterly' => 'Repeats quarterly' ,
'bill_repeats_half-year' => 'Repeats every half year' ,
'bill_repeats_yearly' => 'Repeats yearly' ,
'bill_repeats_weekly_other' => 'Repeats every other week' ,
'bill_repeats_monthly_other' => 'Repeats every other month' ,
'bill_repeats_quarterly_other' => 'Repeats every other quarter' ,
'bill_repeats_half-year_other' => 'Repeats yearly' ,
'bill_repeats_yearly_other' => 'Repeats every other year' ,
'bill_repeats_weekly_skip' => 'Repeats every {skip} weeks' ,
'bill_repeats_monthly_skip' => 'Repeats every {skip} months' ,
'bill_repeats_quarterly_skip' => 'Repeats every {skip} quarters' ,
'bill_repeats_half-year_skip' => 'Repeats every {skip} half years' ,
'bill_repeats_yearly_skip' => 'Repeats every {skip} years' ,
'subscriptions' => 'Subscriptions' ,
'forever' => 'Forever' ,
'extension_date_is' => 'Extension date is {date}' ,
2019-01-28 20:10:52 +01:00
// accounts:
2021-02-22 18:43:26 +01:00
'inactive_account_link' => '您有 :count 个已停用 (已归档) 的账户,您可以在此独立页面中查看。|您有 :count 个已停用 (已归档) 的账户,您可以在此独立页面中查看。' ,
'all_accounts_inactive' => '这些是您的已停用账户。' ,
'active_account_link' => '此链接返回到您的已启用账户。' ,
'account_missing_transaction' => '账户 #:id (:name) 无法直接显示,因为 Firefly 找不到重定向信息。' ,
'cc_monthly_payment_date_help' => '随便选择“年”和“月”,其数据都将被忽略,仅“日”会被使用。' ,
'details_for_asset' => '资产账户“:name”的详细信息' ,
'details_for_expense' => '支出账户“:name”的详细信息' ,
'details_for_revenue' => '收入账户“:name”的详细信息' ,
'details_for_cash' => '现金账户“:name”的详细信息' ,
'store_new_asset_account' => '保存新资产账户' ,
'store_new_expense_account' => '保存新支出账户' ,
'store_new_revenue_account' => '保存新收入账户' ,
'edit_asset_account' => '编辑资产账户“:name”' ,
'edit_expense_account' => '编辑支出账户“:name”' ,
'edit_revenue_account' => '编辑收入账户“:name”' ,
'delete_asset_account' => '删除资产账户“:name”' ,
'delete_expense_account' => '删除支出账户“:name”' ,
'delete_revenue_account' => '删除收入账户“:name”' ,
'delete_liabilities_account' => '删除债务账户“:name”' ,
'asset_deleted' => '已成功删除资产账户“:name”' ,
2021-04-05 14:18:49 +02:00
'account_deleted' => 'Successfully deleted account ":name"' ,
2021-02-22 18:43:26 +01:00
'expense_deleted' => '已成功删除支出账户“:name”' ,
'revenue_deleted' => '已成功删除收入账户“:name”' ,
'update_asset_account' => '更新资产账户' ,
2021-08-09 08:01:27 +02:00
'update_undefined_account' => 'Update account' ,
2021-02-22 18:43:26 +01:00
'update_liabilities_account' => '更新债务账户' ,
'update_expense_account' => '更新支出账户' ,
'update_revenue_account' => '更新收入账户' ,
'make_new_asset_account' => '创建新资产账户' ,
'make_new_expense_account' => '创建新支出账户' ,
'make_new_revenue_account' => '创建新收入账户' ,
'make_new_liabilities_account' => '创建新债务账户' ,
'asset_accounts' => '资产账户' ,
'asset_accounts_inactive' => '资产账户 (已停用)' ,
'expense_accounts' => '支出账户' ,
2021-02-25 06:27:43 +01:00
'expense_accounts_inactive' => '支出账户 (已停用)' ,
2021-02-22 18:43:26 +01:00
'revenue_accounts' => '收入账户' ,
'revenue_accounts_inactive' => '收入账户 (已停用)' ,
'cash_accounts' => '现金账户' ,
'Cash account' => '现金账户' ,
'liabilities_accounts' => '债务账户' ,
'liabilities_accounts_inactive' => '债务账户 (已停用)' ,
'reconcile_account' => '对账账户“:account”' ,
2019-08-23 14:11:10 +02:00
'overview_of_reconcile_modal' => '对帐概览' ,
'delete_reconciliation' => '删除对帐' ,
2021-02-22 18:43:26 +01:00
'update_reconciliation' => '更新对账' ,
2019-08-23 14:11:10 +02:00
'amount_cannot_be_zero' => '金额不能为零' ,
'end_of_reconcile_period' => '对帐区间结束: :period' ,
'start_of_reconcile_period' => '对帐区间开始: :period' ,
'start_balance' => '初始余额' ,
'end_balance' => '结束余额' ,
2021-02-22 18:43:26 +01:00
'update_balance_dates_instruction' => '将您的银行账单与金额和日期进行匹配,并点击“开始对账”' ,
'select_transactions_instruction' => '选择您银行账单上显示的交易。' ,
'select_range_and_balance' => '首先验证日期范围与余额,然后点击“开始对账”' ,
2019-08-23 14:11:10 +02:00
'date_change_instruction' => '如果您现在变更日期范围,任何进度均将遗失。' ,
2021-02-22 18:43:26 +01:00
'update_selection' => '更新所选项' ,
'store_reconcile' => '保存对账' ,
2019-08-23 14:11:10 +02:00
'reconciliation_transaction' => '对帐交易' ,
'Reconciliation' => '对帐' ,
'reconciliation' => '对帐' ,
'reconcile_options' => '对帐选项' ,
2021-02-22 18:43:26 +01:00
'reconcile_range' => '对账范围' ,
2019-08-23 14:11:10 +02:00
'start_reconcile' => '开始对帐' ,
2019-11-25 18:41:40 +01:00
'cash_account_type' => '现金账户' ,
2019-08-23 14:11:10 +02:00
'cash' => '现金' ,
2021-02-22 18:43:26 +01:00
'cant_find_redirect_account' => '很抱歉, Firefly III 无法跳转。正在返回主页...' ,
'account_type' => '账户类型' ,
'save_transactions_by_moving' => '将此交易移动到另一个账户并保存:|将这些交易移动到另一个账户并保存:' ,
2021-04-05 14:18:49 +02:00
'save_transactions_by_moving_js' => 'No transactions|Save this transaction by moving it to another account. |Save these transactions by moving them to another account.' ,
2021-02-22 18:43:26 +01:00
'stored_new_account' => '新账户“:name”已保存! ' ,
2021-04-08 10:23:35 +02:00
'stored_new_account_js' => 'New account "<a href="accounts/show/{ID}">{name}</a>" stored!' ,
2021-02-22 18:43:26 +01:00
'updated_account' => '账户“:name”已更新' ,
2021-08-09 08:01:27 +02:00
'updated_account_js' => 'Updated account "<a href="accounts/show/{ID}">{title}</a>".' ,
2019-08-23 14:11:10 +02:00
'credit_card_options' => '信用卡选项' ,
2021-02-22 18:43:26 +01:00
'no_transactions_account' => '资产账户“:name”没有交易 (此周期内)。' ,
'no_transactions_period' => '无交易 (此周期内)' ,
'no_data_for_chart' => '目前还没有足够的信息以生成图表。' ,
'select_at_least_one_account' => '选择至少一个资产账户' ,
2019-08-23 14:11:10 +02:00
'select_at_least_one_category' => '选择至少一个分类' ,
'select_at_least_one_budget' => '选择至少一个预算' ,
'select_at_least_one_tag' => '选择至少一个标签' ,
2021-02-22 18:43:26 +01:00
'select_at_least_one_expense' => '请选择至少一个支出/收入账户的组合,若无 (即列表为空) 则此报表不可用。' ,
2021-02-25 06:27:43 +01:00
'account_default_currency' => '这将是与此账户关连的默认货币。' ,
2019-08-23 14:11:10 +02:00
'reconcile_has_more' => '您的 Firefly III 帐目比您的银行有更多的金钱,有多个选项可应处,请选择并按下 "确认对帐"。' ,
'reconcile_has_less' => '您的 Firefly III 帐目比您的银行有更少的金钱,有多个选项可应处,请选择并按下 "确认对帐"。' ,
2021-02-22 18:43:26 +01:00
'reconcile_is_equal' => '您的 Firefly III 账目和您的银行账单相符,无须处理,点击“确认对账”来确认输入。' ,
'create_pos_reconcile_transaction' => '清除已选交易,并从此资产账户增加 :amount 作为修正。' ,
'create_neg_reconcile_transaction' => '清除已选交易,并从此资产账户移除 :amount 作为修正。' ,
2019-08-23 14:11:10 +02:00
'reconcile_do_nothing' => '删除选择交易,但不校正。' ,
'reconcile_go_back' => '您可之后再编辑或删除较正。' ,
2021-02-22 18:43:26 +01:00
'must_be_asset_account' => '您只可以对账资产账户。' ,
'reconciliation_stored' => '已保存对账' ,
'reconciliation_error' => '由于一项错误,该笔交易虽被标记为已对账,但相应的修正却没有保存::error。' ,
'reconciliation_transaction_title' => '对账 (:from 至 :to)' ,
'sum_of_reconciliation' => '对账总和' ,
'reconcile_this_account' => '对账此账户' ,
'reconcile' => '对账' ,
'show' => '显示' ,
2019-08-23 14:11:10 +02:00
'confirm_reconciliation' => '确认对帐' ,
2019-12-20 16:42:23 +01:00
'submitted_start_balance' => '初始余额已提交' ,
2019-08-23 14:11:10 +02:00
'selected_transactions' => '已选择交易 (:count)' ,
'already_cleared_transactions' => '以清空交易 (:count)' ,
2019-12-20 16:42:23 +01:00
'submitted_end_balance' => '已提交结束余额' ,
2021-02-22 18:43:26 +01:00
'initial_balance_description' => '“:account”的初始余额' ,
2021-05-13 06:19:15 +02:00
'liability_credit_description' => 'Liability credit for ":account"' ,
2019-08-23 14:11:10 +02:00
'interest_calc_' => '未知' ,
'interest_calc_daily' => '每日' ,
'interest_calc_monthly' => '每月' ,
'interest_calc_yearly' => '每年' ,
2021-04-14 20:07:39 +02:00
'interest_calc_weekly' => '每周' ,
'interest_calc_half-year' => '每半年' ,
'interest_calc_quarterly' => '每季度' ,
2021-02-25 06:27:43 +01:00
'initial_balance_account' => '初始余额账户“:account”' ,
2021-03-27 20:01:28 +01:00
'list_options' => 'List options' ,
2019-01-28 20:10:52 +01:00
// categories:
2019-08-23 14:11:10 +02:00
'new_category' => '新分类' ,
2021-02-22 18:43:26 +01:00
'create_new_category' => '创建新分类' ,
2019-08-23 14:11:10 +02:00
'without_category' => '没有分类' ,
'update_category' => '更新分类' ,
2021-02-22 18:43:26 +01:00
'updated_category' => '已更新分类“:name”' ,
2019-08-23 14:11:10 +02:00
'categories' => '分类' ,
'edit_category' => '编辑分类 “:name”' ,
'no_category' => '(没有分类)' ,
'category' => '分类' ,
'delete_category' => '删除分类 “:name”' ,
'deleted_category' => '已删除分类 “:name”' ,
2021-02-22 18:43:26 +01:00
'store_category' => '保存新分类' ,
'stored_category' => '已保存新分类“:name”' ,
'without_category_between' => ':start – :end 没有分类' ,
2019-01-28 20:10:52 +01:00
// transactions:
2021-02-25 06:27:43 +01:00
'update_withdrawal' => '更新支出' ,
'update_deposit' => '更新收入' ,
2019-11-25 18:41:40 +01:00
'update_transaction' => '更新交易' ,
2021-02-22 18:43:26 +01:00
'update_transfer' => '更新转账' ,
2021-02-25 06:27:43 +01:00
'updated_withdrawal' => '已更新支出“:description“' ,
'updated_deposit' => '已更新收入“:description”' ,
2021-02-22 18:43:26 +01:00
'updated_transfer' => '已更新转账“:description”' ,
2021-03-21 20:38:44 +01:00
'no_changes_withdrawal' => 'Withdrawal ":description" was not changed.' ,
'no_changes_deposit' => 'Deposit ":description" was not changed.' ,
'no_changes_transfer' => 'Transfer ":description" was not changed.' ,
2021-02-25 06:27:43 +01:00
'delete_withdrawal' => '删除支出“:description”' ,
'delete_deposit' => '删除收入“:description”' ,
2021-02-22 18:43:26 +01:00
'delete_transfer' => '删除转账“:description”' ,
2021-02-25 06:27:43 +01:00
'deleted_withdrawal' => '已成功删除支出“:description”' ,
'deleted_deposit' => '已成功删除收入“:description”' ,
2021-02-22 18:43:26 +01:00
'deleted_transfer' => '已成功删除转账“:description”' ,
'deleted_reconciliation' => '成功删除对账交易“:description”' ,
'stored_journal' => '成功创建新交易“:description”' ,
2019-08-23 14:11:10 +02:00
'stored_journal_no_descr' => '成功创建您的新交易' ,
2021-02-22 18:43:26 +01:00
'updated_journal_no_descr' => '成功更新您的交易' ,
2019-08-23 14:11:10 +02:00
'select_transactions' => '选择交易' ,
2021-02-25 06:27:43 +01:00
'rule_group_select_transactions' => '应用“:title”至交易' ,
'rule_select_transactions' => '应用“:title”至交易' ,
2019-08-23 14:11:10 +02:00
'stop_selection' => '停止选取交易' ,
'reconcile_selected' => '对帐' ,
'mass_delete_journals' => '删除数个交易' ,
'mass_edit_journals' => '编辑数个交易' ,
'mass_bulk_journals' => '批次编辑数个交易' ,
2021-02-22 18:43:26 +01:00
'mass_bulk_journals_explain' => '此表单允许您在单次更新中修改下列交易的属性。当您修改这里所看到的参数时,表格中的所有交易都将被更新。' ,
2021-02-25 06:27:43 +01:00
'part_of_split' => '此交易是某笔拆分交易的一部分。 如果您没有选择所有的拆分,您最终可能只更改了半笔交易。' ,
'bulk_set_new_values' => '用下方的输入框设定新值。若空留,则全部会为空值。此外,请注意仅支出会被赋予预算。' ,
2019-08-23 14:11:10 +02:00
'no_bulk_category' => '不更新分类' ,
'no_bulk_budget' => '不更新预算' ,
'no_bulk_tags' => '不更新标签' ,
2021-02-22 18:43:26 +01:00
'replace_with_these_tags' => '用这些标签替换' ,
'append_these_tags' => '添加这些标签' ,
'mass_edit' => '分开编辑所选项' ,
'bulk_edit' => '批量编辑所选项' ,
'mass_delete' => '删除所选项' ,
'cannot_edit_other_fields' => '由于页面空间限制,除了此处所示的字段以外,您无法批量编辑其他字段。若您需要编辑其他字段,请点击链接并依次编辑。' ,
'cannot_change_amount_reconciled' => '您不能修改已对账交易的金额。' ,
2019-08-23 14:11:10 +02:00
'no_budget' => '(无预算)' ,
2021-02-22 18:43:26 +01:00
'no_bill' => '(无账单)' ,
'account_per_budget' => '每笔预算的账户' ,
'account_per_category' => '每个分类的账户' ,
2020-03-24 05:53:05 +01:00
'create_new_object' => '创建' ,
2021-02-22 18:43:26 +01:00
'empty' => '(空)' ,
'all_other_budgets' => '(所有其他预算)' ,
'all_other_accounts' => '(所有其他账户)' ,
'expense_per_source_account' => '每个来源账户的支出' ,
'expense_per_destination_account' => '每个目标账户的支出' ,
'income_per_destination_account' => '每个目标账户的收入' ,
2021-02-25 06:27:43 +01:00
'spent_in_specific_category' => '分类“:category”的支出' ,
2019-10-05 06:23:46 +02:00
'earned_in_specific_category' => '在 “:category” 中的收入' ,
2021-02-25 06:27:43 +01:00
'spent_in_specific_tag' => '标签“:tag”的支出' ,
2019-10-05 06:23:46 +02:00
'earned_in_specific_tag' => '标签“:tag”中的收入' ,
'income_per_source_account' => '每个来源账户的收入' ,
2021-02-22 18:43:26 +01:00
'average_spending_per_destination' => '每个目标账户的平均支出' ,
'average_spending_per_source' => '每个来源账户的平均支出' ,
'average_earning_per_source' => '每个来源账户的平均收入' ,
'average_earning_per_destination' => '每个目标账户的平均收入' ,
'account_per_tag' => '每个标签的账户' ,
2019-10-05 06:23:46 +02:00
'tag_report_expenses_listed_once' => '支出和收入从未列出两次。如果交易有多个标签,它可能只显示在其标签中的一个标签。此列表可能似乎丢失数据,但数额是正确的。' ,
'double_report_expenses_charted_once' => '支出和收入从未显示两次。如果交易有多个标签,它可能只显示在其标签中的一个标签。此图表可能似乎丢失数据,但数额是正确的。' ,
'tag_report_chart_single_tag' => '此图表适用于单一标签。如果交易有多个标签,您可以在其他标签的图表中反映您看到的情况。' ,
'tag' => '标签' ,
2019-08-23 14:11:10 +02:00
'no_budget_squared' => '(无预算)' ,
2021-02-25 06:27:43 +01:00
'perm-delete-many' => '一次删除多个项目可能非常混乱,请谨慎操作。请注意,您可能从这里删掉含有多笔拆分的交易的其中一部分。' ,
2021-02-22 18:43:26 +01:00
'mass_deleted_transactions_success' => '已删除 :count 条交易。|已删除 :count 条交易。' ,
'mass_edited_transactions_success' => '已更新 :count 条交易。|已更新 :count 条交易。' ,
'opt_group_' => '(无账户类型)' ,
'opt_group_no_account_type' => '(无账户类型)' ,
'opt_group_defaultAsset' => '默认资产账户' ,
'opt_group_savingAsset' => '储蓄账户' ,
'opt_group_sharedAsset' => '共用资产账户' ,
2019-08-23 14:11:10 +02:00
'opt_group_ccAsset' => '信用卡' ,
2021-02-22 18:43:26 +01:00
'opt_group_cashWalletAsset' => '现金钱包' ,
'opt_group_expense_account' => '支出账户' ,
'opt_group_revenue_account' => '收入账户' ,
2019-08-23 14:11:10 +02:00
'opt_group_l_Loan' => '债务: 贷款' ,
2021-02-22 18:43:26 +01:00
'opt_group_cash_account' => '现金账户' ,
2019-08-23 14:11:10 +02:00
'opt_group_l_Debt' => '债务: 欠款' ,
'opt_group_l_Mortgage' => '债务: 抵押' ,
'opt_group_l_Credit card' => '债务: 信用卡' ,
2021-02-22 18:43:26 +01:00
'notes' => '备注' ,
'unknown_journal_error' => '无法保存交易,请检查日志文件。' ,
'attachment_not_found' => '找不到此附件。' ,
'journal_link_bill' => '此交易已与帐单 <a href=":route">:name</a> 关联。若要移除关联,取消勾选复选框,使用规则将其与其他账单关联。' ,
'transaction_stored_link' => '<a href="transactions/show/{ID}">交易 #{ID} (“{title}”)</a> 已保存。' ,
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">交易 #{ID}</a> 已保存。' ,
2021-03-21 20:38:44 +01:00
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> ("{title}") has been updated.' ,
'transaction_updated_no_changes' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> ("{title}") did not receive any changes.' ,
2021-02-25 06:27:43 +01:00
'first_split_decides' => '首笔拆分决定此字段的值' ,
'first_split_overrules_source' => '首笔拆分可能覆盖来源账户' ,
'first_split_overrules_destination' => '首笔拆分可能覆盖目标账户' ,
2021-03-24 19:28:07 +01:00
'spent_x_of_y' => 'Spent {amount} of {total}' ,
2019-01-28 20:10:52 +01:00
// new user:
2019-08-23 14:11:10 +02:00
'welcome' => '欢迎使用 Firefly III! ' ,
2019-12-20 16:42:23 +01:00
'submit' => '提交' ,
2019-11-25 18:41:40 +01:00
'submission' => '提交' ,
2019-12-20 16:42:23 +01:00
'submit_yes_really' => '提交 (我知道我在干什么)' ,
2019-08-23 14:11:10 +02:00
'getting_started' => '开始使用' ,
2021-02-25 06:27:43 +01:00
'to_get_started' => '很高兴看到您成功安装 Firefly III。要开始使用此工具, 请输入您主要使用的的银行名称与支票账户余额。别担心, 若您有多个账户, 可以稍后添加, 此处仅为让 Firefly III 进行初始化设置。' ,
2021-02-22 18:43:26 +01:00
'savings_balance_text' => 'Firefly III 会自动为您创建储蓄账户。默认情况下,储蓄账户里没有任何资金。但如果您告诉 Firefly III 相关金额,程序则会按照您的要求进行保存。' ,
2019-12-20 16:42:23 +01:00
'finish_up_new_user' => '就到这里了!您可按下 <strong>送出</strong> 继续,您将被带至 Firefly III 的首页。' ,
2021-02-22 18:43:26 +01:00
'stored_new_accounts_new_user' => '太好了!您的新账户已保存。' ,
2019-08-23 14:11:10 +02:00
'set_preferred_language' => '若您倾向在 Firefly III 使用其他语言,请于此表示。' ,
'language' => '语系' ,
2021-02-22 18:43:26 +01:00
'new_savings_account' => ':bank_name 储蓄账户' ,
'cash_wallet' => '现金钱包' ,
'currency_not_present' => '若您日常使用的货币未列出,请不要担心,您可以在 选项 > 货币 创建您自己的货币。' ,
2019-01-28 20:10:52 +01:00
// home page:
2021-02-22 18:43:26 +01:00
'transaction_table_description' => '包含您交易的表格' ,
'opposing_account' => '对方账户' ,
'yourAccounts' => '您的账户' ,
2019-08-23 14:11:10 +02:00
'your_accounts' => '账户概览' ,
'category_overview' => '类别概述' ,
'expense_overview' => '支出账户概览' ,
'revenue_overview' => '收入账户概览' ,
2021-02-25 06:27:43 +01:00
'budgetsAndSpending' => '预算与支出' ,
'budgets_and_spending' => '预算与支出' ,
2019-08-23 14:11:10 +02:00
'go_to_budget' => '转到预算 "{budget}"' ,
2021-02-25 06:27:43 +01:00
'go_to_deposits' => '前往收入' ,
2021-02-22 18:43:26 +01:00
'go_to_expenses' => '前往支出' ,
2019-08-23 14:11:10 +02:00
'savings' => '储蓄' ,
'newWithdrawal' => '新支出' ,
2021-02-25 06:27:43 +01:00
'newDeposit' => '新收入' ,
'newTransfer' => '新转账' ,
2021-02-22 18:43:26 +01:00
'bills_to_pay' => '待付账单' ,
2019-08-23 14:11:10 +02:00
'per_day' => '每日' ,
2021-02-25 06:27:43 +01:00
'left_to_spend_per_day' => '每日剩余支出' ,
2021-02-22 18:43:26 +01:00
'bills_paid' => '已付账单' ,
2021-02-25 06:27:43 +01:00
'custom_period' => '自定义周期' ,
'reset_to_current' => '重置为当前周期' ,
'select_period' => '选择周期' ,
2019-01-28 20:10:52 +01:00
// menu and titles, should be recycled as often as possible:
2019-08-23 14:11:10 +02:00
'currency' => '货币' ,
'preferences' => '偏好设定' ,
2021-02-22 18:43:26 +01:00
'logout' => '退出登录' ,
'logout_other_sessions' => '退出所有其他已登录设备' ,
2019-08-23 14:11:10 +02:00
'toggleNavigation' => '切换导览' ,
2021-02-22 18:43:26 +01:00
'searchPlaceholder' => '搜索…' ,
2019-08-23 14:11:10 +02:00
'version' => '版本' ,
2021-02-22 18:43:26 +01:00
'dashboard' => '仪表盘' ,
2019-08-23 14:11:10 +02:00
'available_budget' => '可用预算 ({currency})' ,
'currencies' => '货币' ,
'activity' => '活动' ,
'usage' => '使用情况' ,
2021-02-22 18:43:26 +01:00
'accounts' => '账户' ,
'Asset account' => '资产账户' ,
'Default account' => '资产账户' ,
'Expense account' => '支出账户' ,
'Revenue account' => '收入账户' ,
'Initial balance account' => '初始余额账户' ,
'account_type_Debt' => '欠款' ,
2019-08-23 14:11:10 +02:00
'account_type_Loan' => '贷款' ,
'account_type_Mortgage' => '抵押' ,
2021-05-13 06:19:15 +02:00
'account_type_debt' => 'Debt' ,
'account_type_loan' => 'Loan' ,
'account_type_mortgage' => 'Mortgage' ,
2019-08-23 14:11:10 +02:00
'account_type_Credit card' => '信用卡' ,
2021-08-07 12:14:48 +02:00
'credit_card_type_monthlyFull' => 'Full payment every month' ,
2021-04-14 20:07:39 +02:00
'liability_direction_credit' => '我欠了这笔债务' ,
'liability_direction_debit' => '我欠别人这笔钱' ,
2021-05-13 06:19:15 +02:00
'liability_direction_credit_short' => 'Owed this debt' ,
'liability_direction_debit_short' => 'Owe this debt' ,
'liability_direction__short' => 'Unknown' ,
2021-05-13 06:49:38 +02:00
'liability_direction_null_short' => 'Unknown' ,
2021-05-13 06:19:15 +02:00
'Liability credit' => 'Liability credit' ,
2019-08-23 14:11:10 +02:00
'budgets' => '预算' ,
'tags' => '标签' ,
'reports' => '报表' ,
'transactions' => '交易' ,
'expenses' => '支出' ,
2021-02-25 06:27:43 +01:00
'income' => '收入' ,
'transfers' => '转账' ,
2019-08-23 14:11:10 +02:00
'moneyManagement' => '金钱管理' ,
'money_management' => '金钱管理' ,
'tools' => '工具' ,
'piggyBanks' => '存钱罐' ,
'piggy_banks' => '存钱罐' ,
'amount_x_of_y' => '{total} 中的 {current}' ,
2021-02-22 18:43:26 +01:00
'bills' => '账单' ,
2019-08-23 14:11:10 +02:00
'withdrawal' => '提款' ,
'opening_balance' => '开户余额' ,
2021-02-25 06:27:43 +01:00
'deposit' => '收入' ,
2021-02-22 18:43:26 +01:00
'account' => '账户' ,
2021-02-25 06:27:43 +01:00
'transfer' => '转账' ,
2019-08-23 14:11:10 +02:00
'Withdrawal' => '提款' ,
2021-02-25 06:27:43 +01:00
'Deposit' => '收入' ,
'Transfer' => '转账' ,
2021-02-22 18:43:26 +01:00
'bill' => '账单' ,
2019-08-23 14:11:10 +02:00
'yes' => '是' ,
'no' => '否' ,
'amount' => '金额' ,
'overview' => '概览' ,
2021-02-22 18:43:26 +01:00
'saveOnAccount' => '存至账户' ,
2019-08-23 14:11:10 +02:00
'unknown' => '未知' ,
'daily' => '逐日' ,
2021-02-22 18:43:26 +01:00
'monthly' => '每月' ,
2019-08-23 14:11:10 +02:00
'profile' => '个人档案' ,
'errors' => '错误' ,
2021-02-22 18:43:26 +01:00
'debt_start_date' => '欠款开始日期' ,
'debt_start_amount' => '欠款开始金额' ,
'debt_start_amount_help' => '最佳实践是永远将此值设为负,阅读帮助页面 (右上角问号 (?) 图标) 获取更多信息。' ,
'interest_period_help' => '此字段纯粹是装饰性的, 不会为您进行计算。事实证明, 银行非常狡猾, Firefly III 永远无法计算正确。' ,
'store_new_liabilities_account' => '保存新债务账户' ,
'edit_liabilities_account' => '编辑债务账户“:name”' ,
'financial_control' => '财务管控' ,
'accounting' => '记账' ,
'automation' => '自动化' ,
'others' => '其他' ,
2021-02-25 06:27:43 +01:00
'classification' => '归类整理' ,
2021-02-22 18:43:26 +01:00
'store_transaction' => '保存交易' ,
2019-01-28 20:10:52 +01:00
// reports:
2021-02-22 18:43:26 +01:00
'report_default' => ':start – :end 的默认财务报表' ,
'report_audit' => ':start – :end 的交易历史概览' ,
'report_category' => ':start – :end 的分类报表' ,
'report_double' => ':start – :end 的支出/收入账户报表' ,
'report_budget' => ':start – :end 的预算报表' ,
'report_tag' => ':start – :end 的标签报表' ,
2021-02-25 06:27:43 +01:00
'quick_link_reports' => '快捷链接' ,
'quick_link_examples' => '这些是示例链接以帮助您开始使用。点击右上角问号 (?) 图标查看帮助页面,获取所有报表的信息和可以使用的“魔法词”。' ,
2021-02-22 18:43:26 +01:00
'quick_link_default_report' => '默认财务报表' ,
2019-08-23 14:11:10 +02:00
'quick_link_audit_report' => '交易历史概览' ,
2021-02-22 18:43:26 +01:00
'report_this_month_quick' => '当前月份,全部账户' ,
'report_last_month_quick' => '上一月份,全部账户' ,
'report_this_year_quick' => '当前年份,全部账户' ,
'report_this_fiscal_year_quick' => '当前财年,全部账户' ,
'report_all_time_quick' => '所有时间,全部账户' ,
2021-02-25 06:27:43 +01:00
'reports_can_bookmark' => '提示:可以将报表加入书签。' ,
2021-02-22 18:43:26 +01:00
'incomeVsExpenses' => '收入 vs. 支出' ,
'accountBalances' => '账户余额' ,
'balanceStart' => '此周期起始余额' ,
'balanceEnd' => '此周期结束余额' ,
'splitByAccount' => '按账户拆分' ,
2019-08-23 14:11:10 +02:00
'coveredWithTags' => '以标签涵盖' ,
'leftInBudget' => '预算剩余' ,
2021-05-13 06:19:15 +02:00
'left_in_debt' => 'Amount due' ,
2019-08-23 14:11:10 +02:00
'sumOfSums' => '总和' ,
'noCategory' => '(没有分类)' ,
'notCharged' => '(尚) 未开始' ,
2021-02-22 18:43:26 +01:00
'inactive' => '已停用' ,
2019-08-23 14:11:10 +02:00
'active' => '启用' ,
'difference' => '差异' ,
2021-02-22 18:43:26 +01:00
'money_flowing_in' => '流入' ,
'money_flowing_out' => '流出' ,
2019-08-23 14:11:10 +02:00
'topX' => '前 :number' ,
2021-02-22 18:43:26 +01:00
'show_full_list' => '显示完整列表' ,
2019-08-23 14:11:10 +02:00
'show_only_top' => '仅显示前 :number' ,
'report_type' => '报表类型' ,
2021-02-22 18:43:26 +01:00
'report_type_default' => '默认财务报表' ,
'report_type_audit' => '交易历史概览 (审计)' ,
2019-08-23 14:11:10 +02:00
'report_type_category' => '分类报表' ,
'report_type_budget' => '预算报表' ,
'report_type_tag' => '标签报表' ,
2021-02-22 18:43:26 +01:00
'report_type_double' => '支出/收入账户报表' ,
'more_info_help' => '可在帮助页面找到更多关于报表类型的信息,请点击右上角的问号 (?) 图标。' ,
'report_included_accounts' => '已包含的账户' ,
2019-08-23 14:11:10 +02:00
'report_date_range' => '日期范围' ,
'report_preset_ranges' => '预设范围' ,
'shared' => '共用' ,
'fiscal_year' => '财政年度' ,
2021-02-22 18:43:26 +01:00
'income_entry' => ':start – :end 账户“:name”的收入' ,
'expense_entry' => ':start – :end 账户“:name”的支出' ,
'category_entry' => ':start – :end 分类“:name”的收入' ,
'budget_spent_amount' => ':start – :end 预算“:budget”的支出' ,
'balance_amount' => ':start – :end 从账户“:account”支付的预算“:budget”的支出' ,
'no_audit_activity' => ':start – :end 账户“<a href=":url" title=":account_name">:account_name</a>”没有任何活动。' ,
'audit_end_balance' => '账户“<a href=":url" title=":account_name">:account_name</a>”在 :end 末的账户余额为::balance' ,
2019-08-23 14:11:10 +02:00
'reports_extra_options' => '额外选项' ,
'report_has_no_extra_options' => '此报表没有额外选项' ,
2019-12-20 16:42:23 +01:00
'reports_submit' => '查看报表' ,
2019-08-23 14:11:10 +02:00
'end_after_start_date' => '报表的结束日期必须在开始日期之后。' ,
'select_category' => '选择类别' ,
'select_budget' => '选择预算。' ,
'select_tag' => '选择标签' ,
'income_per_category' => '每个类别的收入' ,
'expense_per_category' => '每个类别的支出' ,
'expense_per_budget' => '每个预算的费用' ,
2021-02-22 18:43:26 +01:00
'income_per_account' => '每个账户的收入' ,
'expense_per_account' => '每个账户的支出' ,
2019-08-23 14:11:10 +02:00
'expense_per_tag' => '每个标签的支出' ,
'income_per_tag' => '每个标签的收入' ,
'include_expense_not_in_budget' => '包含的支出不在所选的预算内' ,
'include_expense_not_in_account' => '包含的支出不在所选的账户内' ,
'include_expense_not_in_category' => '包含的支出不在所选的份额里内' ,
'include_income_not_in_category' => '未列入所选类别的收入' ,
2021-02-22 18:43:26 +01:00
'include_income_not_in_account' => '未列入所选账户的收入' ,
2019-08-23 14:11:10 +02:00
'include_income_not_in_tags' => '未包含在所选标记中的收入' ,
'include_expense_not_in_tags' => '未包含在所选标记中的支出' ,
'everything_else' => '其他' ,
'income_and_expenses' => '收入与支出' ,
2021-02-25 06:27:43 +01:00
'spent_average' => '支出 (平均)' ,
2021-02-22 18:43:26 +01:00
'income_average' => '收入 (平均)' ,
2019-08-23 14:11:10 +02:00
'transaction_count' => '交易数' ,
2021-02-25 06:27:43 +01:00
'average_spending_per_account' => '每个账户的平均支出' ,
2021-02-22 18:43:26 +01:00
'average_income_per_account' => '每个账户的平均收入' ,
'total' => '总计' ,
2019-08-23 14:11:10 +02:00
'description' => '描述' ,
'sum_of_period' => '区间内的总和' ,
'average_in_period' => '区间平均' ,
2021-02-22 18:43:26 +01:00
'account_role_defaultAsset' => '默认资产账户' ,
'account_role_sharedAsset' => '共用资产账户' ,
'account_role_savingAsset' => '储蓄账户' ,
2019-08-23 14:11:10 +02:00
'account_role_ccAsset' => '信用卡' ,
'account_role_cashWalletAsset' => '现金钱包' ,
'budget_chart_click' => '请点击上表中的预算名称查看图表。' ,
'category_chart_click' => '请点击上表中的类别名称以查看图表。' ,
2021-02-25 06:27:43 +01:00
'in_out_accounts' => '每个组合的收入与支出' ,
'in_out_accounts_per_asset' => '收入与支出 (每个资产账户)' ,
'in_out_per_category' => '每个分类的收入与支出' ,
'out_per_budget' => '每个预算的支出' ,
2021-02-22 18:43:26 +01:00
'select_expense_revenue' => '选择支出/收入账户' ,
'multi_currency_report_sum' => '由于此列表包括多种货币,您所看到的总和可能无意义。报表会总是以您的默认货币为主。' ,
'sum_in_default_currency' => '总额会总是以您的默认货币显示' ,
'net_filtered_prefs' => '此图表永远不会包括未勾选“包含于净资产”选项的账户' ,
2019-01-28 20:10:52 +01:00
// charts:
2019-08-23 14:11:10 +02:00
'chart' => '图表' ,
'month' => '月' ,
'budget' => '预算' ,
2021-02-25 06:27:43 +01:00
'spent' => '支出' ,
'spent_capped' => '支出 (上限)' ,
'spent_in_budget' => '预算内支出' ,
'left_to_spend' => '剩余支出' ,
2021-02-22 18:43:26 +01:00
'earned' => '收入' ,
2019-08-23 14:11:10 +02:00
'overspent' => '超支' ,
'left' => '剩余' ,
'max-amount' => '最小金额' ,
2021-02-22 18:43:26 +01:00
'min-amount' => '最小金额' ,
'journal-amount' => '目前账单条目' ,
2019-08-23 14:11:10 +02:00
'name' => '名称' ,
'date' => '日期' ,
2021-02-22 18:43:26 +01:00
'date_and_time' => '日期和时间' ,
'time' => '时间' ,
2019-08-23 14:11:10 +02:00
'paid' => '已付款' ,
'unpaid' => '未付款' ,
'day' => '日' ,
2021-02-22 18:43:26 +01:00
'budgeted' => '预算上限' ,
2019-08-23 14:11:10 +02:00
'period' => '区间' ,
'balance' => '余额' ,
'sum' => '总计' ,
'summary' => '概要' ,
'average' => '平均' ,
'balanceFor' => ':name 的余额' ,
2019-10-05 06:23:46 +02:00
'no_tags' => '(无标签)' ,
2019-01-28 20:10:52 +01:00
// piggy banks:
2019-08-23 14:11:10 +02:00
'add_money_to_piggy' => '存入存钱罐 “:name”' ,
'piggy_bank' => '存钱罐' ,
2021-02-25 06:27:43 +01:00
'new_piggy_bank' => '新存钱罐' ,
2021-02-22 18:43:26 +01:00
'store_piggy_bank' => '保存新存钱罐' ,
'stored_piggy_bank' => '保存新存钱罐“:name”' ,
'account_status' => '账户状态' ,
'left_for_piggy_banks' => '可用于存钱罐' ,
'sum_of_piggy_banks' => '存钱罐总金额' ,
'saved_so_far' => '已存金额' ,
'left_to_save' => '剩余金额' ,
2019-08-23 14:11:10 +02:00
'suggested_amount' => '建议每月储蓄金额' ,
'add_money_to_piggy_title' => '存至存钱罐 “:name”' ,
'remove_money_from_piggy_title' => '自存钱罐 “:name” 中取出' ,
'add' => '新增' ,
'no_money_for_piggy' => '您已没有钱可放至存钱罐' ,
2021-02-22 18:43:26 +01:00
'suggested_savings_per_month' => '每月建议金额' ,
2019-01-28 20:10:52 +01:00
'remove' => '移除' ,
2021-02-22 18:43:26 +01:00
'max_amount_add' => '可以增加的最大金额为' ,
2019-01-28 20:10:52 +01:00
'max_amount_remove' => '所能移除之最大金额为' ,
2019-05-29 18:30:52 +02:00
'update_piggy_button' => '更新存钱罐' ,
2021-02-22 18:43:26 +01:00
'update_piggy_title' => '更新存钱罐“:name”' ,
'updated_piggy_bank' => '已更新存钱罐“:name”' ,
'details' => '详情' ,
2019-01-28 20:10:52 +01:00
'events' => '事件' ,
'target_amount' => '目标金额' ,
'start_date' => '开始日期' ,
'no_start_date' => '无开始日期' ,
'target_date' => '目标日期' ,
'no_target_date' => '无目标日期' ,
'table' => '表格' ,
2019-05-29 18:30:52 +02:00
'delete_piggy_bank' => '删除存钱罐 ":name"' ,
2019-01-28 20:10:52 +01:00
'cannot_add_amount_piggy' => '无法增加 :amount 至 “:name”。' ,
'cannot_remove_from_piggy' => '无法自 “:name” 移除 :amount。' ,
2019-05-29 18:30:52 +02:00
'deleted_piggy_bank' => '删除存钱罐 ":name"' ,
2019-01-28 20:10:52 +01:00
'added_amount_to_piggy' => '已新增 :amount 至 “:name”' ,
'removed_amount_from_piggy' => '已自 “:name” 移除 :amount' ,
2019-06-23 10:39:59 +02:00
'piggy_events' => '相关的存钱罐' ,
2019-01-28 20:10:52 +01:00
// tags
'delete_tag' => '删除标签 ":tag"' ,
'deleted_tag' => '已删除标签 ":tag"' ,
'new_tag' => '建立新标签' ,
'edit_tag' => '编辑标签 ":tag"' ,
2021-02-22 18:43:26 +01:00
'updated_tag' => '已更新标签“:tag”' ,
2019-01-28 20:10:52 +01:00
'created_tag' => '标签 “:tag” 已被建立!' ,
2021-02-22 18:43:26 +01:00
'transaction_journal_information' => '交易信息' ,
'transaction_journal_meta' => '元信息' ,
2019-06-23 10:39:59 +02:00
'transaction_journal_more' => '更多信息' ,
2021-02-22 18:43:26 +01:00
'basic_journal_information' => '基础交易信息' ,
'transaction_journal_extra' => '额外信息' ,
2019-06-23 10:39:59 +02:00
'att_part_of_journal' => '在“:journal”中存储' ,
2019-05-29 18:30:52 +02:00
'total_amount' => '总金额' ,
2021-02-22 18:43:26 +01:00
'number_of_decimals' => '小数位数' ,
2019-01-28 20:10:52 +01:00
// administration
2019-05-29 18:30:52 +02:00
'administration' => '管理' ,
2021-02-22 18:43:26 +01:00
'user_administration' => '用户管理' ,
'list_all_users' => '所有用户' ,
'all_users' => '所有用户' ,
2019-05-29 18:30:52 +02:00
'instance_configuration' => '设置' ,
2021-02-22 18:43:26 +01:00
'firefly_instance_configuration' => 'Firefly III 设置' ,
'setting_single_user_mode' => '单用户模式' ,
'setting_single_user_mode_explain' => '默认情况下, Firefly III 只接受一 (1) 次来自您自己的注册请求。这是一项安全防护措施,若没有您的批准,其他人将无法使用您的站点,所有的注册请求都将被拒绝。当您取消选中此复选框后,若站点可以访问 (站点接入外网),则其他人也可以使用您的站点。' ,
'store_configuration' => '保存配置' ,
'single_user_administration' => '管理用户 :email' ,
'edit_user' => '编辑用户 :email' ,
'hidden_fields_preferences' => '您可以在<a href="preferences">偏好设定</a>中启用更多交易选项。' ,
'user_data_information' => '用户数据' ,
'user_information' => '用户信息' ,
2019-05-29 18:30:52 +02:00
'total_size' => '总大小' ,
2021-02-22 18:43:26 +01:00
'budget_or_budgets' => ':count 笔预算|:count 笔预算' ,
2021-02-25 06:27:43 +01:00
'budgets_with_limits' => ':count 笔预算有上限|:count 笔预算有上限' ,
2019-05-29 18:30:52 +02:00
'nr_of_rules_in_total_groups' => ':count_groups规则组中, 包含:count_rules条规则' ,
2021-02-22 18:43:26 +01:00
'tag_or_tags' => ':count 个标签|:count 个标签' ,
'configuration_updated' => '已更新配置' ,
2019-05-29 18:30:52 +02:00
'setting_is_demo_site' => '演示网站' ,
'setting_is_demo_site_explain' => '若您勾选此选项,此安装将会以展示网站方式运作,会有奇怪的副作用。' ,
'block_code_bounced' => '电子邮件被退回' ,
2021-02-25 06:27:43 +01:00
'block_code_expired' => '演示账户已过期' ,
2021-02-22 18:43:26 +01:00
'no_block_code' => '无封禁理由或用户未被封禁' ,
'block_code_email_changed' => '用户尚未确认新的电子邮件地址' ,
'admin_update_email' => '与个人档案页面相反,用户不会被通知他们的电子邮件地址已变更!' ,
'update_user' => '更新用户' ,
'updated_user' => '用户资料已更改。' ,
'delete_user' => '删除用户 :email' ,
'user_deleted' => '用户已被删除' ,
'send_test_email' => '发送测试邮件消息' ,
'send_test_email_text' => '要检查您的站点是否能发送电子邮件,请点击此按钮。您不会在此看到错误 (如果有的话), <strong>日志文件才会反映一切错误</strong>。您可依照自己意愿多次点击此按钮,站点并无垃圾邮件管控,测试消息将会很快发送至 <code>:email</code>。' ,
2019-05-29 18:30:52 +02:00
'send_message' => '发送消息' ,
2021-02-22 18:43:26 +01:00
'send_test_triggered' => '测试已触发,请检查您的收件箱与日志文件。' ,
2020-04-02 06:39:09 +02:00
'give_admin_careful' => '被授予管理员权限的用户可以收回您的权限。请千万注意这点。' ,
2021-02-22 18:43:26 +01:00
'admin_maintanance_title' => '维护' ,
'admin_maintanance_expl' => '用于 Firefly III 维护的漂亮按钮' ,
'admin_maintenance_clear_cache' => '清除缓存' ,
2019-05-29 18:30:52 +02:00
2019-06-23 10:39:59 +02:00
'split_transaction_title' => '拆分交易的描述' ,
2021-02-25 06:27:43 +01:00
'split_transaction_title_help' => '如果您创建了一笔拆分交易,必须有一个所有拆分的全局描述。' ,
'split_title_help' => '如果您创建了一笔拆分交易,必须有一个所有拆分的全局描述。' ,
2021-02-22 18:43:26 +01:00
'you_create_transfer' => '您正在创建一笔转账' ,
2021-02-25 06:27:43 +01:00
'you_create_withdrawal' => '您正在创建一笔支出' ,
'you_create_deposit' => '您正在创建一笔收入' ,
2019-05-29 18:30:52 +02:00
2019-01-28 20:10:52 +01:00
// links
2021-02-22 18:43:26 +01:00
'journal_link_configuration' => '交易关联配置' ,
'create_new_link_type' => '创建新关联类型' ,
'store_new_link_type' => '保存新关联类型' ,
'update_link_type' => '更新关联类型' ,
'edit_link_type' => '编辑关联类型“:name”' ,
'updated_link_type' => '更新关联类型“:name”' ,
'delete_link_type' => '删除关联类型“:name”' ,
'deleted_link_type' => '删除关联类型“:name”' ,
'stored_new_link_type' => '保存关联类型“:name”' ,
2019-01-28 20:10:52 +01:00
'cannot_edit_link_type' => '无法编辑连结类型 ":name"' ,
2021-02-25 06:27:43 +01:00
'link_type_help_name' => '例如“复制”' ,
'link_type_help_inward' => '例如“进行复制”' ,
'link_type_help_outward' => '例如“的复制来源为”' ,
2021-02-22 18:43:26 +01:00
'save_connections_by_moving' => '将此交易关联移动到另一个关联类型并保存:' ,
2019-01-28 20:10:52 +01:00
'do_not_save_connection' => '(不保存连接)' ,
2021-02-22 18:43:26 +01:00
'link_transaction' => '关联交易' ,
2019-01-28 20:10:52 +01:00
'link_to_other_transaction' => '链结此交易至另一笔' ,
2021-02-22 18:43:26 +01:00
'select_transaction_to_link' => '选择一笔交易来关联此交易。关联目前尚未在 Firefly III 中使用 (未显示),但开发者已计划在将来进行改动。您可以使用搜索框来用标题或 ID 选择一笔交易。如果您想要添加自定义关联类型,请访问管理页面。' ,
2019-01-28 20:10:52 +01:00
'this_transaction' => '这笔交易' ,
'transaction' => '交易' ,
'comments' => '评论' ,
2021-02-22 18:43:26 +01:00
'link_notes' => '任何您希望与关联一起保存的备注。' ,
'invalid_link_selection' => '无法关联这些交易' ,
2019-10-05 06:23:46 +02:00
'selected_transaction' => '已选交易' ,
2021-02-22 18:43:26 +01:00
'journals_linked' => '交易已关联' ,
2019-01-28 20:10:52 +01:00
'journals_error_linked' => '这些交易已互相链结' ,
2021-02-22 18:43:26 +01:00
'journals_link_to_self' => '您无法将一笔交易关联至此交易本身' ,
'journal_links' => '交易关联' ,
2021-02-25 06:27:43 +01:00
'this_withdrawal' => '此支出' ,
'this_deposit' => '这笔收入' ,
2019-01-28 20:10:52 +01:00
'this_transfer' => '此传输' ,
2021-02-22 18:43:26 +01:00
'overview_for_link' => '关联类型“:name”概览' ,
2019-01-28 20:10:52 +01:00
'source_transaction' => '源交易记录' ,
2021-02-22 18:43:26 +01:00
'link_description' => '关联描述' ,
2019-01-28 20:10:52 +01:00
'destination_transaction' => '指定的交易' ,
'delete_journal_link' => '删除 <a href=":source_link">:source</a> 和<a href=":destination_link">:destination</a>之间的联繫' ,
2021-02-22 18:43:26 +01:00
'deleted_link' => '已删除关联' ,
2019-01-28 20:10:52 +01:00
// link translations:
'Paid_name' => '已付款' ,
'Refund_name' => '退款' ,
'Reimbursement_name' => '报销' ,
'Related_name' => '相关' ,
'relates to_inward' => '关联于' ,
2021-02-25 06:27:43 +01:00
'is (partially) refunded by_inward' => '的 (部分) 退款方为' ,
'is (partially) paid for by_inward' => '的 (部分) 付款目标为' ,
'is (partially) reimbursed by_inward' => '的 (部分) 还款方为' ,
2019-01-28 20:10:52 +01:00
'inward_transaction' => '内向交易' ,
'outward_transaction' => '外向交易' ,
'relates to_outward' => '关联于' ,
2021-02-22 18:43:26 +01:00
'(partially) refunds_outward' => '(部分) 退款' ,
'(partially) pays for_outward' => '(部分) 支付' ,
'(partially) reimburses_outward' => '(部分) 还款' ,
2021-02-25 06:27:43 +01:00
'is (partially) refunded by' => '的 (部分) 退款方为' ,
'is (partially) paid for by' => '的 (部分) 付款目标为' ,
'is (partially) reimbursed by' => '的 (部分) 还款方为' ,
'relates to' => '关联于' ,
'(partially) refunds' => '(部分) 退款' ,
'(partially) pays for' => '(部分) 支付' ,
'(partially) reimburses' => '(部分) 还款' ,
2019-01-28 20:10:52 +01:00
// split a transaction:
'splits' => '拆分' ,
2021-02-25 06:27:43 +01:00
'add_another_split' => '增加另一笔拆分' ,
2021-02-22 18:43:26 +01:00
'cannot_edit_opening_balance' => '您无法编辑一个账户的开户余额。' ,
'no_edit_multiple_left' => '您没有选择有效的交易进行编辑。' ,
'breadcrumb_convert_group' => '转换交易' ,
'convert_invalid_source' => '交易 #%d 的来源信息无效。' ,
2019-10-05 06:23:46 +02:00
'convert_invalid_destination' => '交易 #%d 的目标信息无效。' ,
2021-02-22 18:43:26 +01:00
'create_another' => '保存后,返回此页面以创建新记录' ,
2019-11-25 18:41:40 +01:00
'after_update_create_another' => '更新后,返回此页面继续编辑。' ,
'store_as_new' => '保存为新交易而不是更新此交易。' ,
'reset_after' => '提交后重置表单' ,
2021-02-22 18:43:26 +01:00
'errors_submission' => '您提交的内容有误,请检查错误信息。' ,
2021-06-19 08:18:54 +02:00
'transaction_expand_split' => 'Expand split' ,
'transaction_collapse_split' => 'Collapse split' ,
2019-01-28 20:10:52 +01:00
2020-06-22 18:02:28 +02:00
// object groups
2021-02-22 18:43:26 +01:00
'default_group_title_name' => '(未分组)' ,
2020-06-22 18:02:28 +02:00
2019-01-28 20:10:52 +01:00
// empty lists? no objects? instructions:
2021-02-22 18:43:26 +01:00
'no_accounts_title_asset' => '创建一个资产账户!' ,
'no_accounts_intro_asset' => '您目前还没有资产账户。资产账户是您的主要账户,包括:您的支票账户、储蓄账户、共用账户,甚至信用卡等。' ,
'no_accounts_imperative_asset' => '要开始使用 Firefly III, 您需要至少一个资产账户。我们现在就来: ' ,
'no_accounts_create_asset' => '创建资产账户' ,
'no_accounts_title_expense' => '创建一个支出账户!' ,
'no_accounts_intro_expense' => '您目前还没有支出账户。支出账户用于记录您消费的地方,如商店或超市。' ,
'no_accounts_imperative_expense' => '当您创建交易时会自动创建支出账户,但您也可以手动创建,我们现在就来:' ,
'no_accounts_create_expense' => '创建支出账户' ,
'no_accounts_title_revenue' => '创建一个收入账户!' ,
'no_accounts_intro_revenue' => '您目前还没有收入账户。收入账户用于记录向您付款的各方,比如您的雇主。' ,
'no_accounts_imperative_revenue' => '当您创建交易时会自动创建收入账户,但您也可以手动创建,我们现在就来:' ,
'no_accounts_create_revenue' => '创建收入账户' ,
'no_accounts_title_liabilities' => '创建一个债务账户!' ,
'no_accounts_intro_liabilities' => '您目前还没有债务账户。债务账户用于注册您的 (学生) 贷款或其他负债。' ,
'no_accounts_imperative_liabilities' => '您不用必须使用此功能,但若您要追踪这些东西的话,此功能十分有用。' ,
'no_accounts_create_liabilities' => '创建债务账户' ,
'no_budgets_title_default' => '创建一笔预算!' ,
2022-01-02 07:52:12 +01:00
'no_rules_title_default' => '创建一个规则!' ,
2021-02-22 18:43:26 +01:00
'no_budgets_intro_default' => '您目前还没有预算。预算用于将您的支出归为具有逻辑性的组,为您的支出添加一个软性上限。' ,
2022-01-02 07:52:12 +01:00
'no_rules_intro_default' => '你还没有创建任何规则。规则是一种强大的自动化功能,可以帮助你处理交易。' ,
'no_rules_imperative_default' => '规则可以帮助你更好地管理交易。现在就创建一个吧:' ,
2021-02-22 18:43:26 +01:00
'no_budgets_imperative_default' => '预算是财务管理的基本工具,我们现在就来:' ,
'no_budgets_create_default' => '创建预算' ,
2021-05-13 06:19:15 +02:00
'no_rules_create_default' => 'Create a rule' ,
2021-02-22 18:43:26 +01:00
'no_categories_title_default' => '创建一个分类!' ,
'no_categories_intro_default' => '您目前还没有分类。分类用于微调您的交易,并依指定分类标示。' ,
'no_categories_imperative_default' => '当您创建交易时会自动创建分类,但您也可以手动创建,我们现在就来:' ,
'no_categories_create_default' => '创建分类' ,
'no_tags_title_default' => '创建一个标签!' ,
'no_tags_intro_default' => '您目前还没有标签。标签用于微调您的交易,并依指定关键字标示。' ,
'no_tags_imperative_default' => '当您创建交易时会自动创建标签,但您也可以手动创建,我们现在就来:' ,
'no_tags_create_default' => '创建标签' ,
'no_transactions_title_withdrawal' => '创建一笔支出!' ,
'no_transactions_intro_withdrawal' => '您目前还没有支出,您应该创建支出以开始管理您的财务。' ,
'no_transactions_imperative_withdrawal' => '您消费了一些钱吗?那么您应该记下来:' ,
'no_transactions_create_withdrawal' => '创建支出' ,
'no_transactions_title_deposit' => '创建一些收入!' ,
'no_transactions_intro_deposit' => '您目前还没有收入记录,您应该创建收入记录以开始管理您的财务。' ,
'no_transactions_imperative_deposit' => '您收到了一些钱吗?那么您应该记下来:' ,
2021-02-25 06:27:43 +01:00
'no_transactions_create_deposit' => '创建收入' ,
2021-02-22 18:43:26 +01:00
'no_transactions_title_transfers' => '创建一笔转账!' ,
2021-02-25 06:27:43 +01:00
'no_transactions_intro_transfers' => '您目前还没有转账。当您在资产账户之间移动资金时,将自动记录为转账。' ,
2021-02-22 18:43:26 +01:00
'no_transactions_imperative_transfers' => '您有移动这些钱吗?那么您应该记下来:' ,
2021-02-25 06:27:43 +01:00
'no_transactions_create_transfers' => '创建转账' ,
2021-02-22 18:43:26 +01:00
'no_piggies_title_default' => '创建一个存钱罐!' ,
'no_piggies_intro_default' => '您目前还没有存钱罐,您可以创建存钱罐来划分您的储蓄,并追踪您存钱的目标。' ,
'no_piggies_imperative_default' => '您有想要为之攒钱的东西吗?创建一个存钱罐然后开始追踪:' ,
'no_piggies_create_default' => '创建新存钱罐' ,
'no_bills_title_default' => '创建一笔账单!' ,
'no_bills_intro_default' => '您目前还没有账单,您可以创建账单以追踪您的日常支出,比如房租或保险。' ,
'no_bills_imperative_default' => '您有这样的常规账单吗?创建账单并追踪您的付款:' ,
'no_bills_create_default' => '创建账单' ,
2019-01-28 20:10:52 +01:00
// recurring transactions
2021-02-22 18:43:26 +01:00
'recurrences' => '定期交易' ,
'repeat_until_in_past' => '此定期交易已于 :date 停止重复。' ,
2019-01-28 20:10:52 +01:00
'recurring_calendar_view' => '日历' ,
2021-02-22 18:43:26 +01:00
'no_recurring_title_default' => '创建一笔定期交易!' ,
'no_recurring_intro_default' => '您还目前没有定期交易,使用此功能可以让 Firefly III 自动为您创建交易。' ,
'no_recurring_imperative_default' => '此功能适合高级用户,同时也极为有用。请在继续操作前,确认您已阅读右上角问号 (?) 图标) 里的帮助文档。' ,
'no_recurring_create_default' => '创建定期交易' ,
'make_new_recurring' => '创建定期交易' ,
2019-01-28 20:10:52 +01:00
'recurring_daily' => '每天' ,
2021-02-22 18:43:26 +01:00
'recurring_weekly' => '每周的:weekday' ,
'recurring_weekly_skip' => '每:skip个周的:weekday' ,
'recurring_monthly' => '每月的第:dayOfMonth天' ,
'recurring_monthly_skip' => '每:skip个月的第:dayOfMonth天' ,
'recurring_ndom' => '每月的第:dayOfMonth个:weekday' ,
2019-01-28 20:10:52 +01:00
'recurring_yearly' => '每年的:date' ,
2021-02-22 18:43:26 +01:00
'overview_for_recurrence' => '定期交易“:title”概览' ,
'warning_duplicates_repetitions' => '在极少数情况下, 日期在此列表上会显示两次, 这是由多个重复项目的冲突造成的。Firefly III 每天只会产生一条交易。' ,
'created_transactions' => '相关交易' ,
2021-02-25 06:27:43 +01:00
'expected_withdrawals' => '预期支出' ,
'expected_deposits' => '预期收入' ,
'expected_transfers' => '预期转账' ,
'created_withdrawals' => '已创建支出' ,
'created_deposits' => '已创建收入' ,
2021-02-22 18:43:26 +01:00
'created_transfers' => '已创建转账' ,
'recurring_info' => '定期交易 :count / :total' ,
'created_from_recurrence' => '从定期交易“:title” (#:id) 创建' ,
'recurring_never_cron' => '用于支持定期交易的计划任务尚未运行。全新安装 Firefly III 后出现此提示为正常情况,请尽快按照说明进行操作。点击页面右上角的问号 (?) 图标查看帮助页面。' ,
'recurring_cron_long_ago' => '距离上次运行用于支持定期交易的计划任务已超过36小时, 请确认您的配置正确无误。点击页面右上角的问号 (?) 图标查看帮助页面。' ,
2019-01-28 20:10:52 +01:00
2021-07-18 19:21:30 +02:00
'create_new_recurrence' => '创建新定期交易' ,
'help_first_date' => '第一笔预期的定期交易的日期,必须位于将来。' ,
'help_first_date_no_past' => '表示第一次预计的定期, Firefly III 不会创建已经过去的交易。' ,
'no_currency' => '(没有货币)' ,
'mandatory_for_recurring' => '必填定期信息' ,
'mandatory_for_transaction' => '必填交易信息' ,
'optional_for_recurring' => '选填定期信息' ,
'optional_for_transaction' => '选填交易信息' ,
'change_date_other_options' => '更改“初次日期”以查看更多选项。' ,
'mandatory_fields_for_tranaction' => '这里的数值最终会出现在创建的交易中' ,
'click_for_calendar' => '点这裡开启显示定期重复交易的行事曆' ,
'repeat_forever' => '永远重复' ,
'repeat_until_date' => '重复至特定日期' ,
'repeat_times' => '一定次数后重复' ,
'recurring_skips_one' => '每隔一个' ,
'recurring_skips_more' => '跳过:count次' ,
'store_new_recurrence' => '保存定期交易' ,
'stored_new_recurrence' => '定期交易“:title”保存成功' ,
'edit_recurrence' => '编辑定期交易“:title”' ,
'recurring_repeats_until' => '重复至:date' ,
'recurring_repeats_forever' => '永远重复' ,
'recurring_repeats_x_times' => '重复:count次|重复:count次' ,
'update_recurrence' => '更新定期交易' ,
'updated_recurrence' => '定期交易“:title”已更新' ,
'recurrence_is_inactive' => '此定期交易已停用,不会自动生成新交易' ,
'delete_recurring' => '删除定期交易“:title”' ,
'new_recurring_transaction' => '新定期交易' ,
'help_weekend' => '当定期交易发生于周六或周日时, Firefly III 要如何处理?' ,
'do_nothing' => '仅创建交易' ,
'skip_transaction' => '跳过此次' ,
'jump_to_friday' => '在上个星期五创建交易' ,
'jump_to_monday' => '在下个星期一创建交易' ,
'will_jump_friday' => '将提前到星期五创建而不是周末' ,
'will_jump_monday' => '将推迟到星期一创建而不是周末' ,
'except_weekends' => '例外的周末' ,
'recurrence_deleted' => '定期交易“:title”已删除' ,
2019-06-23 10:39:59 +02:00
// new lines for summary controller.
2021-07-18 19:21:30 +02:00
'box_balance_in_currency' => '余额(:currency)' ,
'box_spent_in_currency' => '支出 (:currency)' ,
'box_earned_in_currency' => '收入 (:currency)' ,
'box_budgeted_in_currency' => '预算 (:currency)' ,
'box_bill_paid_in_currency' => '已付账单 (:currency)' ,
'box_bill_unpaid_in_currency' => '未付账单 (:currency)' ,
'box_left_to_spend_in_currency' => '剩余支出 (:currency)' ,
'box_net_worth_in_currency' => '净资产 (:currency)' ,
'box_spend_per_day' => '每日剩余支出::amount' ,
2019-06-23 10:39:59 +02:00
2020-06-22 18:02:28 +02:00
// debug page
2021-07-18 19:21:30 +02:00
'debug_page' => '调试页面' ,
'debug_submit_instructions' => '如果您遇到问题,您可以使用此框内的信息协助调试,请将其复制并粘贴到新的或已存在的 <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub 工单</a> 中。系统将自动生成美观的表格,以方便快速诊断问题。' ,
'debug_pretty_table' => '如果您复制/粘贴框中的内容到 GitHub 工单中,系统会自动生成表格。请不要在此文本前后加上引号或反引号。' ,
'debug_additional_data' => '您还可以分享下方框中的内容,将其复制并粘贴至新的或已有的 <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub 工单</a> 中。然而,框中的内容可能包含隐私信息,例如账户名称、转账详情或电子邮件地址。' ,
2020-06-22 18:02:28 +02:00
// object groups
2021-07-18 19:21:30 +02:00
'object_groups_menu_bar' => '组' ,
'object_groups_page_title' => '组' ,
'object_groups_breadcrumb' => '组' ,
'object_groups_index' => '概览' ,
'object_groups' => '组' ,
'object_groups_empty_explain' => 'Firefly III 的一些项目可以分为组。例如,存钱罐的编辑和创建页面有“组”字段。当您设定了此字段,您可以在此页面编辑组名称和排列顺序。点击右上角的问号 (?) 图标查看帮助页面,获取更多信息。' ,
'object_group_title' => '标题' ,
'edit_object_group' => '编辑组“:title”' ,
'delete_object_group' => '删除组“:title”' ,
'update_object_group' => '更新组' ,
'updated_object_group' => 'Successfully updated group ":title"' ,
'deleted_object_group' => 'Successfully deleted group ":title"' ,
'object_group' => '组' ,
2020-06-22 18:02:28 +02:00
2020-07-02 20:23:45 +02:00
//
2019-01-28 20:10:52 +01:00
];