all
This commit is contained in:
43
Productivite/Snipe-IT/public/js/locale/bootstrap-table-ro-RO.js
vendored
Normal file
43
Productivite/Snipe-IT/public/js/locale/bootstrap-table-ro-RO.js
vendored
Normal file
@ -0,0 +1,43 @@
|
||||
/**
|
||||
* 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);
|
Reference in New Issue
Block a user