mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
26 lines
929 B
JavaScript
26 lines
929 B
JavaScript
|
/*
|
||
|
* German (UTF-8) initialisation for the jQuery UI date picker plugin.
|
||
|
* Adapted to match the Zend Data localization for SilverStripe CMS
|
||
|
* See: README
|
||
|
*/
|
||
|
jQuery(function($){
|
||
|
$.datepicker.regional['de'] = {
|
||
|
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'],
|
||
|
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
|
||
|
dayNamesShort: ['Son','Mon','Die','Mit','Don','Fre','Sam'],
|
||
|
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
|
||
|
weekHeader: 'Wo',
|
||
|
dateFormat: 'dd.mm.yy',
|
||
|
firstDay: 1,
|
||
|
isRTL: false,
|
||
|
showMonthAfterYear: false,
|
||
|
yearSuffix: ''};
|
||
|
$.datepicker.setDefaults($.datepicker.regional['de']);
|
||
|
});
|
||
|
|