]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/blog/jscalendar/lang/calendar-es.js
jscalendar; add Calendar._FD
[SourceForge/phpwiki.git] / themes / blog / jscalendar / lang / calendar-es.js
1 // ** I18N
2
3 // Calendar ES language
4 // Author: Servilio Afre Puentes <servilios@yahoo.com>
5 // Distributed under the same terms as the calendar itself.
6
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
11 // full day names
12 Calendar._DN = new Array
13 ("Domingo",
14  "Lunes",
15  "Martes",
16  "Miércoles",
17  "Jueves",
18  "Viernes",
19  "Sábado",
20  "Domingo");
21
22 // Please note that the following array of short day names (and the same goes
23 // for short month names, _SMN) isn't absolutely necessary.  We give it here
24 // for exemplification on how one can customize the short day names, but if
25 // they are simply the first N letters of the full name you can simply say:
26 //
27 //   Calendar._SDN_len = N; // short day name length
28 //   Calendar._SMN_len = N; // short month name length
29 //
30 // If N = 3 then this is not needed either since we assume a value of 3 if not
31 // present, to be compatible with translation files that were written before
32 // this feature.
33
34 // short day names
35 Calendar._SDN = new Array
36 ("Dom",
37  "Lun",
38  "Mar",
39  "Mié",
40  "Jue",
41  "Vie",
42  "Sáb",
43  "Dom");
44
45 // First day of the week. "0" means display Sunday first, "1" means display
46 // Monday first, etc.
47 Calendar._FD = 1;
48
49 // full month names
50 Calendar._MN = new Array
51 ("Enero",
52  "Febrero",
53  "Marzo",
54  "Abril",
55  "Mayo",
56  "Junio",
57  "Julio",
58  "Agosto",
59  "Septiembre",
60  "Octubre",
61  "Noviembre",
62  "Diciembre");
63
64 // short month names
65 Calendar._SMN = new Array
66 ("Ene",
67  "Feb",
68  "Mar",
69  "Abr",
70  "May",
71  "Jun",
72  "Jul",
73  "Ago",
74  "Sep",
75  "Oct",
76  "Nov",
77  "Dic");
78
79 // tooltips
80 Calendar._TT = {};
81 Calendar._TT["INFO"] = "Acerca del calendario";
82
83 Calendar._TT["ABOUT"] =
84 "Selector DHTML de Fecha/Hora\n" +
85 "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this ;-)
86 "Para conseguir la última versión visite: http://www.dynarch.com/projects/calendar/\n" +
87 "Distribuido bajo licencia GNU LGPL. Visite http://gnu.org/licenses/lgpl.html para más detalles." +
88 "\n\n" +
89 "Selección de fecha:\n" +
90 "- Use los botones «, » para seleccionar el año\n" +
91 "- Use los botones ‹, › para seleccionar el mes\n" +
92 "- Mantenga pulsado el ratón en cualquiera de estos botones para una selección rápida.";
93 Calendar._TT["ABOUT_TIME"] = "\n\n" +
94 "Selección de hora:\n" +
95 "- Pulse en cualquiera de las partes de la hora para incrementarla\n" +
96 "- o pulse las mayúsculas mientras hace clic para decrementarla\n" +
97 "- o haga clic y arrastre el ratón para una selección más rápida.";
98
99 Calendar._TT["PREV_YEAR"] = "Año anterior (mantener para menú)";
100 Calendar._TT["PREV_MONTH"] = "Mes anterior (mantener para menú)";
101 Calendar._TT["GO_TODAY"] = "Ir a hoy";
102 Calendar._TT["NEXT_MONTH"] = "Mes siguiente (mantener para menú)";
103 Calendar._TT["NEXT_YEAR"] = "Año siguiente (mantener para menú)";
104 Calendar._TT["SEL_DATE"] = "Seleccionar fecha";
105 Calendar._TT["DRAG_TO_MOVE"] = "Arrastrar para mover";
106 Calendar._TT["PART_TODAY"] = " (hoy)";
107
108 // the following is to inform that "%s" is to be the first day of week
109 // %s will be replaced with the day name.
110 Calendar._TT["DAY_FIRST"] = "Hacer %s primer día de la semana";
111
112 // This may be locale-dependent.  It specifies the week-end days, as an array
113 // of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
114 // means Monday, etc.
115 Calendar._TT["WEEKEND"] = "0,6";
116
117 Calendar._TT["CLOSE"] = "Cerrar";
118 Calendar._TT["TODAY"] = "Hoy";
119 Calendar._TT["TIME_PART"] = "(Mayúscula-)Clic o arrastre para cambiar valor";
120
121 // date formats
122 Calendar._TT["DEF_DATE_FORMAT"] = "%d/%m/%Y";
123 Calendar._TT["TT_DATE_FORMAT"] = "%A, %e de %B de %Y";
124
125 Calendar._TT["WK"] = "sem";
126 Calendar._TT["TIME"] = "Hora:";