mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
39 lines
1.1 KiB
JavaScript
Executable file
39 lines
1.1 KiB
JavaScript
Executable file
/**
|
|
* Bootstrap Table Italian translation
|
|
* Author: Davide Renzi<[email protected]>
|
|
* Author: Davide Borsatto <[email protected]>
|
|
*/
|
|
(function ($) {
|
|
'use strict';
|
|
|
|
$.fn.bootstrapTable.locales['it-IT'] = {
|
|
formatLoadingMessage: function () {
|
|
return 'Caricamento in corso...';
|
|
},
|
|
formatRecordsPerPage: function (pageNumber) {
|
|
return pageNumber + ' elementi per pagina';
|
|
},
|
|
formatShowingRows: function (pageFrom, pageTo, totalRows) {
|
|
return 'Pagina ' + pageFrom + ' di ' + pageTo + ' (' + totalRows + ' records)';
|
|
},
|
|
formatSearch: function () {
|
|
return 'Cerca';
|
|
},
|
|
formatNoMatches: function () {
|
|
return 'Nessun elemento trovato';
|
|
},
|
|
formatRefresh: function () {
|
|
return 'Aggiorna';
|
|
},
|
|
formatToggle: function () {
|
|
return 'Alterna';
|
|
},
|
|
formatColumns: function () {
|
|
return 'Colonne';
|
|
}
|
|
};
|
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['it-IT']);
|
|
|
|
})(jQuery);
|