~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.en-US.js

  • Committer: Dan Garner
  • Date: 2018-06-12 16:03:43 UTC
  • mto: This revision was merged to the branch mainline in revision 652.
  • Revision ID: git-v1:3e32ca8d0f06b15d65c344f8c60936e9dec848db
Look at replacing bootstrap-select with select2 to solve paging and searching in lists.
xibosignage/xibo#1539

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
 
 * 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.
21
 
 *
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
25
 
 *
26
 
 * Four character language codes are supported ("en-US") and will always
27
 
 * take precedence over two character language codes ("en") if present.
28
 
 *
29
 
 * When copying this file, remove all comments except the one above the
30
 
 * definition objection giving credit to the translation author.
31
 
 */
32
 
 
33
 
/*!
34
 
 * English translation for the "en-US" and "en" language codes.
35
 
 * Mark Carver <mark.carver@me.com>
36
 
 */
37
 
$.fn.ajaxSelectPicker.locale['en-US'] = {
38
 
    /**
39
 
     * @member $.fn.ajaxSelectPicker.locale
40
 
     * @cfg {String} currentlySelected = 'Currently Selected'
41
 
     * @markdown
42
 
     * The text to use for the label of the option group when currently selected options are preserved.
43
 
     */
44
 
    currentlySelected: 'Currently Selected',
45
 
 
46
 
    /**
47
 
     * @member $.fn.ajaxSelectPicker.locale
48
 
     * @cfg {String} emptyTitle = 'Select and begin typing'
49
 
     * @markdown
50
 
     * The text to use as the title for the select element when there are no items to display.
51
 
     */
52
 
    emptyTitle: 'Select and begin typing',
53
 
 
54
 
    /**
55
 
     * @member $.fn.ajaxSelectPicker.locale
56
 
     * @cfg {String} errorText = ''Unable to retrieve results'
57
 
     * @markdown
58
 
     * The text to use in the status container when a request returns with an error.
59
 
     */
60
 
    errorText: 'Unable to retrieve results',
61
 
 
62
 
    /**
63
 
     * @member $.fn.ajaxSelectPicker.locale
64
 
     * @cfg {String} searchPlaceholder = 'Search...'
65
 
     * @markdown
66
 
     * The text to use for the search input placeholder attribute.
67
 
     */
68
 
    searchPlaceholder: 'Search...',
69
 
 
70
 
    /**
71
 
     * @member $.fn.ajaxSelectPicker.locale
72
 
     * @cfg {String} statusInitialized = 'Start typing a search query'
73
 
     * @markdown
74
 
     * The text used in the status container when it is initialized.
75
 
     */
76
 
    statusInitialized: 'Start typing a search query',
77
 
 
78
 
    /**
79
 
     * @member $.fn.ajaxSelectPicker.locale
80
 
     * @cfg {String} statusNoResults = 'No Results'
81
 
     * @markdown
82
 
     * The text used in the status container when the request returns no results.
83
 
     */
84
 
    statusNoResults: 'No Results',
85
 
 
86
 
    /**
87
 
     * @member $.fn.ajaxSelectPicker.locale
88
 
     * @cfg {String} statusSearching = 'Searching...'
89
 
     * @markdown
90
 
     * The text to use in the status container when a request is being initiated.
91
 
     */
92
 
    statusSearching: 'Searching...',
93
 
 
94
 
        /**
95
 
     * @member $.fn.ajaxSelectPicker.locale
96
 
     * @cfg {String} statusTooShort = 'Please enter more characters'
97
 
     * @markdown
98
 
     * The text used in the status container when the request returns no results.
99
 
     */
100
 
    statusTooShort: 'Please enter more characters'
101
 
};
102
 
$.fn.ajaxSelectPicker.locale.en = $.fn.ajaxSelectPicker.locale['en-US'];
103
 
})(jQuery);