mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
24 lines
903 B
JavaScript
24 lines
903 B
JavaScript
/* Welsh/UK initialisation for the jQuery UI date picker plugin. */
|
|
/* Alan Davies */
|
|
jQuery(function($){
|
|
$.datepicker.regional['cy'] = {
|
|
closeText: 'Iawn',
|
|
prevText: 'Cynt',
|
|
nextText: 'Nesaf',
|
|
currentText: 'Heddiw',
|
|
monthNames: ['Ionawr','Chwefror','Mawrth','Ebrill','Mai','Mehefin',
|
|
'Gorffennaf','Awst','Medi','Hydref','Tachwedd','Rhagfyr'],
|
|
monthNamesShort: ['Ion', 'Chwe', 'Maw', 'Ebr', 'Mai', 'Meh',
|
|
'Gor', 'Aws', 'Med', 'Hyd', 'Tach', 'Rhag'],
|
|
dayNames: ['Dydd Sul', 'Dydd Llun', 'Dydd Mawrth', 'Dydd Mercher',
|
|
'Dydd Iau', 'Dydd Gwener', 'Dydd Sadwrn'],
|
|
dayNamesShort: ['Sul', 'Llun', 'Maw', 'Mer', 'Iau', 'Gwe', 'Sad'],
|
|
dayNamesMin: ['Su','Ll','Ma','Me','Ia','Gw','Sa'],
|
|
weekHeader: 'Wy.',
|
|
dateFormat: 'dd/mm/yy',
|
|
firstDay: 1,
|
|
isRTL: false,
|
|
showMonthAfterYear: false,
|
|
yearSuffix: ''};
|
|
$.datepicker.setDefaults($.datepicker.regional['cy']);
|
|
}); |