source: trunk/template-common/lib/ui/i18n/ui.datepicker-de.js @ 4918

Last change on this file since 4918 was 4918, checked in by nikrou, 14 years ago

Feature 1442 : update jquery

  • update jquery to 1.4.1
  • update jquery ui to 1.7.2
  • Property svn:eol-style set to LF
File size: 815 bytes
Line 
1/* German initialisation for the jQuery UI date picker plugin. */
2/* Written by Milian Wolff (mail@milianw.de). */
3jQuery(function($){
4        $.datepicker.regional['de'] = {
5                closeText: 'schließen',
6                prevText: '<zurück',
7                nextText: 'Vor>',
8                currentText: 'heute',
9                monthNames: ['Januar','Februar','März','April','Mai','Juni',
10                'Juli','August','September','Oktober','November','Dezember'],
11                monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun',
12                'Jul','Aug','Sep','Okt','Nov','Dez'],
13                dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
14                dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
15                dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
16                dateFormat: 'dd.mm.yy', firstDay: 1,
17                isRTL: false};
18        $.datepicker.setDefaults($.datepicker.regional['de']);
19});
Note: See TracBrowser for help on using the repository browser.