it-IT.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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: "Nome",
  25. tel: "Telefono",
  26. save: "Salva",
  27. confirm: "Conferma",
  28. cancel: "Annulla",
  29. delete: "Elimina",
  30. loading: "Caricamento in corso...",
  31. noCoupon: "Nessun coupon",
  32. nameEmpty: "Inserisci il nome",
  33. addContact: "Aggiungi contatto",
  34. telInvalid: "Numero di telefono errato",
  35. vanCalendar: {
  36. end: "Fine",
  37. start: "Inizio",
  38. title: "Calendario",
  39. weekdays: [
  40. "domenica",
  41. "Lunedi",
  42. "Marted\xEC",
  43. "mercoled\xEC",
  44. "gioved\xEC",
  45. "venerd\xEC",
  46. "Sabato"
  47. ],
  48. monthTitle: (year, month) => `${year}/${month}`,
  49. rangePrompt: (maxRange) => `Scegli non pi\xF9 di ${maxRange} giorni`
  50. },
  51. vanCascader: {
  52. select: "Seleziona"
  53. },
  54. vanPagination: {
  55. prev: "Precedente",
  56. next: "Avanti"
  57. },
  58. vanPullRefresh: {
  59. pulling: "Tiri per aggiornare...",
  60. loosing: "Largo per rinfrescare..."
  61. },
  62. vanSubmitBar: {
  63. label: "Totale:"
  64. },
  65. vanCoupon: {
  66. unlimited: "Illimitato",
  67. discount: (discount) => `${discount * 10}% di sconto`,
  68. condition: (condition) => `Almeno ${condition}`
  69. },
  70. vanCouponCell: {
  71. title: "Buono",
  72. count: (count) => `Hai ${count} coupon`
  73. },
  74. vanCouponList: {
  75. exchange: "Scambio",
  76. close: "Chiudi",
  77. enable: "Disponibile",
  78. disabled: "Non disponibile",
  79. placeholder: "Codice coupon"
  80. },
  81. vanAddressEdit: {
  82. area: "Area",
  83. postal: "Postale",
  84. areaEmpty: "Seleziona un'area di ricezione",
  85. addressEmpty: "L'indirizzo non pu\xF2 essere vuoto",
  86. postalEmpty: "Codice postale errato",
  87. addressDetail: "Indirizzo",
  88. defaultAddress: "Imposta come indirizzo predefinito"
  89. },
  90. vanAddressList: {
  91. add: "Aggiungi nuovo indirizzo"
  92. }
  93. };