Update Datepicker localisations and add missing ones. The nb_NO is just a renamed nb. The files are straight from upstream at https://github.com/jquery/jquery-ui/tree/main/ui/i18n

This commit is contained in:
Jyri-Petteri Paloposki 2022-08-02 11:35:30 +03:00
parent 24e3ff53b8
commit 21373cea43
13 changed files with 233 additions and 72 deletions

View file

@ -1,6 +1,8 @@
/* Dutch (UTF-8) initialisation for the jQuery UI date picker plugin. */
/* Written by Mathias Bynens <http://mathiasbynens.be/> */
( function( factory ) {
"use strict";
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
@ -10,12 +12,13 @@
// Browser globals
factory( jQuery.datepicker );
}
}( function( datepicker ) {
} )( function( datepicker ) {
"use strict";
datepicker.regional.nl = {
closeText: "Sluiten",
prevText: "",
nextText: "",
prevText: "Vorig",
nextText: "Volgende",
currentText: "Vandaag",
monthNames: [ "januari", "februari", "maart", "april", "mei", "juni",
"juli", "augustus", "september", "oktober", "november", "december" ],
@ -34,4 +37,4 @@ datepicker.setDefaults( datepicker.regional.nl );
return datepicker.regional.nl;
} ) );
} );