1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-21 18:08:21 +02:00
Files
nk20/static/vendor/select2/src/js/select2/i18n/tr.js
Pierre-antoine Comby 70c09da9f8 add static files
2020-02-25 22:15:46 +01:00

40 lines
952 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

define(function () {
// Turkish
return {
errorLoading: function (){
return 'Sonuç yüklenemedi';
},
inputTooLong: function (args) {
var overChars = args.input.length - args.maximum;
var message = overChars + ' karakter daha girmelisiniz';
return message;
},
inputTooShort: function (args) {
var remainingChars = args.minimum - args.input.length;
var message = 'En az ' + remainingChars + ' karakter daha girmelisiniz';
return message;
},
loadingMore: function () {
return 'Daha fazla…';
},
maximumSelected: function (args) {
var message = 'Sadece ' + args.maximum + ' seçim yapabilirsiniz';
return message;
},
noResults: function () {
return 'Sonuç bulunamadı';
},
searching: function () {
return 'Aranıyor…';
},
removeAllItems: function () {
return 'Tüm öğeleri kaldır';
}
};
});