mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
8f23fa99a5
The 'admin' module will be split off from 'framework', where 'framework' only provides (mostly) frontend-agnostic PHP classes. For example, HTMLEditorField.php has a TinyMCEConfig.php driver, but doesn't come with its own JS includes.
25 lines
938 B
JavaScript
25 lines
938 B
JavaScript
/*
|
|
* French (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['fr'] = {
|
|
closeText: 'Fermer',
|
|
prevText: '<Préc',
|
|
nextText: 'Suiv>',
|
|
currentText: 'Courant',
|
|
monthNames: ['janvier','février','mars','avril','mai','juin','juillet','août','septembre','octobre','novembre','décembre'],
|
|
monthNamesShort: ['janv.','févr.','mars','avr.','mai','juin','juil.','août','sept.','oct.','nov.','déc.'],
|
|
dayNames: ['dimanche','lundi','mardi','mercredi','jeudi','vendredi','samedi'],
|
|
dayNamesShort: ['dim','lun','mar','mer','jeu','ven','sam'],
|
|
dayNamesMin: ['Di','Lu','Ma','Me','Je','Ve','Sa'],
|
|
weekHeader: 'Sm',
|
|
dateFormat: 'dd/mm/yy',
|
|
firstDay: 1,
|
|
isRTL: false,
|
|
showMonthAfterYear: false,
|
|
yearSuffix: ''};
|
|
$.datepicker.setDefaults($.datepicker.regional['fr']);
|
|
});
|