2
* Ajax Bootstrap Select
4
* Extends existing [Bootstrap Select] implementations by adding the ability to search via AJAX requests as you type. Originally for CROSCON.
7
* @author Adam Heim - https://github.com/truckingsim
8
* @link https://github.com/truckingsim/Ajax-Bootstrap-Select
9
* @copyright 2017 Adam Heim
10
* @license Released under the MIT license.
13
* Mark Carver - https://github.com/markcarver
15
* Last build: 2017-11-15 1:19:45 PM EST
19
* Turkish translation for the "tr-TR" and "tr" language codes.
20
* Burak Çakırel <burakcakirel@gmail.com>
22
$.fn.ajaxSelectPicker.locale['tr-TR'] = {
24
* @member $.fn.ajaxSelectPicker.locale
25
* @cfg {String} currentlySelected = 'Currently Selected'
27
* The text to use for the label of the option group when currently selected options are preserved.
29
currentlySelected: 'Seçili olanlar',
32
* @member $.fn.ajaxSelectPicker.locale
33
* @cfg {String} emptyTitle = 'Select and begin typing'
35
* The text to use as the title for the select element when there are no items to display.
37
emptyTitle: 'Seç ve yazmaya başla',
40
* @member $.fn.ajaxSelectPicker.locale
41
* @cfg {String} errorText = ''Unable to retrieve results'
43
* The text to use in the status container when a request returns with an error.
45
errorText: 'Sonuçlar alınamadı',
48
* @member $.fn.ajaxSelectPicker.locale
49
* @cfg {String} searchPlaceholder = 'Search...'
51
* The text to use for the search input placeholder attribute.
53
searchPlaceholder: 'Ara...',
56
* @member $.fn.ajaxSelectPicker.locale
57
* @cfg {String} statusInitialized = 'Start typing a search query'
59
* The text used in the status container when it is initialized.
61
statusInitialized: 'Arama için yazmaya başla',
64
* @member $.fn.ajaxSelectPicker.locale
65
* @cfg {String} statusNoResults = 'No Results'
67
* The text used in the status container when the request returns no results.
69
statusNoResults: 'Sonuç yok',
72
* @member $.fn.ajaxSelectPicker.locale
73
* @cfg {String} statusSearching = 'Searching...'
75
* The text to use in the status container when a request is being initiated.
77
statusSearching: 'Aranıyor...',
80
* @member $.fn.ajaxSelectPicker.locale
81
* @cfg {String} statusTooShort = 'Please enter more characters'
83
* The text used in the status container when the request returns no results.
85
statusTooShort: 'Lütfen daha fazla karakter girin'
87
$.fn.ajaxSelectPicker.locale.tr = $.fn.ajaxSelectPicker.locale['tr-TR'];