ajout app
This commit is contained in:
38
SNIPE-IT/public/js/locale/bootstrap-table-it-IT.js
vendored
Normal file
38
SNIPE-IT/public/js/locale/bootstrap-table-it-IT.js
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
/**
|
||||
* 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);
|
Reference in New Issue
Block a user