| | 101 | Calendar._TT["PREV_YEAR"] = "Anno prec.(clicca a lungo per il men√π)"; |
|---|
| | 102 | Calendar._TT["PREV_MONTH"] = "Mese prec. (clicca a lungo per il men√π)"; |
|---|
| | 103 | Calendar._TT["GO_TODAY"] = "Oggi"; |
|---|
| | 104 | Calendar._TT["NEXT_MONTH"] = "Pross. mese (clicca a lungo per il men√π)"; |
|---|
| | 105 | Calendar._TT["NEXT_YEAR"] = "Pross. anno (clicca a lungo per il men√π)"; |
|---|
| | 106 | Calendar._TT["SEL_DATE"] = "Seleziona data"; |
|---|
| | 107 | Calendar._TT["DRAG_TO_MOVE"] = "Trascina per spostarlo"; |
|---|
| | 108 | Calendar._TT["PART_TODAY"] = " (oggi)"; |
|---|
| | 109 | |
|---|
| | 110 | // the following is to inform that "%s" is to be the first day of week |
|---|
| | 111 | // %s will be replaced with the day name. |
|---|
| | 112 | Calendar._TT["DAY_FIRST"] = "Mostra prima %s"; |
|---|
| | 113 | |
|---|
| | 114 | // This may be locale-dependent. It specifies the week-end days, as an array |
|---|
| | 115 | // of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1 |
|---|
| | 116 | // means Monday, etc. |
|---|
| | 117 | Calendar._TT["WEEKEND"] = "0"; |
|---|
| | 118 | |
|---|
| | 119 | Calendar._TT["CLOSE"] = "Chiudi"; |
|---|
| | 120 | Calendar._TT["TODAY"] = "Oggi"; |
|---|
| | 121 | Calendar._TT["TIME_PART"] = "(Shift-)Click o trascina per cambiare il valore"; |
|---|
| | 122 | |
|---|
| | 123 | // date formats |
|---|
| | 124 | Calendar._TT["DEF_DATE_FORMAT"] = "%d-%m-%Y"; |
|---|
| | 125 | Calendar._TT["TT_DATE_FORMAT"] = "%a:%b:%e"; |
|---|
| | 126 | |
|---|
| | 127 | Calendar._TT["WK"] = "set"; |
|---|
| | 128 | Calendar._TT["TIME"] = "Ora:"; |
|---|
| | 129 | |
|---|
| | 130 | // ** I18N |
|---|
| | 131 | |
|---|
| | 132 | // Calendar EN language |
|---|
| | 133 | // Author: Mihai Bazon, <mihai_bazon@yahoo.com> |
|---|
| | 134 | // Translator: Fabio Di Bernardini, <altraqua@email.it> |
|---|
| | 135 | // Encoding: any |
|---|
| | 136 | // Distributed under the same terms as the calendar itself. |
|---|
| | 137 | |
|---|
| | 138 | // For translators: please use UTF-8 if possible. We strongly believe that |
|---|
| | 139 | // Unicode is the answer to a real internationalized world. Also please |
|---|
| | 140 | // include your contact information in the header, as can be seen above. |
|---|
| | 141 | |
|---|
| | 142 | // full day names |
|---|
| | 143 | Calendar._DN = new Array |
|---|
| | 144 | ("Domenica", |
|---|
| | 145 | "Lunedì", |
|---|
| | 146 | "Martedì", |
|---|
| | 147 | "Mercoledì", |
|---|
| | 148 | "Giovedì", |
|---|
| | 149 | "Venerdì", |
|---|
| | 150 | "Sabato", |
|---|
| | 151 | "Domenica"); |
|---|
| | 152 | |
|---|
| | 153 | // Please note that the following array of short day names (and the same goes |
|---|
| | 154 | // for short month names, _SMN) isn't absolutely necessary. We give it here |
|---|
| | 155 | // for exemplification on how one can customize the short day names, but if |
|---|
| | 156 | // they are simply the first N letters of the full name you can simply say: |
|---|
| | 157 | // |
|---|
| | 158 | // Calendar._SDN_len = N; // short day name length |
|---|
| | 159 | // Calendar._SMN_len = N; // short month name length |
|---|
| | 160 | // |
|---|
| | 161 | // If N = 3 then this is not needed either since we assume a value of 3 if not |
|---|
| | 162 | // present, to be compatible with translation files that were written before |
|---|
| | 163 | // this feature. |
|---|
| | 164 | |
|---|
| | 165 | // short day names |
|---|
| | 166 | Calendar._SDN = new Array |
|---|
| | 167 | ("Dom", |
|---|
| | 168 | "Lun", |
|---|
| | 169 | "Mar", |
|---|
| | 170 | "Mer", |
|---|
| | 171 | "Gio", |
|---|
| | 172 | "Ven", |
|---|
| | 173 | "Sab", |
|---|
| | 174 | "Dom"); |
|---|
| | 175 | |
|---|
| | 176 | // full month names |
|---|
| | 177 | Calendar._MN = new Array |
|---|
| | 178 | ("Gennaio", |
|---|
| | 179 | "Febbraio", |
|---|
| | 180 | "Marzo", |
|---|
| | 181 | "Aprile", |
|---|
| | 182 | "Maggio", |
|---|
| | 183 | "Giugno", |
|---|
| | 184 | "Luglio", |
|---|
| | 185 | "Augosto", |
|---|
| | 186 | "Settembre", |
|---|
| | 187 | "Ottobre", |
|---|
| | 188 | "Novembre", |
|---|
| | 189 | "Dicembre"); |
|---|
| | 190 | |
|---|
| | 191 | // short month names |
|---|
| | 192 | Calendar._SMN = new Array |
|---|
| | 193 | ("Gen", |
|---|
| | 194 | "Feb", |
|---|
| | 195 | "Mar", |
|---|
| | 196 | "Apr", |
|---|
| | 197 | "Mag", |
|---|
| | 198 | "Giu", |
|---|
| | 199 | "Lug", |
|---|
| | 200 | "Ago", |
|---|
| | 201 | "Set", |
|---|
| | 202 | "Ott", |
|---|
| | 203 | "Nov", |
|---|
| | 204 | "Dic"); |
|---|
| | 205 | |
|---|
| | 206 | // tooltips |
|---|
| | 207 | Calendar._TT = {}; |
|---|
| | 208 | Calendar._TT["INFO"] = "Informazioni sul calendario"; |
|---|
| | 209 | |
|---|
| | 210 | Calendar._TT["ABOUT"] = |
|---|
| | 211 | "DHTML Date/Time Selector\n" + |
|---|
| | 212 | "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-) |
|---|
| | 213 | "Per gli aggiornamenti: http://www.dynarch.com/projects/calendar/\n" + |
|---|
| | 214 | "Distribuito sotto licenza GNU LGPL. Vedi http://gnu.org/licenses/lgpl.html per i dettagli." + |
|---|
| | 215 | "\n\n" + |
|---|
| | 216 | "Selezione data:\n" + |
|---|
| | 217 | "- Usa \xab, \xbb per selezionare l'anno\n" + |
|---|
| | 218 | "- Usa " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " per i mesi\n" + |
|---|
| | 219 | "- Tieni premuto a lungo il mouse per accedere alle funzioni di selezione veloce."; |
|---|
| | 220 | Calendar._TT["ABOUT_TIME"] = "\n\n" + |
|---|
| | 221 | "Selezione orario:\n" + |
|---|
| | 222 | "- Clicca sul numero per incrementarlo\n" + |
|---|
| | 223 | "- o Shift+click per decrementarlo\n" + |
|---|
| | 224 | "- o click e sinistra o destra per variarlo."; |
|---|
| | 225 | |
|---|