From 8e6422c570a87da8d89c45daf0d253695a943c84 Mon Sep 17 00:00:00 2001 From: mitja-p Date: Sun, 11 Sep 2016 19:43:43 +0200 Subject: [PATCH] Add Slovene translation This closes https://github.com/select2/select2/pull/4576. --- src/js/select2/i18n/sl.js | 54 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 src/js/select2/i18n/sl.js diff --git a/src/js/select2/i18n/sl.js b/src/js/select2/i18n/sl.js new file mode 100644 index 00000000..a164044c --- /dev/null +++ b/src/js/select2/i18n/sl.js @@ -0,0 +1,54 @@ +define(function () { + // Slovene + return { + errorLoading: function () { + return 'Zadetkov iskanja ni bilo mogoče naložiti.'; + }, + inputTooLong: function (args) { + var overChars = args.input.length - args.maximum; + + var message = 'Prosim zbrišite ' + overChars + ' znak'; + + if (overChars == 2) { + message += 'a'; + } else if (overChars != 1) { + message += 'e'; + } + + return message; + }, + inputTooShort: function (args) { + var remainingChars = args.minimum - args.input.length; + + var message = 'Prosim vpišite še ' + remainingChars + ' znak'; + + if (remainingChars == 2) { + message += 'a'; + } else if (remainingChars != 1) { + message += 'e'; + } + + return message; + }, + loadingMore: function () { + return 'Nalagam več zadetkov…'; + }, + maximumSelected: function (args) { + var message = 'Označite lahko največ ' + args.maximum + ' predmet'; + + if (args.maximum == 2) { + message += 'a'; + } else if (args.maximum != 1) { + message += 'e'; + } + + return message; + }, + noResults: function () { + return 'Ni zadetkov.'; + }, + searching: function () { + return 'Iščem…'; + } + }; +});