hiddifypanel 10.14.0__py3-none-any.whl → 10.15.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 (106) hide show
  1. hiddifypanel/VERSION +1 -1
  2. hiddifypanel/VERSION.py +2 -2
  3. hiddifypanel/auth.py +15 -4
  4. hiddifypanel/base.py +11 -3
  5. hiddifypanel/cache.py +43 -25
  6. hiddifypanel/database.py +9 -0
  7. hiddifypanel/drivers/singbox_api.py +2 -14
  8. hiddifypanel/drivers/xray_api.py +0 -4
  9. hiddifypanel/hutils/__init__.py +1 -0
  10. hiddifypanel/hutils/convert.py +13 -2
  11. hiddifypanel/hutils/crypto.py +21 -2
  12. hiddifypanel/hutils/flask.py +19 -5
  13. hiddifypanel/hutils/importer/xui.py +5 -2
  14. hiddifypanel/hutils/node/__init__.py +3 -0
  15. hiddifypanel/hutils/node/api_client.py +76 -0
  16. hiddifypanel/hutils/node/child.py +147 -0
  17. hiddifypanel/hutils/node/parent.py +100 -0
  18. hiddifypanel/hutils/node/shared.py +65 -0
  19. hiddifypanel/hutils/proxy/shared.py +15 -3
  20. hiddifypanel/models/__init__.py +2 -2
  21. hiddifypanel/models/admin.py +14 -2
  22. hiddifypanel/models/base_account.py +3 -3
  23. hiddifypanel/models/child.py +30 -16
  24. hiddifypanel/models/config.py +39 -15
  25. hiddifypanel/models/config_enum.py +55 -8
  26. hiddifypanel/models/domain.py +28 -20
  27. hiddifypanel/models/parent_domain.py +2 -2
  28. hiddifypanel/models/proxy.py +13 -4
  29. hiddifypanel/models/report.py +2 -3
  30. hiddifypanel/models/usage.py +2 -2
  31. hiddifypanel/models/user.py +13 -4
  32. hiddifypanel/panel/admin/Actions.py +4 -6
  33. hiddifypanel/panel/admin/AdminstratorAdmin.py +13 -2
  34. hiddifypanel/panel/admin/Dashboard.py +5 -10
  35. hiddifypanel/panel/admin/DomainAdmin.py +12 -11
  36. hiddifypanel/panel/admin/NodeAdmin.py +6 -2
  37. hiddifypanel/panel/admin/ProxyAdmin.py +4 -3
  38. hiddifypanel/panel/admin/SettingAdmin.py +60 -21
  39. hiddifypanel/panel/admin/UserAdmin.py +10 -2
  40. hiddifypanel/panel/admin/templates/index.html +1 -1
  41. hiddifypanel/panel/admin/templates/parent_dash.html +2 -4
  42. hiddifypanel/panel/cli.py +16 -16
  43. hiddifypanel/panel/commercial/ProxyDetailsAdmin.py +10 -5
  44. hiddifypanel/panel/commercial/__init__.py +7 -5
  45. hiddifypanel/panel/commercial/restapi/v2/admin/__init__.py +0 -5
  46. hiddifypanel/panel/commercial/restapi/v2/admin/admin_info_api.py +2 -2
  47. hiddifypanel/panel/commercial/restapi/v2/admin/admin_log_api.py +4 -5
  48. hiddifypanel/panel/commercial/restapi/v2/admin/admin_user_api.py +8 -35
  49. hiddifypanel/panel/commercial/restapi/v2/admin/admin_users_api.py +4 -4
  50. hiddifypanel/panel/commercial/restapi/v2/admin/schema.py +157 -0
  51. hiddifypanel/panel/commercial/restapi/v2/admin/server_status_api.py +3 -3
  52. hiddifypanel/panel/commercial/restapi/v2/admin/user_api.py +9 -73
  53. hiddifypanel/panel/commercial/restapi/v2/admin/users_api.py +1 -1
  54. hiddifypanel/panel/commercial/restapi/v2/child/__init__.py +18 -0
  55. hiddifypanel/panel/commercial/restapi/v2/child/actions.py +63 -0
  56. hiddifypanel/panel/commercial/restapi/v2/child/register_parent_api.py +34 -0
  57. hiddifypanel/panel/commercial/restapi/v2/child/schema.py +7 -0
  58. hiddifypanel/panel/commercial/restapi/v2/child/sync_parent_api.py +21 -0
  59. hiddifypanel/panel/commercial/restapi/v2/panel/__init__.py +13 -0
  60. hiddifypanel/panel/commercial/restapi/v2/panel/info.py +18 -0
  61. hiddifypanel/panel/commercial/restapi/v2/panel/ping_pong.py +23 -0
  62. hiddifypanel/panel/commercial/restapi/v2/panel/schema.py +7 -0
  63. hiddifypanel/panel/commercial/restapi/v2/parent/__init__.py +16 -0
  64. hiddifypanel/panel/commercial/restapi/v2/parent/register_api.py +65 -0
  65. hiddifypanel/panel/commercial/restapi/v2/parent/schema.py +115 -0
  66. hiddifypanel/panel/commercial/restapi/v2/parent/status_api.py +26 -0
  67. hiddifypanel/panel/commercial/restapi/v2/parent/sync_api.py +53 -0
  68. hiddifypanel/panel/commercial/restapi/v2/parent/usage_api.py +57 -0
  69. hiddifypanel/panel/commercial/telegrambot/admin.py +1 -2
  70. hiddifypanel/panel/common.py +21 -6
  71. hiddifypanel/panel/hiddify.py +9 -80
  72. hiddifypanel/panel/init_db.py +43 -12
  73. hiddifypanel/panel/usage.py +28 -15
  74. hiddifypanel/panel/user/templates/home/usage.html +1 -1
  75. hiddifypanel/panel/user/templates/new.html +1 -1
  76. hiddifypanel/static/css/custom.css +13 -0
  77. hiddifypanel/static/images/hiddify.png +0 -0
  78. hiddifypanel/static/new/assets/{index-bce9b1a6.js → index-ccb9873c.js} +65 -65
  79. hiddifypanel/templates/admin-layout.html +24 -40
  80. hiddifypanel/templates/master.html +23 -41
  81. hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
  82. hiddifypanel/translations/en/LC_MESSAGES/messages.po +90 -0
  83. hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
  84. hiddifypanel/translations/fa/LC_MESSAGES/messages.po +91 -1
  85. hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
  86. hiddifypanel/translations/pt/LC_MESSAGES/messages.po +98 -6
  87. hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
  88. hiddifypanel/translations/ru/LC_MESSAGES/messages.po +90 -0
  89. hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
  90. hiddifypanel/translations/zh/LC_MESSAGES/messages.po +92 -2
  91. hiddifypanel/translations.i18n/en.json +56 -0
  92. hiddifypanel/translations.i18n/fa.json +57 -1
  93. hiddifypanel/translations.i18n/pt.json +63 -7
  94. hiddifypanel/translations.i18n/ru.json +56 -0
  95. hiddifypanel/translations.i18n/zh.json +58 -2
  96. {hiddifypanel-10.14.0.dist-info → hiddifypanel-10.15.0.dev1.dist-info}/METADATA +47 -47
  97. {hiddifypanel-10.14.0.dist-info → hiddifypanel-10.15.0.dev1.dist-info}/RECORD +103 -85
  98. hiddifypanel/panel/commercial/restapi/v2/DTO.py +0 -9
  99. hiddifypanel/panel/commercial/restapi/v2/hello/__init__.py +0 -16
  100. hiddifypanel/panel/commercial/restapi/v2/hello/hello.py +0 -32
  101. /hiddifypanel/static/images/{hiddify1.png → hiddify-old.png} +0 -0
  102. /hiddifypanel/static/{new/assets/hiddify-logo-noroz-559c8dcb.png → images/hiddify2.png} +0 -0
  103. {hiddifypanel-10.14.0.dist-info → hiddifypanel-10.15.0.dev1.dist-info}/LICENSE.md +0 -0
  104. {hiddifypanel-10.14.0.dist-info → hiddifypanel-10.15.0.dev1.dist-info}/WHEEL +0 -0
  105. {hiddifypanel-10.14.0.dist-info → hiddifypanel-10.15.0.dev1.dist-info}/entry_points.txt +0 -0
  106. {hiddifypanel-10.14.0.dist-info → hiddifypanel-10.15.0.dev1.dist-info}/top_level.txt +0 -0
@@ -333,6 +333,12 @@
333
333
  "auto_cdn_ip": "☑️ Automatic CDN IP Selector",
334
334
  "cdn": "🔀 CDN (Cloudflare Proxy, ...)",
335
335
  "child has been removed!": "Child Has Been Removed!",
336
+ "child": {
337
+ "register-failed": "child.register-failed",
338
+ "register-success": "child.register-success",
339
+ "sync-failed": "child.sync-failed",
340
+ "sync-success": "child.sync-success"
341
+ },
336
342
  "clickable copy": "Link for Social Media",
337
343
  "close": "Close",
338
344
  "config.Domain already used": "Domain is exist in domains section. Use another Domain",
@@ -456,6 +462,10 @@
456
462
  "description": "gRPC is a modern open source high performance Remote Procedure Call (RPC) framework. It can be used in supported CDNs",
457
463
  "label": "➿ Enable gRPC"
458
464
  },
465
+ "h2_enable": {
466
+ "description": "config.h2_enable.description",
467
+ "label": "config.h2_enable.label"
468
+ },
459
469
  "hidden": {
460
470
  "description": "config.hidden.description",
461
471
  "label": "config.hidden.label"
@@ -500,6 +510,7 @@
500
510
  "description": "Hysteria Maximum Upload Speed",
501
511
  "label": "⬆️ Hysteria Upload (mbps)"
502
512
  },
513
+ "invalid-pattern-for-warp-sites": "config.invalid-pattern-for-warp-sites",
503
514
  "is_parent": {
504
515
  "description": "config.is_parent.description",
505
516
  "label": "Parent Panel"
@@ -528,6 +539,10 @@
528
539
  "description": "For commercial use of this Product, you must Purchase its License",
529
540
  "label": "License Code"
530
541
  },
542
+ "log_level": {
543
+ "description": "config.log_level.description",
544
+ "label": "config.log_level.label"
545
+ },
531
546
  "mux": {
532
547
  "description": "MUX (Multiplex) configurations could be set in this section",
533
548
  "label": "MUX Config"
@@ -584,6 +599,18 @@
584
599
  "description": "Specify whether you want Released Package or Beta one",
585
600
  "label": "🔄 Package Update Mode"
586
601
  },
602
+ "panel_mode": {
603
+ "description": "config.panel_mode.description",
604
+ "label": "config.panel_mode.label"
605
+ },
606
+ "parent_admin_proxy_path": {
607
+ "description": "config.parent_admin_proxy_path.description",
608
+ "label": "config.parent_admin_proxy_path.label"
609
+ },
610
+ "parent_domain": {
611
+ "description": "config.parent_domain.description",
612
+ "label": "config.parent_domain.label"
613
+ },
587
614
  "parent_panel": {
588
615
  "description": "You can Connect to the Central Panel to define only one user and the usage of all Servers will be added cumulatively.",
589
616
  "label": "Parent Panel (Multi Server)"
@@ -640,10 +667,18 @@
640
667
  "description": "Secret proxy path hide the proxies from the governments and bots",
641
668
  "label": "🔏 Proxy Path for Clients"
642
669
  },
670
+ "quic_enable": {
671
+ "description": "config.quic_enable.description",
672
+ "label": "config.quic_enable.label"
673
+ },
643
674
  "reality": {
644
675
  "description": "REALITY eliminate the Server-Side TLS Fingerprint Feature",
645
676
  "label": "Reality"
646
677
  },
678
+ "reality_enable": {
679
+ "description": "config.reality_enable.description",
680
+ "label": "config.reality_enable.label"
681
+ },
647
682
  "reality_fallback_domain": {
648
683
  "description": "When the GFW visit the Websites in Server names, it will be redirect to this Domain.",
649
684
  "label": "🌍 Reality Fallback Domain"
@@ -760,6 +795,10 @@
760
795
  "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",
761
796
  "label": "SSR FakeDomain"
762
797
  },
798
+ "tcp_enable": {
799
+ "description": "config.tcp_enable.description",
800
+ "label": "config.tcp_enable.label"
801
+ },
763
802
  "telegram": {
764
803
  "description": "A proxy designed for Telegram to bypass Telegram filtering",
765
804
  "label": "Telegram Proxy "
@@ -828,6 +867,10 @@
828
867
  "description": "Torrent Block Configurations could be set in this section.",
829
868
  "label": "Torrent Block Configuration"
830
869
  },
870
+ "trojan_enable": {
871
+ "description": "config.trojan_enable.description",
872
+ "label": "config.trojan_enable.label"
873
+ },
831
874
  "tuic": {
832
875
  "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",
833
876
  "label": "TUIC"
@@ -855,6 +898,10 @@
855
898
  "validation-error": "There is an error in one of the fields.",
856
899
  "validation-success": "Configs have been changed successfully. Click %(link)s to apply the configs. It may take 2 minutes to apply",
857
900
  "validation-success-no-reset": " ✅ Configs have been changed successfully",
901
+ "vless_enable": {
902
+ "description": "config.vless_enable.description",
903
+ "label": "config.vless_enable.label"
904
+ },
858
905
  "vmess_enable": {
859
906
  "description": "Active VMess Protocol",
860
907
  "label": "♈️ Enable VMess"
@@ -914,6 +961,10 @@
914
961
  "ws_enable": {
915
962
  "description": "Websocket creates a tunnel over HTTP that is useful to be used in CDN",
916
963
  "label": "🔰 Enable Websocket"
964
+ },
965
+ "xtls_enable": {
966
+ "description": "config.xtls_enable.description",
967
+ "label": "config.xtls_enable.label"
917
968
  }
918
969
  },
919
970
  "config.invalid uuid": "Invalid UUID secret. example: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6\n\n",
@@ -970,6 +1021,7 @@
970
1021
  "next": "Next",
971
1022
  "no_reset": "⭐️ Without Reset",
972
1023
  "node": {
1024
+ "diff-version": "node.diff-version",
973
1025
  "mode": {
974
1026
  "dscr": "node.mode.dscr",
975
1027
  "label": "Node Mode"
@@ -987,6 +1039,10 @@
987
1039
  "open": "Open",
988
1040
  "package days?": "package days?",
989
1041
  "package size?": "package size?",
1042
+ "parent": {
1043
+ "invalid-parent-url": "parent.invalid-parent-url",
1044
+ "sync-req-failed": "parent.sync-req-failed"
1045
+ },
990
1046
  "previous": "Previous",
991
1047
  "quicksetup": {
992
1048
  "setlang": {
@@ -333,6 +333,12 @@
333
333
  "auto_cdn_ip": "☑️ انتخاب کننده آی‌پی CDN به صورت خودکار",
334
334
  "cdn": "🔀 سی‌دی‌ان (پروکسی کلودفلر و ...)",
335
335
  "child has been removed!": "پنل زیر مجموعه حذف شد",
336
+ "child": {
337
+ "register-failed": "",
338
+ "register-success": "",
339
+ "sync-failed": "",
340
+ "sync-success": ""
341
+ },
336
342
  "clickable copy": "لینک برای شبکه‌های اجتماعی",
337
343
  "close": "بستن",
338
344
  "config.Domain already used": "دامنه در بخش دامنه‌ها وجود دارد. از دامنه دیگری استفاده کنید.",
@@ -456,6 +462,10 @@
456
462
  "description": "gRPC یک چارچوب متن باز مدرن با کارایی بالا Remote Procedure Call (RPC) است. می توان از آن در CDN های پشتیبانی شده استفاده کرد",
457
463
  "label": "➿ gRPC را فعال کنید"
458
464
  },
465
+ "h2_enable": {
466
+ "description": "",
467
+ "label": ""
468
+ },
459
469
  "hidden": {
460
470
  "description": "-",
461
471
  "label": "-"
@@ -500,6 +510,7 @@
500
510
  "description": "حداکثر سرعت آپلود هیستریا",
501
511
  "label": "⬆️ آپلود (mbps) Hysteria"
502
512
  },
513
+ "invalid-pattern-for-warp-sites": "",
503
514
  "is_parent": {
504
515
  "description": "-",
505
516
  "label": "پنل مرکزی"
@@ -528,9 +539,13 @@
528
539
  "description": "برای استفاده تجاری از این محصول باید مجوز آن را خریداری کنید",
529
540
  "label": "کد مجوز"
530
541
  },
542
+ "log_level": {
543
+ "description": "",
544
+ "label": ""
545
+ },
531
546
  "mux": {
532
547
  "description": "تنظیمات MUX (Multiplex) را می توان در این بخش تنظیم کرد",
533
- "label": "پیکربندی MUX"
548
+ "label": "تنظیمات MUX"
534
549
  },
535
550
  "mux_brutal_down_mbps": {
536
551
  "description": "حداکثر سرعت دانلود TCP-Brutal",
@@ -584,6 +599,18 @@
584
599
  "description": "در این قسمت می‌توانید مشخص کنید که از کدام نسخه میخواهید استفاده کنید. (نسخه 'آزمایشی' امکانات را سریع‌تر از نسخه پایدار در اختیار شما می‌گذارد اما ممکن است دارای مشکلاتی باشد)",
585
600
  "label": "🔄 حالت به روز رسانی"
586
601
  },
602
+ "panel_mode": {
603
+ "description": "",
604
+ "label": ""
605
+ },
606
+ "parent_admin_proxy_path": {
607
+ "description": "",
608
+ "label": ""
609
+ },
610
+ "parent_domain": {
611
+ "description": "",
612
+ "label": ""
613
+ },
587
614
  "parent_panel": {
588
615
  "description": "می‌توانید به پنل مرکزی وصل شوید، تا فقط یک یوزر را تعریف کنید و میزان استفاده همه سرورها به صورت تجمعی اضافه می‌شود.",
589
616
  "label": "پنل مرکزی (مالتی سرور)"
@@ -640,10 +667,18 @@
640
667
  "description": "مسیر مخفی پروکسی پروکسی ها را از دولت ها و ربات ها پنهان می کند",
641
668
  "label": "مسیر پروکسی برای مشتریان"
642
669
  },
670
+ "quic_enable": {
671
+ "description": "",
672
+ "label": ""
673
+ },
643
674
  "reality": {
644
675
  "description": "REALITY قابلیت اثر انگشت TLS سمت سرور را حذف می کند",
645
676
  "label": "ریالیتی"
646
677
  },
678
+ "reality_enable": {
679
+ "description": "",
680
+ "label": ""
681
+ },
647
682
  "reality_fallback_domain": {
648
683
  "description": "هنگامی که GTW از وب‌ سایت‌ها در نام سرور بازدید می‌کند، به این دامنه هدایت می‌شود.",
649
684
  "label": "🌍 دامنه بازگشتی ریالیتی"
@@ -760,6 +795,10 @@
760
795
  "description": "لطفا از یک دامنه معتبر در دیتاسنتر خود استفاده کنید. برای مثال، اگر از دیتاسنتر Azure استفاده می‌کنید، microsoft-update.com یک نمونه خوب است",
761
796
  "label": "دامنه جعلی برای SSR"
762
797
  },
798
+ "tcp_enable": {
799
+ "description": "",
800
+ "label": ""
801
+ },
763
802
  "telegram": {
764
803
  "description": "پروکسی تلگرام برای استفاده درون اپ تلگرام طراحی شده تا فیلترینگ تلگرام را دور بزند",
765
804
  "label": "پروکسی تلگرام"
@@ -828,6 +867,10 @@
828
867
  "description": "در این قسمت تنظیمات Torrent Block قابل انجام است.",
829
868
  "label": "تنظیمات Torrent Block"
830
869
  },
870
+ "trojan_enable": {
871
+ "description": "",
872
+ "label": ""
873
+ },
831
874
  "tuic": {
832
875
  "description": "پروکسی Delicately-TUICed با کارایی بالا روی پروتکل QUIC است. \nهدف TUIC این است که تأخیر handshake را تا حد امکان به حداقل برساند.",
833
876
  "label": "TUIC"
@@ -855,6 +898,10 @@
855
898
  "validation-error": "یکی از فیلدها دچار خطا شده است.",
856
899
  "validation-success": "تنظیمات با موفقیت ذخیره شدند. لطفا بر روی این لینک: %(link)s کلیک کنید تا بر روی سیستم اعمال شوند. این کار ممکن است 2 دقیقه طول بکشد",
857
900
  "validation-success-no-reset": " ✅ تنظیمات با موفقیت تغییر کرد",
901
+ "vless_enable": {
902
+ "description": "",
903
+ "label": ""
904
+ },
858
905
  "vmess_enable": {
859
906
  "description": "فعال کردن پروتکل VMess",
860
907
  "label": "♈️ فعال کردن VMess"
@@ -914,6 +961,10 @@
914
961
  "ws_enable": {
915
962
  "description": "Websocket یک تونل روی HTTP ایجاد می کند که برای استفاده در CDN مفید است",
916
963
  "label": "🔰 Websocket را فعال کنید"
964
+ },
965
+ "xtls_enable": {
966
+ "description": "",
967
+ "label": ""
917
968
  }
918
969
  },
919
970
  "config.invalid uuid": "رمز UUID نامعتبر است. به عنوان مثال: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6",
@@ -970,6 +1021,7 @@
970
1021
  "next": "بعدی",
971
1022
  "no_reset": "⭐️ بدون ریست شدن",
972
1023
  "node": {
1024
+ "diff-version": "",
973
1025
  "mode": {
974
1026
  "dscr": "",
975
1027
  "label": "حالت گره"
@@ -987,6 +1039,10 @@
987
1039
  "open": "باز کردن",
988
1040
  "package days?": "تعداد روز؟",
989
1041
  "package size?": "حجم بسته",
1042
+ "parent": {
1043
+ "invalid-parent-url": "",
1044
+ "sync-req-failed": ""
1045
+ },
990
1046
  "previous": "قبلی",
991
1047
  "quicksetup": {
992
1048
  "setlang": {
@@ -6,7 +6,7 @@
6
6
  "0 - Last day": "Último dia",
7
7
  "Access Denied!": "Acesso negado",
8
8
  "Actions": "Ações",
9
- "Active": "",
9
+ "Active": "ativo",
10
10
  "Active Users": "Usuários ativos",
11
11
  "Add": "Adicionar",
12
12
  "Add some text that is only visible to super_admin.": "Adicione algum texto que seja visível apenas para o superadministrador",
@@ -28,7 +28,7 @@
28
28
  "Bug": "Bug/recurso",
29
29
  "CPU %(cores)s Cores": "CPU %(cores)s Núcleos ",
30
30
  "Can add sub admin": "👥 Pode adicionar subadministrador",
31
- "Can not connect to Cloudflare.": "",
31
+ "Can not connect to Cloudflare.": "Não é possível conectar ao Cloudflare.",
32
32
  "Check again": "Verifique novamente",
33
33
  "Childs": "Crianças",
34
34
  "China": "🇨🇳 China",
@@ -36,7 +36,7 @@
36
36
  "Click to Import": "Click to Import",
37
37
  "Click to Start Anti-Filter.": "<i class='fa-solid fa-play'></i> Toque para iniciar o Antifiltro.",
38
38
  "Close": "Fechar",
39
- "Commercial use": "",
39
+ "Commercial use": "Utilização comercial",
40
40
  "Config file is incorrect": "O arquivo de configuração está incorreto.",
41
41
  "Copy Link": "Link de cópia",
42
42
  "Couldn't find your ip addresses": "Não foi possível encontrar seus endereços IP",
@@ -45,7 +45,7 @@
45
45
  "Create Directory": "Criar diretório",
46
46
  "Create New Record": "Criar Novo Registro",
47
47
  "Create Package": "Criar pacote",
48
- "Current Domain": "",
48
+ "Current Domain": "Domínio atual",
49
49
  "Dear {}\n\nYour hiddify information is\nUUID: {}\nLast online date: {}\nExpire time: {}\nUsage class: {}\n": "Querido {}\n\nSuas informações do Hiddify são\nUUID: {}\nÚltima data on-line: {}\nTempo de expiração: {}\nClasse de uso: {}",
50
50
  "Define the admin mode. ": "Definir o Modo Admin",
51
51
  "Define the user mode. Should the usage reset every month?": "O modo de pacote do usuário. o uso deve ser redefinido a cada mês, semana etc.",
@@ -57,7 +57,7 @@
57
57
  "Disk": "Disco rígido",
58
58
  "Domain": "Domínio",
59
59
  "Domain (%(domain)s)-> IP=%(domain_ip)s is not matched with your ip=%(server_ip)s which is required in direct mode": "Domain (%(domain)s)-> IP = %(domain_ip)s não é igual ao seu IP = %(server_ip)s . isso é necessário no modo direto",
60
- "Domain IP=%(domain_ip)s is not matched with your ip=%(server_ip)s which is required in direct mode": "",
60
+ "Domain IP=%(domain_ip)s is not matched with your ip=%(server_ip)s which is required in direct mode": " O IP do domínio = %(domain_ip)s não corresponde ao seu IP = %(server_ip)s, o que é necessário no modo direto",
61
61
  "Domain can not be resolved! there is a problem in your domain": "O domínio não pode ser resolvido! Há um problema em seu domínio. Verifique as configurações do seu Domínio.",
62
62
  "Domain is not REALITY friendly!": "O domínio não é compatível com Reality!",
63
63
  "Domain?": "Domínio?",
@@ -100,7 +100,7 @@
100
100
  "Incorrect Password": "⚠️ Senha incorreta",
101
101
  "Install": "Instalar",
102
102
  "Install Hiddify Application": "Instalação do Painel Hidify",
103
- "Invalid IP or domain": "",
103
+ "Invalid IP or domain": "IP ou domínio inválido",
104
104
  "Invalid REALITY hostnames": "Nomes de host REALITY inválidos",
105
105
  "Invalid admin link": "Link de administrador inválido",
106
106
  "Iran": "🇮🇷 Irã",
@@ -333,6 +333,12 @@
333
333
  "auto_cdn_ip": "Seletor automático de CDN IP",
334
334
  "cdn": "CDN (Cloudflare Proxy, ...)",
335
335
  "child has been removed!": "Child removido",
336
+ "child": {
337
+ "register-failed": "",
338
+ "register-success": "",
339
+ "sync-failed": "",
340
+ "sync-success": ""
341
+ },
336
342
  "clickable copy": "Link para mídias sociais",
337
343
  "close": "Fechar",
338
344
  "config.Domain already used": "O domínio existe na seção de domínios. Usar outro domínio",
@@ -456,6 +462,10 @@
456
462
  "description": "",
457
463
  "label": ""
458
464
  },
465
+ "h2_enable": {
466
+ "description": "",
467
+ "label": ""
468
+ },
459
469
  "hidden": {
460
470
  "description": "config.hidden.description",
461
471
  "label": "config.hidden.label"
@@ -500,6 +510,7 @@
500
510
  "description": "",
501
511
  "label": ""
502
512
  },
513
+ "invalid-pattern-for-warp-sites": "",
503
514
  "is_parent": {
504
515
  "description": "config.is_parent.description",
505
516
  "label": "Painel pai"
@@ -528,10 +539,14 @@
528
539
  "description": "Para uso comercial deste produto, você deve comprar sua licença",
529
540
  "label": "Código de licença"
530
541
  },
531
- "mux": {
542
+ "log_level": {
532
543
  "description": "",
533
544
  "label": ""
534
545
  },
546
+ "mux": {
547
+ "description": "",
548
+ "label": "Configurações de MUX"
549
+ },
535
550
  "mux_brutal_down_mbps": {
536
551
  "description": "",
537
552
  "label": ""
@@ -584,6 +599,18 @@
584
599
  "description": "Especifique se você deseja um pacote lançado ou desenvolvido",
585
600
  "label": "🔄 Modo de atualização de pacotes"
586
601
  },
602
+ "panel_mode": {
603
+ "description": "",
604
+ "label": ""
605
+ },
606
+ "parent_admin_proxy_path": {
607
+ "description": "",
608
+ "label": ""
609
+ },
610
+ "parent_domain": {
611
+ "description": "",
612
+ "label": ""
613
+ },
587
614
  "parent_panel": {
588
615
  "description": "Você pode se conectar ao Painel Central para definir apenas um usuário e o uso de todos os servidores será adicionado cumulativamente.",
589
616
  "label": "Painel Pai (Multi-servidor)"
@@ -640,10 +667,18 @@
640
667
  "description": "",
641
668
  "label": ""
642
669
  },
670
+ "quic_enable": {
671
+ "description": "",
672
+ "label": ""
673
+ },
643
674
  "reality": {
644
675
  "description": "REALITY elimina o recurso de impressão digital TLS do lado do servidor",
645
676
  "label": "Reality"
646
677
  },
678
+ "reality_enable": {
679
+ "description": "",
680
+ "label": ""
681
+ },
647
682
  "reality_fallback_domain": {
648
683
  "description": "Quando o GTW visitar os sites em nomes de servidor, ele será redirecionado para este domínio",
649
684
  "label": "🌍 Domínio alternativo"
@@ -760,6 +795,10 @@
760
795
  "description": "Por favor, use um domínio bem conhecido em seu data center. por exemplo, se você estiver no data center do Azure, microsoft-update.com é um bom exemplo",
761
796
  "label": "SSR FakeDomain"
762
797
  },
798
+ "tcp_enable": {
799
+ "description": "",
800
+ "label": ""
801
+ },
763
802
  "telegram": {
764
803
  "description": "Um proxy projetado para o Telegram ignorar a filtragem do Telegram",
765
804
  "label": "Telegram Proxy"
@@ -828,6 +867,10 @@
828
867
  "description": "As configurações do bloco de torrent podem ser definidas nesta seção.",
829
868
  "label": "Configuração do Bloco de Torrent"
830
869
  },
870
+ "trojan_enable": {
871
+ "description": "",
872
+ "label": ""
873
+ },
831
874
  "tuic": {
832
875
  "description": "O proxy de alto desempenho delicadamente TUICed está no topo do protocolo QUIC.\n\nO objetivo do TUIC é minimizar a latência do handshake o máximo possível",
833
876
  "label": "TUIC"
@@ -855,6 +898,10 @@
855
898
  "validation-error": "Há um erro em um dos campos.",
856
899
  "validation-success": "As configurações foram alteradas com sucesso. Clique em %(link)s para aplicar as configurações. Pode levar 2 minutos para aplicar",
857
900
  "validation-success-no-reset": "✅ As configurações foram alteradas com sucesso",
901
+ "vless_enable": {
902
+ "description": "",
903
+ "label": ""
904
+ },
858
905
  "vmess_enable": {
859
906
  "description": "É relatado por várias pessoas que o VMess faz com que o sistema seja detectado pelo governo. Então não é recomendado",
860
907
  "label": "♈️ Habilitar VMess"
@@ -914,6 +961,10 @@
914
961
  "ws_enable": {
915
962
  "description": "",
916
963
  "label": ""
964
+ },
965
+ "xtls_enable": {
966
+ "description": "",
967
+ "label": ""
917
968
  }
918
969
  },
919
970
  "config.invalid uuid": "Secret UUID inválido. exemplo: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6",
@@ -970,6 +1021,7 @@
970
1021
  "next": "Próximo",
971
1022
  "no_reset": "Sem Redefinir",
972
1023
  "node": {
1024
+ "diff-version": "",
973
1025
  "mode": {
974
1026
  "dscr": "",
975
1027
  "label": "Modo de nó"
@@ -987,6 +1039,10 @@
987
1039
  "open": "Abrir",
988
1040
  "package days?": "dias de pacote?",
989
1041
  "package size?": "tamanho do pacote?",
1042
+ "parent": {
1043
+ "invalid-parent-url": "",
1044
+ "sync-req-failed": ""
1045
+ },
990
1046
  "previous": "Anterior",
991
1047
  "quicksetup": {
992
1048
  "setlang": {
@@ -333,6 +333,12 @@
333
333
  "auto_cdn_ip": "☑️ Автоматический выбор IP-адреса CDN",
334
334
  "cdn": "🔀 CDN (Cloudflare Proxy, ...)",
335
335
  "child has been removed!": "Дочерний элемент удален!",
336
+ "child": {
337
+ "register-failed": "",
338
+ "register-success": "",
339
+ "sync-failed": "",
340
+ "sync-success": ""
341
+ },
336
342
  "clickable copy": "Ссылка для социальных сетей",
337
343
  "close": "Закрыть",
338
344
  "config.Domain already used": "Домен уже существует. Использовать другой домен",
@@ -456,6 +462,10 @@
456
462
  "description": "gRPC — это современная высокопроизводительная платформа удаленного вызова процедур (RPC) с открытым исходным кодом. Его можно использовать в поддерживаемых CDN.",
457
463
  "label": "➿ Включить gRPC"
458
464
  },
465
+ "h2_enable": {
466
+ "description": "",
467
+ "label": ""
468
+ },
459
469
  "hidden": {
460
470
  "description": "config.hidden.description",
461
471
  "label": "config.hidden.label"
@@ -500,6 +510,7 @@
500
510
  "description": "Hysteria Максимальная Скорость Исходящей Загрузки",
501
511
  "label": "⬆️ Hysteria Исходящая Загрузка (mbps)"
502
512
  },
513
+ "invalid-pattern-for-warp-sites": "",
503
514
  "is_parent": {
504
515
  "description": "config.is_parent.description",
505
516
  "label": "Главная панель"
@@ -528,6 +539,10 @@
528
539
  "description": "Для коммерческого использования этого продукта вам необходимо приобрести его лицензию.",
529
540
  "label": "License Code"
530
541
  },
542
+ "log_level": {
543
+ "description": "",
544
+ "label": ""
545
+ },
531
546
  "mux": {
532
547
  "description": "Настройки конфигурации MUX (Multiplex)",
533
548
  "label": "Настройки MUX"
@@ -584,6 +599,18 @@
584
599
  "description": "Укажите, хотите ли вы релиз версию пакета или версию в стадии разработки.",
585
600
  "label": "🔄 Режим обновления пакетов"
586
601
  },
602
+ "panel_mode": {
603
+ "description": "",
604
+ "label": ""
605
+ },
606
+ "parent_admin_proxy_path": {
607
+ "description": "",
608
+ "label": ""
609
+ },
610
+ "parent_domain": {
611
+ "description": "",
612
+ "label": ""
613
+ },
587
614
  "parent_panel": {
588
615
  "description": "Вы можете подключиться к главной панели, чтобы добавить пользователя в одном месте, а использование всех серверов будет добавлено автоматически. ",
589
616
  "label": "Главная панель (мультисервер)"
@@ -640,10 +667,18 @@
640
667
  "description": "",
641
668
  "label": ""
642
669
  },
670
+ "quic_enable": {
671
+ "description": "",
672
+ "label": ""
673
+ },
643
674
  "reality": {
644
675
  "description": "REALITY функция устранения TLS Fingerprint со стороны севрера",
645
676
  "label": "Reality"
646
677
  },
678
+ "reality_enable": {
679
+ "description": "",
680
+ "label": ""
681
+ },
647
682
  "reality_fallback_domain": {
648
683
  "description": "При попытке контролирующих органов посетить сайт вытащенный из запроса, он будет перенаправлен на этот домен.",
649
684
  "label": "🌍 Резервный домен Reality"
@@ -760,6 +795,10 @@
760
795
  "description": "Пожалуйста, используйте хорошо известный домен в своем центре обработки данных или хостинге. например, если вы находитесь в центре обработки данных Azure, хороший пример — microsoft-update.com",
761
796
  "label": "SSR поддельный домен"
762
797
  },
798
+ "tcp_enable": {
799
+ "description": "",
800
+ "label": ""
801
+ },
763
802
  "telegram": {
764
803
  "description": "Прокси-сервер, разработанный для Telegram для обхода фильтрации Telegram",
765
804
  "label": "Телеграм-прокси"
@@ -828,6 +867,10 @@
828
867
  "description": "В этом разделе можно настроить блокировку Torrent",
829
868
  "label": "Конфигурация блокировки Torrent"
830
869
  },
870
+ "trojan_enable": {
871
+ "description": "",
872
+ "label": ""
873
+ },
831
874
  "tuic": {
832
875
  "description": "Delicately-TUICed высокопроизводительный прокси работающий поверх протокола QUIC.\n\nЦель TUIC — максимально минимизировать задержку рукопожатия.",
833
876
  "label": "TUIC"
@@ -855,6 +898,10 @@
855
898
  "validation-error": "В одном из полей ошибка.",
856
899
  "validation-success": "Конфигурации успешно изменены. Нажмите %(link)s, чтобы применить их. Это может занять 2 минуты",
857
900
  "validation-success-no-reset": "✅ Конфигурации успешно изменены",
901
+ "vless_enable": {
902
+ "description": "",
903
+ "label": ""
904
+ },
858
905
  "vmess_enable": {
859
906
  "description": "Несколько человек сообщили, что VMess позволляет правительствам обнаруживать систему. Не рекомендуется",
860
907
  "label": "♈️ Включить VMess"
@@ -914,6 +961,10 @@
914
961
  "ws_enable": {
915
962
  "description": "Websocket создает туннель поверх HTTP, который будет полезно использовать в CDN",
916
963
  "label": "🔰 Включить Websocket"
964
+ },
965
+ "xtls_enable": {
966
+ "description": "",
967
+ "label": ""
917
968
  }
918
969
  },
919
970
  "config.invalid uuid": "Неверный UUID. пример: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6",
@@ -970,6 +1021,7 @@
970
1021
  "next": "Следующий",
971
1022
  "no_reset": "⭐️ Без сброса",
972
1023
  "node": {
1024
+ "diff-version": "",
973
1025
  "mode": {
974
1026
  "dscr": "",
975
1027
  "label": "Режим узла"
@@ -987,6 +1039,10 @@
987
1039
  "open": "Открыть",
988
1040
  "package days?": "пакетные дни?",
989
1041
  "package size?": "Размер посылки?",
1042
+ "parent": {
1043
+ "invalid-parent-url": "",
1044
+ "sync-req-failed": ""
1045
+ },
990
1046
  "previous": "Предыдущий",
991
1047
  "quicksetup": {
992
1048
  "setlang": {