Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | /** |
| 2 | * Select2 Icelandic translation. |
||
| 3 | */ |
||
| 4 | (function ($) { |
||
| 5 | "use strict"; |
||
| 6 | |||
| 7 | $.fn.select2.locales['is'] = { |
||
| 8 | formatNoMatches: function () { return "Ekkert fannst"; }, |
||
| 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" : ""); }, |
||
| 11 | formatSelectionTooBig: function (limit) { return "Þú getur aðeins valið " + limit + " atriði"; }, |
||
| 12 | formatLoadMore: function (pageNumber) { return "Sæki fleiri niðurstöður…"; }, |
||
| 13 | formatSearching: function () { return "Leita…"; } |
||
| 14 | }; |
||
| 15 | |||
| 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['is']); |
||
| 17 | })(jQuery); |