mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-10 07:30:26 +00:00
16 lines
579 B
JavaScript
16 lines
579 B
JavaScript
|
/*!
|
||
|
* Bootstrap-select v1.6.3 (http://silviomoreto.github.io/bootstrap-select/)
|
||
|
*
|
||
|
* Copyright 2013-2014 bootstrap-select
|
||
|
* Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
|
||
|
*/
|
||
|
(function ($) {
|
||
|
$.fn.selectpicker.defaults = {
|
||
|
noneSelectedText: 'Nada selecionado',
|
||
|
noneResultsText: 'Nada encontrado contendo',
|
||
|
countSelectedText: 'Selecionado {0} de {1}',
|
||
|
maxOptionsText: ['Limite excedido (máx. {n} {var})', 'Limite do grupo excedido (máx. {n} {var})', ['itens', 'item']],
|
||
|
multipleSeparator: ', '
|
||
|
};
|
||
|
}(jQuery));
|