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
* Korean translation for the "ko-KR" and "ko" language codes.
20
* Jo JungLae <ubermenschjo@google.com>
22
$.fn.ajaxSelectPicker.locale['ko-KR'] = {
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.ko = $.fn.ajaxSelectPicker.locale['ko-KR'];