@pisell/pisellos
Version:
一个可扩展的前端模块化SDK框架,支持插件系统
55 lines (53 loc) • 2.37 kB
JavaScript
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/model/strategy/adapter/walletPass/locales.ts
var locales_exports = {};
__export(locales_exports, {
locales: () => locales
});
module.exports = __toCommonJS(locales_exports);
var locales = {
"zh-CN": {
"not_meet_the_required_conditions": "未达到使用条件",
"exceeds_the_maximum_deduction_limit": "超出最大抵扣金额限制",
"usage_limit_reached": "已达到使用次数上限",
"max_passes_per_item_reached": "该商品已达到卡券使用上限",
"not_available_for_this_channel": "当前渠道不可使用",
"not_valid_for_this_order_type": "当前订单类型不适用"
},
"en": {
"not_meet_the_required_conditions": "Not meet the required conditions.",
"exceeds_the_maximum_deduction_limit": "Exceeds the maximum deduction limit.",
"usage_limit_reached": "Usage limit reached.",
"max_passes_per_item_reached": "Max passes per item reached.",
"not_available_for_this_channel": "Not available for this channel.",
"not_valid_for_this_order_type": "Not valid for this order type."
},
"zh-HK": {
"not_meet_the_required_conditions": "未達使用條件",
"exceeds_the_maximum_deduction_limit": "超出最大抵扣金額限制",
"usage_limit_reached": "已達使用次數上限",
"max_passes_per_item_reached": "該商品已達卡券使用上限",
"not_available_for_this_channel": "當前渠道不可使用",
"not_valid_for_this_order_type": "當前訂單類型不適用"
}
};
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
locales
});