calendar-it.js 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. // ** I18N
  2. // Calendar EN language
  3. // Author: Mihai Bazon, <mihai_bazon@yahoo.com>
  4. // Translator: Fabio Di Bernardini, <altraqua@email.it>
  5. // Encoding: any
  6. // Distributed under the same terms as the calendar itself.
  7. // For translators: please use UTF-8 if possible. We strongly believe that
  8. // Unicode is the answer to a real internationalized world. Also please
  9. // include your contact information in the header, as can be seen above.
  10. // full day names
  11. Calendar._DN = new Array
  12. ("Domenica",
  13. "Lunedì",
  14. "Martedì",
  15. "Mercoledì",
  16. "Giovedì",
  17. "Venerdì",
  18. "Sabato",
  19. "Domenica");
  20. // Please note that the following array of short day names (and the same goes
  21. // for short month names, _SMN) isn't absolutely necessary. We give it here
  22. // for exemplification on how one can customize the short day names, but if
  23. // they are simply the first N letters of the full name you can simply say:
  24. //
  25. // Calendar._SDN_len = N; // short day name length
  26. // Calendar._SMN_len = N; // short month name length
  27. //
  28. // If N = 3 then this is not needed either since we assume a value of 3 if not
  29. // present, to be compatible with translation files that were written before
  30. // this feature.
  31. // short day names
  32. Calendar._SDN = new Array
  33. ("Dom",
  34. "Lun",
  35. "Mar",
  36. "Mer",
  37. "Gio",
  38. "Ven",
  39. "Sab",
  40. "Dom");
  41. // full month names
  42. Calendar._MN = new Array
  43. ("Gennaio",
  44. "Febbraio",
  45. "Marzo",
  46. "Aprile",
  47. "Maggio",
  48. "Giugno",
  49. "Luglio",
  50. "Augosto",
  51. "Settembre",
  52. "Ottobre",
  53. "Novembre",
  54. "Dicembre");
  55. // short month names
  56. Calendar._SMN = new Array
  57. ("Gen",
  58. "Feb",
  59. "Mar",
  60. "Apr",
  61. "Mag",
  62. "Giu",
  63. "Lug",
  64. "Ago",
  65. "Set",
  66. "Ott",
  67. "Nov",
  68. "Dic");
  69. // tooltips
  70. Calendar._TT = {};
  71. Calendar._TT["INFO"] = "Informazioni sul calendario";
  72. Calendar._TT["ABOUT"] =
  73. "DHTML Date/Time Selector\n" +
  74. "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
  75. "Per gli aggiornamenti: http://www.dynarch.com/projects/calendar/\n" +
  76. "Distribuito sotto licenza GNU LGPL. Vedi http://gnu.org/licenses/lgpl.html per i dettagli." +
  77. "\n\n" +
  78. "Selezione data:\n" +
  79. "- Usa \xab, \xbb per selezionare l'anno\n" +
  80. "- Usa " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " per i mesi\n" +
  81. "- Tieni premuto a lungo il mouse per accedere alle funzioni di selezione veloce.";
  82. Calendar._TT["ABOUT_TIME"] = "\n\n" +
  83. "Selezione orario:\n" +
  84. "- Clicca sul numero per incrementarlo\n" +
  85. "- o Shift+click per decrementarlo\n" +
  86. "- o click e sinistra o destra per variarlo.";
  87. Calendar._TT["PREV_YEAR"] = "Anno prec.(clicca a lungo per il menù)";
  88. Calendar._TT["PREV_MONTH"] = "Mese prec. (clicca a lungo per il menù)";
  89. Calendar._TT["GO_TODAY"] = "Oggi";
  90. Calendar._TT["NEXT_MONTH"] = "Pross. mese (clicca a lungo per il menù)";
  91. Calendar._TT["NEXT_YEAR"] = "Pross. anno (clicca a lungo per il menù)";
  92. Calendar._TT["SEL_DATE"] = "Seleziona data";
  93. Calendar._TT["DRAG_TO_MOVE"] = "Trascina per spostarlo";
  94. Calendar._TT["PART_TODAY"] = " (oggi)";
  95. // the following is to inform that "%s" is to be the first day of week
  96. // %s will be replaced with the day name.
  97. Calendar._TT["DAY_FIRST"] = "Mostra prima %s";
  98. // This may be locale-dependent. It specifies the week-end days, as an array
  99. // of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
  100. // means Monday, etc.
  101. Calendar._TT["WEEKEND"] = "0,6";
  102. Calendar._TT["CLOSE"] = "Chiudi";
  103. Calendar._TT["TODAY"] = "Oggi";
  104. Calendar._TT["TIME_PART"] = "(Shift-)Click o trascina per cambiare il valore";
  105. // date formats
  106. Calendar._TT["DEF_DATE_FORMAT"] = "%d-%m-%Y";
  107. Calendar._TT["TT_DATE_FORMAT"] = "%a:%b:%e";
  108. Calendar._TT["WK"] = "set";
  109. Calendar._TT["TIME"] = "Ora:";