2011-05-04 20:29:13 +00:00
|
|
|
/* Danish initialisation for the jQuery UI date picker plugin. */
|
2008-06-04 02:34:33 +00:00
|
|
|
/* Written by Jan Christensen ( deletestuff@gmail.com). */
|
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.da = {
|
|
|
|
closeText: "Luk",
|
2022-02-11 15:33:27 +00:00
|
|
|
prevText: "Forrige",
|
|
|
|
nextText: "Næste",
|
2019-12-09 20:11:13 +00:00
|
|
|
currentText: "I dag",
|
2021-06-06 22:58:12 +00:00
|
|
|
monthNames: [ "Januar", "Februar", "Marts", "April", "Maj", "Juni",
|
|
|
|
"Juli", "August", "September", "Oktober", "November", "December" ],
|
|
|
|
monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "Maj", "Jun",
|
|
|
|
"Jul", "Aug", "Sep", "Okt", "Nov", "Dec" ],
|
|
|
|
dayNames: [ "Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag" ],
|
|
|
|
dayNamesShort: [ "Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør" ],
|
|
|
|
dayNamesMin: [ "Sø", "Ma", "Ti", "On", "To", "Fr", "Lø" ],
|
2015-08-24 13:00:11 +00:00
|
|
|
weekHeader: "Uge",
|
|
|
|
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.da );
|
2014-02-19 11:55:50 +00:00
|
|
|
|
2015-08-24 13:00:11 +00:00
|
|
|
return datepicker.regional.da;
|
2013-07-17 15:10:30 +00:00
|
|
|
|
2021-06-06 22:58:12 +00:00
|
|
|
} );
|