hiddifypanel 10.12.1__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 (117) hide show
  1. hiddifypanel/VERSION +1 -1
  2. hiddifypanel/VERSION.py +2 -2
  3. hiddifypanel/auth.py +15 -4
  4. hiddifypanel/base.py +58 -50
  5. hiddifypanel/cache.py +43 -25
  6. hiddifypanel/database.py +9 -0
  7. hiddifypanel/drivers/abstract_driver.py +2 -0
  8. hiddifypanel/drivers/singbox_api.py +17 -15
  9. hiddifypanel/drivers/ssh_liberty_bridge_api.py +2 -0
  10. hiddifypanel/drivers/user_driver.py +12 -6
  11. hiddifypanel/drivers/wireguard_api.py +2 -0
  12. hiddifypanel/drivers/xray_api.py +14 -9
  13. hiddifypanel/hutils/__init__.py +1 -0
  14. hiddifypanel/hutils/convert.py +13 -2
  15. hiddifypanel/hutils/crypto.py +21 -2
  16. hiddifypanel/hutils/flask.py +19 -5
  17. hiddifypanel/hutils/importer/xui.py +5 -2
  18. hiddifypanel/hutils/node/__init__.py +3 -0
  19. hiddifypanel/hutils/node/api_client.py +76 -0
  20. hiddifypanel/hutils/node/child.py +147 -0
  21. hiddifypanel/hutils/node/parent.py +100 -0
  22. hiddifypanel/hutils/node/shared.py +65 -0
  23. hiddifypanel/hutils/proxy/shared.py +15 -3
  24. hiddifypanel/models/__init__.py +2 -2
  25. hiddifypanel/models/admin.py +14 -2
  26. hiddifypanel/models/base_account.py +3 -3
  27. hiddifypanel/models/child.py +30 -16
  28. hiddifypanel/models/config.py +39 -15
  29. hiddifypanel/models/config_enum.py +55 -8
  30. hiddifypanel/models/domain.py +28 -20
  31. hiddifypanel/models/parent_domain.py +2 -2
  32. hiddifypanel/models/proxy.py +13 -4
  33. hiddifypanel/models/report.py +2 -3
  34. hiddifypanel/models/usage.py +2 -2
  35. hiddifypanel/models/user.py +18 -9
  36. hiddifypanel/panel/admin/Actions.py +4 -6
  37. hiddifypanel/panel/admin/AdminstratorAdmin.py +13 -2
  38. hiddifypanel/panel/admin/Dashboard.py +5 -10
  39. hiddifypanel/panel/admin/DomainAdmin.py +12 -11
  40. hiddifypanel/panel/admin/NodeAdmin.py +6 -2
  41. hiddifypanel/panel/admin/ProxyAdmin.py +4 -3
  42. hiddifypanel/panel/admin/SettingAdmin.py +60 -21
  43. hiddifypanel/panel/admin/UserAdmin.py +10 -2
  44. hiddifypanel/panel/admin/templates/index.html +1 -1
  45. hiddifypanel/panel/admin/templates/parent_dash.html +2 -4
  46. hiddifypanel/panel/cli.py +16 -16
  47. hiddifypanel/panel/commercial/ProxyDetailsAdmin.py +10 -5
  48. hiddifypanel/panel/commercial/__init__.py +7 -5
  49. hiddifypanel/panel/commercial/restapi/v2/admin/__init__.py +0 -5
  50. hiddifypanel/panel/commercial/restapi/v2/admin/admin_info_api.py +2 -2
  51. hiddifypanel/panel/commercial/restapi/v2/admin/admin_log_api.py +4 -5
  52. hiddifypanel/panel/commercial/restapi/v2/admin/admin_user_api.py +8 -35
  53. hiddifypanel/panel/commercial/restapi/v2/admin/admin_users_api.py +4 -4
  54. hiddifypanel/panel/commercial/restapi/v2/admin/schema.py +157 -0
  55. hiddifypanel/panel/commercial/restapi/v2/admin/server_status_api.py +3 -3
  56. hiddifypanel/panel/commercial/restapi/v2/admin/user_api.py +9 -73
  57. hiddifypanel/panel/commercial/restapi/v2/admin/users_api.py +1 -1
  58. hiddifypanel/panel/commercial/restapi/v2/child/__init__.py +18 -0
  59. hiddifypanel/panel/commercial/restapi/v2/child/actions.py +63 -0
  60. hiddifypanel/panel/commercial/restapi/v2/child/register_parent_api.py +34 -0
  61. hiddifypanel/panel/commercial/restapi/v2/child/schema.py +7 -0
  62. hiddifypanel/panel/commercial/restapi/v2/child/sync_parent_api.py +21 -0
  63. hiddifypanel/panel/commercial/restapi/v2/panel/__init__.py +13 -0
  64. hiddifypanel/panel/commercial/restapi/v2/panel/info.py +18 -0
  65. hiddifypanel/panel/commercial/restapi/v2/panel/ping_pong.py +23 -0
  66. hiddifypanel/panel/commercial/restapi/v2/panel/schema.py +7 -0
  67. hiddifypanel/panel/commercial/restapi/v2/parent/__init__.py +16 -0
  68. hiddifypanel/panel/commercial/restapi/v2/parent/register_api.py +65 -0
  69. hiddifypanel/panel/commercial/restapi/v2/parent/schema.py +115 -0
  70. hiddifypanel/panel/commercial/restapi/v2/parent/status_api.py +26 -0
  71. hiddifypanel/panel/commercial/restapi/v2/parent/sync_api.py +53 -0
  72. hiddifypanel/panel/commercial/restapi/v2/parent/usage_api.py +57 -0
  73. hiddifypanel/panel/commercial/telegrambot/admin.py +1 -2
  74. hiddifypanel/panel/common.py +21 -6
  75. hiddifypanel/panel/hiddify.py +9 -80
  76. hiddifypanel/panel/init_db.py +84 -38
  77. hiddifypanel/panel/usage.py +33 -18
  78. hiddifypanel/panel/user/templates/home/usage.html +1 -1
  79. hiddifypanel/panel/user/templates/new.html +2 -2
  80. hiddifypanel/static/css/custom.css +13 -0
  81. hiddifypanel/static/images/hiddify.png +0 -0
  82. hiddifypanel/static/images/hiddify2.png +0 -0
  83. hiddifypanel/static/new/assets/hiddify-logo-7617d937.png +0 -0
  84. hiddifypanel/static/new/assets/{index-4510b616.js → index-ccb9873c.js} +2 -2
  85. hiddifypanel/static/new/assets/index-fa00de9a.css +1 -0
  86. hiddifypanel/static/new/i18n/en.json +6 -6
  87. hiddifypanel/static/new/i18n/fa.json +1 -1
  88. hiddifypanel/templates/admin-layout.html +24 -40
  89. hiddifypanel/templates/fake.html +22 -0
  90. hiddifypanel/templates/master.html +24 -42
  91. hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
  92. hiddifypanel/translations/en/LC_MESSAGES/messages.po +95 -5
  93. hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
  94. hiddifypanel/translations/fa/LC_MESSAGES/messages.po +96 -4
  95. hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
  96. hiddifypanel/translations/pt/LC_MESSAGES/messages.po +98 -6
  97. hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
  98. hiddifypanel/translations/ru/LC_MESSAGES/messages.po +91 -1
  99. hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
  100. hiddifypanel/translations/zh/LC_MESSAGES/messages.po +92 -2
  101. hiddifypanel/translations.i18n/en.json +61 -5
  102. hiddifypanel/translations.i18n/fa.json +60 -4
  103. hiddifypanel/translations.i18n/pt.json +63 -7
  104. hiddifypanel/translations.i18n/ru.json +57 -1
  105. hiddifypanel/translations.i18n/zh.json +58 -2
  106. {hiddifypanel-10.12.1.dist-info → hiddifypanel-10.15.0.dev0.dist-info}/METADATA +47 -47
  107. {hiddifypanel-10.12.1.dist-info → hiddifypanel-10.15.0.dev0.dist-info}/RECORD +112 -94
  108. hiddifypanel/panel/commercial/restapi/v2/DTO.py +0 -9
  109. hiddifypanel/panel/commercial/restapi/v2/hello/__init__.py +0 -16
  110. hiddifypanel/panel/commercial/restapi/v2/hello/hello.py +0 -32
  111. hiddifypanel/static/new/assets/hiddify-logo-7617d937_old.png +0 -0
  112. hiddifypanel/static/new/assets/index-669b32c8.css +0 -1
  113. /hiddifypanel/static/images/{hiddify1.png → hiddify-old.png} +0 -0
  114. {hiddifypanel-10.12.1.dist-info → hiddifypanel-10.15.0.dev0.dist-info}/LICENSE.md +0 -0
  115. {hiddifypanel-10.12.1.dist-info → hiddifypanel-10.15.0.dev0.dist-info}/WHEEL +0 -0
  116. {hiddifypanel-10.12.1.dist-info → hiddifypanel-10.15.0.dev0.dist-info}/entry_points.txt +0 -0
  117. {hiddifypanel-10.12.1.dist-info → hiddifypanel-10.15.0.dev0.dist-info}/top_level.txt +0 -0
@@ -24,7 +24,7 @@ msgid "Actions"
24
24
  msgstr "Ações"
25
25
 
26
26
  msgid "Active"
27
- msgstr ""
27
+ msgstr "ativo"
28
28
 
29
29
  msgid "Active Users"
30
30
  msgstr "Usuários ativos"
@@ -91,7 +91,7 @@ msgid "Can add sub admin"
91
91
  msgstr "👥 Pode adicionar subadministrador"
92
92
 
93
93
  msgid "Can not connect to Cloudflare."
94
- msgstr ""
94
+ msgstr "Não é possível conectar ao Cloudflare."
95
95
 
96
96
  msgid "Check again"
97
97
  msgstr "Verifique novamente"
@@ -115,7 +115,7 @@ msgid "Close"
115
115
  msgstr "Fechar"
116
116
 
117
117
  msgid "Commercial use"
118
- msgstr ""
118
+ msgstr "Utilização comercial"
119
119
 
120
120
  msgid "Config file is incorrect"
121
121
  msgstr "O arquivo de configuração está incorreto."
@@ -142,7 +142,7 @@ msgid "Create Package"
142
142
  msgstr "Criar pacote"
143
143
 
144
144
  msgid "Current Domain"
145
- msgstr ""
145
+ msgstr "Domínio atual"
146
146
 
147
147
  msgid ""
148
148
  "Dear {}\n"
@@ -209,6 +209,8 @@ msgid ""
209
209
  "Domain IP=%(domain_ip)s is not matched with your ip=%(server_ip)s which is "
210
210
  "required in direct mode"
211
211
  msgstr ""
212
+ " O IP do domínio = %(domain_ip)s não corresponde ao seu IP = %(server_ip)s, "
213
+ "o que é necessário no modo direto"
212
214
 
213
215
  msgid "Domain can not be resolved! there is a problem in your domain"
214
216
  msgstr ""
@@ -364,7 +366,7 @@ msgid "Install Hiddify Application"
364
366
  msgstr "Instalação do Painel Hidify"
365
367
 
366
368
  msgid "Invalid IP or domain"
367
- msgstr ""
369
+ msgstr "IP ou domínio inválido"
368
370
 
369
371
  msgid "Invalid REALITY hostnames"
370
372
  msgstr "Nomes de host REALITY inválidos"
@@ -1080,6 +1082,18 @@ msgstr "CDN (Cloudflare Proxy, ...)"
1080
1082
  msgid "child has been removed!"
1081
1083
  msgstr "Child removido"
1082
1084
 
1085
+ msgid "child.register-failed"
1086
+ msgstr ""
1087
+
1088
+ msgid "child.register-success"
1089
+ msgstr ""
1090
+
1091
+ msgid "child.sync-failed"
1092
+ msgstr ""
1093
+
1094
+ msgid "child.sync-success"
1095
+ msgstr ""
1096
+
1083
1097
  msgid "clickable copy"
1084
1098
  msgstr "Link para mídias sociais"
1085
1099
 
@@ -1326,6 +1340,12 @@ msgstr ""
1326
1340
  msgid "config.grpc_enable.label"
1327
1341
  msgstr ""
1328
1342
 
1343
+ msgid "config.h2_enable.description"
1344
+ msgstr ""
1345
+
1346
+ msgid "config.h2_enable.label"
1347
+ msgstr ""
1348
+
1329
1349
  msgid "config.hidden.description"
1330
1350
  msgstr "config.hidden.description"
1331
1351
 
@@ -1400,6 +1420,9 @@ msgstr ""
1400
1420
  msgid "config.hysteria_up_mbps.label"
1401
1421
  msgstr ""
1402
1422
 
1423
+ msgid "config.invalid-pattern-for-warp-sites"
1424
+ msgstr ""
1425
+
1403
1426
  msgid "config.is_parent.description"
1404
1427
  msgstr "config.is_parent.description"
1405
1428
 
@@ -1444,11 +1467,17 @@ msgstr "Para uso comercial deste produto, você deve comprar sua licença"
1444
1467
  msgid "config.license.label"
1445
1468
  msgstr "Código de licença"
1446
1469
 
1470
+ msgid "config.log_level.description"
1471
+ msgstr ""
1472
+
1473
+ msgid "config.log_level.label"
1474
+ msgstr ""
1475
+
1447
1476
  msgid "config.mux.description"
1448
1477
  msgstr ""
1449
1478
 
1450
1479
  msgid "config.mux.label"
1451
- msgstr ""
1480
+ msgstr "Configurações de MUX"
1452
1481
 
1453
1482
  msgid "config.mux_brutal_down_mbps.description"
1454
1483
  msgstr ""
@@ -1528,6 +1557,24 @@ msgstr "Especifique se você deseja um pacote lançado ou desenvolvido"
1528
1557
  msgid "config.package_mode.label"
1529
1558
  msgstr "🔄 Modo de atualização de pacotes"
1530
1559
 
1560
+ msgid "config.panel_mode.description"
1561
+ msgstr ""
1562
+
1563
+ msgid "config.panel_mode.label"
1564
+ msgstr ""
1565
+
1566
+ msgid "config.parent_admin_proxy_path.description"
1567
+ msgstr ""
1568
+
1569
+ msgid "config.parent_admin_proxy_path.label"
1570
+ msgstr ""
1571
+
1572
+ msgid "config.parent_domain.description"
1573
+ msgstr ""
1574
+
1575
+ msgid "config.parent_domain.label"
1576
+ msgstr ""
1577
+
1531
1578
  msgid "config.parent_panel.description"
1532
1579
  msgstr ""
1533
1580
  "Você pode se conectar ao Painel Central para definir apenas um usuário e o "
@@ -1615,6 +1662,12 @@ msgstr ""
1615
1662
  msgid "config.proxy_path_client.label"
1616
1663
  msgstr ""
1617
1664
 
1665
+ msgid "config.quic_enable.description"
1666
+ msgstr ""
1667
+
1668
+ msgid "config.quic_enable.label"
1669
+ msgstr ""
1670
+
1618
1671
  msgid "config.reality.description"
1619
1672
  msgstr ""
1620
1673
  "REALITY elimina o recurso de impressão digital TLS do lado do servidor"
@@ -1622,6 +1675,12 @@ msgstr ""
1622
1675
  msgid "config.reality.label"
1623
1676
  msgstr "Reality"
1624
1677
 
1678
+ msgid "config.reality_enable.description"
1679
+ msgstr ""
1680
+
1681
+ msgid "config.reality_enable.label"
1682
+ msgstr ""
1683
+
1625
1684
  msgid "config.reality_fallback_domain.description"
1626
1685
  msgstr ""
1627
1686
  "Quando o GTW visitar os sites em nomes de servidor, ele será redirecionado "
@@ -1830,6 +1889,12 @@ msgstr ""
1830
1889
  msgid "config.ssr_fakedomain.label"
1831
1890
  msgstr "SSR FakeDomain"
1832
1891
 
1892
+ msgid "config.tcp_enable.description"
1893
+ msgstr ""
1894
+
1895
+ msgid "config.tcp_enable.label"
1896
+ msgstr ""
1897
+
1833
1898
  msgid "config.telegram.description"
1834
1899
  msgstr "Um proxy projetado para o Telegram ignorar a filtragem do Telegram"
1835
1900
 
@@ -1946,6 +2011,12 @@ msgstr "As configurações do bloco de torrent podem ser definidas nesta seção
1946
2011
  msgid "config.torrent_block.label"
1947
2012
  msgstr "Configuração do Bloco de Torrent"
1948
2013
 
2014
+ msgid "config.trojan_enable.description"
2015
+ msgstr ""
2016
+
2017
+ msgid "config.trojan_enable.label"
2018
+ msgstr ""
2019
+
1949
2020
  msgid "config.tuic.description"
1950
2021
  msgstr ""
1951
2022
  "O proxy de alto desempenho delicadamente TUICed está no topo do protocolo QUIC.\n"
@@ -1998,6 +2069,12 @@ msgstr ""
1998
2069
  msgid "config.validation-success-no-reset"
1999
2070
  msgstr "✅ As configurações foram alteradas com sucesso"
2000
2071
 
2072
+ msgid "config.vless_enable.description"
2073
+ msgstr ""
2074
+
2075
+ msgid "config.vless_enable.label"
2076
+ msgstr ""
2077
+
2001
2078
  msgid "config.vmess_enable.description"
2002
2079
  msgstr ""
2003
2080
  "É relatado por várias pessoas que o VMess faz com que o sistema seja "
@@ -2108,6 +2185,12 @@ msgstr ""
2108
2185
  msgid "config.ws_enable.label"
2109
2186
  msgstr ""
2110
2187
 
2188
+ msgid "config.xtls_enable.description"
2189
+ msgstr ""
2190
+
2191
+ msgid "config.xtls_enable.label"
2192
+ msgstr ""
2193
+
2111
2194
  msgid "config.invalid uuid"
2112
2195
  msgstr "Secret UUID inválido. exemplo: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6"
2113
2196
 
@@ -2227,6 +2310,9 @@ msgstr "Próximo"
2227
2310
  msgid "no_reset"
2228
2311
  msgstr "Sem Redefinir"
2229
2312
 
2313
+ msgid "node.diff-version"
2314
+ msgstr ""
2315
+
2230
2316
  msgid "node.mode.dscr"
2231
2317
  msgstr ""
2232
2318
 
@@ -2257,6 +2343,12 @@ msgstr "dias de pacote?"
2257
2343
  msgid "package size?"
2258
2344
  msgstr "tamanho do pacote?"
2259
2345
 
2346
+ msgid "parent.invalid-parent-url"
2347
+ msgstr ""
2348
+
2349
+ msgid "parent.sync-req-failed"
2350
+ msgstr ""
2351
+
2260
2352
  msgid "previous"
2261
2353
  msgstr "Anterior"
2262
2354
 
@@ -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
 
@@ -1239,7 +1251,7 @@ msgstr "Настройки страницы пользователя"
1239
1251
  msgid "config.branding_freetext.description"
1240
1252
  msgstr ""
1241
1253
  "Брендинговый текст. текст этого поля будет показан в разделе поддержки на странице пользователя. вы можете использовать HTML-теги\n"
1242
- "<p><br /><a href=\"https://onlinehtmleditor.dev\" target=\"_blank\">HTML Editor</a></p>"
1254
+ "<p><br /><a href=\"https://htmleditor.online/full\" target=\"_blank\">HTML Editor</a></p>"
1243
1255
 
1244
1256
  msgid "config.branding_freetext.label"
1245
1257
  msgstr "📢 Текст раздела поддержки"
@@ -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