diff options
Diffstat (limited to 'apps/files_external/3rdparty/select2/select2_locale_lv.js')
-rw-r--r-- | apps/files_external/3rdparty/select2/select2_locale_lv.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/apps/files_external/3rdparty/select2/select2_locale_lv.js b/apps/files_external/3rdparty/select2/select2_locale_lv.js new file mode 100644 index 00000000000..b300ec770f4 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_lv.js @@ -0,0 +1,17 @@ +/** + * Select2 Latvian translation. + * + * @author Uriy Efremochkin <efremochkin@uriy.me> + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Sakritību nav"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Lūdzu ievadiet vēl " + n + " simbol" + (n == 11 ? "us" : n%10 == 1 ? "u" : "us"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Lūdzu ievadiet par " + n + " simbol" + (n == 11 ? "iem" : n%10 == 1 ? "u" : "iem") + " mazāk"; }, + formatSelectionTooBig: function (limit) { return "Jūs varat izvēlēties ne vairāk kā " + limit + " element" + (limit == 11 ? "us" : limit%10 == 1 ? "u" : "us"); }, + formatLoadMore: function (pageNumber) { return "Datu ielāde…"; }, + formatSearching: function () { return "Meklēšana…"; } + }); +})(jQuery); |