hiddifypanel 10.70.9__py3-none-any.whl → 10.80.0.dev1__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.
- hiddifypanel/VERSION +1 -1
- hiddifypanel/VERSION.py +5 -2
- hiddifypanel/__init__.py +5 -1
- hiddifypanel/auth.py +8 -3
- hiddifypanel/base.py +26 -23
- hiddifypanel/cache.py +2 -1
- hiddifypanel/drivers/ssh_liberty_bridge_api.py +2 -1
- hiddifypanel/drivers/wireguard_api.py +1 -1
- hiddifypanel/hutils/crypto.py +27 -0
- hiddifypanel/hutils/flask.py +5 -3
- hiddifypanel/hutils/network/cf_api.py +5 -5
- hiddifypanel/hutils/proxy/clash.py +1 -1
- hiddifypanel/hutils/proxy/shared.py +8 -12
- hiddifypanel/hutils/proxy/singbox.py +3 -1
- hiddifypanel/hutils/proxy/xray.py +1 -1
- hiddifypanel/models/admin.py +1 -1
- hiddifypanel/models/base_account.py +3 -0
- hiddifypanel/models/config.py +1 -1
- hiddifypanel/models/config_enum.py +13 -0
- hiddifypanel/models/user.py +2 -2
- hiddifypanel/panel/admin/AdminstratorAdmin.py +9 -2
- hiddifypanel/panel/admin/ProxyAdmin.py +4 -0
- hiddifypanel/panel/admin/QuickSetup.py +40 -9
- hiddifypanel/panel/admin/SettingAdmin.py +6 -0
- hiddifypanel/panel/admin/UserAdmin.py +10 -8
- hiddifypanel/panel/admin/adminlte.py +1 -1
- hiddifypanel/panel/cli.py +3 -1
- hiddifypanel/panel/commercial/restapi/v2/user/apps_api.py +76 -6
- hiddifypanel/panel/common.py +6 -3
- hiddifypanel/panel/common_bp/login.py +14 -8
- hiddifypanel/panel/init_db.py +139 -62
- hiddifypanel/panel/user/templates/base_singbox_config.json.j2 +16 -0
- hiddifypanel/panel/user/templates/home/home.html +1 -2
- hiddifypanel/panel/user/templates/home/multi.html +1 -2
- hiddifypanel/panel/user/user.py +1 -1
- hiddifypanel/static/apps-icon/singbox.ico +0 -0
- hiddifypanel/templates/fake.html +320 -0
- hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/en/LC_MESSAGES/messages.po +50 -24
- hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/fa/LC_MESSAGES/messages.po +47 -25
- hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/pt/LC_MESSAGES/messages.po +41 -18
- hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/ru/LC_MESSAGES/messages.po +56 -29
- hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/zh/LC_MESSAGES/messages.po +34 -14
- hiddifypanel/translations.i18n/en.json +27 -11
- hiddifypanel/translations.i18n/fa.json +26 -10
- hiddifypanel/translations.i18n/fr.json +26 -8
- hiddifypanel/translations.i18n/my.json +1266 -0
- hiddifypanel/translations.i18n/pt.json +21 -5
- hiddifypanel/translations.i18n/ru.json +29 -13
- hiddifypanel/translations.i18n/zh.json +20 -4
- hiddifypanel-10.80.0.dev1.dist-info/METADATA +130 -0
- {hiddifypanel-10.70.9.dist-info → hiddifypanel-10.80.0.dev1.dist-info}/RECORD +111 -110
- {hiddifypanel-10.70.9.dist-info → hiddifypanel-10.80.0.dev1.dist-info}/WHEEL +1 -2
- hiddifypanel-10.80.0.dev1.dist-info/entry_points.txt +3 -0
- hiddifypanel-10.70.9.dist-info/METADATA +0 -144
- hiddifypanel-10.70.9.dist-info/entry_points.txt +0 -2
- hiddifypanel-10.70.9.dist-info/top_level.txt +0 -1
- {hiddifypanel-10.70.9.dist-info → hiddifypanel-10.80.0.dev1.dist-info}/LICENSE.md +0 -0
hiddifypanel/templates/fake.html
CHANGED
@@ -0,0 +1,320 @@
|
|
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.splithttp_enable.label")}}
|
216
|
+
{{_("config.splithttp_enable.description")}}
|
217
|
+
{{_("config.vless_enable.label")}}
|
218
|
+
{{_("config.vless_enable.description")}}
|
219
|
+
{{_("config.trojan_enable.label")}}
|
220
|
+
{{_("config.trojan_enable.description")}}
|
221
|
+
{{_("config.reality_enable.label")}}
|
222
|
+
{{_("config.reality_enable.description")}}
|
223
|
+
{{_("config.tcp_enable.label")}}
|
224
|
+
{{_("config.tcp_enable.description")}}
|
225
|
+
{{_("config.quic_enable.label")}}
|
226
|
+
{{_("config.quic_enable.description")}}
|
227
|
+
{{_("config.xtls_enable.label")}}
|
228
|
+
{{_("config.xtls_enable.description")}}
|
229
|
+
{{_("config.h2_enable.label")}}
|
230
|
+
{{_("config.h2_enable.description")}}
|
231
|
+
{{_("config.db_version.label")}}
|
232
|
+
{{_("config.db_version.description")}}
|
233
|
+
{{_("config.last_priodic_usage_check.label")}}
|
234
|
+
{{_("config.last_priodic_usage_check.description")}}
|
235
|
+
{{_("config.branding_title.label")}}
|
236
|
+
{{_("config.branding_title.description")}}
|
237
|
+
{{_("config.branding_site.label")}}
|
238
|
+
{{_("config.branding_site.description")}}
|
239
|
+
{{_("config.branding_freetext.label")}}
|
240
|
+
{{_("config.branding_freetext.description")}}
|
241
|
+
{{_("config.not_found.label")}}
|
242
|
+
{{_("config.not_found.description")}}
|
243
|
+
{{_("config.path_vmess.label")}}
|
244
|
+
{{_("config.path_vmess.description")}}
|
245
|
+
{{_("config.path_vless.label")}}
|
246
|
+
{{_("config.path_vless.description")}}
|
247
|
+
{{_("config.path_trojan.label")}}
|
248
|
+
{{_("config.path_trojan.description")}}
|
249
|
+
{{_("config.path_v2ray.label")}}
|
250
|
+
{{_("config.path_v2ray.description")}}
|
251
|
+
{{_("config.path_ss.label")}}
|
252
|
+
{{_("config.path_ss.description")}}
|
253
|
+
{{_("config.path_splithttp.label")}}
|
254
|
+
{{_("config.path_splithttp.description")}}
|
255
|
+
{{_("config.path_httpupgrade.label")}}
|
256
|
+
{{_("config.path_httpupgrade.description")}}
|
257
|
+
{{_("config.path_ws.label")}}
|
258
|
+
{{_("config.path_ws.description")}}
|
259
|
+
{{_("config.path_tcp.label")}}
|
260
|
+
{{_("config.path_tcp.description")}}
|
261
|
+
{{_("config.path_grpc.label")}}
|
262
|
+
{{_("config.path_grpc.description")}}
|
263
|
+
{{_("config.sub_full_singbox_enable.label")}}
|
264
|
+
{{_("config.sub_full_singbox_enable.description")}}
|
265
|
+
{{_("config.sub_singbox_ssh_enable.label")}}
|
266
|
+
{{_("config.sub_singbox_ssh_enable.description")}}
|
267
|
+
{{_("config.sub_full_xray_json_enable.label")}}
|
268
|
+
{{_("config.sub_full_xray_json_enable.description")}}
|
269
|
+
{{_("config.sub_full_links_enable.label")}}
|
270
|
+
{{_("config.sub_full_links_enable.description")}}
|
271
|
+
{{_("config.sub_full_links_b64_enable.label")}}
|
272
|
+
{{_("config.sub_full_links_b64_enable.description")}}
|
273
|
+
{{_("config.sub_full_clash_enable.label")}}
|
274
|
+
{{_("config.sub_full_clash_enable.description")}}
|
275
|
+
{{_("config.sub_full_clash_meta_enable.label")}}
|
276
|
+
{{_("config.sub_full_clash_meta_enable.description")}}
|
277
|
+
{{_("config.hiddifycli_enable.label")}}
|
278
|
+
{{_("config.hiddifycli_enable.description")}}
|
279
|
+
|
280
|
+
{{_("config.admin.label")}}{{_("config.admin.description")}}
|
281
|
+
{{_("config.branding.label")}}{{_("config.branding.description")}}
|
282
|
+
{{_("config.general.label")}}{{_("config.general.description")}}
|
283
|
+
{{_("config.proxies.label")}}{{_("config.proxies.description")}}
|
284
|
+
{{_("config.domain_fronting.label")}}{{_("config.domain_fronting.description")}}
|
285
|
+
{{_("config.telegram.label")}}{{_("config.telegram.description")}}
|
286
|
+
{{_("config.http.label")}}{{_("config.http.description")}}
|
287
|
+
{{_("config.tls.label")}}{{_("config.tls.description")}}
|
288
|
+
{{_("config.mux.label")}}{{_("config.mux.description")}}
|
289
|
+
{{_("config.tls_trick.label")}}{{_("config.tls_trick.description")}}
|
290
|
+
{{_("config.ssh.label")}}{{_("config.ssh.description")}}
|
291
|
+
{{_("config.ssfaketls.label")}}{{_("config.ssfaketls.description")}}
|
292
|
+
{{_("config.shadowtls.label")}}{{_("config.shadowtls.description")}}
|
293
|
+
{{_("config.restls.label")}}{{_("config.restls.description")}}
|
294
|
+
{{_("config.tuic.label")}}{{_("config.tuic.description")}}
|
295
|
+
{{_("config.hysteria.label")}}{{_("config.hysteria.description")}}
|
296
|
+
{{_("config.ssr.label")}}{{_("config.ssr.description")}}
|
297
|
+
{{_("config.kcp.label")}}{{_("config.kcp.description")}}
|
298
|
+
{{_("config.hidden.label")}}{{_("config.hidden.description")}}
|
299
|
+
{{_("config.advanced.label")}}{{_("config.advanced.description")}}
|
300
|
+
{{_("config.too_advanced.label")}}{{_("config.too_advanced.description")}}
|
301
|
+
{{_("config.warp.label")}}{{_("config.warp.description")}}
|
302
|
+
{{_("config.reality.label")}}{{_("config.reality.description")}}
|
303
|
+
{{_("config.wireguard.label")}}{{_("config.wireguard.description")}}
|
304
|
+
{{_("config.shadowsocks.label")}}{{_("config.shadowsocks.description")}}
|
305
|
+
|
306
|
+
{{_("direct")}}
|
307
|
+
{{_("sub_link_only")}}
|
308
|
+
{{_("cdn")}}
|
309
|
+
{{_("auto_cdn_ip")}}
|
310
|
+
{{_("relay")}}
|
311
|
+
{{_("reality")}}
|
312
|
+
{{_("old_xtls_direct")}}
|
313
|
+
{{_("worker")}}
|
314
|
+
{{_("fake")}}
|
315
|
+
|
316
|
+
{{_("no_reset")}}
|
317
|
+
{{_("monthly")}}
|
318
|
+
{{_("weekly")}}
|
319
|
+
{{_("daily")}}
|
320
|
+
|
Binary file
|
@@ -425,7 +425,7 @@ msgstr ""
|
|
425
425
|
|
426
426
|
msgid "It will override the root admin to the current user"
|
427
427
|
msgstr ""
|
428
|
-
"It will override the owner admin of the backup file to the current
|
428
|
+
"It will override the owner admin of the backup file to the current admin."
|
429
429
|
|
430
430
|
msgid ""
|
431
431
|
"Join our Hiddify Telegram channel to get the latest updates on Hiddify."
|
@@ -445,7 +445,7 @@ msgid "Max Active Users"
|
|
445
445
|
msgstr "Max Active Users"
|
446
446
|
|
447
447
|
msgid "Max IPs"
|
448
|
-
msgstr "Max IPs"
|
448
|
+
msgstr "Max IPs (xray only)"
|
449
449
|
|
450
450
|
msgid "Max Users"
|
451
451
|
msgstr "Max Users"
|
@@ -535,13 +535,6 @@ msgstr ""
|
|
535
535
|
"Please connect your Telegram account to the panel to be informed about "
|
536
536
|
"latest news"
|
537
537
|
|
538
|
-
msgid ""
|
539
|
-
"Please connect your telegram accout to the panel to be informed about latest"
|
540
|
-
" news."
|
541
|
-
msgstr ""
|
542
|
-
"Please connect your Telegram account to the panel to know the latest Status "
|
543
|
-
"of your Subscription"
|
544
|
-
|
545
538
|
msgid "Please create an issue on Github."
|
546
539
|
msgstr "Please create an issue on Github"
|
547
540
|
|
@@ -784,7 +777,7 @@ msgid "Upload File"
|
|
784
777
|
msgstr "Upload File"
|
785
778
|
|
786
779
|
msgid "Use HiddifyNext:"
|
787
|
-
msgstr "Use
|
780
|
+
msgstr "Use Hiddify:"
|
788
781
|
|
789
782
|
msgid "User activated!"
|
790
783
|
msgstr "User Activated"
|
@@ -860,13 +853,6 @@ msgstr ""
|
|
860
853
|
msgid "You have used this domain in: "
|
861
854
|
msgstr "You have already used this Domain in: "
|
862
855
|
|
863
|
-
msgid ""
|
864
|
-
"You should visit this page without VPN. Your country=%(your_country)s\n"
|
865
|
-
"expected=%(expected_country)s"
|
866
|
-
msgstr ""
|
867
|
-
"You should visit this page without VPN Your Country =%(your_country)s\n"
|
868
|
-
"Expected=%(expected_country)s"
|
869
|
-
|
870
856
|
msgid ""
|
871
857
|
"Your hiddify instance information \n"
|
872
858
|
"Domain: {} \n"
|
@@ -1001,7 +987,7 @@ msgstr ""
|
|
1001
987
|
|
1002
988
|
msgid "adminuser.force_update_usage"
|
1003
989
|
msgstr ""
|
1004
|
-
"Every 6
|
990
|
+
"ℹ️ Every 6 Minutes the usage is being updated. For updating it now <a "
|
1005
991
|
"href=\"%(link)s\" class=\"btn btn-info\">Press Here</a>"
|
1006
992
|
|
1007
993
|
msgid "all"
|
@@ -1068,6 +1054,12 @@ msgstr "Shadowrocket Description"
|
|
1068
1054
|
msgid "app.shadowrocket.title"
|
1069
1055
|
msgstr "Shadowrocket"
|
1070
1056
|
|
1057
|
+
msgid "app.singbox.description"
|
1058
|
+
msgstr "Sing-box app is the official app for Sing-box protocol."
|
1059
|
+
|
1060
|
+
msgid "app.singbox.title"
|
1061
|
+
msgstr "Sing-box app"
|
1062
|
+
|
1071
1063
|
msgid "app.stash.description"
|
1072
1064
|
msgstr "Stash Description"
|
1073
1065
|
|
@@ -1407,7 +1399,7 @@ msgstr "☑️ Allow HTTP Connection"
|
|
1407
1399
|
msgid "config.httpupgrade_enable.description"
|
1408
1400
|
msgstr ""
|
1409
1401
|
"<p>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.<br />\n"
|
1410
|
-
"⚠️ <strong>Not Available in Xray based Clients. Only
|
1402
|
+
"⚠️ <strong>Not Available in Xray based Clients. Only Hiddify, Singbox, and V2fly clients are supported.</strong> <a href=\"https://hiddify.com/manager/basic-concepts-and-troubleshooting/Basic-Concepts/#http-upgrade\" target=\"_blank\"><strong>(Read More)</strong></a></p>"
|
1411
1403
|
|
1412
1404
|
msgid "config.httpupgrade_enable.label"
|
1413
1405
|
msgstr "🆙 HTTPUpgrade Method"
|
@@ -1486,7 +1478,9 @@ msgid "config.kcp_ports.label"
|
|
1486
1478
|
msgstr "KCP Ports"
|
1487
1479
|
|
1488
1480
|
msgid "config.lang.description"
|
1489
|
-
msgstr "
|
1481
|
+
msgstr ""
|
1482
|
+
"Select the language for the user interface to personalize your experience in"
|
1483
|
+
" the user area."
|
1490
1484
|
|
1491
1485
|
msgid "config.lang.label"
|
1492
1486
|
msgstr "🗺️ User Area Language"
|
@@ -1541,7 +1535,7 @@ msgstr "⬆️ MUX Brutal Upload (mbps)"
|
|
1541
1535
|
|
1542
1536
|
msgid "config.mux_enable.description"
|
1543
1537
|
msgstr ""
|
1544
|
-
"<p>Mux needs compatible clients. Mux in Hiddify
|
1538
|
+
"<p>Mux needs compatible clients. Mux in Hiddify and Singbox are not "
|
1545
1539
|
"compatible with XRay. <a href=\"https://hiddify.com/manager/basic-"
|
1546
1540
|
"concepts-and-troubleshooting/How-MUX-works-and-its-usage/\" "
|
1547
1541
|
"target=\"_blank\">(Read More)</a></p>"
|
@@ -1878,7 +1872,9 @@ msgid "config.speed_test.label"
|
|
1878
1872
|
msgstr "🚀 Speed Test"
|
1879
1873
|
|
1880
1874
|
msgid "config.splithttp_enable.description"
|
1881
|
-
msgstr "
|
1875
|
+
msgstr ""
|
1876
|
+
"<p>This Protocol send and receive information in individual channels.<br />\n"
|
1877
|
+
"⚠️ <strong>Not Support in SignBox based Clients. Only Hiddify App, and XRay base Clients are supported.</strong></p>"
|
1882
1878
|
|
1883
1879
|
msgid "config.splithttp_enable.label"
|
1884
1880
|
msgstr "🈁 Split HTTP"
|
@@ -2268,8 +2264,8 @@ msgstr "WireGuard"
|
|
2268
2264
|
msgid "config.wireguard_enable.description"
|
2269
2265
|
msgstr ""
|
2270
2266
|
"<p>WireGuard is UDP based protocol. (⚠️ It is Working In <a "
|
2271
|
-
"href=\"https://github.com/hiddify/hiddify-
|
2272
|
-
"
|
2267
|
+
"href=\"https://github.com/hiddify/hiddify-app\" "
|
2268
|
+
"target=\"_blank\">Hiddify</a>)</p>"
|
2273
2269
|
|
2274
2270
|
msgid "config.wireguard_enable.label"
|
2275
2271
|
msgstr "🐉 WireGuard"
|
@@ -2444,6 +2440,15 @@ msgstr "☑️ Python : Low Performance"
|
|
2444
2440
|
msgid "log"
|
2445
2441
|
msgstr "📄 Log"
|
2446
2442
|
|
2443
|
+
msgid "login.button"
|
2444
|
+
msgstr "Login"
|
2445
|
+
|
2446
|
+
msgid "login.password.description"
|
2447
|
+
msgstr "For extra security, you need to enter your password."
|
2448
|
+
|
2449
|
+
msgid "login.password.label"
|
2450
|
+
msgstr "Password"
|
2451
|
+
|
2447
2452
|
msgid "login.secret.description"
|
2448
2453
|
msgstr "For getting access to this page, please enter your secret code (UUID)"
|
2449
2454
|
|
@@ -2889,12 +2894,33 @@ msgstr "Last Usage Date Reset"
|
|
2889
2894
|
msgid "user.name"
|
2890
2895
|
msgstr "Name"
|
2891
2896
|
|
2897
|
+
msgid "user.password.description"
|
2898
|
+
msgstr ""
|
2899
|
+
"The password will be used for extra secutiry. You can only login to the "
|
2900
|
+
"HiddifyManager after entering your password."
|
2901
|
+
|
2902
|
+
msgid "user.password.title"
|
2903
|
+
msgstr "Password"
|
2904
|
+
|
2905
|
+
msgid "user.password.validation-lenght"
|
2906
|
+
msgstr ""
|
2907
|
+
"Your password must be at least 8 characters long for enhanced security."
|
2908
|
+
|
2909
|
+
msgid "user.password.validation-required"
|
2910
|
+
msgstr "Password is required. Please enter your password to continue."
|
2911
|
+
|
2892
2912
|
msgid "user.usage_limit_GB"
|
2893
2913
|
msgstr "⌛️ Usage Limit (GB)"
|
2894
2914
|
|
2895
2915
|
msgid "user.user_links"
|
2896
2916
|
msgstr "User Links"
|
2897
2917
|
|
2918
|
+
msgid "vpn.notallowed"
|
2919
|
+
msgstr ""
|
2920
|
+
"Please visit this page without using a VPN. You need to access it from the "
|
2921
|
+
"country %(expected_country)s, but you're currently accessing it from "
|
2922
|
+
"%(your_country)s."
|
2923
|
+
|
2898
2924
|
msgid "weekly"
|
2899
2925
|
msgstr "📅 Weekly"
|
2900
2926
|
|
Binary file
|
@@ -410,9 +410,7 @@ msgstr ""
|
|
410
410
|
" آن را حذف یا تغییر دهید."
|
411
411
|
|
412
412
|
msgid "It will override the root admin to the current user"
|
413
|
-
msgstr ""
|
414
|
-
"این گزینه باعث جایگزین شده ادمین هایی که در پنل نیستند را با ادمین فعلی یکی "
|
415
|
-
"کند"
|
413
|
+
msgstr "این گزینه ادمینی که در فایل بکاپ هست را با ادمین فعلی جایگزین میکند"
|
416
414
|
|
417
415
|
msgid ""
|
418
416
|
"Join our Hiddify Telegram channel to get the latest updates on Hiddify."
|
@@ -431,7 +429,7 @@ msgid "Max Active Users"
|
|
431
429
|
msgstr "حداکثر کاربران فعال"
|
432
430
|
|
433
431
|
msgid "Max IPs"
|
434
|
-
msgstr "
|
432
|
+
msgstr "همزمان (فقط xray) IP"
|
435
433
|
|
436
434
|
msgid "Max Users"
|
437
435
|
msgstr "حداکثر کاربران"
|
@@ -519,13 +517,6 @@ msgid ""
|
|
519
517
|
"latest news."
|
520
518
|
msgstr "لطفا اکانت تلگرام خود را به پنل متصل کنید تا از آخرین اخبار مطلع شوید"
|
521
519
|
|
522
|
-
msgid ""
|
523
|
-
"Please connect your telegram accout to the panel to be informed about latest"
|
524
|
-
" news."
|
525
|
-
msgstr ""
|
526
|
-
"لطفا اکانت تلگرام خود را به پنل متصل کنید تا از آخرین وضعیت اشتراک خودتان "
|
527
|
-
"مطلع شوید"
|
528
|
-
|
529
520
|
msgid "Please create an issue on Github."
|
530
521
|
msgstr "لطفاً یک مشکل در Github ایجاد کنید"
|
531
522
|
|
@@ -770,7 +761,7 @@ msgid "Upload File"
|
|
770
761
|
msgstr "آپلود فایل"
|
771
762
|
|
772
763
|
msgid "Use HiddifyNext:"
|
773
|
-
msgstr "استفاده از
|
764
|
+
msgstr "استفاده از Hiddify:"
|
774
765
|
|
775
766
|
msgid "User activated!"
|
776
767
|
msgstr "یوزر شما فعال شد"
|
@@ -847,13 +838,6 @@ msgstr ""
|
|
847
838
|
msgid "You have used this domain in: "
|
848
839
|
msgstr "شما از این دامنه در بخش زیر استفاده کرده اید: "
|
849
840
|
|
850
|
-
msgid ""
|
851
|
-
"You should visit this page without VPN. Your country=%(your_country)s\n"
|
852
|
-
"expected=%(expected_country)s"
|
853
|
-
msgstr ""
|
854
|
-
"شما باید بدون VPN از این صفحه بازدید کنید کشور شما =%(your_country)s\n"
|
855
|
-
"انتظار می رود=%(expected_country)s"
|
856
|
-
|
857
841
|
msgid ""
|
858
842
|
"Your hiddify instance information \n"
|
859
843
|
"Domain: {} \n"
|
@@ -989,7 +973,7 @@ msgstr ""
|
|
989
973
|
|
990
974
|
msgid "adminuser.force_update_usage"
|
991
975
|
msgstr ""
|
992
|
-
"مصرف کاربر ها هر 6 دقیقه یکبار به روز می شود. برای به روز رسانی فوری <a "
|
976
|
+
"ℹ️ مصرف کاربر ها هر 6 دقیقه یکبار به روز می شود. برای به روز رسانی فوری <a "
|
993
977
|
"href=\"%(link)s\" class=\"btn btn-info\"> اینجا </a> را کلیک کنید"
|
994
978
|
|
995
979
|
msgid "all"
|
@@ -1056,6 +1040,12 @@ msgstr "توضیحات Shadowrocket"
|
|
1056
1040
|
msgid "app.shadowrocket.title"
|
1057
1041
|
msgstr "Shadowrocket"
|
1058
1042
|
|
1043
|
+
msgid "app.singbox.description"
|
1044
|
+
msgstr "برنامه Sing-box برنامه رسمی برای پروتکل Sing-box است."
|
1045
|
+
|
1046
|
+
msgid "app.singbox.title"
|
1047
|
+
msgstr "برنامه Sing-box"
|
1048
|
+
|
1059
1049
|
msgid "app.stash.description"
|
1060
1050
|
msgstr "توضیحات Stash"
|
1061
1051
|
|
@@ -1478,7 +1468,8 @@ msgid "config.kcp_ports.label"
|
|
1478
1468
|
msgstr "پورتهای KCP"
|
1479
1469
|
|
1480
1470
|
msgid "config.lang.description"
|
1481
|
-
msgstr "
|
1471
|
+
msgstr ""
|
1472
|
+
"زبان رابط کاربری را برای شخصی سازی تجربه خود در ناحیه کاربری انتخاب کنید."
|
1482
1473
|
|
1483
1474
|
msgid "config.lang.label"
|
1484
1475
|
msgstr "🗺️ زبان محیط کاربران"
|
@@ -1534,7 +1525,7 @@ msgstr "⬆️ آپلود (mbps) MUX Brutal"
|
|
1534
1525
|
msgid "config.mux_enable.description"
|
1535
1526
|
msgstr ""
|
1536
1527
|
"<p style=\"direction:rtl\">Mux به نرم افزار سازگار نیاز دارد. Mux در Hiddify"
|
1537
|
-
"
|
1528
|
+
" و Singbox و XRay سازگار نیستند. <a "
|
1538
1529
|
"href=\"https://hiddify.com/fa/manager/basic-concepts-and-"
|
1539
1530
|
"troubleshooting/How-MUX-works-and-its-usage/\" target=\"_blank\">(بیشتر "
|
1540
1531
|
"بدانید)</a></p>"
|
@@ -1877,7 +1868,9 @@ msgid "config.speed_test.label"
|
|
1877
1868
|
msgstr "🚀 تست سرعت"
|
1878
1869
|
|
1879
1870
|
msgid "config.splithttp_enable.description"
|
1880
|
-
msgstr "
|
1871
|
+
msgstr ""
|
1872
|
+
"<p>این پروتکل اطلاعات را در کانال های جداگانه ارسال و دریافت می کند<br />\n"
|
1873
|
+
"⚠️<strong> این پروتکل در برنامه های با هسته SingBox پشتیبانی نمیشود. فقط در برنامه Hiddify و برنامه های با هسته XRay پشتیبانی میشود</strong></p>"
|
1881
1874
|
|
1882
1875
|
msgid "config.splithttp_enable.label"
|
1883
1876
|
msgstr "🈁 Split HTTP"
|
@@ -2269,8 +2262,8 @@ msgstr "وایرگارد"
|
|
2269
2262
|
msgid "config.wireguard_enable.description"
|
2270
2263
|
msgstr ""
|
2271
2264
|
"<p>WireGuard پروتکل مبتنی بر UDP است. (⚠️ فقط در <a "
|
2272
|
-
"href=\"https://github.com/hiddify/hiddify-
|
2273
|
-
"
|
2265
|
+
"href=\"https://github.com/hiddify/hiddify-app\" "
|
2266
|
+
"target=\"_blank\">Hiddify</a> کار می کند)</p>"
|
2274
2267
|
|
2275
2268
|
msgid "config.wireguard_enable.label"
|
2276
2269
|
msgstr "🐉 وایرگارد"
|
@@ -2445,6 +2438,15 @@ msgstr "☑️ پایتون : عملکرد ضعیف"
|
|
2445
2438
|
msgid "log"
|
2446
2439
|
msgstr "📄 لاگ"
|
2447
2440
|
|
2441
|
+
msgid "login.button"
|
2442
|
+
msgstr "ورود"
|
2443
|
+
|
2444
|
+
msgid "login.password.description"
|
2445
|
+
msgstr "برای امنیت بیشتر، باید رمز عبور خود را وارد کنید."
|
2446
|
+
|
2447
|
+
msgid "login.password.label"
|
2448
|
+
msgstr "رمز عبور"
|
2449
|
+
|
2448
2450
|
msgid "login.secret.description"
|
2449
2451
|
msgstr "برای دسترسی به این صفحه، لطفا کد مخفی (UUID) خود را وارد کنید."
|
2450
2452
|
|
@@ -2893,12 +2895,32 @@ msgstr "آخرین زمان ریست شدن حجم (روز پیش)"
|
|
2893
2895
|
msgid "user.name"
|
2894
2896
|
msgstr "نام"
|
2895
2897
|
|
2898
|
+
msgid "user.password.description"
|
2899
|
+
msgstr ""
|
2900
|
+
"رمز عبور برای امنیت بیشتر استفاده خواهد شد. تنها پس از وارد کردن رمز عبور می"
|
2901
|
+
" توانید وارد هیدیفایمنیجر شوید."
|
2902
|
+
|
2903
|
+
msgid "user.password.title"
|
2904
|
+
msgstr "رمز عبور"
|
2905
|
+
|
2906
|
+
msgid "user.password.validation-lenght"
|
2907
|
+
msgstr "برای امنیت بیشتر، رمز عبور شما باید حداقل ۸ کاراکتر داشته باشد."
|
2908
|
+
|
2909
|
+
msgid "user.password.validation-required"
|
2910
|
+
msgstr "رمز عبور لازم است. لطفا برای ادامه رمز عبور خود را وارد کنید."
|
2911
|
+
|
2896
2912
|
msgid "user.usage_limit_GB"
|
2897
2913
|
msgstr "⌛️ محدودیت حجم (گیگابایت)"
|
2898
2914
|
|
2899
2915
|
msgid "user.user_links"
|
2900
2916
|
msgstr "لینکهای کاربر"
|
2901
2917
|
|
2918
|
+
msgid "vpn.notallowed"
|
2919
|
+
msgstr ""
|
2920
|
+
"لطفاً بدون استفاده از VPN از این صفحه بازدید کنید. باید از کشور "
|
2921
|
+
"%(expected_country)s به آن دسترسی داشته باشید، اما در حال حاضر از "
|
2922
|
+
"%(your_country)s به آن دسترسی دارید."
|
2923
|
+
|
2902
2924
|
msgid "weekly"
|
2903
2925
|
msgstr "📅 هفتگی"
|
2904
2926
|
|
Binary file
|