Project

General

Profile

Patch #6093 » calendar-it.js

Diego Pierotto, 2010-08-09 18:26

 
1
// ** I18N
2

    
3
// Calendar EN language
4
// Author: Mihai Bazon, <mihai_bazon@yahoo.com>
5
// Encoding: any
6
// Distributed under the same terms as the calendar itself.
7

    
8
// For translators: please use UTF-8 if possible.  We strongly believe that
9
// Unicode is the answer to a real internationalized world.  Also please
10
// include your contact information in the header, as can be seen above.
11

    
12
// Italian translation
13
// by Diego Pierotto (ita.translations@tiscali.it)
14

    
15
// full day names
16
Calendar._DN = new Array
17
("Domenica",
18
 "Lunedì",
19
 "Martedì",
20
 "Mercoledì",
21
 "Giovedì",
22
 "Venerdì",
23
 "Sabato",
24
 "Domenica");
25

    
26
// Please note that the following array of short day names (and the same goes
27
// for short month names, _SMN) isn't absolutely necessary.  We give it here
28
// for exemplification on how one can customize the short day names, but if
29
// they are simply the first N letters of the full name you can simply say:
30
//
31
//   Calendar._SDN_len = N; // short day name length
32
//   Calendar._SMN_len = N; // short month name length
33
//
34
// If N = 3 then this is not needed either since we assume a value of 3 if not
35
// present, to be compatible with translation files that were written before
36
// this feature.
37

    
38
// short day names
39
Calendar._SDN = new Array
40
("Dom",
41
 "Lun",
42
 "Mar",
43
 "Mer",
44
 "Gio",
45
 "Ven",
46
 "Sab",
47
 "Dom");
48

    
49
// First day of the week. "0" means display Sunday first, "1" means display
50
// Monday first, etc.
51
Calendar._FD = 1;
52

    
53
// full month names
54
Calendar._MN = new Array
55
("Gennaio",
56
 "Febbraio",
57
 "Marzo",
58
 "Aprile",
59
 "Maggio",
60
 "Giugno",
61
 "Luglio",
62
 "Agosto",
63
 "Settembre",
64
 "Ottobre",
65
 "Novembre",
66
 "Dicembre");
67

    
68
// short month names
69
Calendar._SMN = new Array
70
("Gen",
71
 "Feb",
72
 "Mar",
73
 "Apr",
74
 "Mag",
75
 "Giu",
76
 "Lug",
77
 "Ago",
78
 "Set",
79
 "Ott",
80
 "Nov",
81
 "Dic");
82

    
83
// tooltips
84
Calendar._TT = {};
85
Calendar._TT["INFO"] = "Informazioni sul calendario";
86

    
87
Calendar._TT["ABOUT"] =
88
"DHTML Date/Time Selector\n" +
89
"(c) dynarch.com 2002-2005 / Autore: Mihai Bazon\n" + // don't translate this this ;-)
90
"Per l'ultima versione visita: http://www.dynarch.com/projects/calendar/\n" +
91
"Distribuito sotto i termini GNU LGPL.  Vedi http://gnu.org/licenses/lgpl.html per maggiori dettagli." +
92
"\n\n" +
93
"Selezione data:\n" +
94
"- Usa i tasti \xab, \xbb per selezionare l'anno\n" +
95
"- Usa i tasti " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " per selezionare il mese\n" +
96
"- Tieni premuto il tasto del mouse su uno qualunque dei tasti sopra per una selezione più veloce.";
97
Calendar._TT["ABOUT_TIME"] = "\n\n" +
98
"Selezione ora:\n" +
99
"- Fai click su una delle ore per incrementarla\n" +
100
"- oppure Shift-click per diminuirla\n" +
101
"- oppure click e trascina per una selezione più veloce.";
102

    
103
Calendar._TT["PREV_YEAR"] = "Anno prec. (tieni premuto per menu)";
104
Calendar._TT["PREV_MONTH"] = "Mese prec. (tieni premuto per menu)";
105
Calendar._TT["GO_TODAY"] = "Oggi";
106
Calendar._TT["NEXT_MONTH"] = "Mese succ. (tieni premuto per menu)";
107
Calendar._TT["NEXT_YEAR"] = "Anno succ. (tieni premuto per menu)";
108
Calendar._TT["SEL_DATE"] = "Seleziona data";
109
Calendar._TT["DRAG_TO_MOVE"] = "Trascina per spostare";
110
Calendar._TT["PART_TODAY"] = " (oggi)";
111

    
112
// the following is to inform that "%s" is to be the first day of week
113
// %s will be replaced with the day name.
114
Calendar._TT["DAY_FIRST"] = "Mostra %s per primo";
115

    
116
// This may be locale-dependent.  It specifies the week-end days, as an array
117
// of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
118
// means Monday, etc.
119
Calendar._TT["WEEKEND"] = "0,6";
120

    
121
Calendar._TT["CLOSE"] = "Chiudi";
122
Calendar._TT["TODAY"] = "Oggi";
123
Calendar._TT["TIME_PART"] = "(Shift-)Click o trascina per modificare";
124

    
125
// date formats
126
Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
127
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
128

    
129
Calendar._TT["WK"] = "sett";
130
Calendar._TT["TIME"] = "Ora:";
(2-2/3)