2011-11-17 18:34:33 +00:00
|
|
|
/* Welsh/UK initialisation for the jQuery UI date picker plugin. */
|
|
|
|
/* Written by William Griffiths. */
|
2015-08-24 13:00:11 +00:00
|
|
|
( function( factory ) {
|
2021-06-06 22:58:12 +00:00
|
|
|
"use strict";
|
|
|
|
|
2013-07-17 15:10:30 +00:00
|
|
|
if ( typeof define === "function" && define.amd ) {
|
|
|
|
|
|
|
|
// AMD. Register as an anonymous module.
|
2015-08-24 13:00:11 +00:00
|
|
|
define( [ "../widgets/datepicker" ], factory );
|
2013-07-17 15:10:30 +00:00
|
|
|
} else {
|
|
|
|
|
|
|
|
// Browser globals
|
|
|
|
factory( jQuery.datepicker );
|
|
|
|
}
|
2021-06-06 22:58:12 +00:00
|
|
|
} )( function( datepicker ) {
|
|
|
|
"use strict";
|
2013-07-17 15:10:30 +00:00
|
|
|
|
2015-08-24 13:00:11 +00:00
|
|
|
datepicker.regional[ "cy-GB" ] = {
|
|
|
|
closeText: "Done",
|
|
|
|
prevText: "Prev",
|
|
|
|
nextText: "Next",
|
|
|
|
currentText: "Today",
|
2021-06-06 22:58:12 +00:00
|
|
|
monthNames: [ "Ionawr", "Chwefror", "Mawrth", "Ebrill", "Mai", "Mehefin",
|
|
|
|
"Gorffennaf", "Awst", "Medi", "Hydref", "Tachwedd", "Rhagfyr" ],
|
2015-08-24 13:00:11 +00:00
|
|
|
monthNamesShort: [ "Ion", "Chw", "Maw", "Ebr", "Mai", "Meh",
|
|
|
|
"Gor", "Aws", "Med", "Hyd", "Tac", "Rha" ],
|
2016-03-31 04:22:10 +00:00
|
|
|
dayNames: [
|
|
|
|
"Dydd Sul",
|
|
|
|
"Dydd Llun",
|
|
|
|
"Dydd Mawrth",
|
|
|
|
"Dydd Mercher",
|
|
|
|
"Dydd Iau",
|
|
|
|
"Dydd Gwener",
|
|
|
|
"Dydd Sadwrn"
|
|
|
|
],
|
2015-08-24 13:00:11 +00:00
|
|
|
dayNamesShort: [ "Sul", "Llu", "Maw", "Mer", "Iau", "Gwe", "Sad" ],
|
2021-06-06 22:58:12 +00:00
|
|
|
dayNamesMin: [ "Su", "Ll", "Ma", "Me", "Ia", "Gw", "Sa" ],
|
2015-08-24 13:00:11 +00:00
|
|
|
weekHeader: "Wy",
|
|
|
|
dateFormat: "dd/mm/yy",
|
2014-02-19 11:55:50 +00:00
|
|
|
firstDay: 1,
|
|
|
|
isRTL: false,
|
|
|
|
showMonthAfterYear: false,
|
2015-08-24 13:00:11 +00:00
|
|
|
yearSuffix: "" };
|
|
|
|
datepicker.setDefaults( datepicker.regional[ "cy-GB" ] );
|
2014-02-19 11:55:50 +00:00
|
|
|
|
2015-08-24 13:00:11 +00:00
|
|
|
return datepicker.regional[ "cy-GB" ];
|
2013-07-17 15:10:30 +00:00
|
|
|
|
2021-06-06 22:58:12 +00:00
|
|
|
} );
|