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
@@ -1139,6 +1139,18 @@ msgstr "🔀 CDN (Cloudflare Proxy, ...)"
1139
1139
  msgid "child has been removed!"
1140
1140
  msgstr "Child Has Been Removed!"
1141
1141
 
1142
+ msgid "child.register-failed"
1143
+ msgstr "child.register-failed"
1144
+
1145
+ msgid "child.register-success"
1146
+ msgstr "child.register-success"
1147
+
1148
+ msgid "child.sync-failed"
1149
+ msgstr "child.sync-failed"
1150
+
1151
+ msgid "child.sync-success"
1152
+ msgstr "child.sync-success"
1153
+
1142
1154
  msgid "clickable copy"
1143
1155
  msgstr "Link for Social Media"
1144
1156
 
@@ -1381,6 +1393,12 @@ msgstr ""
1381
1393
  msgid "config.grpc_enable.label"
1382
1394
  msgstr "➿ Enable gRPC"
1383
1395
 
1396
+ msgid "config.h2_enable.description"
1397
+ msgstr "config.h2_enable.description"
1398
+
1399
+ msgid "config.h2_enable.label"
1400
+ msgstr "config.h2_enable.label"
1401
+
1384
1402
  msgid "config.hidden.description"
1385
1403
  msgstr "config.hidden.description"
1386
1404
 
@@ -1457,6 +1475,9 @@ msgstr "Hysteria Maximum Upload Speed"
1457
1475
  msgid "config.hysteria_up_mbps.label"
1458
1476
  msgstr "⬆️ Hysteria Upload (mbps)"
1459
1477
 
1478
+ msgid "config.invalid-pattern-for-warp-sites"
1479
+ msgstr "config.invalid-pattern-for-warp-sites"
1480
+
1460
1481
  msgid "config.is_parent.description"
1461
1482
  msgstr "config.is_parent.description"
1462
1483
 
@@ -1500,6 +1521,12 @@ msgstr "For commercial use of this Product, you must Purchase its License"
1500
1521
  msgid "config.license.label"
1501
1522
  msgstr "License Code"
1502
1523
 
1524
+ msgid "config.log_level.description"
1525
+ msgstr "config.log_level.description"
1526
+
1527
+ msgid "config.log_level.label"
1528
+ msgstr "config.log_level.label"
1529
+
1503
1530
  msgid "config.mux.description"
1504
1531
  msgstr "MUX (Multiplex) configurations could be set in this section"
1505
1532
 
@@ -1596,6 +1623,24 @@ msgstr "Specify whether you want Released Package or Beta one"
1596
1623
  msgid "config.package_mode.label"
1597
1624
  msgstr "🔄 Package Update Mode"
1598
1625
 
1626
+ msgid "config.panel_mode.description"
1627
+ msgstr "config.panel_mode.description"
1628
+
1629
+ msgid "config.panel_mode.label"
1630
+ msgstr "config.panel_mode.label"
1631
+
1632
+ msgid "config.parent_admin_proxy_path.description"
1633
+ msgstr "config.parent_admin_proxy_path.description"
1634
+
1635
+ msgid "config.parent_admin_proxy_path.label"
1636
+ msgstr "config.parent_admin_proxy_path.label"
1637
+
1638
+ msgid "config.parent_domain.description"
1639
+ msgstr "config.parent_domain.description"
1640
+
1641
+ msgid "config.parent_domain.label"
1642
+ msgstr "config.parent_domain.label"
1643
+
1599
1644
  msgid "config.parent_panel.description"
1600
1645
  msgstr ""
1601
1646
  "You can Connect to the Central Panel to define only one user and the usage "
@@ -1683,12 +1728,24 @@ msgstr "Secret proxy path hide the proxies from the governments and bots"
1683
1728
  msgid "config.proxy_path_client.label"
1684
1729
  msgstr "🔏 Proxy Path for Clients"
1685
1730
 
1731
+ msgid "config.quic_enable.description"
1732
+ msgstr "config.quic_enable.description"
1733
+
1734
+ msgid "config.quic_enable.label"
1735
+ msgstr "config.quic_enable.label"
1736
+
1686
1737
  msgid "config.reality.description"
1687
1738
  msgstr "REALITY eliminate the Server-Side TLS Fingerprint Feature"
1688
1739
 
1689
1740
  msgid "config.reality.label"
1690
1741
  msgstr "Reality"
1691
1742
 
1743
+ msgid "config.reality_enable.description"
1744
+ msgstr "config.reality_enable.description"
1745
+
1746
+ msgid "config.reality_enable.label"
1747
+ msgstr "config.reality_enable.label"
1748
+
1692
1749
  msgid "config.reality_fallback_domain.description"
1693
1750
  msgstr ""
1694
1751
  "When the GFW visit the Websites in Server names, it will be redirect to this"
@@ -1901,6 +1958,12 @@ msgstr ""
1901
1958
  msgid "config.ssr_fakedomain.label"
1902
1959
  msgstr "SSR FakeDomain"
1903
1960
 
1961
+ msgid "config.tcp_enable.description"
1962
+ msgstr "config.tcp_enable.description"
1963
+
1964
+ msgid "config.tcp_enable.label"
1965
+ msgstr "config.tcp_enable.label"
1966
+
1904
1967
  msgid "config.telegram.description"
1905
1968
  msgstr "A proxy designed for Telegram to bypass Telegram filtering"
1906
1969
 
@@ -2021,6 +2084,12 @@ msgstr "Torrent Block Configurations could be set in this section."
2021
2084
  msgid "config.torrent_block.label"
2022
2085
  msgstr "Torrent Block Configuration"
2023
2086
 
2087
+ msgid "config.trojan_enable.description"
2088
+ msgstr "config.trojan_enable.description"
2089
+
2090
+ msgid "config.trojan_enable.label"
2091
+ msgstr "config.trojan_enable.label"
2092
+
2024
2093
  msgid "config.tuic.description"
2025
2094
  msgstr ""
2026
2095
  "Delicately-TUICed High-Performance proxy is on top of the QUIC protocol. \n"
@@ -2073,6 +2142,12 @@ msgstr ""
2073
2142
  msgid "config.validation-success-no-reset"
2074
2143
  msgstr " ✅ Configs have been changed successfully"
2075
2144
 
2145
+ msgid "config.vless_enable.description"
2146
+ msgstr "config.vless_enable.description"
2147
+
2148
+ msgid "config.vless_enable.label"
2149
+ msgstr "config.vless_enable.label"
2150
+
2076
2151
  msgid "config.vmess_enable.description"
2077
2152
  msgstr "Active VMess Protocol"
2078
2153
 
@@ -2185,6 +2260,12 @@ msgstr "Websocket creates a tunnel over HTTP that is useful to be used in CDN"
2185
2260
  msgid "config.ws_enable.label"
2186
2261
  msgstr "🔰 Enable Websocket"
2187
2262
 
2263
+ msgid "config.xtls_enable.description"
2264
+ msgstr "config.xtls_enable.description"
2265
+
2266
+ msgid "config.xtls_enable.label"
2267
+ msgstr "config.xtls_enable.label"
2268
+
2188
2269
  msgid "config.invalid uuid"
2189
2270
  msgstr ""
2190
2271
  "Invalid UUID secret. example: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6\n"
@@ -2304,6 +2385,9 @@ msgstr "Next"
2304
2385
  msgid "no_reset"
2305
2386
  msgstr "⭐️ Without Reset"
2306
2387
 
2388
+ msgid "node.diff-version"
2389
+ msgstr "node.diff-version"
2390
+
2307
2391
  msgid "node.mode.dscr"
2308
2392
  msgstr "node.mode.dscr"
2309
2393
 
@@ -2334,6 +2418,12 @@ msgstr "package days?"
2334
2418
  msgid "package size?"
2335
2419
  msgstr "package size?"
2336
2420
 
2421
+ msgid "parent.invalid-parent-url"
2422
+ msgstr "parent.invalid-parent-url"
2423
+
2424
+ msgid "parent.sync-req-failed"
2425
+ msgstr "parent.sync-req-failed"
2426
+
2337
2427
  msgid "previous"
2338
2428
  msgstr "Previous"
2339
2429
 
@@ -1124,6 +1124,18 @@ msgstr "🔀 سی‌دی‌ان (پروکسی کلودفلر و ...)"
1124
1124
  msgid "child has been removed!"
1125
1125
  msgstr "پنل زیر مجموعه حذف شد"
1126
1126
 
1127
+ msgid "child.register-failed"
1128
+ msgstr ""
1129
+
1130
+ msgid "child.register-success"
1131
+ msgstr ""
1132
+
1133
+ msgid "child.sync-failed"
1134
+ msgstr ""
1135
+
1136
+ msgid "child.sync-success"
1137
+ msgstr ""
1138
+
1127
1139
  msgid "clickable copy"
1128
1140
  msgstr "لینک برای شبکه‌های اجتماعی"
1129
1141
 
@@ -1366,6 +1378,12 @@ msgstr ""
1366
1378
  msgid "config.grpc_enable.label"
1367
1379
  msgstr "➿ gRPC را فعال کنید"
1368
1380
 
1381
+ msgid "config.h2_enable.description"
1382
+ msgstr ""
1383
+
1384
+ msgid "config.h2_enable.label"
1385
+ msgstr ""
1386
+
1369
1387
  msgid "config.hidden.description"
1370
1388
  msgstr "-"
1371
1389
 
@@ -1447,6 +1465,9 @@ msgstr "حداکثر سرعت آپلود هیستریا"
1447
1465
  msgid "config.hysteria_up_mbps.label"
1448
1466
  msgstr "⬆️ آپلود (mbps) Hysteria"
1449
1467
 
1468
+ msgid "config.invalid-pattern-for-warp-sites"
1469
+ msgstr ""
1470
+
1450
1471
  msgid "config.is_parent.description"
1451
1472
  msgstr "-"
1452
1473
 
@@ -1491,11 +1512,17 @@ msgstr "برای استفاده تجاری از این محصول باید مج
1491
1512
  msgid "config.license.label"
1492
1513
  msgstr "کد مجوز"
1493
1514
 
1515
+ msgid "config.log_level.description"
1516
+ msgstr ""
1517
+
1518
+ msgid "config.log_level.label"
1519
+ msgstr ""
1520
+
1494
1521
  msgid "config.mux.description"
1495
1522
  msgstr "تنظیمات MUX (Multiplex) را می توان در این بخش تنظیم کرد"
1496
1523
 
1497
1524
  msgid "config.mux.label"
1498
- msgstr "پیکربندی MUX"
1525
+ msgstr "تنظیمات MUX"
1499
1526
 
1500
1527
  msgid "config.mux_brutal_down_mbps.description"
1501
1528
  msgstr "حداکثر سرعت دانلود TCP-Brutal"
@@ -1589,6 +1616,24 @@ msgstr ""
1589
1616
  msgid "config.package_mode.label"
1590
1617
  msgstr "🔄 حالت به روز رسانی"
1591
1618
 
1619
+ msgid "config.panel_mode.description"
1620
+ msgstr ""
1621
+
1622
+ msgid "config.panel_mode.label"
1623
+ msgstr ""
1624
+
1625
+ msgid "config.parent_admin_proxy_path.description"
1626
+ msgstr ""
1627
+
1628
+ msgid "config.parent_admin_proxy_path.label"
1629
+ msgstr ""
1630
+
1631
+ msgid "config.parent_domain.description"
1632
+ msgstr ""
1633
+
1634
+ msgid "config.parent_domain.label"
1635
+ msgstr ""
1636
+
1592
1637
  msgid "config.parent_panel.description"
1593
1638
  msgstr ""
1594
1639
  "می‌توانید به پنل مرکزی وصل شوید، تا فقط یک یوزر را تعریف کنید و میزان "
@@ -1679,12 +1724,24 @@ msgstr "مسیر مخفی پروکسی پروکسی ها را از دولت ها
1679
1724
  msgid "config.proxy_path_client.label"
1680
1725
  msgstr "مسیر پروکسی برای مشتریان"
1681
1726
 
1727
+ msgid "config.quic_enable.description"
1728
+ msgstr ""
1729
+
1730
+ msgid "config.quic_enable.label"
1731
+ msgstr ""
1732
+
1682
1733
  msgid "config.reality.description"
1683
1734
  msgstr "REALITY قابلیت اثر انگشت TLS سمت سرور را حذف می کند"
1684
1735
 
1685
1736
  msgid "config.reality.label"
1686
1737
  msgstr "ریالیتی"
1687
1738
 
1739
+ msgid "config.reality_enable.description"
1740
+ msgstr ""
1741
+
1742
+ msgid "config.reality_enable.label"
1743
+ msgstr ""
1744
+
1688
1745
  msgid "config.reality_fallback_domain.description"
1689
1746
  msgstr ""
1690
1747
  "هنگامی که GTW از وب‌ سایت‌ها در نام سرور بازدید می‌کند، به این دامنه هدایت "
@@ -1900,6 +1957,12 @@ msgstr ""
1900
1957
  msgid "config.ssr_fakedomain.label"
1901
1958
  msgstr "دامنه جعلی برای SSR"
1902
1959
 
1960
+ msgid "config.tcp_enable.description"
1961
+ msgstr ""
1962
+
1963
+ msgid "config.tcp_enable.label"
1964
+ msgstr ""
1965
+
1903
1966
  msgid "config.telegram.description"
1904
1967
  msgstr ""
1905
1968
  "پروکسی تلگرام برای استفاده درون اپ تلگرام طراحی شده تا فیلترینگ تلگرام را "
@@ -2020,6 +2083,12 @@ msgstr "در این قسمت تنظیمات Torrent Block قابل انجام ا
2020
2083
  msgid "config.torrent_block.label"
2021
2084
  msgstr "تنظیمات Torrent Block"
2022
2085
 
2086
+ msgid "config.trojan_enable.description"
2087
+ msgstr ""
2088
+
2089
+ msgid "config.trojan_enable.label"
2090
+ msgstr ""
2091
+
2023
2092
  msgid "config.tuic.description"
2024
2093
  msgstr ""
2025
2094
  "پروکسی Delicately-TUICed با کارایی بالا روی پروتکل QUIC است. \n"
@@ -2071,6 +2140,12 @@ msgstr ""
2071
2140
  msgid "config.validation-success-no-reset"
2072
2141
  msgstr " ✅ تنظیمات با موفقیت تغییر کرد"
2073
2142
 
2143
+ msgid "config.vless_enable.description"
2144
+ msgstr ""
2145
+
2146
+ msgid "config.vless_enable.label"
2147
+ msgstr ""
2148
+
2074
2149
  msgid "config.vmess_enable.description"
2075
2150
  msgstr "فعال کردن پروتکل VMess"
2076
2151
 
@@ -2184,6 +2259,12 @@ msgstr ""
2184
2259
  msgid "config.ws_enable.label"
2185
2260
  msgstr "🔰 Websocket را فعال کنید"
2186
2261
 
2262
+ msgid "config.xtls_enable.description"
2263
+ msgstr ""
2264
+
2265
+ msgid "config.xtls_enable.label"
2266
+ msgstr ""
2267
+
2187
2268
  msgid "config.invalid uuid"
2188
2269
  msgstr ""
2189
2270
  "رمز UUID نامعتبر است. به عنوان مثال: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6"
@@ -2303,6 +2384,9 @@ msgstr "بعدی"
2303
2384
  msgid "no_reset"
2304
2385
  msgstr "⭐️ بدون ریست شدن"
2305
2386
 
2387
+ msgid "node.diff-version"
2388
+ msgstr ""
2389
+
2306
2390
  msgid "node.mode.dscr"
2307
2391
  msgstr ""
2308
2392
 
@@ -2333,6 +2417,12 @@ msgstr "تعداد روز؟"
2333
2417
  msgid "package size?"
2334
2418
  msgstr "حجم بسته"
2335
2419
 
2420
+ msgid "parent.invalid-parent-url"
2421
+ msgstr ""
2422
+
2423
+ msgid "parent.sync-req-failed"
2424
+ msgstr ""
2425
+
2336
2426
  msgid "previous"
2337
2427
  msgstr "قبلی"
2338
2428
 
@@ -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