- 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: 新闻自动采集脚本
13 lines
924 B
PHP
Executable File
13 lines
924 B
PHP
Executable File
<?php
|
|
|
|
return [
|
|
'The parent group can not be its own child' => '父组别不能是自身的子组别',
|
|
'The parent group can not found' => '父组别未找到',
|
|
'Group not found' => '组别未找到',
|
|
'Can not change the parent to child' => '父组别不能是它的子组别',
|
|
'Can not change the parent to self' => '父组别不能是它的子组别',
|
|
'You can not delete group that contain child group and administrators' => '你不能删除含有子组和管理员的组',
|
|
'The parent group exceeds permission limit' => '父组别超出权限范围',
|
|
'The parent group can not be its own child or itself' => '父组别不能是它的子组别及本身',
|
|
];
|