en-US.js 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. confirm: "Confirm",
  28. cancel: "Cancel",
  29. delete: "Delete",
  30. loading: "Loading...",
  31. noCoupon: "No coupons",
  32. nameEmpty: "Please fill in the name",
  33. addContact: "Add contact",
  34. telInvalid: "Malformed phone number",
  35. vanCalendar: {
  36. end: "End",
  37. start: "Start",
  38. title: "Calendar",
  39. weekdays: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
  40. monthTitle: (year, month) => `${year}/${month}`,
  41. rangePrompt: (maxRange) => `Choose no more than ${maxRange} days`
  42. },
  43. vanCascader: {
  44. select: "Select"
  45. },
  46. vanPagination: {
  47. prev: "Previous",
  48. next: "Next"
  49. },
  50. vanPullRefresh: {
  51. pulling: "Pull to refresh...",
  52. loosing: "Loose to refresh..."
  53. },
  54. vanSubmitBar: {
  55. label: "Total:"
  56. },
  57. vanCoupon: {
  58. unlimited: "Unlimited",
  59. discount: (discount) => `${discount * 10}% off`,
  60. condition: (condition) => `At least ${condition}`
  61. },
  62. vanCouponCell: {
  63. title: "Coupon",
  64. count: (count) => `You have ${count} coupons`
  65. },
  66. vanCouponList: {
  67. exchange: "Exchange",
  68. close: "Close",
  69. enable: "Available",
  70. disabled: "Unavailable",
  71. placeholder: "Coupon code"
  72. },
  73. vanAddressEdit: {
  74. area: "Area",
  75. postal: "Postal",
  76. areaEmpty: "Please select a receiving area",
  77. addressEmpty: "Address can not be empty",
  78. postalEmpty: "Wrong postal code",
  79. addressDetail: "Address",
  80. defaultAddress: "Set as the default address"
  81. },
  82. vanAddressList: {
  83. add: "Add new address"
  84. }
  85. };