summaryrefslogtreecommitdiffstats
path: root/apps/files_external/3rdparty/select2/select2_locale_rs.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/3rdparty/select2/select2_locale_rs.js')
-rw-r--r--apps/files_external/3rdparty/select2/select2_locale_rs.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/apps/files_external/3rdparty/select2/select2_locale_rs.js b/apps/files_external/3rdparty/select2/select2_locale_rs.js
new file mode 100644
index 00000000000..300c01bc5e5
--- /dev/null
+++ b/apps/files_external/3rdparty/select2/select2_locale_rs.js
@@ -0,0 +1,17 @@
+/**
+ * Select2 Serbian translation.
+ *
+ * @author Limon Monte <limon.monte@gmail.com>
+ */
+(function ($) {
+ "use strict";
+
+ $.extend($.fn.select2.defaults, {
+ formatNoMatches: function () { return "Ništa nije pronađeno"; },
+ formatInputTooShort: function (input, min) { var n = min - input.length; return "Ukucajte bar još " + n + " simbol" + (n % 10 == 1 && n % 100 != 11 ? "" : "a"); },
+ formatInputTooLong: function (input, max) { var n = input.length - max; return "Obrišite " + n + " simbol" + (n % 10 == 1 && n % 100 != 11 ? "" : "a"); },
+ formatSelectionTooBig: function (limit) { return "Možete izabrati samo " + limit + " stavk" + (limit % 10 == 1 && limit % 100 != 11 ? "u" : (limit % 10 >= 2 && limit % 10 <= 4 && (limit % 100 < 12 || limit % 100 > 14)? "e" : "i")); },
+ formatLoadMore: function (pageNumber) { return "Preuzimanje još rezultata…"; },
+ formatSearching: function () { return "Pretraga…"; }
+ });
+})(jQuery);