mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-12 00:24:07 -08:00
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
|
/**
|
||
|
* Bootstrap Table Italian translation
|
||
|
* Author: Davide Renzi<davide.renzi@gmail.com>
|
||
|
* Author: Davide Borsatto <davide.borsatto@gmail.com>
|
||
|
*/
|
||
|
(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);
|