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
@@ -5,7 +5,7 @@
5
5
  <html>
6
6
 
7
7
  <head>
8
- <title>{% block title %}{% endblock %} | {{_("master.page-title")}}</title>
8
+ <title>{% block title %}{% endblock %} | {{_("master.page-title")}} | {{version}}</title>
9
9
  {% block head_meta %}
10
10
  <meta name="robots" content="noindex, nofollow">
11
11
  <meta name="googlebot" content="noindex, nofollow">
@@ -20,35 +20,25 @@
20
20
  {% else %}
21
21
  <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
22
22
  {% endif %}
23
- <link href="{{static_url_for(filename='images/splash/iphone5_splash.png')}}"
24
- media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
23
+ <link href="{{static_url_for(filename='images/splash/iphone5_splash.png')}}" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
25
24
  rel="apple-touch-startup-image" />
26
- <link href="{{static_url_for(filename='images/splash/iphone6_splash.png')}}"
27
- media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
25
+ <link href="{{static_url_for(filename='images/splash/iphone6_splash.png')}}" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
28
26
  rel="apple-touch-startup-image" />
29
- <link href="{{static_url_for(filename='images/splash/iphoneplus_splash.png')}}"
30
- media="(device-width: 621px) and (device-height: 1104px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)"
27
+ <link href="{{static_url_for(filename='images/splash/iphoneplus_splash.png')}}" media="(device-width: 621px) and (device-height: 1104px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)"
31
28
  rel="apple-touch-startup-image" />
32
- <link href="{{static_url_for(filename='images/splash/iphonex_splash.png')}}"
33
- media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)"
29
+ <link href="{{static_url_for(filename='images/splash/iphonex_splash.png')}}" media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)"
34
30
  rel="apple-touch-startup-image" />
35
- <link href="{{static_url_for(filename='images/splash/iphonexr_splash.png')}}"
36
- media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
31
+ <link href="{{static_url_for(filename='images/splash/iphonexr_splash.png')}}" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
37
32
  rel="apple-touch-startup-image" />
38
- <link href="{{static_url_for(filename='images/splash/iphonexsmax_splash.png')}}"
39
- media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)"
33
+ <link href="{{static_url_for(filename='images/splash/iphonexsmax_splash.png')}}" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)"
40
34
  rel="apple-touch-startup-image" />
41
- <link href="{{static_url_for(filename='images/splash/ipad_splash.png')}}"
42
- media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
35
+ <link href="{{static_url_for(filename='images/splash/ipad_splash.png')}}" media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
43
36
  rel="apple-touch-startup-image" />
44
- <link href="{{static_url_for(filename='images/splash/ipadpro1_splash.png')}}"
45
- media="(device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
37
+ <link href="{{static_url_for(filename='images/splash/ipadpro1_splash.png')}}" media="(device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
46
38
  rel="apple-touch-startup-image" />
47
- <link href="{{static_url_for(filename='images/splash/ipadpro3_splash.png')}}"
48
- media="(device-width: 834px) and (device-height: 1194px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
39
+ <link href="{{static_url_for(filename='images/splash/ipadpro3_splash.png')}}" media="(device-width: 834px) and (device-height: 1194px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
49
40
  rel="apple-touch-startup-image" />
50
- <link href="{{static_url_for(filename='images/splash/ipadpro2_splash.png')}}"
51
- media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
41
+ <link href="{{static_url_for(filename='images/splash/ipadpro2_splash.png')}}" media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
52
42
  rel="apple-touch-startup-image" />
53
43
  <link rel="icon" type="image/x-icon" href="{{ static_url_for( filename='images/favicon.ico')}}">
54
44
  <link rel="manifest" href="{{ hurl_for('common_bp.LoginView:create_pwa_manifest',secret_uuid=g.account.uuid or '')}}">
@@ -70,8 +60,7 @@
70
60
  <link rel="stylesheet" href="{{static_url_for(filename='plugins/datatables/extensions/Responsive/css/responsive.bootstrap4.min.css')}}"> -->
71
61
 
72
62
  <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.13.2/css/dataTables.bootstrap4.min.css">
73
- <link rel="stylesheet" type="text/css"
74
- href="https://cdn.datatables.net/responsive/2.4.0/css/responsive.bootstrap4.min.css">
63
+ <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/responsive/2.4.0/css/responsive.bootstrap4.min.css">
75
64
 
76
65
  <link rel="stylesheet" href="{{ static_url_for( filename='css/custom.css',version=5.23 ) }}">
77
66
  {% if get_locale()=='fa' %}
@@ -90,10 +79,10 @@
90
79
 
91
80
  <body class="hold-transition layout-fixed {{" dark-mode" if g.darkmode else "" }} {% block bodyclass %}sidebar-collapse{%endblock%}">
92
81
  <div id="splash_screen">
93
- <center>
94
-
82
+ <center>
83
+
95
84
  <img src="{{static_url_for( filename='images/hiddify.png' )}}" />
96
-
85
+
97
86
 
98
87
  <a href="https://github.com/hiddify/hiddify-manager/wiki">
99
88
  <h1 class="title">{{_('user.home.title')}}</h1><br>Powered by hiddify.com
@@ -152,21 +141,19 @@
152
141
  <footer class="main-footer d-flex flex-wrap justify-content-between align-items-center " dir="ltr">
153
142
  <div class="nav col-md-8 d-flex align-items-center">
154
143
 
155
- <strong><span class="mb-3 mb-md-0 text-muted">© 2023 Hiddify {{"Central" if hconfig(ConfigEnum.is_parent) else
144
+ <strong><span class="mb-3 mb-md-0 text-muted">© 2023 Hiddify {{"Central" if hutils.node.is_parent() else
156
145
  ""}} <span class="badge">{{version}}</span>
157
146
  </span>
158
147
  </strong>
159
148
  </div>
160
149
 
161
150
  <ul class="nav col-md-4 justify-content-end list-unstyled d-flex">
162
- <li class="ms-3"><a class="text-secondary" href="https://github.com/hiddify/hiddify-manager/wiki"><i
163
- class="fa-brands fa-github"></i></a></li>
151
+ <li class="ms-3"><a class="text-secondary" href="https://github.com/hiddify/hiddify-manager/wiki"><i class="fa-brands fa-github"></i></a></li>
164
152
  <li class="ms-3"><a class="text-danger" href="https://youtube.com/@hiddify/videos">
165
153
  &nbsp; <i class="fa-brands fa-square-youtube fa-margin"></i> </a></li>
166
154
  <li class="ms-3"><a class="text-primary" href="https://twitter.com/intent/follow?screen_name=hiddify_com">
167
155
  &nbsp; <i class="fa-brands fa-square-twitter fa-margin"></i> </a></li>
168
- <li class="ms-3"><a class="text-primary" href="https://t.me/hiddify">&nbsp; <i
169
- class="fa-brands fa-telegram fa-margin"></i> </a></li>
156
+ <li class="ms-3"><a class="text-primary" href="https://t.me/hiddify">&nbsp; <i class="fa-brands fa-telegram fa-margin"></i> </a></li>
170
157
  </ul>
171
158
 
172
159
  </footer>
@@ -176,8 +163,7 @@
176
163
  </div>
177
164
  <!-- ./wrapper -->
178
165
 
179
- {#modal("guide-modal","","<video id='guide-video' controls
180
- style='max-height: 100%; max-width: 100%;width: auto; height: auto;'>
166
+ {#modal("guide-modal","","<video id='guide-video' controls style='max-height: 100%; max-width: 100%;width: auto; height: auto;'>
181
167
  <source id='guide-video-mp4' type='video/mp4'>
182
168
  </video>")#}
183
169
 
@@ -196,10 +182,8 @@
196
182
  <div class="btn-group">
197
183
  <a id='qrcode-link' class="btn btn-primary copy-link" href=""><i class="fa-regular fa-copy"></i>
198
184
  {{_("copy")}} </a>
199
- <a id="share-link-redirect" class="btn btn-success copy-link" href=""><i
200
- class="fa-solid fa-share-from-square"></i> {{_('clickable copy')}}</a>
201
- <a target="_blank" id="share-link-open" class="btn btn-secondary" href=""><i
202
- class="fa-solid fa-arrow-up-right-from-square"></i> {{_('open')}}</a>
185
+ <a id="share-link-redirect" class="btn btn-success copy-link" href=""><i class="fa-solid fa-share-from-square"></i> {{_('clickable copy')}}</a>
186
+ <a target="_blank" id="share-link-open" class="btn btn-secondary" href=""><i class="fa-solid fa-arrow-up-right-from-square"></i> {{_('open')}}</a>
203
187
  </div>
204
188
  <br />
205
189
  <div id="qrcode" style="margin:10px;padding:10px;"></div>
@@ -225,7 +209,7 @@
225
209
  wrappers[i].style.display = 'initial';
226
210
  }
227
211
 
228
- }, document.URL.indexOf("pwa") > 0 ? 0 : 1000);
212
+ }, document.URL.indexOf("pwa") > 0 ? 0 : 500);
229
213
 
230
214
  </script>
231
215
  <!-- jQuery -->
@@ -250,10 +234,8 @@
250
234
 
251
235
  <script src="{{ static_url_for( filename='plugins/datatables/jquery.dataTables.min.js' ) }}"></script>
252
236
  <script src="{{ static_url_for( filename='plugins/datatables/dataTables.bootstrap4.js' ) }}"></script>
253
- <script
254
- src="{{ static_url_for( filename='plugins/datatables/extensions/Responsive/js/dataTables.responsive.min.js' ) }}"></script>
255
- <script
256
- src="{{ static_url_for( filename='plugins/datatables/extensions/Responsive/js/responsive.bootstrap4.min.js' ) }}"></script>
237
+ <script src="{{ static_url_for( filename='plugins/datatables/extensions/Responsive/js/dataTables.responsive.min.js' ) }}"></script>
238
+ <script src="{{ static_url_for( filename='plugins/datatables/extensions/Responsive/js/responsive.bootstrap4.min.js' ) }}"></script>
257
239
 
258
240
  <!-- <script type="text/javascript" language="javascript" src="https://cdn.datatables.net/1.13.2/js/jquery.dataTables.min.js"></script>
259
241
  <script type="text/javascript" language="javascript" src="https://cdn.datatables.net/1.13.2/js/dataTables.bootstrap4.min.js"></script>
@@ -508,13 +508,13 @@ msgid "Note"
508
508
  msgstr "📝 Note"
509
509
 
510
510
  msgid "Offline more than 1 day"
511
- msgstr "Offline more than 1 day"
511
+ msgstr "Offline More Than 1 Day"
512
512
 
513
513
  msgid "Offline more than 1 hour"
514
- msgstr "Offline more than 1 hour"
514
+ msgstr "Offline More Than 1 Hour"
515
515
 
516
516
  msgid "Offline more than 1 week"
517
- msgstr "Offline more than 1 week"
517
+ msgstr "Offline More Than 1 Week"
518
518
 
519
519
  msgid "Ok"
520
520
  msgstr "Ok"
@@ -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
 
@@ -1227,7 +1239,7 @@ msgstr "Customizing User Page"
1227
1239
  msgid "config.branding_freetext.description"
1228
1240
  msgstr ""
1229
1241
  "Branding Text. this box's text will be shown on support section of User's Page. you can use HTML tags\n"
1230
- "<p><br /><a href=\"https://onlinehtmleditor.dev\" target=\"_blank\">HTML Editor</a></p>"
1242
+ "<p><br /><a href=\"https://htmleditor.online/full\" target=\"_blank\">HTML Editor</a></p>"
1231
1243
 
1232
1244
  msgid "config.branding_freetext.label"
1233
1245
  msgstr "📢 Support Section Text"
@@ -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
 
@@ -1413,7 +1431,7 @@ msgid "config.httpupgrade_enable.description"
1413
1431
  msgstr ""
1414
1432
  "HTTPUpgrade complete a HTTP 1.1 Upgrade request and response before using the connection directly. It is similar to WebSocket in the way it create an direction channel that can be forwarded by many reverse proxies and CDNs, without the need to deal with all the issue around WebSocket Protocol itself.\n"
1415
1433
  "\n"
1416
- "⚠️ Not Available in Xray based Clients. Only HiddifyNext, Singbox, and V2fly clients are supported"
1434
+ "⚠️ Not Available in Xray based Clients. Only HiddifyNext, Singbox, and V2fly clients are supported. <p><a href=\"https://hiddify.com/manager/basic-concepts-and-troubleshooting/Basic-Concepts/#http-upgrade\" target=\"_blank\"><strong>(Read More)</strong></a></p>"
1417
1435
 
1418
1436
  msgid "config.httpupgrade_enable.label"
1419
1437
  msgstr "🆙 Enable HTTPUpgrade Method"
@@ -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
 
@@ -1213,7 +1225,7 @@ msgstr "شخصی‌ سازی صفحه کاربران"
1213
1225
  msgid "config.branding_freetext.description"
1214
1226
  msgstr ""
1215
1227
  "متنی که در این قسمت وارد می‌کنید، در باکس پشتیبانی در صفحه کاربران نمایش داده می‌شود. امکان استفاده از کدهای HTML هم وجود دارد\n"
1216
- "<p><br /><a href=\"https://onlinehtmleditor.dev\" target=\"_blank\">HTML Edit</a></p>"
1228
+ "<p><br /><a href=\"https://htmleditor.online/full\" target=\"_blank\">HTML Edit</a></p>"
1217
1229
 
1218
1230
  msgid "config.branding_freetext.label"
1219
1231
  msgstr "📢 متن باکس پشتیبانی"
@@ -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
 
@@ -1401,7 +1419,9 @@ msgstr ""
1401
1419
  " می تواند توسط بسیاری از پروکسی های معکوس و CDN ها ارسال شود، بدون اینکه "
1402
1420
  "نیازی به رسیدگی به تمام مسائل پیرامون خود پروتکل WebSocket باشد. ⚠️ در نرم "
1403
1421
  "افزارهای مبتنی بر XRay موجود نیست. فقط نرم افزارهای HiddifyNext، Singbox و "
1404
- "V۲fly پشتیبانی می شوند"
1422
+ "V۲fly پشتیبانی می شوند. <p><a href=\"https://hiddify.com/fa/manager/basic-"
1423
+ "concepts-and-troubleshooting/Basic-Concepts/#http-upgarde\" "
1424
+ "target=\"_blank\"><strong>(بیشتر بدانید)</strong></a></p>"
1405
1425
 
1406
1426
  msgid "config.httpupgrade_enable.label"
1407
1427
  msgstr "🆙 فعالسازی HTTPUpgrade"
@@ -1445,6 +1465,9 @@ msgstr "حداکثر سرعت آپلود هیستریا"
1445
1465
  msgid "config.hysteria_up_mbps.label"
1446
1466
  msgstr "⬆️ آپلود (mbps) Hysteria"
1447
1467
 
1468
+ msgid "config.invalid-pattern-for-warp-sites"
1469
+ msgstr ""
1470
+
1448
1471
  msgid "config.is_parent.description"
1449
1472
  msgstr "-"
1450
1473
 
@@ -1489,11 +1512,17 @@ msgstr "برای استفاده تجاری از این محصول باید مج
1489
1512
  msgid "config.license.label"
1490
1513
  msgstr "کد مجوز"
1491
1514
 
1515
+ msgid "config.log_level.description"
1516
+ msgstr ""
1517
+
1518
+ msgid "config.log_level.label"
1519
+ msgstr ""
1520
+
1492
1521
  msgid "config.mux.description"
1493
1522
  msgstr "تنظیمات MUX (Multiplex) را می توان در این بخش تنظیم کرد"
1494
1523
 
1495
1524
  msgid "config.mux.label"
1496
- msgstr "پیکربندی MUX"
1525
+ msgstr "تنظیمات MUX"
1497
1526
 
1498
1527
  msgid "config.mux_brutal_down_mbps.description"
1499
1528
  msgstr "حداکثر سرعت دانلود TCP-Brutal"
@@ -1587,6 +1616,24 @@ msgstr ""
1587
1616
  msgid "config.package_mode.label"
1588
1617
  msgstr "🔄 حالت به روز رسانی"
1589
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
+
1590
1637
  msgid "config.parent_panel.description"
1591
1638
  msgstr ""
1592
1639
  "می‌توانید به پنل مرکزی وصل شوید، تا فقط یک یوزر را تعریف کنید و میزان "
@@ -1677,12 +1724,24 @@ msgstr "مسیر مخفی پروکسی پروکسی ها را از دولت ها
1677
1724
  msgid "config.proxy_path_client.label"
1678
1725
  msgstr "مسیر پروکسی برای مشتریان"
1679
1726
 
1727
+ msgid "config.quic_enable.description"
1728
+ msgstr ""
1729
+
1730
+ msgid "config.quic_enable.label"
1731
+ msgstr ""
1732
+
1680
1733
  msgid "config.reality.description"
1681
1734
  msgstr "REALITY قابلیت اثر انگشت TLS سمت سرور را حذف می کند"
1682
1735
 
1683
1736
  msgid "config.reality.label"
1684
1737
  msgstr "ریالیتی"
1685
1738
 
1739
+ msgid "config.reality_enable.description"
1740
+ msgstr ""
1741
+
1742
+ msgid "config.reality_enable.label"
1743
+ msgstr ""
1744
+
1686
1745
  msgid "config.reality_fallback_domain.description"
1687
1746
  msgstr ""
1688
1747
  "هنگامی که GTW از وب‌ سایت‌ها در نام سرور بازدید می‌کند، به این دامنه هدایت "
@@ -1898,6 +1957,12 @@ msgstr ""
1898
1957
  msgid "config.ssr_fakedomain.label"
1899
1958
  msgstr "دامنه جعلی برای SSR"
1900
1959
 
1960
+ msgid "config.tcp_enable.description"
1961
+ msgstr ""
1962
+
1963
+ msgid "config.tcp_enable.label"
1964
+ msgstr ""
1965
+
1901
1966
  msgid "config.telegram.description"
1902
1967
  msgstr ""
1903
1968
  "پروکسی تلگرام برای استفاده درون اپ تلگرام طراحی شده تا فیلترینگ تلگرام را "
@@ -2018,6 +2083,12 @@ msgstr "در این قسمت تنظیمات Torrent Block قابل انجام ا
2018
2083
  msgid "config.torrent_block.label"
2019
2084
  msgstr "تنظیمات Torrent Block"
2020
2085
 
2086
+ msgid "config.trojan_enable.description"
2087
+ msgstr ""
2088
+
2089
+ msgid "config.trojan_enable.label"
2090
+ msgstr ""
2091
+
2021
2092
  msgid "config.tuic.description"
2022
2093
  msgstr ""
2023
2094
  "پروکسی Delicately-TUICed با کارایی بالا روی پروتکل QUIC است. \n"
@@ -2069,6 +2140,12 @@ msgstr ""
2069
2140
  msgid "config.validation-success-no-reset"
2070
2141
  msgstr " ✅ تنظیمات با موفقیت تغییر کرد"
2071
2142
 
2143
+ msgid "config.vless_enable.description"
2144
+ msgstr ""
2145
+
2146
+ msgid "config.vless_enable.label"
2147
+ msgstr ""
2148
+
2072
2149
  msgid "config.vmess_enable.description"
2073
2150
  msgstr "فعال کردن پروتکل VMess"
2074
2151
 
@@ -2182,6 +2259,12 @@ msgstr ""
2182
2259
  msgid "config.ws_enable.label"
2183
2260
  msgstr "🔰 Websocket را فعال کنید"
2184
2261
 
2262
+ msgid "config.xtls_enable.description"
2263
+ msgstr ""
2264
+
2265
+ msgid "config.xtls_enable.label"
2266
+ msgstr ""
2267
+
2185
2268
  msgid "config.invalid uuid"
2186
2269
  msgstr ""
2187
2270
  "رمز UUID نامعتبر است. به عنوان مثال: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6"
@@ -2290,7 +2373,7 @@ msgid "macOS"
2290
2373
  msgstr "مک"
2291
2374
 
2292
2375
  msgid "master.page-title"
2293
- msgstr "هیدیفای"
2376
+ msgstr "هیدیفای منیجر"
2294
2377
 
2295
2378
  msgid "monthly"
2296
2379
  msgstr "🗓️ ماهانه"
@@ -2301,6 +2384,9 @@ msgstr "بعدی"
2301
2384
  msgid "no_reset"
2302
2385
  msgstr "⭐️ بدون ریست شدن"
2303
2386
 
2387
+ msgid "node.diff-version"
2388
+ msgstr ""
2389
+
2304
2390
  msgid "node.mode.dscr"
2305
2391
  msgstr ""
2306
2392
 
@@ -2331,6 +2417,12 @@ msgstr "تعداد روز؟"
2331
2417
  msgid "package size?"
2332
2418
  msgstr "حجم بسته"
2333
2419
 
2420
+ msgid "parent.invalid-parent-url"
2421
+ msgstr ""
2422
+
2423
+ msgid "parent.sync-req-failed"
2424
+ msgstr ""
2425
+
2334
2426
  msgid "previous"
2335
2427
  msgstr "قبلی"
2336
2428