mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
5186bada17
In locales other than en_US, as a result of missing jQuery locale files, the DatePicker defaulted to English whenever day and monthnames were used, breaking validation. Needed to change official locale files before adding, because Zend_Date and jQuery day/monthnames not matching again breaks validation. Removed hard setting the names to uppercase, breaking validation for other locales Changed order in convert_iso_to_jquery_format(), to prevent EEE(E) settings from being overwritten Added a check for existing locale files, and made DatePicker fallback to ISO yyy-MM-dd if a missing locale file would otherwise break validation. Added documentation for the DateField
24 lines
942 B
JavaScript
24 lines
942 B
JavaScript
/*
|
|
* English/UK (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['en-GB'] = {
|
|
closeText: 'Done',
|
|
prevText: 'Prev',
|
|
nextText: 'Next',
|
|
currentText: 'Today',
|
|
monthNames: ['January','February','March','April','May','June','July','August','September','October','November','December'],
|
|
monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
|
|
dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
|
|
dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
|
|
dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'],
|
|
weekHeader: 'Wk',
|
|
dateFormat: 'dd/mm/yy',
|
|
firstDay: 1,
|
|
isRTL: false,
|
|
showMonthAfterYear: false,
|
|
yearSuffix: ''};
|
|
$.datepicker.setDefaults($.datepicker.regional['en-GB']);
|
|
}); |