jquery-ui/ui/i18n/datepicker-sv.js
Albert Johansson 032ddc3349 Datepicker: Corrections for Swedish localization
Months and weekdays should be in small caps in Swedish.
https://sv.wikipedia.org/wiki/Versalisering

Fixes #15142
Closes gh-1799
2017-03-01 13:43:47 -05:00

38 lines
1.1 KiB
JavaScript

/* Swedish initialisation for the jQuery UI date picker plugin. */
/* Written by Anders Ekdahl ( anders@nomadiz.se). */
( 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.sv = {
closeText: "Stäng",
prevText: "«Förra",
nextText: "Nästa»",
currentText: "Idag",
monthNames: [ "januari","februari","mars","april","maj","juni",
"juli","augusti","september","oktober","november","december" ],
monthNamesShort: [ "jan.","feb.","mars","apr.","maj","juni",
"juli","aug.","sep.","okt.","nov.","dec." ],
dayNamesShort: [ "sön","mån","tis","ons","tor","fre","lör" ],
dayNames: [ "söndag","måndag","tisdag","onsdag","torsdag","fredag","lördag" ],
dayNamesMin: [ "sö","må","ti","on","to","fr","lö" ],
weekHeader: "Ve",
dateFormat: "yy-mm-dd",
firstDay: 1,
isRTL: false,
showMonthAfterYear: false,
yearSuffix: "" };
datepicker.setDefaults( datepicker.regional.sv );
return datepicker.regional.sv;
} ) );