hiddifypanel 10.20.3__py3-none-any.whl → 10.30.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.
- hiddifypanel/VERSION +1 -1
- hiddifypanel/VERSION.py +2 -2
- hiddifypanel/base.py +22 -12
- hiddifypanel/cache.py +2 -51
- hiddifypanel/drivers/wireguard_api.py +24 -5
- hiddifypanel/hutils/convert.py +1 -1
- hiddifypanel/hutils/flask.py +28 -2
- hiddifypanel/hutils/importer/xui.py +6 -7
- hiddifypanel/hutils/network/__init__.py +1 -0
- hiddifypanel/hutils/network/cf_api.py +84 -0
- hiddifypanel/hutils/network/net.py +26 -49
- hiddifypanel/hutils/node/child.py +25 -7
- hiddifypanel/hutils/node/parent.py +7 -7
- hiddifypanel/hutils/node/shared.py +19 -6
- hiddifypanel/hutils/proxy/clash.py +1 -1
- hiddifypanel/hutils/proxy/shared.py +1 -1
- hiddifypanel/hutils/proxy/singbox.py +2 -3
- hiddifypanel/hutils/proxy/xray.py +12 -10
- hiddifypanel/hutils/proxy/xrayjson.py +26 -49
- hiddifypanel/hutils/utils.py +47 -3
- hiddifypanel/models/__init__.py +1 -1
- hiddifypanel/models/admin.py +9 -2
- hiddifypanel/models/base_account.py +3 -1
- hiddifypanel/models/config.py +10 -19
- hiddifypanel/models/config_enum.py +18 -6
- hiddifypanel/models/domain.py +82 -118
- hiddifypanel/models/user.py +44 -24
- hiddifypanel/panel/admin/Actions.py +6 -11
- hiddifypanel/panel/admin/AdminstratorAdmin.py +3 -9
- hiddifypanel/panel/admin/Backup.py +5 -8
- hiddifypanel/panel/admin/Dashboard.py +3 -4
- hiddifypanel/panel/admin/DomainAdmin.py +20 -15
- hiddifypanel/panel/admin/ProxyAdmin.py +3 -10
- hiddifypanel/panel/admin/QuickSetup.py +1 -1
- hiddifypanel/panel/admin/SettingAdmin.py +7 -5
- hiddifypanel/panel/admin/Terminal.py +0 -1
- hiddifypanel/panel/admin/UserAdmin.py +4 -3
- hiddifypanel/panel/admin/templates/model/proxydetail_list.html +6 -0
- hiddifypanel/panel/cli.py +36 -23
- hiddifypanel/panel/commercial/ProxyDetailsAdmin.py +15 -5
- hiddifypanel/panel/commercial/restapi/v1/tgbot.py +7 -4
- hiddifypanel/panel/commercial/restapi/v2/admin/__init__.py +17 -13
- hiddifypanel/panel/commercial/restapi/v2/admin/admin_info_api.py +4 -3
- hiddifypanel/panel/commercial/restapi/v2/admin/admin_user_api.py +28 -10
- hiddifypanel/panel/commercial/restapi/v2/admin/admin_users_api.py +2 -19
- hiddifypanel/panel/commercial/restapi/v2/admin/schema.py +27 -4
- hiddifypanel/panel/commercial/restapi/v2/admin/user_api.py +28 -9
- hiddifypanel/panel/commercial/restapi/v2/admin/users_api.py +1 -21
- hiddifypanel/panel/commercial/restapi/v2/parent/register_api.py +1 -1
- hiddifypanel/panel/commercial/restapi/v2/parent/schema.py +8 -4
- hiddifypanel/panel/commercial/restapi/v2/parent/sync_api.py +19 -3
- hiddifypanel/panel/commercial/restapi/v2/user/configs_api.py +48 -42
- hiddifypanel/panel/commercial/telegrambot/Usage.py +1 -1
- hiddifypanel/panel/commercial/telegrambot/admin.py +1 -1
- hiddifypanel/panel/commercial/telegrambot/information.py +1 -1
- hiddifypanel/panel/common.py +5 -11
- hiddifypanel/panel/hiddify.py +9 -20
- hiddifypanel/panel/init_db.py +41 -24
- hiddifypanel/panel/usage.py +38 -9
- hiddifypanel/panel/user/user.py +52 -32
- hiddifypanel/templates/admin-layout.html +2 -2
- hiddifypanel/templates/fake.html +316 -0
- hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/en/LC_MESSAGES/messages.po +107 -45
- hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/fa/LC_MESSAGES/messages.po +102 -36
- hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/pt/LC_MESSAGES/messages.po +64 -7
- hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/ru/LC_MESSAGES/messages.po +161 -78
- hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/zh/LC_MESSAGES/messages.po +63 -6
- hiddifypanel/translations.i18n/en.json +83 -42
- hiddifypanel/translations.i18n/fa.json +73 -32
- hiddifypanel/translations.i18n/pt.json +45 -4
- hiddifypanel/translations.i18n/ru.json +113 -72
- hiddifypanel/translations.i18n/zh.json +44 -3
- {hiddifypanel-10.20.3.dist-info → hiddifypanel-10.30.0.dist-info}/METADATA +2 -1
- {hiddifypanel-10.20.3.dist-info → hiddifypanel-10.30.0.dist-info}/RECORD +83 -82
- {hiddifypanel-10.20.3.dist-info → hiddifypanel-10.30.0.dist-info}/WHEEL +1 -1
- hiddifypanel/panel/cf_api.py +0 -37
- {hiddifypanel-10.20.3.dist-info → hiddifypanel-10.30.0.dist-info}/LICENSE.md +0 -0
- {hiddifypanel-10.20.3.dist-info → hiddifypanel-10.30.0.dist-info}/entry_points.txt +0 -0
- {hiddifypanel-10.20.3.dist-info → hiddifypanel-10.30.0.dist-info}/top_level.txt +0 -0
@@ -29,16 +29,15 @@
|
|
29
29
|
"Bug": "باگ/پیشنهاد",
|
30
30
|
"CPU %(cores)s Cores": "پردازنده %(cores)s هسته",
|
31
31
|
"Can add sub admin": "👥 امکان اضافه کردن ادمین فرعی",
|
32
|
-
"Can not connect to Cloudflare.": "نمی توان به Cloudflare متصل شد.",
|
33
32
|
"Check again": "بررسی مجدد",
|
34
33
|
"Childs": "زیرمجموعهها",
|
35
34
|
"China": "🇨🇳 چین",
|
36
|
-
"Click here to see the complete log": "برای دیدن لاگ کامل، اینجا کلیک
|
35
|
+
"Click here to see the complete log": "برای دیدن لاگ کامل، اینجا کلیک کنید",
|
37
36
|
"Click to Import": "کلیک برای افزودن کانفیگ",
|
38
37
|
"Click to Start Anti-Filter.": "<i class='fa-solid fa-caret-left'></i> کلیک برای اعمال فیلترشکن",
|
39
38
|
"Close": "بستن",
|
40
39
|
"Commercial use": "استفاده تجاری",
|
41
|
-
"Config file is incorrect": "فایل کانفیگ اشتباه
|
40
|
+
"Config file is incorrect": "فایل کانفیگ اشتباه است",
|
42
41
|
"Copy Link": "کپی لینک",
|
43
42
|
"Couldn't find your ip addresses": "آدرس های IP شما پیدا نشد",
|
44
43
|
"Count:": "تعداد:",
|
@@ -165,6 +164,7 @@
|
|
165
164
|
"Remote nodes are not supported yet!": "گره های راه دور هنوز پشتیبانی نمی شوند!",
|
166
165
|
"Rename File": "تغییر نام پرونده",
|
167
166
|
"Reset Filters": "برگرداندن فیلتر ها به حالت اول",
|
167
|
+
"Reset Proxies": "",
|
168
168
|
"Reset Usage Time:": "زمان صفر شدن حجم:",
|
169
169
|
"Reset every month": "ماهانه",
|
170
170
|
"Reset package days": "📆 ریست زمان شروع بسته کاربر",
|
@@ -230,7 +230,7 @@
|
|
230
230
|
"With selected": "با انتخاب شده ها",
|
231
231
|
"Xray": "☢️ XRay",
|
232
232
|
"Yesterday Usage": "استفاده دیروز",
|
233
|
-
"You can download a json formated of configurations by clicking <a href='%(link)s' class='btn btn-primary'>here</a>": "🔄 پنل هیدیفای به صورت خودکار هر ۶ ساعت یک Backup میگیرد. مسیر فایل های Backup روی سرور: ⬇️\n<br>\n/opt/hiddify-manager/hiddify-panel/backup/\n<br>\n<br>\n<br>\n⚠️ میتوانید با کلیک بر روی دکمه زیر تنظیمات را با فرمت JSON دریافت کنید.\n<br>\n<br>\n<a href='%(link)s' class='btn btn-primary'>دریافت فایل پشتیبان</a>",
|
233
|
+
"You can download a json formated of configurations by clicking <a href='%(link)s' class='btn btn-primary'>here</a>": "🔄 پنل هیدیفای به صورت خودکار هر ۶ ساعت یک Backup میگیرد. مسیر فایل های Backup روی سرور: ⬇️\n<br>\n💿 /opt/hiddify-manager/hiddify-panel/backup/\n<br>\n<br>\n<br>\n⚠️ میتوانید با کلیک بر روی دکمه زیر تنظیمات را با فرمت JSON دریافت کنید.\n<br>\n<br>\n<a href='%(link)s' class='btn btn-primary'>دریافت فایل پشتیبان</a>",
|
234
234
|
"You can restore your configs from previously downloaded configs": "ℹ️ در این قسمت میتوانید تنظیمات قبلی خود را (که قبلا از قسمت پشتیبان گیری دانلود کردهاید.) بازگردانی نمایید.",
|
235
235
|
"You can select the configs with which domains show be shown in the user area. If you select all, automatically, all the new domains will be added for each users.": "مشخص کنید کاربرانی که با این دامنه، پنل کاربری را مشاهده میکنند، کانفیگهای مربوط به کدام دامنهها را مشاهده کنند.\n<br>\nپیشنهاد: برای یک دامنه با IP فیلتر نشده و متفاوت با بقیه، همه دامنه های دیگر (به جز دامنه فعلی) را انتخاب کنید. در نتیجه از آنجایی که از این IP برای فیلترشکن استفاده نمیشود و یک وبسایت ساده است، این دامنه و آی پی هرگز مسدود نمیشود و کاربران شما به راحتی می توانند پروفایل های جدید را به روز کنند.",
|
236
236
|
"You have too much users! You can have only %(active)s active users and %(total)s users": "شما کاربران زیادی دارید! شما می توانید تنها %(active)s کاربر فعال و %(total)s کاربر داشته باشید",
|
@@ -333,15 +333,20 @@
|
|
333
333
|
"auto": "خودکار",
|
334
334
|
"auto_cdn_ip": "☑️ انتخاب کننده آیپی CDN به صورت خودکار",
|
335
335
|
"cdn": "🔀 سیدیان (پروکسی کلودفلر و ...)",
|
336
|
+
"cf-delete": {
|
337
|
+
"failed": ""
|
338
|
+
},
|
336
339
|
"child has been removed!": "پنل زیر مجموعه حذف شد",
|
337
340
|
"child": {
|
338
341
|
"register-failed": "",
|
339
342
|
"register-success": "",
|
340
|
-
"sync-failed": ""
|
341
|
-
"sync-success": ""
|
343
|
+
"sync-failed": ""
|
342
344
|
},
|
343
345
|
"clickable copy": "لینک برای شبکههای اجتماعی",
|
344
346
|
"close": "بستن",
|
347
|
+
"cloudflare": {
|
348
|
+
"error": ""
|
349
|
+
},
|
345
350
|
"config.Domain already used": "دامنه در بخش دامنهها وجود دارد. از دامنه دیگری استفاده کنید.",
|
346
351
|
"config.Invalid brand link": "لینک پشتیبانی نامعتبر است. لطفا لینک را با فرمت معتبر وارد کنید.",
|
347
352
|
"config.Invalid domain": "خطا! دامنه نامعتبر! فرمت دامنه باید مثل www.google.com باشد.",
|
@@ -461,16 +466,20 @@
|
|
461
466
|
},
|
462
467
|
"grpc_enable": {
|
463
468
|
"description": "gRPC یک چارچوب متن باز مدرن با کارایی بالا Remote Procedure Call (RPC) است. می توان از آن در CDN های پشتیبانی شده استفاده کرد",
|
464
|
-
"label": "➿ gRPC
|
469
|
+
"label": "➿ gRPC"
|
465
470
|
},
|
466
471
|
"h2_enable": {
|
467
472
|
"description": "فعال کردن پروتکل HTTP/2",
|
468
|
-
"label": "
|
473
|
+
"label": "🔵 h2"
|
469
474
|
},
|
470
475
|
"hidden": {
|
471
476
|
"description": "-",
|
472
477
|
"label": "-"
|
473
478
|
},
|
479
|
+
"hiddifycli_enable": {
|
480
|
+
"description": "",
|
481
|
+
"label": ""
|
482
|
+
},
|
474
483
|
"http": {
|
475
484
|
"description": "تنظیمات مربوط به اتصال HTTP",
|
476
485
|
"label": "تنظیمات HTTP"
|
@@ -484,8 +493,8 @@
|
|
484
493
|
"label": "☑️ اجازه اتصال HTTP"
|
485
494
|
},
|
486
495
|
"httpupgrade_enable": {
|
487
|
-
"description": "<p style=\"direction:rtl\">HTTPUpgrade یک درخواست ارتقاء HTTP ۱.۱ است و پاسخ را قبل از استفاده مستقیم از اتصال تکمیل می کند. این شبیه به WebSocket است که یک کانال ایجاد می کند که می تواند توسط بسیاری از پروکسی های معکوس و CDN ها ارسال شود، بدون اینکه نیازی به رسیدگی به تمام مسائل پیرامون خود پروتکل WebSocket باشد.<br
|
488
|
-
"label": "🆙
|
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"
|
489
498
|
},
|
490
499
|
"hysteria": {
|
491
500
|
"description": "Hysteria یک ابزار پروکسی و رله پر از ویژگی است که برای اتصالات با اتلاف و ناپایدار بهینه شده است (مانند شبکه های ماهواره ای، Wi-Fi عمومی متراکم، اتصال به سرورهای خارجی از چین)",
|
@@ -497,11 +506,11 @@
|
|
497
506
|
},
|
498
507
|
"hysteria_enable": {
|
499
508
|
"description": "برای فعال کردن پروتکل هیستریا مبتنی بر UDP",
|
500
|
-
"label": "هیستریا
|
509
|
+
"label": "⚪️ هیستریا"
|
501
510
|
},
|
502
511
|
"hysteria_obfs_enable": {
|
503
512
|
"description": "مبهم سازی هیستری (Salamander) را فعال می کند",
|
504
|
-
"label": "🎛 Hysteria OBFS
|
513
|
+
"label": "🎛 Hysteria OBFS"
|
505
514
|
},
|
506
515
|
"hysteria_port": {
|
507
516
|
"description": "پورت Hysteria UDP برای مثال 5678",
|
@@ -511,7 +520,7 @@
|
|
511
520
|
"description": "حداکثر سرعت آپلود هیستریا",
|
512
521
|
"label": "⬆️ آپلود (mbps) Hysteria"
|
513
522
|
},
|
514
|
-
"invalid-pattern-for-warp-sites": "",
|
523
|
+
"invalid-pattern-for-warp-sites": "⚠️ سایت وارد شده برای وارپ با الگوی تعیین شده مطابقت ندارد",
|
515
524
|
"is_parent": {
|
516
525
|
"description": "-",
|
517
526
|
"label": "پنل مرکزی"
|
@@ -522,7 +531,7 @@
|
|
522
531
|
},
|
523
532
|
"kcp_enable": {
|
524
533
|
"description": "این یک پروتکل مبتنی بر UDP است.",
|
525
|
-
"label": "KCP
|
534
|
+
"label": "KCP."
|
526
535
|
},
|
527
536
|
"kcp_ports": {
|
528
537
|
"description": "پورت هایی که برای استفاده اتصال KCP هستند. برای ورود چند پورت، آنها را با کاما از هم جدا کنید. ",
|
@@ -536,6 +545,10 @@
|
|
536
545
|
"description": "-",
|
537
546
|
"label": "-"
|
538
547
|
},
|
548
|
+
"last_priodic_usage_check": {
|
549
|
+
"description": "",
|
550
|
+
"label": ""
|
551
|
+
},
|
539
552
|
"license": {
|
540
553
|
"description": "برای استفاده تجاری از این محصول باید مجوز آن را خریداری کنید",
|
541
554
|
"label": "کد مجوز"
|
@@ -670,7 +683,7 @@
|
|
670
683
|
},
|
671
684
|
"quic_enable": {
|
672
685
|
"description": "فعال کردن پروتکل QUIC",
|
673
|
-
"label": "
|
686
|
+
"label": "🟡 QUIC"
|
674
687
|
},
|
675
688
|
"reality": {
|
676
689
|
"description": "REALITY قابلیت اثر انگشت TLS سمت سرور را حذف می کند",
|
@@ -678,7 +691,7 @@
|
|
678
691
|
},
|
679
692
|
"reality_enable": {
|
680
693
|
"description": "فعال کردن پروتکل Reality",
|
681
|
-
"label": "
|
694
|
+
"label": "🔴 Reality"
|
682
695
|
},
|
683
696
|
"reality_fallback_domain": {
|
684
697
|
"description": "هنگامی که GTW از وب سایتها در نام سرور بازدید میکند، به این دامنه هدایت میشود.",
|
@@ -722,7 +735,7 @@
|
|
722
735
|
},
|
723
736
|
"shadowsocks2022_enable": {
|
724
737
|
"description": "Shadowsocks 2022 یک پروتکل پروکسی امن برای ترافیک TCP و UDP است. ترافیک پراکسی از یک جریان بایت تصادفی قابل تشخیص نیست و بنابراین می تواند فایروال ها و سانسورهای اینترنتی را که به DPI (بازرسی عمیق بسته) متکی هستند، دور بزند",
|
725
|
-
"label": "⭕️ Shadowsocks 2022
|
738
|
+
"label": "⭕️ Shadowsocks 2022"
|
726
739
|
},
|
727
740
|
"shadowsocks2022_method": {
|
728
741
|
"description": "این روش در ShadowTLS و SSFakeTLS نیز استفاده می شود",
|
@@ -774,7 +787,7 @@
|
|
774
787
|
},
|
775
788
|
"ssh_server_enable": {
|
776
789
|
"description": "این SSH پروکسی با SSH سرور اصلی کاملا متفاوت است و امکان اجرای دستورات را ندارد",
|
777
|
-
"label": "✔️ پروکسی SSH
|
790
|
+
"label": "✔️ پروکسی SSH"
|
778
791
|
},
|
779
792
|
"ssh_server_port": {
|
780
793
|
"description": "این پورت کاملا با پورت سرور اصلی SSH شما متفاوت است. این یک برنامه اختصاصی است",
|
@@ -796,13 +809,41 @@
|
|
796
809
|
"description": "لطفا از یک دامنه معتبر در دیتاسنتر خود استفاده کنید. برای مثال، اگر از دیتاسنتر Azure استفاده میکنید، microsoft-update.com یک نمونه خوب است",
|
797
810
|
"label": "دامنه جعلی برای SSR"
|
798
811
|
},
|
812
|
+
"sub_full_clash_enable": {
|
813
|
+
"description": "",
|
814
|
+
"label": ""
|
815
|
+
},
|
816
|
+
"sub_full_clash_meta_enable": {
|
817
|
+
"description": "",
|
818
|
+
"label": ""
|
819
|
+
},
|
820
|
+
"sub_full_links_b64_enable": {
|
821
|
+
"description": "",
|
822
|
+
"label": ""
|
823
|
+
},
|
824
|
+
"sub_full_links_enable": {
|
825
|
+
"description": "",
|
826
|
+
"label": ""
|
827
|
+
},
|
828
|
+
"sub_full_singbox_enable": {
|
829
|
+
"description": "",
|
830
|
+
"label": ""
|
831
|
+
},
|
832
|
+
"sub_full_xray_json_enable": {
|
833
|
+
"description": "لینک کامل XRay گزینه های پیکربندی جامعی را برای تنظیمات خاص XRay فراهم می کند. این شامل تقسیم بندی سفارشی و چندگانه سازی (mux) در برنامه هایی مانند v2rayNG است که از پروتکل های XRay برای کنترل دقیق تنظیم پراکسی XRay پشتیبانی می کند.",
|
834
|
+
"label": "لینک پیکربندی کامل XRay"
|
835
|
+
},
|
836
|
+
"sub_singbox_ssh_enable": {
|
837
|
+
"description": "",
|
838
|
+
"label": ""
|
839
|
+
},
|
799
840
|
"tcp_enable": {
|
800
841
|
"description": "فعال کردن پروتکل TCP",
|
801
|
-
"label": "
|
842
|
+
"label": "🟠 TCP"
|
802
843
|
},
|
803
844
|
"telegram": {
|
804
845
|
"description": "پروکسی تلگرام برای استفاده درون اپ تلگرام طراحی شده تا فیلترینگ تلگرام را دور بزند",
|
805
|
-
"label": "
|
846
|
+
"label": "تنظیمات تلگرام"
|
806
847
|
},
|
807
848
|
"telegram_adtag": {
|
808
849
|
"description": "برای نشان دادن کانال اسپانسر شده در لیست چت کاربر استفاده می شود. برای تبلیغ یک کانال یک تگ از @MTProxybot دریافت کنید.\nاگر در بات تلگرام نیاز به کد داشت کد 0123456789ABCDEF0123456789ABCDEF وارد کنید",
|
@@ -830,7 +871,7 @@
|
|
830
871
|
},
|
831
872
|
"tls_fragment_enable": {
|
832
873
|
"description": "<p style=\"direction:rtl\">تحت برخی شرایط، می تواند سیستم لیست سیاه SNI را دور بزند. <a href=\"https://hiddify.com/fa/manager/basic-concepts-and-troubleshooting/How-the-TLS-Trick-works-and-its-usage/\" target=\"_blank\">(بیشتر بدانید)</a></p>",
|
833
|
-
"label": "⏯ TLS Fragment
|
874
|
+
"label": "⏯ TLS Fragment"
|
834
875
|
},
|
835
876
|
"tls_fragment_size": {
|
836
877
|
"description": "اندازه هر بسته",
|
@@ -842,11 +883,11 @@
|
|
842
883
|
},
|
843
884
|
"tls_mixed_case": {
|
844
885
|
"description": "TLS Mixed SNI Case Fragmentation را فعال می کند",
|
845
|
-
"label": "🔠 TLS Mixed SNI Case
|
886
|
+
"label": "🔠 TLS Mixed SNI Case"
|
846
887
|
},
|
847
888
|
"tls_padding_enable": {
|
848
889
|
"description": "<p style=\"direction:rtl\">Padding تکه تکه شدن TLS را فعال می کند. <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>",
|
849
|
-
"label": "♒️ TLS Padding
|
890
|
+
"label": "♒️ TLS Padding"
|
850
891
|
},
|
851
892
|
"tls_padding_length": {
|
852
893
|
"description": "طول Padding برای تکه تکه شدن TLS",
|
@@ -870,7 +911,7 @@
|
|
870
911
|
},
|
871
912
|
"trojan_enable": {
|
872
913
|
"description": "فعال کردن پروتکل Trojan",
|
873
|
-
"label": "
|
914
|
+
"label": "🟤 Trojan"
|
874
915
|
},
|
875
916
|
"tuic": {
|
876
917
|
"description": "پروکسی Delicately-TUICed با کارایی بالا روی پروتکل QUIC است. \nهدف TUIC این است که تأخیر handshake را تا حد امکان به حداقل برساند.",
|
@@ -878,7 +919,7 @@
|
|
878
919
|
},
|
879
920
|
"tuic_enable": {
|
880
921
|
"description": "این یک پروتکل مبتنی بر UDP شبیه به quic است",
|
881
|
-
"label": "فعال کردن TUIC"
|
922
|
+
"label": "🔘 فعال کردن TUIC"
|
882
923
|
},
|
883
924
|
"tuic_port": {
|
884
925
|
"description": "از کاما برای جدا کردن پروتها استفاده کنید مثلا 63000,60000",
|
@@ -894,18 +935,18 @@
|
|
894
935
|
},
|
895
936
|
"v2ray_enable": {
|
896
937
|
"description": "مود V2Ray در حال حاضر اکانتینگ را پشتیبانی نمیکند و پیشنهاد نمیشود",
|
897
|
-
"label": "♈️
|
938
|
+
"label": "♈️ V2Ray"
|
898
939
|
},
|
899
940
|
"validation-error": "یکی از فیلدها دچار خطا شده است.",
|
900
941
|
"validation-success": "تنظیمات با موفقیت ذخیره شدند. لطفا بر روی این لینک: %(link)s کلیک کنید تا بر روی سیستم اعمال شوند. این کار ممکن است 2 دقیقه طول بکشد",
|
901
942
|
"validation-success-no-reset": " ✅ تنظیمات با موفقیت تغییر کرد",
|
902
943
|
"vless_enable": {
|
903
944
|
"description": "فعال کردن پروتکل VLess",
|
904
|
-
"label": "
|
945
|
+
"label": "⚫️ VLess"
|
905
946
|
},
|
906
947
|
"vmess_enable": {
|
907
948
|
"description": "فعال کردن پروتکل VMess",
|
908
|
-
"label": "
|
949
|
+
"label": "🟣 فعال کردن VMess"
|
909
950
|
},
|
910
951
|
"warp-https-domain-for-warp-site": "",
|
911
952
|
"warp": {
|
@@ -914,7 +955,7 @@
|
|
914
955
|
},
|
915
956
|
"warp_enable": {
|
916
957
|
"description": "WARP به شما کمک می کند تا محدودیتهای گوگل، اسپاتیفای و نتفلیکس را با مخفیسازی آیپی سرور دور بزنید.",
|
917
|
-
"label": "
|
958
|
+
"label": "+WARP"
|
918
959
|
},
|
919
960
|
"warp_mode": {
|
920
961
|
"description": "✴️ همه : همه سایتها از Warp برای ترافیک خروجی استفاده میکنند.\n<br>\n☑️ فقط سایتهای داخلی و مسدود شده: فقط سایت های داخلی و وبسایتهایی مثل Google, Spotifiy, Netflix, OpenAi, IPinfo.io از Warp برای ترافیک خروجی استفاده میکنند.",
|
@@ -934,7 +975,7 @@
|
|
934
975
|
},
|
935
976
|
"wireguard_enable": {
|
936
977
|
"description": "<p>WireGuard پروتکل مبتنی بر UDP است. (⚠️ فقط در <a href=\"https://github.com/hiddify/hiddify-next\" target=\"_blank\">Hiddify Next</a> کار می کند)</p>",
|
937
|
-
"label": "🐉
|
978
|
+
"label": "🐉 وایرگارد"
|
938
979
|
},
|
939
980
|
"wireguard_ipv4": {
|
940
981
|
"description": "-",
|
@@ -962,11 +1003,11 @@
|
|
962
1003
|
},
|
963
1004
|
"ws_enable": {
|
964
1005
|
"description": "Websocket یک تونل روی HTTP ایجاد می کند که برای استفاده در CDN مفید است",
|
965
|
-
"label": "🔰 Websocket
|
1006
|
+
"label": "🔰 Websocket"
|
966
1007
|
},
|
967
1008
|
"xtls_enable": {
|
968
1009
|
"description": "فعال کردن پروتکل XTLS",
|
969
|
-
"label": "
|
1010
|
+
"label": "🟢 XTLS"
|
970
1011
|
}
|
971
1012
|
},
|
972
1013
|
"config.invalid uuid": "رمز UUID نامعتبر است. به عنوان مثال: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6",
|
@@ -29,7 +29,6 @@
|
|
29
29
|
"Bug": "Bug/recurso",
|
30
30
|
"CPU %(cores)s Cores": "CPU %(cores)s Núcleos ",
|
31
31
|
"Can add sub admin": "👥 Pode adicionar subadministrador",
|
32
|
-
"Can not connect to Cloudflare.": "Não é possível conectar ao Cloudflare.",
|
33
32
|
"Check again": "Verifique novamente",
|
34
33
|
"Childs": "Crianças",
|
35
34
|
"China": "🇨🇳 China",
|
@@ -165,6 +164,7 @@
|
|
165
164
|
"Remote nodes are not supported yet!": "Nós remotos ainda não são suportados!",
|
166
165
|
"Rename File": "Renomear arquivo",
|
167
166
|
"Reset Filters": "Limpar Filtros",
|
167
|
+
"Reset Proxies": "",
|
168
168
|
"Reset Usage Time:": "Tempo de reinicialização do uso do tráfego:",
|
169
169
|
"Reset every month": "Por mês",
|
170
170
|
"Reset package days": "📆 Redefinir dias do pacote",
|
@@ -333,15 +333,20 @@
|
|
333
333
|
"auto": "Auto",
|
334
334
|
"auto_cdn_ip": "Seletor automático de CDN IP",
|
335
335
|
"cdn": "CDN (Cloudflare Proxy, ...)",
|
336
|
+
"cf-delete": {
|
337
|
+
"failed": ""
|
338
|
+
},
|
336
339
|
"child has been removed!": "Child removido",
|
337
340
|
"child": {
|
338
341
|
"register-failed": "",
|
339
342
|
"register-success": "",
|
340
|
-
"sync-failed": ""
|
341
|
-
"sync-success": ""
|
343
|
+
"sync-failed": ""
|
342
344
|
},
|
343
345
|
"clickable copy": "Link para mídias sociais",
|
344
346
|
"close": "Fechar",
|
347
|
+
"cloudflare": {
|
348
|
+
"error": ""
|
349
|
+
},
|
345
350
|
"config.Domain already used": "O domínio existe na seção de domínios. Usar outro domínio",
|
346
351
|
"config.Invalid brand link": "Link inválido. deve estar neste formato: (https ou http://example.com)",
|
347
352
|
"config.Invalid domain": "Erro! Domínio inválido. O formato do domínio é www.google.com",
|
@@ -471,6 +476,10 @@
|
|
471
476
|
"description": "config.hidden.description",
|
472
477
|
"label": "config.hidden.label"
|
473
478
|
},
|
479
|
+
"hiddifycli_enable": {
|
480
|
+
"description": "",
|
481
|
+
"label": ""
|
482
|
+
},
|
474
483
|
"http": {
|
475
484
|
"description": "As configurações HTTP podem ser definidas nesta seção",
|
476
485
|
"label": "Configuração HTTP"
|
@@ -536,6 +545,10 @@
|
|
536
545
|
"description": "config.last_hash.description",
|
537
546
|
"label": "config.last_hash.label"
|
538
547
|
},
|
548
|
+
"last_priodic_usage_check": {
|
549
|
+
"description": "",
|
550
|
+
"label": ""
|
551
|
+
},
|
539
552
|
"license": {
|
540
553
|
"description": "Para uso comercial deste produto, você deve comprar sua licença",
|
541
554
|
"label": "Código de licença"
|
@@ -796,13 +809,41 @@
|
|
796
809
|
"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",
|
797
810
|
"label": "SSR FakeDomain"
|
798
811
|
},
|
812
|
+
"sub_full_clash_enable": {
|
813
|
+
"description": "",
|
814
|
+
"label": ""
|
815
|
+
},
|
816
|
+
"sub_full_clash_meta_enable": {
|
817
|
+
"description": "",
|
818
|
+
"label": ""
|
819
|
+
},
|
820
|
+
"sub_full_links_b64_enable": {
|
821
|
+
"description": "",
|
822
|
+
"label": ""
|
823
|
+
},
|
824
|
+
"sub_full_links_enable": {
|
825
|
+
"description": "",
|
826
|
+
"label": ""
|
827
|
+
},
|
828
|
+
"sub_full_singbox_enable": {
|
829
|
+
"description": "",
|
830
|
+
"label": ""
|
831
|
+
},
|
832
|
+
"sub_full_xray_json_enable": {
|
833
|
+
"description": "",
|
834
|
+
"label": ""
|
835
|
+
},
|
836
|
+
"sub_singbox_ssh_enable": {
|
837
|
+
"description": "",
|
838
|
+
"label": ""
|
839
|
+
},
|
799
840
|
"tcp_enable": {
|
800
841
|
"description": "",
|
801
842
|
"label": ""
|
802
843
|
},
|
803
844
|
"telegram": {
|
804
845
|
"description": "Um proxy projetado para o Telegram ignorar a filtragem do Telegram",
|
805
|
-
"label": "
|
846
|
+
"label": "Configurações do telegram"
|
806
847
|
},
|
807
848
|
"telegram_adtag": {
|
808
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.",
|