mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-22 05:50:47 +02:00

Not an optimal solution, because it uses files from our own repository instead of the bundle, but found no other solution for now.
37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
JavaScript
/* Dutch (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
|
/* Written by Mathias Bynens <http://mathiasbynens.be/> */
|
|
( function( factory ) {
|
|
if ( typeof define === "function" && define.amd ) {
|
|
|
|
// AMD. Register as an anonymous module.
|
|
define( [ "../widgets/datepicker" ], factory );
|
|
} else {
|
|
|
|
// Browser globals
|
|
factory( jQuery.datepicker );
|
|
}
|
|
}( function( datepicker ) {
|
|
|
|
datepicker.regional.nl = {
|
|
closeText: "Sluiten",
|
|
prevText: "←",
|
|
nextText: "→",
|
|
currentText: "Vandaag",
|
|
monthNames: [ "januari", "februari", "maart", "april", "mei", "juni",
|
|
"juli", "augustus", "september", "oktober", "november", "december" ],
|
|
monthNamesShort: [ "jan", "feb", "mrt", "apr", "mei", "jun",
|
|
"jul", "aug", "sep", "okt", "nov", "dec" ],
|
|
dayNames: [ "zondag", "maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag" ],
|
|
dayNamesShort: [ "zon", "maa", "din", "woe", "don", "vri", "zat" ],
|
|
dayNamesMin: [ "zo", "ma", "di", "wo", "do", "vr", "za" ],
|
|
weekHeader: "Wk",
|
|
dateFormat: "dd-mm-yy",
|
|
firstDay: 1,
|
|
isRTL: false,
|
|
showMonthAfterYear: false,
|
|
yearSuffix: "" };
|
|
datepicker.setDefaults( datepicker.regional.nl );
|
|
|
|
return datepicker.regional.nl;
|
|
|
|
} ) );
|