| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 | var stdin_default = {  name: "Name",  tel: "Phone",  save: "Save",  confirm: "Confirm",  cancel: "Cancel",  delete: "Delete",  loading: "Loading...",  noCoupon: "No coupons",  nameEmpty: "Please fill in the name",  addContact: "Add contact",  telInvalid: "Malformed phone number",  vanCalendar: {    end: "End",    start: "Start",    title: "Calendar",    weekdays: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],    monthTitle: (year, month) => `${year}/${month}`,    rangePrompt: (maxRange) => `Choose no more than ${maxRange} days`  },  vanCascader: {    select: "Select"  },  vanPagination: {    prev: "Previous",    next: "Next"  },  vanPullRefresh: {    pulling: "Pull to refresh...",    loosing: "Loose to refresh..."  },  vanSubmitBar: {    label: "Total:"  },  vanCoupon: {    unlimited: "Unlimited",    discount: (discount) => `${discount * 10}% off`,    condition: (condition) => `At least ${condition}`  },  vanCouponCell: {    title: "Coupon",    count: (count) => `You have ${count} coupons`  },  vanCouponList: {    exchange: "Exchange",    close: "Close",    enable: "Available",    disabled: "Unavailable",    placeholder: "Coupon code"  },  vanAddressEdit: {    area: "Area",    postal: "Postal",    areaEmpty: "Please select a receiving area",    addressEmpty: "Address can not be empty",    postalEmpty: "Wrong postal code",    addressDetail: "Address",    defaultAddress: "Set as the default address"  },  vanAddressList: {    add: "Add new address"  }};export {  stdin_default as default};
 |