You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
11 months ago
|
/**
|
||
|
* Bootstrap Table Romanian translation
|
||
|
* Author: cristake <cristianiosif@me.com>
|
||
|
*/
|
||
|
(function ($) {
|
||
|
'use strict';
|
||
|
|
||
|
$.fn.bootstrapTable.locales['ro-RO'] = {
|
||
|
formatLoadingMessage: function () {
|
||
|
return 'Se incarca, va rugam asteptati...';
|
||
|
},
|
||
|
formatRecordsPerPage: function (pageNumber) {
|
||
|
return pageNumber + ' inregistrari pe pagina';
|
||
|
},
|
||
|
formatShowingRows: function (pageFrom, pageTo, totalRows) {
|
||
|
return 'Arata de la ' + pageFrom + ' pana la ' + pageTo + ' din ' + totalRows + ' randuri';
|
||
|
},
|
||
|
formatSearch: function () {
|
||
|
return 'Cauta';
|
||
|
},
|
||
|
formatNoMatches: function () {
|
||
|
return 'Nu au fost gasite inregistrari';
|
||
|
},
|
||
|
formatPaginationSwitch: function () {
|
||
|
return 'Ascunde/Arata paginatia';
|
||
|
},
|
||
|
formatRefresh: function () {
|
||
|
return 'Reincarca';
|
||
|
},
|
||
|
formatToggle: function () {
|
||
|
return 'Comuta';
|
||
|
},
|
||
|
formatColumns: function () {
|
||
|
return 'Coloane';
|
||
|
},
|
||
|
formatAllRows: function () {
|
||
|
return 'Toate';
|
||
|
}
|
||
|
};
|
||
|
|
||
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ro-RO']);
|
||
|
|
||
|
})(jQuery);
|