en-US.mjs 1.5 KB

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