]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/blog/jscalendar/lang/calendar-de.js
jscalendar; add Calendar._FD
[SourceForge/phpwiki.git] / themes / blog / jscalendar / lang / calendar-de.js
1 // ** I18N
2
3 // Calendar DE language
4 // Author: Jack (tR), <jack@jtr.de>
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 ("Sonntag",
14  "Montag",
15  "Dienstag",
16  "Mittwoch",
17  "Donnerstag",
18  "Freitag",
19  "Samstag",
20  "Sonntag");
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 ("So",
37  "Mo",
38  "Di",
39  "Mi",
40  "Do",
41  "Fr",
42  "Sa",
43  "So");
44
45 // First day of the week. "0" means display Sunday first, "1" means display
46 // Monday first, etc.
47 Calendar._FD = 0;
48
49 // full month names
50 Calendar._MN = new Array
51 ("Januar",
52  "Februar",
53  "März",
54  "April",
55  "Mai",
56  "Juni",
57  "Juli",
58  "August",
59  "September",
60  "Oktober",
61  "November",
62  "Dezember");
63
64 // short month names
65 Calendar._SMN = new Array
66 ("Jan",
67  "Feb",
68  "Mär",
69  "Apr",
70  "May",
71  "Jun",
72  "Jul",
73  "Aug",
74  "Sep",
75  "Okt",
76  "Nov",
77  "Dez");
78
79 // tooltips
80 Calendar._TT = {};
81 Calendar._TT["INFO"] = "Über dieses Kalendarmodul";
82
83 Calendar._TT["ABOUT"] =
84 "DHTML Date/Time Selector\n" +
85 "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this ;-)
86 "For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
87 "Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
88 "\n\n" +
89 "Datum auswählen:\n" +
90 "- Benutzen Sie die «, » Buttons um das Jahr zu wählen\n" +
91 "- Benutzen Sie die ‹, › Buttons um den Monat zu wählen\n" +
92 "- Für eine Schnellauswahl halten Sie die Maustaste über diesen Buttons fest.";
93 Calendar._TT["ABOUT_TIME"] = "\n\n" +
94 "Zeit auswählen:\n" +
95 "- Klicken Sie auf die Teile der Uhrzeit, um diese zu erhöhen\n" +
96 "- oder klicken Sie mit festgehaltener Shift-Taste um diese zu verringern\n" +
97 "- oder klicken und festhalten für Schnellauswahl.";
98
99 Calendar._TT["PREV_YEAR"] = "Voriges Jahr (Festhalten für Schnellauswahl)";
100 Calendar._TT["PREV_MONTH"] = "Voriger Monat (Festhalten für Schnellauswahl)";
101 Calendar._TT["GO_TODAY"] = "Heute auswählen";
102 Calendar._TT["NEXT_MONTH"] = "Nächst. Monat (Festhalten für Schnellauswahl)";
103 Calendar._TT["NEXT_YEAR"] = "Nächst. Jahr (Festhalten für Schnellauswahl)";
104 Calendar._TT["SEL_DATE"] = "Datum auswählen";
105 Calendar._TT["DRAG_TO_MOVE"] = "Zum Bewegen festhalten";
106 Calendar._TT["PART_TODAY"] = " (Heute)";
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"] = "Woche beginnt mit %s ";
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"] = "Schließen";
118 Calendar._TT["TODAY"] = "Heute";
119 Calendar._TT["TIME_PART"] = "(Shift-)Klick oder Festhalten und Ziehen um den Wert zu ändern";
120
121 // date formats
122 Calendar._TT["DEF_DATE_FORMAT"] = "%d.%m.%Y";
123 Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
124
125 Calendar._TT["WK"] = "wk";
126 Calendar._TT["TIME"] = "Zeit:";