Spaces:
Sleeping
Sleeping
| import type { TranslationStrings } from '../types'; | |
| const budget: TranslationStrings = { | |
| 'budget.title': '预算', | |
| 'budget.exportCsv': '导出 CSV', | |
| 'budget.emptyTitle': '尚未创建预算', | |
| 'budget.emptyText': '创建分类和条目来规划旅行预算', | |
| 'budget.emptyPlaceholder': '输入分类名称...', | |
| 'budget.createCategory': '创建分类', | |
| 'budget.category': '分类', | |
| 'budget.categoryName': '分类名称', | |
| 'budget.table.name': '名称', | |
| 'budget.table.total': '合计', | |
| 'budget.table.persons': '人数', | |
| 'budget.table.days': '天数', | |
| 'budget.table.perPerson': '人均', | |
| 'budget.table.perDay': '日均', | |
| 'budget.table.perPersonDay': '人日均', | |
| 'budget.table.note': '备注', | |
| 'budget.table.date': '日期', | |
| 'budget.newEntry': '新建条目', | |
| 'budget.defaultEntry': '新建条目', | |
| 'budget.defaultCategory': '新分类', | |
| 'budget.total': '合计', | |
| 'budget.totalBudget': '总预算', | |
| 'budget.byCategory': '按分类', | |
| 'budget.editTooltip': '点击编辑', | |
| 'budget.linkedToReservation': '已关联到预订——请在那里编辑名称', | |
| 'budget.confirm.deleteCategory': | |
| '确定删除分类「{name}」及其 {count} 个条目?', | |
| 'budget.deleteCategory': '删除分类', | |
| 'budget.perPerson': '人均', | |
| 'budget.paid': '已支付', | |
| 'budget.open': '未支付', | |
| 'budget.noMembers': '未分配成员', | |
| 'budget.settlement': '结算', | |
| 'budget.settlementInfo': | |
| '点击预算项目上的成员头像将其标记为绿色——表示该成员已付款。结算会显示谁欠谁多少。', | |
| 'budget.netBalances': '净余额', | |
| 'budget.categoriesLabel': '类别', | |
| "costs.you": "你", | |
| "costs.youShort": "你", | |
| "costs.youLower": "你", | |
| "costs.youOwe": "你欠款", | |
| "costs.youOweSub": "你需要付钱给其他人", | |
| "costs.youreOwed": "别人欠你", | |
| "costs.youreOwedSub": "其他人需要付钱给你", | |
| "costs.totalSpend": "行程总支出", | |
| "costs.totalSpendSub": "所有同行者合计", | |
| "costs.to": "收款方", | |
| "costs.from": "付款方", | |
| "costs.allSettled": "你已全部结清", | |
| "costs.nothingOwed": "没有人欠你", | |
| "costs.yourShare": "你的份额", | |
| "costs.youPaid": "你已支付", | |
| "costs.expenses": "支出", | |
| "costs.entries": "{count} 条记录", | |
| "costs.searchPlaceholder": "搜索支出…", | |
| "costs.filter.all": "全部", | |
| "costs.filter.mine": "我支付的", | |
| "costs.filter.owed": "别人欠我", | |
| "costs.addExpense": "添加支出", | |
| "costs.editExpense": "编辑支出", | |
| "costs.noMatch": "没有符合搜索条件的支出。", | |
| "costs.emptyText": "暂无支出。添加第一笔吧。", | |
| "costs.spent": "已花费 {amount}", | |
| "costs.noDate": "无日期", | |
| "costs.noOnePaid": "尚无人支付", | |
| "costs.youLent": "你垫付了 {amount}", | |
| "costs.youBorrowed": "你欠了 {amount}", | |
| "costs.settleUp": "结算", | |
| "costs.history": "历史记录", | |
| "costs.everyoneSquare": "大家已两清", | |
| "costs.nothingOutstanding": "目前没有待结算的款项。", | |
| "costs.pay": "支付", | |
| "costs.pays": "支付", | |
| "costs.settle": "结算", | |
| "costs.balances": "余额", | |
| "costs.byCategory": "按分类", | |
| "costs.noCategories": "暂无支出。", | |
| "costs.settleHistory": "结算历史", | |
| "costs.noSettlements": "暂无已结算的款项。", | |
| "costs.paymentsSettled": "已结算 {count} 笔付款", | |
| "costs.paid": "已支付", | |
| "costs.undo": "撤销", | |
| "costs.whatFor": "这笔花在哪了?", | |
| "costs.namePlaceholder": "例如:晚餐、纪念品、油费…", | |
| "costs.totalAmount": "总金额", | |
| "costs.currency": "货币", | |
| "costs.day": "日期", | |
| "costs.rateLabel": "1 {from} = {to}", | |
| "costs.category": "分类", | |
| "costs.whoPaid": "谁支付的?", | |
| "costs.splitBetween": "平均分摊给", | |
| "costs.pickSomeone": "至少选择一人参与分摊。", | |
| "costs.splitSummary": "分 {count} 份 · 每份 {amount}", | |
| "costs.cat.accommodation": "住宿", | |
| "costs.cat.food": "餐饮", | |
| "costs.cat.groceries": "采买", | |
| "costs.cat.transport": "交通", | |
| "costs.cat.flights": "机票", | |
| "costs.cat.activities": "活动", | |
| "costs.cat.sightseeing": "观光", | |
| "costs.cat.shopping": "购物", | |
| "costs.cat.fees": "费用与门票", | |
| "costs.cat.health": "健康", | |
| "costs.cat.tips": "小费", | |
| "costs.cat.other": "其他", | |
| "costs.daysCount": "{count} 天", | |
| "costs.travelers": "{count} 位同行者", | |
| "costs.liveRate": "实时汇率", | |
| "costs.settleAll": "全部结算", | |
| }; | |
| export default budget; | |