PSTW_CentralizeSystem/wwwroot/assets/libs/select2/dist/js/i18n/da.js
2024-11-15 16:29:52 +08:00

38 lines
1.2 KiB
JavaScript

/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
(function () {
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
var e = jQuery.fn.select2.amd;
return (
e.define("select2/i18n/da", [], function () {
return {
errorLoading: function () {
return "Resultaterne kunne ikke indlæses.";
},
inputTooLong: function (e) {
var t = e.input.length - e.maximum;
return "Angiv venligst " + t + " tegn mindre";
},
inputTooShort: function (e) {
var t = e.minimum - e.input.length;
return "Angiv venligst " + t + " tegn mere";
},
loadingMore: function () {
return "Indlæser flere resultater…";
},
maximumSelected: function (e) {
var t = "Du kan kun vælge " + e.maximum + " emne";
return e.maximum != 1 && (t += "r"), t;
},
noResults: function () {
return "Ingen resultater fundet";
},
searching: function () {
return "Søger…";
},
};
}),
{ define: e.define, require: e.require }
);
})();