en-US.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. var __defProp = Object.defineProperty;
  2. var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
  3. var __getOwnPropNames = Object.getOwnPropertyNames;
  4. var __hasOwnProp = Object.prototype.hasOwnProperty;
  5. var __export = (target, all) => {
  6. for (var name in all)
  7. __defProp(target, name, { get: all[name], enumerable: true });
  8. };
  9. var __copyProps = (to, from, except, desc) => {
  10. if (from && typeof from === "object" || typeof from === "function") {
  11. for (let key of __getOwnPropNames(from))
  12. if (!__hasOwnProp.call(to, key) && key !== except)
  13. __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
  14. }
  15. return to;
  16. };
  17. var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
  18. var stdin_exports = {};
  19. __export(stdin_exports, {
  20. default: () => stdin_default
  21. });
  22. module.exports = __toCommonJS(stdin_exports);
  23. var stdin_default = {
  24. name: "Name",
  25. tel: "Phone",
  26. save: "Save",
  27. clear: "Clear",
  28. cancel: "Cancel",
  29. confirm: "Confirm",
  30. delete: "Delete",
  31. loading: "Loading...",
  32. noCoupon: "No coupons",
  33. nameEmpty: "Please fill in the name",
  34. addContact: "Add contact",
  35. telInvalid: "Malformed phone number",
  36. vanCalendar: {
  37. end: "End",
  38. start: "Start",
  39. title: "Calendar",
  40. weekdays: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
  41. monthTitle: (year, month) => `${year}/${month}`,
  42. rangePrompt: (maxRange) => `Choose no more than ${maxRange} days`
  43. },
  44. vanCascader: {
  45. select: "Select"
  46. },
  47. vanPagination: {
  48. prev: "Previous",
  49. next: "Next"
  50. },
  51. vanPullRefresh: {
  52. pulling: "Pull to refresh...",
  53. loosing: "Loose to refresh..."
  54. },
  55. vanSubmitBar: {
  56. label: "Total:"
  57. },
  58. vanCoupon: {
  59. unlimited: "Unlimited",
  60. discount: (discount) => `${discount * 10}% off`,
  61. condition: (condition) => `At least ${condition}`
  62. },
  63. vanCouponCell: {
  64. title: "Coupon",
  65. count: (count) => `You have ${count} coupons`
  66. },
  67. vanCouponList: {
  68. exchange: "Exchange",
  69. close: "Close",
  70. enable: "Available",
  71. disabled: "Unavailable",
  72. placeholder: "Coupon code"
  73. },
  74. vanAddressEdit: {
  75. area: "Area",
  76. areaEmpty: "Please select a receiving area",
  77. addressEmpty: "Address can not be empty",
  78. addressDetail: "Address",
  79. defaultAddress: "Set as the default address"
  80. },
  81. vanAddressList: {
  82. add: "Add new address"
  83. }
  84. };