en-US.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. export default {
  2. name: 'Name',
  3. tel: 'Phone',
  4. save: 'Save',
  5. confirm: 'Confirm',
  6. cancel: 'Cancel',
  7. delete: 'Delete',
  8. complete: 'Complete',
  9. loading: 'Loading...',
  10. telEmpty: 'Please fill in the tel',
  11. nameEmpty: 'Please fill in the name',
  12. nameInvalid: 'Malformed name',
  13. confirmDelete: 'Are you sure you want to delete?',
  14. telInvalid: 'Malformed phone number',
  15. vanCalendar: {
  16. end: 'End',
  17. start: 'Start',
  18. title: 'Calendar',
  19. startEnd: 'Start/End',
  20. weekdays: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
  21. monthTitle: function monthTitle(year, month) {
  22. return year + "/" + month;
  23. },
  24. rangePrompt: function rangePrompt(maxRange) {
  25. return "Choose no more than " + maxRange + " days";
  26. }
  27. },
  28. vanCascader: {
  29. select: 'Select'
  30. },
  31. vanContactCard: {
  32. addText: 'Add contact info'
  33. },
  34. vanContactList: {
  35. addText: 'Add new contact'
  36. },
  37. vanPagination: {
  38. prev: 'Previous',
  39. next: 'Next'
  40. },
  41. vanPullRefresh: {
  42. pulling: 'Pull to refresh...',
  43. loosing: 'Loose to refresh...'
  44. },
  45. vanSubmitBar: {
  46. label: 'Total:'
  47. },
  48. vanCoupon: {
  49. unlimited: 'Unlimited',
  50. discount: function discount(_discount) {
  51. return _discount * 10 + "% off";
  52. },
  53. condition: function condition(_condition) {
  54. return "At least " + _condition;
  55. }
  56. },
  57. vanCouponCell: {
  58. title: 'Coupon',
  59. tips: 'No coupons',
  60. count: function count(_count) {
  61. return "You have " + _count + " coupons";
  62. }
  63. },
  64. vanCouponList: {
  65. empty: 'No coupons',
  66. exchange: 'Exchange',
  67. close: 'Close',
  68. enable: 'Available',
  69. disabled: 'Unavailable',
  70. placeholder: 'Coupon code'
  71. },
  72. vanAddressEdit: {
  73. area: 'Area',
  74. postal: 'Postal',
  75. areaEmpty: 'Please select a receiving area',
  76. addressEmpty: 'Address can not be empty',
  77. postalEmpty: 'Wrong postal code',
  78. defaultAddress: 'Set as the default address',
  79. telPlaceholder: 'Phone',
  80. namePlaceholder: 'Name',
  81. areaPlaceholder: 'Area'
  82. },
  83. vanAddressEditDetail: {
  84. label: 'Address',
  85. placeholder: 'Address'
  86. },
  87. vanAddressList: {
  88. add: 'Add new address'
  89. }
  90. };