We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d80ec81 commit 3d80856Copy full SHA for 3d80856
1 file changed
select2_locale_da.js
@@ -0,0 +1,15 @@
1
+/**
2
+ * Select2 Danish translation
3
+ */
4
+(function ($) {
5
+ "use strict";
6
+
7
+ $.extend($.fn.select2.defaults, {
8
+ formatNoMatches: function () { return "Ingen resultater fundet"; },
9
+ formatInputTooShort: function (input, min) { var n = min - input.length; return "Angiv venligst " + n + " tegn mere"; },
10
+ formatInputTooLong: function (input, max) { var n = input.length - max; return "Angiv venligst " + n + " tegn mindre"; },
11
+ formatSelectionTooBig: function (limit) { return "Du kan kun vælge " + limit + " emne" + (limit === 1 ? "" : "r"); },
12
+ formatLoadMore: function (pageNumber) { return "Indlæs flere resultater…"; },
13
+ formatSearching: function () { return "Søger…"; }
14
+ });
15
+})(jQuery);
0 commit comments