You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
1.0 KiB
23 lines
1.0 KiB
/*
|
|
* Translated default messages for bootstrap-select.
|
|
* Locale: BG (Bulgaria)
|
|
* Region: BG (Bulgaria)
|
|
*/
|
|
(function ($) {
|
|
$.fn.selectpicker.defaults = {
|
|
noneSelectedText: 'Нищо избрано',
|
|
noneResultsText: 'Няма резултат за {0}',
|
|
countSelectedText: function (numSelected, numTotal) {
|
|
return (numSelected == 1) ? "{0} избран елемент" : "{0} избрани елемента";
|
|
},
|
|
maxOptionsText: function (numAll, numGroup) {
|
|
return [
|
|
(numAll == 1) ? 'Лимита е достигнат ({n} елемент максимум)' : 'Лимита е достигнат ({n} елемента максимум)',
|
|
(numGroup == 1) ? 'Груповия лимит е достигнат ({n} елемент максимум)' : 'Груповия лимит е достигнат ({n} елемента максимум)'
|
|
];
|
|
},
|
|
selectAllText: 'Избери всички',
|
|
deselectAllText: 'Размаркирай всички',
|
|
multipleSeparator: ', '
|
|
};
|
|
})(jQuery);
|
|
|