tim@14: // ** I18N tim@14: tim@14: // Calendar DE language tim@14: // Author: Jack (tR), tim@14: // Encoding: any tim@14: // Distributed under the same terms as the calendar itself. tim@14: tim@14: // For translators: please use UTF-8 if possible. We strongly believe that tim@14: // Unicode is the answer to a real internationalized world. Also please tim@14: // include your contact information in the header, as can be seen above. tim@14: tim@14: // full day names tim@14: Calendar._DN = new Array tim@14: ("Sonntag", tim@14: "Montag", tim@14: "Dienstag", tim@14: "Mittwoch", tim@14: "Donnerstag", tim@14: "Freitag", tim@14: "Samstag", tim@14: "Sonntag"); tim@14: tim@14: // Please note that the following array of short day names (and the same goes tim@14: // for short month names, _SMN) isn't absolutely necessary. We give it here tim@14: // for exemplification on how one can customize the short day names, but if tim@14: // they are simply the first N letters of the full name you can simply say: tim@14: // tim@14: // Calendar._SDN_len = N; // short day name length tim@14: // Calendar._SMN_len = N; // short month name length tim@14: // tim@14: // If N = 3 then this is not needed either since we assume a value of 3 if not tim@14: // present, to be compatible with translation files that were written before tim@14: // this feature. tim@14: tim@14: // short day names tim@14: Calendar._SDN = new Array tim@14: ("So", tim@14: "Mo", tim@14: "Di", tim@14: "Mi", tim@14: "Do", tim@14: "Fr", tim@14: "Sa", tim@14: "So"); tim@14: tim@14: // First day of the week. "0" means display Sunday first, "1" means display tim@14: // Monday first, etc. tim@14: Calendar._FD = 0; tim@14: tim@14: tim@14: // full month names tim@14: Calendar._MN = new Array tim@14: ("Januar", tim@14: "Februar", tim@14: "M\u00e4rz", tim@14: "April", tim@14: "Mai", tim@14: "Juni", tim@14: "Juli", tim@14: "August", tim@14: "September", tim@14: "Oktober", tim@14: "November", tim@14: "Dezember"); tim@14: tim@14: // short month names tim@14: Calendar._SMN = new Array tim@14: ("Jan", tim@14: "Feb", tim@14: "M\u00e4r", tim@14: "Apr", tim@14: "May", tim@14: "Jun", tim@14: "Jul", tim@14: "Aug", tim@14: "Sep", tim@14: "Okt", tim@14: "Nov", tim@14: "Dez"); tim@14: tim@14: // tooltips tim@14: Calendar._TT = {}; tim@14: Calendar._TT["INFO"] = "\u00DCber dieses Kalendarmodul"; tim@14: tim@14: Calendar._TT["ABOUT"] = tim@14: "DHTML Date/Time Selector\n" + tim@14: "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this ;-) tim@14: "For latest version visit: http://www.dynarch.com/projects/calendar/\n" + tim@14: "Distributed under GNU LGPL. See http://gnu.org/licenses/lgpl.html for details." + tim@14: "\n\n" + tim@14: "Datum ausw\u00e4hlen:\n" + tim@14: "- Benutzen Sie die \xab, \xbb Buttons um das Jahr zu w\u00e4hlen\n" + tim@14: "- Benutzen Sie die " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " Buttons um den Monat zu w\u00e4hlen\n" + tim@14: "- F\u00fcr eine Schnellauswahl halten Sie die Maustaste \u00fcber diesen Buttons fest."; tim@14: Calendar._TT["ABOUT_TIME"] = "\n\n" + tim@14: "Zeit ausw\u00e4hlen:\n" + tim@14: "- Klicken Sie auf die Teile der Uhrzeit, um diese zu erh\u00F6hen\n" + tim@14: "- oder klicken Sie mit festgehaltener Shift-Taste um diese zu verringern\n" + tim@14: "- oder klicken und festhalten f\u00fcr Schnellauswahl."; tim@14: tim@14: Calendar._TT["TOGGLE"] = "Ersten Tag der Woche w\u00e4hlen"; tim@14: Calendar._TT["PREV_YEAR"] = "Voriges Jahr (Festhalten f\u00fcr Schnellauswahl)"; tim@14: Calendar._TT["PREV_MONTH"] = "Voriger Monat (Festhalten f\u00fcr Schnellauswahl)"; tim@14: Calendar._TT["GO_TODAY"] = "Heute ausw\u00e4hlen"; tim@14: Calendar._TT["NEXT_MONTH"] = "N\u00e4chst. Monat (Festhalten f\u00fcr Schnellauswahl)"; tim@14: Calendar._TT["NEXT_YEAR"] = "N\u00e4chst. Jahr (Festhalten f\u00fcr Schnellauswahl)"; tim@14: Calendar._TT["SEL_DATE"] = "Datum ausw\u00e4hlen"; tim@14: Calendar._TT["DRAG_TO_MOVE"] = "Zum Bewegen festhalten"; tim@14: Calendar._TT["PART_TODAY"] = " (Heute)"; tim@14: tim@14: // the following is to inform that "%s" is to be the first day of week tim@14: // %s will be replaced with the day name. tim@14: Calendar._TT["DAY_FIRST"] = "Woche beginnt mit %s "; tim@14: tim@14: // This may be locale-dependent. It specifies the week-end days, as an array tim@14: // of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1 tim@14: // means Monday, etc. tim@14: Calendar._TT["WEEKEND"] = "0,6"; tim@14: tim@14: Calendar._TT["CLOSE"] = "Schlie\u00dfen"; tim@14: Calendar._TT["TODAY"] = "Heute"; tim@14: Calendar._TT["TIME_PART"] = "(Shift-)Klick oder Festhalten und Ziehen um den Wert zu \u00e4ndern"; tim@14: tim@14: // date formats tim@14: Calendar._TT["DEF_DATE_FORMAT"] = "%d.%m.%Y"; tim@14: Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e"; tim@14: tim@14: Calendar._TT["WK"] = "wk"; tim@14: Calendar._TT["TIME"] = "Zeit:";