Skip to content

Commit 69e8e6e

Browse files
committed
Merge pull request select2#2808 from yuks/patch-1
formatMatches translation added
2 parents a8377e3 + ced4bf6 commit 69e8e6e

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

select2_locale_tr.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"use strict";
88

99
$.fn.select2.locales['tr'] = {
10+
formatMatches: function (matches) { if (matches === 1) { return "Sadece bir sonuç bulundu, seçmek için enter tuşuna basabilirsiniz."; } return matches + " sonuç bulundu, yukarı ve aşağı tuşları ile seçebilirsiniz."; },
1011
formatNoMatches: function () { return "Sonuç bulunamadı"; },
1112
formatInputTooShort: function (input, min) { var n = min - input.length; return "En az " + n + " karakter daha girmelisiniz"; },
1213
formatInputTooLong: function (input, max) { var n = input.length - max; return n + " karakter azaltmalısınız"; },

0 commit comments

Comments
 (0)