mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
43 lines
1.3 KiB
JavaScript
Executable file
43 lines
1.3 KiB
JavaScript
Executable file
/**
|
|
* Bootstrap Table Romanian translation
|
|
* Author: cristake <[email protected]>
|
|
*/
|
|
(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); |