~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.ru-RU.js

  • Committer: Dan Garner
  • Date: 2018-03-26 15:27:47 UTC
  • mto: This revision was merged to the branch mainline in revision 630.
  • Revision ID: git-v1:bb5a611bc71d8b95230559afaa2f0125cc4465f3
Stop loading the entire media list on each widget add/edit form. Replace with an ajax enabled drop down list with search box (MIT licenced).
xibosignage/xibo#1448

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
 * Russian translation for the "ru-RU" and "ru" language codes.
 
20
 * Bercut Stray <bercut497@gmail.com>
 
21
 */
 
22
$.fn.ajaxSelectPicker.locale['ru-RU'] = {
 
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.ru = $.fn.ajaxSelectPicker.locale['ru-RU'];
 
88
})(jQuery);