1
0
mirror of synced 2024-11-25 14:26:03 +03:00
This commit is contained in:
Anders Jenbo 2013-04-03 20:28:05 +02:00
parent 3d80856643
commit c2e417d6a8

View File

@ -1,5 +1,7 @@
/**
* Select2 Danish translation
* Select2 Danish translation.
*
* Author: Anders Jenbo <anders@jenbo.dk>
*/
(function ($) {
"use strict";
@ -9,7 +11,7 @@
formatInputTooShort: function (input, min) { var n = min - input.length; return "Angiv venligst " + n + " tegn mere"; },
formatInputTooLong: function (input, max) { var n = input.length - max; return "Angiv venligst " + n + " tegn mindre"; },
formatSelectionTooBig: function (limit) { return "Du kan kun vælge " + limit + " emne" + (limit === 1 ? "" : "r"); },
formatLoadMore: function (pageNumber) { return "Indlæs flere resultater…"; },
formatLoadMore: function (pageNumber) { return "Indlæser flere resultater…"; },
formatSearching: function () { return "Søger…"; }
});
})(jQuery);