112 lines
3.4 KiB
TypeScript
112 lines
3.4 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 = {
|
|
mall: {
|
|
catalogTitle: "Shop products",
|
|
searchPlaceholder: "Search products",
|
|
categoryPlaceholder: "Choose a category",
|
|
allCategories: "All categories",
|
|
clear: "Clear",
|
|
viewDetails: "View details",
|
|
noImage: "No image",
|
|
noProducts: "No products found",
|
|
productDescription: "Description",
|
|
attributes: "Attributes",
|
|
sku: "SKU",
|
|
chooseSku: "Choose an option",
|
|
quantity: "Quantity",
|
|
available: "available",
|
|
unavailable: "Unavailable",
|
|
addedToCart: "Added to cart",
|
|
cartItems: "Cart items",
|
|
lineTotal: "Line total",
|
|
orderPreview: "Order preview",
|
|
checkoutTitle: "Checkout",
|
|
placeOrder: "Place order",
|
|
orderSuccess: "Your order has been placed",
|
|
orderNumbers: "Order numbers",
|
|
viewOrders: "View orders",
|
|
backToShop: "Continue shopping",
|
|
noOrders: "No orders found",
|
|
created: "Created",
|
|
items: "Items",
|
|
address: "Address",
|
|
shipments: "Shipments",
|
|
invoices: "Invoices",
|
|
noInvoice: "No invoice requested",
|
|
invoiceRequested: "Invoice requested",
|
|
notAvailable: "—",
|
|
companyTaxRequired: "Tax number is required for company invoices",
|
|
invalidQuantity: "Enter a valid quantity",
|
|
loadFailed: "Unable to load data",
|
|
signInRequired: "Please sign in to continue",
|
|
filter: "Filter",
|
|
details: "Details",
|
|
update: "Update",
|
|
confirm: "Confirm",
|
|
totalItems: "Total items",
|
|
shippingOptional: "Optional",
|
|
orderDetails: "Order details",
|
|
payment: "Payment",
|
|
requestInvoiceForOrder: "Request an invoice for this order",
|
|
},
|
|
auth: {
|
|
wrongRole: "This account is not a customer account",
|
|
},
|
|
} as Record<string, unknown>;
|
|
|
|
export const zhExtra = {
|
|
mall: {
|
|
catalogTitle: "选购商品",
|
|
searchPlaceholder: "搜索商品",
|
|
categoryPlaceholder: "选择分类",
|
|
allCategories: "全部分类",
|
|
clear: "清除",
|
|
viewDetails: "查看详情",
|
|
noImage: "暂无图片",
|
|
noProducts: "未找到商品",
|
|
productDescription: "商品描述",
|
|
attributes: "属性",
|
|
sku: "SKU",
|
|
chooseSku: "选择规格",
|
|
quantity: "数量",
|
|
available: "件可用",
|
|
unavailable: "暂不可用",
|
|
addedToCart: "已加入购物车",
|
|
cartItems: "购物车商品",
|
|
lineTotal: "行合计",
|
|
orderPreview: "订单预览",
|
|
checkoutTitle: "结算",
|
|
placeOrder: "提交订单",
|
|
orderSuccess: "订单提交成功",
|
|
orderNumbers: "订单号",
|
|
viewOrders: "查看订单",
|
|
backToShop: "继续购物",
|
|
noOrders: "暂无订单",
|
|
created: "创建时间",
|
|
items: "商品数",
|
|
address: "地址",
|
|
shipments: "发货信息",
|
|
invoices: "发票",
|
|
noInvoice: "尚未申请发票",
|
|
invoiceRequested: "发票已申请",
|
|
notAvailable: "—",
|
|
companyTaxRequired: "企业发票必须填写税号",
|
|
invalidQuantity: "请输入有效数量",
|
|
loadFailed: "无法加载数据",
|
|
signInRequired: "请先登录",
|
|
filter: "筛选",
|
|
details: "详情",
|
|
update: "更新",
|
|
confirm: "确认",
|
|
totalItems: "商品总数",
|
|
shippingOptional: "可选",
|
|
orderDetails: "订单详情",
|
|
payment: "支付",
|
|
requestInvoiceForOrder: "申请本订单发票",
|
|
},
|
|
auth: {
|
|
wrongRole: "此账号不是买家账号",
|
|
},
|
|
} as Record<string, unknown>;
|