hiddifypanel 10.20.4__py3-none-any.whl → 10.30.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 (83) hide show
  1. hiddifypanel/VERSION +1 -1
  2. hiddifypanel/VERSION.py +2 -2
  3. hiddifypanel/base.py +17 -8
  4. hiddifypanel/cache.py +2 -51
  5. hiddifypanel/drivers/wireguard_api.py +24 -5
  6. hiddifypanel/hutils/convert.py +1 -1
  7. hiddifypanel/hutils/flask.py +28 -2
  8. hiddifypanel/hutils/importer/xui.py +6 -7
  9. hiddifypanel/hutils/network/__init__.py +1 -0
  10. hiddifypanel/hutils/network/cf_api.py +84 -0
  11. hiddifypanel/hutils/network/net.py +26 -49
  12. hiddifypanel/hutils/node/child.py +25 -7
  13. hiddifypanel/hutils/node/parent.py +7 -7
  14. hiddifypanel/hutils/node/shared.py +19 -6
  15. hiddifypanel/hutils/proxy/clash.py +1 -1
  16. hiddifypanel/hutils/proxy/shared.py +1 -1
  17. hiddifypanel/hutils/proxy/singbox.py +2 -3
  18. hiddifypanel/hutils/proxy/xray.py +12 -10
  19. hiddifypanel/hutils/proxy/xrayjson.py +26 -49
  20. hiddifypanel/hutils/utils.py +47 -3
  21. hiddifypanel/models/__init__.py +1 -1
  22. hiddifypanel/models/admin.py +9 -2
  23. hiddifypanel/models/base_account.py +3 -1
  24. hiddifypanel/models/config.py +5 -7
  25. hiddifypanel/models/config_enum.py +18 -6
  26. hiddifypanel/models/domain.py +82 -118
  27. hiddifypanel/models/user.py +44 -24
  28. hiddifypanel/panel/admin/Actions.py +6 -11
  29. hiddifypanel/panel/admin/AdminstratorAdmin.py +3 -9
  30. hiddifypanel/panel/admin/Backup.py +5 -8
  31. hiddifypanel/panel/admin/Dashboard.py +3 -4
  32. hiddifypanel/panel/admin/DomainAdmin.py +20 -15
  33. hiddifypanel/panel/admin/ProxyAdmin.py +3 -10
  34. hiddifypanel/panel/admin/QuickSetup.py +1 -1
  35. hiddifypanel/panel/admin/SettingAdmin.py +7 -5
  36. hiddifypanel/panel/admin/Terminal.py +0 -1
  37. hiddifypanel/panel/admin/UserAdmin.py +4 -3
  38. hiddifypanel/panel/cli.py +36 -23
  39. hiddifypanel/panel/commercial/ProxyDetailsAdmin.py +2 -4
  40. hiddifypanel/panel/commercial/restapi/v1/tgbot.py +7 -4
  41. hiddifypanel/panel/commercial/restapi/v2/admin/__init__.py +17 -13
  42. hiddifypanel/panel/commercial/restapi/v2/admin/admin_info_api.py +4 -3
  43. hiddifypanel/panel/commercial/restapi/v2/admin/admin_user_api.py +28 -10
  44. hiddifypanel/panel/commercial/restapi/v2/admin/admin_users_api.py +2 -19
  45. hiddifypanel/panel/commercial/restapi/v2/admin/schema.py +27 -4
  46. hiddifypanel/panel/commercial/restapi/v2/admin/user_api.py +28 -9
  47. hiddifypanel/panel/commercial/restapi/v2/admin/users_api.py +1 -21
  48. hiddifypanel/panel/commercial/restapi/v2/parent/register_api.py +1 -1
  49. hiddifypanel/panel/commercial/restapi/v2/parent/schema.py +8 -4
  50. hiddifypanel/panel/commercial/restapi/v2/parent/sync_api.py +19 -3
  51. hiddifypanel/panel/commercial/restapi/v2/user/configs_api.py +48 -42
  52. hiddifypanel/panel/commercial/telegrambot/Usage.py +1 -1
  53. hiddifypanel/panel/commercial/telegrambot/admin.py +1 -1
  54. hiddifypanel/panel/commercial/telegrambot/information.py +1 -1
  55. hiddifypanel/panel/common.py +5 -11
  56. hiddifypanel/panel/hiddify.py +9 -20
  57. hiddifypanel/panel/init_db.py +31 -13
  58. hiddifypanel/panel/usage.py +38 -9
  59. hiddifypanel/panel/user/user.py +52 -32
  60. hiddifypanel/templates/admin-layout.html +2 -2
  61. hiddifypanel/templates/fake.html +0 -298
  62. hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
  63. hiddifypanel/translations/en/LC_MESSAGES/messages.po +80 -25
  64. hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
  65. hiddifypanel/translations/fa/LC_MESSAGES/messages.po +74 -20
  66. hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
  67. hiddifypanel/translations/pt/LC_MESSAGES/messages.po +60 -6
  68. hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
  69. hiddifypanel/translations/ru/LC_MESSAGES/messages.po +158 -78
  70. hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
  71. hiddifypanel/translations/zh/LC_MESSAGES/messages.po +60 -6
  72. hiddifypanel/translations.i18n/en.json +62 -22
  73. hiddifypanel/translations.i18n/fa.json +57 -17
  74. hiddifypanel/translations.i18n/pt.json +43 -3
  75. hiddifypanel/translations.i18n/ru.json +112 -72
  76. hiddifypanel/translations.i18n/zh.json +43 -3
  77. {hiddifypanel-10.20.4.dist-info → hiddifypanel-10.30.0.dev0.dist-info}/METADATA +2 -1
  78. {hiddifypanel-10.20.4.dist-info → hiddifypanel-10.30.0.dev0.dist-info}/RECORD +82 -82
  79. {hiddifypanel-10.20.4.dist-info → hiddifypanel-10.30.0.dev0.dist-info}/WHEEL +1 -1
  80. hiddifypanel/panel/cf_api.py +0 -37
  81. {hiddifypanel-10.20.4.dist-info → hiddifypanel-10.30.0.dev0.dist-info}/LICENSE.md +0 -0
  82. {hiddifypanel-10.20.4.dist-info → hiddifypanel-10.30.0.dev0.dist-info}/entry_points.txt +0 -0
  83. {hiddifypanel-10.20.4.dist-info → hiddifypanel-10.30.0.dev0.dist-info}/top_level.txt +0 -0
@@ -1,298 +0,0 @@
1
- {{_("config.dbvalues.label")}}
2
- {{_("config.dbvalues.description")}}
3
- {{_("config.create_easysetup_link.label")}}
4
- {{_("config.create_easysetup_link.description")}}
5
- {{_("config.wireguard_enable.label")}}
6
- {{_("config.wireguard_enable.description")}}
7
- {{_("config.wireguard_port.label")}}
8
- {{_("config.wireguard_port.description")}}
9
- {{_("config.wireguard_ipv6.label")}}
10
- {{_("config.wireguard_ipv6.description")}}
11
- {{_("config.wireguard_ipv4.label")}}
12
- {{_("config.wireguard_ipv4.description")}}
13
- {{_("config.wireguard_private_key.label")}}
14
- {{_("config.wireguard_private_key.description")}}
15
- {{_("config.wireguard_public_key.label")}}
16
- {{_("config.wireguard_public_key.description")}}
17
- {{_("config.wireguard_noise_trick.label")}}
18
- {{_("config.wireguard_noise_trick.description")}}
19
- {{_("config.ssh_server_redis_url.label")}}
20
- {{_("config.ssh_server_redis_url.description")}}
21
- {{_("config.ssh_server_port.label")}}
22
- {{_("config.ssh_server_port.description")}}
23
- {{_("config.ssh_server_enable.label")}}
24
- {{_("config.ssh_server_enable.description")}}
25
- {{_("config.first_setup.label")}}
26
- {{_("config.first_setup.description")}}
27
- {{_("config.core_type.label")}}
28
- {{_("config.core_type.description")}}
29
- {{_("config.warp_enable.label")}}
30
- {{_("config.warp_enable.description")}}
31
- {{_("config.warp_mode.label")}}
32
- {{_("config.warp_mode.description")}}
33
- {{_("config.warp_plus_code.label")}}
34
- {{_("config.warp_plus_code.description")}}
35
- {{_("config.warp_sites.label")}}
36
- {{_("config.warp_sites.description")}}
37
- {{_("config.dns_server.label")}}
38
- {{_("config.dns_server.description")}}
39
- {{_("config.reality_fallback_domain.label")}}
40
- {{_("config.reality_fallback_domain.description")}}
41
- {{_("config.reality_server_names.label")}}
42
- {{_("config.reality_server_names.description")}}
43
- {{_("config.reality_short_ids.label")}}
44
- {{_("config.reality_short_ids.description")}}
45
- {{_("config.reality_private_key.label")}}
46
- {{_("config.reality_private_key.description")}}
47
- {{_("config.reality_public_key.label")}}
48
- {{_("config.reality_public_key.description")}}
49
- {{_("config.reality_port.label")}}
50
- {{_("config.reality_port.description")}}
51
- {{_("config.restls1_2_domain.label")}}
52
- {{_("config.restls1_2_domain.description")}}
53
- {{_("config.restls1_3_domain.label")}}
54
- {{_("config.restls1_3_domain.description")}}
55
- {{_("config.show_usage_in_sublink.label")}}
56
- {{_("config.show_usage_in_sublink.description")}}
57
- {{_("config.cloudflare.label")}}
58
- {{_("config.cloudflare.description")}}
59
- {{_("config.license.label")}}
60
- {{_("config.license.description")}}
61
- {{_("config.country.label")}}
62
- {{_("config.country.description")}}
63
- {{_("config.package_mode.label")}}
64
- {{_("config.package_mode.description")}}
65
- {{_("config.utls.label")}}
66
- {{_("config.utls.description")}}
67
- {{_("config.telegram_bot_token.label")}}
68
- {{_("config.telegram_bot_token.description")}}
69
- {{_("config.is_parent.label")}}
70
- {{_("config.is_parent.description")}}
71
- {{_("config.parent_panel.label")}}
72
- {{_("config.parent_panel.description")}}
73
- {{_("config.parent_domain.label")}}
74
- {{_("config.parent_domain.description")}}
75
- {{_("config.parent_admin_proxy_path.label")}}
76
- {{_("config.parent_admin_proxy_path.description")}}
77
- {{_("config.panel_mode.label")}}
78
- {{_("config.panel_mode.description")}}
79
- {{_("config.log_level.label")}}
80
- {{_("config.log_level.description")}}
81
- {{_("config.unique_id.label")}}
82
- {{_("config.unique_id.description")}}
83
- {{_("config.last_hash.label")}}
84
- {{_("config.last_hash.description")}}
85
- {{_("config.cdn_forced_host.label")}}
86
- {{_("config.cdn_forced_host.description")}}
87
- {{_("config.lang.label")}}
88
- {{_("config.lang.description")}}
89
- {{_("config.admin_lang.label")}}
90
- {{_("config.admin_lang.description")}}
91
- {{_("config.admin_secret.label")}}
92
- {{_("config.admin_secret.description")}}
93
- {{_("config.tls_ports.label")}}
94
- {{_("config.tls_ports.description")}}
95
- {{_("config.tls_fragment_enable.label")}}
96
- {{_("config.tls_fragment_enable.description")}}
97
- {{_("config.tls_fragment_size.label")}}
98
- {{_("config.tls_fragment_size.description")}}
99
- {{_("config.tls_fragment_sleep.label")}}
100
- {{_("config.tls_fragment_sleep.description")}}
101
- {{_("config.tls_mixed_case.label")}}
102
- {{_("config.tls_mixed_case.description")}}
103
- {{_("config.tls_padding_enable.label")}}
104
- {{_("config.tls_padding_enable.description")}}
105
- {{_("config.tls_padding_length.label")}}
106
- {{_("config.tls_padding_length.description")}}
107
- {{_("config.mux_enable.label")}}
108
- {{_("config.mux_enable.description")}}
109
- {{_("config.mux_protocol.label")}}
110
- {{_("config.mux_protocol.description")}}
111
- {{_("config.mux_max_connections.label")}}
112
- {{_("config.mux_max_connections.description")}}
113
- {{_("config.mux_min_streams.label")}}
114
- {{_("config.mux_min_streams.description")}}
115
- {{_("config.mux_max_streams.label")}}
116
- {{_("config.mux_max_streams.description")}}
117
- {{_("config.mux_padding_enable.label")}}
118
- {{_("config.mux_padding_enable.description")}}
119
- {{_("config.mux_brutal_enable.label")}}
120
- {{_("config.mux_brutal_enable.description")}}
121
- {{_("config.mux_brutal_up_mbps.label")}}
122
- {{_("config.mux_brutal_up_mbps.description")}}
123
- {{_("config.mux_brutal_down_mbps.label")}}
124
- {{_("config.mux_brutal_down_mbps.description")}}
125
- {{_("config.http_ports.label")}}
126
- {{_("config.http_ports.description")}}
127
- {{_("config.kcp_ports.label")}}
128
- {{_("config.kcp_ports.description")}}
129
- {{_("config.kcp_enable.label")}}
130
- {{_("config.kcp_enable.description")}}
131
- {{_("config.decoy_domain.label")}}
132
- {{_("config.decoy_domain.description")}}
133
- {{_("config.proxy_path.label")}}
134
- {{_("config.proxy_path.description")}}
135
- {{_("config.proxy_path_admin.label")}}
136
- {{_("config.proxy_path_admin.description")}}
137
- {{_("config.proxy_path_client.label")}}
138
- {{_("config.proxy_path_client.description")}}
139
- {{_("config.firewall.label")}}
140
- {{_("config.firewall.description")}}
141
- {{_("config.netdata.label")}}
142
- {{_("config.netdata.description")}}
143
- {{_("config.http_proxy_enable.label")}}
144
- {{_("config.http_proxy_enable.description")}}
145
- {{_("config.block_iran_sites.label")}}
146
- {{_("config.block_iran_sites.description")}}
147
- {{_("config.allow_invalid_sni.label")}}
148
- {{_("config.allow_invalid_sni.description")}}
149
- {{_("config.auto_update.label")}}
150
- {{_("config.auto_update.description")}}
151
- {{_("config.speed_test.label")}}
152
- {{_("config.speed_test.description")}}
153
- {{_("config.only_ipv4.label")}}
154
- {{_("config.only_ipv4.description")}}
155
- {{_("config.shared_secret.label")}}
156
- {{_("config.shared_secret.description")}}
157
- {{_("config.telegram_enable.label")}}
158
- {{_("config.telegram_enable.description")}}
159
- {{_("config.telegram_adtag.label")}}
160
- {{_("config.telegram_adtag.description")}}
161
- {{_("config.telegram_lib.label")}}
162
- {{_("config.telegram_lib.description")}}
163
- {{_("config.telegram_fakedomain.label")}}
164
- {{_("config.telegram_fakedomain.description")}}
165
- {{_("config.v2ray_enable.label")}}
166
- {{_("config.v2ray_enable.description")}}
167
- {{_("config.torrent_block.label")}}
168
- {{_("config.torrent_block.description")}}
169
- {{_("config.tuic_enable.label")}}
170
- {{_("config.tuic_enable.description")}}
171
- {{_("config.tuic_port.label")}}
172
- {{_("config.tuic_port.description")}}
173
- {{_("config.hysteria_enable.label")}}
174
- {{_("config.hysteria_enable.description")}}
175
- {{_("config.hysteria_port.label")}}
176
- {{_("config.hysteria_port.description")}}
177
- {{_("config.hysteria_obfs_enable.label")}}
178
- {{_("config.hysteria_obfs_enable.description")}}
179
- {{_("config.hysteria_up_mbps.label")}}
180
- {{_("config.hysteria_up_mbps.description")}}
181
- {{_("config.hysteria_down_mbps.label")}}
182
- {{_("config.hysteria_down_mbps.description")}}
183
- {{_("config.shadowsocks2022_enable.label")}}
184
- {{_("config.shadowsocks2022_enable.description")}}
185
- {{_("config.shadowsocks2022_method.label")}}
186
- {{_("config.shadowsocks2022_method.description")}}
187
- {{_("config.shadowsocks2022_port.label")}}
188
- {{_("config.shadowsocks2022_port.description")}}
189
- {{_("config.ssfaketls_enable.label")}}
190
- {{_("config.ssfaketls_enable.description")}}
191
- {{_("config.ssfaketls_fakedomain.label")}}
192
- {{_("config.ssfaketls_fakedomain.description")}}
193
- {{_("config.shadowtls_enable.label")}}
194
- {{_("config.shadowtls_enable.description")}}
195
- {{_("config.shadowtls_fakedomain.label")}}
196
- {{_("config.shadowtls_fakedomain.description")}}
197
- {{_("config.ssr_enable.label")}}
198
- {{_("config.ssr_enable.description")}}
199
- {{_("config.ssr_fakedomain.label")}}
200
- {{_("config.ssr_fakedomain.description")}}
201
- {{_("config.vmess_enable.label")}}
202
- {{_("config.vmess_enable.description")}}
203
- {{_("config.domain_fronting_domain.label")}}
204
- {{_("config.domain_fronting_domain.description")}}
205
- {{_("config.domain_fronting_http_enable.label")}}
206
- {{_("config.domain_fronting_http_enable.description")}}
207
- {{_("config.domain_fronting_tls_enable.label")}}
208
- {{_("config.domain_fronting_tls_enable.description")}}
209
- {{_("config.ws_enable.label")}}
210
- {{_("config.ws_enable.description")}}
211
- {{_("config.grpc_enable.label")}}
212
- {{_("config.grpc_enable.description")}}
213
- {{_("config.httpupgrade_enable.label")}}
214
- {{_("config.httpupgrade_enable.description")}}
215
- {{_("config.vless_enable.label")}}
216
- {{_("config.vless_enable.description")}}
217
- {{_("config.trojan_enable.label")}}
218
- {{_("config.trojan_enable.description")}}
219
- {{_("config.reality_enable.label")}}
220
- {{_("config.reality_enable.description")}}
221
- {{_("config.tcp_enable.label")}}
222
- {{_("config.tcp_enable.description")}}
223
- {{_("config.quic_enable.label")}}
224
- {{_("config.quic_enable.description")}}
225
- {{_("config.xtls_enable.label")}}
226
- {{_("config.xtls_enable.description")}}
227
- {{_("config.h2_enable.label")}}
228
- {{_("config.h2_enable.description")}}
229
- {{_("config.db_version.label")}}
230
- {{_("config.db_version.description")}}
231
- {{_("config.branding_title.label")}}
232
- {{_("config.branding_title.description")}}
233
- {{_("config.branding_site.label")}}
234
- {{_("config.branding_site.description")}}
235
- {{_("config.branding_freetext.label")}}
236
- {{_("config.branding_freetext.description")}}
237
- {{_("config.not_found.label")}}
238
- {{_("config.not_found.description")}}
239
- {{_("config.path_vmess.label")}}
240
- {{_("config.path_vmess.description")}}
241
- {{_("config.path_vless.label")}}
242
- {{_("config.path_vless.description")}}
243
- {{_("config.path_trojan.label")}}
244
- {{_("config.path_trojan.description")}}
245
- {{_("config.path_v2ray.label")}}
246
- {{_("config.path_v2ray.description")}}
247
- {{_("config.path_ss.label")}}
248
- {{_("config.path_ss.description")}}
249
- {{_("config.path_httpupgrade.label")}}
250
- {{_("config.path_httpupgrade.description")}}
251
- {{_("config.path_ws.label")}}
252
- {{_("config.path_ws.description")}}
253
- {{_("config.path_tcp.label")}}
254
- {{_("config.path_tcp.description")}}
255
- {{_("config.path_grpc.label")}}
256
- {{_("config.path_grpc.description")}}
257
-
258
- {{_("config.admin.label")}}{{_("config.admin.description")}}
259
- {{_("config.branding.label")}}{{_("config.branding.description")}}
260
- {{_("config.general.label")}}{{_("config.general.description")}}
261
- {{_("config.proxies.label")}}{{_("config.proxies.description")}}
262
- {{_("config.domain_fronting.label")}}{{_("config.domain_fronting.description")}}
263
- {{_("config.telegram.label")}}{{_("config.telegram.description")}}
264
- {{_("config.http.label")}}{{_("config.http.description")}}
265
- {{_("config.tls.label")}}{{_("config.tls.description")}}
266
- {{_("config.mux.label")}}{{_("config.mux.description")}}
267
- {{_("config.tls_trick.label")}}{{_("config.tls_trick.description")}}
268
- {{_("config.ssh.label")}}{{_("config.ssh.description")}}
269
- {{_("config.ssfaketls.label")}}{{_("config.ssfaketls.description")}}
270
- {{_("config.shadowtls.label")}}{{_("config.shadowtls.description")}}
271
- {{_("config.restls.label")}}{{_("config.restls.description")}}
272
- {{_("config.tuic.label")}}{{_("config.tuic.description")}}
273
- {{_("config.hysteria.label")}}{{_("config.hysteria.description")}}
274
- {{_("config.ssr.label")}}{{_("config.ssr.description")}}
275
- {{_("config.kcp.label")}}{{_("config.kcp.description")}}
276
- {{_("config.hidden.label")}}{{_("config.hidden.description")}}
277
- {{_("config.advanced.label")}}{{_("config.advanced.description")}}
278
- {{_("config.too_advanced.label")}}{{_("config.too_advanced.description")}}
279
- {{_("config.warp.label")}}{{_("config.warp.description")}}
280
- {{_("config.reality.label")}}{{_("config.reality.description")}}
281
- {{_("config.wireguard.label")}}{{_("config.wireguard.description")}}
282
- {{_("config.shadowsocks.label")}}{{_("config.shadowsocks.description")}}
283
-
284
- {{_("direct")}}
285
- {{_("sub_link_only")}}
286
- {{_("cdn")}}
287
- {{_("auto_cdn_ip")}}
288
- {{_("relay")}}
289
- {{_("reality")}}
290
- {{_("old_xtls_direct")}}
291
- {{_("worker")}}
292
- {{_("fake")}}
293
-
294
- {{_("no_reset")}}
295
- {{_("monthly")}}
296
- {{_("weekly")}}
297
- {{_("daily")}}
298
-
@@ -92,9 +92,6 @@ msgstr "CPU %(cores)s Core"
92
92
  msgid "Can add sub admin"
93
93
  msgstr "👥 Can Add Sub Admin"
94
94
 
95
- msgid "Can not connect to Cloudflare."
96
- msgstr "Can not connect to Cloudflare."
97
-
98
95
  msgid "Check again"
99
96
  msgstr "Check Again"
100
97
 
@@ -368,7 +365,7 @@ msgid ""
368
365
  msgstr ""
369
366
  "Hooray 🎉 🎉 🎉 \n"
370
367
  "Welcome to Hiddify bot\n"
371
- "Start by clicking the link on the Panel or entering your UUID."
368
+ "Start by clicking the link on the Panel or entering your UUID user."
372
369
 
373
370
  msgid "Hover the user to see the reason"
374
371
  msgstr "Hover the user to see the reason"
@@ -901,7 +898,7 @@ msgid ""
901
898
  msgstr ""
902
899
  "🔄 Hiddify Manager automatically takes a Backup every 6 Hours. The path of the Backup files on the server: ⬇️\n"
903
900
  "<br>\n"
904
- "/opt/hiddify-manager/hiddify-panel/backup/\n"
901
+ "💿 /opt/hiddify-manager/hiddify-panel/backup/\n"
905
902
  "<br>\n"
906
903
  "<br>\n"
907
904
  "<br>\n"
@@ -1139,6 +1136,9 @@ msgstr "☑️ Automatic CDN IP Selector"
1139
1136
  msgid "cdn"
1140
1137
  msgstr "🔀 CDN (Cloudflare Proxy, ...)"
1141
1138
 
1139
+ msgid "cf-delete.failed"
1140
+ msgstr "cf-delete.failed"
1141
+
1142
1142
  msgid "child has been removed!"
1143
1143
  msgstr "Child Has Been Removed!"
1144
1144
 
@@ -1151,15 +1151,15 @@ msgstr "child.register-success"
1151
1151
  msgid "child.sync-failed"
1152
1152
  msgstr "child.sync-failed"
1153
1153
 
1154
- msgid "child.sync-success"
1155
- msgstr "child.sync-success"
1156
-
1157
1154
  msgid "clickable copy"
1158
1155
  msgstr "Link for Social Media"
1159
1156
 
1160
1157
  msgid "close"
1161
1158
  msgstr "Close"
1162
1159
 
1160
+ msgid "cloudflare.error"
1161
+ msgstr "cloudflare.error"
1162
+
1163
1163
  msgid "config.Domain already used"
1164
1164
  msgstr "Domain is exist in domains section. Use another Domain"
1165
1165
 
@@ -1400,7 +1400,7 @@ msgid "config.h2_enable.description"
1400
1400
  msgstr "Enable HTTP/2 Protocol"
1401
1401
 
1402
1402
  msgid "config.h2_enable.label"
1403
- msgstr "Enable h2"
1403
+ msgstr "🔵 Enable h2"
1404
1404
 
1405
1405
  msgid "config.hidden.description"
1406
1406
  msgstr "config.hidden.description"
@@ -1408,6 +1408,12 @@ msgstr "config.hidden.description"
1408
1408
  msgid "config.hidden.label"
1409
1409
  msgstr "config.hidden.label"
1410
1410
 
1411
+ msgid "config.hiddifycli_enable.description"
1412
+ msgstr "config.hiddifycli_enable.description"
1413
+
1414
+ msgid "config.hiddifycli_enable.label"
1415
+ msgstr "config.hiddifycli_enable.label"
1416
+
1411
1417
  msgid "config.http.description"
1412
1418
  msgstr "HTTP Configurations could be set in this section"
1413
1419
 
@@ -1457,7 +1463,7 @@ msgid "config.hysteria_enable.description"
1457
1463
  msgstr "To Enable UDP based Hysteria Protocol"
1458
1464
 
1459
1465
  msgid "config.hysteria_enable.label"
1460
- msgstr "Enable Hysteria2"
1466
+ msgstr "⚫️ Enable Hysteria2"
1461
1467
 
1462
1468
  msgid "config.hysteria_obfs_enable.description"
1463
1469
  msgstr " Enables Hysteria Obfuscation (Salamander)"
@@ -1478,7 +1484,8 @@ msgid "config.hysteria_up_mbps.label"
1478
1484
  msgstr "⬆️ Hysteria Upload (mbps)"
1479
1485
 
1480
1486
  msgid "config.invalid-pattern-for-warp-sites"
1481
- msgstr "config.invalid-pattern-for-warp-sites"
1487
+ msgstr ""
1488
+ "⚠️ The Site entered for the Warp does not match the specified template"
1482
1489
 
1483
1490
  msgid "config.is_parent.description"
1484
1491
  msgstr "config.is_parent.description"
@@ -1517,6 +1524,12 @@ msgstr "config.last_hash.description"
1517
1524
  msgid "config.last_hash.label"
1518
1525
  msgstr "config.last_hash.label"
1519
1526
 
1527
+ msgid "config.last_priodic_usage_check.description"
1528
+ msgstr "config.last_priodic_usage_check.description"
1529
+
1530
+ msgid "config.last_priodic_usage_check.label"
1531
+ msgstr "config.last_priodic_usage_check.label"
1532
+
1520
1533
  msgid "config.license.description"
1521
1534
  msgstr "For commercial use of this Product, you must Purchase its License"
1522
1535
 
@@ -1736,7 +1749,7 @@ msgid "config.quic_enable.description"
1736
1749
  msgstr "Enable QUIC Protocol"
1737
1750
 
1738
1751
  msgid "config.quic_enable.label"
1739
- msgstr "Enable QUIC"
1752
+ msgstr "🟡 Enable QUIC"
1740
1753
 
1741
1754
  msgid "config.reality.description"
1742
1755
  msgstr "REALITY eliminate the Server-Side TLS Fingerprint Feature"
@@ -1748,7 +1761,7 @@ msgid "config.reality_enable.description"
1748
1761
  msgstr "Enable Reality Protocol"
1749
1762
 
1750
1763
  msgid "config.reality_enable.label"
1751
- msgstr "Enable Reality"
1764
+ msgstr "🔴 Enable Reality"
1752
1765
 
1753
1766
  msgid "config.reality_fallback_domain.description"
1754
1767
  msgstr ""
@@ -1962,11 +1975,53 @@ msgstr ""
1962
1975
  msgid "config.ssr_fakedomain.label"
1963
1976
  msgstr "SSR FakeDomain"
1964
1977
 
1978
+ msgid "config.sub_full_clash_enable.description"
1979
+ msgstr "config.sub_full_clash_enable.description"
1980
+
1981
+ msgid "config.sub_full_clash_enable.label"
1982
+ msgstr "config.sub_full_clash_enable.label"
1983
+
1984
+ msgid "config.sub_full_clash_meta_enable.description"
1985
+ msgstr "config.sub_full_clash_meta_enable.description"
1986
+
1987
+ msgid "config.sub_full_clash_meta_enable.label"
1988
+ msgstr "config.sub_full_clash_meta_enable.label"
1989
+
1990
+ msgid "config.sub_full_links_b64_enable.description"
1991
+ msgstr "config.sub_full_links_b64_enable.description"
1992
+
1993
+ msgid "config.sub_full_links_b64_enable.label"
1994
+ msgstr "config.sub_full_links_b64_enable.label"
1995
+
1996
+ msgid "config.sub_full_links_enable.description"
1997
+ msgstr "config.sub_full_links_enable.description"
1998
+
1999
+ msgid "config.sub_full_links_enable.label"
2000
+ msgstr "config.sub_full_links_enable.label"
2001
+
2002
+ msgid "config.sub_full_singbox_enable.description"
2003
+ msgstr "config.sub_full_singbox_enable.description"
2004
+
2005
+ msgid "config.sub_full_singbox_enable.label"
2006
+ msgstr "config.sub_full_singbox_enable.label"
2007
+
2008
+ msgid "config.sub_full_xray_json_enable.description"
2009
+ msgstr "config.sub_full_xray_json_enable.description"
2010
+
2011
+ msgid "config.sub_full_xray_json_enable.label"
2012
+ msgstr "config.sub_full_xray_json_enable.label"
2013
+
2014
+ msgid "config.sub_singbox_ssh_enable.description"
2015
+ msgstr "config.sub_singbox_ssh_enable.description"
2016
+
2017
+ msgid "config.sub_singbox_ssh_enable.label"
2018
+ msgstr "config.sub_singbox_ssh_enable.label"
2019
+
1965
2020
  msgid "config.tcp_enable.description"
1966
2021
  msgstr "Enable TCP Protocol"
1967
2022
 
1968
2023
  msgid "config.tcp_enable.label"
1969
- msgstr "Enable TCP"
2024
+ msgstr "🟠 Enable TCP"
1970
2025
 
1971
2026
  msgid "config.telegram.description"
1972
2027
  msgstr "A proxy designed for Telegram to bypass Telegram filtering"
@@ -2099,7 +2154,7 @@ msgid "config.trojan_enable.description"
2099
2154
  msgstr "Enable Trojan Protocol"
2100
2155
 
2101
2156
  msgid "config.trojan_enable.label"
2102
- msgstr "Enable Trojan"
2157
+ msgstr "🟤 Enable Trojan"
2103
2158
 
2104
2159
  msgid "config.tuic.description"
2105
2160
  msgstr ""
@@ -2114,10 +2169,10 @@ msgid "config.tuic_enable.description"
2114
2169
  msgstr "It is a UDP based protocol similar to QUIC"
2115
2170
 
2116
2171
  msgid "config.tuic_enable.label"
2117
- msgstr "Enable TUIC"
2172
+ msgstr "⚫️ Enable TUIC"
2118
2173
 
2119
2174
  msgid "config.tuic_port.description"
2120
- msgstr "Use comma to separate ports like 63000,60000"
2175
+ msgstr "Use comma to separate ports like ( 63000,60000 )"
2121
2176
 
2122
2177
  msgid "config.tuic_port.label"
2123
2178
  msgstr "TUIC Ports"
@@ -2157,13 +2212,13 @@ msgid "config.vless_enable.description"
2157
2212
  msgstr "Enable VLess Protocol"
2158
2213
 
2159
2214
  msgid "config.vless_enable.label"
2160
- msgstr "Enable VLess"
2215
+ msgstr "⚫️ Enable VLess"
2161
2216
 
2162
2217
  msgid "config.vmess_enable.description"
2163
2218
  msgstr "Active VMess Protocol"
2164
2219
 
2165
2220
  msgid "config.vmess_enable.label"
2166
- msgstr "♈️ Enable VMess"
2221
+ msgstr "🟣 Enable VMess"
2167
2222
 
2168
2223
  msgid "config.warp-https-domain-for-warp-site"
2169
2224
  msgstr "config.warp-https-domain-for-warp-site"
@@ -2278,7 +2333,7 @@ msgid "config.xtls_enable.description"
2278
2333
  msgstr "Enable XTLS Protocol"
2279
2334
 
2280
2335
  msgid "config.xtls_enable.label"
2281
- msgstr "Enable XTLS"
2336
+ msgstr "🟢 Enable XTLS"
2282
2337
 
2283
2338
  msgid "config.invalid uuid"
2284
2339
  msgstr ""
@@ -2352,19 +2407,19 @@ msgid "items"
2352
2407
  msgstr "items"
2353
2408
 
2354
2409
  msgid "lang.en"
2355
- msgstr "🇺🇸 English انگلیسی 英语"
2410
+ msgstr "🇺🇸 English - Английский"
2356
2411
 
2357
2412
  msgid "lang.fa"
2358
- msgstr "🇮🇷 Persian فارسی 波斯语"
2413
+ msgstr "🇮🇷 Persian - فارسی"
2359
2414
 
2360
2415
  msgid "lang.pt"
2361
- msgstr "🇵🇹 Portuguese پرتغالی 葡萄牙語"
2416
+ msgstr "🇵🇹 Portuguese - پرتغالی"
2362
2417
 
2363
2418
  msgid "lang.ru"
2364
- msgstr "🇷🇺 Russian روسی Русский"
2419
+ msgstr "🇷🇺 Russian - Русский"
2365
2420
 
2366
2421
  msgid "lang.zh"
2367
- msgstr "🇨🇳 Chinese چینی 简体中文"
2422
+ msgstr "🇨🇳 Chinese - 简体中文"
2368
2423
 
2369
2424
  msgid "lib.telegram.erlang"
2370
2425
  msgstr "✴️ Erlang : Good Performance"