1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| /*
| * Translated default messages for bootstrap-select.
| * Locale: RO (Romanian)
| * Region: RO (Romania)
| * Alex Florea <alecz.fia@gmail.com>
| */
| (function ($) {
| $.fn.selectpicker.defaults = {
| noneSelectedText: 'Nu a fost selectat nimic',
| noneResultsText: 'Nu exista niciun rezultat {0}',
| countSelectedText: '{0} din {1} selectat(e)',
| maxOptionsText: ['Limita a fost atinsa ({n} {var} max)', 'Limita de grup a fost atinsa ({n} {var} max)', ['iteme', 'item']],
| multipleSeparator: ', '
| };
| })(jQuery);
|
|