en-US.mjs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. var stdin_default = {
  2. name: "Name",
  3. tel: "Phone",
  4. save: "Save",
  5. confirm: "Confirm",
  6. cancel: "Cancel",
  7. delete: "Delete",
  8. loading: "Loading...",
  9. noCoupon: "No coupons",
  10. nameEmpty: "Please fill in the name",
  11. addContact: "Add contact",
  12. telInvalid: "Malformed phone number",
  13. vanCalendar: {
  14. end: "End",
  15. start: "Start",
  16. title: "Calendar",
  17. weekdays: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
  18. monthTitle: (year, month) => `${year}/${month}`,
  19. rangePrompt: (maxRange) => `Choose no more than ${maxRange} days`
  20. },
  21. vanCascader: {
  22. select: "Select"
  23. },
  24. vanPagination: {
  25. prev: "Previous",
  26. next: "Next"
  27. },
  28. vanPullRefresh: {
  29. pulling: "Pull to refresh...",
  30. loosing: "Loose to refresh..."
  31. },
  32. vanSubmitBar: {
  33. label: "Total:"
  34. },
  35. vanCoupon: {
  36. unlimited: "Unlimited",
  37. discount: (discount) => `${discount * 10}% off`,
  38. condition: (condition) => `At least ${condition}`
  39. },
  40. vanCouponCell: {
  41. title: "Coupon",
  42. count: (count) => `You have ${count} coupons`
  43. },
  44. vanCouponList: {
  45. exchange: "Exchange",
  46. close: "Close",
  47. enable: "Available",
  48. disabled: "Unavailable",
  49. placeholder: "Coupon code"
  50. },
  51. vanAddressEdit: {
  52. area: "Area",
  53. postal: "Postal",
  54. areaEmpty: "Please select a receiving area",
  55. addressEmpty: "Address can not be empty",
  56. postalEmpty: "Wrong postal code",
  57. addressDetail: "Address",
  58. defaultAddress: "Set as the default address"
  59. },
  60. vanAddressList: {
  61. add: "Add new address"
  62. }
  63. };
  64. export {
  65. stdin_default as default
  66. };