standard header in about page (#676)
[openemr.git] / public / assets / jquery-ui-1-12-1 / ui / i18n / datepicker-cy-GB.js
blob14fce914c33ebf2ac0712c83a68e8182fed6fc75
1 /* Welsh/UK initialisation for the jQuery UI date picker plugin. */
2 /* Written by William Griffiths. */
3 ( function( factory ) {
4         if ( typeof define === "function" && define.amd ) {
6                 // AMD. Register as an anonymous module.
7                 define( [ "../widgets/datepicker" ], factory );
8         } else {
10                 // Browser globals
11                 factory( jQuery.datepicker );
12         }
13 }( function( datepicker ) {
15 datepicker.regional[ "cy-GB" ] = {
16         closeText: "Done",
17         prevText: "Prev",
18         nextText: "Next",
19         currentText: "Today",
20         monthNames: [ "Ionawr","Chwefror","Mawrth","Ebrill","Mai","Mehefin",
21         "Gorffennaf","Awst","Medi","Hydref","Tachwedd","Rhagfyr" ],
22         monthNamesShort: [ "Ion", "Chw", "Maw", "Ebr", "Mai", "Meh",
23         "Gor", "Aws", "Med", "Hyd", "Tac", "Rha" ],
24         dayNames: [
25                 "Dydd Sul",
26                 "Dydd Llun",
27                 "Dydd Mawrth",
28                 "Dydd Mercher",
29                 "Dydd Iau",
30                 "Dydd Gwener",
31                 "Dydd Sadwrn"
32         ],
33         dayNamesShort: [ "Sul", "Llu", "Maw", "Mer", "Iau", "Gwe", "Sad" ],
34         dayNamesMin: [ "Su","Ll","Ma","Me","Ia","Gw","Sa" ],
35         weekHeader: "Wy",
36         dateFormat: "dd/mm/yy",
37         firstDay: 1,
38         isRTL: false,
39         showMonthAfterYear: false,
40         yearSuffix: "" };
41 datepicker.setDefaults( datepicker.regional[ "cy-GB" ] );
43 return datepicker.regional[ "cy-GB" ];
45 } ) );