- 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: 新闻自动采集脚本
24 lines
849 B
JavaScript
Executable File
24 lines
849 B
JavaScript
Executable File
/*
|
|
* Translated default messages for bootstrap-select.
|
|
* Locale: DE (German, deutsch)
|
|
* Region: DE (Germany, Deutschland)
|
|
*/
|
|
(function ($) {
|
|
$.fn.selectpicker.defaults = {
|
|
noneSelectedText: 'Bitte wählen...',
|
|
noneResultsText: 'Keine Ergebnisse für {0}',
|
|
countSelectedText: function (numSelected, numTotal) {
|
|
return (numSelected == 1) ? "{0} Element ausgewählt" : "{0} Elemente ausgewählt";
|
|
},
|
|
maxOptionsText: function (numAll, numGroup) {
|
|
return [
|
|
(numAll == 1) ? 'Limit erreicht ({n} Element max.)' : 'Limit erreicht ({n} Elemente max.)',
|
|
(numGroup == 1) ? 'Gruppen-Limit erreicht ({n} Element max.)' : 'Gruppen-Limit erreicht ({n} Elemente max.)'
|
|
];
|
|
},
|
|
selectAllText: 'Alles auswählen',
|
|
deselectAllText: 'Nichts auswählen',
|
|
multipleSeparator: ', '
|
|
};
|
|
})(jQuery);
|