init
- 框架初始化 - 安装插件 - 修复PHP8.4报错
This commit is contained in:
52
public/assets/libs/bootstrap-table/dist/locale/bootstrap-table-it-IT.js
vendored
Normal file
52
public/assets/libs/bootstrap-table/dist/locale/bootstrap-table-it-IT.js
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
/**
|
||||
* Bootstrap Table Italian translation
|
||||
* Author: Davide Renzi<davide.renzi@gmail.com>
|
||||
* Author: Davide Borsatto <davide.borsatto@gmail.com>
|
||||
* Author: Alessio Felicioni <alessio.felicioni@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 'Elementi mostrati da ' + pageFrom + ' a ' + pageTo + ' (Numero totali di elementi ' + totalRows + ')';
|
||||
},
|
||||
formatSearch: function () {
|
||||
return 'Cerca';
|
||||
},
|
||||
formatNoMatches: function () {
|
||||
return 'Nessun elemento trovato';
|
||||
},
|
||||
formatPaginationSwitch: function () {
|
||||
return 'Nascondi/Mostra paginazione';
|
||||
},
|
||||
formatRefresh: function () {
|
||||
return 'Aggiorna';
|
||||
},
|
||||
formatToggle: function () {
|
||||
return 'Attiva/Disattiva';
|
||||
},
|
||||
formatColumns: function () {
|
||||
return 'Colonne';
|
||||
},
|
||||
formatAllRows: function () {
|
||||
return 'Tutto';
|
||||
},
|
||||
formatExport: function () {
|
||||
return 'Esporta dati';
|
||||
},
|
||||
formatClearFilters: function () {
|
||||
return 'Pulisci filtri';
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['it-IT']);
|
||||
|
||||
})(jQuery);
|
||||
Reference in New Issue
Block a user