hiddifypanel 10.30.6.dev0__py3-none-any.whl → 10.30.8.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.
Files changed (48) hide show
  1. hiddifypanel/VERSION +1 -1
  2. hiddifypanel/VERSION.py +2 -2
  3. hiddifypanel/auth.py +16 -0
  4. hiddifypanel/base.py +8 -1
  5. hiddifypanel/drivers/singbox_api.py +2 -0
  6. hiddifypanel/drivers/ssh_liberty_bridge_api.py +10 -0
  7. hiddifypanel/drivers/user_driver.py +5 -2
  8. hiddifypanel/drivers/wireguard_api.py +34 -44
  9. hiddifypanel/drivers/xray_api.py +18 -4
  10. hiddifypanel/hutils/auth.py +1 -1
  11. hiddifypanel/hutils/proxy/xray.py +1 -1
  12. hiddifypanel/hutils/proxy/xrayjson.py +20 -22
  13. hiddifypanel/models/admin.py +14 -8
  14. hiddifypanel/models/base_account.py +14 -6
  15. hiddifypanel/models/user.py +38 -25
  16. hiddifypanel/panel/admin/DomainAdmin.py +1 -1
  17. hiddifypanel/panel/admin/UserAdmin.py +20 -11
  18. hiddifypanel/panel/cli.py +1 -27
  19. hiddifypanel/panel/commercial/restapi/v2/admin/__init__.py +3 -1
  20. hiddifypanel/panel/commercial/restapi/v2/admin/admin_info_api.py +1 -0
  21. hiddifypanel/panel/commercial/restapi/v2/admin/admin_log_api.py +1 -0
  22. hiddifypanel/panel/commercial/restapi/v2/admin/admin_user_api.py +9 -20
  23. hiddifypanel/panel/commercial/restapi/v2/admin/admin_users_api.py +14 -0
  24. hiddifypanel/panel/commercial/restapi/v2/admin/schema.py +19 -14
  25. hiddifypanel/panel/commercial/restapi/v2/admin/server_status_api.py +1 -0
  26. hiddifypanel/panel/commercial/restapi/v2/admin/system_actions.py +27 -0
  27. hiddifypanel/panel/commercial/restapi/v2/admin/user_api.py +12 -22
  28. hiddifypanel/panel/commercial/restapi/v2/admin/users_api.py +19 -1
  29. hiddifypanel/panel/commercial/restapi/v2/child/__init__.py +1 -1
  30. hiddifypanel/panel/commercial/restapi/v2/panel/ping_pong.py +12 -0
  31. hiddifypanel/panel/commercial/restapi/v2/panel/schema.py +5 -0
  32. hiddifypanel/panel/commercial/restapi/v2/parent/__init__.py +1 -1
  33. hiddifypanel/panel/commercial/restapi/v2/user/__init__.py +1 -1
  34. hiddifypanel/panel/hiddify.py +31 -0
  35. hiddifypanel/panel/init_db.py +1 -1
  36. hiddifypanel/panel/usage.py +27 -16
  37. hiddifypanel/templates/fake.html +316 -0
  38. hiddifypanel/translations.i18n/en.json +74 -33
  39. hiddifypanel/translations.i18n/fa.json +80 -118
  40. hiddifypanel/translations.i18n/pt.json +68 -315
  41. hiddifypanel/translations.i18n/ru.json +73 -168
  42. hiddifypanel/translations.i18n/zh.json +68 -296
  43. {hiddifypanel-10.30.6.dev0.dist-info → hiddifypanel-10.30.8.dev0.dist-info}/METADATA +1 -1
  44. {hiddifypanel-10.30.6.dev0.dist-info → hiddifypanel-10.30.8.dev0.dist-info}/RECORD +48 -47
  45. {hiddifypanel-10.30.6.dev0.dist-info → hiddifypanel-10.30.8.dev0.dist-info}/WHEEL +1 -1
  46. {hiddifypanel-10.30.6.dev0.dist-info → hiddifypanel-10.30.8.dev0.dist-info}/LICENSE.md +0 -0
  47. {hiddifypanel-10.30.6.dev0.dist-info → hiddifypanel-10.30.8.dev0.dist-info}/entry_points.txt +0 -0
  48. {hiddifypanel-10.30.6.dev0.dist-info → hiddifypanel-10.30.8.dev0.dist-info}/top_level.txt +0 -0
@@ -2,7 +2,6 @@
2
2
  " Search Settings": "搜索设置",
3
3
  "%(count)s records were successfully disabled.": "%(count)s 条记录已成功禁用。",
4
4
  "%(count)s records were successfully enabled.": "%(count)s 条记录已成功启用。",
5
- "%(expire_days)s days": "",
6
5
  "%(placeholder)s": "%(placeholder)s",
7
6
  "0 - Last day": "最后一天",
8
7
  "Access Denied!": "拒绝访问",
@@ -47,8 +46,12 @@
47
46
  "Create Package": "创建包",
48
47
  "Current Domain": "当前域名",
49
48
  "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?": "用户的套餐模式。使用量是否应该每月、每周等重置",
49
+ "Define the admin mode": {
50
+ " ": "🥇🥈🥉 定义管理模式"
51
+ },
52
+ "Define the user mode": {
53
+ " Should the usage reset every month?": "用户的套餐模式。使用量是否应该每月、每周等重置"
54
+ },
52
55
  "Delete?": "删除?",
53
56
  "Develop": "⚠️开发",
54
57
  "Direct": "➖ 直接",
@@ -86,7 +89,9 @@
86
89
  "HiddifyNG": "HiddifyNG <span class='badge badge-success'>推荐</span>",
87
90
  "HiddifyNG intro": "📌 请从以下任一链接安装 HiddifyNG:\n<br/>\n %(dl_link)s %(play_link)s\n<br/>\n然后单击下面的链接并在 HiddifyNG 中打开它。\n<br/>",
88
91
  "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。",
92
+ "Hooray 🎉 🎉 🎉 \nWelcome to hiddifybot": {
93
+ "\nStart by clicking the link on the panel or entering your UUID.": "万岁🎉🎉🎉\n欢迎使用 Hiddify 机器人\n首先单击面板上的链接或输入您的 UUID。"
94
+ },
90
95
  "Hover the user to see the reason": "将鼠标悬停在用户上即可查看原因",
91
96
  "How many days this package should be available?": "这个套餐有多少天?",
92
97
  "How many?": "多少?",
@@ -96,7 +101,9 @@
96
101
  "Import in": "导入",
97
102
  "In 5 minutes": "5 分钟内",
98
103
  "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,您必须将指向它们的域添加为中继。",
104
+ "In this section, you can add your domain": {
105
+ " 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,您必须将指向它们的域添加为中继。"
106
+ },
100
107
  "Incorrect Password": "⚠️密码错误",
101
108
  "Install": "安装",
102
109
  "Install Hiddify Application": "Hiddify 管理器安装",
@@ -105,8 +112,12 @@
105
112
  "Invalid admin link": "管理员链接无效",
106
113
  "Iran": "🇮🇷伊朗",
107
114
  "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>完成设置。",
115
+ "It seems that you have not created any users yet": {
116
+ " Default user link: %(default_link)s": "您似乎还没有创建任何用户。默认用户链接:%(default_link)s"
117
+ },
118
+ "It seems that you have not setup the system completely": {
119
+ " <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>完成设置。"
120
+ },
110
121
  "It will override the root admin to the current user": "它将把备份文件的所有者admin覆盖为当前用户",
111
122
  "Join our Hiddify Telegram channel to get the latest updates on Hiddify.": "加入我们的 Hiddify Telegram 频道,获取 Hiddify 的最新动态。",
112
123
  "Last Online": "最后一次连接",
@@ -139,15 +150,18 @@
139
150
  "Package not started yet.": "套餐还没开始。",
140
151
  "Panel Link": "➖ 面板链接",
141
152
  "Parent Panel": "家长小组",
142
- "Please Wait...": "请稍等...",
153
+ "Please Wait.": {
154
+ ".": "请稍等..."
155
+ },
143
156
  "Please click on %(install)s to save the user page.": "单击 %(install)s 保存用户页面。",
144
157
  "Please connect your telegram account to the panel to be informed about latest news.": "请将您的 Telegram 帐户连接到面板以获取最新消息。",
145
158
  "Please connect your telegram accout to the panel to be informed about latest news.": "请将您的 Telegram 帐户连接到面板以了解您的订阅的最新状态",
146
159
  "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>",
160
+ "Please note that your panel can be accessed only via <a href=\"%(adminlink)s\" class=\"btn btn-primary copy-link\">%(adminlink)s</a>": {
161
+ " 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>"
162
+ },
148
163
  "Please select at least one file.": "请选择至少一个文件",
149
164
  "Please select at least one record.": "请选择至少一条记录",
150
- "Please select at least one user": "",
151
165
  "Please select one of the following applications:": "📍请选择以下应用程序之一:\n<br/>\n<br/>",
152
166
  "Please type your message to send to the telegram:": "✏️ 请写下您要发送到 Telegram 的消息:",
153
167
  "Please understand that parent panel is under test and the plan and the condition of use maybe change at anytime.": "请理解,家长面板正在测试中,计划和使用条件可能随时发生变化。",
@@ -160,11 +174,8 @@
160
174
  "RAM": "内存",
161
175
  "REALITY Fallback domain is not compaitble with server names!": "REALITY 后备域与服务器名称不兼容!",
162
176
  "Release": "✅ 发布",
163
- "Remaining: ": "包裹结束",
164
177
  "Remote nodes are not supported yet!": "尚不支持远程节点!",
165
- "Rename File": "",
166
178
  "Reset Filters": "重置过滤器",
167
- "Reset Proxies": "",
168
179
  "Reset Usage Time:": "流量使用重置时间:",
169
180
  "Reset every month": "每月",
170
181
  "Reset package days": "📆 重置套餐天数",
@@ -184,7 +195,6 @@
184
195
  "Save Link": "保存链接",
185
196
  "Select all records": "选择所有记录",
186
197
  "Select record": "选择记录",
187
- "Seleted Users": "",
188
198
  "Send Message to User's Telegram": "📣 向用户的 Telegram 发送消息",
189
199
  "Sending": "正在发送...",
190
200
  "Should be a valid domain": "应该是有效域名",
@@ -197,18 +207,26 @@
197
207
  "Status": "地位",
198
208
  "Submit": "提交",
199
209
  "Success": "成功",
200
- "Success! Please wait around 4 minutes to make sure everything is updated. During this time, please save your proxy links which are:": "⚠️ 请等待大约 5 分钟以确保所有内容均已更新。在此期间,请复制并保存您的代理链接:",
210
+ "Success! Please wait around 4 minutes to make sure everything is updated": {
211
+ " During this time, please save your proxy links which are:": "⚠️ 请等待大约 5 分钟以确保所有内容均已更新。在此期间,请复制并保存您的代理链接:"
212
+ },
201
213
  "Success! Please wait around 5 minutes to make sure everything is updated.": "✔️ 成功!请等待大约 5 分钟以确保所有内容均已更新",
202
214
  "Telegram Bot": "电报机器人",
203
215
  "Temporary Short Link": "⏱️临时短链接",
204
- "The action done successfully. You can now leave this page.": "✅ 行动成功完成。您现在可以离开此页面",
216
+ "The action done successfully": {
217
+ " You can now leave this page.": "✅ 行动成功完成。您现在可以离开此页面"
218
+ },
205
219
  "The message has been sent.": "消息已发送。",
206
220
  "The message was not sent to": "该消息未发送至",
207
221
  "The name shown in the configs for this domain.": "将显示在该域的配置中的名称。",
208
- "The page has been moved to a new link. Please copy and save the new link.": "该页面已移至新链接。请复制并保存新链接。",
222
+ "The page has been moved to a new link": {
223
+ " Please copy and save the new link.": "该页面已移至新链接。请复制并保存新链接。"
224
+ },
209
225
  "This can be used for giving your users a permanent non blockable links.": "这可用于为您的用户提供永久的不可阻止链接。",
210
226
  "This domain does not exist in the panel!": "该域名在面板中不存在!",
211
- "This version of hiddify panel is outdated. Please update it from admin area.": "⚠️ 此版本的 Hiddify Manager 已过时。请从管理区域更新",
227
+ "This version of hiddify panel is outdated": {
228
+ " Please update it from admin area.": "⚠️ 此版本的 Hiddify Manager 已过时。请从管理区域更新"
229
+ },
212
230
  "Today Usage": "今天",
213
231
  "Too many Connected IPs": "连接的IP太多",
214
232
  "Total Usage": "总使用量",
@@ -218,25 +236,31 @@
218
236
  "Use HiddifyNext:": "使用 HiddifyNext:",
219
237
  "User activated!": "用户激活",
220
238
  "User is inactive": "用户处于非活动状态",
221
- "User usage will be updated every 6 minutes. To update it now click <a href=\"%(link)s\" class=\"btn btn-info\">here</a>": "",
222
239
  "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/>",
223
240
  "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/>",
224
241
  "View in Telegram": "在电报中查看",
225
242
  "Want to enjoy more with telegram?": "ℹ️ 将您的帐户连接到 Telegram",
226
243
  "Welcome %(user)s": "欢迎%(user)s",
227
- "Welcome to admin bot. Choose your action": "欢迎使用管理机器人。选择你的行动",
244
+ "Welcome to admin bot": {
245
+ " Choose your action": "欢迎使用管理机器人。选择你的行动"
246
+ },
228
247
  "Why Going to Premium?": "为什么要选择高级版?",
229
248
  "Windows": "视窗",
230
- "With selected": "",
231
249
  "Xray": "☢️ XRay",
232
250
  "Yesterday Usage": "昨天",
233
251
  "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>",
234
252
  "You can restore your configs from previously downloaded configs": "ℹ️您可以从以前下载的备份文件恢复您的配置",
235
- "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 永远不会被阻止,您的用户可以轻松更新新的配置文件。",
253
+ "You can select the configs with which domains show be shown in the user area": {
254
+ " If you select all, automatically, all the new domains will be added for each users.": "对于访问该域的用户区的用户,指定他们可以看到哪些域的代理。\n<br>\n建议:对于IP未过滤且与其他域不同的域,选择所有其他域(当前域除外)。因此,由于该 IP 的使用不是用于代理,并且它是一个简单的网站,因此该域名和 IP 永远不会被阻止,您的用户可以轻松更新新的配置文件。"
255
+ },
236
256
  "You have too much users! You can have only %(active)s active users and %(total)s users": "你的用户太多了!您只能拥有 %(active)s 个活跃用户和 %(total)s 个用户",
237
257
  "You have used this domain in: ": "您已在以下位置使用过该域名:",
238
- "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",
239
- "Your domains changed. Please do not forget to copy admin links, otherwise you can not access to the panel anymore.": "⚠️ 您的域名已更改。请不要忘记复制管理链接,否则您将无法再访问面板",
258
+ "You should visit this page without VPN": {
259
+ " Your country=%(your_country)s\nexpected=%(expected_country)s": "您应该在没有 VPN 的情况下访问此页面 Your Country =%(your_country)s\n预期=%(expected_country)s"
260
+ },
261
+ "Your domains changed": {
262
+ " Please do not forget to copy admin links, otherwise you can not access to the panel anymore.": "⚠️ 您的域名已更改。请不要忘记复制管理链接,否则您将无法再访问面板"
263
+ },
240
264
  "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祝你好运! 🎉🎉🎉",
241
265
  "[Admin only visible message:] You can change this message from settings": "[管理员专用消息]:可通过设置自定义。",
242
266
  "actions": "行动",
@@ -333,29 +357,18 @@
333
357
  "auto": "自动",
334
358
  "auto_cdn_ip": "☑️ 自动 CDN IP 选择器",
335
359
  "cdn": "🔀 CDN(Cloudflare 代理,...)",
336
- "cf-delete": {
337
- "failed": ""
338
- },
339
360
  "child has been removed!": "孩子已被移走!",
340
- "child": {
341
- "register-failed": "",
342
- "register-success": "",
343
- "sync-failed": ""
344
- },
345
361
  "clickable copy": "社交媒体链接",
346
362
  "close": "关闭",
347
- "cloudflare": {
348
- "error": ""
349
- },
350
- "config.Domain already used": "域存在于域部分。使用另一个域",
351
- "config.Invalid brand link": "无效的链接。它应该采用以下格式:(https 或 http://example.com)",
352
- "config.Invalid domain": "错误!无效域名。域名格式为 www.google.com",
353
- "config.Invalid port": "端口无效。它应该是逗号分隔的整数,例如2052,2053",
354
- "config.Invalid proxy path": "代理路径无效。它应该是 ASCI 字符串 (a-z A-Z 0-9)",
355
- "config.Invalid telegram bot token": "Telegram 机器人令牌无效",
356
- "config.Invalid! The pattern is number-number": "⚠️配置无效!模式是数字-数字",
357
- "config.Invalid! it should be a number only": "⚠️配置无效!它应该只是一个数字",
358
363
  "config": {
364
+ "Domain already used": "域存在于域部分。使用另一个域",
365
+ "Invalid brand link": "无效的链接。它应该采用以下格式:(https 或 http://example.com)",
366
+ "Invalid domain": "错误!无效域名。域名格式为 www.google.com",
367
+ "Invalid port": "端口无效。它应该是逗号分隔的整数,例如2052,2053",
368
+ "Invalid proxy path": "代理路径无效。它应该是 ASCI 字符串 (a-z A-Z 0-9)",
369
+ "Invalid telegram bot token": "Telegram 机器人令牌无效",
370
+ "Invalid! The pattern is number-number": "⚠️配置无效!模式是数字-数字",
371
+ "Invalid! it should be a number only": "⚠️配置无效!它应该只是一个数字",
359
372
  "admin": {
360
373
  "description": "管理部分用于配置管理相关设置",
361
374
  "label": "管理设置"
@@ -464,22 +477,10 @@
464
477
  "description": "这是一般系统配置",
465
478
  "label": "常规设置"
466
479
  },
467
- "grpc_enable": {
468
- "description": "",
469
- "label": ""
470
- },
471
- "h2_enable": {
472
- "description": "",
473
- "label": ""
474
- },
475
480
  "hidden": {
476
481
  "description": "配置.隐藏.描述",
477
482
  "label": "配置.隐藏.标签"
478
483
  },
479
- "hiddifycli_enable": {
480
- "description": "",
481
- "label": ""
482
- },
483
484
  "http": {
484
485
  "description": "HTTP 配置可以在此部分设置",
485
486
  "label": "HTTP 配置"
@@ -492,35 +493,18 @@
492
493
  "description": "通过允许此操作,您的用户可以使用未加密的 HTTP 端口连接到系统。 (不建议)",
493
494
  "label": "☑️ 允许 HTTP 连接"
494
495
  },
495
- "httpupgrade_enable": {
496
- "description": "",
497
- "label": ""
498
- },
499
496
  "hysteria": {
500
497
  "description": "Hysteria 是一款功能齐全的代理和中继工具,针对有损、不稳定的连接(例如卫星网络、拥挤的公共 Wi-Fi、从中国连接到国外服务器)进行了优化",
501
498
  "label": "歇斯底里"
502
499
  },
503
- "hysteria_down_mbps": {
504
- "description": "",
505
- "label": ""
506
- },
507
500
  "hysteria_enable": {
508
501
  "description": "启用基于 UDP 的 Hysteria 协议",
509
502
  "label": "启用歇斯底里2"
510
503
  },
511
- "hysteria_obfs_enable": {
512
- "description": "",
513
- "label": ""
514
- },
515
504
  "hysteria_port": {
516
505
  "description": "Hysteria UDP 端口,例如 5678",
517
506
  "label": "🔍 Hysteria2 端口"
518
507
  },
519
- "hysteria_up_mbps": {
520
- "description": "",
521
- "label": ""
522
- },
523
- "invalid-pattern-for-warp-sites": "",
524
508
  "is_parent": {
525
509
  "description": "config.is_parent.description",
526
510
  "label": "家长小组"
@@ -545,58 +529,13 @@
545
529
  "description": "config.last_hash.描述",
546
530
  "label": "配置.last_hash.label"
547
531
  },
548
- "last_priodic_usage_check": {
549
- "description": "",
550
- "label": ""
551
- },
552
532
  "license": {
553
533
  "description": "要将本产品用于商业用途,您必须购买其许可证",
554
534
  "label": "许可证代码"
555
535
  },
556
- "log_level": {
557
- "description": "",
558
- "label": ""
559
- },
560
536
  "mux": {
561
- "description": "",
562
537
  "label": "MUC设置"
563
538
  },
564
- "mux_brutal_down_mbps": {
565
- "description": "",
566
- "label": ""
567
- },
568
- "mux_brutal_enable": {
569
- "description": "",
570
- "label": ""
571
- },
572
- "mux_brutal_up_mbps": {
573
- "description": "",
574
- "label": ""
575
- },
576
- "mux_enable": {
577
- "description": "",
578
- "label": ""
579
- },
580
- "mux_max_connections": {
581
- "description": "",
582
- "label": ""
583
- },
584
- "mux_max_streams": {
585
- "description": "",
586
- "label": ""
587
- },
588
- "mux_min_streams": {
589
- "description": "",
590
- "label": ""
591
- },
592
- "mux_padding_enable": {
593
- "description": "",
594
- "label": ""
595
- },
596
- "mux_protocol": {
597
- "description": "",
598
- "label": ""
599
- },
600
539
  "netdata": {
601
540
  "description": "用于显示资源。使用您服务器的 CPU,但不会太多。",
602
541
  "label": "网络数据"
@@ -613,18 +552,6 @@
613
552
  "description": "指定您想要发布的包还是开发的包",
614
553
  "label": "🔄 包更新模式"
615
554
  },
616
- "panel_mode": {
617
- "description": "",
618
- "label": ""
619
- },
620
- "parent_admin_proxy_path": {
621
- "description": "",
622
- "label": ""
623
- },
624
- "parent_domain": {
625
- "description": "",
626
- "label": ""
627
- },
628
555
  "parent_panel": {
629
556
  "description": "您可以连接到中央面板仅定义一个用户,所有服务器的使用情况将累积添加。",
630
557
  "label": "父面板(多服务器)"
@@ -633,10 +560,6 @@
633
560
  "description": "配置中的 gRPC 路径",
634
561
  "label": "ℹ️ gRPC 路径"
635
562
  },
636
- "path_httpupgrade": {
637
- "description": "",
638
- "label": ""
639
- },
640
563
  "path_ss": {
641
564
  "description": "链接中的 Shadowsocks 路径",
642
565
  "label": "Shadowsocks 路径"
@@ -673,34 +596,14 @@
673
596
  "description": "我们使用秘密代理路径来隐藏我们的政府代理",
674
597
  "label": "ℹ️ 秘密代理路径"
675
598
  },
676
- "proxy_path_admin": {
677
- "description": "",
678
- "label": ""
679
- },
680
- "proxy_path_client": {
681
- "description": "",
682
- "label": ""
683
- },
684
- "quic_enable": {
685
- "description": "",
686
- "label": ""
687
- },
688
599
  "reality": {
689
600
  "description": "REALITY 消除了服务器端 TLS 指纹功能",
690
601
  "label": "现实"
691
602
  },
692
- "reality_enable": {
693
- "description": "",
694
- "label": ""
695
- },
696
603
  "reality_fallback_domain": {
697
604
  "description": "当 GFW 访问服务器名称中的网站时,将被重定向到该域。",
698
605
  "label": "🌍 现实后备域"
699
606
  },
700
- "reality_port": {
701
- "description": "",
702
- "label": ""
703
- },
704
607
  "reality_private_key": {
705
608
  "description": "不要改变它",
706
609
  "label": "🔑 私钥"
@@ -729,22 +632,6 @@
729
632
  "description": "config.restls1_3_domain.description",
730
633
  "label": "config.restls1_3_domain.label"
731
634
  },
732
- "shadowsocks": {
733
- "description": "",
734
- "label": ""
735
- },
736
- "shadowsocks2022_enable": {
737
- "description": "",
738
- "label": ""
739
- },
740
- "shadowsocks2022_method": {
741
- "description": "",
742
- "label": ""
743
- },
744
- "shadowsocks2022_port": {
745
- "description": "",
746
- "label": ""
747
- },
748
635
  "shadowtls": {
749
636
  "description": "向防火墙公开真实 tls 握手的代理。\n\n它的工作方式类似于木马,但不需要签名证书。防火墙将看到与您选择的有效证书的真实 tls 握手。",
750
637
  "label": "影子TLS"
@@ -809,38 +696,6 @@
809
696
  "description": "请在您的数据中心使用众所周知的域。例如,如果您在 Azure 数据中心,microsoft-update.com 就是一个很好的例子",
810
697
  "label": "SSR 假域名"
811
698
  },
812
- "sub_full_clash_enable": {
813
- "description": "",
814
- "label": ""
815
- },
816
- "sub_full_clash_meta_enable": {
817
- "description": "",
818
- "label": ""
819
- },
820
- "sub_full_links_b64_enable": {
821
- "description": "",
822
- "label": ""
823
- },
824
- "sub_full_links_enable": {
825
- "description": "",
826
- "label": ""
827
- },
828
- "sub_full_singbox_enable": {
829
- "description": "",
830
- "label": ""
831
- },
832
- "sub_full_xray_json_enable": {
833
- "description": "",
834
- "label": ""
835
- },
836
- "sub_singbox_ssh_enable": {
837
- "description": "",
838
- "label": ""
839
- },
840
- "tcp_enable": {
841
- "description": "",
842
- "label": ""
843
- },
844
699
  "telegram": {
845
700
  "description": "专为 Telegram 设计的代理,可绕过 Telegram 过滤",
846
701
  "label": "电报代理"
@@ -869,38 +724,10 @@
869
724
  "description": "可以在此部分设置 TLS 配置。",
870
725
  "label": "TLS 配置"
871
726
  },
872
- "tls_fragment_enable": {
873
- "description": "",
874
- "label": ""
875
- },
876
- "tls_fragment_size": {
877
- "description": "",
878
- "label": ""
879
- },
880
- "tls_fragment_sleep": {
881
- "description": "",
882
- "label": ""
883
- },
884
- "tls_mixed_case": {
885
- "description": "",
886
- "label": ""
887
- },
888
- "tls_padding_enable": {
889
- "description": "",
890
- "label": ""
891
- },
892
- "tls_padding_length": {
893
- "description": "",
894
- "label": ""
895
- },
896
727
  "tls_ports": {
897
728
  "description": "逗号分隔的整数,指示用作 TLS 连接的端口(在任何情况下都将使用端口 443)",
898
729
  "label": "🔎 TLS 端口"
899
730
  },
900
- "tls_trick": {
901
- "description": "",
902
- "label": ""
903
- },
904
731
  "too_advanced": {
905
732
  "description": "指定代理路径。如果您使用 HTTP 和 VMess,这一点尤其重要",
906
733
  "label": "非常高级的设置"
@@ -909,10 +736,6 @@
909
736
  "description": "可以在此部分设置 Torrent 阻止配置。",
910
737
  "label": "Torrent 块配置"
911
738
  },
912
- "trojan_enable": {
913
- "description": "",
914
- "label": ""
915
- },
916
739
  "tuic": {
917
740
  "description": "Delicately-TUICed 高性能代理位于 QUIC 协议之上。\n\nTUIC的目标是尽可能减少握手延迟",
918
741
  "label": "TUIC"
@@ -940,15 +763,10 @@
940
763
  "validation-error": "其中一个字段有错误。",
941
764
  "validation-success": "配置已成功更改。单击 %(link)s 应用配置。申请可能需要 2 分钟",
942
765
  "validation-success-no-reset": "✅ 配置已成功更改",
943
- "vless_enable": {
944
- "description": "",
945
- "label": ""
946
- },
947
766
  "vmess_enable": {
948
767
  "description": "据多位人士透露,VMess 导致该系统被政府检测到。所以不推荐",
949
768
  "label": "♈️启用VMess"
950
769
  },
951
- "warp-https-domain-for-warp-site": "",
952
770
  "warp": {
953
771
  "description": "Warp 是一种在出站流量中隐藏服务器 IP 的工具。这意味着如果用户访问网站,则暴露的是 Warp IP,而不是我们的服务器 IP。\n<br>\n例如,如果您在 Google 上遇到验证码问题,则可能会通过这种方式修复。",
954
772
  "label": "扭曲➕"
@@ -965,52 +783,8 @@
965
783
  "description": "🔝 提高浏览速度。要获取密钥,请转到 <a href='https://1.1.1.1/'> 1.1.1.1 </a>\n应用程序并从 Cloudflare 购买原始 KEY\n<br>\n⚠️如果此Key有错误,WARP将被禁用。",
966
784
  "label": "🔑 变形加键"
967
785
  },
968
- "warp_sites": {
969
- "description": "",
970
- "label": ""
971
- },
972
- "wireguard": {
973
- "description": "",
974
- "label": ""
975
- },
976
- "wireguard_enable": {
977
- "description": "",
978
- "label": ""
979
- },
980
- "wireguard_ipv4": {
981
- "description": "",
982
- "label": ""
983
- },
984
- "wireguard_ipv6": {
985
- "description": "",
986
- "label": ""
987
- },
988
- "wireguard_noise_trick": {
989
- "description": "",
990
- "label": ""
991
- },
992
- "wireguard_port": {
993
- "description": "",
994
- "label": ""
995
- },
996
- "wireguard_private_key": {
997
- "description": "",
998
- "label": ""
999
- },
1000
- "wireguard_public_key": {
1001
- "description": "",
1002
- "label": ""
1003
- },
1004
- "ws_enable": {
1005
- "description": "",
1006
- "label": ""
1007
- },
1008
- "xtls_enable": {
1009
- "description": "",
1010
- "label": ""
1011
- }
786
+ "invalid uuid": "UUID 秘密无效。示例:6098ea35-8cb2-4a08-ba15-2be25bc49cb6"
1012
787
  },
1013
- "config.invalid uuid": "UUID 秘密无效。示例:6098ea35-8cb2-4a08-ba15-2be25bc49cb6",
1014
788
  "copy": "复制",
1015
789
  "daily": "⏰ 每日",
1016
790
  "days": "天",
@@ -1030,11 +804,12 @@
1030
804
  "download": "直接下载",
1031
805
  "fake": "🆎 假网站",
1032
806
  "gRPC": "➿ gRPC",
1033
- "gRPC is a H2 based protocol. Maybe it is faster for you!": "ℹ️ gRPC 是一个基于 H2 的协议。也许对你来说更快!",
807
+ "gRPC is a H2 based protocol": {
808
+ " Maybe it is faster for you!": "ℹ️ gRPC 是一个基于 H2 的协议。也许对你来说更快!"
809
+ },
1034
810
  "in parent panel": "在家长面板中",
1035
811
  "install from google play": "<i class='fa-brands fa-google-play'></i> Google Play",
1036
812
  "ios": "iOS系统",
1037
- "items": "",
1038
813
  "lang": {
1039
814
  "en": "🇺🇸 English 中文",
1040
815
  "fa": "🇮🇷 Persian فارسی 波斯语",
@@ -1064,7 +839,6 @@
1064
839
  "next": "下一个",
1065
840
  "no_reset": "⭐️无需重置",
1066
841
  "node": {
1067
- "diff-version": "",
1068
842
  "mode": {
1069
843
  "dscr": "节点模式.dscr",
1070
844
  "label": "节点模式"
@@ -1082,10 +856,6 @@
1082
856
  "open": "打开",
1083
857
  "package days?": "包天数?",
1084
858
  "package size?": "包装尺寸?",
1085
- "parent": {
1086
- "invalid-parent-url": "",
1087
- "sync-req-failed": ""
1088
- },
1089
859
  "previous": "以前的",
1090
860
  "quicksetup": {
1091
861
  "setlang": {
@@ -1097,7 +867,9 @@
1097
867
  "relay": "♾️ 中继(使用中间节点连接)",
1098
868
  "search": "搜索",
1099
869
  "see the log in the bellow screen": "📑 查看以下屏幕中的日志",
1100
- "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 中找到一个域",
870
+ "selected domain for REALITY is not in the same ASN": {
871
+ " To better use of the protocol, it is better to find a domain in the same ASN.": "REALITY 的所选域不在同一 ASN 中。为了更好地使用该协议,最好在同一 ASN 中找到一个域"
872
+ },
1101
873
  "serverssh": {
1102
874
  "password-login": {
1103
875
  "warning": "您的服务器很容易受到滥用,因为您的 SSH 中启用了密码身份验证。为了保护您的服务器,请切换到密钥身份验证机制并关闭PasswordAuthentication。<a href='https://github.com/hiddify/Hiddify-Manager/wiki/Disable-SSH-Password-Authentication'>阅读更多...</a>"
@@ -1190,7 +962,6 @@
1190
962
  "tool": {
1191
963
  "all-configs": "所有配置",
1192
964
  "doh": {
1193
- "help": "",
1194
965
  "title": "HTTPS 上的 DNS"
1195
966
  }
1196
967
  },
@@ -1203,15 +974,16 @@
1203
974
  },
1204
975
  "windows": {
1205
976
  "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。"
1206
- }
977
+ },
978
+ "select os": "请选择您的操作系统。",
979
+ "select tool": "请选择该项目。"
1207
980
  },
1208
981
  "last_reset_time": "最后使用日期重置",
1209
982
  "name": "姓名",
1210
983
  "usage_limit_GB": "⌛️ 使用限制 (GB)",
1211
984
  "user_links": "用户链接"
1212
985
  },
1213
- "user.home.select os": "请选择您的操作系统。",
1214
- "user.home.select tool": "请选择该项目。",
1215
986
  "weekly": "📅每周",
1216
- "worker": "✴️ Cloudflare 工作人员"
987
+ "worker": "✴️ Cloudflare 工作人员",
988
+ "Remaining: ": "包裹结束"
1217
989
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hiddifypanel
3
- Version: 10.30.6.dev0
3
+ Version: 10.30.8.dev0
4
4
  Summary: hiddifypanel multi proxy panel
5
5
  Home-page: https://github.com/hiddify/hiddify-manager/
6
6
  Author: hiddify