hiddifypanel 10.30.0.dev0__py3-none-any.whl → 10.30.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.
Files changed (26) hide show
  1. hiddifypanel/VERSION +1 -1
  2. hiddifypanel/VERSION.py +2 -2
  3. hiddifypanel/base.py +4 -3
  4. hiddifypanel/panel/admin/templates/model/proxydetail_list.html +6 -0
  5. hiddifypanel/panel/commercial/ProxyDetailsAdmin.py +13 -1
  6. hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
  7. hiddifypanel/translations/en/LC_MESSAGES/messages.po +39 -32
  8. hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
  9. hiddifypanel/translations/fa/LC_MESSAGES/messages.po +37 -25
  10. hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
  11. hiddifypanel/translations/pt/LC_MESSAGES/messages.po +4 -1
  12. hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
  13. hiddifypanel/translations/ru/LC_MESSAGES/messages.po +4 -1
  14. hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
  15. hiddifypanel/translations/zh/LC_MESSAGES/messages.po +3 -0
  16. hiddifypanel/translations.i18n/en.json +33 -32
  17. hiddifypanel/translations.i18n/fa.json +26 -25
  18. hiddifypanel/translations.i18n/pt.json +2 -1
  19. hiddifypanel/translations.i18n/ru.json +2 -1
  20. hiddifypanel/translations.i18n/zh.json +1 -0
  21. {hiddifypanel-10.30.0.dev0.dist-info → hiddifypanel-10.30.0.dev1.dist-info}/METADATA +1 -1
  22. {hiddifypanel-10.30.0.dev0.dist-info → hiddifypanel-10.30.0.dev1.dist-info}/RECORD +26 -25
  23. {hiddifypanel-10.30.0.dev0.dist-info → hiddifypanel-10.30.0.dev1.dist-info}/WHEEL +1 -1
  24. {hiddifypanel-10.30.0.dev0.dist-info → hiddifypanel-10.30.0.dev1.dist-info}/LICENSE.md +0 -0
  25. {hiddifypanel-10.30.0.dev0.dist-info → hiddifypanel-10.30.0.dev1.dist-info}/entry_points.txt +0 -0
  26. {hiddifypanel-10.30.0.dev0.dist-info → hiddifypanel-10.30.0.dev1.dist-info}/top_level.txt +0 -0
hiddifypanel/VERSION CHANGED
@@ -1 +1 @@
1
- 10.30.0.dev0
1
+ 10.30.0.dev1
hiddifypanel/VERSION.py CHANGED
@@ -1,3 +1,3 @@
1
- __version__='10.30.0.dev0'
1
+ __version__='10.30.0.dev1'
2
2
  from datetime import datetime
3
- __release_date__= datetime.strptime('2024-06-24','%Y-%m-%d')
3
+ __release_date__= datetime.strptime('2024-06-29','%Y-%m-%d')
hiddifypanel/base.py CHANGED
@@ -28,7 +28,8 @@ def init_logger():
28
28
  # configure logger
29
29
  from hiddifypanel.models import ConfigEnum, hconfig
30
30
  logger.remove()
31
- logger.add(sys.stderr, format=dynamic_formatter, level=hconfig(ConfigEnum.log_level), colorize=True, catch=True, enqueue=True, diagnose=False, backtrace=True)
31
+ logger.add(sys.stderr, format=dynamic_formatter, level=hconfig(ConfigEnum.log_level),
32
+ colorize=True, catch=True, enqueue=True, diagnose=False, backtrace=True)
32
33
  # logger.trace('Logger initiated :)')
33
34
 
34
35
 
@@ -97,9 +98,9 @@ def create_app(*args, cli=False, **config):
97
98
  # Put your logic here. Application can store locale in
98
99
  # user profile, cookie, session, etc.
99
100
  if "admin" in request.base_url:
100
- g.locale = auth.current_account.lang or hconfig(ConfigEnum.admin_lang) or 'fa'
101
+ g.locale = hconfig(ConfigEnum.admin_lang) or 'en'
101
102
  else:
102
- g.locale = auth.current_account.lang or hconfig(ConfigEnum.lang) or 'fa'
103
+ g.locale = auth.current_account.lang or hconfig(ConfigEnum.lang) or 'en'
103
104
  return g.locale
104
105
  app.jinja_env.globals['get_locale'] = get_locale
105
106
  babel = Babel(app, locale_selector=get_locale)
@@ -0,0 +1,6 @@
1
+ {% extends 'hiddify-flask-admin/list.html' %}
2
+
3
+ {% block model_menu_bar %}
4
+ {{ super() }}
5
+ <a href="{{ url_for('flask.proxy.reset_proxies') }}" class="btn btn-primary">{{_('Reset Proxies')}}</a>
6
+ {% endblock %}
@@ -7,12 +7,15 @@ from markupsafe import Markup
7
7
  from hiddifypanel.auth import login_required
8
8
  from flask_admin.actions import action
9
9
  from flask_admin.contrib.sqla import form, filters as sqla_filters, tools
10
+ from flask_admin import expose
11
+
12
+
10
13
  # Define a custom field type for the related domains
11
14
  from hiddifypanel import hutils
12
15
 
13
16
 
14
17
  class ProxyDetailsAdmin(AdminLTEModelView):
15
-
18
+ list_template = 'model/proxydetail_list.html'
16
19
  column_hide_backrefs = True
17
20
  can_create = False
18
21
  form_excluded_columns = ['child', 'proto', 'transport', 'cdn']
@@ -20,6 +23,15 @@ class ProxyDetailsAdmin(AdminLTEModelView):
20
23
  column_searchable_list = ['name', 'proto', 'transport', 'l3', 'cdn']
21
24
  column_editable_list = ['name']
22
25
 
26
+ @expose('reset_proxies')
27
+ def reset_proxies(self):
28
+ from hiddifypanel.panel.init_db import get_proxy_rows_v1
29
+ from hiddifypanel.database import db
30
+ db.session.bulk_save_objects(get_proxy_rows_v1())
31
+ db.session.commit()
32
+ hutils.flask.flash((_('config.validation-success-no-reset')), 'success') # type: ignore
33
+ return redirect("./")
34
+
23
35
  @action('disable', 'Disable', 'Are you sure you want to disable selected proxies?')
24
36
  def action_disable(self, ids):
25
37
  query = tools.get_query_for_ids(self.get_query(), self.model, ids)
@@ -674,6 +674,9 @@ msgstr "Rename File"
674
674
  msgid "Reset Filters"
675
675
  msgstr "Reset Filters"
676
676
 
677
+ msgid "Reset Proxies"
678
+ msgstr "Reset Proxies"
679
+
677
680
  msgid "Reset Usage Time:"
678
681
  msgstr "Traffic usage reset time:"
679
682
 
@@ -1344,7 +1347,7 @@ msgstr ""
1344
1347
  "<a href='https://github.com/hiddify/hiddify-config/wiki/%D8%A7%D8%B3%D8%AA%D9%81%D8%A7%D8%AF%D9%87-%D8%A7%D8%B2-%D8%AF%D8%A7%D9%85%DB%8C%D9%86-%D9%81%D8%B1%D8%A7%D9%86%D8%AA%DB%8C%D9%86%DA%AF'>Guide</a>. ⚠️CloudFlare does not support Domain Fronting."
1345
1348
 
1346
1349
  msgid "config.domain_fronting.label"
1347
- msgstr "🔒 Enable TLS Domain Fronting"
1350
+ msgstr "🔒 TLS Domain Fronting"
1348
1351
 
1349
1352
  msgid "config.domain_fronting_domain.description"
1350
1353
  msgstr ""
@@ -1358,7 +1361,7 @@ msgid "config.domain_fronting_http_enable.description"
1358
1361
  msgstr "Enabling HTTP Domain Fronting causes your domain to be block quickly."
1359
1362
 
1360
1363
  msgid "config.domain_fronting_http_enable.label"
1361
- msgstr "Enable HTTP Domain Fronting"
1364
+ msgstr "HTTP Domain Fronting"
1362
1365
 
1363
1366
  msgid "config.domain_fronting_tls_enable.description"
1364
1367
  msgstr ""
@@ -1366,7 +1369,7 @@ msgstr ""
1366
1369
  " connect to CDN"
1367
1370
 
1368
1371
  msgid "config.domain_fronting_tls_enable.label"
1369
- msgstr "🔒 Enable TLS Domain Fronting"
1372
+ msgstr "🔒 TLS Domain Fronting"
1370
1373
 
1371
1374
  msgid "config.firewall.description"
1372
1375
  msgstr ""
@@ -1394,13 +1397,13 @@ msgstr ""
1394
1397
  "framework. It can be used in supported CDNs"
1395
1398
 
1396
1399
  msgid "config.grpc_enable.label"
1397
- msgstr "➿ Enable gRPC"
1400
+ msgstr "➿ gRPC"
1398
1401
 
1399
1402
  msgid "config.h2_enable.description"
1400
1403
  msgstr "Enable HTTP/2 Protocol"
1401
1404
 
1402
1405
  msgid "config.h2_enable.label"
1403
- msgstr "🔵 Enable h2"
1406
+ msgstr "🔵 h2"
1404
1407
 
1405
1408
  msgid "config.hidden.description"
1406
1409
  msgstr "config.hidden.description"
@@ -1442,7 +1445,7 @@ msgstr ""
1442
1445
  "⚠️ <strong>Not Available in Xray based Clients. Only HiddifyNext, Singbox, and V2fly clients are supported.</strong>&nbsp;<a href=\"https://hiddify.com/manager/basic-concepts-and-troubleshooting/Basic-Concepts/#http-upgrade\" target=\"_blank\"><strong>(Read More)</strong></a></p>"
1443
1446
 
1444
1447
  msgid "config.httpupgrade_enable.label"
1445
- msgstr "🆙 Enable HTTPUpgrade Method"
1448
+ msgstr "🆙 HTTPUpgrade Method"
1446
1449
 
1447
1450
  msgid "config.hysteria.description"
1448
1451
  msgstr ""
@@ -1463,7 +1466,7 @@ msgid "config.hysteria_enable.description"
1463
1466
  msgstr "To Enable UDP based Hysteria Protocol"
1464
1467
 
1465
1468
  msgid "config.hysteria_enable.label"
1466
- msgstr "⚫️ Enable Hysteria2"
1469
+ msgstr "⚫️ Hysteria2"
1467
1470
 
1468
1471
  msgid "config.hysteria_obfs_enable.description"
1469
1472
  msgstr " Enables Hysteria Obfuscation (Salamander)"
@@ -1503,7 +1506,7 @@ msgid "config.kcp_enable.description"
1503
1506
  msgstr "It is a UDP Based Protocol "
1504
1507
 
1505
1508
  msgid "config.kcp_enable.label"
1506
- msgstr "Enable KCP"
1509
+ msgstr "KCP"
1507
1510
 
1508
1511
  msgid "config.kcp_ports.description"
1509
1512
  msgstr ""
@@ -1574,7 +1577,7 @@ msgstr ""
1574
1577
  "target=\"_blank\">(Read More)</a></p>"
1575
1578
 
1576
1579
  msgid "config.mux_enable.label"
1577
- msgstr "Ⓜ️ MUX Enable (⚠️ Incompatible With Some Clients)"
1580
+ msgstr "Ⓜ️ MUX (⚠️ Incompatible With Some Clients)"
1578
1581
 
1579
1582
  msgid "config.mux_max_connections.description"
1580
1583
  msgstr "Maximum Connections. Conflict with Max Streams"
@@ -1749,7 +1752,7 @@ msgid "config.quic_enable.description"
1749
1752
  msgstr "Enable QUIC Protocol"
1750
1753
 
1751
1754
  msgid "config.quic_enable.label"
1752
- msgstr "🟡 Enable QUIC"
1755
+ msgstr "🟡 QUIC"
1753
1756
 
1754
1757
  msgid "config.reality.description"
1755
1758
  msgstr "REALITY eliminate the Server-Side TLS Fingerprint Feature"
@@ -1761,7 +1764,7 @@ msgid "config.reality_enable.description"
1761
1764
  msgstr "Enable Reality Protocol"
1762
1765
 
1763
1766
  msgid "config.reality_enable.label"
1764
- msgstr "🔴 Enable Reality"
1767
+ msgstr "🔴 Reality"
1765
1768
 
1766
1769
  msgid "config.reality_fallback_domain.description"
1767
1770
  msgstr ""
@@ -1835,7 +1838,7 @@ msgstr ""
1835
1838
  "Inspection)"
1836
1839
 
1837
1840
  msgid "config.shadowsocks2022_enable.label"
1838
- msgstr "⭕️ Enable Shadowsocks 2022"
1841
+ msgstr "⭕️ Shadowsocks 2022"
1839
1842
 
1840
1843
  msgid "config.shadowsocks2022_method.description"
1841
1844
  msgstr "This method also used in ShadowTLS and SSFakeTLS"
@@ -1934,7 +1937,7 @@ msgid "config.ssh_server_enable.description"
1934
1937
  msgstr "SSH Proxy is completely different than original SSH Server"
1935
1938
 
1936
1939
  msgid "config.ssh_server_enable.label"
1937
- msgstr "✔️ Enable SSH Proxy"
1940
+ msgstr "✔️ SSH Proxy"
1938
1941
 
1939
1942
  msgid "config.ssh_server_port.description"
1940
1943
  msgstr ""
@@ -1965,7 +1968,7 @@ msgstr ""
1965
1968
  "accounting."
1966
1969
 
1967
1970
  msgid "config.ssr_enable.label"
1968
- msgstr "Enable SSR"
1971
+ msgstr "SSR"
1969
1972
 
1970
1973
  msgid "config.ssr_fakedomain.description"
1971
1974
  msgstr ""
@@ -2006,10 +2009,14 @@ msgid "config.sub_full_singbox_enable.label"
2006
2009
  msgstr "config.sub_full_singbox_enable.label"
2007
2010
 
2008
2011
  msgid "config.sub_full_xray_json_enable.description"
2009
- msgstr "config.sub_full_xray_json_enable.description"
2012
+ msgstr ""
2013
+ "XRay full link provides comprehensive configuration options for XRay-"
2014
+ "specific settings. This includes custom fragmentation and multiplexing (mux)"
2015
+ " in applications such as v2rayNG that support XRay protocols for fine-tuned "
2016
+ "control over XRay proxy setup."
2010
2017
 
2011
2018
  msgid "config.sub_full_xray_json_enable.label"
2012
- msgstr "config.sub_full_xray_json_enable.label"
2019
+ msgstr "XRay Full Config Link"
2013
2020
 
2014
2021
  msgid "config.sub_singbox_ssh_enable.description"
2015
2022
  msgstr "config.sub_singbox_ssh_enable.description"
@@ -2021,13 +2028,13 @@ msgid "config.tcp_enable.description"
2021
2028
  msgstr "Enable TCP Protocol"
2022
2029
 
2023
2030
  msgid "config.tcp_enable.label"
2024
- msgstr "🟠 Enable TCP"
2031
+ msgstr "🟠 TCP"
2025
2032
 
2026
2033
  msgid "config.telegram.description"
2027
2034
  msgstr "A proxy designed for Telegram to bypass Telegram filtering"
2028
2035
 
2029
2036
  msgid "config.telegram.label"
2030
- msgstr "Telegram Proxy "
2037
+ msgstr "Telegram Configs"
2031
2038
 
2032
2039
  msgid "config.telegram_adtag.description"
2033
2040
  msgstr ""
@@ -2054,7 +2061,7 @@ msgstr ""
2054
2061
  "Domain</strong></span></p>"
2055
2062
 
2056
2063
  msgid "config.telegram_enable.label"
2057
- msgstr "✔️ Enable Telegram MTProto"
2064
+ msgstr "✔️ Telegram MTProto"
2058
2065
 
2059
2066
  msgid "config.telegram_fakedomain.description"
2060
2067
  msgstr ""
@@ -2086,7 +2093,7 @@ msgstr ""
2086
2093
  "the-TLS-Trick-works-and-its-usage/\" target=\"_blank\">(Read More)</a></p>"
2087
2094
 
2088
2095
  msgid "config.tls_fragment_enable.label"
2089
- msgstr "⏯ Enable TLS Fragment"
2096
+ msgstr "⏯ TLS Fragment"
2090
2097
 
2091
2098
  msgid "config.tls_fragment_size.description"
2092
2099
  msgstr "The Size of each Packet"
@@ -2104,7 +2111,7 @@ msgid "config.tls_mixed_case.description"
2104
2111
  msgstr "Enables TLS Mixed SNI Case Fragmentation"
2105
2112
 
2106
2113
  msgid "config.tls_mixed_case.label"
2107
- msgstr "🔠 Enable TLS Mixed SNI Case"
2114
+ msgstr "🔠 TLS Mixed SNI Case"
2108
2115
 
2109
2116
  msgid "config.tls_padding_enable.description"
2110
2117
  msgstr ""
@@ -2114,7 +2121,7 @@ msgstr ""
2114
2121
  "More)</a></p>"
2115
2122
 
2116
2123
  msgid "config.tls_padding_enable.label"
2117
- msgstr "♒️ Enable TLS Padding"
2124
+ msgstr "♒️ TLS Padding"
2118
2125
 
2119
2126
  msgid "config.tls_padding_length.description"
2120
2127
  msgstr "The length of the Padding for TLS Fragmentation"
@@ -2154,7 +2161,7 @@ msgid "config.trojan_enable.description"
2154
2161
  msgstr "Enable Trojan Protocol"
2155
2162
 
2156
2163
  msgid "config.trojan_enable.label"
2157
- msgstr "🟤 Enable Trojan"
2164
+ msgstr "🟤 Trojan"
2158
2165
 
2159
2166
  msgid "config.tuic.description"
2160
2167
  msgstr ""
@@ -2169,7 +2176,7 @@ msgid "config.tuic_enable.description"
2169
2176
  msgstr "It is a UDP based protocol similar to QUIC"
2170
2177
 
2171
2178
  msgid "config.tuic_enable.label"
2172
- msgstr "⚫️ Enable TUIC"
2179
+ msgstr "⚫️ TUIC"
2173
2180
 
2174
2181
  msgid "config.tuic_port.description"
2175
2182
  msgstr "Use comma to separate ports like ( 63000,60000 )"
@@ -2195,7 +2202,7 @@ msgid "config.v2ray_enable.description"
2195
2202
  msgstr "V2ray does not support accounting and not suggested"
2196
2203
 
2197
2204
  msgid "config.v2ray_enable.label"
2198
- msgstr "♈️ Enable V2Ray "
2205
+ msgstr "♈️ V2Ray "
2199
2206
 
2200
2207
  msgid "config.validation-error"
2201
2208
  msgstr "There is an error in one of the fields."
@@ -2212,13 +2219,13 @@ msgid "config.vless_enable.description"
2212
2219
  msgstr "Enable VLess Protocol"
2213
2220
 
2214
2221
  msgid "config.vless_enable.label"
2215
- msgstr "⚫️ Enable VLess"
2222
+ msgstr "⚫️ VLess"
2216
2223
 
2217
2224
  msgid "config.vmess_enable.description"
2218
2225
  msgstr "Active VMess Protocol"
2219
2226
 
2220
2227
  msgid "config.vmess_enable.label"
2221
- msgstr "🟣 Enable VMess"
2228
+ msgstr "🟣 VMess"
2222
2229
 
2223
2230
  msgid "config.warp-https-domain-for-warp-site"
2224
2231
  msgstr "config.warp-https-domain-for-warp-site"
@@ -2238,7 +2245,7 @@ msgstr ""
2238
2245
  "server IP "
2239
2246
 
2240
2247
  msgid "config.warp_enable.label"
2241
- msgstr "Enable WARP+"
2248
+ msgstr "WARP+"
2242
2249
 
2243
2250
  msgid "config.warp_mode.description"
2244
2251
  msgstr ""
@@ -2283,7 +2290,7 @@ msgstr ""
2283
2290
  "Next</a>)</p>"
2284
2291
 
2285
2292
  msgid "config.wireguard_enable.label"
2286
- msgstr "🐉 Enable WireGuard"
2293
+ msgstr "🐉 WireGuard"
2287
2294
 
2288
2295
  msgid "config.wireguard_ipv4.description"
2289
2296
  msgstr "-"
@@ -2327,13 +2334,13 @@ msgid "config.ws_enable.description"
2327
2334
  msgstr "Websocket creates a tunnel over HTTP that is useful to be used in CDN"
2328
2335
 
2329
2336
  msgid "config.ws_enable.label"
2330
- msgstr "🔰 Enable Websocket"
2337
+ msgstr "🔰 Websocket"
2331
2338
 
2332
2339
  msgid "config.xtls_enable.description"
2333
2340
  msgstr "Enable XTLS Protocol"
2334
2341
 
2335
2342
  msgid "config.xtls_enable.label"
2336
- msgstr "🟢 Enable XTLS"
2343
+ msgstr "🟢 XTLS"
2337
2344
 
2338
2345
  msgid "config.invalid uuid"
2339
2346
  msgstr ""
@@ -2374,7 +2381,7 @@ msgstr ""
2374
2381
  "<a href='https://github.com/hiddify/hiddify-config/wiki/Guide-for-domain-fronting'>Guide</a>. ⚠️CloudFlare does not support Domain Fronting."
2375
2382
 
2376
2383
  msgid "domain.domain_fronting.label"
2377
- msgstr "🔒 Enable TLS Domain Fronting"
2384
+ msgstr "🔒 TLS Domain Fronting"
2378
2385
 
2379
2386
  msgid "domain.ip"
2380
2387
  msgstr "IP"
@@ -662,6 +662,9 @@ msgstr "تغییر نام پرونده"
662
662
  msgid "Reset Filters"
663
663
  msgstr "برگرداندن فیلتر ها به حالت اول"
664
664
 
665
+ msgid "Reset Proxies"
666
+ msgstr ""
667
+
665
668
  msgid "Reset Usage Time:"
666
669
  msgstr "زمان صفر شدن حجم:"
667
670
 
@@ -1379,13 +1382,13 @@ msgstr ""
1379
1382
  "می توان از آن در CDN های پشتیبانی شده استفاده کرد"
1380
1383
 
1381
1384
  msgid "config.grpc_enable.label"
1382
- msgstr "➿ gRPC را فعال کنید"
1385
+ msgstr "➿ gRPC"
1383
1386
 
1384
1387
  msgid "config.h2_enable.description"
1385
1388
  msgstr "فعال کردن پروتکل HTTP/2"
1386
1389
 
1387
1390
  msgid "config.h2_enable.label"
1388
- msgstr "🔵 فعال سازی h2"
1391
+ msgstr "🔵 h2"
1389
1392
 
1390
1393
  msgid "config.hidden.description"
1391
1394
  msgstr "-"
@@ -1423,11 +1426,16 @@ msgstr "☑️ اجازه اتصال HTTP"
1423
1426
 
1424
1427
  msgid "config.httpupgrade_enable.description"
1425
1428
  msgstr ""
1426
- "<p style=\"direction:rtl\">HTTPUpgrade یک درخواست ارتقاء HTTP ۱.۱ است و پاسخ را قبل از استفاده مستقیم از اتصال تکمیل می کند. این شبیه به WebSocket است که یک کانال ایجاد می کند که می تواند توسط بسیاری از پروکسی های معکوس و CDN ها ارسال شود، بدون اینکه نیازی به رسیدگی به تمام مسائل پیرامون خود پروتکل WebSocket باشد.<br />\n"
1427
- "⚠️ <strong>در نرم افزارهای مبتنی بر XRay موجود نیست. فقط نرم افزارهای HiddifyNext، Singbox و V۲fly پشتیبانی می شوند.&nbsp;</strong><a href=\"https://hiddify.com/fa/manager/basic-concepts-and-troubleshooting/Basic-Concepts/#http-upgarde\" target=\"_blank\"><strong>(بیشتر بدانید)</strong></a></p>"
1429
+ "<p style=\"direction:rtl\">HTTPUpgrade یک درخواست ارتقاء HTTP ۱.۱ است و پاسخ"
1430
+ " را قبل از استفاده مستقیم از اتصال تکمیل می کند. این شبیه به WebSocket است "
1431
+ "که یک کانال ایجاد می کند که می تواند توسط بسیاری از پروکسی های معکوس و CDN "
1432
+ "ها ارسال شود، بدون اینکه نیازی به رسیدگی به تمام مسائل پیرامون خود پروتکل "
1433
+ "WebSocket باشد.<br /><a href=\"https://hiddify.com/fa/manager/basic-"
1434
+ "concepts-and-troubleshooting/Basic-Concepts/#http-upgarde\" "
1435
+ "target=\"_blank\"><strong>(بیشتر بدانید)</strong></a></p>"
1428
1436
 
1429
1437
  msgid "config.httpupgrade_enable.label"
1430
- msgstr "🆙 فعالسازی HTTPUpgrade"
1438
+ msgstr "🆙 HTTPUpgrade"
1431
1439
 
1432
1440
  msgid "config.hysteria.description"
1433
1441
  msgstr ""
@@ -1448,13 +1456,13 @@ msgid "config.hysteria_enable.description"
1448
1456
  msgstr "برای فعال کردن پروتکل هیستریا مبتنی بر UDP"
1449
1457
 
1450
1458
  msgid "config.hysteria_enable.label"
1451
- msgstr "⚪️ هیستریا را فعال کنید"
1459
+ msgstr "⚪️ هیستریا"
1452
1460
 
1453
1461
  msgid "config.hysteria_obfs_enable.description"
1454
1462
  msgstr "مبهم سازی هیستری (Salamander) را فعال می کند"
1455
1463
 
1456
1464
  msgid "config.hysteria_obfs_enable.label"
1457
- msgstr "🎛 Hysteria OBFS را فعال کنید"
1465
+ msgstr "🎛 Hysteria OBFS"
1458
1466
 
1459
1467
  msgid "config.hysteria_port.description"
1460
1468
  msgstr "پورت Hysteria UDP برای مثال 5678"
@@ -1487,7 +1495,7 @@ msgid "config.kcp_enable.description"
1487
1495
  msgstr "این یک پروتکل مبتنی بر UDP است."
1488
1496
 
1489
1497
  msgid "config.kcp_enable.label"
1490
- msgstr "KCP را فعال کنید."
1498
+ msgstr "KCP."
1491
1499
 
1492
1500
  msgid "config.kcp_ports.description"
1493
1501
  msgstr ""
@@ -1740,7 +1748,7 @@ msgid "config.quic_enable.description"
1740
1748
  msgstr "فعال کردن پروتکل QUIC"
1741
1749
 
1742
1750
  msgid "config.quic_enable.label"
1743
- msgstr "🟡 فعال سازی QUIC"
1751
+ msgstr "🟡 QUIC"
1744
1752
 
1745
1753
  msgid "config.reality.description"
1746
1754
  msgstr "REALITY قابلیت اثر انگشت TLS سمت سرور را حذف می کند"
@@ -1752,7 +1760,7 @@ msgid "config.reality_enable.description"
1752
1760
  msgstr "فعال کردن پروتکل Reality"
1753
1761
 
1754
1762
  msgid "config.reality_enable.label"
1755
- msgstr "🔴 فعال سازی Reality"
1763
+ msgstr "🔴 Reality"
1756
1764
 
1757
1765
  msgid "config.reality_fallback_domain.description"
1758
1766
  msgstr ""
@@ -1827,7 +1835,7 @@ msgstr ""
1827
1835
  "ها و سانسورهای اینترنتی را که به DPI (بازرسی عمیق بسته) متکی هستند، دور بزند"
1828
1836
 
1829
1837
  msgid "config.shadowsocks2022_enable.label"
1830
- msgstr "⭕️ Shadowsocks 2022 را فعال کنید"
1838
+ msgstr "⭕️ Shadowsocks 2022"
1831
1839
 
1832
1840
  msgid "config.shadowsocks2022_method.description"
1833
1841
  msgstr "این روش در ShadowTLS و SSFakeTLS نیز استفاده می شود"
@@ -1929,7 +1937,7 @@ msgstr ""
1929
1937
  "ندارد"
1930
1938
 
1931
1939
  msgid "config.ssh_server_enable.label"
1932
- msgstr "✔️ پروکسی SSH را فعال کنید"
1940
+ msgstr "✔️ پروکسی SSH"
1933
1941
 
1934
1942
  msgid "config.ssh_server_port.description"
1935
1943
  msgstr ""
@@ -2001,9 +2009,13 @@ msgstr ""
2001
2009
 
2002
2010
  msgid "config.sub_full_xray_json_enable.description"
2003
2011
  msgstr ""
2012
+ "لینک کامل XRay گزینه های پیکربندی جامعی را برای تنظیمات خاص XRay فراهم می "
2013
+ "کند. این شامل تقسیم بندی سفارشی و چندگانه سازی (mux) در برنامه هایی مانند "
2014
+ "v2rayNG است که از پروتکل های XRay برای کنترل دقیق تنظیم پراکسی XRay پشتیبانی"
2015
+ " می کند."
2004
2016
 
2005
2017
  msgid "config.sub_full_xray_json_enable.label"
2006
- msgstr ""
2018
+ msgstr "لینک پیکربندی کامل XRay"
2007
2019
 
2008
2020
  msgid "config.sub_singbox_ssh_enable.description"
2009
2021
  msgstr ""
@@ -2015,7 +2027,7 @@ msgid "config.tcp_enable.description"
2015
2027
  msgstr "فعال کردن پروتکل TCP"
2016
2028
 
2017
2029
  msgid "config.tcp_enable.label"
2018
- msgstr "🟠 فعال سازی TCP"
2030
+ msgstr "🟠 TCP"
2019
2031
 
2020
2032
  msgid "config.telegram.description"
2021
2033
  msgstr ""
@@ -2023,7 +2035,7 @@ msgstr ""
2023
2035
  "دور بزند"
2024
2036
 
2025
2037
  msgid "config.telegram.label"
2026
- msgstr "پروکسی تلگرام"
2038
+ msgstr "تنظیمات تلگرام"
2027
2039
 
2028
2040
  msgid "config.telegram_adtag.description"
2029
2041
  msgstr ""
@@ -2082,7 +2094,7 @@ msgstr ""
2082
2094
  "target=\"_blank\">(بیشتر بدانید)</a></p>"
2083
2095
 
2084
2096
  msgid "config.tls_fragment_enable.label"
2085
- msgstr "⏯ TLS Fragment را فعال کنید"
2097
+ msgstr "⏯ TLS Fragment"
2086
2098
 
2087
2099
  msgid "config.tls_fragment_size.description"
2088
2100
  msgstr "اندازه هر بسته"
@@ -2100,7 +2112,7 @@ msgid "config.tls_mixed_case.description"
2100
2112
  msgstr "TLS Mixed SNI Case Fragmentation را فعال می کند"
2101
2113
 
2102
2114
  msgid "config.tls_mixed_case.label"
2103
- msgstr "🔠 TLS Mixed SNI Case را فعال کنید"
2115
+ msgstr "🔠 TLS Mixed SNI Case"
2104
2116
 
2105
2117
  msgid "config.tls_padding_enable.description"
2106
2118
  msgstr ""
@@ -2110,7 +2122,7 @@ msgstr ""
2110
2122
  "target=\"_blank\">(بیشتر بدانید)</a></p>"
2111
2123
 
2112
2124
  msgid "config.tls_padding_enable.label"
2113
- msgstr "♒️ TLS Padding را فعال کنید"
2125
+ msgstr "♒️ TLS Padding"
2114
2126
 
2115
2127
  msgid "config.tls_padding_length.description"
2116
2128
  msgstr "طول Padding برای تکه تکه شدن TLS"
@@ -2149,7 +2161,7 @@ msgid "config.trojan_enable.description"
2149
2161
  msgstr "فعال کردن پروتکل Trojan"
2150
2162
 
2151
2163
  msgid "config.trojan_enable.label"
2152
- msgstr "🟤 فعال سازی Trojan"
2164
+ msgstr "🟤 Trojan"
2153
2165
 
2154
2166
  msgid "config.tuic.description"
2155
2167
  msgstr ""
@@ -2189,7 +2201,7 @@ msgid "config.v2ray_enable.description"
2189
2201
  msgstr "مود V2Ray در حال حاضر اکانتینگ را پشتیبانی نمیکند و پیشنهاد نمیشود"
2190
2202
 
2191
2203
  msgid "config.v2ray_enable.label"
2192
- msgstr "♈️ فعالسازی V2Ray"
2204
+ msgstr "♈️ V2Ray"
2193
2205
 
2194
2206
  msgid "config.validation-error"
2195
2207
  msgstr "یکی از فیلدها دچار خطا شده است."
@@ -2206,7 +2218,7 @@ msgid "config.vless_enable.description"
2206
2218
  msgstr "فعال کردن پروتکل VLess"
2207
2219
 
2208
2220
  msgid "config.vless_enable.label"
2209
- msgstr "⚫️ فعال سازی VLess"
2221
+ msgstr "⚫️ VLess"
2210
2222
 
2211
2223
  msgid "config.vmess_enable.description"
2212
2224
  msgstr "فعال کردن پروتکل VMess"
@@ -2232,7 +2244,7 @@ msgstr ""
2232
2244
  "مخفی‌سازی آیپی سرور دور بزنید."
2233
2245
 
2234
2246
  msgid "config.warp_enable.label"
2235
- msgstr "فعالسازی +WARP"
2247
+ msgstr "+WARP"
2236
2248
 
2237
2249
  msgid "config.warp_mode.description"
2238
2250
  msgstr ""
@@ -2277,7 +2289,7 @@ msgstr ""
2277
2289
  "Next</a> کار می کند)</p>"
2278
2290
 
2279
2291
  msgid "config.wireguard_enable.label"
2280
- msgstr "🐉 فعال سازی وایرگارد"
2292
+ msgstr "🐉 وایرگارد"
2281
2293
 
2282
2294
  msgid "config.wireguard_ipv4.description"
2283
2295
  msgstr "-"
@@ -2322,13 +2334,13 @@ msgstr ""
2322
2334
  "Websocket یک تونل روی HTTP ایجاد می کند که برای استفاده در CDN مفید است"
2323
2335
 
2324
2336
  msgid "config.ws_enable.label"
2325
- msgstr "🔰 Websocket را فعال کنید"
2337
+ msgstr "🔰 Websocket"
2326
2338
 
2327
2339
  msgid "config.xtls_enable.description"
2328
2340
  msgstr "فعال کردن پروتکل XTLS"
2329
2341
 
2330
2342
  msgid "config.xtls_enable.label"
2331
- msgstr "🟢 فعال سازی XTLS"
2343
+ msgstr "🟢 XTLS"
2332
2344
 
2333
2345
  msgid "config.invalid uuid"
2334
2346
  msgstr ""
@@ -615,6 +615,9 @@ msgstr "Renomear arquivo"
615
615
  msgid "Reset Filters"
616
616
  msgstr "Limpar Filtros"
617
617
 
618
+ msgid "Reset Proxies"
619
+ msgstr ""
620
+
618
621
  msgid "Reset Usage Time:"
619
622
  msgstr "Tempo de reinicialização do uso do tráfego:"
620
623
 
@@ -1956,7 +1959,7 @@ msgid "config.telegram.description"
1956
1959
  msgstr "Um proxy projetado para o Telegram ignorar a filtragem do Telegram"
1957
1960
 
1958
1961
  msgid "config.telegram.label"
1959
- msgstr "Telegram Proxy"
1962
+ msgstr "Configurações do telegram"
1960
1963
 
1961
1964
  msgid "config.telegram_adtag.description"
1962
1965
  msgstr ""
@@ -673,6 +673,9 @@ msgstr "Переименовать файла"
673
673
  msgid "Reset Filters"
674
674
  msgstr "Сброс Фильтров"
675
675
 
676
+ msgid "Reset Proxies"
677
+ msgstr ""
678
+
676
679
  msgid "Reset Usage Time:"
677
680
  msgstr "Время сброса использования трафика:"
678
681
 
@@ -2046,7 +2049,7 @@ msgstr ""
2046
2049
  "Прокси-сервер, разработанный для Telegram для обхода фильтрации Telegram"
2047
2050
 
2048
2051
  msgid "config.telegram.label"
2049
- msgstr "Telegram прокси"
2052
+ msgstr "Конфигурации Телеграммы"
2050
2053
 
2051
2054
  msgid "config.telegram_adtag.description"
2052
2055
  msgstr ""
@@ -648,6 +648,9 @@ msgstr ""
648
648
  msgid "Reset Filters"
649
649
  msgstr "重置过滤器"
650
650
 
651
+ msgid "Reset Proxies"
652
+ msgstr ""
653
+
651
654
  msgid "Reset Usage Time:"
652
655
  msgstr "流量使用重置时间:"
653
656
 
@@ -164,6 +164,7 @@
164
164
  "Remote nodes are not supported yet!": "Remote nodes are not supported yet!",
165
165
  "Rename File": "Rename File",
166
166
  "Reset Filters": "Reset Filters",
167
+ "Reset Proxies": "Reset Proxies",
167
168
  "Reset Usage Time:": "Traffic usage reset time:",
168
169
  "Reset every month": "Monthly",
169
170
  "Reset package days": "📆 Reset Package's Days",
@@ -437,7 +438,7 @@
437
438
  },
438
439
  "domain_fronting": {
439
440
  "description": "It is used to simulate another website instead of your website in SNI. therefore, GFW can not filter your Domain\n<a href='https://github.com/hiddify/hiddify-config/wiki/%D8%A7%D8%B3%D8%AA%D9%81%D8%A7%D8%AF%D9%87-%D8%A7%D8%B2-%D8%AF%D8%A7%D9%85%DB%8C%D9%86-%D9%81%D8%B1%D8%A7%D9%86%D8%AA%DB%8C%D9%86%DA%AF'>Guide</a>. ⚠️CloudFlare does not support Domain Fronting.",
440
- "label": "🔒 Enable TLS Domain Fronting"
441
+ "label": "🔒 TLS Domain Fronting"
441
442
  },
442
443
  "domain_fronting_domain": {
443
444
  "description": "It is used to simulate another website instead of your website in SNI. therefore, GFW Can not filter your domain.",
@@ -445,11 +446,11 @@
445
446
  },
446
447
  "domain_fronting_http_enable": {
447
448
  "description": "Enabling HTTP Domain Fronting causes your domain to be block quickly.",
448
- "label": "Enable HTTP Domain Fronting"
449
+ "label": "HTTP Domain Fronting"
449
450
  },
450
451
  "domain_fronting_tls_enable": {
451
452
  "description": "In CloudFlare, TLS Domain Fronting is not supported. it will use Port 443 to connect to CDN",
452
- "label": "🔒 Enable TLS Domain Fronting"
453
+ "label": "🔒 TLS Domain Fronting"
453
454
  },
454
455
  "firewall": {
455
456
  "description": "Enabling Firewall will open used Ports (at least 22,443,80 and SSH) and close all other Ports",
@@ -465,11 +466,11 @@
465
466
  },
466
467
  "grpc_enable": {
467
468
  "description": "gRPC is a modern open source high performance Remote Procedure Call (RPC) framework. It can be used in supported CDNs",
468
- "label": "➿ Enable gRPC"
469
+ "label": "➿ gRPC"
469
470
  },
470
471
  "h2_enable": {
471
472
  "description": "Enable HTTP/2 Protocol",
472
- "label": "🔵 Enable h2"
473
+ "label": "🔵 h2"
473
474
  },
474
475
  "hidden": {
475
476
  "description": "config.hidden.description",
@@ -493,7 +494,7 @@
493
494
  },
494
495
  "httpupgrade_enable": {
495
496
  "description": "<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⚠️ <strong>Not Available in Xray based Clients. Only HiddifyNext, Singbox, and V2fly clients are supported.</strong>&nbsp;<a href=\"https://hiddify.com/manager/basic-concepts-and-troubleshooting/Basic-Concepts/#http-upgrade\" target=\"_blank\"><strong>(Read More)</strong></a></p>",
496
- "label": "🆙 Enable HTTPUpgrade Method"
497
+ "label": "🆙 HTTPUpgrade Method"
497
498
  },
498
499
  "hysteria": {
499
500
  "description": "Hysteria is a feature-packed proxy & relay tool optimized for lossy, unstable connections (e.g. satellite networks, congested public Wi-Fi, connecting to foreign servers from China)",
@@ -505,7 +506,7 @@
505
506
  },
506
507
  "hysteria_enable": {
507
508
  "description": "To Enable UDP based Hysteria Protocol",
508
- "label": "⚫️ Enable Hysteria2"
509
+ "label": "⚫️ Hysteria2"
509
510
  },
510
511
  "hysteria_obfs_enable": {
511
512
  "description": " Enables Hysteria Obfuscation (Salamander)",
@@ -530,7 +531,7 @@
530
531
  },
531
532
  "kcp_enable": {
532
533
  "description": "It is a UDP Based Protocol ",
533
- "label": "Enable KCP"
534
+ "label": "KCP"
534
535
  },
535
536
  "kcp_ports": {
536
537
  "description": "Comma separated integers indicating the ports to use as KCP connection.\n",
@@ -574,7 +575,7 @@
574
575
  },
575
576
  "mux_enable": {
576
577
  "description": "<p>Mux needs compatible clients. Mux in Hiddify Next and Singbox are not compatible with XRay.&nbsp;<a href=\"https://hiddify.com/manager/basic-concepts-and-troubleshooting/How-MUX-works-and-its-usage/\" target=\"_blank\">(Read More)</a></p>",
577
- "label": "Ⓜ️ MUX Enable (⚠️ Incompatible With Some Clients)"
578
+ "label": "Ⓜ️ MUX (⚠️ Incompatible With Some Clients)"
578
579
  },
579
580
  "mux_max_connections": {
580
581
  "description": "Maximum Connections. Conflict with Max Streams",
@@ -682,7 +683,7 @@
682
683
  },
683
684
  "quic_enable": {
684
685
  "description": "Enable QUIC Protocol",
685
- "label": "🟡 Enable QUIC"
686
+ "label": "🟡 QUIC"
686
687
  },
687
688
  "reality": {
688
689
  "description": "REALITY eliminate the Server-Side TLS Fingerprint Feature",
@@ -690,7 +691,7 @@
690
691
  },
691
692
  "reality_enable": {
692
693
  "description": "Enable Reality Protocol",
693
- "label": "🔴 Enable Reality"
694
+ "label": "🔴 Reality"
694
695
  },
695
696
  "reality_fallback_domain": {
696
697
  "description": "When the GFW visit the Websites in Server names, it will be redirect to this Domain.",
@@ -734,7 +735,7 @@
734
735
  },
735
736
  "shadowsocks2022_enable": {
736
737
  "description": "Shadowsocks 2022 is a secure Proxy Protocol for TCP and UDP traffic. The proxy traffic is indistinguishable from a random byte stream, and therefore can circumvent firewalls and Internet censors that rely on DPI (Deep Packet Inspection)",
737
- "label": "⭕️ Enable Shadowsocks 2022"
738
+ "label": "⭕️ Shadowsocks 2022"
738
739
  },
739
740
  "shadowsocks2022_method": {
740
741
  "description": "This method also used in ShadowTLS and SSFakeTLS",
@@ -786,7 +787,7 @@
786
787
  },
787
788
  "ssh_server_enable": {
788
789
  "description": "SSH Proxy is completely different than original SSH Server",
789
- "label": "✔️ Enable SSH Proxy"
790
+ "label": "✔️ SSH Proxy"
790
791
  },
791
792
  "ssh_server_port": {
792
793
  "description": "This is completely different from your original SSH server. It is a dedicated program.",
@@ -802,7 +803,7 @@
802
803
  },
803
804
  "ssr_enable": {
804
805
  "description": "ShadowsocksR is a Fork of the original Shadowsocks project, claimed to be superior in terms of security and stability. Not tested. Not support accounting.",
805
- "label": "Enable SSR"
806
+ "label": "SSR"
806
807
  },
807
808
  "ssr_fakedomain": {
808
809
  "description": "Please use a well known domain In your data center. for example, If you are In Azure data center, microsoft-update.com Is a good example",
@@ -829,8 +830,8 @@
829
830
  "label": "config.sub_full_singbox_enable.label"
830
831
  },
831
832
  "sub_full_xray_json_enable": {
832
- "description": "config.sub_full_xray_json_enable.description",
833
- "label": "config.sub_full_xray_json_enable.label"
833
+ "description": "XRay full link provides comprehensive configuration options for XRay-specific settings. This includes custom fragmentation and multiplexing (mux) in applications such as v2rayNG that support XRay protocols for fine-tuned control over XRay proxy setup.",
834
+ "label": "XRay Full Config Link"
834
835
  },
835
836
  "sub_singbox_ssh_enable": {
836
837
  "description": "config.sub_singbox_ssh_enable.description",
@@ -838,11 +839,11 @@
838
839
  },
839
840
  "tcp_enable": {
840
841
  "description": "Enable TCP Protocol",
841
- "label": "🟠 Enable TCP"
842
+ "label": "🟠 TCP"
842
843
  },
843
844
  "telegram": {
844
845
  "description": "A proxy designed for Telegram to bypass Telegram filtering",
845
- "label": "Telegram Proxy "
846
+ "label": "Telegram Configs"
846
847
  },
847
848
  "telegram_adtag": {
848
849
  "description": "It is used to show a Sponsored Channel in the client's chat list. To advertise a channel get a tag from @MTProxybot .\nenter code 0123456789ABCDEF0123456789ABCDEF in that bot.",
@@ -854,7 +855,7 @@
854
855
  },
855
856
  "telegram_enable": {
856
857
  "description": "<p data-pm-slice=\"1 1 []\">Telegram MTProto is used for Encapsulate Telegram Proxy as a tls traffic<br>⚠️ <span style=\"color:#d32f2f;\"><strong>This protocol requires a Direct Domain</strong></span></p>",
857
- "label": "✔️ Enable Telegram MTProto"
858
+ "label": "✔️ Telegram MTProto"
858
859
  },
859
860
  "telegram_fakedomain": {
860
861
  "description": "Please use a well known domain in your data center. for example, If you are in Azure data center, microsoft-update.com is a good example",
@@ -870,7 +871,7 @@
870
871
  },
871
872
  "tls_fragment_enable": {
872
873
  "description": "<p>Under some circumstances, it can bypass the SNI blacklist system. <a href=\"https://hiddify.com/manager/basic-concepts-and-troubleshooting/How-the-TLS-Trick-works-and-its-usage/\" target=\"_blank\">(Read More)</a></p>",
873
- "label": "⏯ Enable TLS Fragment"
874
+ "label": "⏯ TLS Fragment"
874
875
  },
875
876
  "tls_fragment_size": {
876
877
  "description": "The Size of each Packet",
@@ -882,11 +883,11 @@
882
883
  },
883
884
  "tls_mixed_case": {
884
885
  "description": "Enables TLS Mixed SNI Case Fragmentation",
885
- "label": "🔠 Enable TLS Mixed SNI Case"
886
+ "label": "🔠 TLS Mixed SNI Case"
886
887
  },
887
888
  "tls_padding_enable": {
888
889
  "description": "<p>Enables Padding for TLS Fragmentation. <a href=\"https://hiddify.com/manager/basic-concepts-and-troubleshooting/How-the-TLS-Trick-works-and-its-usage/#tls-padding\" target=\"_blank\">(Read More)</a></p>",
889
- "label": "♒️ Enable TLS Padding"
890
+ "label": "♒️ TLS Padding"
890
891
  },
891
892
  "tls_padding_length": {
892
893
  "description": "The length of the Padding for TLS Fragmentation",
@@ -910,7 +911,7 @@
910
911
  },
911
912
  "trojan_enable": {
912
913
  "description": "Enable Trojan Protocol",
913
- "label": "🟤 Enable Trojan"
914
+ "label": "🟤 Trojan"
914
915
  },
915
916
  "tuic": {
916
917
  "description": "Delicately-TUICed High-Performance proxy is on top of the QUIC protocol. \n\nTUIC's goal is to minimize the handshake latency as much as possible",
@@ -918,7 +919,7 @@
918
919
  },
919
920
  "tuic_enable": {
920
921
  "description": "It is a UDP based protocol similar to QUIC",
921
- "label": "⚫️ Enable TUIC"
922
+ "label": "⚫️ TUIC"
922
923
  },
923
924
  "tuic_port": {
924
925
  "description": "Use comma to separate ports like ( 63000,60000 )",
@@ -934,18 +935,18 @@
934
935
  },
935
936
  "v2ray_enable": {
936
937
  "description": "V2ray does not support accounting and not suggested",
937
- "label": "♈️ Enable V2Ray "
938
+ "label": "♈️ V2Ray "
938
939
  },
939
940
  "validation-error": "There is an error in one of the fields.",
940
941
  "validation-success": "Configs have been changed successfully. Click %(link)s to apply the configs. It may take 2 minutes to apply",
941
942
  "validation-success-no-reset": " ✅ Configs have been changed successfully",
942
943
  "vless_enable": {
943
944
  "description": "Enable VLess Protocol",
944
- "label": "⚫️ Enable VLess"
945
+ "label": "⚫️ VLess"
945
946
  },
946
947
  "vmess_enable": {
947
948
  "description": "Active VMess Protocol",
948
- "label": "🟣 Enable VMess"
949
+ "label": "🟣 VMess"
949
950
  },
950
951
  "warp-https-domain-for-warp-site": "config.warp-https-domain-for-warp-site",
951
952
  "warp": {
@@ -954,7 +955,7 @@
954
955
  },
955
956
  "warp_enable": {
956
957
  "description": "Warp helps you bypass Google, Spotify and Netflix restrictions by hiding server IP ",
957
- "label": "Enable WARP+"
958
+ "label": "WARP+"
958
959
  },
959
960
  "warp_mode": {
960
961
  "description": "✴️ All : All Sites use Warp IPs in outbound\n<br>\n☑️ Only Domestic and Blocked Sites: Only Domestic Sites and websites like Google, Spotify, Netflix, OpenAi, IPinfo.io use Warp IPs in outbound",
@@ -974,7 +975,7 @@
974
975
  },
975
976
  "wireguard_enable": {
976
977
  "description": "<p>WireGuard is UDP based protocol. (⚠️ It is Working In <a href=\"https://github.com/hiddify/hiddify-next\" target=\"_blank\">Hiddify Next</a>)</p>",
977
- "label": "🐉 Enable WireGuard"
978
+ "label": "🐉 WireGuard"
978
979
  },
979
980
  "wireguard_ipv4": {
980
981
  "description": "-",
@@ -1002,11 +1003,11 @@
1002
1003
  },
1003
1004
  "ws_enable": {
1004
1005
  "description": "Websocket creates a tunnel over HTTP that is useful to be used in CDN",
1005
- "label": "🔰 Enable Websocket"
1006
+ "label": "🔰 Websocket"
1006
1007
  },
1007
1008
  "xtls_enable": {
1008
1009
  "description": "Enable XTLS Protocol",
1009
- "label": "🟢 Enable XTLS"
1010
+ "label": "🟢 XTLS"
1010
1011
  }
1011
1012
  },
1012
1013
  "config.invalid uuid": "Invalid UUID secret. example: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6\n\n",
@@ -1021,7 +1022,7 @@
1021
1022
  "domain": "Domain",
1022
1023
  "domain_fronting": {
1023
1024
  "description": "It is used to simulate another website instead of your website in SNI. therefore, GFW can not filter your Domain\n<a href='https://github.com/hiddify/hiddify-config/wiki/Guide-for-domain-fronting'>Guide</a>. ⚠️CloudFlare does not support Domain Fronting.",
1024
- "label": "🔒 Enable TLS Domain Fronting"
1025
+ "label": "🔒 TLS Domain Fronting"
1025
1026
  },
1026
1027
  "ip": "IP",
1027
1028
  "mode": "Mode"
@@ -164,6 +164,7 @@
164
164
  "Remote nodes are not supported yet!": "گره های راه دور هنوز پشتیبانی نمی شوند!",
165
165
  "Rename File": "تغییر نام پرونده",
166
166
  "Reset Filters": "برگرداندن فیلتر ها به حالت اول",
167
+ "Reset Proxies": "",
167
168
  "Reset Usage Time:": "زمان صفر شدن حجم:",
168
169
  "Reset every month": "ماهانه",
169
170
  "Reset package days": "📆 ریست زمان شروع بسته کاربر",
@@ -465,11 +466,11 @@
465
466
  },
466
467
  "grpc_enable": {
467
468
  "description": "gRPC یک چارچوب متن باز مدرن با کارایی بالا Remote Procedure Call (RPC) است. می توان از آن در CDN های پشتیبانی شده استفاده کرد",
468
- "label": "➿ gRPC را فعال کنید"
469
+ "label": "➿ gRPC"
469
470
  },
470
471
  "h2_enable": {
471
472
  "description": "فعال کردن پروتکل HTTP/2",
472
- "label": "🔵 فعال سازی h2"
473
+ "label": "🔵 h2"
473
474
  },
474
475
  "hidden": {
475
476
  "description": "-",
@@ -492,8 +493,8 @@
492
493
  "label": "☑️ اجازه اتصال HTTP"
493
494
  },
494
495
  "httpupgrade_enable": {
495
- "description": "<p style=\"direction:rtl\">HTTPUpgrade یک درخواست ارتقاء HTTP ۱.۱ است و پاسخ را قبل از استفاده مستقیم از اتصال تکمیل می کند. این شبیه به WebSocket است که یک کانال ایجاد می کند که می تواند توسط بسیاری از پروکسی های معکوس و CDN ها ارسال شود، بدون اینکه نیازی به رسیدگی به تمام مسائل پیرامون خود پروتکل WebSocket باشد.<br />\n⚠️ <strong>در نرم افزارهای مبتنی بر XRay موجود نیست. فقط نرم افزارهای HiddifyNext، Singbox و V۲fly پشتیبانی می شوند.&nbsp;</strong><a href=\"https://hiddify.com/fa/manager/basic-concepts-and-troubleshooting/Basic-Concepts/#http-upgarde\" target=\"_blank\"><strong>(بیشتر بدانید)</strong></a></p>",
496
- "label": "🆙 فعالسازی HTTPUpgrade"
496
+ "description": "<p style=\"direction:rtl\">HTTPUpgrade یک درخواست ارتقاء HTTP ۱.۱ است و پاسخ را قبل از استفاده مستقیم از اتصال تکمیل می کند. این شبیه به WebSocket است که یک کانال ایجاد می کند که می تواند توسط بسیاری از پروکسی های معکوس و CDN ها ارسال شود، بدون اینکه نیازی به رسیدگی به تمام مسائل پیرامون خود پروتکل WebSocket باشد.<br /><a href=\"https://hiddify.com/fa/manager/basic-concepts-and-troubleshooting/Basic-Concepts/#http-upgarde\" target=\"_blank\"><strong>(بیشتر بدانید)</strong></a></p>",
497
+ "label": "🆙 HTTPUpgrade"
497
498
  },
498
499
  "hysteria": {
499
500
  "description": "Hysteria یک ابزار پروکسی و رله پر از ویژگی است که برای اتصالات با اتلاف و ناپایدار بهینه شده است (مانند شبکه های ماهواره ای، Wi-Fi عمومی متراکم، اتصال به سرورهای خارجی از چین)",
@@ -505,11 +506,11 @@
505
506
  },
506
507
  "hysteria_enable": {
507
508
  "description": "برای فعال کردن پروتکل هیستریا مبتنی بر UDP",
508
- "label": "⚪️ هیستریا را فعال کنید"
509
+ "label": "⚪️ هیستریا"
509
510
  },
510
511
  "hysteria_obfs_enable": {
511
512
  "description": "مبهم سازی هیستری (Salamander) را فعال می کند",
512
- "label": "🎛 Hysteria OBFS را فعال کنید"
513
+ "label": "🎛 Hysteria OBFS"
513
514
  },
514
515
  "hysteria_port": {
515
516
  "description": "پورت Hysteria UDP برای مثال 5678",
@@ -530,7 +531,7 @@
530
531
  },
531
532
  "kcp_enable": {
532
533
  "description": "این یک پروتکل مبتنی بر UDP است.",
533
- "label": "KCP را فعال کنید."
534
+ "label": "KCP."
534
535
  },
535
536
  "kcp_ports": {
536
537
  "description": "پورت هایی که برای استفاده اتصال KCP هستند. برای ورود چند پورت، آنها را با کاما از هم جدا کنید. ",
@@ -682,7 +683,7 @@
682
683
  },
683
684
  "quic_enable": {
684
685
  "description": "فعال کردن پروتکل QUIC",
685
- "label": "🟡 فعال سازی QUIC"
686
+ "label": "🟡 QUIC"
686
687
  },
687
688
  "reality": {
688
689
  "description": "REALITY قابلیت اثر انگشت TLS سمت سرور را حذف می کند",
@@ -690,7 +691,7 @@
690
691
  },
691
692
  "reality_enable": {
692
693
  "description": "فعال کردن پروتکل Reality",
693
- "label": "🔴 فعال سازی Reality"
694
+ "label": "🔴 Reality"
694
695
  },
695
696
  "reality_fallback_domain": {
696
697
  "description": "هنگامی که GTW از وب‌ سایت‌ها در نام سرور بازدید می‌کند، به این دامنه هدایت می‌شود.",
@@ -734,7 +735,7 @@
734
735
  },
735
736
  "shadowsocks2022_enable": {
736
737
  "description": "Shadowsocks 2022 یک پروتکل پروکسی امن برای ترافیک TCP و UDP است. ترافیک پراکسی از یک جریان بایت تصادفی قابل تشخیص نیست و بنابراین می تواند فایروال ها و سانسورهای اینترنتی را که به DPI (بازرسی عمیق بسته) متکی هستند، دور بزند",
737
- "label": "⭕️ Shadowsocks 2022 را فعال کنید"
738
+ "label": "⭕️ Shadowsocks 2022"
738
739
  },
739
740
  "shadowsocks2022_method": {
740
741
  "description": "این روش در ShadowTLS و SSFakeTLS نیز استفاده می شود",
@@ -786,7 +787,7 @@
786
787
  },
787
788
  "ssh_server_enable": {
788
789
  "description": "این SSH پروکسی با SSH سرور اصلی کاملا متفاوت است و امکان اجرای دستورات را ندارد",
789
- "label": "✔️ پروکسی SSH را فعال کنید"
790
+ "label": "✔️ پروکسی SSH"
790
791
  },
791
792
  "ssh_server_port": {
792
793
  "description": "این پورت کاملا با پورت سرور اصلی SSH شما متفاوت است. این یک برنامه اختصاصی است",
@@ -829,8 +830,8 @@
829
830
  "label": ""
830
831
  },
831
832
  "sub_full_xray_json_enable": {
832
- "description": "",
833
- "label": ""
833
+ "description": "لینک کامل XRay گزینه های پیکربندی جامعی را برای تنظیمات خاص XRay فراهم می کند. این شامل تقسیم بندی سفارشی و چندگانه سازی (mux) در برنامه هایی مانند v2rayNG است که از پروتکل های XRay برای کنترل دقیق تنظیم پراکسی XRay پشتیبانی می کند.",
834
+ "label": "لینک پیکربندی کامل XRay"
834
835
  },
835
836
  "sub_singbox_ssh_enable": {
836
837
  "description": "",
@@ -838,11 +839,11 @@
838
839
  },
839
840
  "tcp_enable": {
840
841
  "description": "فعال کردن پروتکل TCP",
841
- "label": "🟠 فعال سازی TCP"
842
+ "label": "🟠 TCP"
842
843
  },
843
844
  "telegram": {
844
845
  "description": "پروکسی تلگرام برای استفاده درون اپ تلگرام طراحی شده تا فیلترینگ تلگرام را دور بزند",
845
- "label": "پروکسی تلگرام"
846
+ "label": "تنظیمات تلگرام"
846
847
  },
847
848
  "telegram_adtag": {
848
849
  "description": "برای نشان دادن کانال اسپانسر شده در لیست چت کاربر استفاده می شود. برای تبلیغ یک کانال یک تگ از @MTProxybot دریافت کنید.\nاگر در بات تلگرام نیاز به کد داشت کد 0123456789ABCDEF0123456789ABCDEF وارد کنید",
@@ -870,7 +871,7 @@
870
871
  },
871
872
  "tls_fragment_enable": {
872
873
  "description": "<p style=\"direction:rtl\">تحت برخی شرایط، می تواند سیستم لیست سیاه SNI را دور بزند.&nbsp;<a href=\"https://hiddify.com/fa/manager/basic-concepts-and-troubleshooting/How-the-TLS-Trick-works-and-its-usage/\" target=\"_blank\">(بیشتر بدانید)</a></p>",
873
- "label": "⏯ TLS Fragment را فعال کنید"
874
+ "label": "⏯ TLS Fragment"
874
875
  },
875
876
  "tls_fragment_size": {
876
877
  "description": "اندازه هر بسته",
@@ -882,11 +883,11 @@
882
883
  },
883
884
  "tls_mixed_case": {
884
885
  "description": "TLS Mixed SNI Case Fragmentation را فعال می کند",
885
- "label": "🔠 TLS Mixed SNI Case را فعال کنید"
886
+ "label": "🔠 TLS Mixed SNI Case"
886
887
  },
887
888
  "tls_padding_enable": {
888
889
  "description": "<p style=\"direction:rtl\">Padding تکه تکه شدن TLS را فعال می کند.&nbsp;<a href=\"https://hiddify.com/fa/manager/basic-concepts-and-troubleshooting/How-the-TLS-Trick-works-and-its-usage/#tls-padding\" target=\"_blank\">(بیشتر بدانید)</a></p>",
889
- "label": "♒️ TLS Padding را فعال کنید"
890
+ "label": "♒️ TLS Padding"
890
891
  },
891
892
  "tls_padding_length": {
892
893
  "description": "طول Padding برای تکه تکه شدن TLS",
@@ -910,7 +911,7 @@
910
911
  },
911
912
  "trojan_enable": {
912
913
  "description": "فعال کردن پروتکل Trojan",
913
- "label": "🟤 فعال سازی Trojan"
914
+ "label": "🟤 Trojan"
914
915
  },
915
916
  "tuic": {
916
917
  "description": "پروکسی Delicately-TUICed با کارایی بالا روی پروتکل QUIC است. \nهدف TUIC این است که تأخیر handshake را تا حد امکان به حداقل برساند.",
@@ -934,14 +935,14 @@
934
935
  },
935
936
  "v2ray_enable": {
936
937
  "description": "مود V2Ray در حال حاضر اکانتینگ را پشتیبانی نمیکند و پیشنهاد نمیشود",
937
- "label": "♈️ فعالسازی V2Ray"
938
+ "label": "♈️ V2Ray"
938
939
  },
939
940
  "validation-error": "یکی از فیلدها دچار خطا شده است.",
940
941
  "validation-success": "تنظیمات با موفقیت ذخیره شدند. لطفا بر روی این لینک: %(link)s کلیک کنید تا بر روی سیستم اعمال شوند. این کار ممکن است 2 دقیقه طول بکشد",
941
942
  "validation-success-no-reset": " ✅ تنظیمات با موفقیت تغییر کرد",
942
943
  "vless_enable": {
943
944
  "description": "فعال کردن پروتکل VLess",
944
- "label": "⚫️ فعال سازی VLess"
945
+ "label": "⚫️ VLess"
945
946
  },
946
947
  "vmess_enable": {
947
948
  "description": "فعال کردن پروتکل VMess",
@@ -954,7 +955,7 @@
954
955
  },
955
956
  "warp_enable": {
956
957
  "description": "WARP به شما کمک می کند تا محدودیت‌های گوگل، اسپاتیفای و نتفلیکس را با مخفی‌سازی آیپی سرور دور بزنید.",
957
- "label": "فعالسازی +WARP"
958
+ "label": "+WARP"
958
959
  },
959
960
  "warp_mode": {
960
961
  "description": "✴️ همه : همه سایت‌ها از Warp برای ترافیک خروجی استفاده می‌کنند.\n<br>\n☑️ فقط سایت‌های داخلی و مسدود شده: فقط سایت های داخلی و وبسایت‌هایی مثل Google, Spotifiy, Netflix, OpenAi, IPinfo.io از Warp برای ترافیک خروجی استفاده می‌کنند.",
@@ -974,7 +975,7 @@
974
975
  },
975
976
  "wireguard_enable": {
976
977
  "description": "<p>WireGuard پروتکل مبتنی بر UDP است. (⚠️ فقط در <a href=\"https://github.com/hiddify/hiddify-next\" target=\"_blank\">Hiddify Next</a> کار می کند)</p>",
977
- "label": "🐉 فعال سازی وایرگارد"
978
+ "label": "🐉 وایرگارد"
978
979
  },
979
980
  "wireguard_ipv4": {
980
981
  "description": "-",
@@ -1002,11 +1003,11 @@
1002
1003
  },
1003
1004
  "ws_enable": {
1004
1005
  "description": "Websocket یک تونل روی HTTP ایجاد می کند که برای استفاده در CDN مفید است",
1005
- "label": "🔰 Websocket را فعال کنید"
1006
+ "label": "🔰 Websocket"
1006
1007
  },
1007
1008
  "xtls_enable": {
1008
1009
  "description": "فعال کردن پروتکل XTLS",
1009
- "label": "🟢 فعال سازی XTLS"
1010
+ "label": "🟢 XTLS"
1010
1011
  }
1011
1012
  },
1012
1013
  "config.invalid uuid": "رمز UUID نامعتبر است. به عنوان مثال: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6",
@@ -164,6 +164,7 @@
164
164
  "Remote nodes are not supported yet!": "Nós remotos ainda não são suportados!",
165
165
  "Rename File": "Renomear arquivo",
166
166
  "Reset Filters": "Limpar Filtros",
167
+ "Reset Proxies": "",
167
168
  "Reset Usage Time:": "Tempo de reinicialização do uso do tráfego:",
168
169
  "Reset every month": "Por mês",
169
170
  "Reset package days": "📆 Redefinir dias do pacote",
@@ -842,7 +843,7 @@
842
843
  },
843
844
  "telegram": {
844
845
  "description": "Um proxy projetado para o Telegram ignorar a filtragem do Telegram",
845
- "label": "Telegram Proxy"
846
+ "label": "Configurações do telegram"
846
847
  },
847
848
  "telegram_adtag": {
848
849
  "description": "É usado para mostrar um canal patrocinado na lista de chat do cliente. Para anunciar um canal, obtenha uma tag de @MTProxybot .\ndigite o código 0123456789ABCDEF0123456789ABCDEF nesse bot.",
@@ -164,6 +164,7 @@
164
164
  "Remote nodes are not supported yet!": "Удаленные узлы пока не поддерживаются!",
165
165
  "Rename File": "Переименовать файла",
166
166
  "Reset Filters": "Сброс Фильтров",
167
+ "Reset Proxies": "",
167
168
  "Reset Usage Time:": "Время сброса использования трафика:",
168
169
  "Reset every month": "Ежемесячно",
169
170
  "Reset package days": "📆 Сбросить пакет дней",
@@ -842,7 +843,7 @@
842
843
  },
843
844
  "telegram": {
844
845
  "description": "Прокси-сервер, разработанный для Telegram для обхода фильтрации Telegram",
845
- "label": "Telegram прокси"
846
+ "label": "Конфигурации Телеграммы"
846
847
  },
847
848
  "telegram_adtag": {
848
849
  "description": "Это используется для отображения спонсируемого канала в списке чатов клиента. Для рекламы канала получите тег от @MTProxybot.\nвведите в этот бот код 0123456789ABCDEF0123456789ABCDEF.",
@@ -164,6 +164,7 @@
164
164
  "Remote nodes are not supported yet!": "尚不支持远程节点!",
165
165
  "Rename File": "",
166
166
  "Reset Filters": "重置过滤器",
167
+ "Reset Proxies": "",
167
168
  "Reset Usage Time:": "流量使用重置时间:",
168
169
  "Reset every month": "每月",
169
170
  "Reset package days": "📆 重置套餐天数",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hiddifypanel
3
- Version: 10.30.0.dev0
3
+ Version: 10.30.0.dev1
4
4
  Summary: hiddifypanel multi proxy panel
5
5
  Home-page: https://github.com/hiddify/hiddify-manager/
6
6
  Author: hiddify
@@ -1,10 +1,10 @@
1
1
  hiddifypanel/Events.py,sha256=AlnRdjVul0jP-NCT4-zoaQgowoOo-JhdQB4ytetAFKA,723
2
- hiddifypanel/VERSION,sha256=iFOm8_EYSeLADc6D0eOtLTeOiFK_eugA6ZHeaQfBL_w,13
3
- hiddifypanel/VERSION.py,sha256=q_YsmAkCgFy0y0jLVUSiq9g_Gq3lB7hSsTScwWIh9Yc,118
2
+ hiddifypanel/VERSION,sha256=RPMmz10GytpfDTOS7Eo1JdhE5YEJXjE7XI849wFsw-U,13
3
+ hiddifypanel/VERSION.py,sha256=t3LDoCq0Q-4w5owfE9IuLZnVv-K_yIA0cPk4OgKIr7c,118
4
4
  hiddifypanel/__init__.py,sha256=aLukp3ORszdcH4G9J-MlxhjHN6yFlOuOE6mm-L3aG_g,266
5
5
  hiddifypanel/__main__.py,sha256=IVchnXpK6bm8T3N--mN17HBQNLMeLAjyP7iwzULexB4,218
6
6
  hiddifypanel/auth.py,sha256=5GUwwKCRY90RS0WTKPfqzuOYuLuwGLpNLpnKmubf7DE,7405
7
- hiddifypanel/base.py,sha256=X-mHWRvfjTUiOrGed4PWtyzEMgNjHVRtzTNboaGkgtw,5640
7
+ hiddifypanel/base.py,sha256=MrOtA0mfPR5E-oGodUS-USfy9bpBkUWF9CZ7Mri8xFI,5626
8
8
  hiddifypanel/cache.py,sha256=6snErbx9rD6XSC2fO79XZy3EGMJoZB-yhnAMEWTPWAg,880
9
9
  hiddifypanel/database.py,sha256=14sfbGEG-NCqkfUtyLvcO2JbkQ3-Fzs-MezPNkNbvgk,717
10
10
  hiddifypanel/drivers/abstract_driver.py,sha256=HpWkgbWVWF8n3WhDe0BlxsIF1WTWO57AQEAEb2ZVCPM,223
@@ -125,9 +125,10 @@ hiddifypanel/panel/admin/templates/fake_for_translation/Flask-AdminLTE3/template
125
125
  hiddifypanel/panel/admin/templates/fake_for_translation/Flask-AdminLTE3/templates/flask-admin/rediscli/response.html,sha256=FekGe9v4RIMoGZlnk9TwqOFjSUVaRweLeZf-oFCVOck,965
126
126
  hiddifypanel/panel/admin/templates/model/admin_list.html,sha256=lpjiAl7kR5xb0fLpI5-kmf9uA6CVSAFuNE-2WZ152yQ,690
127
127
  hiddifypanel/panel/admin/templates/model/domain_list.html,sha256=rrPYKISPXcwYreMp2MrJb-sEL9-6dCZF_dk6ejObrm8,414
128
+ hiddifypanel/panel/admin/templates/model/proxydetail_list.html,sha256=5VVFPZkcGhfKVq842CWggv1Wte6CQodrbGxO4AJ9Bo0,206
128
129
  hiddifypanel/panel/admin/templates/model/user_list.html,sha256=hwKZaHClJogrIVvIKmemdY0rJMwg9yIB7cqHh_nDVqU,5830
129
130
  hiddifypanel/panel/commercial/ParentDomainAdmin.py,sha256=n3X7_PuQBr2zlP6K5A0EHmtRdI9Vy49YORim_9L2QFA,4886
130
- hiddifypanel/panel/commercial/ProxyDetailsAdmin.py,sha256=mXjn216RPhPflcp3LOxt8oc0egwsX0V1tAwmtBf0U_E,2794
131
+ hiddifypanel/panel/commercial/ProxyDetailsAdmin.py,sha256=lRYsR-oLd45DO0sH3_Ar6i3EZVG7WwoWE6YLdKjb19c,3258
131
132
  hiddifypanel/panel/commercial/__init__.py,sha256=oanPV36n6MXiVhiq_NYL6K9ENhQXZGQM5r4c9oPO0CQ,2322
132
133
  hiddifypanel/panel/commercial/restapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
134
  hiddifypanel/panel/commercial/restapi/v1/__init__.py,sha256=PKpT6Jdh37udexOnOdsvA681nqStGY-jqalEBB9_utU,1208
@@ -820,24 +821,24 @@ hiddifypanel/templates/redirect.html,sha256=K9x_O4P96vEkqBhOXIhoGrWw1KIqd2bL0BjI
820
821
  hiddifypanel/templates/static.html,sha256=jp6q4wtx-k2A_cjqJoNiMS7Ee30arE45qI3ev4d5ky4,165
821
822
  hiddifypanel/templates/hiddify-flask-admin/actions.html,sha256=2NeITe2e-lPKCk_o511tCIqVtrPu8LYHE1wTCtrFUrI,1331
822
823
  hiddifypanel/templates/hiddify-flask-admin/list.html,sha256=MBGrTqZpzNLe4sZy0RozvXNr8seFUQc2C6v88BJtNWc,11095
823
- hiddifypanel/translations/en/LC_MESSAGES/messages.mo,sha256=ykpARN38IyDMGc7Q-x5KncjRmdwKTnn4xa5m41S8X0g,76430
824
- hiddifypanel/translations/en/LC_MESSAGES/messages.po,sha256=7s0S06OjADs4mRlzqanMhqGqrgZcZA2pW8kR1-WNBlI,79655
825
- hiddifypanel/translations/fa/LC_MESSAGES/messages.mo,sha256=l75n6csU3JpC1tI7nRS8OuY8cXdwLQFTRItm9tF5u0o,96521
826
- hiddifypanel/translations/fa/LC_MESSAGES/messages.po,sha256=RZoEI8tYFZJP6XZMOZ638rU7BapjYClQGENFSKMkKDM,102231
827
- hiddifypanel/translations/pt/LC_MESSAGES/messages.mo,sha256=hT_JJzw2MMnPdp0eeP9M-BrFb1etJUTqdMWu1uZdE5c,60445
828
- hiddifypanel/translations/pt/LC_MESSAGES/messages.po,sha256=JB-0-jjEZoywieL_OZgxg7I-_uF6QKhD5v6LhiK_aM8,70886
829
- hiddifypanel/translations/ru/LC_MESSAGES/messages.mo,sha256=Kstgn8O3VB4iCBrfjrl943DBATXAA9NVBu_Hvl_0JDQ,99854
830
- hiddifypanel/translations/ru/LC_MESSAGES/messages.po,sha256=1_OvZZYvbmXQc94m4kRu2-2Fim4l37gZHZjzhUGzTTQ,106460
831
- hiddifypanel/translations/zh/LC_MESSAGES/messages.mo,sha256=YKg8zr48nc1Imh_Ft6uDaBApwODxfxoydRQJqH8aan8,60737
832
- hiddifypanel/translations/zh/LC_MESSAGES/messages.po,sha256=LVXS1tGfzyemDq9dO3zhu6IQbigZckSy9U6GofhXRV0,70083
833
- hiddifypanel/translations.i18n/en.json,sha256=pFPbTOl8jimQDwIL7CVmCBj7lrfcUMwqkRrRcaKb8qE,69336
834
- hiddifypanel/translations.i18n/fa.json,sha256=u9UQsvbS6NGWglqjVBjNfF3MG20_XkmkFT3-x6L3MqU,91915
835
- hiddifypanel/translations.i18n/pt.json,sha256=jB4NnW3hNoAUUCY3OkYEDPSvcK5rYNCpiPE0TjE6HMQ,60891
836
- hiddifypanel/translations.i18n/ru.json,sha256=xHFydeEUhQH0qi_5-skbujVohc53uYy1yDGCSKpNMzA,96066
837
- hiddifypanel/translations.i18n/zh.json,sha256=nT7fa7ql8Y5YRNbbYCaVyxU7oVK42IA2JW_TqQ7ahyc,60334
838
- hiddifypanel-10.30.0.dev0.dist-info/LICENSE.md,sha256=oDrt-cUsyiDGnRPjEJh-3dH2ddAuK_bIVBD8ntkOtZw,19807
839
- hiddifypanel-10.30.0.dev0.dist-info/METADATA,sha256=SgwXlEB-IEpuTOcsB4VdZxlbF6dVLPRxLuWLe16Yl0I,4044
840
- hiddifypanel-10.30.0.dev0.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
841
- hiddifypanel-10.30.0.dev0.dist-info/entry_points.txt,sha256=Xzpqlh3nwBtZhoV9AANJykano056VJvYzaujxPztJaM,60
842
- hiddifypanel-10.30.0.dev0.dist-info/top_level.txt,sha256=rv-b3qFWUZQTBy0kyBfsr7L6tPpeO7AaQlLHXn-HI5M,13
843
- hiddifypanel-10.30.0.dev0.dist-info/RECORD,,
824
+ hiddifypanel/translations/en/LC_MESSAGES/messages.mo,sha256=IVOjWoKapKMrpjLCB2CyDrjfd4KsVQL6OoTNsGpN69w,76462
825
+ hiddifypanel/translations/en/LC_MESSAGES/messages.po,sha256=XH-o-WUNGrfLlDONFi7NAZU6uJVg_LOQbwnM2KHj9XQ,79701
826
+ hiddifypanel/translations/fa/LC_MESSAGES/messages.mo,sha256=F_GqGDTB0PChY93xm7YQQ9PbfukjNYAPaPK9yF61vcE,96451
827
+ hiddifypanel/translations/fa/LC_MESSAGES/messages.po,sha256=8-KfPE3elLTi9jyX4mUa2zQTuwp_WA3HNkEEDdTMons,102102
828
+ hiddifypanel/translations/pt/LC_MESSAGES/messages.mo,sha256=ljVuX237eyU-eWxkBTSaUYzZAjWQy7eTGHBaS0D7TJg,60458
829
+ hiddifypanel/translations/pt/LC_MESSAGES/messages.po,sha256=PFVBTvQAKL4acU49xqf9G3z8WfypqBXzkHWmFb2Kmtc,70932
830
+ hiddifypanel/translations/ru/LC_MESSAGES/messages.mo,sha256=HlbtjiwCb2cVfATRKHw7xzZdfqVp9itYLb8KF-TC_pA,99878
831
+ hiddifypanel/translations/ru/LC_MESSAGES/messages.po,sha256=uNNQ_jmPykCDIx13hQ3thDaur6XQ7N9lfukF3G_XEeA,106517
832
+ hiddifypanel/translations/zh/LC_MESSAGES/messages.mo,sha256=buRlOVh6VIbWn1NDY_01DyQ3hqf0oULAz3ybHfo5IIk,60737
833
+ hiddifypanel/translations/zh/LC_MESSAGES/messages.po,sha256=_8pIQz7C8NtdOyEXxHT6pA7f5_W3Qotiz0Y2UJIc-sY,70116
834
+ hiddifypanel/translations.i18n/en.json,sha256=wFHEoqtJkpv8qXIv7KCb5lhD89tmeNkca5CiUY6ivkg,69360
835
+ hiddifypanel/translations.i18n/fa.json,sha256=GsO1skyWExqBh56gO1SoI-Ab05Uh8NMPJoic1EFcFfQ,91749
836
+ hiddifypanel/translations.i18n/pt.json,sha256=69muFjHkp60DDBt83mblENOF3_9Nr1ti13kE2wBH7ng,60927
837
+ hiddifypanel/translations.i18n/ru.json,sha256=LT8A1eZOI0RIE4VW-aGS9rHQcSextutMIQNgsSwSFQY,96113
838
+ hiddifypanel/translations.i18n/zh.json,sha256=xw9BJHGFbjgqA8dwl4fBCc0BZ9aopwzPtPkljpVJ9Fk,60357
839
+ hiddifypanel-10.30.0.dev1.dist-info/LICENSE.md,sha256=oDrt-cUsyiDGnRPjEJh-3dH2ddAuK_bIVBD8ntkOtZw,19807
840
+ hiddifypanel-10.30.0.dev1.dist-info/METADATA,sha256=4L65g7wv3JYbuqyXFHHprpUZ1k-0_7xbpxpdkvspSC0,4044
841
+ hiddifypanel-10.30.0.dev1.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
842
+ hiddifypanel-10.30.0.dev1.dist-info/entry_points.txt,sha256=Xzpqlh3nwBtZhoV9AANJykano056VJvYzaujxPztJaM,60
843
+ hiddifypanel-10.30.0.dev1.dist-info/top_level.txt,sha256=rv-b3qFWUZQTBy0kyBfsr7L6tPpeO7AaQlLHXn-HI5M,13
844
+ hiddifypanel-10.30.0.dev1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (70.1.0)
2
+ Generator: setuptools (70.1.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5