jquery-ui/ui/i18n/datepicker-cy-GB.js

46 lines
1.2 KiB
JavaScript
Raw Normal View History

/* Welsh/UK initialisation for the jQuery UI date picker plugin. */
/* Written by William Griffiths. */
2015-08-24 13:00:11 +00:00
( function( factory ) {
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
2015-08-24 13:00:11 +00:00
define( [ "../widgets/datepicker" ], factory );
} else {
// Browser globals
factory( jQuery.datepicker );
}
2015-08-24 13:00:11 +00:00
}( function( datepicker ) {
2015-08-24 13:00:11 +00:00
datepicker.regional[ "cy-GB" ] = {
closeText: "Done",
prevText: "Prev",
nextText: "Next",
currentText: "Today",
monthNames: [ "Ionawr","Chwefror","Mawrth","Ebrill","Mai","Mehefin",
"Gorffennaf","Awst","Medi","Hydref","Tachwedd","Rhagfyr" ],
monthNamesShort: [ "Ion", "Chw", "Maw", "Ebr", "Mai", "Meh",
"Gor", "Aws", "Med", "Hyd", "Tac", "Rha" ],
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" ],
dayNamesMin: [ "Su","Ll","Ma","Me","Ia","Gw","Sa" ],
weekHeader: "Wy",
dateFormat: "dd/mm/yy",
firstDay: 1,
isRTL: false,
showMonthAfterYear: false,
2015-08-24 13:00:11 +00:00
yearSuffix: "" };
datepicker.setDefaults( datepicker.regional[ "cy-GB" ] );
2015-08-24 13:00:11 +00:00
return datepicker.regional[ "cy-GB" ];
2015-08-24 13:00:11 +00:00
} ) );