hiddifypanel 10.70.9__py3-none-any.whl → 10.80.0__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 (89) hide show
  1. hiddifypanel/VERSION +1 -1
  2. hiddifypanel/VERSION.py +5 -2
  3. hiddifypanel/__init__.py +5 -1
  4. hiddifypanel/apps/__init__.py +0 -0
  5. hiddifypanel/apps/asgi_app.py +7 -0
  6. hiddifypanel/apps/celery_app.py +3 -0
  7. hiddifypanel/apps/wsgi_app.py +5 -0
  8. hiddifypanel/auth.py +8 -3
  9. hiddifypanel/base.py +43 -126
  10. hiddifypanel/base_setup.py +82 -0
  11. hiddifypanel/cache.py +3 -2
  12. hiddifypanel/celery.py +45 -0
  13. hiddifypanel/database.py +7 -0
  14. hiddifypanel/drivers/ssh_liberty_bridge_api.py +2 -1
  15. hiddifypanel/drivers/wireguard_api.py +1 -1
  16. hiddifypanel/hutils/crypto.py +27 -0
  17. hiddifypanel/hutils/flask.py +5 -3
  18. hiddifypanel/hutils/network/cf_api.py +5 -5
  19. hiddifypanel/hutils/proxy/__init__.py +1 -0
  20. hiddifypanel/hutils/proxy/clash.py +3 -3
  21. hiddifypanel/hutils/proxy/shared.py +14 -18
  22. hiddifypanel/hutils/proxy/singbox.py +4 -2
  23. hiddifypanel/hutils/proxy/wireguard.py +34 -0
  24. hiddifypanel/hutils/proxy/xray.py +3 -3
  25. hiddifypanel/hutils/proxy/xrayjson.py +10 -7
  26. hiddifypanel/models/admin.py +1 -1
  27. hiddifypanel/models/base_account.py +3 -0
  28. hiddifypanel/models/config.py +5 -2
  29. hiddifypanel/models/config_enum.py +15 -2
  30. hiddifypanel/models/proxy.py +1 -1
  31. hiddifypanel/models/user.py +2 -2
  32. hiddifypanel/panel/__init__.py +8 -8
  33. hiddifypanel/panel/admin/AdminstratorAdmin.py +16 -10
  34. hiddifypanel/panel/admin/DomainAdmin.py +132 -98
  35. hiddifypanel/panel/admin/ProxyAdmin.py +4 -0
  36. hiddifypanel/panel/admin/QuickSetup.py +48 -17
  37. hiddifypanel/panel/admin/SettingAdmin.py +6 -0
  38. hiddifypanel/panel/admin/UserAdmin.py +63 -36
  39. hiddifypanel/panel/admin/adminlte.py +1 -1
  40. hiddifypanel/panel/admin/templates/index.html +6 -4
  41. hiddifypanel/panel/admin/templates/model/user_list.html +11 -3
  42. hiddifypanel/panel/cli.py +14 -3
  43. hiddifypanel/panel/commercial/restapi/v1/tgbot.py +19 -1
  44. hiddifypanel/panel/commercial/restapi/v2/admin/system_actions.py +5 -1
  45. hiddifypanel/panel/commercial/restapi/v2/admin/user_api.py +2 -1
  46. hiddifypanel/panel/commercial/restapi/v2/user/apps_api.py +76 -6
  47. hiddifypanel/panel/common.py +5 -2
  48. hiddifypanel/panel/common_bp/login.py +14 -8
  49. hiddifypanel/panel/hlogger.py +32 -0
  50. hiddifypanel/panel/init_db.py +157 -77
  51. hiddifypanel/panel/node/__init__.py +9 -0
  52. hiddifypanel/panel/node/a.py +14 -0
  53. hiddifypanel/panel/node/hello.py +14 -0
  54. hiddifypanel/panel/node/test.proto +13 -0
  55. hiddifypanel/panel/node/test_grpc.py +40 -0
  56. hiddifypanel/panel/node/test_pb2.py +40 -0
  57. hiddifypanel/panel/node/test_pb2.pyi +17 -0
  58. hiddifypanel/panel/node/test_pb2_grpc.py +97 -0
  59. hiddifypanel/panel/usage.py +13 -3
  60. hiddifypanel/panel/user/templates/base_singbox_config.json.j2 +16 -0
  61. hiddifypanel/panel/user/templates/home/home.html +1 -2
  62. hiddifypanel/panel/user/templates/home/multi.html +1 -2
  63. hiddifypanel/panel/user/user.py +13 -19
  64. hiddifypanel/static/apps-icon/singbox.ico +0 -0
  65. hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
  66. hiddifypanel/translations/en/LC_MESSAGES/messages.po +125 -30
  67. hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
  68. hiddifypanel/translations/fa/LC_MESSAGES/messages.po +123 -32
  69. hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
  70. hiddifypanel/translations/pt/LC_MESSAGES/messages.po +114 -22
  71. hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
  72. hiddifypanel/translations/ru/LC_MESSAGES/messages.po +129 -32
  73. hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
  74. hiddifypanel/translations/zh/LC_MESSAGES/messages.po +107 -18
  75. hiddifypanel/translations.i18n/en.json +73 -14
  76. hiddifypanel/translations.i18n/fa.json +72 -13
  77. hiddifypanel/translations.i18n/fr.json +28 -10
  78. hiddifypanel/translations.i18n/my.json +1266 -0
  79. hiddifypanel/translations.i18n/pt.json +68 -9
  80. hiddifypanel/translations.i18n/ru.json +75 -16
  81. hiddifypanel/translations.i18n/zh.json +67 -8
  82. hiddifypanel-10.80.0.dist-info/METADATA +137 -0
  83. {hiddifypanel-10.70.9.dist-info → hiddifypanel-10.80.0.dist-info}/RECORD +136 -119
  84. {hiddifypanel-10.70.9.dist-info → hiddifypanel-10.80.0.dist-info}/WHEEL +1 -2
  85. hiddifypanel-10.80.0.dist-info/entry_points.txt +3 -0
  86. hiddifypanel-10.70.9.dist-info/METADATA +0 -144
  87. hiddifypanel-10.70.9.dist-info/entry_points.txt +0 -2
  88. hiddifypanel-10.70.9.dist-info/top_level.txt +0 -1
  89. {hiddifypanel-10.70.9.dist-info → hiddifypanel-10.80.0.dist-info}/LICENSE.md +0 -0
@@ -215,6 +215,9 @@ msgstr ""
215
215
  msgid "Domain can not be resolved! there is a problem in your domain"
216
216
  msgstr "دامنه قابل دسترسی نیست! در دامنه شما مشکلی وجود دارد."
217
217
 
218
+ msgid "Domain cannot be resolved! Please check DNS settings"
219
+ msgstr ""
220
+
218
221
  msgid "Domain is not REALITY friendly!"
219
222
  msgstr "دامنه سازگار با REALITY نیست!"
220
223
 
@@ -410,9 +413,7 @@ msgstr ""
410
413
  " آن را حذف یا تغییر دهید."
411
414
 
412
415
  msgid "It will override the root admin to the current user"
413
- msgstr ""
414
- "این گزینه باعث جایگزین شده ادمین هایی که در پنل نیستند را با ادمین فعلی یکی "
415
- "کند"
416
+ msgstr "این گزینه ادمین‌ی که در فایل بکاپ هست را با ادمین فعلی جایگزین می‌کند"
416
417
 
417
418
  msgid ""
418
419
  "Join our Hiddify Telegram channel to get the latest updates on Hiddify."
@@ -431,7 +432,7 @@ msgid "Max Active Users"
431
432
  msgstr "حداکثر کاربران فعال"
432
433
 
433
434
  msgid "Max IPs"
434
- msgstr "حداکثر IP"
435
+ msgstr "همزمان (فقط xray) IP"
435
436
 
436
437
  msgid "Max Users"
437
438
  msgstr "حداکثر کاربران"
@@ -519,13 +520,6 @@ msgid ""
519
520
  "latest news."
520
521
  msgstr "لطفا اکانت تلگرام خود را به پنل متصل کنید تا از آخرین اخبار مطلع شوید"
521
522
 
522
- msgid ""
523
- "Please connect your telegram accout to the panel to be informed about latest"
524
- " news."
525
- msgstr ""
526
- "لطفا اکانت تلگرام خود را به پنل متصل کنید تا از آخرین وضعیت اشتراک خودتان "
527
- "مطلع شوید"
528
-
529
523
  msgid "Please create an issue on Github."
530
524
  msgstr "لطفاً یک مشکل در Github ایجاد کنید"
531
525
 
@@ -598,6 +592,9 @@ msgstr "رم"
598
592
  msgid "REALITY Fallback domain is not compaitble with server names!"
599
593
  msgstr "دامنه بازگشتی REALITY با نام سرور سازگار نیست!"
600
594
 
595
+ msgid "REALITY Fallback domain is not compatible with server names!"
596
+ msgstr ""
597
+
601
598
  msgid "Release"
602
599
  msgstr "✅ پایدار"
603
600
 
@@ -703,6 +700,9 @@ msgstr "📦 SingBox"
703
700
  msgid "Sort by %(name)s"
704
701
  msgstr "مرتب سازی بر اساس %(name)s"
705
702
 
703
+ msgid "Specifying CDN IP is only valid for CDN mode"
704
+ msgstr ""
705
+
706
706
  msgid "Start Date"
707
707
  msgstr "زمان شروع"
708
708
 
@@ -770,7 +770,7 @@ msgid "Upload File"
770
770
  msgstr "آپلود فایل"
771
771
 
772
772
  msgid "Use HiddifyNext:"
773
- msgstr "استفاده از HiddifyNext:"
773
+ msgstr "استفاده از Hiddify:"
774
774
 
775
775
  msgid "User activated!"
776
776
  msgstr "یوزر شما فعال شد"
@@ -847,13 +847,6 @@ msgstr ""
847
847
  msgid "You have used this domain in: "
848
848
  msgstr "شما از این دامنه در بخش زیر استفاده کرده اید: "
849
849
 
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
850
  msgid ""
858
851
  "Your hiddify instance information \n"
859
852
  "Domain: {} \n"
@@ -989,7 +982,7 @@ msgstr ""
989
982
 
990
983
  msgid "adminuser.force_update_usage"
991
984
  msgstr ""
992
- "مصرف کاربر ها هر 6 دقیقه یکبار به روز می شود. برای به روز رسانی فوری <a "
985
+ "ℹ️ مصرف کاربر ها هر 6 دقیقه یکبار به روز می شود. برای به روز رسانی فوری <a "
993
986
  "href=\"%(link)s\" class=\"btn btn-info\"> اینجا </a> را کلیک کنید"
994
987
 
995
988
  msgid "all"
@@ -1056,6 +1049,12 @@ msgstr "توضیحات Shadowrocket"
1056
1049
  msgid "app.shadowrocket.title"
1057
1050
  msgstr "Shadowrocket"
1058
1051
 
1052
+ msgid "app.singbox.description"
1053
+ msgstr "برنامه Sing-box برنامه رسمی برای پروتکل Sing-box است."
1054
+
1055
+ msgid "app.singbox.title"
1056
+ msgstr "برنامه Sing-box"
1057
+
1059
1058
  msgid "app.stash.description"
1060
1059
  msgstr "توضیحات Stash"
1061
1060
 
@@ -1478,7 +1477,8 @@ msgid "config.kcp_ports.label"
1478
1477
  msgstr "پورت‌های KCP"
1479
1478
 
1480
1479
  msgid "config.lang.description"
1481
- msgstr "این گزینه زبان بخش کاربران را تغییر می‌دهد"
1480
+ msgstr ""
1481
+ "زبان رابط کاربری را برای شخصی سازی تجربه خود در ناحیه کاربری انتخاب کنید."
1482
1482
 
1483
1483
  msgid "config.lang.label"
1484
1484
  msgstr "🗺️ زبان محیط کاربران"
@@ -1533,11 +1533,11 @@ msgstr "⬆️ آپلود (mbps) MUX Brutal"
1533
1533
 
1534
1534
  msgid "config.mux_enable.description"
1535
1535
  msgstr ""
1536
- "<p style=\"direction:rtl\">Mux به نرم افزار سازگار نیاز دارد. Mux در Hiddify"
1537
- " Next و Singbox و XRay سازگار نیستند.&nbsp;<a "
1538
- "href=\"https://hiddify.com/fa/manager/basic-concepts-and-"
1539
- "troubleshooting/How-MUX-works-and-its-usage/\" target=\"_blank\">(بیشتر "
1540
- "بدانید)</a></p>"
1536
+ "<p style=\"direction:rtl\">Mux به نرم افزار سازگار نیاز دارد. Mux در <p><a "
1537
+ "href=\"https://app.hiddify.com\" target=\"_blank\">Hiddify</a></p> و Singbox"
1538
+ " و XRay سازگار نیستند.&nbsp;<a href=\"https://hiddify.com/fa/manager/basic-"
1539
+ "concepts-and-troubleshooting/How-MUX-works-and-its-usage/\" "
1540
+ "target=\"_blank\">(بیشتر بدانید)</a></p>"
1541
1541
 
1542
1542
  msgid "config.mux_enable.label"
1543
1543
  msgstr "Ⓜ️ MUX (⚠️ ناسازگار با برخی نرم افزارها)"
@@ -1647,10 +1647,10 @@ msgid "config.path_httpupgrade.label"
1647
1647
  msgstr "ℹ️ مسیر ارتقاء HTTP"
1648
1648
 
1649
1649
  msgid "config.path_splithttp.description"
1650
- msgstr "این گزینه مسیر را برای Split HTTP تعریف می کند"
1650
+ msgstr ""
1651
1651
 
1652
1652
  msgid "config.path_splithttp.label"
1653
- msgstr "ℹ️ مسیر برای Split HTTP"
1653
+ msgstr ""
1654
1654
 
1655
1655
  msgid "config.path_ss.description"
1656
1656
  msgstr "مسیر شدوساکس در لینکها"
@@ -1694,6 +1694,12 @@ msgstr "مسیر Websocket را مشخص کنید"
1694
1694
  msgid "config.path_ws.label"
1695
1695
  msgstr "ℹ️ مسیر درخواست های Websocket"
1696
1696
 
1697
+ msgid "config.path_xhttp.description"
1698
+ msgstr "این گزینه مسیر را برای Split HTTP تعریف می کند"
1699
+
1700
+ msgid "config.path_xhttp.label"
1701
+ msgstr "ℹ️ مسیر برای Split HTTP"
1702
+
1697
1703
  msgid "config.proxies.description"
1698
1704
  msgstr "تنظیمات اختصاصی را مشخص کنید"
1699
1705
 
@@ -1877,10 +1883,10 @@ msgid "config.speed_test.label"
1877
1883
  msgstr "🚀 تست سرعت"
1878
1884
 
1879
1885
  msgid "config.splithttp_enable.description"
1880
- msgstr "این پروتکل اطلاعات را در کانال های جداگانه ارسال و دریافت می کند "
1886
+ msgstr ""
1881
1887
 
1882
1888
  msgid "config.splithttp_enable.label"
1883
- msgstr "🈁 Split HTTP"
1889
+ msgstr ""
1884
1890
 
1885
1891
  msgid "config.ssfaketls.description"
1886
1892
  msgstr ""
@@ -1915,6 +1921,54 @@ msgstr ""
1915
1921
  msgid "config.ssh.label"
1916
1922
  msgstr "پروکسی SSH"
1917
1923
 
1924
+ msgid "config.ssh_host_dsa_pk.description"
1925
+ msgstr ""
1926
+
1927
+ msgid "config.ssh_host_dsa_pk.label"
1928
+ msgstr ""
1929
+
1930
+ msgid "config.ssh_host_dsa_pub.description"
1931
+ msgstr ""
1932
+
1933
+ msgid "config.ssh_host_dsa_pub.label"
1934
+ msgstr ""
1935
+
1936
+ msgid "config.ssh_host_ecdsa_pk.description"
1937
+ msgstr ""
1938
+
1939
+ msgid "config.ssh_host_ecdsa_pk.label"
1940
+ msgstr ""
1941
+
1942
+ msgid "config.ssh_host_ecdsa_pub.description"
1943
+ msgstr ""
1944
+
1945
+ msgid "config.ssh_host_ecdsa_pub.label"
1946
+ msgstr ""
1947
+
1948
+ msgid "config.ssh_host_ed25519_pk.description"
1949
+ msgstr ""
1950
+
1951
+ msgid "config.ssh_host_ed25519_pk.label"
1952
+ msgstr ""
1953
+
1954
+ msgid "config.ssh_host_ed25519_pub.description"
1955
+ msgstr ""
1956
+
1957
+ msgid "config.ssh_host_ed25519_pub.label"
1958
+ msgstr ""
1959
+
1960
+ msgid "config.ssh_host_rsa_pk.description"
1961
+ msgstr ""
1962
+
1963
+ msgid "config.ssh_host_rsa_pk.label"
1964
+ msgstr ""
1965
+
1966
+ msgid "config.ssh_host_rsa_pub.description"
1967
+ msgstr ""
1968
+
1969
+ msgid "config.ssh_host_rsa_pub.label"
1970
+ msgstr ""
1971
+
1918
1972
  msgid "config.ssh_server_enable.description"
1919
1973
  msgstr ""
1920
1974
  "این SSH پروکسی با SSH سرور اصلی کاملا متفاوت است و امکان اجرای دستورات را "
@@ -2269,8 +2323,8 @@ msgstr "وایرگارد"
2269
2323
  msgid "config.wireguard_enable.description"
2270
2324
  msgstr ""
2271
2325
  "<p>WireGuard پروتکل مبتنی بر UDP است. (⚠️ فقط در <a "
2272
- "href=\"https://github.com/hiddify/hiddify-next\" target=\"_blank\">Hiddify "
2273
- "Next</a> کار می کند)</p>"
2326
+ "href=\"https://app.hiddify.com/\" target=\"_blank\">Hiddify</a> کار می "
2327
+ "کند)</p>"
2274
2328
 
2275
2329
  msgid "config.wireguard_enable.label"
2276
2330
  msgstr "🐉 وایرگارد"
@@ -2320,6 +2374,14 @@ msgstr ""
2320
2374
  msgid "config.ws_enable.label"
2321
2375
  msgstr "🔰 Websocket"
2322
2376
 
2377
+ msgid "config.xhttp_enable.description"
2378
+ msgstr ""
2379
+ "<p>این پروتکل اطلاعات را در کانال های جداگانه ارسال و دریافت می کند<br />\n"
2380
+ "⚠️<strong>&nbsp;این پروتکل در برنامه های با هسته SingBox پشتیبانی نمیشود. فقط در برنامه <p><a href=\"https://app.hiddify.com\" target=\"_blank\">Hiddify</a></p> و برنامه های با هسته XRay پشتیبانی میشود</strong></p>"
2381
+
2382
+ msgid "config.xhttp_enable.label"
2383
+ msgstr "🈁 Split HTTP"
2384
+
2323
2385
  msgid "config.xtls_enable.description"
2324
2386
  msgstr "پروتکل XTLS را فعال می کند"
2325
2387
 
@@ -2445,6 +2507,15 @@ msgstr "☑️ پایتون : عملکرد ضعیف"
2445
2507
  msgid "log"
2446
2508
  msgstr "📄 لاگ"
2447
2509
 
2510
+ msgid "login.button"
2511
+ msgstr "ورود"
2512
+
2513
+ msgid "login.password.description"
2514
+ msgstr "برای امنیت بیشتر، باید رمز عبور خود را وارد کنید."
2515
+
2516
+ msgid "login.password.label"
2517
+ msgstr "رمز عبور"
2518
+
2448
2519
  msgid "login.secret.description"
2449
2520
  msgstr "برای دسترسی به این صفحه، لطفا کد مخفی (UUID) خود را وارد کنید."
2450
2521
 
@@ -2893,12 +2964,32 @@ msgstr "آخرین زمان ریست شدن حجم (روز پیش)"
2893
2964
  msgid "user.name"
2894
2965
  msgstr "نام"
2895
2966
 
2967
+ msgid "user.password.description"
2968
+ msgstr ""
2969
+ "رمز عبور برای امنیت بیشتر استفاده خواهد شد. تنها پس از وارد کردن رمز عبور می"
2970
+ " توانید وارد هیدیفای‌منیجر شوید."
2971
+
2972
+ msgid "user.password.title"
2973
+ msgstr "رمز عبور"
2974
+
2975
+ msgid "user.password.validation-lenght"
2976
+ msgstr "برای امنیت بیشتر، رمز عبور شما باید حداقل ۸ کاراکتر داشته باشد."
2977
+
2978
+ msgid "user.password.validation-required"
2979
+ msgstr "رمز عبور لازم است. لطفا برای ادامه رمز عبور خود را وارد کنید."
2980
+
2896
2981
  msgid "user.usage_limit_GB"
2897
2982
  msgstr "⌛️ محدودیت حجم (گیگابایت)"
2898
2983
 
2899
2984
  msgid "user.user_links"
2900
2985
  msgstr "لینک‌های کاربر"
2901
2986
 
2987
+ msgid "vpn.notallowed"
2988
+ msgstr ""
2989
+ "لطفاً بدون استفاده از VPN از این صفحه بازدید کنید. باید از کشور "
2990
+ "%(expected_country)s به آن دسترسی داشته باشید، اما در حال حاضر از "
2991
+ "%(your_country)s به آن دسترسی دارید."
2992
+
2902
2993
  msgid "weekly"
2903
2994
  msgstr "📅 هفتگی"
2904
2995
 
@@ -213,6 +213,9 @@ msgstr ""
213
213
  "O domínio não pode ser resolvido! Há um problema em seu domínio. Verifique "
214
214
  "as configurações do seu Domínio."
215
215
 
216
+ msgid "Domain cannot be resolved! Please check DNS settings"
217
+ msgstr ""
218
+
216
219
  msgid "Domain is not REALITY friendly!"
217
220
  msgstr "O domínio não é compatível com Reality!"
218
221
 
@@ -382,8 +385,8 @@ msgstr ""
382
385
 
383
386
  msgid "It will override the root admin to the current user"
384
387
  msgstr ""
385
- "Ele substituirá o administrador proprietário do arquivo de backup pelo "
386
- "usuário atual"
388
+ "Irá substituir o administrador proprietário do arquivo de backup pelo "
389
+ "administrador atual."
387
390
 
388
391
  msgid ""
389
392
  "Join our Hiddify Telegram channel to get the latest updates on Hiddify."
@@ -494,13 +497,6 @@ msgstr ""
494
497
  "Conecte sua conta do Telegram ao painel para ser informado sobre as últimas "
495
498
  "novidades."
496
499
 
497
- msgid ""
498
- "Please connect your telegram accout to the panel to be informed about latest"
499
- " news."
500
- msgstr ""
501
- "Conecte sua conta do Telegram ao painel para saber o status mais recente da "
502
- "sua assinatura"
503
-
504
500
  msgid "Please create an issue on Github."
505
501
  msgstr "Por favor, crie um problema no Github"
506
502
 
@@ -572,6 +568,9 @@ msgstr "BATER"
572
568
  msgid "REALITY Fallback domain is not compaitble with server names!"
573
569
  msgstr "REALITY Fallback Domain não é compatível com nomes de servidores!"
574
570
 
571
+ msgid "REALITY Fallback domain is not compatible with server names!"
572
+ msgstr ""
573
+
575
574
  msgid "Release"
576
575
  msgstr "✅ Liberação"
577
576
 
@@ -677,6 +676,9 @@ msgstr "📦 SingBox"
677
676
  msgid "Sort by %(name)s"
678
677
  msgstr "Ordenar por %(name)s"
679
678
 
679
+ msgid "Specifying CDN IP is only valid for CDN mode"
680
+ msgstr ""
681
+
680
682
  msgid "Start Date"
681
683
  msgstr "Data de início"
682
684
 
@@ -821,13 +823,6 @@ msgstr ""
821
823
  msgid "You have used this domain in: "
822
824
  msgstr "Já utilizou este Domínio em:"
823
825
 
824
- msgid ""
825
- "You should visit this page without VPN. Your country=%(your_country)s\n"
826
- "expected=%(expected_country)s"
827
- msgstr ""
828
- "Você deve visitar esta página sem VPN Seu país =%(expected_country)s\n"
829
- "Esperado=%(expected_country)s"
830
-
831
826
  msgid ""
832
827
  "Your hiddify instance information \n"
833
828
  "Domain: {} \n"
@@ -1032,6 +1027,12 @@ msgstr "Descrição do Foguete Sombrio"
1032
1027
  msgid "app.shadowrocket.title"
1033
1028
  msgstr "Shadowrocket"
1034
1029
 
1030
+ msgid "app.singbox.description"
1031
+ msgstr "O aplicativo Sing-box é o aplicativo oficial do protocolo Sing-box."
1032
+
1033
+ msgid "app.singbox.title"
1034
+ msgstr "Aplicativo Sing-box"
1035
+
1035
1036
  msgid "app.stash.description"
1036
1037
  msgstr "Descrição do Stash "
1037
1038
 
@@ -1455,10 +1456,12 @@ msgid "config.kcp_ports.label"
1455
1456
  msgstr "Portas KCP"
1456
1457
 
1457
1458
  msgid "config.lang.description"
1458
- msgstr "Escolha o idioma para a área de usuários"
1459
+ msgstr ""
1460
+ "Selecione o idioma da interface do usuário para personalizar sua experiência"
1461
+ " na área do usuário."
1459
1462
 
1460
1463
  msgid "config.lang.label"
1461
- msgstr "Idioma da área do usuário"
1464
+ msgstr "🗺️ Idioma da área do usuário"
1462
1465
 
1463
1466
  msgid "config.last_hash.description"
1464
1467
  msgstr "config.last_hash.description"
@@ -1618,10 +1621,10 @@ msgid "config.path_httpupgrade.label"
1618
1621
  msgstr "ℹ️ Caminho de atualização HTTP"
1619
1622
 
1620
1623
  msgid "config.path_splithttp.description"
1621
- msgstr "Esta opção define o caminho para Split HTTP"
1624
+ msgstr ""
1622
1625
 
1623
1626
  msgid "config.path_splithttp.label"
1624
- msgstr "Caminho para Split HTTP"
1627
+ msgstr ""
1625
1628
 
1626
1629
  msgid "config.path_ss.description"
1627
1630
  msgstr "Caminho Shadowsocks nos Links"
@@ -1665,6 +1668,12 @@ msgstr "Especifique o caminho do Websocket"
1665
1668
  msgid "config.path_ws.label"
1666
1669
  msgstr "ℹ️ Caminho das solicitações do Websocket"
1667
1670
 
1671
+ msgid "config.path_xhttp.description"
1672
+ msgstr "Esta opção define o caminho para Split HTTP"
1673
+
1674
+ msgid "config.path_xhttp.label"
1675
+ msgstr "Caminho para Split HTTP"
1676
+
1668
1677
  msgid "config.proxies.description"
1669
1678
  msgstr "Definir configurações de proxy específicas"
1670
1679
 
@@ -1851,10 +1860,10 @@ msgid "config.speed_test.label"
1851
1860
  msgstr "🚀 Teste de velocidade"
1852
1861
 
1853
1862
  msgid "config.splithttp_enable.description"
1854
- msgstr "Este protocolo envia e recebe informações em canais individuais "
1863
+ msgstr ""
1855
1864
 
1856
1865
  msgid "config.splithttp_enable.label"
1857
- msgstr "🈁 Split HTTP"
1866
+ msgstr ""
1858
1867
 
1859
1868
  msgid "config.ssfaketls.description"
1860
1869
  msgstr ""
@@ -1888,6 +1897,54 @@ msgstr ""
1888
1897
  msgid "config.ssh.label"
1889
1898
  msgstr "Proxy SSH"
1890
1899
 
1900
+ msgid "config.ssh_host_dsa_pk.description"
1901
+ msgstr ""
1902
+
1903
+ msgid "config.ssh_host_dsa_pk.label"
1904
+ msgstr ""
1905
+
1906
+ msgid "config.ssh_host_dsa_pub.description"
1907
+ msgstr ""
1908
+
1909
+ msgid "config.ssh_host_dsa_pub.label"
1910
+ msgstr ""
1911
+
1912
+ msgid "config.ssh_host_ecdsa_pk.description"
1913
+ msgstr ""
1914
+
1915
+ msgid "config.ssh_host_ecdsa_pk.label"
1916
+ msgstr ""
1917
+
1918
+ msgid "config.ssh_host_ecdsa_pub.description"
1919
+ msgstr ""
1920
+
1921
+ msgid "config.ssh_host_ecdsa_pub.label"
1922
+ msgstr ""
1923
+
1924
+ msgid "config.ssh_host_ed25519_pk.description"
1925
+ msgstr ""
1926
+
1927
+ msgid "config.ssh_host_ed25519_pk.label"
1928
+ msgstr ""
1929
+
1930
+ msgid "config.ssh_host_ed25519_pub.description"
1931
+ msgstr ""
1932
+
1933
+ msgid "config.ssh_host_ed25519_pub.label"
1934
+ msgstr ""
1935
+
1936
+ msgid "config.ssh_host_rsa_pk.description"
1937
+ msgstr ""
1938
+
1939
+ msgid "config.ssh_host_rsa_pk.label"
1940
+ msgstr ""
1941
+
1942
+ msgid "config.ssh_host_rsa_pub.description"
1943
+ msgstr ""
1944
+
1945
+ msgid "config.ssh_host_rsa_pub.label"
1946
+ msgstr ""
1947
+
1891
1948
  msgid "config.ssh_server_enable.description"
1892
1949
  msgstr "O proxy SSH é completamente diferente do servidor ssh original."
1893
1950
 
@@ -2296,6 +2353,12 @@ msgstr "Websocket cria um túnel sobre HTTP que é útil para ser usado em CDN"
2296
2353
  msgid "config.ws_enable.label"
2297
2354
  msgstr "🔰 Websocket"
2298
2355
 
2356
+ msgid "config.xhttp_enable.description"
2357
+ msgstr "Este protocolo envia e recebe informações em canais individuais "
2358
+
2359
+ msgid "config.xhttp_enable.label"
2360
+ msgstr "🈁 Split HTTP"
2361
+
2299
2362
  msgid "config.xtls_enable.description"
2300
2363
  msgstr "Ativa o protocolo XTLS"
2301
2364
 
@@ -2422,6 +2485,15 @@ msgstr "☑️ Python: baixo desempenho"
2422
2485
  msgid "log"
2423
2486
  msgstr "📄 Log"
2424
2487
 
2488
+ msgid "login.button"
2489
+ msgstr "Conecte-se"
2490
+
2491
+ msgid "login.password.description"
2492
+ msgstr "Para maior segurança, você precisa digitar sua senha."
2493
+
2494
+ msgid "login.password.label"
2495
+ msgstr "Senha"
2496
+
2425
2497
  msgid "login.secret.description"
2426
2498
  msgstr "Para obter acesso a esta página, digite seu código secreto (UUID)"
2427
2499
 
@@ -2854,12 +2926,32 @@ msgstr "Redefinir para a última vez que ouve uso."
2854
2926
  msgid "user.name"
2855
2927
  msgstr "Nome"
2856
2928
 
2929
+ msgid "user.password.description"
2930
+ msgstr ""
2931
+ "A senha será usada para segurança extra. Você só pode fazer login no "
2932
+ "HiddifyManager após digitar sua senha."
2933
+
2934
+ msgid "user.password.title"
2935
+ msgstr "Senha"
2936
+
2937
+ msgid "user.password.validation-lenght"
2938
+ msgstr "Sua senha deve ter pelo menos 8 caracteres para maior segurança."
2939
+
2940
+ msgid "user.password.validation-required"
2941
+ msgstr "A senha é necessária. Insira sua senha para continuar."
2942
+
2857
2943
  msgid "user.usage_limit_GB"
2858
2944
  msgstr "⌛️ Limite de uso (GB)"
2859
2945
 
2860
2946
  msgid "user.user_links"
2861
2947
  msgstr "Links de usuário"
2862
2948
 
2949
+ msgid "vpn.notallowed"
2950
+ msgstr ""
2951
+ "Por favor, visite esta página sem usar uma VPN. Você precisa acessá-la do "
2952
+ "país %(expected_country)s, mas você está acessando-a atualmente de "
2953
+ "%(your_country)s."
2954
+
2863
2955
  msgid "weekly"
2864
2956
  msgstr "📅 Semanal"
2865
2957