aboutsummaryrefslogtreecommitdiffstats
path: root/web/js/select2/select2_locale_tr.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/js/select2/select2_locale_tr.js')
-rw-r--r--web/js/select2/select2_locale_tr.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/web/js/select2/select2_locale_tr.js b/web/js/select2/select2_locale_tr.js
new file mode 100644
index 000000000..b47a2fad6
--- /dev/null
+++ b/web/js/select2/select2_locale_tr.js
@@ -0,0 +1,17 @@
+/**
+ * Select2 Turkish translation.
+ *
+ * Author: Salim KAYABAŞI <salim.kayabasi@gmail.com>
+ */
+(function ($) {
+ "use strict";
+
+ $.extend($.fn.select2.defaults, {
+ formatNoMatches: function () { return "Sonuç bulunamadı"; },
+ formatInputTooShort: function (input, min) { var n = min - input.length; return "En az " + n + " karakter daha girmelisiniz"; },
+ formatInputTooLong: function (input, max) { var n = input.length - max; return n + " karakter azaltmalısınız"; },
+ formatSelectionTooBig: function (limit) { return "Sadece " + limit + " seçim yapabilirsiniz"; },
+ formatLoadMore: function (pageNumber) { return "Daha fazla..."; },
+ formatSearching: function () { return "Aranıyor..."; }
+ });
+})(jQuery);