mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
032ddc3349
Months and weekdays should be in small caps in Swedish. https://sv.wikipedia.org/wiki/Versalisering Fixes #15142 Closes gh-1799
38 lines
1.1 KiB
JavaScript
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;
|
|
|
|
} ) );
|