mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-10 00:34:58 +00:00
Adding build js & css
This commit is contained in:
18
Resources/public/js/select2/select2_locale_pt-BR.js
vendored
Normal file
18
Resources/public/js/select2/select2_locale_pt-BR.js
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* Select2 Brazilian Portuguese translation
|
||||
*/
|
||||
(function ($) {
|
||||
"use strict";
|
||||
|
||||
$.fn.select2.locales['pt-BR'] = {
|
||||
formatNoMatches: function () { return "Nenhum resultado encontrado"; },
|
||||
formatAjaxError: function () { return "Erro na busca"; },
|
||||
formatInputTooShort: function (input, min) { var n = min - input.length; return "Digite " + (min == 1 ? "" : "mais") + " " + n + " caracter" + (n == 1? "" : "es"); },
|
||||
formatInputTooLong: function (input, max) { var n = input.length - max; return "Apague " + n + " caracter" + (n == 1? "" : "es"); },
|
||||
formatSelectionTooBig: function (limit) { return "Só é possível selecionar " + limit + " elemento" + (limit == 1 ? "" : "s"); },
|
||||
formatLoadMore: function (pageNumber) { return "Carregando mais resultados…"; },
|
||||
formatSearching: function () { return "Buscando…"; }
|
||||
};
|
||||
|
||||
$.extend($.fn.select2.defaults, $.fn.select2.locales['pt-BR']);
|
||||
})(jQuery);
|
Reference in New Issue
Block a user