hiddifypanel 10.14.0__py3-none-any.whl → 10.15.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.
Files changed (107) hide show
  1. hiddifypanel/VERSION +1 -1
  2. hiddifypanel/VERSION.py +2 -2
  3. hiddifypanel/auth.py +15 -4
  4. hiddifypanel/base.py +11 -3
  5. hiddifypanel/cache.py +43 -25
  6. hiddifypanel/database.py +9 -0
  7. hiddifypanel/drivers/singbox_api.py +2 -14
  8. hiddifypanel/drivers/xray_api.py +0 -4
  9. hiddifypanel/hutils/__init__.py +1 -0
  10. hiddifypanel/hutils/convert.py +13 -2
  11. hiddifypanel/hutils/crypto.py +21 -2
  12. hiddifypanel/hutils/flask.py +18 -4
  13. hiddifypanel/hutils/importer/xui.py +5 -2
  14. hiddifypanel/hutils/node/__init__.py +3 -0
  15. hiddifypanel/hutils/node/api_client.py +76 -0
  16. hiddifypanel/hutils/node/child.py +147 -0
  17. hiddifypanel/hutils/node/parent.py +100 -0
  18. hiddifypanel/hutils/node/shared.py +65 -0
  19. hiddifypanel/hutils/proxy/shared.py +15 -3
  20. hiddifypanel/models/__init__.py +2 -2
  21. hiddifypanel/models/admin.py +14 -2
  22. hiddifypanel/models/base_account.py +3 -3
  23. hiddifypanel/models/child.py +30 -16
  24. hiddifypanel/models/config.py +39 -15
  25. hiddifypanel/models/config_enum.py +55 -8
  26. hiddifypanel/models/domain.py +28 -20
  27. hiddifypanel/models/parent_domain.py +2 -2
  28. hiddifypanel/models/proxy.py +13 -4
  29. hiddifypanel/models/report.py +2 -3
  30. hiddifypanel/models/usage.py +2 -2
  31. hiddifypanel/models/user.py +13 -4
  32. hiddifypanel/panel/admin/Actions.py +4 -6
  33. hiddifypanel/panel/admin/AdminstratorAdmin.py +13 -2
  34. hiddifypanel/panel/admin/Dashboard.py +5 -10
  35. hiddifypanel/panel/admin/DomainAdmin.py +12 -11
  36. hiddifypanel/panel/admin/NodeAdmin.py +6 -2
  37. hiddifypanel/panel/admin/ProxyAdmin.py +4 -3
  38. hiddifypanel/panel/admin/SettingAdmin.py +60 -21
  39. hiddifypanel/panel/admin/UserAdmin.py +10 -2
  40. hiddifypanel/panel/admin/templates/index.html +1 -1
  41. hiddifypanel/panel/admin/templates/parent_dash.html +2 -4
  42. hiddifypanel/panel/cli.py +16 -16
  43. hiddifypanel/panel/commercial/ProxyDetailsAdmin.py +10 -5
  44. hiddifypanel/panel/commercial/__init__.py +7 -5
  45. hiddifypanel/panel/commercial/restapi/v2/admin/__init__.py +0 -5
  46. hiddifypanel/panel/commercial/restapi/v2/admin/admin_info_api.py +2 -2
  47. hiddifypanel/panel/commercial/restapi/v2/admin/admin_log_api.py +4 -5
  48. hiddifypanel/panel/commercial/restapi/v2/admin/admin_user_api.py +8 -35
  49. hiddifypanel/panel/commercial/restapi/v2/admin/admin_users_api.py +4 -4
  50. hiddifypanel/panel/commercial/restapi/v2/admin/schema.py +157 -0
  51. hiddifypanel/panel/commercial/restapi/v2/admin/server_status_api.py +3 -3
  52. hiddifypanel/panel/commercial/restapi/v2/admin/user_api.py +9 -73
  53. hiddifypanel/panel/commercial/restapi/v2/admin/users_api.py +1 -1
  54. hiddifypanel/panel/commercial/restapi/v2/child/__init__.py +18 -0
  55. hiddifypanel/panel/commercial/restapi/v2/child/actions.py +63 -0
  56. hiddifypanel/panel/commercial/restapi/v2/child/register_parent_api.py +34 -0
  57. hiddifypanel/panel/commercial/restapi/v2/child/schema.py +7 -0
  58. hiddifypanel/panel/commercial/restapi/v2/child/sync_parent_api.py +21 -0
  59. hiddifypanel/panel/commercial/restapi/v2/panel/__init__.py +13 -0
  60. hiddifypanel/panel/commercial/restapi/v2/panel/info.py +18 -0
  61. hiddifypanel/panel/commercial/restapi/v2/panel/ping_pong.py +23 -0
  62. hiddifypanel/panel/commercial/restapi/v2/panel/schema.py +7 -0
  63. hiddifypanel/panel/commercial/restapi/v2/parent/__init__.py +16 -0
  64. hiddifypanel/panel/commercial/restapi/v2/parent/register_api.py +65 -0
  65. hiddifypanel/panel/commercial/restapi/v2/parent/schema.py +115 -0
  66. hiddifypanel/panel/commercial/restapi/v2/parent/status_api.py +26 -0
  67. hiddifypanel/panel/commercial/restapi/v2/parent/sync_api.py +53 -0
  68. hiddifypanel/panel/commercial/restapi/v2/parent/usage_api.py +57 -0
  69. hiddifypanel/panel/commercial/telegrambot/admin.py +1 -2
  70. hiddifypanel/panel/common.py +21 -6
  71. hiddifypanel/panel/hiddify.py +9 -80
  72. hiddifypanel/panel/init_db.py +43 -12
  73. hiddifypanel/panel/usage.py +28 -15
  74. hiddifypanel/panel/user/templates/home/usage.html +1 -1
  75. hiddifypanel/panel/user/templates/new.html +1 -1
  76. hiddifypanel/static/css/custom.css +13 -0
  77. hiddifypanel/static/images/hiddify.png +0 -0
  78. hiddifypanel/static/new/assets/{index-bce9b1a6.js → index-ccb9873c.js} +65 -65
  79. hiddifypanel/templates/admin-layout.html +24 -40
  80. hiddifypanel/templates/fake.html +298 -0
  81. hiddifypanel/templates/master.html +23 -41
  82. hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
  83. hiddifypanel/translations/en/LC_MESSAGES/messages.po +90 -0
  84. hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
  85. hiddifypanel/translations/fa/LC_MESSAGES/messages.po +91 -1
  86. hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
  87. hiddifypanel/translations/pt/LC_MESSAGES/messages.po +98 -6
  88. hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
  89. hiddifypanel/translations/ru/LC_MESSAGES/messages.po +90 -0
  90. hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
  91. hiddifypanel/translations/zh/LC_MESSAGES/messages.po +92 -2
  92. hiddifypanel/translations.i18n/en.json +56 -0
  93. hiddifypanel/translations.i18n/fa.json +57 -1
  94. hiddifypanel/translations.i18n/pt.json +63 -7
  95. hiddifypanel/translations.i18n/ru.json +56 -0
  96. hiddifypanel/translations.i18n/zh.json +58 -2
  97. {hiddifypanel-10.14.0.dist-info → hiddifypanel-10.15.0.dev0.dist-info}/METADATA +47 -47
  98. {hiddifypanel-10.14.0.dist-info → hiddifypanel-10.15.0.dev0.dist-info}/RECORD +104 -86
  99. hiddifypanel/panel/commercial/restapi/v2/DTO.py +0 -9
  100. hiddifypanel/panel/commercial/restapi/v2/hello/__init__.py +0 -16
  101. hiddifypanel/panel/commercial/restapi/v2/hello/hello.py +0 -32
  102. /hiddifypanel/static/images/{hiddify1.png → hiddify-old.png} +0 -0
  103. /hiddifypanel/static/{new/assets/hiddify-logo-noroz-559c8dcb.png → images/hiddify2.png} +0 -0
  104. {hiddifypanel-10.14.0.dist-info → hiddifypanel-10.15.0.dev0.dist-info}/LICENSE.md +0 -0
  105. {hiddifypanel-10.14.0.dist-info → hiddifypanel-10.15.0.dev0.dist-info}/WHEEL +0 -0
  106. {hiddifypanel-10.14.0.dist-info → hiddifypanel-10.15.0.dev0.dist-info}/entry_points.txt +0 -0
  107. {hiddifypanel-10.14.0.dist-info → hiddifypanel-10.15.0.dev0.dist-info}/top_level.txt +0 -0
@@ -1145,6 +1145,18 @@ msgstr "🔀 CDN (Cloudflare Proxy, ...)"
1145
1145
  msgid "child has been removed!"
1146
1146
  msgstr "Дочерний элемент удален!"
1147
1147
 
1148
+ msgid "child.register-failed"
1149
+ msgstr ""
1150
+
1151
+ msgid "child.register-success"
1152
+ msgstr ""
1153
+
1154
+ msgid "child.sync-failed"
1155
+ msgstr ""
1156
+
1157
+ msgid "child.sync-success"
1158
+ msgstr ""
1159
+
1148
1160
  msgid "clickable copy"
1149
1161
  msgstr "Ссылка для социальных сетей"
1150
1162
 
@@ -1396,6 +1408,12 @@ msgstr ""
1396
1408
  msgid "config.grpc_enable.label"
1397
1409
  msgstr "➿ Включить gRPC"
1398
1410
 
1411
+ msgid "config.h2_enable.description"
1412
+ msgstr ""
1413
+
1414
+ msgid "config.h2_enable.label"
1415
+ msgstr ""
1416
+
1399
1417
  msgid "config.hidden.description"
1400
1418
  msgstr "config.hidden.description"
1401
1419
 
@@ -1473,6 +1491,9 @@ msgstr "Hysteria Максимальная Скорость Исходящей З
1473
1491
  msgid "config.hysteria_up_mbps.label"
1474
1492
  msgstr "⬆️ Hysteria Исходящая Загрузка (mbps)"
1475
1493
 
1494
+ msgid "config.invalid-pattern-for-warp-sites"
1495
+ msgstr ""
1496
+
1476
1497
  msgid "config.is_parent.description"
1477
1498
  msgstr "config.is_parent.description"
1478
1499
 
@@ -1519,6 +1540,12 @@ msgstr ""
1519
1540
  msgid "config.license.label"
1520
1541
  msgstr "License Code"
1521
1542
 
1543
+ msgid "config.log_level.description"
1544
+ msgstr ""
1545
+
1546
+ msgid "config.log_level.label"
1547
+ msgstr ""
1548
+
1522
1549
  msgid "config.mux.description"
1523
1550
  msgstr "Настройки конфигурации MUX (Multiplex)"
1524
1551
 
@@ -1614,6 +1641,24 @@ msgstr ""
1614
1641
  msgid "config.package_mode.label"
1615
1642
  msgstr "🔄 Режим обновления пакетов"
1616
1643
 
1644
+ msgid "config.panel_mode.description"
1645
+ msgstr ""
1646
+
1647
+ msgid "config.panel_mode.label"
1648
+ msgstr ""
1649
+
1650
+ msgid "config.parent_admin_proxy_path.description"
1651
+ msgstr ""
1652
+
1653
+ msgid "config.parent_admin_proxy_path.label"
1654
+ msgstr ""
1655
+
1656
+ msgid "config.parent_domain.description"
1657
+ msgstr ""
1658
+
1659
+ msgid "config.parent_domain.label"
1660
+ msgstr ""
1661
+
1617
1662
  msgid "config.parent_panel.description"
1618
1663
  msgstr ""
1619
1664
  "Вы можете подключиться к главной панели, чтобы добавить пользователя в одном"
@@ -1701,12 +1746,24 @@ msgstr ""
1701
1746
  msgid "config.proxy_path_client.label"
1702
1747
  msgstr ""
1703
1748
 
1749
+ msgid "config.quic_enable.description"
1750
+ msgstr ""
1751
+
1752
+ msgid "config.quic_enable.label"
1753
+ msgstr ""
1754
+
1704
1755
  msgid "config.reality.description"
1705
1756
  msgstr "REALITY функция устранения TLS Fingerprint со стороны севрера"
1706
1757
 
1707
1758
  msgid "config.reality.label"
1708
1759
  msgstr "Reality"
1709
1760
 
1761
+ msgid "config.reality_enable.description"
1762
+ msgstr ""
1763
+
1764
+ msgid "config.reality_enable.label"
1765
+ msgstr ""
1766
+
1710
1767
  msgid "config.reality_fallback_domain.description"
1711
1768
  msgstr ""
1712
1769
  "При попытке контролирующих органов посетить сайт вытащенный из запроса, он "
@@ -1921,6 +1978,12 @@ msgstr ""
1921
1978
  msgid "config.ssr_fakedomain.label"
1922
1979
  msgstr "SSR поддельный домен"
1923
1980
 
1981
+ msgid "config.tcp_enable.description"
1982
+ msgstr ""
1983
+
1984
+ msgid "config.tcp_enable.label"
1985
+ msgstr ""
1986
+
1924
1987
  msgid "config.telegram.description"
1925
1988
  msgstr ""
1926
1989
  "Прокси-сервер, разработанный для Telegram для обхода фильтрации Telegram"
@@ -2043,6 +2106,12 @@ msgstr "В этом разделе можно настроить блокиро
2043
2106
  msgid "config.torrent_block.label"
2044
2107
  msgstr "Конфигурация блокировки Torrent"
2045
2108
 
2109
+ msgid "config.trojan_enable.description"
2110
+ msgstr ""
2111
+
2112
+ msgid "config.trojan_enable.label"
2113
+ msgstr ""
2114
+
2046
2115
  msgid "config.tuic.description"
2047
2116
  msgstr ""
2048
2117
  "Delicately-TUICed высокопроизводительный прокси работающий поверх протокола QUIC.\n"
@@ -2095,6 +2164,12 @@ msgstr ""
2095
2164
  msgid "config.validation-success-no-reset"
2096
2165
  msgstr "✅ Конфигурации успешно изменены"
2097
2166
 
2167
+ msgid "config.vless_enable.description"
2168
+ msgstr ""
2169
+
2170
+ msgid "config.vless_enable.label"
2171
+ msgstr ""
2172
+
2098
2173
  msgid "config.vmess_enable.description"
2099
2174
  msgstr ""
2100
2175
  "Несколько человек сообщили, что VMess позволляет правительствам обнаруживать"
@@ -2211,6 +2286,12 @@ msgstr ""
2211
2286
  msgid "config.ws_enable.label"
2212
2287
  msgstr "🔰 Включить Websocket"
2213
2288
 
2289
+ msgid "config.xtls_enable.description"
2290
+ msgstr ""
2291
+
2292
+ msgid "config.xtls_enable.label"
2293
+ msgstr ""
2294
+
2214
2295
  msgid "config.invalid uuid"
2215
2296
  msgstr "Неверный UUID. пример: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6"
2216
2297
 
@@ -2331,6 +2412,9 @@ msgstr "Следующий"
2331
2412
  msgid "no_reset"
2332
2413
  msgstr "⭐️ Без сброса"
2333
2414
 
2415
+ msgid "node.diff-version"
2416
+ msgstr ""
2417
+
2334
2418
  msgid "node.mode.dscr"
2335
2419
  msgstr ""
2336
2420
 
@@ -2361,6 +2445,12 @@ msgstr "пакетные дни?"
2361
2445
  msgid "package size?"
2362
2446
  msgstr "Размер посылки?"
2363
2447
 
2448
+ msgid "parent.invalid-parent-url"
2449
+ msgstr ""
2450
+
2451
+ msgid "parent.sync-req-failed"
2452
+ msgstr ""
2453
+
2364
2454
  msgid "previous"
2365
2455
  msgstr "Предыдущий"
2366
2456
 
@@ -24,7 +24,7 @@ msgid "Actions"
24
24
  msgstr "行动"
25
25
 
26
26
  msgid "Active"
27
- msgstr ""
27
+ msgstr "积极"
28
28
 
29
29
  msgid "Active Users"
30
30
  msgstr "活跃用户"
@@ -1099,6 +1099,18 @@ msgstr "🔀 CDN(Cloudflare 代理,...)"
1099
1099
  msgid "child has been removed!"
1100
1100
  msgstr "孩子已被移走!"
1101
1101
 
1102
+ msgid "child.register-failed"
1103
+ msgstr ""
1104
+
1105
+ msgid "child.register-success"
1106
+ msgstr ""
1107
+
1108
+ msgid "child.sync-failed"
1109
+ msgstr ""
1110
+
1111
+ msgid "child.sync-success"
1112
+ msgstr ""
1113
+
1102
1114
  msgid "clickable copy"
1103
1115
  msgstr "社交媒体链接"
1104
1116
 
@@ -1317,6 +1329,12 @@ msgstr ""
1317
1329
  msgid "config.grpc_enable.label"
1318
1330
  msgstr ""
1319
1331
 
1332
+ msgid "config.h2_enable.description"
1333
+ msgstr ""
1334
+
1335
+ msgid "config.h2_enable.label"
1336
+ msgstr ""
1337
+
1320
1338
  msgid "config.hidden.description"
1321
1339
  msgstr "配置.隐藏.描述"
1322
1340
 
@@ -1384,6 +1402,9 @@ msgstr ""
1384
1402
  msgid "config.hysteria_up_mbps.label"
1385
1403
  msgstr ""
1386
1404
 
1405
+ msgid "config.invalid-pattern-for-warp-sites"
1406
+ msgstr ""
1407
+
1387
1408
  msgid "config.is_parent.description"
1388
1409
  msgstr "config.is_parent.description"
1389
1410
 
@@ -1426,11 +1447,17 @@ msgstr "要将本产品用于商业用途,您必须购买其许可证"
1426
1447
  msgid "config.license.label"
1427
1448
  msgstr "许可证代码"
1428
1449
 
1450
+ msgid "config.log_level.description"
1451
+ msgstr ""
1452
+
1453
+ msgid "config.log_level.label"
1454
+ msgstr ""
1455
+
1429
1456
  msgid "config.mux.description"
1430
1457
  msgstr ""
1431
1458
 
1432
1459
  msgid "config.mux.label"
1433
- msgstr ""
1460
+ msgstr "MUC设置"
1434
1461
 
1435
1462
  msgid "config.mux_brutal_down_mbps.description"
1436
1463
  msgstr ""
@@ -1510,6 +1537,24 @@ msgstr "指定您想要发布的包还是开发的包"
1510
1537
  msgid "config.package_mode.label"
1511
1538
  msgstr "🔄 包更新模式"
1512
1539
 
1540
+ msgid "config.panel_mode.description"
1541
+ msgstr ""
1542
+
1543
+ msgid "config.panel_mode.label"
1544
+ msgstr ""
1545
+
1546
+ msgid "config.parent_admin_proxy_path.description"
1547
+ msgstr ""
1548
+
1549
+ msgid "config.parent_admin_proxy_path.label"
1550
+ msgstr ""
1551
+
1552
+ msgid "config.parent_domain.description"
1553
+ msgstr ""
1554
+
1555
+ msgid "config.parent_domain.label"
1556
+ msgstr ""
1557
+
1513
1558
  msgid "config.parent_panel.description"
1514
1559
  msgstr "您可以连接到中央面板仅定义一个用户,所有服务器的使用情况将累积添加。"
1515
1560
 
@@ -1594,12 +1639,24 @@ msgstr ""
1594
1639
  msgid "config.proxy_path_client.label"
1595
1640
  msgstr ""
1596
1641
 
1642
+ msgid "config.quic_enable.description"
1643
+ msgstr ""
1644
+
1645
+ msgid "config.quic_enable.label"
1646
+ msgstr ""
1647
+
1597
1648
  msgid "config.reality.description"
1598
1649
  msgstr "REALITY 消除了服务器端 TLS 指纹功能"
1599
1650
 
1600
1651
  msgid "config.reality.label"
1601
1652
  msgstr "现实"
1602
1653
 
1654
+ msgid "config.reality_enable.description"
1655
+ msgstr ""
1656
+
1657
+ msgid "config.reality_enable.label"
1658
+ msgstr ""
1659
+
1603
1660
  msgid "config.reality_fallback_domain.description"
1604
1661
  msgstr "当 GFW 访问服务器名称中的网站时,将被重定向到该域。"
1605
1662
 
@@ -1779,6 +1836,12 @@ msgstr "请在您的数据中心使用众所周知的域。例如,如果您在
1779
1836
  msgid "config.ssr_fakedomain.label"
1780
1837
  msgstr "SSR 假域名"
1781
1838
 
1839
+ msgid "config.tcp_enable.description"
1840
+ msgstr ""
1841
+
1842
+ msgid "config.tcp_enable.label"
1843
+ msgstr ""
1844
+
1782
1845
  msgid "config.telegram.description"
1783
1846
  msgstr "专为 Telegram 设计的代理,可绕过 Telegram 过滤"
1784
1847
 
@@ -1884,6 +1947,12 @@ msgstr "可以在此部分设置 Torrent 阻止配置。"
1884
1947
  msgid "config.torrent_block.label"
1885
1948
  msgstr "Torrent 块配置"
1886
1949
 
1950
+ msgid "config.trojan_enable.description"
1951
+ msgstr ""
1952
+
1953
+ msgid "config.trojan_enable.label"
1954
+ msgstr ""
1955
+
1887
1956
  msgid "config.tuic.description"
1888
1957
  msgstr ""
1889
1958
  "Delicately-TUICed 高性能代理位于 QUIC 协议之上。\n"
@@ -1932,6 +2001,12 @@ msgstr "配置已成功更改。单击 %(link)s 应用配置。申请可能需
1932
2001
  msgid "config.validation-success-no-reset"
1933
2002
  msgstr "✅ 配置已成功更改"
1934
2003
 
2004
+ msgid "config.vless_enable.description"
2005
+ msgstr ""
2006
+
2007
+ msgid "config.vless_enable.label"
2008
+ msgstr ""
2009
+
1935
2010
  msgid "config.vmess_enable.description"
1936
2011
  msgstr "据多位人士透露,VMess 导致该系统被政府检测到。所以不推荐"
1937
2012
 
@@ -2032,6 +2107,12 @@ msgstr ""
2032
2107
  msgid "config.ws_enable.label"
2033
2108
  msgstr ""
2034
2109
 
2110
+ msgid "config.xtls_enable.description"
2111
+ msgstr ""
2112
+
2113
+ msgid "config.xtls_enable.label"
2114
+ msgstr ""
2115
+
2035
2116
  msgid "config.invalid uuid"
2036
2117
  msgstr "UUID 秘密无效。示例:6098ea35-8cb2-4a08-ba15-2be25bc49cb6"
2037
2118
 
@@ -2147,6 +2228,9 @@ msgstr "下一个"
2147
2228
  msgid "no_reset"
2148
2229
  msgstr "⭐️无需重置"
2149
2230
 
2231
+ msgid "node.diff-version"
2232
+ msgstr ""
2233
+
2150
2234
  msgid "node.mode.dscr"
2151
2235
  msgstr "节点模式.dscr"
2152
2236
 
@@ -2177,6 +2261,12 @@ msgstr "包天数?"
2177
2261
  msgid "package size?"
2178
2262
  msgstr "包装尺寸?"
2179
2263
 
2264
+ msgid "parent.invalid-parent-url"
2265
+ msgstr ""
2266
+
2267
+ msgid "parent.sync-req-failed"
2268
+ msgstr ""
2269
+
2180
2270
  msgid "previous"
2181
2271
  msgstr "以前的"
2182
2272
 
@@ -333,6 +333,12 @@
333
333
  "auto_cdn_ip": "☑️ Automatic CDN IP Selector",
334
334
  "cdn": "🔀 CDN (Cloudflare Proxy, ...)",
335
335
  "child has been removed!": "Child Has Been Removed!",
336
+ "child": {
337
+ "register-failed": "child.register-failed",
338
+ "register-success": "child.register-success",
339
+ "sync-failed": "child.sync-failed",
340
+ "sync-success": "child.sync-success"
341
+ },
336
342
  "clickable copy": "Link for Social Media",
337
343
  "close": "Close",
338
344
  "config.Domain already used": "Domain is exist in domains section. Use another Domain",
@@ -456,6 +462,10 @@
456
462
  "description": "gRPC is a modern open source high performance Remote Procedure Call (RPC) framework. It can be used in supported CDNs",
457
463
  "label": "➿ Enable gRPC"
458
464
  },
465
+ "h2_enable": {
466
+ "description": "config.h2_enable.description",
467
+ "label": "config.h2_enable.label"
468
+ },
459
469
  "hidden": {
460
470
  "description": "config.hidden.description",
461
471
  "label": "config.hidden.label"
@@ -500,6 +510,7 @@
500
510
  "description": "Hysteria Maximum Upload Speed",
501
511
  "label": "⬆️ Hysteria Upload (mbps)"
502
512
  },
513
+ "invalid-pattern-for-warp-sites": "config.invalid-pattern-for-warp-sites",
503
514
  "is_parent": {
504
515
  "description": "config.is_parent.description",
505
516
  "label": "Parent Panel"
@@ -528,6 +539,10 @@
528
539
  "description": "For commercial use of this Product, you must Purchase its License",
529
540
  "label": "License Code"
530
541
  },
542
+ "log_level": {
543
+ "description": "config.log_level.description",
544
+ "label": "config.log_level.label"
545
+ },
531
546
  "mux": {
532
547
  "description": "MUX (Multiplex) configurations could be set in this section",
533
548
  "label": "MUX Config"
@@ -584,6 +599,18 @@
584
599
  "description": "Specify whether you want Released Package or Beta one",
585
600
  "label": "🔄 Package Update Mode"
586
601
  },
602
+ "panel_mode": {
603
+ "description": "config.panel_mode.description",
604
+ "label": "config.panel_mode.label"
605
+ },
606
+ "parent_admin_proxy_path": {
607
+ "description": "config.parent_admin_proxy_path.description",
608
+ "label": "config.parent_admin_proxy_path.label"
609
+ },
610
+ "parent_domain": {
611
+ "description": "config.parent_domain.description",
612
+ "label": "config.parent_domain.label"
613
+ },
587
614
  "parent_panel": {
588
615
  "description": "You can Connect to the Central Panel to define only one user and the usage of all Servers will be added cumulatively.",
589
616
  "label": "Parent Panel (Multi Server)"
@@ -640,10 +667,18 @@
640
667
  "description": "Secret proxy path hide the proxies from the governments and bots",
641
668
  "label": "🔏 Proxy Path for Clients"
642
669
  },
670
+ "quic_enable": {
671
+ "description": "config.quic_enable.description",
672
+ "label": "config.quic_enable.label"
673
+ },
643
674
  "reality": {
644
675
  "description": "REALITY eliminate the Server-Side TLS Fingerprint Feature",
645
676
  "label": "Reality"
646
677
  },
678
+ "reality_enable": {
679
+ "description": "config.reality_enable.description",
680
+ "label": "config.reality_enable.label"
681
+ },
647
682
  "reality_fallback_domain": {
648
683
  "description": "When the GFW visit the Websites in Server names, it will be redirect to this Domain.",
649
684
  "label": "🌍 Reality Fallback Domain"
@@ -760,6 +795,10 @@
760
795
  "description": "Please use a well known domain In your data center. for example, If you are In Azure data center, microsoft-update.com Is a good example",
761
796
  "label": "SSR FakeDomain"
762
797
  },
798
+ "tcp_enable": {
799
+ "description": "config.tcp_enable.description",
800
+ "label": "config.tcp_enable.label"
801
+ },
763
802
  "telegram": {
764
803
  "description": "A proxy designed for Telegram to bypass Telegram filtering",
765
804
  "label": "Telegram Proxy "
@@ -828,6 +867,10 @@
828
867
  "description": "Torrent Block Configurations could be set in this section.",
829
868
  "label": "Torrent Block Configuration"
830
869
  },
870
+ "trojan_enable": {
871
+ "description": "config.trojan_enable.description",
872
+ "label": "config.trojan_enable.label"
873
+ },
831
874
  "tuic": {
832
875
  "description": "Delicately-TUICed High-Performance proxy is on top of the QUIC protocol. \n\nTUIC's goal is to minimize the handshake latency as much as possible",
833
876
  "label": "TUIC"
@@ -855,6 +898,10 @@
855
898
  "validation-error": "There is an error in one of the fields.",
856
899
  "validation-success": "Configs have been changed successfully. Click %(link)s to apply the configs. It may take 2 minutes to apply",
857
900
  "validation-success-no-reset": " ✅ Configs have been changed successfully",
901
+ "vless_enable": {
902
+ "description": "config.vless_enable.description",
903
+ "label": "config.vless_enable.label"
904
+ },
858
905
  "vmess_enable": {
859
906
  "description": "Active VMess Protocol",
860
907
  "label": "♈️ Enable VMess"
@@ -914,6 +961,10 @@
914
961
  "ws_enable": {
915
962
  "description": "Websocket creates a tunnel over HTTP that is useful to be used in CDN",
916
963
  "label": "🔰 Enable Websocket"
964
+ },
965
+ "xtls_enable": {
966
+ "description": "config.xtls_enable.description",
967
+ "label": "config.xtls_enable.label"
917
968
  }
918
969
  },
919
970
  "config.invalid uuid": "Invalid UUID secret. example: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6\n\n",
@@ -970,6 +1021,7 @@
970
1021
  "next": "Next",
971
1022
  "no_reset": "⭐️ Without Reset",
972
1023
  "node": {
1024
+ "diff-version": "node.diff-version",
973
1025
  "mode": {
974
1026
  "dscr": "node.mode.dscr",
975
1027
  "label": "Node Mode"
@@ -987,6 +1039,10 @@
987
1039
  "open": "Open",
988
1040
  "package days?": "package days?",
989
1041
  "package size?": "package size?",
1042
+ "parent": {
1043
+ "invalid-parent-url": "parent.invalid-parent-url",
1044
+ "sync-req-failed": "parent.sync-req-failed"
1045
+ },
990
1046
  "previous": "Previous",
991
1047
  "quicksetup": {
992
1048
  "setlang": {
@@ -333,6 +333,12 @@
333
333
  "auto_cdn_ip": "☑️ انتخاب کننده آی‌پی CDN به صورت خودکار",
334
334
  "cdn": "🔀 سی‌دی‌ان (پروکسی کلودفلر و ...)",
335
335
  "child has been removed!": "پنل زیر مجموعه حذف شد",
336
+ "child": {
337
+ "register-failed": "",
338
+ "register-success": "",
339
+ "sync-failed": "",
340
+ "sync-success": ""
341
+ },
336
342
  "clickable copy": "لینک برای شبکه‌های اجتماعی",
337
343
  "close": "بستن",
338
344
  "config.Domain already used": "دامنه در بخش دامنه‌ها وجود دارد. از دامنه دیگری استفاده کنید.",
@@ -456,6 +462,10 @@
456
462
  "description": "gRPC یک چارچوب متن باز مدرن با کارایی بالا Remote Procedure Call (RPC) است. می توان از آن در CDN های پشتیبانی شده استفاده کرد",
457
463
  "label": "➿ gRPC را فعال کنید"
458
464
  },
465
+ "h2_enable": {
466
+ "description": "",
467
+ "label": ""
468
+ },
459
469
  "hidden": {
460
470
  "description": "-",
461
471
  "label": "-"
@@ -500,6 +510,7 @@
500
510
  "description": "حداکثر سرعت آپلود هیستریا",
501
511
  "label": "⬆️ آپلود (mbps) Hysteria"
502
512
  },
513
+ "invalid-pattern-for-warp-sites": "",
503
514
  "is_parent": {
504
515
  "description": "-",
505
516
  "label": "پنل مرکزی"
@@ -528,9 +539,13 @@
528
539
  "description": "برای استفاده تجاری از این محصول باید مجوز آن را خریداری کنید",
529
540
  "label": "کد مجوز"
530
541
  },
542
+ "log_level": {
543
+ "description": "",
544
+ "label": ""
545
+ },
531
546
  "mux": {
532
547
  "description": "تنظیمات MUX (Multiplex) را می توان در این بخش تنظیم کرد",
533
- "label": "پیکربندی MUX"
548
+ "label": "تنظیمات MUX"
534
549
  },
535
550
  "mux_brutal_down_mbps": {
536
551
  "description": "حداکثر سرعت دانلود TCP-Brutal",
@@ -584,6 +599,18 @@
584
599
  "description": "در این قسمت می‌توانید مشخص کنید که از کدام نسخه میخواهید استفاده کنید. (نسخه 'آزمایشی' امکانات را سریع‌تر از نسخه پایدار در اختیار شما می‌گذارد اما ممکن است دارای مشکلاتی باشد)",
585
600
  "label": "🔄 حالت به روز رسانی"
586
601
  },
602
+ "panel_mode": {
603
+ "description": "",
604
+ "label": ""
605
+ },
606
+ "parent_admin_proxy_path": {
607
+ "description": "",
608
+ "label": ""
609
+ },
610
+ "parent_domain": {
611
+ "description": "",
612
+ "label": ""
613
+ },
587
614
  "parent_panel": {
588
615
  "description": "می‌توانید به پنل مرکزی وصل شوید، تا فقط یک یوزر را تعریف کنید و میزان استفاده همه سرورها به صورت تجمعی اضافه می‌شود.",
589
616
  "label": "پنل مرکزی (مالتی سرور)"
@@ -640,10 +667,18 @@
640
667
  "description": "مسیر مخفی پروکسی پروکسی ها را از دولت ها و ربات ها پنهان می کند",
641
668
  "label": "مسیر پروکسی برای مشتریان"
642
669
  },
670
+ "quic_enable": {
671
+ "description": "",
672
+ "label": ""
673
+ },
643
674
  "reality": {
644
675
  "description": "REALITY قابلیت اثر انگشت TLS سمت سرور را حذف می کند",
645
676
  "label": "ریالیتی"
646
677
  },
678
+ "reality_enable": {
679
+ "description": "",
680
+ "label": ""
681
+ },
647
682
  "reality_fallback_domain": {
648
683
  "description": "هنگامی که GTW از وب‌ سایت‌ها در نام سرور بازدید می‌کند، به این دامنه هدایت می‌شود.",
649
684
  "label": "🌍 دامنه بازگشتی ریالیتی"
@@ -760,6 +795,10 @@
760
795
  "description": "لطفا از یک دامنه معتبر در دیتاسنتر خود استفاده کنید. برای مثال، اگر از دیتاسنتر Azure استفاده می‌کنید، microsoft-update.com یک نمونه خوب است",
761
796
  "label": "دامنه جعلی برای SSR"
762
797
  },
798
+ "tcp_enable": {
799
+ "description": "",
800
+ "label": ""
801
+ },
763
802
  "telegram": {
764
803
  "description": "پروکسی تلگرام برای استفاده درون اپ تلگرام طراحی شده تا فیلترینگ تلگرام را دور بزند",
765
804
  "label": "پروکسی تلگرام"
@@ -828,6 +867,10 @@
828
867
  "description": "در این قسمت تنظیمات Torrent Block قابل انجام است.",
829
868
  "label": "تنظیمات Torrent Block"
830
869
  },
870
+ "trojan_enable": {
871
+ "description": "",
872
+ "label": ""
873
+ },
831
874
  "tuic": {
832
875
  "description": "پروکسی Delicately-TUICed با کارایی بالا روی پروتکل QUIC است. \nهدف TUIC این است که تأخیر handshake را تا حد امکان به حداقل برساند.",
833
876
  "label": "TUIC"
@@ -855,6 +898,10 @@
855
898
  "validation-error": "یکی از فیلدها دچار خطا شده است.",
856
899
  "validation-success": "تنظیمات با موفقیت ذخیره شدند. لطفا بر روی این لینک: %(link)s کلیک کنید تا بر روی سیستم اعمال شوند. این کار ممکن است 2 دقیقه طول بکشد",
857
900
  "validation-success-no-reset": " ✅ تنظیمات با موفقیت تغییر کرد",
901
+ "vless_enable": {
902
+ "description": "",
903
+ "label": ""
904
+ },
858
905
  "vmess_enable": {
859
906
  "description": "فعال کردن پروتکل VMess",
860
907
  "label": "♈️ فعال کردن VMess"
@@ -914,6 +961,10 @@
914
961
  "ws_enable": {
915
962
  "description": "Websocket یک تونل روی HTTP ایجاد می کند که برای استفاده در CDN مفید است",
916
963
  "label": "🔰 Websocket را فعال کنید"
964
+ },
965
+ "xtls_enable": {
966
+ "description": "",
967
+ "label": ""
917
968
  }
918
969
  },
919
970
  "config.invalid uuid": "رمز UUID نامعتبر است. به عنوان مثال: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6",
@@ -970,6 +1021,7 @@
970
1021
  "next": "بعدی",
971
1022
  "no_reset": "⭐️ بدون ریست شدن",
972
1023
  "node": {
1024
+ "diff-version": "",
973
1025
  "mode": {
974
1026
  "dscr": "",
975
1027
  "label": "حالت گره"
@@ -987,6 +1039,10 @@
987
1039
  "open": "باز کردن",
988
1040
  "package days?": "تعداد روز؟",
989
1041
  "package size?": "حجم بسته",
1042
+ "parent": {
1043
+ "invalid-parent-url": "",
1044
+ "sync-req-failed": ""
1045
+ },
990
1046
  "previous": "قبلی",
991
1047
  "quicksetup": {
992
1048
  "setlang": {