]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/blog/jscalendar/lang/calendar-de.js
Use «, » and ‹, ›
[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 // full month names
46 Calendar._MN = new Array
47 ("Januar",
48  "Februar",
49  "März",
50  "April",
51  "Mai",
52  "Juni",
53  "Juli",
54  "August",
55  "September",
56  "Oktober",
57  "November",
58  "Dezember");
59
60 // short month names
61 Calendar._SMN = new Array
62 ("Jan",
63  "Feb",
64  "Mär",
65  "Apr",
66  "May",
67  "Jun",
68  "Jul",
69  "Aug",
70  "Sep",
71  "Okt",
72  "Nov",
73  "Dez");
74
75 // tooltips
76 Calendar._TT = {};
77 Calendar._TT["INFO"] = "Über dieses Kalendarmodul";
78
79 Calendar._TT["ABOUT"] =
80 "DHTML Date/Time Selector\n" +
81 "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this ;-)
82 "For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
83 "Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
84 "\n\n" +
85 "Datum auswählen:\n" +
86 "- Benutzen Sie die «, » Buttons um das Jahr zu wählen\n" +
87 "- Benutzen Sie die ‹, › Buttons um den Monat zu wählen\n" +
88 "- Für eine Schnellauswahl halten Sie die Maustaste über diesen Buttons fest.";
89 Calendar._TT["ABOUT_TIME"] = "\n\n" +
90 "Zeit auswählen:\n" +
91 "- Klicken Sie auf die Teile der Uhrzeit, um diese zu erhöhen\n" +
92 "- oder klicken Sie mit festgehaltener Shift-Taste um diese zu verringern\n" +
93 "- oder klicken und festhalten für Schnellauswahl.";
94
95 Calendar._TT["TOGGLE"] = "Ersten Tag der Woche wählen";
96 Calendar._TT["PREV_YEAR"] = "Voriges Jahr (Festhalten für Schnellauswahl)";
97 Calendar._TT["PREV_MONTH"] = "Voriger Monat (Festhalten für Schnellauswahl)";
98 Calendar._TT["GO_TODAY"] = "Heute auswählen";
99 Calendar._TT["NEXT_MONTH"] = "Nächst. Monat (Festhalten für Schnellauswahl)";
100 Calendar._TT["NEXT_YEAR"] = "Nächst. Jahr (Festhalten für Schnellauswahl)";
101 Calendar._TT["SEL_DATE"] = "Datum auswählen";
102 Calendar._TT["DRAG_TO_MOVE"] = "Zum Bewegen festhalten";
103 Calendar._TT["PART_TODAY"] = " (Heute)";
104
105 // the following is to inform that "%s" is to be the first day of week
106 // %s will be replaced with the day name.
107 Calendar._TT["DAY_FIRST"] = "Woche beginnt mit %s ";
108
109 // This may be locale-dependent.  It specifies the week-end days, as an array
110 // of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
111 // means Monday, etc.
112 Calendar._TT["WEEKEND"] = "0,6";
113
114 Calendar._TT["CLOSE"] = "Schließen";
115 Calendar._TT["TODAY"] = "Heute";
116 Calendar._TT["TIME_PART"] = "(Shift-)Klick oder Festhalten und Ziehen um den Wert zu ändern";
117
118 // date formats
119 Calendar._TT["DEF_DATE_FORMAT"] = "%d.%m.%Y";
120 Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
121
122 Calendar._TT["WK"] = "wk";
123 Calendar._TT["TIME"] = "Zeit:";