0
|
1 /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat (MIT) */
|
|
2 /* Welsh/UK initialisation for the jQuery UI date picker plugin. */
|
|
3 /* Written by William Griffiths. */
|
|
4 jQuery(function($){
|
|
5 $.datepicker.regional['cy-GB'] = {
|
|
6 closeText: 'Done',
|
|
7 prevText: 'Prev',
|
|
8 nextText: 'Next',
|
|
9 currentText: 'Today',
|
|
10 monthNames: ['Ionawr','Chwefror','Mawrth','Ebrill','Mai','Mehefin',
|
|
11 'Gorffennaf','Awst','Medi','Hydref','Tachwedd','Rhagfyr'],
|
|
12 monthNamesShort: ['Ion', 'Chw', 'Maw', 'Ebr', 'Mai', 'Meh',
|
|
13 'Gor', 'Aws', 'Med', 'Hyd', 'Tac', 'Rha'],
|
|
14 dayNames: ['Dydd Sul', 'Dydd Llun', 'Dydd Mawrth', 'Dydd Mercher', 'Dydd Iau', 'Dydd Gwener', 'Dydd Sadwrn'],
|
|
15 dayNamesShort: ['Sul', 'Llu', 'Maw', 'Mer', 'Iau', 'Gwe', 'Sad'],
|
|
16 dayNamesMin: ['Su','Ll','Ma','Me','Ia','Gw','Sa'],
|
|
17 weekHeader: 'Wy',
|
|
18 dateFormat: 'dd/mm/yy',
|
|
19 firstDay: 1,
|
|
20 isRTL: false,
|
|
21 showMonthAfterYear: false,
|
|
22 yearSuffix: ''};
|
|
23 $.datepicker.setDefaults($.datepicker.regional['cy-GB']);
|
|
24 });
|
|
25 /* @license-end */
|