core-resource-app-test
Version:
App that contains assets and scripts for the core apps
22 lines (21 loc) • 1.01 kB
JavaScript
/* http://keith-wood.name/calendars.html
German localisation for calendars datepicker for jQuery.
Written by Milian Wolff (mail@milianw.de). */
(function($) {
$.calendars.picker.regional['de'] = {
renderer: $.calendars.picker.defaultRenderer,
prevText: '<zurück', prevStatus: 'letzten Monat zeigen',
prevJumpText: '<<', prevJumpStatus: '',
nextText: 'Vor>', nextStatus: 'nächsten Monat zeigen',
nextJumpText: '>>', nextJumpStatus: '',
currentText: 'heute', currentStatus: '',
todayText: 'heute', todayStatus: '',
clearText: 'löschen', clearStatus: 'aktuelles Datum löschen',
closeText: 'schließen', closeStatus: 'ohne Änderungen schließen',
yearStatus: 'anderes Jahr anzeigen', monthStatus: 'anderen Monat anzeige',
weekText: 'Wo', weekStatus: 'Woche des Monats',
dayStatus: 'Wähle D, M d', defaultStatus: 'Wähle ein Datum',
isRTL: false
};
$.calendars.picker.setDefaults($.calendars.picker.regional['de']);
})(jQuery);