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
* Note: You do not have to load this translation file. English is the
20
* default language of this plugin and is compiled into it automatically.
22
* This file is just to serve as the default string mappings and as a
23
* template for future translations.
24
* @see: ./src/js/locale/en-US.js
26
* Four character language codes are supported ("en-US") and will always
27
* take precedence over two character language codes ("en") if present.
29
* When copying this file, remove all comments except the one above the
30
* definition objection giving credit to the translation author.
34
* English translation for the "en-US" and "en" language codes.
35
* Mark Carver <mark.carver@me.com>
37
$.fn.ajaxSelectPicker.locale['en-US'] = {
39
* @member $.fn.ajaxSelectPicker.locale
40
* @cfg {String} currentlySelected = 'Currently Selected'
42
* The text to use for the label of the option group when currently selected options are preserved.
44
currentlySelected: 'Currently Selected',
47
* @member $.fn.ajaxSelectPicker.locale
48
* @cfg {String} emptyTitle = 'Select and begin typing'
50
* The text to use as the title for the select element when there are no items to display.
52
emptyTitle: 'Select and begin typing',
55
* @member $.fn.ajaxSelectPicker.locale
56
* @cfg {String} errorText = ''Unable to retrieve results'
58
* The text to use in the status container when a request returns with an error.
60
errorText: 'Unable to retrieve results',
63
* @member $.fn.ajaxSelectPicker.locale
64
* @cfg {String} searchPlaceholder = 'Search...'
66
* The text to use for the search input placeholder attribute.
68
searchPlaceholder: 'Search...',
71
* @member $.fn.ajaxSelectPicker.locale
72
* @cfg {String} statusInitialized = 'Start typing a search query'
74
* The text used in the status container when it is initialized.
76
statusInitialized: 'Start typing a search query',
79
* @member $.fn.ajaxSelectPicker.locale
80
* @cfg {String} statusNoResults = 'No Results'
82
* The text used in the status container when the request returns no results.
84
statusNoResults: 'No Results',
87
* @member $.fn.ajaxSelectPicker.locale
88
* @cfg {String} statusSearching = 'Searching...'
90
* The text to use in the status container when a request is being initiated.
92
statusSearching: 'Searching...',
95
* @member $.fn.ajaxSelectPicker.locale
96
* @cfg {String} statusTooShort = 'Please enter more characters'
98
* The text used in the status container when the request returns no results.
100
statusTooShort: 'Please enter more characters'
102
$.fn.ajaxSelectPicker.locale.en = $.fn.ajaxSelectPicker.locale['en-US'];