- Contract.php: 返回合约账户余额(balance_contract) - My.php: 地址管理增加BTC/ETH - AppContract.php: 一键平仓(closeall) - AppProxy.php: 代理专属注册链接 + 分级权限(L1/L2) - site.php: 手续费减半(0.018→0.009) - agent_permission_setup.sql: 代理权限SQL - crypto_news_crawler.py: 新闻自动采集脚本
53 lines
1.6 KiB
JavaScript
Executable File
53 lines
1.6 KiB
JavaScript
Executable File
/**
|
|
* 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);
|