~xibo-maintainers/xibo/tempel

« back to all changes in this revision

Viewing changes to web/theme/default/libraries/bootstrap-select-ajax/js/locale/ajax-bootstrap-select.ko-KR.js

  • Committer: Dan Garner
  • Date: 2018-05-21 14:58:11 UTC
  • mfrom: (644.1.8)
  • mto: (614.1.6)
  • mto: This revision was merged to the branch mainline in revision 648.
  • Revision ID: git-v1:e7961b0ebe68a0c0bc5dd7b3abca007138b2cadd
Merge branch 'bugfix/1.8.10-pack1' into feature/r-graph

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*!
 
2
 * Ajax Bootstrap Select
 
3
 *
 
4
 * Extends existing [Bootstrap Select] implementations by adding the ability to search via AJAX requests as you type. Originally for CROSCON.
 
5
 *
 
6
 * @version 1.4.3
 
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.
 
11
 *
 
12
 * Contributors:
 
13
 *   Mark Carver - https://github.com/markcarver
 
14
 *
 
15
 * Last build: 2017-11-15 1:19:45 PM EST
 
16
 */
 
17
!(function ($) {
 
18
/*!
 
19
 * Korean translation for the "ko-KR" and "ko" language codes.
 
20
 * Jo JungLae <ubermenschjo@google.com>
 
21
 */
 
22
$.fn.ajaxSelectPicker.locale['ko-KR'] = {
 
23
    /**
 
24
     * @member $.fn.ajaxSelectPicker.locale
 
25
     * @cfg {String} currentlySelected = 'Currently Selected'
 
26
     * @markdown
 
27
     * The text to use for the label of the option group when currently selected options are preserved.
 
28
     */
 
29
    currentlySelected: '현재 선택된 항목',
 
30
 
 
31
    /**
 
32
     * @member $.fn.ajaxSelectPicker.locale
 
33
     * @cfg {String} emptyTitle = 'Select and begin typing'
 
34
     * @markdown
 
35
     * The text to use as the title for the select element when there are no items to display.
 
36
     */
 
37
    emptyTitle: '클릭하고 입력 시작',
 
38
 
 
39
    /**
 
40
     * @member $.fn.ajaxSelectPicker.locale
 
41
     * @cfg {String} errorText = ''Unable to retrieve results'
 
42
     * @markdown
 
43
     * The text to use in the status container when a request returns with an error.
 
44
     */
 
45
    errorText: '결과를 검색할 수 없습니다',
 
46
 
 
47
    /**
 
48
     * @member $.fn.ajaxSelectPicker.locale
 
49
     * @cfg {String} searchPlaceholder = 'Search...'
 
50
     * @markdown
 
51
     * The text to use for the search input placeholder attribute.
 
52
     */
 
53
    searchPlaceholder: '검색',
 
54
 
 
55
    /**
 
56
     * @member $.fn.ajaxSelectPicker.locale
 
57
     * @cfg {String} statusInitialized = 'Start typing a search query'
 
58
     * @markdown
 
59
     * The text used in the status container when it is initialized.
 
60
     */
 
61
    statusInitialized: '검색어를 입력',
 
62
 
 
63
    /**
 
64
     * @member $.fn.ajaxSelectPicker.locale
 
65
     * @cfg {String} statusNoResults = 'No Results'
 
66
     * @markdown
 
67
     * The text used in the status container when the request returns no results.
 
68
     */
 
69
    statusNoResults: '검색결과가 없습니다',
 
70
 
 
71
    /**
 
72
     * @member $.fn.ajaxSelectPicker.locale
 
73
     * @cfg {String} statusSearching = 'Searching...'
 
74
     * @markdown
 
75
     * The text to use in the status container when a request is being initiated.
 
76
     */
 
77
    statusSearching: '검색중',
 
78
 
 
79
    /**
 
80
     * @member $.fn.ajaxSelectPicker.locale
 
81
     * @cfg {String} statusTooShort = 'Please enter more characters'
 
82
     * @markdown
 
83
     * The text used in the status container when the request returns no results.
 
84
     */
 
85
    statusTooShort: '추가 문자를 입력하십시오.'
 
86
};
 
87
$.fn.ajaxSelectPicker.locale.ko = $.fn.ajaxSelectPicker.locale['ko-KR'];
 
88
})(jQuery);