68 lines
2.2 KiB
TypeScript
68 lines
2.2 KiB
TypeScript
// App-local message extensions, deep-merged over @vmall/shared locales.
|
|
// Add keys here (never edit the shared locale files from an app agent).
|
|
export const enExtra = {
|
|
auth: {
|
|
adminHint: "Dev account: admin@vmall.local / admin1234",
|
|
wrongRole: "This account does not have platform administrator access.",
|
|
},
|
|
admin: {
|
|
dashboardTitle: "Platform overview",
|
|
refresh: "Refresh",
|
|
open: "Open",
|
|
totalUsers: "Total users",
|
|
totalShops: "Total shops",
|
|
totalOrders: "Total orders",
|
|
enabledCurrencies: "Enabled currencies",
|
|
shopRequired: "Select a shop for shop owners and staff.",
|
|
noAssignedShop: "No shop assigned",
|
|
created: "Created",
|
|
orderShop: "Shop",
|
|
orderUser: "User",
|
|
orderTotal: "Total",
|
|
shopStatus: "Shop status",
|
|
currencyCode: "Currency code",
|
|
currencyNameEn: "Currency name (English)",
|
|
currencyNameZh: "Currency name (中文)",
|
|
codeInvalid: "Currency code must be three letters.",
|
|
currencyFormTitle: "Add currency",
|
|
userManagement: "User management",
|
|
shopManagement: "Shop management",
|
|
orderManagement: "Order management",
|
|
currencyManagement: "Currency management",
|
|
pageOf: "Page {page} of {total}",
|
|
},
|
|
} as const;
|
|
|
|
export const zhExtra = {
|
|
auth: {
|
|
adminHint: "开发账号:admin@vmall.local / admin1234",
|
|
wrongRole: "此账号没有平台管理员权限。",
|
|
},
|
|
admin: {
|
|
dashboardTitle: "平台概览",
|
|
refresh: "刷新",
|
|
open: "打开",
|
|
totalUsers: "用户总数",
|
|
totalShops: "店铺总数",
|
|
totalOrders: "订单总数",
|
|
enabledCurrencies: "启用币种",
|
|
shopRequired: "店主和店员必须选择所属店铺。",
|
|
noAssignedShop: "未分配店铺",
|
|
created: "创建时间",
|
|
orderShop: "店铺",
|
|
orderUser: "用户",
|
|
orderTotal: "合计",
|
|
shopStatus: "店铺状态",
|
|
currencyCode: "币种代码",
|
|
currencyNameEn: "币种名称(英文)",
|
|
currencyNameZh: "币种名称(中文)",
|
|
codeInvalid: "币种代码必须是三个字母。",
|
|
currencyFormTitle: "添加币种",
|
|
userManagement: "用户管理",
|
|
shopManagement: "店铺管理",
|
|
orderManagement: "订单管理",
|
|
currencyManagement: "币种管理",
|
|
pageOf: "第 {page} 页,共 {total} 页",
|
|
},
|
|
} as const;
|