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
* Russian translation for the "ru-RU" and "ru" language codes.
20
* Bercut Stray <bercut497@gmail.com>
22
$.fn.ajaxSelectPicker.locale['ru-RU'] = {
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: 'Выбрано',
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: 'Выделите и начните печатать',
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: 'Невозможно получить результат',
48
* @member $.fn.ajaxSelectPicker.locale
49
* @cfg {String} searchPlaceholder = 'Search...'
51
* The text to use for the search input placeholder attribute.
53
searchPlaceholder: 'Искать...',
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: 'Начните печатать запрос для поиска',
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: 'Нет результатов',
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: 'Поиск...',
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: 'Введите еще несколько символов'
87
$.fn.ajaxSelectPicker.locale.ru = $.fn.ajaxSelectPicker.locale['ru-RU'];