~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.es-ES.js

  • Committer: GitHub
  • Author(s): Dan Garner
  • Date: 2018-06-20 16:27:37 UTC
  • mfrom: (652)
  • mto: This revision was merged to the branch mainline in revision 653.
  • Revision ID: git-v1:1a1ca01506202d782ed245fa27b6ce6c32f0a216
Merge branch 'release18' into bugfix/1.8.10-pack2

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
 
 * Spanish translation for the "es-ES" and "es" language codes.
20
 
 * Diomedes Domínguez <diomedes.domimnguez@gmail.com>
21
 
 */
22
 
$.fn.ajaxSelectPicker.locale["es-ES"] = {
23
 
    /**
24
 
     * @member $.fn.ajaxSelectPicker.locale
25
 
     * @cfg {String} currentlySelected = 'Currently Selected'
26
 
     * @markdown
27
 
     * El texto que se utilizará para la etiqueta del grupo de opciones cuando se conservan las opciones seleccionadas.
28
 
     */
29
 
    currentlySelected: "Seleccionado",
30
 
 
31
 
    /**
32
 
     * @member $.fn.ajaxSelectPicker.locale
33
 
     * @cfg {String} emptyTitle = 'Select and begin typing'
34
 
     * @markdown
35
 
     * El texto que se utilizará como título para el elemento de selección cuando no hay elementos para mostrar.
36
 
     */
37
 
    emptyTitle: "Seleccione y comience a escribir",
38
 
 
39
 
    /**
40
 
     * @member $.fn.ajaxSelectPicker.locale
41
 
     * @cfg {String} errorText = ''Unable to retrieve results'
42
 
     * @markdown
43
 
     * El texto que se utilizan en el contenedor de estado cuando una solicitud devuelve con un error.
44
 
     */
45
 
    errorText: "No se puede recuperar resultados",
46
 
 
47
 
    /**
48
 
     * @member $.fn.ajaxSelectPicker.locale
49
 
     * @cfg {String} searchPlaceholder = 'Search...'
50
 
     * @markdown
51
 
     * El texto que se utilizará para el atributo marcador de posición de entrada de búsqueda.
52
 
     */
53
 
    searchPlaceholder: "Buscar...",
54
 
 
55
 
    /**
56
 
     * @member $.fn.ajaxSelectPicker.locale
57
 
     * @cfg {String} statusInitialized = 'Start typing a search query'
58
 
     * @markdown
59
 
     * El texto utilizado en el contenedor de estado cuando se inicializa.
60
 
     */
61
 
    statusInitialized: "Empieza a escribir una consulta de búsqueda",
62
 
 
63
 
    /**
64
 
     * @member $.fn.ajaxSelectPicker.locale
65
 
     * @cfg {String} statusNoResults = 'No Results'
66
 
     * @markdown
67
 
     * El texto utilizado en el contenedor de estado cuando la solicitud no devolvió resultados.
68
 
     */
69
 
    statusNoResults: "Sin Resultados",
70
 
 
71
 
    /**
72
 
     * @member $.fn.ajaxSelectPicker.locale
73
 
     * @cfg {String} statusSearching = 'Searching...'
74
 
     * @markdown
75
 
     * El texto que se utilizan en el contenedor de estado cuando se está iniciando una solicitud.
76
 
     */
77
 
    statusSearching: "Buscando...",
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: 'Introduzca más caracteres'
86
 
};
87
 
$.fn.ajaxSelectPicker.locale.es = $.fn.ajaxSelectPicker.locale["es-ES"];
88
 
})(jQuery);