diff options
author | Scott González <scott.gonzalez@gmail.com> | 2009-01-04 18:11:41 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2009-01-04 18:11:41 +0000 |
commit | 7fcf3b9bd87ef7960c4e2cf458dc70179b271fc3 (patch) | |
tree | 125ed28300b781f3e273da87d3bfcdd1261b4f6d /ui/i18n/ui.datepicker-de.js | |
parent | ba3ed927e4ab3ca81e1779ccece5e591165c640a (diff) | |
download | jquery-ui-7fcf3b9bd87ef7960c4e2cf458dc70179b271fc3.tar.gz jquery-ui-7fcf3b9bd87ef7960c4e2cf458dc70179b271fc3.zip |
Datepicker i18n: Fixed #3761: Removed the following values:
closeStatus
prevStatus
prevBigText
prevBigStatus
nextStatus
nextBigText
nextBigStatus
currentStatus
monthStatus
yearStatus
weekHeader
weekStatus
dayStatus
dateStatus
initStatus
Diffstat (limited to 'ui/i18n/ui.datepicker-de.js')
-rw-r--r-- | ui/i18n/ui.datepicker-de.js | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/ui/i18n/ui.datepicker-de.js b/ui/i18n/ui.datepicker-de.js index fd39fca41..f9299c815 100644 --- a/ui/i18n/ui.datepicker-de.js +++ b/ui/i18n/ui.datepicker-de.js @@ -2,23 +2,18 @@ /* Written by Milian Wolff (mail@milianw.de). */ jQuery(function($){ $.datepicker.regional['de'] = { - closeText: 'schließen', closeStatus: 'ohne Änderungen schließen', - prevText: '<zurück', prevStatus: 'letzten Monat zeigen', - prevBigText: '<<', prevBigStatus: '', - nextText: 'Vor>', nextStatus: 'nächsten Monat zeigen', - nextBigText: '>>', nextBigStatus: '', - currentText: 'heute', currentStatus: '', + closeText: 'schließen', + prevText: '<zurück', + nextText: 'Vor>', + currentText: 'heute', monthNames: ['Januar','Februar','März','April','Mai','Juni', 'Juli','August','September','Oktober','November','Dezember'], monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun', 'Jul','Aug','Sep','Okt','Nov','Dez'], - monthStatus: 'anderen Monat anzeigen', yearStatus: 'anderes Jahr anzeigen', - weekHeader: 'Wo', weekStatus: 'Woche des Monats', dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'], dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'], dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'], - dayStatus: 'Setze DD als ersten Wochentag', dateStatus: 'Wähle D, M d', dateFormat: 'dd.mm.yy', firstDay: 1, - initStatus: 'Wähle ein Datum', isRTL: false}; + isRTL: false}; $.datepicker.setDefaults($.datepicker.regional['de']); }); |