hiddifypanel 9.0.0.dev90__py3-none-any.whl → 10.5.0.dev0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hiddifypanel/VERSION +1 -1
- hiddifypanel/VERSION.py +2 -2
- hiddifypanel/auth.py +30 -9
- hiddifypanel/base.py +60 -52
- hiddifypanel/cache.py +43 -25
- hiddifypanel/database.py +9 -0
- hiddifypanel/drivers/abstract_driver.py +2 -0
- hiddifypanel/drivers/singbox_api.py +17 -15
- hiddifypanel/drivers/ssh_liberty_bridge_api.py +3 -1
- hiddifypanel/drivers/user_driver.py +12 -6
- hiddifypanel/drivers/wireguard_api.py +7 -2
- hiddifypanel/drivers/xray_api.py +14 -9
- hiddifypanel/hutils/__init__.py +4 -0
- hiddifypanel/hutils/convert.py +13 -2
- hiddifypanel/hutils/crypto.py +48 -0
- hiddifypanel/hutils/encode.py +4 -1
- hiddifypanel/hutils/flask.py +38 -5
- hiddifypanel/hutils/github_issue.py +1 -1
- hiddifypanel/hutils/importer/xui.py +5 -2
- hiddifypanel/{models/utils.py → hutils/model.py} +14 -4
- hiddifypanel/hutils/network/auto_ip_selector.py +2 -0
- hiddifypanel/hutils/network/net.py +46 -2
- hiddifypanel/hutils/node/__init__.py +3 -0
- hiddifypanel/hutils/node/api_client.py +76 -0
- hiddifypanel/hutils/node/child.py +147 -0
- hiddifypanel/hutils/node/parent.py +100 -0
- hiddifypanel/hutils/node/shared.py +65 -0
- hiddifypanel/hutils/proxy/__init__.py +5 -0
- hiddifypanel/hutils/proxy/clash.py +161 -0
- hiddifypanel/hutils/proxy/shared.py +434 -0
- hiddifypanel/hutils/proxy/singbox.py +339 -0
- hiddifypanel/hutils/proxy/xray.py +235 -0
- hiddifypanel/hutils/proxy/xrayjson.py +391 -0
- hiddifypanel/hutils/random.py +4 -0
- hiddifypanel/hutils/utils.py +4 -1
- hiddifypanel/models/__init__.py +2 -2
- hiddifypanel/models/admin.py +31 -17
- hiddifypanel/models/base_account.py +7 -7
- hiddifypanel/models/child.py +30 -16
- hiddifypanel/models/config.py +45 -16
- hiddifypanel/models/config_enum.py +68 -17
- hiddifypanel/models/domain.py +28 -20
- hiddifypanel/models/parent_domain.py +2 -2
- hiddifypanel/models/proxy.py +29 -20
- hiddifypanel/models/report.py +2 -3
- hiddifypanel/models/usage.py +2 -2
- hiddifypanel/models/user.py +33 -22
- hiddifypanel/panel/admin/Actions.py +13 -19
- hiddifypanel/panel/admin/AdminstratorAdmin.py +14 -3
- hiddifypanel/panel/admin/Dashboard.py +5 -10
- hiddifypanel/panel/admin/DomainAdmin.py +35 -48
- hiddifypanel/panel/admin/NodeAdmin.py +6 -2
- hiddifypanel/panel/admin/ProxyAdmin.py +6 -5
- hiddifypanel/panel/admin/QuickSetup.py +21 -20
- hiddifypanel/panel/admin/SettingAdmin.py +107 -62
- hiddifypanel/panel/admin/UserAdmin.py +22 -21
- hiddifypanel/panel/admin/templates/index.html +1 -1
- hiddifypanel/panel/admin/templates/model/user_list.html +44 -20
- hiddifypanel/panel/admin/templates/parent_dash.html +2 -4
- hiddifypanel/panel/admin/templates/result.html +2 -3
- hiddifypanel/panel/cf_api.py +1 -2
- hiddifypanel/panel/cli.py +16 -16
- hiddifypanel/panel/commercial/ProxyDetailsAdmin.py +16 -12
- hiddifypanel/panel/commercial/__init__.py +7 -5
- hiddifypanel/panel/commercial/restapi/v1/__init__.py +1 -1
- hiddifypanel/panel/commercial/restapi/v1/tgbot.py +1 -1
- hiddifypanel/panel/commercial/restapi/v1/tgmsg.py +14 -10
- hiddifypanel/panel/commercial/restapi/v2/admin/__init__.py +0 -5
- hiddifypanel/panel/commercial/restapi/v2/admin/admin_info_api.py +2 -2
- hiddifypanel/panel/commercial/restapi/v2/admin/admin_log_api.py +4 -5
- hiddifypanel/panel/commercial/restapi/v2/admin/admin_user_api.py +8 -25
- hiddifypanel/panel/commercial/restapi/v2/admin/admin_users_api.py +4 -4
- hiddifypanel/panel/commercial/restapi/v2/admin/schema.py +157 -0
- hiddifypanel/panel/commercial/restapi/v2/admin/server_status_api.py +3 -3
- hiddifypanel/panel/commercial/restapi/v2/admin/user_api.py +9 -66
- hiddifypanel/panel/commercial/restapi/v2/admin/users_api.py +1 -1
- hiddifypanel/panel/commercial/restapi/v2/child/__init__.py +18 -0
- hiddifypanel/panel/commercial/restapi/v2/child/actions.py +63 -0
- hiddifypanel/panel/commercial/restapi/v2/child/register_parent_api.py +34 -0
- hiddifypanel/panel/commercial/restapi/v2/child/schema.py +7 -0
- hiddifypanel/panel/commercial/restapi/v2/child/sync_parent_api.py +21 -0
- hiddifypanel/panel/commercial/restapi/v2/panel/__init__.py +13 -0
- hiddifypanel/panel/commercial/restapi/v2/panel/info.py +18 -0
- hiddifypanel/panel/commercial/restapi/v2/panel/ping_pong.py +23 -0
- hiddifypanel/panel/commercial/restapi/v2/panel/schema.py +7 -0
- hiddifypanel/panel/commercial/restapi/v2/parent/__init__.py +16 -0
- hiddifypanel/panel/commercial/restapi/v2/parent/register_api.py +65 -0
- hiddifypanel/panel/commercial/restapi/v2/parent/schema.py +115 -0
- hiddifypanel/panel/commercial/restapi/v2/parent/status_api.py +26 -0
- hiddifypanel/panel/commercial/restapi/v2/parent/sync_api.py +53 -0
- hiddifypanel/panel/commercial/restapi/v2/parent/usage_api.py +57 -0
- hiddifypanel/panel/commercial/restapi/v2/user/apps_api.py +17 -23
- hiddifypanel/panel/commercial/restapi/v2/user/configs_api.py +23 -26
- hiddifypanel/panel/commercial/telegrambot/admin.py +1 -2
- hiddifypanel/panel/common.py +25 -8
- hiddifypanel/panel/common_bp/login.py +2 -2
- hiddifypanel/panel/hiddify.py +22 -185
- hiddifypanel/panel/init_db.py +102 -55
- hiddifypanel/panel/usage.py +33 -18
- hiddifypanel/panel/user/__init__.py +0 -1
- hiddifypanel/panel/user/templates/all_configs copy.txt +2 -2
- hiddifypanel/panel/user/templates/all_configs.txt +2 -2
- hiddifypanel/panel/user/templates/base_singbox_config.json.j2 +2 -1
- hiddifypanel/panel/user/templates/base_xray_config.json.j2 +125 -0
- hiddifypanel/panel/user/templates/clash_config copy.yml +1 -1
- hiddifypanel/panel/user/templates/clash_config.yml +4 -4
- hiddifypanel/panel/user/templates/clash_proxies.yml +1 -1
- hiddifypanel/panel/user/templates/home/all-configs.html +2 -2
- hiddifypanel/panel/user/templates/home/all-configs_old.html +1 -1
- hiddifypanel/panel/user/templates/home/ios copy.html +2 -2
- hiddifypanel/panel/user/templates/home/usage.html +1 -1
- hiddifypanel/panel/user/templates/new.html +2 -2
- hiddifypanel/panel/user/user.py +56 -50
- hiddifypanel/static/css/custom.css +31 -0
- hiddifypanel/static/images/favicon.ico +0 -0
- hiddifypanel/static/images/hiddify-old.png +0 -0
- hiddifypanel/static/images/hiddify.png +0 -0
- hiddifypanel/static/images/hiddify2.png +0 -0
- hiddifypanel/static/new/assets/{index-1b891a7c.js → index-ccb9873c.js} +56 -56
- hiddifypanel/static/new/assets/index-fa00de9a.css +1 -0
- hiddifypanel/static/new/i18n/en.json +6 -6
- hiddifypanel/static/new/i18n/fa.json +2 -2
- hiddifypanel/templates/admin-layout.html +30 -43
- hiddifypanel/templates/fake.html +0 -4
- hiddifypanel/templates/flaskadmin-layout.html +7 -3
- hiddifypanel/templates/master.html +11 -6
- hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/en/LC_MESSAGES/messages.po +2082 -1977
- hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/fa/LC_MESSAGES/messages.po +2035 -1924
- hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/pt/LC_MESSAGES/messages.po +1911 -1840
- hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/ru/LC_MESSAGES/messages.po +2036 -1881
- hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/zh/LC_MESSAGES/messages.po +1857 -1720
- hiddifypanel/translations.i18n/en.json +992 -933
- hiddifypanel/translations.i18n/fa.json +994 -935
- hiddifypanel/translations.i18n/pt.json +994 -935
- hiddifypanel/translations.i18n/ru.json +994 -935
- hiddifypanel/translations.i18n/zh.json +971 -912
- {hiddifypanel-9.0.0.dev90.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/METADATA +47 -47
- {hiddifypanel-9.0.0.dev90.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/RECORD +147 -120
- {hiddifypanel-9.0.0.dev90.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/WHEEL +1 -1
- hiddifypanel/panel/commercial/restapi/v2/DTO.py +0 -9
- hiddifypanel/panel/commercial/restapi/v2/hello/__init__.py +0 -16
- hiddifypanel/panel/commercial/restapi/v2/hello/hello.py +0 -32
- hiddifypanel/panel/user/link_maker.py +0 -1083
- hiddifypanel/static/new/assets/index-669b32c8.css +0 -1
- {hiddifypanel-9.0.0.dev90.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/LICENSE.md +0 -0
- {hiddifypanel-9.0.0.dev90.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/entry_points.txt +0 -0
- {hiddifypanel-9.0.0.dev90.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/top_level.txt +0 -0
@@ -1,650 +1,1086 @@
|
|
1
1
|
{
|
2
|
+
" Search Settings": "搜索设置",
|
3
|
+
"%(count)s records were successfully disabled.": "%(count)s 条记录已成功禁用。",
|
4
|
+
"%(count)s records were successfully enabled.": "%(count)s 条记录已成功启用。",
|
5
|
+
"%(placeholder)s": "%(placeholder)s",
|
2
6
|
"0 - Last day": "最后一天",
|
7
|
+
"Access Denied!": "拒绝访问",
|
8
|
+
"Actions": "行动",
|
9
|
+
"Active": "积极",
|
10
|
+
"Active Users": "活跃用户",
|
11
|
+
"Add": "添加",
|
12
|
+
"Add some text that is only visible to super_admin.": "添加一些只有超级管理员可见的文本",
|
13
|
+
"Add some text that is only visible to you.": "您可以添加一些只有您可见的文本",
|
14
|
+
"Added by": "添加者",
|
15
|
+
"Admins": "管理员",
|
16
|
+
"Alias": "别名",
|
17
|
+
"All": "全部",
|
18
|
+
"All Users": "全部用户",
|
19
|
+
"Apply": "应用",
|
20
|
+
"Are you sure you want to delete \\'%(name)s\\' recursively?": "是否删除 \\'%(name)s\\' 递归函数?",
|
21
|
+
"Are you sure you want to delete \\'%(name)s\\'?": "是否确定删除 \\'%(name)s\\'?",
|
22
|
+
"Are you sure you want to delete this record?": "是否确认删除该记录",
|
23
|
+
"Are you sure you want to do this action?": "⚠️您确定要执行此操作吗?",
|
24
|
+
"Back": "返回",
|
25
|
+
"Backup": "备份",
|
26
|
+
"Beta": "☑️ 测试版",
|
27
|
+
"Bridge Servers": "➖ 桥接服务器",
|
28
|
+
"Bug": "错误/功能",
|
29
|
+
"CPU %(cores)s Cores": "CPU %(cores)s 核心",
|
30
|
+
"Can add sub admin": "👥 可以添加子管理员",
|
31
|
+
"Can not connect to Cloudflare.": "无法连接cloudflare",
|
32
|
+
"Check again": "再检查一遍",
|
33
|
+
"Childs": "孩子们",
|
34
|
+
"China": "🇨🇳中国",
|
35
|
+
"Click here to see the complete log": "单击此处查看完整日志",
|
36
|
+
"Click to Import": "点击导入",
|
37
|
+
"Click to Start Anti-Filter.": "<i class='fa-solid fa-play'></i> 点击以设置反过滤器",
|
38
|
+
"Close": "关闭",
|
39
|
+
"Commercial use": "商业用途",
|
40
|
+
"Config file is incorrect": "配置文件不正确。",
|
41
|
+
"Copy Link": "复制链接",
|
42
|
+
"Couldn't find your ip addresses": "找不到您的 IP 地址",
|
43
|
+
"Count:": "数数:",
|
44
|
+
"Create": "创造",
|
45
|
+
"Create Directory": "创建目录",
|
46
|
+
"Create New Record": "创建新记录",
|
47
|
+
"Create Package": "创建包",
|
48
|
+
"Current Domain": "当前域名",
|
49
|
+
"Dear {}\n\nYour hiddify information is\nUUID: {}\nLast online date: {}\nExpire time: {}\nUsage class: {}\n": "亲爱的 {}\n\n您的 Hiddify 信息是\nUUID:{}\n最后在线日期:{}\n过期时间:{}\n使用类别:{}",
|
50
|
+
"Define the admin mode. ": "🥇🥈🥉 定义管理模式",
|
51
|
+
"Define the user mode. Should the usage reset every month?": "用户的套餐模式。使用量是否应该每月、每周等重置",
|
52
|
+
"Delete?": "删除?",
|
53
|
+
"Develop": "⚠️开发",
|
54
|
+
"Direct": "➖ 直接",
|
55
|
+
"Direct mode means you want to use your server directly (for usual use), CDN means that you use your server on behind of a CDN provider.": "➡️ <b>直接:</b>如果您在仅 DNS 模式下在 DNS 提供商上专门配置域,请选择此模式。 (CDN 或代理模式关闭)<br>\n🔙 <b>旧 Direct 模式:</b> 该模式与 Direct 模式类似,但不使用 gRPC 进行通信。如果您希望在 DNS 提供商上以仅 DNS 模式配置域而不使用 gRPC,请选择旧模式。\n<br>\n🔀 <b>CDN:</b>如果您的服务器域使用 CDN 提供商,请选择此模式。 (代理模式开启)<br>\n☑️ <b>自动 CDN IP 选择器:</b>此模式的功能与 CDN 模式类似,但根据 <a href='https://ircf.space' target='_blank' 提供的 IP 进行自动 IP 分配>ircf.space</a>。 Auto CDN IP 模式下,从域名解析 IP 地址,CDN 模式下,返回域名。<br>\n♾️ <b>中继:</b>如果您使用一台或多台中间服务器,请选择此模式。 <a href='https://github.com/hiddify/hiddify-config/discussions/129' target='_blank'>了解更多</a>\n<br>\n✴️ <b>Cloudflare Worker:</b>此模式可以在 Cloudflare 中自动为您的域创建工作人员。通过注册此域来简化工作人员的设置和管理,因为工作人员注册的必要步骤是在 Cloudflare 中自动处理的。\n<br>\n🔂 <b>Reality:</b> 利用 Reality 协议创建多个域。\n<br>\n🆎 <b>假站点:</b>如果您想使用假域名(例如 Soft98.ir)绕过 SNI 白名单代理,请选择此模式。 (不建议)\n<br>",
|
56
|
+
"Disable": "禁用",
|
57
|
+
"Disk": "硬盘",
|
58
|
+
"Domain": "域名",
|
59
|
+
"Domain (%(domain)s)-> IP=%(domain_ip)s is not matched with your ip=%(server_ip)s which is required in direct mode": "域 (%(domain)s)-> IP = %(domain_ip)s 与您的 IP = %(server_ip)s 不同。这在直接模式下是必需的",
|
60
|
+
"Domain IP=%(domain_ip)s is not matched with your ip=%(server_ip)s which is required in direct mode": "域名IP=%(domain_ip)s is not matched with your ip=%(server_ip)s需要用于直连模式",
|
61
|
+
"Domain can not be resolved! there is a problem in your domain": "域名无法解析!您的域有问题。请检查您的域配置。",
|
62
|
+
"Domain is not REALITY friendly!": "域名对现实不友好!",
|
63
|
+
"Domain?": "域名?",
|
64
|
+
"Donation": {
|
65
|
+
"description": "✳️ 我们需要你的帮助来开发这个项目\n <br>\n 如果你是开发者或者编程人员请联系我们 <a href='mailto:info@hiddify.com'>info@hiddify.com</a>\n <br><br>\n \n ℹ️ 同样我们需要财政帮以便我们长远的发展和服务器费用 (we are Non-Profit).\n <br>\n <h5>Payment Methods :</h5>\n <ul>\n <li> <div class='btn-group'>\n <a role='button' data-copy='EQCWnykA-YhavOXgH3sf-uxtXLjy83_9n5bJPGRPE8r2247_' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n <a data-copy='EQCWnykA-YhavOXgH3sf-uxtXLjy83_9n5bJPGRPE8r2247_' role='button' class='btn btn-info share-link'>TON</a> </div></li>\n \n <li> <div class='btn-group'>\n <a role='button' data-copy='TXZtFUxyBPMSykAWogu7C4zmbjySKqMcDE' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n <a data-copy='TXZtFUxyBPMSykAWogu7C4zmbjySKqMcDE' role='button' class='btn btn-info share-link'>USDT (TRC20)</a> </div></li>\n \n <li> <div class='btn-group'>\n <a role='button' data-copy='MCHoh7xwaDBBnQgANPpBtXiekagV6KpdrM' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n <a data-copy='MCHoh7xwaDBBnQgANPpBtXiekagV6KpdrM' role='button' class='btn btn-info share-link'>Litecoin</a> </div></li>\n \n <li> <div class='btn-group'>\n <a role='button' data-copy='0xF5CFc65ee336B377C2a37EA3BCD0CaD0d0F0CbA0' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n <a data-copy='0xF5CFc65ee336B377C2a37EA3BCD0CaD0d0F0CbA0' role='button' class='btn btn-info share-link'>Ethereum</a> </div></li>\n \n <li> <div class='btn-group'>\n <a role='button' data-copy='bc1qkfp7n3wxu2zc9mdy20cf27d5pujj65myww8f60' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n <a data-copy='bc1qkfp7n3wxu2zc9mdy20cf27d5pujj65myww8f60' role='button' class='btn btn-info share-link'>Bitcoin</a> </div></li>\n \n <li> <div class='btn-group'>\n <a role='button' data-copy='DPerFS2vCu5XnE3He32BaPVTkUDcKLsEaj' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n <a data-copy='DPerFS2vCu5XnE3He32BaPVTkUDcKLsEaj' role='button' class='btn btn-info share-link'>Dogecoin</a> </div></li>\n </ul>\n \n <br>\n \n 我们也需要以下帮助:\n <ul>\n <li>👥 向其他人分享我们的软件</li>\n <li>📝Python开发者</li>\n <li>📝Swift 开发者</li>\n <li>📝Flutter 开发者</li>\n <li>📝Go 开发者</li>\n <li>🖥内容提供者</li>\n </ul>\n 请联系我们 <a href='mailto:info@hiddify.com'>info@hiddify.com</a> if you can help us.",
|
66
|
+
"title": "捐款"
|
67
|
+
},
|
68
|
+
"Download App": "下载应用程序",
|
69
|
+
"Edit": "编辑",
|
70
|
+
"Edit Proxy Names": "✏️ 修改代理",
|
71
|
+
"Enable": "❇️启用",
|
72
|
+
"Error in auto cdn format": "⚠️ 自动 CDN 格式错误",
|
73
|
+
"Error! auto cdn ip can not be find, please contact admin.": "自动 CDN IP 错误!找不到,请联系管理员",
|
74
|
+
"Example Domains": "测试并推荐域名",
|
75
|
+
"Expired Users": "过期用户",
|
76
|
+
"Export": "导入",
|
77
|
+
"Fake": "➖ 假",
|
78
|
+
"Filter": "过滤",
|
79
|
+
"Finished": "完成的...",
|
80
|
+
"From Last Restart": "从上次重新启动开始",
|
81
|
+
"From when the user package will be started? Empty for start from first connection": "指定包的开始日期。留空以从第一个连接开始。",
|
82
|
+
"Hiddify": "希迪菲",
|
83
|
+
"Hiddify Android": "Android 系统",
|
84
|
+
"HiddifyClash": "HiddifyClash",
|
85
|
+
"HiddifyN intro": "请从 %(dl_link)s 安装 HiddifyN。\n然后点击下面的链接。它会自动完成所有事情。\n<br/>",
|
86
|
+
"HiddifyNG": "HiddifyNG <span class='badge badge-success'>推荐</span>",
|
87
|
+
"HiddifyNG intro": "📌 请从以下任一链接安装 HiddifyNG:\n<br/>\n %(dl_link)s %(play_link)s\n<br/>\n然后单击下面的链接并在 HiddifyNG 中打开它。\n<br/>",
|
88
|
+
"HiddigyN": "HiddifyN <span class='badge badge-success'>推荐</span>",
|
89
|
+
"Hooray 🎉 🎉 🎉 \nWelcome to hiddifybot.\nStart by clicking the link on the panel or entering your UUID.": "万岁🎉🎉🎉\n欢迎使用 Hiddify 机器人\n首先单击面板上的链接或输入您的 UUID。",
|
90
|
+
"Hover the user to see the reason": "将鼠标悬停在用户上即可查看原因",
|
91
|
+
"How many days this package should be available?": "这个套餐有多少天?",
|
92
|
+
"How many?": "多少?",
|
93
|
+
"If monthly is enabled, the usage will be reset after 30 days from this date.": "如果启用每月选项,当该数字达到 30 时,用户使用量将被重置(对于每周和每日,该数字为 7 和 1)",
|
94
|
+
"If the application do not open automatically, please click <a class='btn btn-primary copy-link'\n href='%(sub)s'>this universal link</a> to copy and paste it on\n your application, or:": "如果应用没有自动开启, 请点击 <a class='btn btn-primary copy-link'\n href='%(sub)s'>this universal link</a> 复制并打开应用粘贴\n 你的应用, or:",
|
95
|
+
"Import": "在应用程序中导入",
|
96
|
+
"Import in": "导入",
|
97
|
+
"In 5 minutes": "5 分钟内",
|
98
|
+
"In CDN mode, Domain IP=%(domain_ip)s should be different to your ip=%(server_ip)s": "在CDN模式,域名IP=%(domain_ip)s应该与你的IP不同=%(server_ip)s",
|
99
|
+
"In this section, you can add your domain. You need to add at least one domain in direct mode.": "1️⃣ 在此部分中,您可以添加您的域名。\n<br>\n2️⃣ 如果您想减少出现脏 IP 的可能性,可以添加多个中继服务器<a href='https://github.com/hiddify/hiddify-config/discussions/129'>阅读更多</a>。\n<br>\n3️⃣ 如果您的面板中有多个 IPv4 或 IPv6,您必须将指向它们的域添加为中继。",
|
100
|
+
"Incorrect Password": "⚠️密码错误",
|
101
|
+
"Install": "安装",
|
102
|
+
"Install Hiddify Application": "Hiddify 管理器安装",
|
103
|
+
"Invalid IP or domain": "错误的IP或域名",
|
104
|
+
"Invalid REALITY hostnames": "无效的 REALITY 主机名",
|
105
|
+
"Invalid admin link": "管理员链接无效",
|
106
|
+
"Iran": "🇮🇷伊朗",
|
107
|
+
"It seems that you are using default domain (%(domain)s) which is not recommended.": "看来您正在使用默认域(%(domain)s),这是不推荐的。请从域部分更改或删除它。",
|
108
|
+
"It seems that you have not created any users yet. Default user link: %(default_link)s": "您似乎还没有创建任何用户。默认用户链接:%(default_link)s",
|
109
|
+
"It seems that you have not setup the system completely. <a class=\"btn btn-success\" href=\"%(quick_setup)s\">Click here</a> to complete setup.": "看来你还没有完全安装系统。 <a class='btn btn-success' href='%(quick_setup)s'>单击此处</a>完成设置。",
|
110
|
+
"It will override the root admin to the current user": "它将把备份文件的所有者admin覆盖为当前用户",
|
111
|
+
"Join our Hiddify Telegram channel to get the latest updates on Hiddify.": "加入我们的 Hiddify Telegram 频道,获取 Hiddify 的最新动态。",
|
112
|
+
"Last Online": "最后一次连接",
|
113
|
+
"Link is changed!": "ℹ️链接已更改!",
|
114
|
+
"Linux": "Linux",
|
115
|
+
"Max Active Users": "最大活跃用户数",
|
116
|
+
"Max IPs": "最大IP数",
|
117
|
+
"Max Users": "最大用户数",
|
118
|
+
"Mode": "模式",
|
119
|
+
"Month Usage": "每月",
|
120
|
+
"More Applications": "更多应用",
|
121
|
+
"Network": "网络",
|
122
|
+
"New": "新",
|
123
|
+
"No children!": "没有孩子",
|
124
|
+
"Note": "📝 注意",
|
125
|
+
"Offline more than 1 day": "离线超过1天",
|
126
|
+
"Offline more than 1 hour": "离线1小时以上",
|
127
|
+
"Offline more than 1 week": "离线超过1周",
|
128
|
+
"Ok": "好的",
|
129
|
+
"Online Users": "在线用户",
|
130
|
+
"Only Blocked and Local websites": "☑️ 仅屏蔽和本地网站",
|
131
|
+
"Only for sublink?": "🌍 仅用于订阅链接",
|
132
|
+
"Oops! Something went wrong.": "哎呀!出了些问题。",
|
133
|
+
"Open in Application": "在应用程序中打开",
|
134
|
+
"Others": "🇺🇳其他",
|
135
|
+
"Override Root Admin": "🔁 覆盖备份中的所有者",
|
136
|
+
"Owner can not be deleted!": "拥有者可以被删除",
|
137
|
+
"Package Days": "📆 套餐日",
|
138
|
+
"Package ended!": "套餐已结束",
|
139
|
+
"Package not started yet.": "套餐还没开始。",
|
140
|
+
"Panel Link": "➖ 面板链接",
|
141
|
+
"Parent Panel": "家长小组",
|
142
|
+
"Please Wait...": "请稍等...",
|
143
|
+
"Please click on %(install)s to save the user page.": "单击 %(install)s 保存用户页面。",
|
144
|
+
"Please connect your telegram account to the panel to be informed about latest news.": "请将您的 Telegram 帐户连接到面板以获取最新消息。",
|
145
|
+
"Please connect your telegram accout to the panel to be informed about latest news.": "请将您的 Telegram 帐户连接到面板以了解您的订阅的最新状态",
|
146
|
+
"Please create an issue on Github.": "请在 Github 上创建问题",
|
147
|
+
"Please note that your panel can be accessed only via <a href=\"%(adminlink)s\" class=\"btn btn-primary copy-link\">%(adminlink)s</a>. Please save this link.": "请注意,您的面板只能通过以下链接访问。请保存此链接。\n<p><a href='%(adminlink)s' class='btn btn-secondary copy-link'><i class='fa-solid fa-copy'></i></a>\n<a href='%(adminlink)s' class='copy-link' style='word-break: break-all;'>%(adminlink)s</a></p>",
|
148
|
+
"Please select at least one file.": "请选择至少一个文件",
|
149
|
+
"Please select at least one record.": "请选择至少一条记录",
|
150
|
+
"Please select at least one user": "",
|
151
|
+
"Please select one of the following applications:": "📍请选择以下应用程序之一:\n<br/>\n<br/>",
|
152
|
+
"Please type your message to send to the telegram:": "✏️ 请写下您要发送到 Telegram 的消息:",
|
153
|
+
"Please understand that parent panel is under test and the plan and the condition of use maybe change at anytime.": "请理解,家长面板正在测试中,计划和使用条件可能随时发生变化。",
|
154
|
+
"Please wait ": "请稍等",
|
155
|
+
"Port is already used! in": "端口已用于:",
|
156
|
+
"Premium Description": "Hiddify Manager 仅供非商业用途。但如果您将此面板用于商业用途,请通过捐赠来帮助该项目发展。 <br/>\n为了换取您的财务支持,我们还为您的商业产品提供特殊设施。\n<br/>\n<br/>\n例如:\n<ul><li>\n<li>同步到Cloudflare的可能性:即通过在面板中添加域名,也可以在Cloudflare中进行相关设置</li>\n<li>可以在面板中显示您的品牌</li>\n<li>可以使用中央面板在一个面板中管理多于一台服务器,因此不再需要在不同服务器中注册用户,并且用户的数量将在所有服务器中收集。\n</li>\n<li>\n使用 Telegram 机器人的可能性\n</li>\n<li>\n能够更改代理名称\n</li>\n</ul>\n\n捐赠后请联系<a href='tg://resolve?domain=HiddifyCommercial'>@HiddifyCommercial</a>。\n发送消息获取商业用户专用版本。",
|
157
|
+
"ProxyPath is already used! use different proxy path": "ProxyPath 已被使用!使用不同的代理路径",
|
158
|
+
"QR code": "🧾 二维码",
|
159
|
+
"QRCode": "<i class='fa-solid fa-qrcode'></i> QRCode",
|
160
|
+
"RAM": "内存",
|
161
|
+
"REALITY Fallback domain is not compaitble with server names!": "REALITY 后备域与服务器名称不兼容!",
|
162
|
+
"Release": "✅ 发布",
|
163
|
+
"Remaining: ": "包裹结束",
|
164
|
+
"Remote nodes are not supported yet!": "尚不支持远程节点!",
|
165
|
+
"Rename File": "",
|
166
|
+
"Reset Filters": "重置过滤器",
|
167
|
+
"Reset Usage Time:": "流量使用重置时间:",
|
168
|
+
"Reset every month": "每月",
|
169
|
+
"Reset package days": "📆 重置套餐天数",
|
170
|
+
"Reset package usage": "⏳ 重置套餐的使用情况",
|
171
|
+
"Restore": "♻️恢复",
|
172
|
+
"Restore Domain": "🌏 恢复域名",
|
173
|
+
"Restore Domain description": "选择此选项可恢复您的域",
|
174
|
+
"Restore File": "恢复文件",
|
175
|
+
"Restore File Description": "选择下载的恢复文件",
|
176
|
+
"Restore Settings": "⚙️恢复设置",
|
177
|
+
"Restore Settings description": "恢复所有设置说明",
|
178
|
+
"Restore Users": "👥 恢复用户",
|
179
|
+
"Restore Users description": "选择此选项可恢复所有用户",
|
180
|
+
"Root": "根用户",
|
181
|
+
"Save": "保存",
|
182
|
+
"Save & Add More": "保存并添加更多",
|
183
|
+
"Save Link": "保存链接",
|
184
|
+
"Select all records": "选择所有记录",
|
185
|
+
"Select record": "选择记录",
|
186
|
+
"Seleted Users": "",
|
187
|
+
"Send Message to User's Telegram": "📣 向用户的 Telegram 发送消息",
|
188
|
+
"Sending": "正在发送...",
|
189
|
+
"Should be a valid domain": "应该是有效域名",
|
190
|
+
"Should be a valid uuid": "应该是有效UUID",
|
191
|
+
"Show Domains": "显示域的配置",
|
192
|
+
"Simplifies the process of employing the link elsewhere.": "简化了在其他地方使用链接的过程",
|
193
|
+
"SingBox": "📦 歌盒",
|
194
|
+
"Sort by %(name)s": "以%(name)s排序",
|
195
|
+
"Start Date": "开始日期",
|
196
|
+
"Status": "地位",
|
197
|
+
"Submit": "提交",
|
198
|
+
"Success": "成功",
|
199
|
+
"Success! Please wait around 4 minutes to make sure everything is updated. During this time, please save your proxy links which are:": "⚠️ 请等待大约 5 分钟以确保所有内容均已更新。在此期间,请复制并保存您的代理链接:",
|
200
|
+
"Success! Please wait around 5 minutes to make sure everything is updated.": "✔️ 成功!请等待大约 5 分钟以确保所有内容均已更新",
|
201
|
+
"Telegram Bot": "电报机器人",
|
202
|
+
"Temporary Short Link": "⏱️临时短链接",
|
203
|
+
"The action done successfully. You can now leave this page.": "✅ 行动成功完成。您现在可以离开此页面",
|
204
|
+
"The message has been sent.": "消息已发送。",
|
205
|
+
"The message was not sent to": "该消息未发送至",
|
206
|
+
"The name shown in the configs for this domain.": "将显示在该域的配置中的名称。",
|
207
|
+
"The page has been moved to a new link. Please copy and save the new link.": "该页面已移至新链接。请复制并保存新链接。",
|
208
|
+
"This can be used for giving your users a permanent non blockable links.": "这可用于为您的用户提供永久的不可阻止链接。",
|
209
|
+
"This domain does not exist in the panel!": "该域名在面板中不存在!",
|
210
|
+
"This version of hiddify panel is outdated. Please update it from admin area.": "⚠️ 此版本的 Hiddify Manager 已过时。请从管理区域更新",
|
211
|
+
"Today Usage": "今天",
|
212
|
+
"Too many Connected IPs": "连接的IP太多",
|
213
|
+
"Total Usage": "总使用量",
|
214
|
+
"Turn of VPN": "关闭VPN",
|
215
|
+
"Unified link for all application.": "所有应用程序的一键设置链接(推荐)",
|
216
|
+
"Upload File": "上传文件",
|
217
|
+
"Use HiddifyNext:": "使用 HiddifyNext:",
|
218
|
+
"User activated!": "用户激活",
|
219
|
+
"User is inactive": "用户处于非活动状态",
|
220
|
+
"User usage will be updated every 6 minutes. To update it now click <a href=\"%(link)s\" class=\"btn btn-info\">here</a>": "",
|
221
|
+
"V2rayNG": "替代 v2rayNG <button class='btn btn-sm btn-default' onclick='show_video('android-v2rayng')'><i class='fa-solid fa-question'></i> </button>\n<br/>\n<br/>",
|
222
|
+
"V2rayNG intro": "请从以下任一链接安装 v2rayNG:%(dl_link)s %(play_link)s。\n然后按照视频教程复制下面的链接粘贴到v2rayNG中 <button class='btn btn-sm btn-default' onclick='show_video('android-v2rayng')'><i class='fa-solid fa -问题'></i> </按钮>。\n<br/>",
|
223
|
+
"View in Telegram": "在电报中查看",
|
224
|
+
"Want to enjoy more with telegram?": "ℹ️ 将您的帐户连接到 Telegram",
|
225
|
+
"Welcome %(user)s": "欢迎%(user)s",
|
226
|
+
"Welcome to admin bot. Choose your action": "欢迎使用管理机器人。选择你的行动",
|
227
|
+
"Why Going to Premium?": "为什么要选择高级版?",
|
228
|
+
"Windows": "视窗",
|
229
|
+
"With selected": "",
|
230
|
+
"Xray": "☢️ XRay",
|
231
|
+
"Yesterday Usage": "昨天",
|
232
|
+
"You can download a json formated of configurations by clicking <a href='%(link)s' class='btn btn-primary'>here</a>": "🔄 Hiddify Manager 每 6 小时自动进行一次备份。备份文件在服务器上的路径:⬇️\n<br>\n/opt/hiddify-config/hiddify-panel/备份\n<br>\n<br>\n<br>\n⚠️您可以通过单击下面的按钮下载配置的 JSON 文件格式\n<br>\n<br>\n<a href='%(link)s' class='btn btn-primary'>下载备份文件</a>",
|
233
|
+
"You can restore your configs from previously downloaded configs": "ℹ️您可以从以前下载的备份文件恢复您的配置",
|
234
|
+
"You can select the configs with which domains show be shown in the user area. If you select all, automatically, all the new domains will be added for each users.": "对于访问该域的用户区的用户,指定他们可以看到哪些域的代理。\n<br>\n建议:对于IP未过滤且与其他域不同的域,选择所有其他域(当前域除外)。因此,由于该 IP 的使用不是用于代理,并且它是一个简单的网站,因此该域名和 IP 永远不会被阻止,您的用户可以轻松更新新的配置文件。",
|
235
|
+
"You have too much users! You can have only %(active)s active users and %(total)s users": "你的用户太多了!您只能拥有 %(active)s 个活跃用户和 %(total)s 个用户",
|
236
|
+
"You have used this domain in: ": "您已在以下位置使用过该域名:",
|
237
|
+
"You should visit this page without VPN. Your country=%(your_country)s\nexpected=%(expected_country)s": "您应该在没有 VPN 的情况下访问此页面 Your Country =%(your_country)s\n预期=%(expected_country)s",
|
238
|
+
"Your domains changed. Please do not forget to copy admin links, otherwise you can not access to the panel anymore.": "⚠️ 您的域名已更改。请不要忘记复制管理链接,否则您将无法再访问面板",
|
239
|
+
"Your hiddify instance information \nDomain: {} \nUsage limit: {} GB\nCurrent usage: {} GB\nExpires at: {} \nRemaining days: {} \n\n\n Happy using 🎉 🎉 🎉 \n": "您的 Hiddify 实例信息\n领域: {}\n使用限制:{} GB\n当前使用情况:{} GB\n到期时间:{}\n剩余天数:{}\n\n\n祝你好运! 🎉🎉🎉",
|
240
|
+
"[Admin only visible message:] You can change this message from settings": "[管理员专用消息]:可通过设置自定义。",
|
241
|
+
"actions": "行动",
|
242
|
+
"admin link": "行政",
|
3
243
|
"admin": {
|
244
|
+
"Actions:apply_configs": "应用配置",
|
245
|
+
"actions": {
|
246
|
+
"apply_configs": "应用配置",
|
247
|
+
"reinstall": "重新安装",
|
248
|
+
"reset": "重启系统",
|
249
|
+
"status": "地位",
|
250
|
+
"title": "行动",
|
251
|
+
"update": "更新",
|
252
|
+
"viewlogs": "查看日志"
|
253
|
+
},
|
4
254
|
"config": {
|
5
255
|
"apply_configs": "应用配置",
|
6
256
|
"title": "设置"
|
7
257
|
},
|
8
|
-
"proxy": {
|
9
|
-
"global_config": "⚙️ 全局配置",
|
10
|
-
"detailed_config": "⚙️详细配置"
|
11
|
-
},
|
12
|
-
"quicksetup": {
|
13
|
-
"title": "快速设置"
|
14
|
-
},
|
15
|
-
"quicksetup_intro": "您的服务器的 IP 是:\n<div>\nIPv4:%(ipv4)s <br> IPv6:%(ipv6)s\n</div>\n在您的域或子域上设置这些 IP,然后在下面的框中输入您的域或子域。",
|
16
|
-
"Actions:apply_configs": "应用配置",
|
17
258
|
"menu": {
|
18
|
-
"
|
19
|
-
"user": "用户",
|
259
|
+
"api": "应用程序编程接口",
|
20
260
|
"config": "设置",
|
21
|
-
"support": "帮助",
|
22
|
-
"telegram": "电报",
|
23
261
|
"domain": "域名",
|
262
|
+
"home": "仪表板",
|
24
263
|
"proxy": "代理",
|
25
|
-
"
|
264
|
+
"proxy_stats": "代理状态",
|
265
|
+
"support": "帮助",
|
266
|
+
"telegram": "电报",
|
267
|
+
"user": "用户"
|
26
268
|
},
|
27
|
-
"
|
28
|
-
"
|
29
|
-
"
|
30
|
-
"viewlogs": "查看日志",
|
31
|
-
"apply_configs": "应用配置",
|
32
|
-
"update": "更新",
|
33
|
-
"reinstall": "重新安装",
|
34
|
-
"reset": "重启系统"
|
35
|
-
}
|
36
|
-
},
|
37
|
-
"config": {
|
38
|
-
"validation-success": "配置已成功更改。单击 %(link)s 应用配置。申请可能需要 2 分钟",
|
39
|
-
"validation-success-no-reset": "✅ 配置已成功更改",
|
40
|
-
"cdn_forced_host": {
|
41
|
-
"description": "在此部分中,您可以使用一组特定域或 IP 来在用户链接中覆盖您的服务器。\n\n如果你使用<a href='https://ircf.space/export.php'>这个模板</a>,会根据用户的运营商选择相关的IP,如果你输入了一系列IP的IP将从该范围中随机选择。\n使用<a target='_blank' href='https://ip-format.hiddify.com'>此链接</a>设置个人 IP。",
|
42
|
-
"label": "🔂 强制配置使用以下 IP"
|
269
|
+
"proxy": {
|
270
|
+
"detailed_config": "⚙️详细配置",
|
271
|
+
"global_config": "⚙️ 全局配置"
|
43
272
|
},
|
44
|
-
"
|
45
|
-
"
|
46
|
-
"label": "🌎 现实服务器名称"
|
273
|
+
"quicksetup": {
|
274
|
+
"title": "快速设置"
|
47
275
|
},
|
48
|
-
"
|
49
|
-
|
50
|
-
|
51
|
-
|
276
|
+
"quicksetup_intro": "您的服务器的 IP 是:\n<div>\nIPv4:%(ipv4)s <br> IPv6:%(ipv6)s\n</div>\n在您的域或子域上设置这些 IP,然后在下面的框中输入您的域或子域。"
|
277
|
+
},
|
278
|
+
"all": "全部",
|
279
|
+
"android": "安卓",
|
280
|
+
"app": {
|
281
|
+
"foxray": {
|
282
|
+
"description": "福克斯射线描述",
|
283
|
+
"title": "福克斯X射线"
|
52
284
|
},
|
53
|
-
"
|
54
|
-
"
|
55
|
-
"
|
285
|
+
"hiddify-clash-android": {
|
286
|
+
"description": "app.hiddify-clash-android.description",
|
287
|
+
"title": "Hiddify Clash"
|
56
288
|
},
|
57
|
-
"
|
58
|
-
"
|
59
|
-
"
|
289
|
+
"hiddify-clash-desktop": {
|
290
|
+
"description": "app.hiddify-clash-desktop.description",
|
291
|
+
"title": "Hiddify Clash"
|
60
292
|
},
|
61
|
-
"
|
62
|
-
"
|
63
|
-
|
293
|
+
"hiddify": {
|
294
|
+
"next": {
|
295
|
+
"description": "Hiddify 下一个说明",
|
296
|
+
"title": "下一个"
|
297
|
+
}
|
64
298
|
},
|
65
|
-
"
|
66
|
-
"
|
67
|
-
"
|
299
|
+
"hiddifyn": {
|
300
|
+
"description": "HiddifyN 描述",
|
301
|
+
"title": "HiddifyN"
|
68
302
|
},
|
69
|
-
"
|
70
|
-
"
|
71
|
-
"
|
303
|
+
"hiddifyng": {
|
304
|
+
"description": "HiddifyNG 描述",
|
305
|
+
"title": "HiddifyNG"
|
72
306
|
},
|
73
|
-
"
|
74
|
-
"
|
75
|
-
"
|
307
|
+
"loon": {
|
308
|
+
"description": "潜鸟描述",
|
309
|
+
"title": "Loon"
|
76
310
|
},
|
77
|
-
"
|
78
|
-
"
|
79
|
-
"
|
311
|
+
"nekobox": {
|
312
|
+
"description": "app.nekobox.description",
|
313
|
+
"title": "NekoBox"
|
80
314
|
},
|
81
|
-
"
|
82
|
-
"
|
83
|
-
"
|
315
|
+
"shadowrocket": {
|
316
|
+
"description": "小火箭描述",
|
317
|
+
"title": "小火箭"
|
84
318
|
},
|
85
|
-
"
|
86
|
-
"
|
87
|
-
"
|
319
|
+
"stash": {
|
320
|
+
"description": "Stash描述",
|
321
|
+
"title": "Stash"
|
88
322
|
},
|
89
|
-
"
|
90
|
-
"
|
91
|
-
"
|
323
|
+
"streisand": {
|
324
|
+
"description": "Streisand描述",
|
325
|
+
"title": "Streisand"
|
92
326
|
},
|
93
|
-
"
|
94
|
-
"
|
95
|
-
"
|
327
|
+
"v2rayng": {
|
328
|
+
"description": "V2RayNG 说明",
|
329
|
+
"title": "V2RayNG"
|
330
|
+
}
|
331
|
+
},
|
332
|
+
"auto": "自动",
|
333
|
+
"auto_cdn_ip": "☑️ 自动 CDN IP 选择器",
|
334
|
+
"cdn": "🔀 CDN(Cloudflare 代理,...)",
|
335
|
+
"child has been removed!": "孩子已被移走!",
|
336
|
+
"child": {
|
337
|
+
"register-failed": "",
|
338
|
+
"register-success": "",
|
339
|
+
"sync-failed": "",
|
340
|
+
"sync-success": ""
|
341
|
+
},
|
342
|
+
"clickable copy": "社交媒体链接",
|
343
|
+
"close": "关闭",
|
344
|
+
"config.Domain already used": "域存在于域部分。使用另一个域",
|
345
|
+
"config.Invalid brand link": "无效的链接。它应该采用以下格式:(https 或 http://example.com)",
|
346
|
+
"config.Invalid domain": "错误!无效域名。域名格式为 www.google.com",
|
347
|
+
"config.Invalid port": "端口无效。它应该是逗号分隔的整数,例如2052,2053",
|
348
|
+
"config.Invalid proxy path": "代理路径无效。它应该是 ASCI 字符串 (a-z A-Z 0-9)",
|
349
|
+
"config.Invalid telegram bot token": "Telegram 机器人令牌无效",
|
350
|
+
"config.Invalid! The pattern is number-number": "⚠️配置无效!模式是数字-数字",
|
351
|
+
"config.Invalid! it should be a number only": "⚠️配置无效!它应该只是一个数字",
|
352
|
+
"config": {
|
353
|
+
"admin": {
|
354
|
+
"description": "管理部分用于配置管理相关设置",
|
355
|
+
"label": "管理设置"
|
96
356
|
},
|
97
|
-
"
|
98
|
-
"
|
99
|
-
"
|
357
|
+
"admin_lang": {
|
358
|
+
"description": "选择管理区域的语言",
|
359
|
+
"label": "🗺️ 管理面板语言"
|
100
360
|
},
|
101
|
-
"
|
102
|
-
"
|
103
|
-
"
|
361
|
+
"admin_secret": {
|
362
|
+
"description": "管理员密码将用于访问管理面板",
|
363
|
+
"label": "管理员密码"
|
104
364
|
},
|
105
|
-
"
|
106
|
-
"
|
107
|
-
"
|
365
|
+
"advanced": {
|
366
|
+
"description": "在这一部分中,有一些高级配置,除非您是高级用户,否则最好不要更改",
|
367
|
+
"label": "高级设置"
|
108
368
|
},
|
109
|
-
"
|
110
|
-
"
|
111
|
-
"
|
369
|
+
"allow_invalid_sni": {
|
370
|
+
"description": "如果您允许无效的SNI,您可以使用任何域而不是原始域来访问代理(不推荐)",
|
371
|
+
"label": "🆗 允许无效的 SNI"
|
112
372
|
},
|
113
|
-
"
|
114
|
-
"
|
115
|
-
"
|
373
|
+
"auto_update": {
|
374
|
+
"description": "每天凌晨 3:00,我们都会检查是否有新更新。如果有新的更新可用,我们将自动更新系统",
|
375
|
+
"label": "🔄 自动更新"
|
116
376
|
},
|
117
|
-
"
|
118
|
-
"
|
119
|
-
"
|
377
|
+
"block_iran_sites": {
|
378
|
+
"description": "封锁国内网站以防止被政府发现",
|
379
|
+
"label": "⛔️ 封锁国内网站"
|
120
380
|
},
|
121
|
-
"
|
122
|
-
"
|
123
|
-
"
|
381
|
+
"branding": {
|
382
|
+
"description": "用户页面的自定义设置",
|
383
|
+
"label": "自定义用户页面"
|
124
384
|
},
|
125
|
-
"
|
126
|
-
"
|
127
|
-
"
|
385
|
+
"branding_freetext": {
|
386
|
+
"description": "品牌文字。此框的文本将显示在用户页面的支持部分。你可以使用 HTML 标签",
|
387
|
+
"label": "📢 支持部分文本"
|
128
388
|
},
|
129
|
-
"
|
130
|
-
"
|
131
|
-
"
|
389
|
+
"branding_site": {
|
390
|
+
"description": "将在用户页面的支持部分显示的链接。\n您还可以将您的 Telegram Channel 或 Telegram PV 放在这里。",
|
391
|
+
"label": "🆔 支持链接(既出现在品牌标题上,也出现在用户页面的支持部分)"
|
132
392
|
},
|
133
|
-
"
|
134
|
-
"
|
135
|
-
"
|
393
|
+
"branding_title": {
|
394
|
+
"description": "输入要在用户页面上显示的自定义标题。 (在 yser 的欢迎文字之前)",
|
395
|
+
"label": "👁🗨 用户页面标题"
|
136
396
|
},
|
137
|
-
"
|
138
|
-
"
|
139
|
-
"
|
397
|
+
"cdn_forced_host": {
|
398
|
+
"description": "在此部分中,您可以使用一组特定域或 IP 来在用户链接中覆盖您的服务器。\n\n如果你使用<a href='https://ircf.space/export.php'>这个模板</a>,会根据用户的运营商选择相关的IP,如果你输入了一系列IP的IP将从该范围中随机选择。\n使用<a target='_blank' href='https://ip-format.hiddify.com'>此链接</a>设置个人 IP。",
|
399
|
+
"label": "🔂 强制配置使用以下 IP"
|
140
400
|
},
|
141
|
-
"
|
142
|
-
"
|
143
|
-
"
|
401
|
+
"cloudflare": {
|
402
|
+
"description": "请按照<a href='https://github.com/hiddify/hiddify-config/wiki/Get-Cloudflare-API' target='_blank'>说明</a>并粘贴 Cloudflare API 密钥",
|
403
|
+
"label": "🔑 Cloudflare API"
|
144
404
|
},
|
145
|
-
"
|
146
|
-
"
|
147
|
-
"
|
405
|
+
"core_type": {
|
406
|
+
"description": "☢️ XRay:是一个完整的核心\n<br>\n📦 Singbox:由 SagerNet 开发。也是一个不错的核心",
|
407
|
+
"label": "🎛️核心"
|
148
408
|
},
|
149
|
-
"
|
150
|
-
"
|
151
|
-
"
|
409
|
+
"country": {
|
410
|
+
"description": "它根据每个国家/地区的过滤条件应用适当的设置",
|
411
|
+
"label": "🌍国家"
|
152
412
|
},
|
153
|
-
"
|
154
|
-
"
|
155
|
-
"
|
413
|
+
"create_easysetup_link": {
|
414
|
+
"description": "config.create_easysetup_link.description",
|
415
|
+
"label": "config.create_easysetup_link.label"
|
156
416
|
},
|
157
|
-
"
|
158
|
-
"
|
159
|
-
"
|
417
|
+
"db_version": {
|
418
|
+
"description": "数据库版本说明",
|
419
|
+
"label": "数据库版本标签"
|
160
420
|
},
|
161
|
-
"
|
162
|
-
"
|
163
|
-
"
|
421
|
+
"dbvalues": {
|
422
|
+
"description": "config.dbvalues.description",
|
423
|
+
"label": "config.dbvalues.label"
|
164
424
|
},
|
165
|
-
"
|
166
|
-
"
|
167
|
-
"
|
425
|
+
"decoy_domain": {
|
426
|
+
"description": "假网站:当有人直接访问您的域时模拟网站。<br>\n⚠️ 不要使用金融、伊朗和著名网站或需要登录的网站,例如 Google、Yahoo、Wikipedia、PayPal。<br>\n⛔ 请务必检查该网站并确保它是正确的网站,否则您可能会收到网络钓鱼警告。<br>\n⛔⛔ 再次检查该域名,以免以后出现问题",
|
427
|
+
"label": "📺 诱饵网站"
|
168
428
|
},
|
169
|
-
"
|
170
|
-
"
|
171
|
-
"
|
429
|
+
"dns_server": {
|
430
|
+
"description": "✳️默认1.1.1.1 <br>\n🚧 阻止恶意软件 1.1.1.2 <br>\n🔞 阻止色情 1.1.1.3",
|
431
|
+
"label": "🖥 DNS 服务器"
|
172
432
|
},
|
173
|
-
"
|
174
|
-
"
|
175
|
-
"
|
433
|
+
"domain_fronting": {
|
434
|
+
"description": "它用于在 SNI 中模拟另一个网站而不是您的网站。因此,GFW 无法过滤您的域名\n<a href='https://github.com/hiddify/hiddify-config/wiki/%D8%A7%D8%B3%D8%AA%D9%81%D8%A7%D8%AF%D9%87- %D8%A7%D8%B2-%D8%AF%D8%A7%D9%85%DB%8C%D9%86-%D9%81%D8%B1%D8%A7%D9%86%D8%AA %DB%8C%D9%86%DA%AF'>指南</a>。 ⚠️CloudFlare 不支持域前置。",
|
435
|
+
"label": "🔒 启用 TLS 域前置"
|
176
436
|
},
|
177
|
-
"
|
178
|
-
"
|
179
|
-
"
|
437
|
+
"domain_fronting_domain": {
|
438
|
+
"description": "它用于在 SNI 中模拟另一个网站而不是您的网站。因此,GFW 无法过滤您的域。",
|
439
|
+
"label": "ℹ️ 域名前置"
|
180
440
|
},
|
181
|
-
"
|
182
|
-
"
|
183
|
-
"
|
441
|
+
"domain_fronting_http_enable": {
|
442
|
+
"description": "启用 HTTP 域前置会导致您的域很快被阻止。",
|
443
|
+
"label": "启用 HTTP 域前置"
|
184
444
|
},
|
185
|
-
"
|
186
|
-
"
|
187
|
-
"
|
445
|
+
"domain_fronting_tls_enable": {
|
446
|
+
"description": "在 CloudFlare 中,不支持 TLS 域前置。它将使用端口 443 连接到 CDN",
|
447
|
+
"label": "🔒 启用 TLS 域前置"
|
188
448
|
},
|
189
|
-
"
|
190
|
-
"
|
191
|
-
"
|
449
|
+
"firewall": {
|
450
|
+
"description": "启用防火墙将打开已使用的端口(至少 22,443,80 和 SSH)并关闭所有其他端口",
|
451
|
+
"label": "🛡️ 防火墙"
|
192
452
|
},
|
193
|
-
"
|
194
|
-
"
|
195
|
-
"
|
453
|
+
"first_setup": {
|
454
|
+
"description": "config.first_setup.描述",
|
455
|
+
"label": "配置.first_setup.label"
|
196
456
|
},
|
197
|
-
"
|
198
|
-
"
|
199
|
-
"
|
457
|
+
"general": {
|
458
|
+
"description": "这是一般系统配置",
|
459
|
+
"label": "常规设置"
|
200
460
|
},
|
201
|
-
"
|
202
|
-
"
|
203
|
-
"
|
461
|
+
"grpc_enable": {
|
462
|
+
"description": "",
|
463
|
+
"label": ""
|
204
464
|
},
|
205
|
-
"
|
206
|
-
"
|
207
|
-
"
|
465
|
+
"h2_enable": {
|
466
|
+
"description": "",
|
467
|
+
"label": ""
|
208
468
|
},
|
209
|
-
"
|
210
|
-
"
|
211
|
-
"
|
469
|
+
"hidden": {
|
470
|
+
"description": "配置.隐藏.描述",
|
471
|
+
"label": "配置.隐藏.标签"
|
212
472
|
},
|
213
|
-
"
|
214
|
-
"
|
215
|
-
"
|
473
|
+
"http": {
|
474
|
+
"description": "HTTP 配置可以在此部分设置",
|
475
|
+
"label": "HTTP 配置"
|
216
476
|
},
|
217
|
-
"
|
218
|
-
"
|
219
|
-
"
|
477
|
+
"http_ports": {
|
478
|
+
"description": "逗号分隔的整数,指示用作未加密连接的端口(无论如何都将使用端口 80)",
|
479
|
+
"label": "🔎 HTTP 端口"
|
220
480
|
},
|
221
|
-
"
|
222
|
-
"
|
223
|
-
"
|
481
|
+
"http_proxy_enable": {
|
482
|
+
"description": "通过允许此操作,您的用户可以使用未加密的 HTTP 端口连接到系统。 (不建议)",
|
483
|
+
"label": "☑️ 允许 HTTP 连接"
|
224
484
|
},
|
225
|
-
"
|
226
|
-
"
|
227
|
-
"
|
485
|
+
"httpupgrade_enable": {
|
486
|
+
"description": "",
|
487
|
+
"label": ""
|
228
488
|
},
|
229
|
-
"
|
230
|
-
"
|
231
|
-
"
|
489
|
+
"hysteria": {
|
490
|
+
"description": "Hysteria 是一款功能齐全的代理和中继工具,针对有损、不稳定的连接(例如卫星网络、拥挤的公共 Wi-Fi、从中国连接到国外服务器)进行了优化",
|
491
|
+
"label": "歇斯底里"
|
232
492
|
},
|
233
|
-
"
|
234
|
-
"
|
235
|
-
"
|
493
|
+
"hysteria_down_mbps": {
|
494
|
+
"description": "",
|
495
|
+
"label": ""
|
236
496
|
},
|
237
|
-
"
|
238
|
-
"
|
239
|
-
"
|
497
|
+
"hysteria_enable": {
|
498
|
+
"description": "启用基于 UDP 的 Hysteria 协议",
|
499
|
+
"label": "启用歇斯底里2"
|
240
500
|
},
|
241
|
-
"
|
242
|
-
"
|
243
|
-
"
|
501
|
+
"hysteria_obfs_enable": {
|
502
|
+
"description": "",
|
503
|
+
"label": ""
|
244
504
|
},
|
245
|
-
"
|
246
|
-
"
|
247
|
-
"
|
505
|
+
"hysteria_port": {
|
506
|
+
"description": "Hysteria UDP 端口,例如 5678",
|
507
|
+
"label": "🔍 Hysteria2 端口"
|
248
508
|
},
|
249
|
-
"
|
250
|
-
"
|
251
|
-
"
|
509
|
+
"hysteria_up_mbps": {
|
510
|
+
"description": "",
|
511
|
+
"label": ""
|
252
512
|
},
|
253
|
-
"
|
254
|
-
|
255
|
-
"description": "
|
513
|
+
"invalid-pattern-for-warp-sites": "",
|
514
|
+
"is_parent": {
|
515
|
+
"description": "config.is_parent.description",
|
516
|
+
"label": "家长小组"
|
256
517
|
},
|
257
|
-
"
|
258
|
-
"
|
259
|
-
"
|
518
|
+
"kcp": {
|
519
|
+
"description": "KCP 配置可以在此部分中设置。",
|
520
|
+
"label": "韩国共产党"
|
260
521
|
},
|
261
|
-
"
|
262
|
-
"
|
263
|
-
"
|
522
|
+
"kcp_enable": {
|
523
|
+
"description": "它是基于UDP的协议",
|
524
|
+
"label": "启用KCP"
|
264
525
|
},
|
265
|
-
"
|
266
|
-
"
|
267
|
-
"
|
526
|
+
"kcp_ports": {
|
527
|
+
"description": "逗号分隔的整数,指示用作 KCP 连接的端口。",
|
528
|
+
"label": "KCP 港口"
|
268
529
|
},
|
269
|
-
"
|
270
|
-
"
|
271
|
-
"
|
530
|
+
"lang": {
|
531
|
+
"description": "选择用户区域的语言",
|
532
|
+
"label": "🗺️ 用户区语言"
|
272
533
|
},
|
273
|
-
"
|
274
|
-
"
|
275
|
-
"
|
534
|
+
"last_hash": {
|
535
|
+
"description": "config.last_hash.描述",
|
536
|
+
"label": "配置.last_hash.label"
|
276
537
|
},
|
277
|
-
"
|
278
|
-
"
|
279
|
-
"
|
538
|
+
"license": {
|
539
|
+
"description": "要将本产品用于商业用途,您必须购买其许可证",
|
540
|
+
"label": "许可证代码"
|
280
541
|
},
|
281
|
-
"
|
282
|
-
"
|
283
|
-
"
|
542
|
+
"log_level": {
|
543
|
+
"description": "",
|
544
|
+
"label": ""
|
284
545
|
},
|
285
|
-
"
|
286
|
-
"
|
287
|
-
"
|
546
|
+
"mux": {
|
547
|
+
"description": "",
|
548
|
+
"label": "MUC设置"
|
288
549
|
},
|
289
|
-
"
|
290
|
-
"
|
291
|
-
"
|
550
|
+
"mux_brutal_down_mbps": {
|
551
|
+
"description": "",
|
552
|
+
"label": ""
|
292
553
|
},
|
293
|
-
"
|
294
|
-
"
|
295
|
-
"
|
554
|
+
"mux_brutal_enable": {
|
555
|
+
"description": "",
|
556
|
+
"label": ""
|
296
557
|
},
|
297
|
-
"
|
298
|
-
"
|
299
|
-
"
|
558
|
+
"mux_brutal_up_mbps": {
|
559
|
+
"description": "",
|
560
|
+
"label": ""
|
300
561
|
},
|
301
|
-
"
|
302
|
-
"
|
303
|
-
"
|
562
|
+
"mux_enable": {
|
563
|
+
"description": "",
|
564
|
+
"label": ""
|
304
565
|
},
|
305
|
-
"
|
306
|
-
"
|
307
|
-
"
|
566
|
+
"mux_max_connections": {
|
567
|
+
"description": "",
|
568
|
+
"label": ""
|
308
569
|
},
|
309
|
-
"
|
310
|
-
"
|
311
|
-
"
|
570
|
+
"mux_max_streams": {
|
571
|
+
"description": "",
|
572
|
+
"label": ""
|
312
573
|
},
|
313
|
-
"
|
314
|
-
"
|
315
|
-
"
|
574
|
+
"mux_min_streams": {
|
575
|
+
"description": "",
|
576
|
+
"label": ""
|
316
577
|
},
|
317
|
-
"
|
318
|
-
"
|
319
|
-
"
|
578
|
+
"mux_padding_enable": {
|
579
|
+
"description": "",
|
580
|
+
"label": ""
|
320
581
|
},
|
321
|
-
"
|
322
|
-
"
|
323
|
-
"
|
582
|
+
"mux_protocol": {
|
583
|
+
"description": "",
|
584
|
+
"label": ""
|
324
585
|
},
|
325
|
-
"
|
326
|
-
"
|
327
|
-
"
|
586
|
+
"netdata": {
|
587
|
+
"description": "用于显示资源。使用您服务器的 CPU,但不会太多。",
|
588
|
+
"label": "网络数据"
|
328
589
|
},
|
329
|
-
"
|
330
|
-
"
|
331
|
-
"
|
590
|
+
"not_found": {
|
591
|
+
"description": "未找到配置",
|
592
|
+
"label": "未找到配置"
|
332
593
|
},
|
333
|
-
"
|
334
|
-
"
|
335
|
-
"
|
594
|
+
"only_ipv4": {
|
595
|
+
"description": "它将禁用 IPv6",
|
596
|
+
"label": "ℹ️仅限IPv4"
|
336
597
|
},
|
337
|
-
"
|
338
|
-
"
|
339
|
-
"
|
598
|
+
"package_mode": {
|
599
|
+
"description": "指定您想要发布的包还是开发的包",
|
600
|
+
"label": "🔄 包更新模式"
|
340
601
|
},
|
341
|
-
"
|
342
|
-
"
|
343
|
-
"
|
602
|
+
"panel_mode": {
|
603
|
+
"description": "",
|
604
|
+
"label": ""
|
344
605
|
},
|
345
|
-
"
|
346
|
-
"
|
347
|
-
"
|
606
|
+
"parent_admin_proxy_path": {
|
607
|
+
"description": "",
|
608
|
+
"label": ""
|
348
609
|
},
|
349
|
-
"
|
350
|
-
"
|
351
|
-
"
|
610
|
+
"parent_domain": {
|
611
|
+
"description": "",
|
612
|
+
"label": ""
|
352
613
|
},
|
353
|
-
"
|
354
|
-
"
|
355
|
-
"
|
614
|
+
"parent_panel": {
|
615
|
+
"description": "您可以连接到中央面板仅定义一个用户,所有服务器的使用情况将累积添加。",
|
616
|
+
"label": "父面板(多服务器)"
|
356
617
|
},
|
357
|
-
"
|
358
|
-
"
|
359
|
-
"
|
618
|
+
"path_grpc": {
|
619
|
+
"description": "配置中的 gRPC 路径",
|
620
|
+
"label": "ℹ️ gRPC 路径"
|
360
621
|
},
|
361
|
-
"
|
362
|
-
"
|
363
|
-
"
|
622
|
+
"path_httpupgrade": {
|
623
|
+
"description": "",
|
624
|
+
"label": ""
|
364
625
|
},
|
365
|
-
"
|
366
|
-
"
|
367
|
-
"
|
626
|
+
"path_ss": {
|
627
|
+
"description": "链接中的 Shadowsocks 路径",
|
628
|
+
"label": "Shadowsocks 路径"
|
368
629
|
},
|
369
|
-
"
|
370
|
-
"
|
371
|
-
"
|
630
|
+
"path_tcp": {
|
631
|
+
"description": "对于代理链接",
|
632
|
+
"label": "ℹ️ TCP 配置路径"
|
372
633
|
},
|
373
|
-
"
|
374
|
-
"
|
375
|
-
"
|
634
|
+
"path_trojan": {
|
635
|
+
"description": "对于木马链接",
|
636
|
+
"label": "ℹ️木马路径"
|
376
637
|
},
|
377
|
-
"
|
378
|
-
"
|
379
|
-
"
|
638
|
+
"path_v2ray": {
|
639
|
+
"description": "设置 V2Ray 配置路径",
|
640
|
+
"label": "V2Ray路径"
|
380
641
|
},
|
381
|
-
"
|
382
|
-
"
|
383
|
-
"
|
642
|
+
"path_vless": {
|
643
|
+
"description": "对于 VLESS 路径",
|
644
|
+
"label": "ℹ️ VLESS 路径"
|
384
645
|
},
|
385
|
-
"
|
386
|
-
"
|
387
|
-
"
|
646
|
+
"path_vmess": {
|
647
|
+
"description": "对于 VMess 链接",
|
648
|
+
"label": "ℹ️VMess 路径"
|
388
649
|
},
|
389
|
-
"
|
390
|
-
"
|
391
|
-
"
|
650
|
+
"path_ws": {
|
651
|
+
"description": "指定Websocket路径",
|
652
|
+
"label": "ℹ️ Websocket 请求路径"
|
392
653
|
},
|
393
|
-
"
|
394
|
-
"
|
395
|
-
"
|
654
|
+
"proxies": {
|
655
|
+
"description": "定义特定的代理设置",
|
656
|
+
"label": "代理设置"
|
396
657
|
},
|
397
|
-
"
|
398
|
-
"
|
399
|
-
"
|
658
|
+
"proxy_path": {
|
659
|
+
"description": "我们使用秘密代理路径来隐藏我们的政府代理",
|
660
|
+
"label": "ℹ️ 秘密代理路径"
|
400
661
|
},
|
401
|
-
"
|
402
|
-
"
|
403
|
-
"
|
662
|
+
"proxy_path_admin": {
|
663
|
+
"description": "",
|
664
|
+
"label": ""
|
404
665
|
},
|
405
|
-
"
|
406
|
-
"
|
407
|
-
"
|
666
|
+
"proxy_path_client": {
|
667
|
+
"description": "",
|
668
|
+
"label": ""
|
408
669
|
},
|
409
|
-
"
|
410
|
-
"
|
411
|
-
"
|
670
|
+
"quic_enable": {
|
671
|
+
"description": "",
|
672
|
+
"label": ""
|
412
673
|
},
|
413
|
-
"
|
414
|
-
"
|
415
|
-
"
|
674
|
+
"reality": {
|
675
|
+
"description": "REALITY 消除了服务器端 TLS 指纹功能",
|
676
|
+
"label": "现实"
|
416
677
|
},
|
417
|
-
"
|
418
|
-
"
|
419
|
-
"
|
678
|
+
"reality_enable": {
|
679
|
+
"description": "",
|
680
|
+
"label": ""
|
420
681
|
},
|
421
|
-
"
|
422
|
-
"
|
423
|
-
"
|
682
|
+
"reality_fallback_domain": {
|
683
|
+
"description": "当 GFW 访问服务器名称中的网站时,将被重定向到该域。",
|
684
|
+
"label": "🌍 现实后备域"
|
424
685
|
},
|
425
|
-
"
|
426
|
-
"
|
427
|
-
"
|
686
|
+
"reality_port": {
|
687
|
+
"description": "",
|
688
|
+
"label": ""
|
428
689
|
},
|
429
|
-
"
|
430
|
-
"
|
431
|
-
"
|
690
|
+
"reality_private_key": {
|
691
|
+
"description": "不要改变它",
|
692
|
+
"label": "🔑 私钥"
|
432
693
|
},
|
433
|
-
"
|
434
|
-
"
|
435
|
-
"
|
694
|
+
"reality_public_key": {
|
695
|
+
"description": "不要改变它",
|
696
|
+
"label": "🔑 公钥"
|
436
697
|
},
|
437
|
-
"
|
438
|
-
"
|
439
|
-
"
|
698
|
+
"reality_server_names": {
|
699
|
+
"description": "您可以以逗号分隔的格式添加多个服务器名称",
|
700
|
+
"label": "🌎 现实服务器名称"
|
440
701
|
},
|
441
|
-
"
|
442
|
-
"
|
443
|
-
"
|
702
|
+
"reality_short_ids": {
|
703
|
+
"description": "不要改变它",
|
704
|
+
"label": "🆔 短 ID"
|
444
705
|
},
|
445
|
-
"
|
446
|
-
"
|
447
|
-
"
|
706
|
+
"restls": {
|
707
|
+
"description": "配置.restls.描述",
|
708
|
+
"label": "配置.restls.标签"
|
448
709
|
},
|
449
|
-
"
|
450
|
-
"
|
451
|
-
"
|
710
|
+
"restls1_2_domain": {
|
711
|
+
"description": "config.restls1_2_domain.description",
|
712
|
+
"label": "config.restls1_2_domain.label"
|
452
713
|
},
|
453
|
-
"
|
454
|
-
"
|
455
|
-
"
|
714
|
+
"restls1_3_domain": {
|
715
|
+
"description": "config.restls1_3_domain.description",
|
716
|
+
"label": "config.restls1_3_domain.label"
|
456
717
|
},
|
457
|
-
"
|
458
|
-
"
|
459
|
-
"
|
718
|
+
"shadowsocks": {
|
719
|
+
"description": "",
|
720
|
+
"label": ""
|
460
721
|
},
|
461
|
-
"
|
462
|
-
"
|
463
|
-
"
|
722
|
+
"shadowsocks2022_enable": {
|
723
|
+
"description": "",
|
724
|
+
"label": ""
|
464
725
|
},
|
465
|
-
"
|
466
|
-
"
|
467
|
-
"
|
726
|
+
"shadowsocks2022_method": {
|
727
|
+
"description": "",
|
728
|
+
"label": ""
|
468
729
|
},
|
469
|
-
"
|
470
|
-
"
|
471
|
-
"
|
730
|
+
"shadowsocks2022_port": {
|
731
|
+
"description": "",
|
732
|
+
"label": ""
|
472
733
|
},
|
473
|
-
"
|
474
|
-
"
|
475
|
-
"
|
734
|
+
"shadowtls": {
|
735
|
+
"description": "向防火墙公开真实 tls 握手的代理。\n\n它的工作方式类似于木马,但不需要签名证书。防火墙将看到与您选择的有效证书的真实 tls 握手。",
|
736
|
+
"label": "影子TLS"
|
476
737
|
},
|
477
|
-
"
|
478
|
-
"
|
479
|
-
"
|
738
|
+
"shadowtls_enable": {
|
739
|
+
"description": "ShadowTLS 是一种新协议,但它可以使用 FakeTLS 向政府隐藏流量",
|
740
|
+
"label": "☑️ShadowTLS"
|
480
741
|
},
|
481
|
-
"
|
482
|
-
"
|
483
|
-
"
|
742
|
+
"shadowtls_fakedomain": {
|
743
|
+
"description": "请使用您数据中心内的知名域名。例如,如果您在 azure 数据中心,microsoft-update.com 就是一个很好的例子",
|
744
|
+
"label": "🌍 ShadowTLS 假域名"
|
484
745
|
},
|
485
|
-
"
|
486
|
-
"
|
487
|
-
"
|
746
|
+
"shared_secret": {
|
747
|
+
"description": "一些代理目前不支持会计,因此我们必须为它们使用秘密",
|
748
|
+
"label": "🔐共享的秘密"
|
488
749
|
},
|
489
|
-
"
|
490
|
-
"
|
491
|
-
"
|
750
|
+
"show_usage_in_sublink": {
|
751
|
+
"description": "此选项会在用户的子链接中创建一个假配置,显示用户的剩余音量",
|
752
|
+
"label": "👁️🗨️ 在子链接中显示用法"
|
492
753
|
},
|
493
|
-
"
|
494
|
-
"
|
495
|
-
"
|
754
|
+
"speed_test": {
|
755
|
+
"description": "允许您的用户进行速度测试。它可以帮助他们识别链接质量",
|
756
|
+
"label": "🚀 速度测试"
|
496
757
|
},
|
497
|
-
"
|
498
|
-
"
|
499
|
-
"
|
758
|
+
"ssfaketls": {
|
759
|
+
"description": "Shadowsocks FakeTLS 是一个简单的混淆工具,将日期封装在 tls 数据包中",
|
760
|
+
"label": "Shadowsocks 假TLS"
|
500
761
|
},
|
501
|
-
"
|
502
|
-
"
|
503
|
-
"
|
762
|
+
"ssfaketls_enable": {
|
763
|
+
"description": "不推荐简单的 OBFS 协议",
|
764
|
+
"label": "🆎 Shadowsocks FakeTLS(简单 OBFS)"
|
504
765
|
},
|
505
|
-
"
|
506
|
-
"
|
507
|
-
"
|
766
|
+
"ssfaketls_fakedomain": {
|
767
|
+
"description": "请使用您数据中心内的知名域名。例如,如果您位于 Azure 数据中心,microsoft-update.com 就是一个很好的例子",
|
768
|
+
"label": "🌍 SS FakeTLS 假域名"
|
508
769
|
},
|
509
|
-
"
|
510
|
-
"
|
511
|
-
"
|
770
|
+
"ssh": {
|
771
|
+
"description": "ℹ️ SSH 代理,也称为 SSH 隧道或 SSH 端口转发,是一种通过不安全网络在两台计算机之间创建安全通信通道的安全方法。我们有一个与 ssh 服务器完全不同的特定应用程序,无法执行任何命令",
|
772
|
+
"label": "SSH 代理"
|
512
773
|
},
|
513
|
-
"
|
514
|
-
"
|
515
|
-
"
|
774
|
+
"ssh_server_enable": {
|
775
|
+
"description": "SSH Proxy 与原来的 SSH Server 完全不同",
|
776
|
+
"label": "✔️ 启用 SSH 代理"
|
516
777
|
},
|
517
|
-
"
|
518
|
-
"
|
519
|
-
"
|
778
|
+
"ssh_server_port": {
|
779
|
+
"description": "这与你原来的 SSH 服务器完全不同。这是一个专用程序。",
|
780
|
+
"label": "↔️ SSH 代理端口"
|
520
781
|
},
|
521
|
-
"
|
522
|
-
"
|
523
|
-
"
|
782
|
+
"ssh_server_redis_url": {
|
783
|
+
"description": "不曾用过",
|
784
|
+
"label": "SSH用户数据库地址"
|
524
785
|
},
|
525
|
-
"
|
526
|
-
"
|
527
|
-
"
|
786
|
+
"ssr": {
|
787
|
+
"description": "ShadowsocksR是原始Shadowsocks项目的一个分支,号称在安全性和稳定性方面更胜一筹。",
|
788
|
+
"label": "固态继电器"
|
528
789
|
},
|
529
|
-
"
|
530
|
-
"
|
531
|
-
"
|
790
|
+
"ssr_enable": {
|
791
|
+
"description": "ShadowsocksR 是原始 Shadowsocks 项目的 Fork,号称在安全性和稳定性方面更胜一筹。未测试。不支持记账。",
|
792
|
+
"label": "启用SSR"
|
532
793
|
},
|
533
|
-
"
|
534
|
-
"
|
535
|
-
"
|
794
|
+
"ssr_fakedomain": {
|
795
|
+
"description": "请在您的数据中心使用众所周知的域。例如,如果您在 Azure 数据中心,microsoft-update.com 就是一个很好的例子",
|
796
|
+
"label": "SSR 假域名"
|
536
797
|
},
|
537
|
-
"
|
538
|
-
"
|
539
|
-
"
|
798
|
+
"tcp_enable": {
|
799
|
+
"description": "",
|
800
|
+
"label": ""
|
540
801
|
},
|
541
|
-
"
|
542
|
-
"
|
543
|
-
"
|
802
|
+
"telegram": {
|
803
|
+
"description": "专为 Telegram 设计的代理,可绕过 Telegram 过滤",
|
804
|
+
"label": "电报代理"
|
544
805
|
},
|
545
|
-
"
|
546
|
-
"
|
547
|
-
"
|
806
|
+
"telegram_adtag": {
|
807
|
+
"description": "它用于在客户端的聊天列表中显示赞助频道。要宣传频道,请从 @MTProxybot 获取标签。\n在该机器人中输入代码 0123456789ABCDEF0123456789ABCDEF。",
|
808
|
+
"label": "📍 Telegram 广告标签"
|
548
809
|
},
|
549
|
-
"
|
550
|
-
"
|
551
|
-
"
|
810
|
+
"telegram_bot_token": {
|
811
|
+
"description": "添加 Telegram 机器人功能。您需要使用@BotFather创建一个机器人并在此字段中输入API代码",
|
812
|
+
"label": "🔐 Telegram 机器人代币"
|
552
813
|
},
|
553
|
-
"
|
554
|
-
"
|
555
|
-
"
|
814
|
+
"telegram_enable": {
|
815
|
+
"description": "Telegram MTProto 用于将 Telegram Proxy 封装为 tls 流量",
|
816
|
+
"label": "✔️ 启用 Telegram MTProto"
|
556
817
|
},
|
557
|
-
"
|
558
|
-
"
|
559
|
-
"
|
818
|
+
"telegram_fakedomain": {
|
819
|
+
"description": "请使用您数据中心内的知名域名。例如,如果您位于 Azure 数据中心,microsoft-update.com 就是一个很好的例子",
|
820
|
+
"label": "📺 Telegram 假域名"
|
560
821
|
},
|
561
|
-
"
|
562
|
-
"
|
563
|
-
"
|
822
|
+
"telegram_lib": {
|
823
|
+
"description": "您可以在不同的 Telegram 库之间切换。请注意,只有Python可以在所有服务器上运行,其他服务器可能会出现一些问题。更改后测试代理。",
|
824
|
+
"label": "🔢 Telegram 代理库"
|
564
825
|
},
|
565
|
-
"
|
566
|
-
"
|
567
|
-
"
|
826
|
+
"tls": {
|
827
|
+
"description": "可以在此部分设置 TLS 配置。",
|
828
|
+
"label": "TLS 配置"
|
568
829
|
},
|
569
|
-
"
|
570
|
-
"
|
571
|
-
"
|
830
|
+
"tls_fragment_enable": {
|
831
|
+
"description": "",
|
832
|
+
"label": ""
|
572
833
|
},
|
573
|
-
"
|
574
|
-
"
|
575
|
-
"
|
834
|
+
"tls_fragment_size": {
|
835
|
+
"description": "",
|
836
|
+
"label": ""
|
576
837
|
},
|
577
|
-
"
|
578
|
-
"
|
579
|
-
"
|
838
|
+
"tls_fragment_sleep": {
|
839
|
+
"description": "",
|
840
|
+
"label": ""
|
580
841
|
},
|
581
|
-
"
|
582
|
-
"
|
583
|
-
"
|
842
|
+
"tls_mixed_case": {
|
843
|
+
"description": "",
|
844
|
+
"label": ""
|
845
|
+
},
|
846
|
+
"tls_padding_enable": {
|
847
|
+
"description": "",
|
848
|
+
"label": ""
|
849
|
+
},
|
850
|
+
"tls_padding_length": {
|
851
|
+
"description": "",
|
852
|
+
"label": ""
|
853
|
+
},
|
854
|
+
"tls_ports": {
|
855
|
+
"description": "逗号分隔的整数,指示用作 TLS 连接的端口(在任何情况下都将使用端口 443)",
|
856
|
+
"label": "🔎 TLS 端口"
|
584
857
|
},
|
585
858
|
"tls_trick": {
|
586
|
-
"
|
587
|
-
"
|
859
|
+
"description": "",
|
860
|
+
"label": ""
|
588
861
|
},
|
589
|
-
"
|
590
|
-
"
|
591
|
-
"
|
862
|
+
"too_advanced": {
|
863
|
+
"description": "指定代理路径。如果您使用 HTTP 和 VMess,这一点尤其重要",
|
864
|
+
"label": "非常高级的设置"
|
592
865
|
},
|
593
|
-
"
|
594
|
-
"
|
595
|
-
"
|
866
|
+
"torrent_block": {
|
867
|
+
"description": "可以在此部分设置 Torrent 阻止配置。",
|
868
|
+
"label": "Torrent 块配置"
|
596
869
|
},
|
597
|
-
"
|
598
|
-
"
|
599
|
-
"
|
870
|
+
"trojan_enable": {
|
871
|
+
"description": "",
|
872
|
+
"label": ""
|
873
|
+
},
|
874
|
+
"tuic": {
|
875
|
+
"description": "Delicately-TUICed 高性能代理位于 QUIC 协议之上。\n\nTUIC的目标是尽可能减少握手延迟",
|
876
|
+
"label": "TUIC"
|
877
|
+
},
|
878
|
+
"tuic_enable": {
|
879
|
+
"description": "它是一个基于UDP的协议,类似于QUIC",
|
880
|
+
"label": "启用 TUIC"
|
881
|
+
},
|
882
|
+
"tuic_port": {
|
883
|
+
"description": "使用逗号分隔端口,例如 63000,60000",
|
884
|
+
"label": "TUIC 端口"
|
885
|
+
},
|
886
|
+
"unique_id": {
|
887
|
+
"description": "config.unique_id.描述",
|
888
|
+
"label": "config.unique_id.label"
|
889
|
+
},
|
890
|
+
"utls": {
|
891
|
+
"description": "此选项将模拟不同的浏览器,因此 GFW 无法检测到您的浏览",
|
892
|
+
"label": "❇️uTLS"
|
893
|
+
},
|
894
|
+
"v2ray_enable": {
|
895
|
+
"description": "V2ray不支持计费,不建议使用",
|
896
|
+
"label": "♈️启用V2Ray"
|
897
|
+
},
|
898
|
+
"validation-error": "其中一个字段有错误。",
|
899
|
+
"validation-success": "配置已成功更改。单击 %(link)s 应用配置。申请可能需要 2 分钟",
|
900
|
+
"validation-success-no-reset": "✅ 配置已成功更改",
|
901
|
+
"vless_enable": {
|
902
|
+
"description": "",
|
903
|
+
"label": ""
|
904
|
+
},
|
905
|
+
"vmess_enable": {
|
906
|
+
"description": "据多位人士透露,VMess 导致该系统被政府检测到。所以不推荐",
|
907
|
+
"label": "♈️启用VMess"
|
908
|
+
},
|
909
|
+
"warp": {
|
910
|
+
"description": "Warp 是一种在出站流量中隐藏服务器 IP 的工具。这意味着如果用户访问网站,则暴露的是 Warp IP,而不是我们的服务器 IP。\n<br>\n例如,如果您在 Google 上遇到验证码问题,则可能会通过这种方式修复。",
|
911
|
+
"label": "扭曲➕"
|
912
|
+
},
|
913
|
+
"warp_enable": {
|
914
|
+
"description": "Warp 通过隐藏服务器 IP 帮助您绕过 Google、Spotify 和 Netflix 限制",
|
915
|
+
"label": "启用扭曲+"
|
916
|
+
},
|
917
|
+
"warp_mode": {
|
918
|
+
"description": "✴️ 全部:所有站点在出站中使用 Warp IP\n<br>\n☑️ 仅国内和被阻止的网站:仅国内网站和 Google、Spotify、Netflix、OpenAi、IPinfo.io 等网站在出站中使用 Warp IP",
|
919
|
+
"label": "✴️变形+模式"
|
920
|
+
},
|
921
|
+
"warp_plus_code": {
|
922
|
+
"description": "🔝 提高浏览速度。要获取密钥,请转到 <a href='https://1.1.1.1/'> 1.1.1.1 </a>\n应用程序并从 Cloudflare 购买原始 KEY\n<br>\n⚠️如果此Key有错误,WARP将被禁用。",
|
923
|
+
"label": "🔑 变形加键"
|
924
|
+
},
|
925
|
+
"warp_sites": {
|
926
|
+
"description": "",
|
927
|
+
"label": ""
|
600
928
|
},
|
601
929
|
"wireguard": {
|
602
|
-
"
|
603
|
-
"
|
930
|
+
"description": "",
|
931
|
+
"label": ""
|
604
932
|
},
|
605
|
-
"
|
606
|
-
"
|
607
|
-
"
|
933
|
+
"wireguard_enable": {
|
934
|
+
"description": "",
|
935
|
+
"label": ""
|
936
|
+
},
|
937
|
+
"wireguard_ipv4": {
|
938
|
+
"description": "",
|
939
|
+
"label": ""
|
940
|
+
},
|
941
|
+
"wireguard_ipv6": {
|
942
|
+
"description": "",
|
943
|
+
"label": ""
|
944
|
+
},
|
945
|
+
"wireguard_noise_trick": {
|
946
|
+
"description": "",
|
947
|
+
"label": ""
|
948
|
+
},
|
949
|
+
"wireguard_port": {
|
950
|
+
"description": "",
|
951
|
+
"label": ""
|
952
|
+
},
|
953
|
+
"wireguard_private_key": {
|
954
|
+
"description": "",
|
955
|
+
"label": ""
|
956
|
+
},
|
957
|
+
"wireguard_public_key": {
|
958
|
+
"description": "",
|
959
|
+
"label": ""
|
960
|
+
},
|
961
|
+
"ws_enable": {
|
962
|
+
"description": "",
|
963
|
+
"label": ""
|
964
|
+
},
|
965
|
+
"xtls_enable": {
|
966
|
+
"description": "",
|
967
|
+
"label": ""
|
608
968
|
}
|
609
969
|
},
|
610
|
-
"
|
611
|
-
"
|
612
|
-
"
|
613
|
-
"
|
614
|
-
"
|
615
|
-
"
|
616
|
-
"
|
617
|
-
|
618
|
-
|
970
|
+
"config.invalid uuid": "UUID 秘密无效。示例:6098ea35-8cb2-4a08-ba15-2be25bc49cb6",
|
971
|
+
"copy": "复制",
|
972
|
+
"daily": "⏰ 每日",
|
973
|
+
"days": "天",
|
974
|
+
"desktop": "桌面",
|
975
|
+
"direct": "➡️直接",
|
976
|
+
"domain": {
|
977
|
+
"cdn": "CDN",
|
978
|
+
"description": "请仔细、正确地填写此字段。否则,代理将会遇到问题。请访问<a href='https://github.com/hiddify/hiddify-config/wiki/??????-??????-??-??????-??????-??????#??????-??????????????????>帮助</a>了解如何创建子域。",
|
979
|
+
"domain": "领域",
|
980
|
+
"domain_fronting": {
|
981
|
+
"description": "它用于在 SNI 中模拟另一个网站而不是您的网站。因此,GFW 无法过滤您的域名\n<a href='https://github.com/hiddify/hiddify-config/wiki/Guide-for-domain-fronting'>指南</a>。 ⚠️CloudFlare 不支持域前置。",
|
982
|
+
"label": "🔒 启用 TLS 域前置"
|
983
|
+
},
|
984
|
+
"ip": "知识产权",
|
985
|
+
"mode": "模式"
|
986
|
+
},
|
987
|
+
"download": "直接下载",
|
988
|
+
"fake": "🆎 假网站",
|
989
|
+
"gRPC": "➿ gRPC",
|
990
|
+
"gRPC is a H2 based protocol. Maybe it is faster for you!": "ℹ️ gRPC 是一个基于 H2 的协议。也许对你来说更快!",
|
991
|
+
"in parent panel": "在家长面板中",
|
992
|
+
"install from google play": "<i class='fa-brands fa-google-play'></i> Google Play",
|
993
|
+
"ios": "iOS系统",
|
994
|
+
"items": "",
|
995
|
+
"lang": {
|
996
|
+
"en": "🇺🇸 English 中文",
|
997
|
+
"fa": "🇮🇷 Persian فارسی 波斯语",
|
998
|
+
"pt": "🇵🇹 Portuguese پرتغالی 葡萄牙語",
|
999
|
+
"ru": "🇷🇺 俄语 Русский",
|
1000
|
+
"zh": "🇨🇳 Chinese چینی 简体中文"
|
1001
|
+
},
|
1002
|
+
"lib": {
|
1003
|
+
"telegram": {
|
1004
|
+
"erlang": "⛔️ 不工作 - Erlang:中等性能",
|
1005
|
+
"go": "✴️ Go:高性能 - 无广告支持",
|
1006
|
+
"python": "✅ Python:低性能"
|
1007
|
+
}
|
1008
|
+
},
|
1009
|
+
"log": "📄 日志",
|
1010
|
+
"login": {
|
1011
|
+
"secret": {
|
1012
|
+
"description": "密码由服务提供商提供。",
|
1013
|
+
"label": "密码"
|
1014
|
+
}
|
1015
|
+
},
|
1016
|
+
"macOS": "苹果系统",
|
1017
|
+
"master": {
|
1018
|
+
"page-title": "Hiddify 管理器"
|
1019
|
+
},
|
1020
|
+
"monthly": "🗓️每月",
|
1021
|
+
"next": "下一个",
|
1022
|
+
"no_reset": "⭐️无需重置",
|
1023
|
+
"node": {
|
1024
|
+
"diff-version": "",
|
1025
|
+
"mode": {
|
1026
|
+
"dscr": "节点模式.dscr",
|
1027
|
+
"label": "节点模式"
|
1028
|
+
},
|
1029
|
+
"name": {
|
1030
|
+
"dscr": "节点名称.dscr",
|
1031
|
+
"label": "节点名称"
|
1032
|
+
},
|
1033
|
+
"uuid": {
|
1034
|
+
"dscr": "节点.uuid.dscr",
|
1035
|
+
"label": "节点UUID"
|
1036
|
+
}
|
1037
|
+
},
|
1038
|
+
"old_xtls_direct": "🔙旧直连模式(针对木马TCP、VLess XTLS)",
|
1039
|
+
"open": "打开",
|
1040
|
+
"package days?": "包天数?",
|
1041
|
+
"package size?": "包装尺寸?",
|
1042
|
+
"parent": {
|
1043
|
+
"invalid-parent-url": "",
|
1044
|
+
"sync-req-failed": ""
|
1045
|
+
},
|
1046
|
+
"previous": "以前的",
|
1047
|
+
"quicksetup": {
|
1048
|
+
"setlang": {
|
1049
|
+
"error": "更改语言时发生错误。",
|
1050
|
+
"success": "更改语言成功。"
|
1051
|
+
}
|
1052
|
+
},
|
1053
|
+
"reality": "🔂 现实",
|
1054
|
+
"relay": "♾️ 中继(使用中间节点连接)",
|
1055
|
+
"search": "搜索",
|
619
1056
|
"see the log in the bellow screen": "📑 查看以下屏幕中的日志",
|
620
|
-
"
|
621
|
-
"
|
1057
|
+
"selected domain for REALITY is not in the same ASN. To better use of the protocol, it is better to find a domain in the same ASN.": "REALITY 的所选域不在同一 ASN 中。为了更好地使用该协议,最好在同一 ASN 中找到一个域",
|
1058
|
+
"serverssh": {
|
1059
|
+
"password-login": {
|
1060
|
+
"warning": "您的服务器很容易受到滥用,因为您的 SSH 中启用了密码身份验证。为了保护您的服务器,请切换到密钥身份验证机制并关闭PasswordAuthentication。<a href='https://github.com/hiddify/Hiddify-Manager/wiki/Disable-SSH-Password-Authentication'>阅读更多...</a>"
|
1061
|
+
}
|
1062
|
+
},
|
1063
|
+
"singbox: ssh": "歌手盒:SSH",
|
1064
|
+
"ssh": "SSH",
|
1065
|
+
"sub_link_only": "📳 仅适用于订阅链接(可以是 Direct、Relay 或 CDN)",
|
1066
|
+
"telegram": "电报",
|
1067
|
+
"test": "测试",
|
1068
|
+
"update": "更新",
|
622
1069
|
"user": {
|
623
|
-
"user_links": "用户链接",
|
624
|
-
"name": "姓名",
|
625
1070
|
"UUID": "通用唯一标识符",
|
626
|
-
"usage_limit_GB": "⌛️ 使用限制 (GB)",
|
627
1071
|
"current_usage_GB": "当前使用情况(GB)",
|
628
1072
|
"expiry_time": "过期(天)",
|
629
|
-
"last_reset_time": "最后使用日期重置",
|
630
1073
|
"home": {
|
631
|
-
"
|
632
|
-
"tool": {
|
633
|
-
"all-configs": "所有配置",
|
634
|
-
"doh": {
|
635
|
-
"title": "",
|
636
|
-
"help": ""
|
637
|
-
}
|
638
|
-
},
|
1074
|
+
"all_configs": "所有配置",
|
639
1075
|
"allconfig": {
|
1076
|
+
"clash-configs": "冲突配置",
|
1077
|
+
"hiddify-managers": "所有配置 Hiddify 管理器",
|
1078
|
+
"link-configs": "订阅链接",
|
640
1079
|
"name": "名称和链接",
|
641
|
-
"type": "类型",
|
642
1080
|
"protocol": "协议",
|
643
|
-
"transport": "运输",
|
644
1081
|
"security": "安全",
|
645
|
-
"
|
646
|
-
"
|
647
|
-
"link-configs": "订阅链接"
|
1082
|
+
"transport": "运输",
|
1083
|
+
"type": "类型"
|
648
1084
|
},
|
649
1085
|
"allconfigs": {
|
650
1086
|
"expect_vless": "除了VLess"
|
@@ -652,465 +1088,88 @@
|
|
652
1088
|
"android": {
|
653
1089
|
"intro": "请从 %(dl_link)s %(play_link)s 安装 Hiddify Android。\n\n<!--\n<div class='callout callout-danger'>\n <b>将 Hiddify Android 更新至版本 0.14</b>\n</div>-->\n<详情>\n<summary>为什么要隐藏 Android?</summary>\n<div class='callout callout-info'>\n\n Hiddify Android 是 Clash 的开源分支,支持更多协议。\n <br>\n 它的源代码存在于\n <a href='https://github.com/hiddify/HiddifyProxyAndroid'>GitHub</a>。\n \n <br>\n 因此,它是安全的。\n\n <详情>\n <summary>替代方案:正常冲突</summary>\n <div class='btn-group'>\n <a href='https://play.google.com/store/apps/details?id=com.github.kr328.clash'\n class='btn btn-warning orig-link'>Google Play 中的冲突</a>\n </div>\n <div class='btn-group'>\n <a href='/{{hconfigs[ConfigEnum.proxy_path]}}/gh/Kr328/ClashForAndroid/releases/download/v2.5.12/cfa-2.5.12-premium-universal-release.apk'\n class='btn btn-warning orig-link'>直接下载</a>\n </div>\n\n <div class='警报警报-危险'>\n Clash 不支持 VLess 协议。因此,我们需要为其添加另一个链接。\n </div>\n \n\n </详情>\n </div>\n</详情>"
|
654
1090
|
},
|
1091
|
+
"branding": {
|
1092
|
+
"linktitle": "支持页面链接",
|
1093
|
+
"title": "支持"
|
1094
|
+
},
|
655
1095
|
"clash_configs": {
|
656
|
-
"
|
657
|
-
|
658
|
-
"
|
659
|
-
"
|
660
|
-
"btn": "仅针对被阻止的站点安装"
|
1096
|
+
"all_sites": {
|
1097
|
+
"btn": "为所有站点安装代理。",
|
1098
|
+
"description": "对所有网站甚至本地网站使用代理。\n<div class='callout callout-danger'>\n 加载本地网站会变慢并且会危及您的隐私。\n</div>",
|
1099
|
+
"title": "所有站点的代理"
|
661
1100
|
},
|
662
1101
|
"alternative_for_normal_clash": "Clash 的替代链接",
|
663
|
-
"link_for_normal_clash": "安装冲突",
|
664
1102
|
"foreign_sites": {
|
665
|
-
"
|
1103
|
+
"btn": "安装国外网站",
|
666
1104
|
"description": "对所有外国站点(甚至未被阻止的站点)使用代理。\n<div class='callout callout-warning'>\n此模式在访问某些受制裁的网站时很有用。\n</div>",
|
667
|
-
"
|
1105
|
+
"title": "国外网站代理"
|
668
1106
|
},
|
669
|
-
"
|
670
|
-
|
671
|
-
|
672
|
-
"btn": "
|
1107
|
+
"intro": "现在,根据您的需求,单击以下链接之一。\n<br/>",
|
1108
|
+
"link_for_normal_clash": "安装冲突",
|
1109
|
+
"only_for_blocked_sites": {
|
1110
|
+
"btn": "仅针对被阻止的站点安装",
|
1111
|
+
"description": "建议使用此模式。它仅通过代理转发被阻止的站点。\n <div class='callout callout-success'>\n 在此模式下,您不会感觉到速度有任何变化。\n </div>",
|
1112
|
+
"title": "仅适用于被阻止的网站"
|
673
1113
|
}
|
674
1114
|
},
|
675
|
-
"all_configs": "所有配置",
|
676
|
-
"speedtest": {
|
677
|
-
"title": "速度测试(检测脏IP)",
|
678
|
-
"intro": "首先,测试<b>没有</b>代理的速度。如果速度不好,则说明该 IP 在您的 ISP 上被称为“脏”。\n如果没有代理时速度较低,请不要浪费时间来测试该代理。\n否则,使用该站点的不同代理进行测试,如果速度与没有代理的速度相似,那么您已经找到了最佳协议。\n<br/>",
|
679
|
-
"upload": "上传",
|
680
|
-
"download": "下载",
|
681
|
-
"two_ways": "双向"
|
682
|
-
},
|
683
1115
|
"doh": "HTTPS 上的 DNS",
|
1116
|
+
"ios": {
|
1117
|
+
"others": {
|
1118
|
+
"intro": "首先安装以下应用程序之一:\n\n<div class='btn-group'>\n\n<a href='https://apps.apple.com/us/app/foxray/id6448898396'\n class='btn btn-primary orig-link'>FoXray</a>\n\n</div>\n\n<div class='btn-group'>\n\n<a href='https://apps.apple.com/us/app/fair-vpn/id1533873488'\n class='btn btn-primary orig-link'>公平 VPN</a>\n</div>\n\n<br/>\n然后应用以下配置:\n<br/>",
|
1119
|
+
"title": "FoXray 和 Fair VPN"
|
1120
|
+
},
|
1121
|
+
"stash": {
|
1122
|
+
"intro": "Stash 和 Shadowrocket 都是很棒的应用程序。无论哪一个都值得购买。\n<br>\n<br/>\n <div class='btn-group'>\n <a href='https://apps.apple.com/us/app/stash-rule-based-proxy/id1596063349' target='_blank' class='btn btn-success orig-link'>下载 Stash</一个>\n </div>\n <div class='btn-group'>\n <a href='https://apps.apple.com/us/app/shadowrocket/id932747118' target='_blank' class='btn btn-primary orig-link'>下载 Shadowrocket</a>\n </div><br>\n<br/>",
|
1123
|
+
"title": "<button class='btn btn-sm btn-default' onclick='show_video('ios-stash')'><i class='fa-solid fa-question'></i> 隐藏</button>\n <button class='btn btn-sm btn-default' onclick='show_video('ios-shadowrocket')'><i class='fa-solid fa-question'></i> Shadowrocket</button>\n <span class='badge badge-success'>推荐</span>"
|
1124
|
+
}
|
1125
|
+
},
|
1126
|
+
"link": {
|
1127
|
+
"manual-copy": "复制到剪贴板:Ctrl+C,Enter",
|
1128
|
+
"success-copy": "链接已复制到剪贴板。"
|
1129
|
+
},
|
684
1130
|
"qr-code": {
|
685
1131
|
"description": "要复制或共享链接,请单击灰色的<i class='fa-solid fa-qrcode'></i>字段以显示其二维码。",
|
686
1132
|
"display": "显示二维码"
|
687
1133
|
},
|
688
|
-
"
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
"
|
694
|
-
|
695
|
-
"intro": "首先安装以下应用程序之一:\n\n<div class='btn-group'>\n\n<a href='https://apps.apple.com/us/app/foxray/id6448898396'\n class='btn btn-primary orig-link'>FoXray</a>\n\n</div>\n\n<div class='btn-group'>\n\n<a href='https://apps.apple.com/us/app/fair-vpn/id1533873488'\n class='btn btn-primary orig-link'>公平 VPN</a>\n</div>\n\n<br/>\n然后应用以下配置:\n<br/>"
|
696
|
-
}
|
1134
|
+
"share-title": "分享到社交媒体",
|
1135
|
+
"speedtest": {
|
1136
|
+
"download": "下载",
|
1137
|
+
"intro": "首先,测试<b>没有</b>代理的速度。如果速度不好,则说明该 IP 在您的 ISP 上被称为“脏”。\n如果没有代理时速度较低,请不要浪费时间来测试该代理。\n否则,使用该站点的不同代理进行测试,如果速度与没有代理的速度相似,那么您已经找到了最佳协议。\n<br/>",
|
1138
|
+
"title": "速度测试(检测脏IP)",
|
1139
|
+
"two_ways": "双向",
|
1140
|
+
"upload": "上传"
|
697
1141
|
},
|
698
1142
|
"telegram": {
|
699
1143
|
"clickbtn": "电报代理",
|
700
1144
|
"description": "单击以下链接之一,然后在电报中您可以看到一个包含<b>连接代理</b>的窗口。点击它,它就会起作用。\n<br/>"
|
701
1145
|
},
|
1146
|
+
"title": "希迪菲",
|
1147
|
+
"tool": {
|
1148
|
+
"all-configs": "所有配置",
|
1149
|
+
"doh": {
|
1150
|
+
"help": "",
|
1151
|
+
"title": "HTTPS 上的 DNS"
|
1152
|
+
}
|
1153
|
+
},
|
702
1154
|
"usage": {
|
703
|
-
"
|
1155
|
+
"details": "显示使用详情",
|
1156
|
+
"expire": "到期:",
|
704
1157
|
"from": "的",
|
705
1158
|
"monthly": "每月",
|
706
|
-
"
|
707
|
-
"details": "显示使用详情"
|
708
|
-
},
|
709
|
-
"branding": {
|
710
|
-
"title": "支持",
|
711
|
-
"linktitle": "支持页面链接"
|
1159
|
+
"title": "⏳ 流量使用"
|
712
1160
|
},
|
713
1161
|
"windows": {
|
714
1162
|
"intro": "首先,根据您的操作系统下载并安装 Hiddify Desktop 软件。\n<br/>\n%(hiddify_desktop_links)s\n\n<详情>\n<summary>为什么选择 Hiddify Desktop?</summary>\n<div class='callout callout-info'>\n\n Hiddify Desktop 是 Clash 的一个安全开源分支,支持更多 VLESS 和 UTLS 指纹识别。\n <br>\n<br/>\n 其源代码存在于\n <a href='https://github.com/hiddify/HiddifyDesktop'>GitHub</a>。\n \n\n <详情>\n <summary>替代方案:正常冲突</summary>\n %(normal_clash_link)s\n\n <div class='警报警报-危险'>\n Clash 不支持浏览器指纹识别和 VLESS 协议。因此,我们需要为其添加另一个链接。\n </div>\n \n\n </详情>\n</div>\n </详情>\n<br/>\n现在,根据您的需要,您可以单击其中一个按钮。通过在浏览器中查看该窗口,只需单击<b>打开</b>选项即可自动将服务器链接添加到 Hiddify Desktop。"
|
715
|
-
},
|
716
|
-
"share-title": "分享到社交媒体",
|
717
|
-
"link": {
|
718
|
-
"success-copy": "链接已复制到剪贴板。",
|
719
|
-
"manual-copy": "复制到剪贴板:Ctrl+C,Enter"
|
720
1163
|
}
|
721
|
-
}
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
"Max Users": "最大用户数",
|
727
|
-
"Online Users": "在线用户",
|
728
|
-
"Can add sub admin": "👥 可以添加子管理员",
|
729
|
-
"Should be a valid uuid": "",
|
730
|
-
"Add some text that is only visible to super_admin.": "添加一些只有超级管理员可见的文本",
|
731
|
-
"Define the admin mode. ": "🥇🥈🥉 定义管理模式",
|
732
|
-
"Config file is incorrect": "配置文件不正确。",
|
733
|
-
"Restore File": "恢复文件",
|
734
|
-
"Restore File Description": "选择下载的恢复文件",
|
735
|
-
"Restore Settings": "⚙️恢复设置",
|
736
|
-
"Restore Settings description": "恢复所有设置说明",
|
737
|
-
"Restore Users": "👥 恢复用户",
|
738
|
-
"Restore Users description": "选择此选项可恢复所有用户",
|
739
|
-
"Restore Domain": "🌏 恢复域名",
|
740
|
-
"Restore Domain description": "选择此选项可恢复您的域",
|
741
|
-
"Override Root Admin": "🔁 覆盖备份中的所有者",
|
742
|
-
"It will override the root admin to the current user": "它将把备份文件的所有者admin覆盖为当前用户",
|
743
|
-
"Submit": "提交",
|
744
|
-
"This version of hiddify panel is outdated. Please update it from admin area.": "⚠️ 此版本的 Hiddify Manager 已过时。请从管理区域更新",
|
745
|
-
"Access Denied!": "拒绝访问",
|
746
|
-
"It seems that you have not setup the system completely. <a class=\"btn btn-success\" href=\"%(quick_setup)s\">Click here</a> to complete setup.": "看来你还没有完全安装系统。 <a class='btn btn-success' href='%(quick_setup)s'>单击此处</a>完成设置。",
|
747
|
-
"Please understand that parent panel is under test and the plan and the condition of use maybe change at anytime.": "请理解,家长面板正在测试中,计划和使用条件可能随时发生变化。",
|
748
|
-
"It seems that you are using default domain (%(domain)s) which is not recommended.": "看来您正在使用默认域(%(domain)s),这是不推荐的。请从域部分更改或删除它。",
|
749
|
-
"It seems that you have not created any users yet. Default user link: %(default_link)s": "您似乎还没有创建任何用户。默认用户链接:%(default_link)s",
|
750
|
-
"serverssh": {
|
751
|
-
"password-login": {
|
752
|
-
"warning": ""
|
753
|
-
}
|
1164
|
+
},
|
1165
|
+
"last_reset_time": "最后使用日期重置",
|
1166
|
+
"name": "姓名",
|
1167
|
+
"usage_limit_GB": "⌛️ 使用限制 (GB)",
|
1168
|
+
"user_links": "用户链接"
|
754
1169
|
},
|
755
|
-
"child has been removed!": "孩子已被移走!",
|
756
|
-
"domain": {
|
757
|
-
"description": "请仔细、正确地填写此字段。否则,代理将会遇到问题。请访问<a href='https://github.com/hiddify/hiddify-config/wiki/??????-??????-??-??????-??????-??????#??????-??????????????????>帮助</a>了解如何创建子域。",
|
758
|
-
"domain": "领域",
|
759
|
-
"mode": "模式",
|
760
|
-
"ip": "知识产权",
|
761
|
-
"cdn": "CDN",
|
762
|
-
"domain_fronting": {
|
763
|
-
"label": "🔒 启用 TLS 域前置",
|
764
|
-
"description": "它用于在 SNI 中模拟另一个网站而不是您的网站。因此,GFW 无法过滤您的域名\n<a href='https://github.com/hiddify/hiddify-config/wiki/Guide-for-domain-fronting'>指南</a>。 ⚠️CloudFlare 不支持域前置。"
|
765
|
-
}
|
766
|
-
},
|
767
|
-
"Direct mode means you want to use your server directly (for usual use), CDN means that you use your server on behind of a CDN provider.": "➡️ <b>直接:</b>如果您在仅 DNS 模式下在 DNS 提供商上专门配置域,请选择此模式。 (CDN 或代理模式关闭)<br>\n🔙 <b>旧 Direct 模式:</b> 该模式与 Direct 模式类似,但不使用 gRPC 进行通信。如果您希望在 DNS 提供商上以仅 DNS 模式配置域而不使用 gRPC,请选择旧模式。\n<br>\n🔀 <b>CDN:</b>如果您的服务器域使用 CDN 提供商,请选择此模式。 (代理模式开启)<br>\n☑️ <b>自动 CDN IP 选择器:</b>此模式的功能与 CDN 模式类似,但根据 <a href='https://ircf.space' target='_blank' 提供的 IP 进行自动 IP 分配>ircf.space</a>。 Auto CDN IP 模式下,从域名解析 IP 地址,CDN 模式下,返回域名。<br>\n♾️ <b>中继:</b>如果您使用一台或多台中间服务器,请选择此模式。 <a href='https://github.com/hiddify/hiddify-config/discussions/129' target='_blank'>了解更多</a>\n<br>\n✴️ <b>Cloudflare Worker:</b>此模式可以在 Cloudflare 中自动为您的域创建工作人员。通过注册此域来简化工作人员的设置和管理,因为工作人员注册的必要步骤是在 Cloudflare 中自动处理的。\n<br>\n🔂 <b>Reality:</b> 利用 Reality 协议创建多个域。\n<br>\n🆎 <b>假站点:</b>如果您想使用假域名(例如 Soft98.ir)绕过 SNI 白名单代理,请选择此模式。 (不建议)\n<br>",
|
768
|
-
"You can select the configs with which domains show be shown in the user area. If you select all, automatically, all the new domains will be added for each users.": "对于访问该域的用户区的用户,指定他们可以看到哪些域的代理。\n<br>\n建议:对于IP未过滤且与其他域不同的域,选择所有其他域(当前域除外)。因此,由于该 IP 的使用不是用于代理,并且它是一个简单的网站,因此该域名和 IP 永远不会被阻止,您的用户可以轻松更新新的配置文件。",
|
769
|
-
"The name shown in the configs for this domain.": "将显示在该域的配置中的名称。",
|
770
|
-
"This can be used for giving your users a permanent non blockable links.": "这可用于为您的用户提供永久的不可阻止链接。",
|
771
|
-
"gRPC is a H2 based protocol. Maybe it is faster for you!": "ℹ️ gRPC 是一个基于 H2 的协议。也许对你来说更快!",
|
772
|
-
"Should be a valid domain": "",
|
773
|
-
"Invalid IP or domain": "",
|
774
|
-
"Invalid REALITY hostnames": "无效的 REALITY 主机名",
|
775
|
-
"Only for sublink?": "🌍 仅用于订阅链接",
|
776
|
-
"Show Domains": "显示域的配置",
|
777
|
-
"Alias": "别名",
|
778
|
-
"gRPC": "➿ gRPC",
|
779
|
-
"admin link": "行政",
|
780
|
-
"All": "全部",
|
781
|
-
"You have used this domain in: ": "您已在以下位置使用过该域名:",
|
782
|
-
"Couldn't find your ip addresses": "找不到您的 IP 地址",
|
783
|
-
"Can not connect to Cloudflare.": "",
|
784
|
-
"Using alias with special charachters may cause problem in some clients like FairVPN.": "",
|
785
|
-
"Domain is not REALITY friendly!": "域名对现实不友好!",
|
786
|
-
"REALITY Fallback domain is not compaitble with server names!": "REALITY 后备域与服务器名称不兼容!",
|
787
|
-
"Error in auto cdn format": "⚠️ 自动 CDN 格式错误",
|
788
|
-
"node": {
|
789
|
-
"name": {
|
790
|
-
"label": "节点名称",
|
791
|
-
"dscr": "节点名称.dscr"
|
792
|
-
},
|
793
|
-
"mode": {
|
794
|
-
"label": "节点模式",
|
795
|
-
"dscr": "节点模式.dscr"
|
796
|
-
},
|
797
|
-
"uuid": {
|
798
|
-
"label": "节点UUID",
|
799
|
-
"dscr": "节点.uuid.dscr"
|
800
|
-
}
|
801
|
-
},
|
802
|
-
"Remote nodes are not supported yet!": "尚不支持远程节点!",
|
803
|
-
"quicksetup": {
|
804
|
-
"setlang": {
|
805
|
-
"success": "更改语言成功。",
|
806
|
-
"error": "更改语言时发生错误。"
|
807
|
-
}
|
808
|
-
},
|
809
|
-
"lang": {
|
810
|
-
"en": "🇺🇸 English 中文",
|
811
|
-
"fa": "🇮🇷 Persian فارسی 波斯语",
|
812
|
-
"pt": "🇵🇹 Portuguese پرتغالی 葡萄牙語",
|
813
|
-
"zh": "🇨🇳 Chinese چینی 简体中文",
|
814
|
-
"ru": "🇷🇺 俄语 Русский"
|
815
|
-
},
|
816
|
-
"Iran": "🇮🇷伊朗",
|
817
|
-
"China": "🇨🇳中国",
|
818
|
-
"config.Invalid domain": "错误!无效域名。域名格式为 www.google.com",
|
819
|
-
"config.Domain already used": "域存在于域部分。使用另一个域",
|
820
|
-
"Domain (%(domain)s)-> IP=%(domain_ip)s is not matched with your ip=%(server_ip)s which is required in direct mode": "域 (%(domain)s)-> IP = %(domain_ip)s 与您的 IP = %(server_ip)s 不同。这在直接模式下是必需的",
|
821
|
-
"Port is already used! in": "端口已用于:",
|
822
|
-
"ProxyPath is already used! use different proxy path": "ProxyPath 已被使用!使用不同的代理路径",
|
823
|
-
"Xray": "☢️ X射线",
|
824
|
-
"SingBox": "📦 歌盒",
|
825
|
-
"Disable": "禁用",
|
826
|
-
"Only Blocked and Local websites": "☑️ 仅屏蔽和本地网站",
|
827
|
-
"Others": "🇺🇳其他",
|
828
|
-
"Release": "✅ 发布",
|
829
|
-
"Beta": "☑️ 测试版",
|
830
|
-
"Develop": "⚠️开发",
|
831
|
-
"lib": {
|
832
|
-
"telegram": {
|
833
|
-
"python": "✅ Python:低性能",
|
834
|
-
"go": "✴️ Go:高性能 - 无广告支持",
|
835
|
-
"orignal": "⛔️ 不工作 - 原始:高性能",
|
836
|
-
"erlang": "⛔️ 不工作 - Erlang:中等性能"
|
837
|
-
}
|
838
|
-
},
|
839
|
-
"Invalid admin link": "管理员链接无效",
|
840
|
-
"config.Invalid telegram bot token": "Telegram 机器人令牌无效",
|
841
|
-
"config.Invalid brand link": "无效的链接。它应该采用以下格式:(https 或 http://example.com)",
|
842
|
-
"config.invalid uuid": "UUID 秘密无效。示例:6098ea35-8cb2-4a08-ba15-2be25bc49cb6",
|
843
|
-
"config.Invalid proxy path": "代理路径无效。它应该是 ASCI 字符串 (a-z A-Z 0-9)",
|
844
|
-
"config.Invalid port": "端口无效。它应该是逗号分隔的整数,例如2052,2053",
|
845
|
-
"config.Invalid! The pattern is number-number": "⚠️配置无效!模式是数字-数字",
|
846
|
-
"config.Invalid! it should be a number only": "⚠️配置无效!它应该只是一个数字",
|
847
|
-
"Reset package days": "📆 重置套餐天数",
|
848
|
-
"Reset package usage": "⏳ 重置套餐的使用情况",
|
849
|
-
"Reset every month": "每月",
|
850
|
-
"Added by": "添加者",
|
851
|
-
"Start Date": "开始日期",
|
852
|
-
"Last Online": "最后一次连接",
|
853
|
-
"Package Days": "📆 套餐日",
|
854
|
-
"Max IPs": "最大IP数",
|
855
|
-
"Enable": "❇️启用",
|
856
|
-
"Active": "",
|
857
|
-
"Add some text that is only visible to you.": "您可以添加一些只有您可见的文本",
|
858
|
-
"Define the user mode. Should the usage reset every month?": "用户的套餐模式。使用量是否应该每月、每周等重置",
|
859
|
-
"If monthly is enabled, the usage will be reset after 30 days from this date.": "如果启用每月选项,当该数字达到 30 时,用户使用量将被重置(对于每周和每日,该数字为 7 和 1)",
|
860
|
-
"From when the user package will be started? Empty for start from first connection": "指定包的开始日期。留空以从第一个连接开始。",
|
861
|
-
"How many days this package should be available?": "这个套餐有多少天?",
|
862
|
-
"Package not started yet.": "套餐还没开始。",
|
863
|
-
"Remaining: ": "包裹结束",
|
864
|
-
"You have too much users! You can have only %(active)s active users and %(total)s users": "你的用户太多了!您只能拥有 %(active)s 个活跃用户和 %(total)s 个用户",
|
865
|
-
"Backup": "备份",
|
866
|
-
"You can download a json formated of configurations by clicking <a href='%(link)s' class='btn btn-primary'>here</a>": "🔄 Hiddify Manager 每 6 小时自动进行一次备份。备份文件在服务器上的路径:⬇️\n<br>\n/opt/hiddify-config/hiddify-panel/备份\n<br>\n<br>\n<br>\n⚠️您可以通过单击下面的按钮下载配置的 JSON 文件格式\n<br>\n<br>\n<a href='%(link)s' class='btn btn-primary'>下载备份文件</a>",
|
867
|
-
"Restore": "♻️恢复",
|
868
|
-
"You can restore your configs from previously downloaded configs": "ℹ️您可以从以前下载的备份文件恢复您的配置",
|
869
|
-
"Why Going to Premium?": "为什么要选择高级版?",
|
870
|
-
"Premium Description": "Hiddify Manager 仅供非商业用途。但如果您将此面板用于商业用途,请通过捐赠来帮助该项目发展。 <br/>\n为了换取您的财务支持,我们还为您的商业产品提供特殊设施。\n<br/>\n<br/>\n例如:\n<ul><li>\n<li>同步到Cloudflare的可能性:即通过在面板中添加域名,也可以在Cloudflare中进行相关设置</li>\n<li>可以在面板中显示您的品牌</li>\n<li>可以使用中央面板在一个面板中管理多于一台服务器,因此不再需要在不同服务器中注册用户,并且用户的数量将在所有服务器中收集。\n</li>\n<li>\n使用 Telegram 机器人的可能性\n</li>\n<li>\n能够更改代理名称\n</li>\n</ul>\n\n捐赠后请联系<a href='tg://resolve?domain=HiddifyCommercial'>@HiddifyCommercial</a>。\n发送消息获取商业用户专用版本。",
|
871
|
-
" Search Settings": "搜索设置",
|
872
|
-
"Create": "创造",
|
873
|
-
"Current Domain": "",
|
874
|
-
"Save & Add More": "保存并添加更多",
|
875
|
-
"Close": "关闭",
|
876
|
-
"Back": "后退",
|
877
|
-
"Today Usage": "今天",
|
878
|
-
"Yesterday Usage": "昨天",
|
879
|
-
"Month Usage": "每月",
|
880
|
-
"Total Usage": "总使用量",
|
881
|
-
"In 5 minutes": "5 分钟内",
|
882
|
-
"Network": "网络",
|
883
|
-
"From Last Restart": "从上次重新启动开始",
|
884
|
-
"CPU %(cores)s Cores": "CPU %(cores)s 核心",
|
885
|
-
"RAM": "内存",
|
886
|
-
"Disk": "硬盘",
|
887
|
-
"Hiddify": "希迪菲",
|
888
|
-
"Childs": "孩子们",
|
889
|
-
"No children!": "没有孩子",
|
890
|
-
"Status": "地位",
|
891
|
-
"Domain": "领域",
|
892
|
-
"Edit Proxy Names": "✏️ 修改代理",
|
893
|
-
"Save Link": "保存链接",
|
894
|
-
"Please note that your panel can be accessed only via <a href=\"%(adminlink)s\" class=\"btn btn-primary copy-link\">%(adminlink)s</a>. Please save this link.": "请注意,您的面板只能通过以下链接访问。请保存此链接。\n<p><a href='%(adminlink)s' class='btn btn-secondary copy-link'><i class='fa-solid fa-copy'></i></a>\n<a href='%(adminlink)s' class='copy-link' style='word-break: break-all;'>%(adminlink)s</a></p>",
|
895
|
-
"Please wait ": "请稍等",
|
896
|
-
"log": "📄 日志",
|
897
|
-
"Click here to see the complete log": "单击此处查看完整日志",
|
898
|
-
"Success": "成功",
|
899
|
-
"The action done successfully. You can now leave this page.": "✅ 行动成功完成。您现在可以离开此页面",
|
900
|
-
"With selected": "",
|
901
|
-
"Are you sure you want to delete this record?": "",
|
902
|
-
"Filter": "",
|
903
|
-
"Export": "",
|
904
|
-
"%(placeholder)s": "",
|
905
|
-
"Save": "",
|
906
|
-
"Root": "",
|
907
|
-
"Sort by %(name)s": "",
|
908
|
-
"Rename File": "",
|
909
|
-
"Are you sure you want to delete \\'%(name)s\\' recursively?": "",
|
910
|
-
"Are you sure you want to delete \\'%(name)s\\'?": "",
|
911
|
-
"Upload File": "",
|
912
|
-
"Create Directory": "",
|
913
|
-
"Please select at least one file.": "",
|
914
|
-
"Edit": "",
|
915
|
-
"Delete?": "",
|
916
|
-
"New": "",
|
917
|
-
"Add": "",
|
918
|
-
"Apply": "",
|
919
|
-
"Reset Filters": "",
|
920
|
-
"items": "",
|
921
|
-
"Create New Record": "",
|
922
|
-
"Select all records": "",
|
923
|
-
"Select record": "",
|
924
|
-
"Please select at least one record.": "",
|
925
|
-
"In this section, you can add your domain. You need to add at least one domain in direct mode.": "1️⃣ 在此部分中,您可以添加您的域名。\n<br>\n2️⃣ 如果您想减少出现脏 IP 的可能性,可以添加多个中继服务器<a href='https://github.com/hiddify/hiddify-config/discussions/129'>阅读更多</a>。\n<br>\n3️⃣ 如果您的面板中有多个 IPv4 或 IPv6,您必须将指向它们的域添加为中继。",
|
926
|
-
"Send Message to User's Telegram": "📣 向用户的 Telegram 发送消息",
|
927
|
-
"All Users": "全部用户",
|
928
|
-
"Expired Users": "",
|
929
|
-
"Active Users": "",
|
930
|
-
"Offline more than 1 hour": "",
|
931
|
-
"Offline more than 1 day": "",
|
932
|
-
"Offline more than 1 week": "",
|
933
|
-
"User usage will be updated every 6 minutes. To update it now click <a href=\"%(link)s\"\n class=\"btn btn-info\">here</a>": "",
|
934
|
-
"Please type your message to send to the telegram:": "✏️ 请写下您要发送到 Telegram 的消息:",
|
935
|
-
"Sending": "",
|
936
|
-
"The message has been sent.": "消息已发送。",
|
937
|
-
"Hover the user to see the reason": "将鼠标悬停在用户上即可查看原因",
|
938
|
-
"The message was not sent to": "该消息未发送至",
|
939
|
-
"%(count)s records were successfully disabled.": "%(count)s 条记录已成功禁用。",
|
940
|
-
"%(count)s records were successfully enabled.": "%(count)s 条记录已成功启用。",
|
941
|
-
"app": {
|
942
|
-
"hiddify": {
|
943
|
-
"next": {
|
944
|
-
"title": "下一个",
|
945
|
-
"description": "Hiddify 下一个说明"
|
946
|
-
}
|
947
|
-
},
|
948
|
-
"hiddifyn": {
|
949
|
-
"title": "希迪尼",
|
950
|
-
"description": "HiddifyN 描述"
|
951
|
-
},
|
952
|
-
"v2rayng": {
|
953
|
-
"title": "V2RayNG",
|
954
|
-
"description": "V2RayNG 说明"
|
955
|
-
},
|
956
|
-
"hiddifyng": {
|
957
|
-
"title": "HiddifyNG",
|
958
|
-
"description": "HiddifyNG 描述"
|
959
|
-
},
|
960
|
-
"hiddify-clash-android": {
|
961
|
-
"title": "希迪冲突",
|
962
|
-
"description": "app.hiddify-clash-android.description"
|
963
|
-
},
|
964
|
-
"foxray": {
|
965
|
-
"title": "福克斯X射线",
|
966
|
-
"description": "福克斯射线描述"
|
967
|
-
},
|
968
|
-
"shadowrocket": {
|
969
|
-
"title": "暗影火箭",
|
970
|
-
"description": "暗影火箭描述"
|
971
|
-
},
|
972
|
-
"streisand": {
|
973
|
-
"title": "史翠珊",
|
974
|
-
"description": "史翠珊描述"
|
975
|
-
},
|
976
|
-
"loon": {
|
977
|
-
"title": "龙",
|
978
|
-
"description": "潜鸟描述"
|
979
|
-
},
|
980
|
-
"stash": {
|
981
|
-
"title": "藏",
|
982
|
-
"description": "藏匿描述"
|
983
|
-
},
|
984
|
-
"hiddify-clash-desktop": {
|
985
|
-
"title": "希迪冲突",
|
986
|
-
"description": "app.hiddify-clash-desktop.description"
|
987
|
-
},
|
988
|
-
"nekobox": {
|
989
|
-
"title": "猫盒子",
|
990
|
-
"description": "应用程序.nekobox.描述"
|
991
|
-
}
|
992
|
-
},
|
993
|
-
"Join our Hiddify Telegram channel to get the latest updates on Hiddify.": "加入我们的 Hiddify Telegram 频道,获取 Hiddify 的最新动态。",
|
994
|
-
"[Admin only visible message:] You can change this message from settings": "[管理员专用消息]:可通过设置自定义。",
|
995
|
-
"Hooray 🎉 🎉 🎉 \nWelcome to hiddifybot.\nStart by clicking the link on the panel or entering your UUID.": "万岁🎉🎉🎉\n欢迎使用 Hiddify 机器人\n首先单击面板上的链接或输入您的 UUID。",
|
996
|
-
"update": "更新",
|
997
|
-
"Welcome to admin bot. Choose your action": "欢迎使用管理机器人。选择你的行动",
|
998
|
-
"Create Package": "创建包",
|
999
|
-
"package size?": "包装尺寸?",
|
1000
|
-
"Ok": "好的",
|
1001
|
-
"package days?": "包天数?",
|
1002
|
-
"How many?": "多少?",
|
1003
|
-
"Domain?": "领域?",
|
1004
|
-
"Please Wait...": "请稍等...",
|
1005
|
-
"Finished": "",
|
1006
|
-
"Dear {}\n\nYour hiddify information is\nUUID: {}\nLast online date: {}\nExpire time: {}\nUsage class: {}\n": "亲爱的 {}\n\n您的 Hiddify 信息是\nUUID:{}\n最后在线日期:{}\n过期时间:{}\n使用类别:{}",
|
1007
|
-
"Your hiddify instance information \nDomain: {} \nUsage limit: {} GB\nCurrent usage: {} GB\nExpires at: {} \nRemaining days: {} \n\n\n Happy using 🎉 🎉 🎉 \n": "您的 Hiddify 实例信息\n领域: {}\n使用限制:{} GB\n当前使用情况:{} GB\n到期时间:{}\n剩余天数:{}\n\n\n祝你好运! 🎉🎉🎉",
|
1008
|
-
"login": {
|
1009
|
-
"secret": {
|
1010
|
-
"label": "密码",
|
1011
|
-
"description": "密码由服务提供商提供。"
|
1012
|
-
}
|
1013
|
-
},
|
1014
|
-
"Incorrect Password": "⚠️密码错误",
|
1015
|
-
"📅%(expire_days)s days": "📅%(expire_days)s 天剩余",
|
1016
|
-
"copy": "复制",
|
1017
|
-
"open": "打开",
|
1018
|
-
"Link is changed!": "ℹ️链接已更改!",
|
1019
|
-
"The page has been moved to a new link. Please copy and save the new link.": "该页面已移至新链接。请复制并保存新链接。",
|
1020
|
-
"all": "全部",
|
1021
|
-
"auto": "汽车",
|
1022
|
-
"singbox: ssh": "歌手盒:SSH",
|
1023
|
-
"ssh": "SSH",
|
1024
|
-
"Please select one of the following applications:": "📍请选择以下应用程序之一:\n<br/>\n<br/>",
|
1025
|
-
"download": "直接下载",
|
1026
|
-
"install from google play": "<i class='fa-brands fa-google-play'></i> Google Play",
|
1027
|
-
"HiddifyNG": "HiddifyNG <span class='badge badge-success'>推荐</span>",
|
1028
|
-
"HiddifyNG intro": "📌 请从以下任一链接安装 HiddifyNG:\n<br/>\n %(dl_link)s %(play_link)s\n<br/>\n然后单击下面的链接并在 HiddifyNG 中打开它。\n<br/>",
|
1029
|
-
"Click to Import": "点击导入",
|
1030
|
-
"V2rayNG": "替代 v2rayNG <button class='btn btn-sm btn-default' onclick='show_video('android-v2rayng')'><i class='fa-solid fa-question'></i> </button>\n<br/>\n<br/>",
|
1031
|
-
"V2rayNG intro": "请从以下任一链接安装 v2rayNG:%(dl_link)s %(play_link)s。\n然后按照视频教程复制下面的链接粘贴到v2rayNG中 <button class='btn btn-sm btn-default' onclick='show_video('android-v2rayng')'><i class='fa-solid fa -问题'></i> </按钮>。\n<br/>",
|
1032
|
-
"Hiddify Android": "Android 系统",
|
1033
|
-
"test": "测试",
|
1034
|
-
"Welcome %(user)s": "欢迎%(user)s",
|
1035
|
-
"telegram": "电报",
|
1036
|
-
"android": "安卓",
|
1037
|
-
"ios": "iOS系统",
|
1038
|
-
"desktop": "桌面",
|
1039
1170
|
"user.home.select os": "请选择您的操作系统。",
|
1040
1171
|
"user.home.select tool": "请选择该项目。",
|
1041
|
-
"QR code": "🧾 二维码",
|
1042
|
-
"Want to enjoy more with telegram?": "ℹ️ 将您的帐户连接到 Telegram",
|
1043
|
-
"Please connect your telegram account to the panel to be informed about latest news.": "请将您的 Telegram 帐户连接到面板以获取最新消息。",
|
1044
|
-
"next": "下一个",
|
1045
|
-
"previous": "以前的",
|
1046
|
-
"search": "搜索",
|
1047
|
-
"Check again": "再检查一遍",
|
1048
|
-
"Turn of VPN": "关闭VPN",
|
1049
|
-
"You should visit this page without VPN. Your country=%(your_country)s\nexpected=%(expected_country)s": "您应该在没有 VPN 的情况下访问此页面 Your Country =%(your_country)s\n预期=%(expected_country)s",
|
1050
|
-
"Please connect your telegram accout to the panel to be informed about latest news.": "请将您的 Telegram 帐户连接到面板以了解您的订阅的最新状态",
|
1051
|
-
"Click to Start Anti-Filter.": "<i class='fa-solid fa-play'></i> 点击以设置反过滤器",
|
1052
|
-
"Unified link for all application.": "所有应用程序的一键设置链接(推荐)",
|
1053
|
-
"Temporary Short Link": "⏱️临时短链接",
|
1054
|
-
"Simplifies the process of employing the link elsewhere.": "简化了在其他地方使用链接的过程",
|
1055
|
-
"Open in Application": "在应用程序中打开",
|
1056
|
-
"If the application do not open automatically, please click <a class='btn btn-primary copy-link'\n href='%(sub)s'>this universal link</a> to copy and paste it on\n your application, or:": "",
|
1057
|
-
"Use HiddifyNext:": "使用 HiddifyNext:",
|
1058
|
-
"Download App": "下载应用程序",
|
1059
|
-
"Import": "在应用程序中导入",
|
1060
|
-
"More Applications": "更多应用",
|
1061
|
-
"Import in": "导入",
|
1062
|
-
"QRCode": "<i class='fa-solid fa-qrcode'></i> QRCode",
|
1063
|
-
"Copy Link": "复制链接",
|
1064
|
-
"Reset Usage Time:": "流量使用重置时间:",
|
1065
|
-
"days": "天",
|
1066
|
-
"User is inactive": "用户处于非活动状态",
|
1067
|
-
"Too many Connected IPs": "连接的IP太多",
|
1068
|
-
"View in Telegram": "在电报中查看",
|
1069
|
-
"Windows": "视窗",
|
1070
|
-
"macOS": "苹果系统",
|
1071
|
-
"Linux": "Linux",
|
1072
|
-
"HiddigyN": "HiddifyN <span class='badge badge-success'>推荐</span>",
|
1073
|
-
"HiddifyN intro": "请从 %(dl_link)s 安装 HiddifyN。\n然后点击下面的链接。它会自动完成所有事情。\n<br/>",
|
1074
|
-
"HiddifyClash": "希迪冲突",
|
1075
|
-
"Oops! Something went wrong.": "哎呀!出了些问题。",
|
1076
|
-
"Please create an issue on Github.": "请在 Github 上创建问题",
|
1077
|
-
"master": {
|
1078
|
-
"page-title": "Hiddify 管理器"
|
1079
|
-
},
|
1080
|
-
"Parent Panel": "家长小组",
|
1081
|
-
"Admins": "管理员",
|
1082
|
-
"in parent panel": "在家长面板中",
|
1083
|
-
"Commercial use": "",
|
1084
|
-
"Bug": "错误/功能",
|
1085
|
-
"Donation": {
|
1086
|
-
"title": "",
|
1087
|
-
"description": ""
|
1088
|
-
},
|
1089
|
-
"Telegram Bot": "电报机器人",
|
1090
|
-
"Are you sure you want to do this action?": "⚠️您确定要执行此操作吗?",
|
1091
|
-
"direct": "➡️直接",
|
1092
|
-
"sub_link_only": "📳 仅适用于订阅链接(可以是 Direct、Relay 或 CDN)",
|
1093
|
-
"cdn": "🔀 CDN(Cloudflare 代理,...)",
|
1094
|
-
"auto_cdn_ip": "☑️ 自动 CDN IP 选择器",
|
1095
|
-
"relay": "♾️ 中继(使用中间节点连接)",
|
1096
|
-
"reality": "🔂 现实",
|
1097
|
-
"old_xtls_direct": "🔙旧直连模式(针对木马TCP、VLess XTLS)",
|
1098
|
-
"worker": "✴️ Cloudflare 工作人员",
|
1099
|
-
"fake": "🆎 假网站",
|
1100
|
-
"no_reset": "⭐️无需重置",
|
1101
|
-
"monthly": "🗓️每月",
|
1102
1172
|
"weekly": "📅每周",
|
1103
|
-
"
|
1104
|
-
"
|
1105
|
-
"Panel Link": "➖ 面板链接",
|
1106
|
-
"Bridge Servers": "➖ 桥接服务器",
|
1107
|
-
"Fake": "➖ 假货",
|
1108
|
-
"Example Domains": "测试并建议域",
|
1109
|
-
"close": "关闭",
|
1110
|
-
"clickable copy": "社交媒体链接",
|
1111
|
-
"Install": "安装",
|
1112
|
-
"Install Hiddify Application": "Hiddify 管理器安装",
|
1113
|
-
"Please click on %(install)s to save the user page.": "单击 %(install)s 保存用户页面。",
|
1114
|
-
"Count:": "数数:",
|
1115
|
-
"Actions": "行动"
|
1173
|
+
"worker": "✴️ Cloudflare 工作人员",
|
1174
|
+
"📅%(expire_days)s days": "📅%(expire_days)s 天剩余"
|
1116
1175
|
}
|