Skip to content

Commit 0e93836

Browse files
committed
Icelandic l10n improved
1 parent c3cc582 commit 0e93836

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

select2_locale_is.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
/**
22
* Select2 Icelandic translation.
3-
*
43
*/
54
(function ($) {
65
"use strict";
76

87
$.extend($.fn.select2.defaults, {
98
formatNoMatches: function () { return "Ekkert fannst"; },
10-
formatInputTooShort: function (input, min) { var n = min - input.length; return "Vinsamlegast skrifið " + n + " staf" + (n == 1 ? "" : "i") + " í viðbót"; },
11-
formatInputTooLong: function (input, max) { var n = input.length - max; return "Vinsamlegast styttið texta um " + n + " staf" + (n == 1 ? "" : "i"); },
9+
formatInputTooShort: function (input, min) { var n = min - input.length; return "Vinsamlegast skrifið " + n + " staf" + (n > 1 ? "i" : "") + " í viðbót"; },
10+
formatInputTooLong: function (input, max) { var n = input.length - max; return "Vinsamlegast styttið texta um " + n + " staf" + (n > 1 ? "i" : ""); },
1211
formatSelectionTooBig: function (limit) { return "Þú getur aðeins valið " + limit + " atriði"; },
1312
formatLoadMore: function (pageNumber) { return "Sæki fleiri niðurstöður..."; },
1413
formatSearching: function () { return "Leita..."; }

0 commit comments

Comments
 (0)