hiddifypanel 9.0.0.dev90__py3-none-any.whl → 10.5.0.dev0__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/auth.py +30 -9
- hiddifypanel/base.py +60 -52
- hiddifypanel/cache.py +43 -25
- hiddifypanel/database.py +9 -0
- hiddifypanel/drivers/abstract_driver.py +2 -0
- hiddifypanel/drivers/singbox_api.py +17 -15
- hiddifypanel/drivers/ssh_liberty_bridge_api.py +3 -1
- hiddifypanel/drivers/user_driver.py +12 -6
- hiddifypanel/drivers/wireguard_api.py +7 -2
- hiddifypanel/drivers/xray_api.py +14 -9
- hiddifypanel/hutils/__init__.py +4 -0
- hiddifypanel/hutils/convert.py +13 -2
- hiddifypanel/hutils/crypto.py +48 -0
- hiddifypanel/hutils/encode.py +4 -1
- hiddifypanel/hutils/flask.py +38 -5
- hiddifypanel/hutils/github_issue.py +1 -1
- hiddifypanel/hutils/importer/xui.py +5 -2
- hiddifypanel/{models/utils.py → hutils/model.py} +14 -4
- hiddifypanel/hutils/network/auto_ip_selector.py +2 -0
- hiddifypanel/hutils/network/net.py +46 -2
- hiddifypanel/hutils/node/__init__.py +3 -0
- hiddifypanel/hutils/node/api_client.py +76 -0
- hiddifypanel/hutils/node/child.py +147 -0
- hiddifypanel/hutils/node/parent.py +100 -0
- hiddifypanel/hutils/node/shared.py +65 -0
- hiddifypanel/hutils/proxy/__init__.py +5 -0
- hiddifypanel/hutils/proxy/clash.py +161 -0
- hiddifypanel/hutils/proxy/shared.py +434 -0
- hiddifypanel/hutils/proxy/singbox.py +339 -0
- hiddifypanel/hutils/proxy/xray.py +235 -0
- hiddifypanel/hutils/proxy/xrayjson.py +391 -0
- hiddifypanel/hutils/random.py +4 -0
- hiddifypanel/hutils/utils.py +4 -1
- hiddifypanel/models/__init__.py +2 -2
- hiddifypanel/models/admin.py +31 -17
- hiddifypanel/models/base_account.py +7 -7
- hiddifypanel/models/child.py +30 -16
- hiddifypanel/models/config.py +45 -16
- hiddifypanel/models/config_enum.py +68 -17
- hiddifypanel/models/domain.py +28 -20
- hiddifypanel/models/parent_domain.py +2 -2
- hiddifypanel/models/proxy.py +29 -20
- hiddifypanel/models/report.py +2 -3
- hiddifypanel/models/usage.py +2 -2
- hiddifypanel/models/user.py +33 -22
- hiddifypanel/panel/admin/Actions.py +13 -19
- hiddifypanel/panel/admin/AdminstratorAdmin.py +14 -3
- hiddifypanel/panel/admin/Dashboard.py +5 -10
- hiddifypanel/panel/admin/DomainAdmin.py +35 -48
- hiddifypanel/panel/admin/NodeAdmin.py +6 -2
- hiddifypanel/panel/admin/ProxyAdmin.py +6 -5
- hiddifypanel/panel/admin/QuickSetup.py +21 -20
- hiddifypanel/panel/admin/SettingAdmin.py +107 -62
- hiddifypanel/panel/admin/UserAdmin.py +22 -21
- hiddifypanel/panel/admin/templates/index.html +1 -1
- hiddifypanel/panel/admin/templates/model/user_list.html +44 -20
- hiddifypanel/panel/admin/templates/parent_dash.html +2 -4
- hiddifypanel/panel/admin/templates/result.html +2 -3
- hiddifypanel/panel/cf_api.py +1 -2
- hiddifypanel/panel/cli.py +16 -16
- hiddifypanel/panel/commercial/ProxyDetailsAdmin.py +16 -12
- hiddifypanel/panel/commercial/__init__.py +7 -5
- hiddifypanel/panel/commercial/restapi/v1/__init__.py +1 -1
- hiddifypanel/panel/commercial/restapi/v1/tgbot.py +1 -1
- hiddifypanel/panel/commercial/restapi/v1/tgmsg.py +14 -10
- hiddifypanel/panel/commercial/restapi/v2/admin/__init__.py +0 -5
- hiddifypanel/panel/commercial/restapi/v2/admin/admin_info_api.py +2 -2
- hiddifypanel/panel/commercial/restapi/v2/admin/admin_log_api.py +4 -5
- hiddifypanel/panel/commercial/restapi/v2/admin/admin_user_api.py +8 -25
- hiddifypanel/panel/commercial/restapi/v2/admin/admin_users_api.py +4 -4
- hiddifypanel/panel/commercial/restapi/v2/admin/schema.py +157 -0
- hiddifypanel/panel/commercial/restapi/v2/admin/server_status_api.py +3 -3
- hiddifypanel/panel/commercial/restapi/v2/admin/user_api.py +9 -66
- hiddifypanel/panel/commercial/restapi/v2/admin/users_api.py +1 -1
- hiddifypanel/panel/commercial/restapi/v2/child/__init__.py +18 -0
- hiddifypanel/panel/commercial/restapi/v2/child/actions.py +63 -0
- hiddifypanel/panel/commercial/restapi/v2/child/register_parent_api.py +34 -0
- hiddifypanel/panel/commercial/restapi/v2/child/schema.py +7 -0
- hiddifypanel/panel/commercial/restapi/v2/child/sync_parent_api.py +21 -0
- hiddifypanel/panel/commercial/restapi/v2/panel/__init__.py +13 -0
- hiddifypanel/panel/commercial/restapi/v2/panel/info.py +18 -0
- hiddifypanel/panel/commercial/restapi/v2/panel/ping_pong.py +23 -0
- hiddifypanel/panel/commercial/restapi/v2/panel/schema.py +7 -0
- hiddifypanel/panel/commercial/restapi/v2/parent/__init__.py +16 -0
- hiddifypanel/panel/commercial/restapi/v2/parent/register_api.py +65 -0
- hiddifypanel/panel/commercial/restapi/v2/parent/schema.py +115 -0
- hiddifypanel/panel/commercial/restapi/v2/parent/status_api.py +26 -0
- hiddifypanel/panel/commercial/restapi/v2/parent/sync_api.py +53 -0
- hiddifypanel/panel/commercial/restapi/v2/parent/usage_api.py +57 -0
- hiddifypanel/panel/commercial/restapi/v2/user/apps_api.py +17 -23
- hiddifypanel/panel/commercial/restapi/v2/user/configs_api.py +23 -26
- hiddifypanel/panel/commercial/telegrambot/admin.py +1 -2
- hiddifypanel/panel/common.py +25 -8
- hiddifypanel/panel/common_bp/login.py +2 -2
- hiddifypanel/panel/hiddify.py +22 -185
- hiddifypanel/panel/init_db.py +102 -55
- hiddifypanel/panel/usage.py +33 -18
- hiddifypanel/panel/user/__init__.py +0 -1
- hiddifypanel/panel/user/templates/all_configs copy.txt +2 -2
- hiddifypanel/panel/user/templates/all_configs.txt +2 -2
- hiddifypanel/panel/user/templates/base_singbox_config.json.j2 +2 -1
- hiddifypanel/panel/user/templates/base_xray_config.json.j2 +125 -0
- hiddifypanel/panel/user/templates/clash_config copy.yml +1 -1
- hiddifypanel/panel/user/templates/clash_config.yml +4 -4
- hiddifypanel/panel/user/templates/clash_proxies.yml +1 -1
- hiddifypanel/panel/user/templates/home/all-configs.html +2 -2
- hiddifypanel/panel/user/templates/home/all-configs_old.html +1 -1
- hiddifypanel/panel/user/templates/home/ios copy.html +2 -2
- hiddifypanel/panel/user/templates/home/usage.html +1 -1
- hiddifypanel/panel/user/templates/new.html +2 -2
- hiddifypanel/panel/user/user.py +56 -50
- hiddifypanel/static/css/custom.css +31 -0
- hiddifypanel/static/images/favicon.ico +0 -0
- hiddifypanel/static/images/hiddify-old.png +0 -0
- hiddifypanel/static/images/hiddify.png +0 -0
- hiddifypanel/static/images/hiddify2.png +0 -0
- hiddifypanel/static/new/assets/{index-1b891a7c.js → index-ccb9873c.js} +56 -56
- hiddifypanel/static/new/assets/index-fa00de9a.css +1 -0
- hiddifypanel/static/new/i18n/en.json +6 -6
- hiddifypanel/static/new/i18n/fa.json +2 -2
- hiddifypanel/templates/admin-layout.html +30 -43
- hiddifypanel/templates/fake.html +0 -4
- hiddifypanel/templates/flaskadmin-layout.html +7 -3
- hiddifypanel/templates/master.html +11 -6
- hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/en/LC_MESSAGES/messages.po +2082 -1977
- hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/fa/LC_MESSAGES/messages.po +2035 -1924
- hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/pt/LC_MESSAGES/messages.po +1911 -1840
- hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/ru/LC_MESSAGES/messages.po +2036 -1881
- hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/zh/LC_MESSAGES/messages.po +1857 -1720
- hiddifypanel/translations.i18n/en.json +992 -933
- hiddifypanel/translations.i18n/fa.json +994 -935
- hiddifypanel/translations.i18n/pt.json +994 -935
- hiddifypanel/translations.i18n/ru.json +994 -935
- hiddifypanel/translations.i18n/zh.json +971 -912
- {hiddifypanel-9.0.0.dev90.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/METADATA +47 -47
- {hiddifypanel-9.0.0.dev90.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/RECORD +147 -120
- {hiddifypanel-9.0.0.dev90.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/WHEEL +1 -1
- hiddifypanel/panel/commercial/restapi/v2/DTO.py +0 -9
- hiddifypanel/panel/commercial/restapi/v2/hello/__init__.py +0 -16
- hiddifypanel/panel/commercial/restapi/v2/hello/hello.py +0 -32
- hiddifypanel/panel/user/link_maker.py +0 -1083
- hiddifypanel/static/new/assets/index-669b32c8.css +0 -1
- {hiddifypanel-9.0.0.dev90.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/LICENSE.md +0 -0
- {hiddifypanel-9.0.0.dev90.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/entry_points.txt +0 -0
- {hiddifypanel-9.0.0.dev90.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/top_level.txt +0 -0
@@ -1,1116 +1,1175 @@
|
|
1
1
|
{
|
2
|
+
" Search Settings": " Search Settings",
|
3
|
+
"%(count)s records were successfully disabled.": "%(count)s records were successfully disabled.",
|
4
|
+
"%(count)s records were successfully enabled.": "%(count)s records were successfully enabled.",
|
5
|
+
"%(placeholder)s": "%(placeholder)s",
|
2
6
|
"0 - Last day": "Last Day",
|
7
|
+
"Access Denied!": "Access Denied",
|
8
|
+
"Actions": "Actions",
|
9
|
+
"Active": "Active",
|
10
|
+
"Active Users": "Active Users",
|
11
|
+
"Add": "Add",
|
12
|
+
"Add some text that is only visible to super_admin.": "Add some Text that is only visible to Super Admin",
|
13
|
+
"Add some text that is only visible to you.": "You can add some text that Is only visible to you",
|
14
|
+
"Added by": "Added by",
|
15
|
+
"Admins": "Admins",
|
16
|
+
"Alias": "Alias",
|
17
|
+
"All": "All",
|
18
|
+
"All Users": "All Users",
|
19
|
+
"Apply": "Apply",
|
20
|
+
"Are you sure you want to delete \\'%(name)s\\' recursively?": "Are you sure you want to delete \\'%(name)s\\' recursively?",
|
21
|
+
"Are you sure you want to delete \\'%(name)s\\'?": "Are you sure you want to delete \\'%(name)s\\'?",
|
22
|
+
"Are you sure you want to delete this record?": "Are you sure you want to delete this record?",
|
23
|
+
"Are you sure you want to do this action?": "⚠️ Are you sure you want to do this action?",
|
24
|
+
"Back": "Back",
|
25
|
+
"Backup": "Backup",
|
26
|
+
"Beta": "☑️ Beta",
|
27
|
+
"Bridge Servers": "➖ Bridge Servers",
|
28
|
+
"Bug": "Bug/Feature",
|
29
|
+
"CPU %(cores)s Cores": "CPU %(cores)s Core",
|
30
|
+
"Can add sub admin": "👥 Can Add Sub Admin",
|
31
|
+
"Can not connect to Cloudflare.": "Can not connect to Cloudflare.",
|
32
|
+
"Check again": "Check Again",
|
33
|
+
"Childs": "Children",
|
34
|
+
"China": "🇨🇳 China",
|
35
|
+
"Click here to see the complete log": "Click here to see the complete log",
|
36
|
+
"Click to Import": "Tap to Import",
|
37
|
+
"Click to Start Anti-Filter.": "<i class='fa-solid fa-play'></i> Tap to Set up Anti-Filter",
|
38
|
+
"Close": "Close",
|
39
|
+
"Commercial use": "Commercial use",
|
40
|
+
"Config file is incorrect": "Config file is incorrect.",
|
41
|
+
"Copy Link": "Copy Link",
|
42
|
+
"Couldn't find your ip addresses": "Couldn't find your IP Addresses",
|
43
|
+
"Count:": "Count:",
|
44
|
+
"Create": "Create",
|
45
|
+
"Create Directory": "Create Directory",
|
46
|
+
"Create New Record": "Create New Record",
|
47
|
+
"Create Package": "Create Package",
|
48
|
+
"Current Domain": "Current Domain",
|
49
|
+
"Dear {}\n\nYour hiddify information is\nUUID: {}\nLast online date: {}\nExpire time: {}\nUsage class: {}\n": "Dear {}\n\nYour Hiddify Information is\nUUID: {}\nLast Online Date: {}\nExpire Time: {}\nUsage Class: {}\n",
|
50
|
+
"Define the admin mode. ": "🥇🥈🥉 Define the Admin Mode",
|
51
|
+
"Define the user mode. Should the usage reset every month?": "The user's Package Mode. should the usage reset every Month, Week, etc",
|
52
|
+
"Delete?": "Delete?",
|
53
|
+
"Develop": "⚠️ Develop",
|
54
|
+
"Direct": "➖ Direct",
|
55
|
+
"Direct mode means you want to use your server directly (for usual use), CDN means that you use your server on behind of a CDN provider.": "➡️ <b>Direct:</b> Select this mode if you configure your domain exclusively on your DNS provider in DNS-only mode. (CDN or Proxy Mode Off) <br>\n🔙 <b>Old Direct Mode:</b> This mode is similar to Direct mode but does not utilize gRPC for communication. Select Old Mode if you prefer to configure your domain on your DNS provider in DNS-only mode without utilizing gRPC.\n<br>\n🔀 <b>CDN:</b> Select this mode if you use a CDN provider for your server's domain. (Proxy Mode On)<br>\n☑️ <b>Automatic CDN IP Selector:</b> This mode functions similarly to CDN mode but with an automated IP assignment based on the IP provided by <a href='https://ircf.space' target='_blank'>ircf.space</a>. In Auto CDN IP mode, the IP address is resolved from the domain, while in CDN mode, the domain is returned.<br>\n♾️ <b>Relay:</b> Select this mode if you are using one or more Intermediary servers. <a href='https://github.com/hiddify/hiddify-config/discussions/129' target='_blank'>Read More</a>\n<br>\n✴️ <b>Cloudflare Worker:</b> This mode enables automatic creation of workers for your domain in Cloudflare. Simplify the setup and management of workers by registering this domain, as the necessary steps for worker registration are handled automatically within Cloudflare.\n<br>\n🔂 <b>Reality:</b> Utilize the Reality protocol to create multiple domains.\n<br>\n🆎 <b>Fake Site:</b> Select this mode if you want to use a fake Domain (e.g., Soft98.ir) to bypass SNI whitelist Proxy. (Not Recommended)\n<br>",
|
56
|
+
"Disable": "Disable",
|
57
|
+
"Disk": "Hard Disk",
|
58
|
+
"Domain": "Domain",
|
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 is not same as your IP = %(server_ip)s . this 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": "Domain IP=%(domain_ip)s is not matched with your ip=%(server_ip)s which is required in direct mode",
|
61
|
+
"Domain can not be resolved! there is a problem in your domain": "Domain can not be resolved! There is a problem in your domain. Please check your Domain configurations.",
|
62
|
+
"Domain is not REALITY friendly!": "Domain is Not REALITY Friendly!",
|
63
|
+
"Domain?": "Domain?",
|
64
|
+
"Donation": {
|
65
|
+
"description": "✳️ We need your help In Developing this Project\n <br>\n If you are developer or content producer, please contact us at <a href='mailto:info@hiddify.com'>info@hiddify.com</a>\n <br><br>\n \n ℹ️ Also, we need financial help to further develop this panel and our service (we are Non-Profit).\n <br>\n <h5>Payment Methods :</h5>\n <ul>\n <li> <div class='btn-group'>\n <a role='button' data-copy='EQCWnykA-YhavOXgH3sf-uxtXLjy83_9n5bJPGRPE8r2247_' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n <a data-copy='EQCWnykA-YhavOXgH3sf-uxtXLjy83_9n5bJPGRPE8r2247_' role='button' class='btn btn-info share-link'>TON</a> </div></li>\n \n <li> <div class='btn-group'>\n <a role='button' data-copy='TXZtFUxyBPMSykAWogu7C4zmbjySKqMcDE' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n <a data-copy='TXZtFUxyBPMSykAWogu7C4zmbjySKqMcDE' role='button' class='btn btn-info share-link'>USDT (TRC20)</a> </div></li>\n \n <li> <div class='btn-group'>\n <a role='button' data-copy='MCHoh7xwaDBBnQgANPpBtXiekagV6KpdrM' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n <a data-copy='MCHoh7xwaDBBnQgANPpBtXiekagV6KpdrM' role='button' class='btn btn-info share-link'>Litecoin</a> </div></li>\n \n <li> <div class='btn-group'>\n <a role='button' data-copy='0xF5CFc65ee336B377C2a37EA3BCD0CaD0d0F0CbA0' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n <a data-copy='0xF5CFc65ee336B377C2a37EA3BCD0CaD0d0F0CbA0' role='button' class='btn btn-info share-link'>Ethereum</a> </div></li>\n \n <li> <div class='btn-group'>\n <a role='button' data-copy='bc1qkfp7n3wxu2zc9mdy20cf27d5pujj65myww8f60' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n <a data-copy='bc1qkfp7n3wxu2zc9mdy20cf27d5pujj65myww8f60' role='button' class='btn btn-info share-link'>Bitcoin</a> </div></li>\n \n <li> <div class='btn-group'>\n <a role='button' data-copy='DPerFS2vCu5XnE3He32BaPVTkUDcKLsEaj' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n <a data-copy='DPerFS2vCu5XnE3He32BaPVTkUDcKLsEaj' role='button' class='btn btn-info share-link'>Dogecoin</a> </div></li>\n </ul>\n \n <br>\n \n We need also other help:\n <ul>\n <li>👥 Share Hiddify Manager with Others</li>\n <li>📝Python Developer</li>\n <li>📝Swift Developer</li>\n <li>📝Flutter Developer</li>\n <li>📝Go Developer</li>\n <li>🖥Content Providers</li>\n </ul>\n\n\n Please contact us at <a href='mailto:info@hiddify.com'>info@hiddify.com</a> if you can help us.",
|
66
|
+
"title": "Donation"
|
67
|
+
},
|
68
|
+
"Download App": "<i class='fa-solid fa-download'></i> Download App",
|
69
|
+
"Edit": "Edit",
|
70
|
+
"Edit Proxy Names": "✏️ Modifying Proxies",
|
71
|
+
"Enable": "❇️ Enable",
|
72
|
+
"Error in auto cdn format": "⚠️ Error in Auto CDN Format",
|
73
|
+
"Error! auto cdn ip can not be find, please contact admin.": "Error In Auto CDN IP! It Can Not Be Find, Please Contact Admin",
|
74
|
+
"Example Domains": "Test and Suggest Domain ",
|
75
|
+
"Expired Users": "Expired Users",
|
76
|
+
"Export": "Export",
|
77
|
+
"Fake": "➖ Fake",
|
78
|
+
"Filter": "Filter",
|
79
|
+
"Finished": "Finished...",
|
80
|
+
"From Last Restart": "From Last Restart",
|
81
|
+
"From when the user package will be started? Empty for start from first connection": "Specify the starting date of the package. Leave empty to start from first Connection.",
|
82
|
+
"Hiddify": "Hiddify",
|
83
|
+
"Hiddify Android": "Hiddify Android ",
|
84
|
+
"HiddifyClash": "HiddifyClash",
|
85
|
+
"HiddifyN intro": "Please install HiddifyN from %(dl_link)s.\nThen click on the link below. It will do everything automatically.\n<br />",
|
86
|
+
"HiddifyNG": "HiddifyNG <span class='badge badge-success'>Recommended</span>",
|
87
|
+
"HiddifyNG intro": "📌 Please install HiddifyNG from either of these links:\n<br />\n %(dl_link)s %(play_link)s\n<br />\nThen click on the link below and open it in HiddifyNG.\n<br />",
|
88
|
+
"HiddigyN": "HiddifyN <span class='badge badge-success'>Recommended</span>",
|
89
|
+
"Hooray 🎉 🎉 🎉 \nWelcome to hiddifybot.\nStart by clicking the link on the panel or entering your UUID.": "Hooray 🎉 🎉 🎉 \nWelcome to Hiddify bot\nStart by clicking the link on the Panel or entering your UUID.",
|
90
|
+
"Hover the user to see the reason": "Hover the user to see the reason",
|
91
|
+
"How many days this package should be available?": "How Many Days Is This Package?",
|
92
|
+
"How many?": "How many?",
|
93
|
+
"If monthly is enabled, the usage will be reset after 30 days from this date.": "If the monthly option is enabled, when this number reaches 30, the user usage will be reset (for weekly and daily this number is 7 and 1)",
|
94
|
+
"If the application do not open automatically, please click <a class='btn btn-primary copy-link'\n href='%(sub)s'>this universal link</a> to copy and paste it on\n your application, or:": "If the application do not open automatically, please click <a class='btn btn-primary copy-link'\n href='%(sub)s'>this universal link</a> to copy and paste it on\n your application, or:",
|
95
|
+
"Import": "Import in App",
|
96
|
+
"Import in": "Import in",
|
97
|
+
"In 5 minutes": "In 5 Minutes",
|
98
|
+
"In CDN mode, Domain IP=%(domain_ip)s should be different to your ip=%(server_ip)s": "In CDN mode, Domain IP=%(domain_ip)s should be different to your ip=%(server_ip)s",
|
99
|
+
"In this section, you can add your domain. You need to add at least one domain in direct mode.": "1️⃣ In this section, you can add your Domain. \n<br>\n2️⃣ If you want to lessen the probability of having dirty IP, you can add Multiple Relay Server <a href='https://github.com/hiddify/hiddify-config/discussions/129'>Read More</a>.\n<br>\n3️⃣ If you have Multiple IPv4 or IPv6 in your Panel you have to add the domain pointed to them as Relay.",
|
100
|
+
"Incorrect Password": "⚠️ Incorrect Password",
|
101
|
+
"Install": "Install",
|
102
|
+
"Install Hiddify Application": "Hiddify Manager Installation",
|
103
|
+
"Invalid IP or domain": "Invalid IP or domain",
|
104
|
+
"Invalid REALITY hostnames": "Invalid REALITY Hostnames",
|
105
|
+
"Invalid admin link": "Invalid Admin Link",
|
106
|
+
"Iran": "🇮🇷 Iran",
|
107
|
+
"It seems that you are using default domain (%(domain)s) which is not recommended.": "It seems that you are using default domain (%(domain)s) which is not recommended. Please change or remove it from domain section.",
|
108
|
+
"It seems that you have not created any users yet. Default user link: %(default_link)s": "It seems that you have not created any users yet. default user link: %(default_link)s",
|
109
|
+
"It seems that you have not setup the system completely. <a class=\"btn btn-success\" href=\"%(quick_setup)s\">Click here</a> to complete setup.": "It seems that you have not setup the system completely. <a class='btn btn-success' href='%(quick_setup)s'>Click here</a> to complete setup.",
|
110
|
+
"It will override the root admin to the current user": "It will override the owner admin of the backup file to the current user",
|
111
|
+
"Join our Hiddify Telegram channel to get the latest updates on Hiddify.": "Join our Hiddify Telegram channel to get the latest updates on Hiddify.",
|
112
|
+
"Last Online": "Last Connection",
|
113
|
+
"Link is changed!": "ℹ️ Link is Changed!",
|
114
|
+
"Linux": "Linux",
|
115
|
+
"Max Active Users": "Max Active Users",
|
116
|
+
"Max IPs": "Max IPs",
|
117
|
+
"Max Users": "Max Users",
|
118
|
+
"Mode": "Mode",
|
119
|
+
"Month Usage": "Monthly",
|
120
|
+
"More Applications": "More Applications",
|
121
|
+
"Network": "Network",
|
122
|
+
"New": "New",
|
123
|
+
"No children!": "No Children",
|
124
|
+
"Note": "📝 Note",
|
125
|
+
"Offline more than 1 day": "Offline More Than 1 Day",
|
126
|
+
"Offline more than 1 hour": "Offline More Than 1 Hour",
|
127
|
+
"Offline more than 1 week": "Offline More Than 1 Week",
|
128
|
+
"Ok": "Ok",
|
129
|
+
"Online Users": "Online Users",
|
130
|
+
"Only Blocked and Local websites": "☑️ Only Blocked and Local Websites",
|
131
|
+
"Only for sublink?": "🌍 Use Only for Subscription Link",
|
132
|
+
"Oops! Something went wrong.": "Oops! something went wrong.",
|
133
|
+
"Open in Application": "Open in Application",
|
134
|
+
"Others": "🇺🇳 Others",
|
135
|
+
"Override Root Admin": "🔁 Override Owner in Backup",
|
136
|
+
"Owner can not be deleted!": "Owner can not be deleted!",
|
137
|
+
"Package Days": "📆 Package Days",
|
138
|
+
"Package ended!": "Package Ended",
|
139
|
+
"Package not started yet.": "Package Not Started Yet",
|
140
|
+
"Panel Link": "➖ Panel Link",
|
141
|
+
"Parent Panel": "Parent Panel",
|
142
|
+
"Please Wait...": "Please Wait...",
|
143
|
+
"Please click on %(install)s to save the user page.": "Click %(install)s to save the User Page.",
|
144
|
+
"Please connect your telegram account to the panel to be informed about latest news.": "Please connect your Telegram account to the panel to be informed about latest news",
|
145
|
+
"Please connect your telegram accout to the panel to be informed about latest news.": "Please connect your Telegram account to the panel to know the latest Status of your Subscription",
|
146
|
+
"Please create an issue on Github.": "Please create an issue on Github",
|
147
|
+
"Please note that your panel can be accessed only via <a href=\"%(adminlink)s\" class=\"btn btn-primary copy-link\">%(adminlink)s</a>. Please save this link.": "Please note that your panel can be accessed only via the following link. please save this link.\n<p><a href='%(adminlink)s' class='btn btn-secondary copy-link'><i class='fa-solid fa-copy'></i></a>\n<a href='%(adminlink)s' class='copy-link' style='word-break: break-all;'>%(adminlink)s</a></p> ",
|
148
|
+
"Please select at least one file.": "Please select at least one file.",
|
149
|
+
"Please select at least one record.": "Please select at least one record.",
|
150
|
+
"Please select at least one user": "Please select at least one user",
|
151
|
+
"Please select one of the following applications:": "📍 Please select one of the following applications:\n<br />\n<br />",
|
152
|
+
"Please type your message to send to the telegram:": "✏️ Please write your message to send to the Telegram:",
|
153
|
+
"Please understand that parent panel is under test and the plan and the condition of use maybe change at anytime.": "Please understand that parent Panel is under test and the plan and the condition of use maybe change at anytime.",
|
154
|
+
"Please wait ": "Please Wait ",
|
155
|
+
"Port is already used! in": "Port is Already Used in:",
|
156
|
+
"Premium Description": "Hiddify Manager Is Made For Non-Commercial Use. But If You Use This Panel Commercially, Please Help The Project Grow By Donating. <br/>\nIn Exchange For Your Financial Support, We Also Provide Special Facilities For Your Commercial Product.\n<br/>\n<br/>\nSuch as:\n<ul><li>\n<li>The Possibility Of Syncing To Cloudflare: That Is, By Adding a Domain In The Panel, The Relevant Settings Can Also Be Made In Cloudflare</li>\n<li>Possibility Of Displaying Your Brand In The Panel</li>\n<li>Possibility Of Using The Central Panel To Manage More Than 1 Server In Just One Panel, So It Is No Longer Necessary To Register Users In Different Servers, And Their Volume Will Be Collected In All Servers.\n</li>\n<li>\nThe Possibility Of Using The Telegram Bot\n</li>\n<li>\nAbility To Change Proxy Names\n</li>\n</ul>\n\nPlease Contact <a href='tg://resolve?domain=HiddifyCommercial'>@HiddifyCommercial</a> After Donating.\nSend a Message To Get a Special Version for business users.",
|
157
|
+
"ProxyPath is already used! use different proxy path": "ProxyPath is already used! use different proxy path",
|
158
|
+
"QR code": "🧾 QR Code",
|
159
|
+
"QRCode": "<i class='fa-solid fa-qrcode'></i> QRCode",
|
160
|
+
"RAM": "RAM",
|
161
|
+
"REALITY Fallback domain is not compaitble with server names!": "REALITY Fallback Domain is not compaitble with Server names!",
|
162
|
+
"Release": "✅ Release",
|
163
|
+
"Remaining: ": "Package Ends",
|
164
|
+
"Remote nodes are not supported yet!": "Remote nodes are not supported yet!",
|
165
|
+
"Rename File": "Rename File",
|
166
|
+
"Reset Filters": "Reset Filters",
|
167
|
+
"Reset Usage Time:": "Traffic usage reset time:",
|
168
|
+
"Reset every month": "Monthly",
|
169
|
+
"Reset package days": "📆 Reset Package's Days",
|
170
|
+
"Reset package usage": "⏳ Reset Package's Usage",
|
171
|
+
"Restore": "♻️ Restore",
|
172
|
+
"Restore Domain": "🌏 Restore Domain",
|
173
|
+
"Restore Domain description": "Select this option to restore your domains",
|
174
|
+
"Restore File": "Restore File",
|
175
|
+
"Restore File Description": "Choose the downloaded restore file",
|
176
|
+
"Restore Settings": "⚙️ Restore Settings",
|
177
|
+
"Restore Settings description": "Restore all settings description",
|
178
|
+
"Restore Users": "👥 Restore Users",
|
179
|
+
"Restore Users description": "Select this option to restore All Users",
|
180
|
+
"Root": "Root",
|
181
|
+
"Save": "Save",
|
182
|
+
"Save & Add More": "Save & Add More",
|
183
|
+
"Save Link": "Save Link",
|
184
|
+
"Select all records": "Select all records",
|
185
|
+
"Select record": "Select record",
|
186
|
+
"Seleted Users": "Seleted Users",
|
187
|
+
"Send Message to User's Telegram": "📣 Send Message to User's Telegram",
|
188
|
+
"Sending": "Sending...",
|
189
|
+
"Should be a valid domain": "Should be a valid domain",
|
190
|
+
"Should be a valid uuid": "Should be a valid uuid",
|
191
|
+
"Show Domains": "Show Configs of Domains",
|
192
|
+
"Simplifies the process of employing the link elsewhere.": "Simplifies the process of employing the link elsewhere",
|
193
|
+
"SingBox": "📦 SingBox",
|
194
|
+
"Sort by %(name)s": "Sort by %(name)s",
|
195
|
+
"Start Date": "Start Date",
|
196
|
+
"Status": "Status",
|
197
|
+
"Submit": "Submit",
|
198
|
+
"Success": "Success",
|
199
|
+
"Success! Please wait around 4 minutes to make sure everything is updated. During this time, please save your proxy links which are:": "⚠️ Please wait about 5 minutes to make sure everything is updated. during this time, please copy and save your Proxy links which are:",
|
200
|
+
"Success! Please wait around 5 minutes to make sure everything is updated.": "✔️ Success! Please Wait around 5 minutes to make sure everything is updated",
|
201
|
+
"Telegram Bot": "Telegram Bot",
|
202
|
+
"Temporary Short Link": "⏱️ Temporary Short Link",
|
203
|
+
"The action done successfully. You can now leave this page.": "✅ The Action Done Successfully. You can now leave this page",
|
204
|
+
"The message has been sent.": "The message has been sent.",
|
205
|
+
"The message was not sent to": "The message was not sent to",
|
206
|
+
"The name shown in the configs for this domain.": "The name that will be shown in the Configs for this Domain.",
|
207
|
+
"The page has been moved to a new link. Please copy and save the new link.": "The page has been moved to a new link. Please copy and save the new link.",
|
208
|
+
"This can be used for giving your users a permanent non blockable links.": "This can be used for giving your Users a permanent non Blockable Links.",
|
209
|
+
"This domain does not exist in the panel!": "This Domain does not exist in the Panel !",
|
210
|
+
"This version of hiddify panel is outdated. Please update it from admin area.": "⚠️ This version of Hiddify Manager is outdated. please Update it from Admin area",
|
211
|
+
"Today Usage": "Today",
|
212
|
+
"Too many Connected IPs": "Too Many Connected IPs",
|
213
|
+
"Total Usage": "Total Usage",
|
214
|
+
"Turn of VPN": "Turn Off VPN",
|
215
|
+
"Unified link for all application.": "One-click setup link for all applications (recommended)",
|
216
|
+
"Upload File": "Upload File",
|
217
|
+
"Use HiddifyNext:": "Use HiddifyNext:",
|
218
|
+
"User activated!": "User Activated",
|
219
|
+
"User is inactive": "User Is Inactive",
|
220
|
+
"User usage will be updated every 6 minutes. To update it now click <a href=\"%(link)s\" class=\"btn btn-info\">here</a>": "User usage will be updated every 6 minutes. To update it now click <a href=\"%(link)s\" class=\"btn btn-info\">here</a>",
|
221
|
+
"V2rayNG": "Alternative v2rayNG <button class='btn btn-sm btn-default' onclick='show_video('android-v2rayng')'><i class='fa-solid fa-question'></i> </button>\n<br />\n<br />",
|
222
|
+
"V2rayNG intro": "Please install v2rayNG from either of these links: %(dl_link)s %(play_link)s.\nThen copy the link below and paste it in v2rayNG according to the video tutorial <button class='btn btn-sm btn-default' onclick='show_video('android-v2rayng')'><i class='fa-solid fa-question'></i> </button>.\n<br />",
|
223
|
+
"View in Telegram": "View in Telegram",
|
224
|
+
"Want to enjoy more with telegram?": "ℹ️ Connect Your Account to Telegram",
|
225
|
+
"Welcome %(user)s": "Welcome %(user)s",
|
226
|
+
"Welcome to admin bot. Choose your action": "Welcome to admin bot. Choose your action",
|
227
|
+
"Why Going to Premium?": "Why Going to Premium?",
|
228
|
+
"Windows": "Windows",
|
229
|
+
"With selected": "With selected",
|
230
|
+
"Xray": "☢️ XRay",
|
231
|
+
"Yesterday Usage": "Yesterday",
|
232
|
+
"You can download a json formated of configurations by clicking <a href='%(link)s' class='btn btn-primary'>here</a>": "🔄 Hiddify Manager automatically takes a Backup every 6 Hours. The path of the Backup files on the server: ⬇️\n<br>\n/opt/hiddify-manager/hiddify-panel/backup/\n<br>\n<br>\n<br>\n⚠️ You can download a JSON file format of the configurations by clicking on the button below\n<br>\n<br>\n<a href='%(link)s' class='btn btn-primary'>Download Backup File</a>",
|
233
|
+
"You can restore your configs from previously downloaded configs": "ℹ️ You can restore your configs from previously downloaded backup file",
|
234
|
+
"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.": "For users visit the user area with this domain, Specify they can see the proxies of which domains.\n<br>\nSuggestion: For a domain with an unfiltered IP and different from the others, select all other domains (except the current domain). As a result, since the use of this IP is not for proxy and it is a simple website, this domain and IP will never be blocked and your users can easily update new profiles.",
|
235
|
+
"You have too much users! You can have only %(active)s active users and %(total)s users": "You have too much users! You can have only %(active)s active users and %(total)s users",
|
236
|
+
"You have used this domain in: ": "You have already used this Domain in: ",
|
237
|
+
"You should visit this page without VPN. Your country=%(your_country)s\nexpected=%(expected_country)s": "You should visit this page without VPN Your Country =%(your_country)s\nExpected=%(expected_country)s",
|
238
|
+
"Your domains changed. Please do not forget to copy admin links, otherwise you can not access to the panel anymore.": "⚠️ Your Domains Changed. please do not forget to copy Admin links, otherwise you can not access to the panel anymore",
|
239
|
+
"Your hiddify instance information \nDomain: {} \nUsage limit: {} GB\nCurrent usage: {} GB\nExpires at: {} \nRemaining days: {} \n\n\n Happy using 🎉 🎉 🎉 \n": "Your Hiddify instance information \nDomain: {} \nUsage Limit: {} GB\nCurrent Usage: {} GB\nExpires at: {} \nRemaining Days: {} \n\n\nGood Luck! 🎉 🎉 🎉 \n",
|
240
|
+
"[Admin only visible message:] You can change this message from settings": "[Admin Exclusive Message]: Customizable via Settings",
|
241
|
+
"actions": "Actions",
|
242
|
+
"admin link": "Admin",
|
3
243
|
"admin": {
|
244
|
+
"Actions:apply_configs": "Apply Configs",
|
245
|
+
"actions": {
|
246
|
+
"apply_configs": "Apply Configs",
|
247
|
+
"reinstall": "Reinstall",
|
248
|
+
"reset": "Restart System",
|
249
|
+
"status": "Status",
|
250
|
+
"title": "Actions",
|
251
|
+
"update": "Update",
|
252
|
+
"viewlogs": "View Logs"
|
253
|
+
},
|
4
254
|
"config": {
|
5
255
|
"apply_configs": "Apply Configs",
|
6
256
|
"title": "Settings"
|
7
257
|
},
|
258
|
+
"menu": {
|
259
|
+
"api": "API",
|
260
|
+
"config": "Settings",
|
261
|
+
"domain": "Domains",
|
262
|
+
"home": "Dashboard",
|
263
|
+
"proxy": "Proxies",
|
264
|
+
"proxy_stats": "Proxies' Status",
|
265
|
+
"support": "Help",
|
266
|
+
"telegram": "Telegram",
|
267
|
+
"user": "Users"
|
268
|
+
},
|
8
269
|
"proxy": {
|
9
|
-
"
|
10
|
-
"
|
270
|
+
"detailed_config": "⚙️ Detailed Configs",
|
271
|
+
"global_config": "⚙️ Global Configs"
|
11
272
|
},
|
12
273
|
"quicksetup": {
|
13
274
|
"title": "Quick Setup"
|
14
275
|
},
|
15
|
-
"quicksetup_intro": "Your Server's IPs are: \n<div >\nIPv4: %(ipv4)s <br> IPv6: %(ipv6)s\n</div>\nSet these IPs on your Domain or Subdomain and enter your Domain or Subdomain in the bellow box.\n"
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
"
|
22
|
-
"
|
23
|
-
"domain": "Domains",
|
24
|
-
"proxy": "Proxies",
|
25
|
-
"api": "API"
|
276
|
+
"quicksetup_intro": "Your Server's IPs are: \n<div >\nIPv4: %(ipv4)s <br> IPv6: %(ipv6)s\n</div>\nSet these IPs on your Domain or Subdomain and enter your Domain or Subdomain in the bellow box.\n"
|
277
|
+
},
|
278
|
+
"all": "All",
|
279
|
+
"android": "Android",
|
280
|
+
"app": {
|
281
|
+
"foxray": {
|
282
|
+
"description": "FoXray Description",
|
283
|
+
"title": "FoXray"
|
26
284
|
},
|
27
|
-
"
|
28
|
-
"
|
29
|
-
"
|
30
|
-
"viewlogs": "View Logs",
|
31
|
-
"apply_configs": "Apply Configs",
|
32
|
-
"update": "Update",
|
33
|
-
"reinstall": "Reinstall",
|
34
|
-
"reset": "Restart System"
|
35
|
-
}
|
36
|
-
},
|
37
|
-
"config": {
|
38
|
-
"validation-success": "Configs have been changed successfully. Click %(link)s to apply the configs. It may take 2 minutes to apply",
|
39
|
-
"validation-success-no-reset": " ✅ Configs have been changed successfully",
|
40
|
-
"cdn_forced_host": {
|
41
|
-
"description": "In this part you can use a set of specific domains or IPs for your server to be override in the user links. \n\nIf you use <a href='https://ircf.space/export.php'>this template </a>, the relevant IP will be selected according to the user's operator, and if you put a range of IPs The IP will be randomly selected from that range.\nUse <a target='_blank' href='https://ip-format.hiddify.com'>this link</a> to set personal IPs.",
|
42
|
-
"label": "🔂 Force Config to Use Following IPs"
|
285
|
+
"hiddify-clash-android": {
|
286
|
+
"description": "app.hiddify-clash-android.description",
|
287
|
+
"title": "Hiddify Clash"
|
43
288
|
},
|
44
|
-
"
|
45
|
-
"description": "
|
46
|
-
"
|
289
|
+
"hiddify-clash-desktop": {
|
290
|
+
"description": "app.hiddify-clash-desktop.description",
|
291
|
+
"title": "Hiddify Clash"
|
47
292
|
},
|
48
|
-
"
|
49
|
-
|
50
|
-
|
51
|
-
|
293
|
+
"hiddify": {
|
294
|
+
"next": {
|
295
|
+
"description": "Hiddify Next Description",
|
296
|
+
"title": "Hiddify Next"
|
297
|
+
}
|
52
298
|
},
|
53
|
-
"
|
54
|
-
"
|
55
|
-
"
|
299
|
+
"hiddifyn": {
|
300
|
+
"description": "HiddifyN Description",
|
301
|
+
"title": "HiddifyN"
|
56
302
|
},
|
57
|
-
"
|
58
|
-
"
|
59
|
-
"
|
303
|
+
"hiddifyng": {
|
304
|
+
"description": "HiddifyNG Description",
|
305
|
+
"title": "HiddifyNG"
|
60
306
|
},
|
61
|
-
"
|
62
|
-
"
|
63
|
-
"
|
307
|
+
"loon": {
|
308
|
+
"description": "Loon Description",
|
309
|
+
"title": "Loon"
|
64
310
|
},
|
65
|
-
"
|
66
|
-
"
|
67
|
-
"
|
311
|
+
"nekobox": {
|
312
|
+
"description": "app.nekobox.description",
|
313
|
+
"title": "NekoBox"
|
68
314
|
},
|
69
|
-
"
|
70
|
-
"
|
71
|
-
"
|
315
|
+
"shadowrocket": {
|
316
|
+
"description": "Shadowrocket Description",
|
317
|
+
"title": "Shadowrocket"
|
72
318
|
},
|
73
|
-
"
|
74
|
-
"
|
75
|
-
"
|
319
|
+
"stash": {
|
320
|
+
"description": "Stash Description",
|
321
|
+
"title": "Stash"
|
76
322
|
},
|
77
|
-
"
|
78
|
-
"
|
79
|
-
"
|
323
|
+
"streisand": {
|
324
|
+
"description": "Streisand Description",
|
325
|
+
"title": "Streisand"
|
80
326
|
},
|
81
|
-
"
|
82
|
-
"
|
83
|
-
"
|
327
|
+
"v2rayng": {
|
328
|
+
"description": "V2RayNG Description",
|
329
|
+
"title": "V2RayNG"
|
330
|
+
}
|
331
|
+
},
|
332
|
+
"auto": "Auto",
|
333
|
+
"auto_cdn_ip": "☑️ Automatic CDN IP Selector",
|
334
|
+
"cdn": "🔀 CDN (Cloudflare Proxy, ...)",
|
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
|
+
},
|
342
|
+
"clickable copy": "Link for Social Media",
|
343
|
+
"close": "Close",
|
344
|
+
"config.Domain already used": "Domain is exist in domains section. Use another Domain",
|
345
|
+
"config.Invalid brand link": "Invalid Link. it should be on this format: (https or http://example.com)",
|
346
|
+
"config.Invalid domain": "Error! Invalid Domain. The Domain Format is www.google.com",
|
347
|
+
"config.Invalid port": "Invalid Port. it should be comma separated Integer e.g. 2052,2053",
|
348
|
+
"config.Invalid proxy path": "Invalid Proxy Path. It should be ASCI string (a-z A-Z 0-9)",
|
349
|
+
"config.Invalid telegram bot token": "Invalid Telegram Bot Token",
|
350
|
+
"config.Invalid! The pattern is number-number": "⚠️ The Pattern Is Number-Number ⚠️",
|
351
|
+
"config.Invalid! it should be a number only": "⚠️ It Should Be a Number Only ⚠️",
|
352
|
+
"config": {
|
353
|
+
"admin": {
|
354
|
+
"description": "Admin section is for configuring admin related settings",
|
355
|
+
"label": "Admin Settings"
|
84
356
|
},
|
85
|
-
"
|
86
|
-
"
|
87
|
-
"
|
357
|
+
"admin_lang": {
|
358
|
+
"description": "Choose Language For Admin Area",
|
359
|
+
"label": "🗺️ Admin Panel Language"
|
88
360
|
},
|
89
|
-
"
|
90
|
-
"
|
91
|
-
"
|
361
|
+
"admin_secret": {
|
362
|
+
"description": "Admin secret will be used for accessing admin panel",
|
363
|
+
"label": "Admin Secret"
|
92
364
|
},
|
93
|
-
"
|
94
|
-
"
|
95
|
-
"
|
365
|
+
"advanced": {
|
366
|
+
"description": "In this part, there are some advanced configs that are better not be changed unless you are an advanced user",
|
367
|
+
"label": "Advanced Settings"
|
96
368
|
},
|
97
|
-
"
|
98
|
-
"
|
99
|
-
"
|
369
|
+
"allow_invalid_sni": {
|
370
|
+
"description": "If you allow invalid SNI, you can use any Domain rather than your original Domain to access the Proxy (Not Recommended)",
|
371
|
+
"label": "🆗 Allow Invalid SNI"
|
100
372
|
},
|
101
373
|
"auto_update": {
|
102
|
-
"
|
103
|
-
"
|
374
|
+
"description": "Every day at 3:00 AM, we will check for a new update. if there is a new update available, we will update the system automatically",
|
375
|
+
"label": "🔄 Auto Update"
|
104
376
|
},
|
105
|
-
"
|
106
|
-
"
|
107
|
-
"
|
377
|
+
"block_iran_sites": {
|
378
|
+
"description": "Block domestic Sites to prevent detection by the government",
|
379
|
+
"label": "⛔️ Block Domestic Sites"
|
108
380
|
},
|
109
|
-
"
|
110
|
-
"
|
111
|
-
"
|
381
|
+
"branding": {
|
382
|
+
"description": "Customization settings for User Page",
|
383
|
+
"label": "Customizing User Page"
|
112
384
|
},
|
113
|
-
"
|
114
|
-
"
|
115
|
-
"
|
385
|
+
"branding_freetext": {
|
386
|
+
"description": "Branding Text. this box's text will be shown on support section of User's Page. you can use HTML tags\n<p><br /><a href=\"https://htmleditor.online/full\" target=\"_blank\">HTML Editor</a></p>",
|
387
|
+
"label": "📢 Support Section Text"
|
116
388
|
},
|
117
|
-
"
|
118
|
-
"
|
119
|
-
"
|
389
|
+
"branding_site": {
|
390
|
+
"description": "The link to be shown on support section of user's page.\nYou can put also your Telegram Channel or Telegram PV here",
|
391
|
+
"label": "🆔 Support Link (goes both on branding title and also on support section of user page)"
|
120
392
|
},
|
121
|
-
"
|
122
|
-
"
|
123
|
-
"
|
393
|
+
"branding_title": {
|
394
|
+
"description": "Enter a customized title to be shown on user page. (Before User's Welcome Text)",
|
395
|
+
"label": "👁🗨 User Page Title"
|
124
396
|
},
|
125
|
-
"
|
126
|
-
"
|
127
|
-
"
|
397
|
+
"cdn_forced_host": {
|
398
|
+
"description": "In this part you can use a set of specific domains or IPs for your server to be override in the user links. \n\nIf you use <a href='https://ircf.space/export.php'>this template </a>, the relevant IP will be selected according to the user's operator, and if you put a range of IPs The IP will be randomly selected from that range.\nUse <a target='_blank' href='https://ip-format.hiddify.com'>this link</a> to set personal IPs.",
|
399
|
+
"label": "🔂 Force Config to Use Following IPs"
|
128
400
|
},
|
129
|
-
"
|
130
|
-
"
|
131
|
-
"
|
401
|
+
"cloudflare": {
|
402
|
+
"description": "Please follow <a href='https://github.com/hiddify/hiddify-config/wiki/Get-Cloudflare-API' target='_blank'>the instruction</a> and paste the Cloudflare API Key",
|
403
|
+
"label": "🔑 Cloudflare API"
|
132
404
|
},
|
133
|
-
"
|
134
|
-
"
|
135
|
-
"
|
405
|
+
"core_type": {
|
406
|
+
"description": "☢️ XRay : Is a Complete Core\n<br>\n📦 Singbox : Developed by SagerNet. It is also a good core",
|
407
|
+
"label": "🎛️ Core"
|
136
408
|
},
|
137
|
-
"
|
138
|
-
"
|
139
|
-
"
|
409
|
+
"country": {
|
410
|
+
"description": "It applies the appropriate settings for each country according to the filtering conditions of that country",
|
411
|
+
"label": "🌍 Country"
|
140
412
|
},
|
141
|
-
"
|
142
|
-
"
|
143
|
-
"
|
413
|
+
"create_easysetup_link": {
|
414
|
+
"description": "config.create_easysetup_link.description",
|
415
|
+
"label": "config.create_easysetup_link.label"
|
144
416
|
},
|
145
|
-
"
|
146
|
-
"
|
147
|
-
"
|
417
|
+
"db_version": {
|
418
|
+
"description": "Database Version Description",
|
419
|
+
"label": "Database Version Label"
|
148
420
|
},
|
149
|
-
"
|
150
|
-
"
|
151
|
-
"
|
421
|
+
"dbvalues": {
|
422
|
+
"description": "config.dbvalues.description",
|
423
|
+
"label": "config.dbvalues.label"
|
152
424
|
},
|
153
|
-
"
|
154
|
-
"
|
155
|
-
"
|
425
|
+
"decoy_domain": {
|
426
|
+
"description": "Fake Site: simulates a site when someone visits your domain directly.<br>\n⚠️ Do not use financial, Iranian and famous sites or sites with login such as Google, Yahoo, Wikipedia, PayPal.<br>\n⛔ Be sure to check the site and make sure that it is the right site, otherwise you may receive a phishing warning.<br>\n⛔⛔ Check this domain again so that there is no problem in the future",
|
427
|
+
"label": "📺 Decoy Site"
|
156
428
|
},
|
157
|
-
"
|
158
|
-
"
|
159
|
-
"
|
429
|
+
"dns_server": {
|
430
|
+
"description": "✳️ Default 1.1.1.1 <br>\n🚧 Block Malware 1.1.1.2 <br>\n🔞 Block Porn 1.1.1.3\n",
|
431
|
+
"label": "🖥 DNS Server"
|
160
432
|
},
|
161
|
-
"
|
162
|
-
"
|
163
|
-
"
|
433
|
+
"domain_fronting": {
|
434
|
+
"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.",
|
435
|
+
"label": "🔒 Enable TLS Domain Fronting"
|
164
436
|
},
|
165
|
-
"
|
166
|
-
"
|
167
|
-
"
|
437
|
+
"domain_fronting_domain": {
|
438
|
+
"description": "It is used to simulate another website instead of your website in SNI. therefore, GFW Can not filter your domain.",
|
439
|
+
"label": "ℹ️ Domain Fronting"
|
168
440
|
},
|
169
|
-
"
|
170
|
-
"
|
171
|
-
"
|
441
|
+
"domain_fronting_http_enable": {
|
442
|
+
"description": "Enabling HTTP Domain Fronting causes your domain to be block quickly.",
|
443
|
+
"label": "Enable HTTP Domain Fronting"
|
172
444
|
},
|
173
|
-
"
|
174
|
-
"
|
175
|
-
"
|
445
|
+
"domain_fronting_tls_enable": {
|
446
|
+
"description": "In CloudFlare, TLS Domain Fronting is not supported. it will use Port 443 to connect to CDN",
|
447
|
+
"label": "🔒 Enable TLS Domain Fronting"
|
176
448
|
},
|
177
|
-
"
|
178
|
-
"
|
179
|
-
"
|
449
|
+
"firewall": {
|
450
|
+
"description": "Enabling Firewall will open used Ports (at least 22,443,80 and SSH) and close all other Ports",
|
451
|
+
"label": "🛡️ Firewall"
|
180
452
|
},
|
181
|
-
"
|
182
|
-
"
|
183
|
-
"
|
453
|
+
"first_setup": {
|
454
|
+
"description": "config.first_setup.description",
|
455
|
+
"label": "config.first_setup.label"
|
184
456
|
},
|
185
|
-
"
|
186
|
-
"
|
187
|
-
"
|
457
|
+
"general": {
|
458
|
+
"description": "It is General System Configurations",
|
459
|
+
"label": "General Settings"
|
188
460
|
},
|
189
|
-
"
|
190
|
-
"
|
191
|
-
"
|
461
|
+
"grpc_enable": {
|
462
|
+
"description": "gRPC is a modern open source high performance Remote Procedure Call (RPC) framework. It can be used in supported CDNs",
|
463
|
+
"label": "➿ Enable gRPC"
|
192
464
|
},
|
193
|
-
"
|
194
|
-
"
|
195
|
-
"
|
465
|
+
"h2_enable": {
|
466
|
+
"description": "config.h2_enable.description",
|
467
|
+
"label": "config.h2_enable.label"
|
196
468
|
},
|
197
|
-
"
|
198
|
-
"
|
199
|
-
"
|
469
|
+
"hidden": {
|
470
|
+
"description": "config.hidden.description",
|
471
|
+
"label": "config.hidden.label"
|
200
472
|
},
|
201
|
-
"
|
202
|
-
"
|
203
|
-
"
|
473
|
+
"http": {
|
474
|
+
"description": "HTTP Configurations could be set in this section",
|
475
|
+
"label": "HTTP Configuration"
|
204
476
|
},
|
205
|
-
"
|
206
|
-
"
|
207
|
-
"
|
477
|
+
"http_ports": {
|
478
|
+
"description": "Comma separated integers indicating the ports to use as Unencrypted connections (Port 80 will be used In anycase)\n",
|
479
|
+
"label": "🔎 HTTP Ports"
|
208
480
|
},
|
209
|
-
"
|
210
|
-
"
|
211
|
-
"
|
481
|
+
"http_proxy_enable": {
|
482
|
+
"description": "By allowing this, your users can connect to the system with Unencrypted HTTP Port. (Not Recommended)",
|
483
|
+
"label": "☑️ Allow HTTP Connection"
|
212
484
|
},
|
213
|
-
"
|
214
|
-
"
|
215
|
-
"
|
485
|
+
"httpupgrade_enable": {
|
486
|
+
"description": "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.\n\n⚠️ Not Available in Xray based Clients. Only HiddifyNext, Singbox, and V2fly clients are supported. <p><a href=\"https://hiddify.com/manager/basic-concepts-and-troubleshooting/Basic-Concepts/#http-upgrade\" target=\"_blank\"><strong>(Read More)</strong></a></p>",
|
487
|
+
"label": "🆙 Enable HTTPUpgrade Method"
|
216
488
|
},
|
217
|
-
"
|
218
|
-
"
|
219
|
-
"
|
489
|
+
"hysteria": {
|
490
|
+
"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)",
|
491
|
+
"label": "Hysteria"
|
220
492
|
},
|
221
|
-
"
|
222
|
-
"
|
223
|
-
"
|
493
|
+
"hysteria_down_mbps": {
|
494
|
+
"description": "Hysteria Maximum Download Speed",
|
495
|
+
"label": "⬇️ Hysteria Download (mbps)"
|
224
496
|
},
|
225
|
-
"
|
226
|
-
"
|
227
|
-
"
|
497
|
+
"hysteria_enable": {
|
498
|
+
"description": "To Enable UDP based Hysteria Protocol",
|
499
|
+
"label": "Enable Hysteria2"
|
228
500
|
},
|
229
|
-
"
|
230
|
-
"
|
231
|
-
"
|
501
|
+
"hysteria_obfs_enable": {
|
502
|
+
"description": " Enables Hysteria Obfuscation (Salamander)",
|
503
|
+
"label": "🎛 Hysteria OBFS Enable"
|
232
504
|
},
|
233
|
-
"
|
234
|
-
"
|
235
|
-
"
|
505
|
+
"hysteria_port": {
|
506
|
+
"description": "Hysteria UDP Port for example 5678",
|
507
|
+
"label": "🔍 Hysteria2 Port"
|
236
508
|
},
|
237
|
-
"
|
238
|
-
"
|
239
|
-
"
|
509
|
+
"hysteria_up_mbps": {
|
510
|
+
"description": "Hysteria Maximum Upload Speed",
|
511
|
+
"label": "⬆️ Hysteria Upload (mbps)"
|
240
512
|
},
|
241
|
-
"
|
242
|
-
|
243
|
-
"description": "
|
513
|
+
"invalid-pattern-for-warp-sites": "config.invalid-pattern-for-warp-sites",
|
514
|
+
"is_parent": {
|
515
|
+
"description": "config.is_parent.description",
|
516
|
+
"label": "Parent Panel"
|
244
517
|
},
|
245
|
-
"
|
246
|
-
"
|
247
|
-
"
|
518
|
+
"kcp": {
|
519
|
+
"description": "KCP Configurations could be set in this section.",
|
520
|
+
"label": "KCP"
|
248
521
|
},
|
249
|
-
"
|
250
|
-
"
|
251
|
-
"
|
522
|
+
"kcp_enable": {
|
523
|
+
"description": "It is a UDP Based Protocol ",
|
524
|
+
"label": "Enable KCP"
|
252
525
|
},
|
253
|
-
"
|
254
|
-
"
|
255
|
-
"
|
526
|
+
"kcp_ports": {
|
527
|
+
"description": "Comma separated integers indicating the ports to use as KCP connection.\n",
|
528
|
+
"label": "KCP Ports"
|
256
529
|
},
|
257
|
-
"
|
258
|
-
"
|
259
|
-
"
|
530
|
+
"lang": {
|
531
|
+
"description": "Choose Language For Users Area",
|
532
|
+
"label": "🗺️ User Area Language"
|
260
533
|
},
|
261
|
-
"
|
262
|
-
"
|
263
|
-
"
|
534
|
+
"last_hash": {
|
535
|
+
"description": "config.last_hash.description",
|
536
|
+
"label": "config.last_hash.label"
|
264
537
|
},
|
265
|
-
"
|
266
|
-
"
|
267
|
-
"
|
538
|
+
"license": {
|
539
|
+
"description": "For commercial use of this Product, you must Purchase its License",
|
540
|
+
"label": "License Code"
|
268
541
|
},
|
269
|
-
"
|
270
|
-
"
|
271
|
-
"
|
542
|
+
"log_level": {
|
543
|
+
"description": "config.log_level.description",
|
544
|
+
"label": "config.log_level.label"
|
272
545
|
},
|
273
|
-
"
|
274
|
-
"
|
275
|
-
"
|
546
|
+
"mux": {
|
547
|
+
"description": "MUX (Multiplex) configurations could be set in this section",
|
548
|
+
"label": "MUX Config"
|
276
549
|
},
|
277
|
-
"
|
278
|
-
"
|
279
|
-
"
|
550
|
+
"mux_brutal_down_mbps": {
|
551
|
+
"description": "TCP-Brutal Maximum Download Speed",
|
552
|
+
"label": "⬇️ MUX Brutal Download (mbps)"
|
280
553
|
},
|
281
|
-
"
|
282
|
-
"
|
283
|
-
"
|
554
|
+
"mux_brutal_enable": {
|
555
|
+
"description": "Enables TCP-Brutal congestion control algorithm",
|
556
|
+
"label": "☣️ MUX Brutal"
|
284
557
|
},
|
285
|
-
"
|
286
|
-
"
|
287
|
-
"
|
558
|
+
"mux_brutal_up_mbps": {
|
559
|
+
"description": "TCP-Brutal Maximum Upload Speed",
|
560
|
+
"label": "⬆️ MUX Brutal Upload (mbps)"
|
288
561
|
},
|
289
|
-
"
|
290
|
-
"
|
291
|
-
"
|
562
|
+
"mux_enable": {
|
563
|
+
"description": "Mux needs compatible clients. Mux in Hiddify Next and Singbox are not compatible with XRay",
|
564
|
+
"label": "Ⓜ️ MUX Enable (⚠️ Incompatible With Some Clients)"
|
292
565
|
},
|
293
|
-
"
|
294
|
-
"
|
295
|
-
"
|
566
|
+
"mux_max_connections": {
|
567
|
+
"description": "Maximum Connections. Conflict with Max Streams",
|
568
|
+
"label": "⛓ MUX Max Connections"
|
296
569
|
},
|
297
|
-
"
|
298
|
-
"
|
299
|
-
"
|
570
|
+
"mux_max_streams": {
|
571
|
+
"description": "Maximum Multiplexed streams in a connection before opening a new connection",
|
572
|
+
"label": "↗️ MUX Max Streams"
|
300
573
|
},
|
301
|
-
"
|
302
|
-
"
|
303
|
-
"
|
574
|
+
"mux_min_streams": {
|
575
|
+
"description": "Minimum Multiplexed streams in a connection before opening a new connection",
|
576
|
+
"label": "↘️ MUX Min Streams"
|
304
577
|
},
|
305
|
-
"
|
306
|
-
"
|
307
|
-
"
|
578
|
+
"mux_padding_enable": {
|
579
|
+
"description": "Enables MUX Padding",
|
580
|
+
"label": "⟹ MUX Padding"
|
308
581
|
},
|
309
|
-
"
|
310
|
-
"
|
311
|
-
"
|
582
|
+
"mux_protocol": {
|
583
|
+
"description": "ℹ️ Multiplex Protocol. 'sMux' is used by default\n<br>\n➖ sMux: Stream Multiplexing\n<br>\n➖ YaMux: Yet Another Multiplexer\n<br>\n➖ h2Mux: Multiplexing Streams Over HTTP/2",
|
584
|
+
"label": "♍️ MUX Protocol"
|
312
585
|
},
|
313
|
-
"
|
314
|
-
"
|
315
|
-
"
|
586
|
+
"netdata": {
|
587
|
+
"description": "For displaying resources. uses your Server's CPU but it is not too much.",
|
588
|
+
"label": "Netdata"
|
316
589
|
},
|
317
|
-
"
|
318
|
-
"
|
319
|
-
"
|
590
|
+
"not_found": {
|
591
|
+
"description": "Config Not Found",
|
592
|
+
"label": "Config Not Found"
|
320
593
|
},
|
321
|
-
"
|
322
|
-
"
|
323
|
-
"
|
594
|
+
"only_ipv4": {
|
595
|
+
"description": "It will Disable IPv6",
|
596
|
+
"label": "ℹ️ Only IPv4"
|
324
597
|
},
|
325
|
-
"
|
326
|
-
"
|
327
|
-
"
|
598
|
+
"package_mode": {
|
599
|
+
"description": "Specify whether you want Released Package or Beta one",
|
600
|
+
"label": "🔄 Package Update Mode"
|
328
601
|
},
|
329
|
-
"
|
330
|
-
"
|
331
|
-
"
|
602
|
+
"panel_mode": {
|
603
|
+
"description": "config.panel_mode.description",
|
604
|
+
"label": "config.panel_mode.label"
|
332
605
|
},
|
333
|
-
"
|
334
|
-
"
|
335
|
-
"
|
606
|
+
"parent_admin_proxy_path": {
|
607
|
+
"description": "config.parent_admin_proxy_path.description",
|
608
|
+
"label": "config.parent_admin_proxy_path.label"
|
336
609
|
},
|
337
|
-
"
|
338
|
-
"
|
339
|
-
"
|
610
|
+
"parent_domain": {
|
611
|
+
"description": "config.parent_domain.description",
|
612
|
+
"label": "config.parent_domain.label"
|
340
613
|
},
|
341
|
-
"
|
342
|
-
"
|
343
|
-
"
|
614
|
+
"parent_panel": {
|
615
|
+
"description": "You can Connect to the Central Panel to define only one user and the usage of all Servers will be added cumulatively.",
|
616
|
+
"label": "Parent Panel (Multi Server)"
|
344
617
|
},
|
345
|
-
"
|
346
|
-
"
|
347
|
-
"
|
618
|
+
"path_grpc": {
|
619
|
+
"description": "gRPC Path In Configs",
|
620
|
+
"label": "ℹ️ gRPC Path"
|
348
621
|
},
|
349
|
-
"
|
350
|
-
"
|
351
|
-
"
|
622
|
+
"path_httpupgrade": {
|
623
|
+
"description": "should be random",
|
624
|
+
"label": "ℹ️ HTTP Upgrade Path"
|
352
625
|
},
|
353
|
-
"
|
354
|
-
"
|
355
|
-
"
|
626
|
+
"path_ss": {
|
627
|
+
"description": "Shadowsocks Path in the Links",
|
628
|
+
"label": "Shadowsocks Path"
|
356
629
|
},
|
357
|
-
"
|
358
|
-
"
|
359
|
-
"
|
630
|
+
"path_tcp": {
|
631
|
+
"description": "For the Proxy Link",
|
632
|
+
"label": "ℹ️ TCP Configuration Path"
|
360
633
|
},
|
361
|
-
"
|
362
|
-
"
|
363
|
-
"
|
634
|
+
"path_trojan": {
|
635
|
+
"description": "For Trojan Links",
|
636
|
+
"label": "ℹ️ Trojan Path"
|
364
637
|
},
|
365
|
-
"
|
366
|
-
"
|
367
|
-
"
|
638
|
+
"path_v2ray": {
|
639
|
+
"description": "Set V2Ray Configs Path",
|
640
|
+
"label": "V2Ray Path"
|
368
641
|
},
|
369
|
-
"
|
370
|
-
"
|
371
|
-
"
|
642
|
+
"path_vless": {
|
643
|
+
"description": "For the VLess Path",
|
644
|
+
"label": "ℹ️ VLess Path"
|
372
645
|
},
|
373
|
-
"
|
374
|
-
"
|
375
|
-
"
|
646
|
+
"path_vmess": {
|
647
|
+
"description": "For the VMess Link",
|
648
|
+
"label": "ℹ️ VMess Path"
|
376
649
|
},
|
377
|
-
"
|
378
|
-
"
|
379
|
-
"
|
650
|
+
"path_ws": {
|
651
|
+
"description": "Specify the Websocket Path",
|
652
|
+
"label": "ℹ️ Path of Websocket Requests"
|
380
653
|
},
|
381
|
-
"
|
382
|
-
"
|
383
|
-
"
|
654
|
+
"proxies": {
|
655
|
+
"description": "Define specific proxy settings",
|
656
|
+
"label": "Proxies Settings"
|
384
657
|
},
|
385
|
-
"
|
386
|
-
"
|
387
|
-
"
|
658
|
+
"proxy_path": {
|
659
|
+
"description": "We use secret proxy path to hide our proxies for the gouvernment",
|
660
|
+
"label": "ℹ️ Secret Proxy Path"
|
388
661
|
},
|
389
|
-
"
|
390
|
-
"
|
391
|
-
"
|
662
|
+
"proxy_path_admin": {
|
663
|
+
"description": "We use secret proxy path to hide our proxies for the governments and bots",
|
664
|
+
"label": "🔐 Proxy Path for Admins"
|
392
665
|
},
|
393
|
-
"
|
394
|
-
"
|
395
|
-
"
|
666
|
+
"proxy_path_client": {
|
667
|
+
"description": "Secret proxy path hide the proxies from the governments and bots",
|
668
|
+
"label": "🔏 Proxy Path for Clients"
|
396
669
|
},
|
397
|
-
"
|
398
|
-
"
|
399
|
-
"
|
670
|
+
"quic_enable": {
|
671
|
+
"description": "config.quic_enable.description",
|
672
|
+
"label": "config.quic_enable.label"
|
400
673
|
},
|
401
|
-
"
|
402
|
-
"
|
403
|
-
"
|
674
|
+
"reality": {
|
675
|
+
"description": "REALITY eliminate the Server-Side TLS Fingerprint Feature",
|
676
|
+
"label": "Reality"
|
404
677
|
},
|
405
|
-
"
|
406
|
-
"
|
407
|
-
"
|
678
|
+
"reality_enable": {
|
679
|
+
"description": "config.reality_enable.description",
|
680
|
+
"label": "config.reality_enable.label"
|
408
681
|
},
|
409
|
-
"
|
410
|
-
"
|
411
|
-
"
|
682
|
+
"reality_fallback_domain": {
|
683
|
+
"description": "When the GFW visit the Websites in Server names, it will be redirect to this Domain.",
|
684
|
+
"label": "🌍 Reality Fallback Domain"
|
412
685
|
},
|
413
|
-
"
|
414
|
-
"
|
415
|
-
"
|
686
|
+
"reality_port": {
|
687
|
+
"description": "You can set a customized port for your reality server to reduce the system's overhead. (Allow direct connection to proxies should be yes)",
|
688
|
+
"label": "↔️ Direct Reality Port"
|
416
689
|
},
|
417
|
-
"
|
418
|
-
"
|
419
|
-
"
|
690
|
+
"reality_private_key": {
|
691
|
+
"description": "Do Not Change It",
|
692
|
+
"label": "🔑 Private Key"
|
420
693
|
},
|
421
|
-
"
|
422
|
-
"
|
423
|
-
"
|
694
|
+
"reality_public_key": {
|
695
|
+
"description": "Do Not Change It",
|
696
|
+
"label": "🔑 Public Key"
|
424
697
|
},
|
425
|
-
"
|
426
|
-
"
|
427
|
-
"
|
698
|
+
"reality_server_names": {
|
699
|
+
"description": "You can add several Sever Names in comma seperated format",
|
700
|
+
"label": "🌎 Reality Server Names"
|
428
701
|
},
|
429
|
-
"
|
430
|
-
"
|
431
|
-
"
|
702
|
+
"reality_short_ids": {
|
703
|
+
"description": "Do Not Change It",
|
704
|
+
"label": "🆔 Short IDs"
|
432
705
|
},
|
433
|
-
"
|
434
|
-
"
|
435
|
-
"
|
706
|
+
"restls": {
|
707
|
+
"description": "config.restls.description",
|
708
|
+
"label": "RestTLS"
|
436
709
|
},
|
437
|
-
"
|
438
|
-
"
|
439
|
-
"
|
710
|
+
"restls1_2_domain": {
|
711
|
+
"description": "config.restls1_2_domain.description",
|
712
|
+
"label": "config.restls1_2_domain.label"
|
440
713
|
},
|
441
|
-
"
|
442
|
-
"
|
443
|
-
"
|
714
|
+
"restls1_3_domain": {
|
715
|
+
"description": "config.restls1_3_domain.description",
|
716
|
+
"label": "config.restls1_3_domain.label"
|
444
717
|
},
|
445
|
-
"
|
446
|
-
"
|
447
|
-
"
|
718
|
+
"shadowsocks": {
|
719
|
+
"description": "Shadowsocks is a fast tunnel proxy that helps you bypass firewalls",
|
720
|
+
"label": "Shadowsocks"
|
448
721
|
},
|
449
|
-
"
|
450
|
-
"
|
451
|
-
"
|
722
|
+
"shadowsocks2022_enable": {
|
723
|
+
"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)",
|
724
|
+
"label": "⭕️ Enable Shadowsocks 2022"
|
452
725
|
},
|
453
|
-
"
|
454
|
-
"
|
455
|
-
"
|
726
|
+
"shadowsocks2022_method": {
|
727
|
+
"description": "This method also used in ShadowTLS and SSFakeTLS",
|
728
|
+
"label": "🔐 Shadowsocks Encrypytion Method"
|
456
729
|
},
|
457
|
-
"
|
458
|
-
"
|
459
|
-
"
|
730
|
+
"shadowsocks2022_port": {
|
731
|
+
"description": "It needs both UDP and TCP to be Free",
|
732
|
+
"label": "↔️ Shadowsocks 2022 Port"
|
460
733
|
},
|
461
|
-
"
|
462
|
-
"
|
463
|
-
"
|
734
|
+
"shadowtls": {
|
735
|
+
"description": "A Proxy to expose real tls handshake to the firewall.\n\nIt works like Trojan but It does not require signing certificate. the firewall will see real tls handshake with valid certificate that you choose.",
|
736
|
+
"label": "ShadowTLS"
|
464
737
|
},
|
465
|
-
"
|
466
|
-
"
|
467
|
-
"
|
738
|
+
"shadowtls_enable": {
|
739
|
+
"description": "ShadowTLS Is a new Protocol but it can hide the traffic from the government using FakeTLS",
|
740
|
+
"label": "☑️ ShadowTLS"
|
468
741
|
},
|
469
|
-
"
|
470
|
-
"
|
471
|
-
"
|
742
|
+
"shadowtls_fakedomain": {
|
743
|
+
"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",
|
744
|
+
"label": "🌍 ShadowTLS Fake Domain"
|
472
745
|
},
|
473
|
-
"
|
474
|
-
"
|
475
|
-
"
|
746
|
+
"shared_secret": {
|
747
|
+
"description": "Some Proxies don't support Accounting currently so we have to use a secret for them",
|
748
|
+
"label": "🔐 Shared Secret"
|
476
749
|
},
|
477
|
-
"
|
478
|
-
"
|
479
|
-
"
|
750
|
+
"show_usage_in_sublink": {
|
751
|
+
"description": "This option creates a Fake Config in the user's sub link that shows the user's remaining volume",
|
752
|
+
"label": "👁️🗨️ Show Usage in Sublink"
|
480
753
|
},
|
481
|
-
"
|
482
|
-
"
|
483
|
-
"
|
754
|
+
"speed_test": {
|
755
|
+
"description": "Allow your users to do Speed Test. It helps them to identify the link quality",
|
756
|
+
"label": "🚀 Speed Test"
|
484
757
|
},
|
485
|
-
"
|
486
|
-
"
|
487
|
-
"
|
758
|
+
"ssfaketls": {
|
759
|
+
"description": "Shadowsocks FakeTLS is a simple obfusacting tool that encapsulate the date In tls packet",
|
760
|
+
"label": "Shadowsocks FakeTLS"
|
488
761
|
},
|
489
|
-
"
|
490
|
-
"
|
491
|
-
"
|
762
|
+
"ssfaketls_enable": {
|
763
|
+
"description": "Simple OBFS Protocol is Not Recommended",
|
764
|
+
"label": "🆎 Shadowsocks FakeTLS (Simple OBFS)"
|
492
765
|
},
|
493
|
-
"
|
494
|
-
"
|
495
|
-
"
|
766
|
+
"ssfaketls_fakedomain": {
|
767
|
+
"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",
|
768
|
+
"label": "🌍 SS FakeTLS FakeDomain"
|
496
769
|
},
|
497
|
-
"
|
498
|
-
"
|
499
|
-
"
|
770
|
+
"ssh": {
|
771
|
+
"description": "ℹ️ An SSH proxy, also known as an SSH tunnel or SSH port forwarding, is a secure method of creating a secure communication channel between two machines over an insecure network. We have a specific application which is completely different from SSH server and can not execute any commands",
|
772
|
+
"label": "SSH Proxy"
|
500
773
|
},
|
501
|
-
"
|
502
|
-
"
|
503
|
-
"
|
774
|
+
"ssh_server_enable": {
|
775
|
+
"description": "SSH Proxy is completely different than original SSH Server",
|
776
|
+
"label": "✔️ Enable SSH Proxy"
|
504
777
|
},
|
505
|
-
"
|
506
|
-
"
|
507
|
-
"
|
778
|
+
"ssh_server_port": {
|
779
|
+
"description": "This is completely different from your original SSH server. It is a dedicated program.",
|
780
|
+
"label": "↔️ SSH Proxy Port"
|
508
781
|
},
|
509
|
-
"
|
510
|
-
"
|
511
|
-
"
|
782
|
+
"ssh_server_redis_url": {
|
783
|
+
"description": "Not Used",
|
784
|
+
"label": "SSH user database address"
|
512
785
|
},
|
513
|
-
"
|
514
|
-
"
|
515
|
-
"
|
786
|
+
"ssr": {
|
787
|
+
"description": "ShadowsocksR is a fork of the original Shadowsocks project, claimed to be superior in terms of security and stability.",
|
788
|
+
"label": "SSR"
|
516
789
|
},
|
517
|
-
"
|
518
|
-
"
|
519
|
-
"
|
790
|
+
"ssr_enable": {
|
791
|
+
"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.",
|
792
|
+
"label": "Enable SSR"
|
520
793
|
},
|
521
|
-
"
|
522
|
-
"
|
523
|
-
"
|
794
|
+
"ssr_fakedomain": {
|
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",
|
796
|
+
"label": "SSR FakeDomain"
|
524
797
|
},
|
525
|
-
"
|
526
|
-
"
|
527
|
-
"
|
798
|
+
"tcp_enable": {
|
799
|
+
"description": "config.tcp_enable.description",
|
800
|
+
"label": "config.tcp_enable.label"
|
528
801
|
},
|
529
|
-
"
|
530
|
-
"
|
531
|
-
"
|
802
|
+
"telegram": {
|
803
|
+
"description": "A proxy designed for Telegram to bypass Telegram filtering",
|
804
|
+
"label": "Telegram Proxy "
|
532
805
|
},
|
533
|
-
"
|
534
|
-
"
|
535
|
-
"
|
806
|
+
"telegram_adtag": {
|
807
|
+
"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.",
|
808
|
+
"label": "📍 Telegram AD Tag"
|
536
809
|
},
|
537
|
-
"
|
538
|
-
"
|
539
|
-
"
|
810
|
+
"telegram_bot_token": {
|
811
|
+
"description": "To add Telegram bot feature. you need to create a bot with <a href=\"https://t.me/BotFather\" target=\"_blank\">@BotFather</a> and enter the API code in this field",
|
812
|
+
"label": "🔐 Telegram Bot Token"
|
540
813
|
},
|
541
|
-
"
|
542
|
-
"
|
543
|
-
"
|
814
|
+
"telegram_enable": {
|
815
|
+
"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>",
|
816
|
+
"label": "✔️ Enable Telegram MTProto"
|
544
817
|
},
|
545
|
-
"
|
546
|
-
"
|
547
|
-
"
|
818
|
+
"telegram_fakedomain": {
|
819
|
+
"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",
|
820
|
+
"label": "📺 Telegram Fake Domain"
|
548
821
|
},
|
549
|
-
"
|
550
|
-
"
|
551
|
-
"
|
822
|
+
"telegram_lib": {
|
823
|
+
"description": "You can switch between different Telegram Libraries. Please note that only Python works in all servers, others may have some issue. Test Proxy after changing it",
|
824
|
+
"label": "🔢 Telegram Proxy Library"
|
552
825
|
},
|
553
|
-
"
|
554
|
-
"
|
555
|
-
"
|
826
|
+
"tls": {
|
827
|
+
"description": "TLS Configurations could be set in this section",
|
828
|
+
"label": "TLS Configuration"
|
556
829
|
},
|
557
|
-
"
|
558
|
-
"
|
559
|
-
"
|
830
|
+
"tls_fragment_enable": {
|
831
|
+
"description": "Under some circumstances, it can bypass the SNI blacklist system",
|
832
|
+
"label": "⏯ Enable TLS Fragment"
|
560
833
|
},
|
561
|
-
"
|
562
|
-
"
|
563
|
-
"
|
834
|
+
"tls_fragment_size": {
|
835
|
+
"description": "The Size of each Packet",
|
836
|
+
"label": "🎚 TLS Fragment Size"
|
564
837
|
},
|
565
|
-
"
|
566
|
-
"
|
567
|
-
"
|
838
|
+
"tls_fragment_sleep": {
|
839
|
+
"description": "The time delay between Fragments",
|
840
|
+
"label": "⏱ TLS Fragment Sleep"
|
568
841
|
},
|
569
|
-
"
|
570
|
-
"
|
571
|
-
"
|
842
|
+
"tls_mixed_case": {
|
843
|
+
"description": "Enables TLS Mixed SNI Case Fragmentation",
|
844
|
+
"label": "🔠 Enable TLS Mixed SNI Case"
|
572
845
|
},
|
573
|
-
"
|
574
|
-
"
|
575
|
-
"
|
846
|
+
"tls_padding_enable": {
|
847
|
+
"description": "Enables Padding for TLS Fragmentation",
|
848
|
+
"label": "♒️ Enable TLS Padding"
|
576
849
|
},
|
577
|
-
"
|
578
|
-
"
|
579
|
-
"
|
850
|
+
"tls_padding_length": {
|
851
|
+
"description": "The length of the Padding for TLS Fragmentation",
|
852
|
+
"label": "📏 TLS Padding"
|
580
853
|
},
|
581
|
-
"
|
582
|
-
"
|
583
|
-
"
|
854
|
+
"tls_ports": {
|
855
|
+
"description": "Comma separated integers indicating the ports to use as TLS Connection (Port 443 will be used in anycase)\n",
|
856
|
+
"label": "🔎 TLS Ports"
|
584
857
|
},
|
585
858
|
"tls_trick": {
|
586
|
-
"
|
587
|
-
"
|
859
|
+
"description": "TLS Fragmentation configurations could be set in this section",
|
860
|
+
"label": "TLS Trick"
|
588
861
|
},
|
589
|
-
"
|
590
|
-
"
|
591
|
-
"
|
862
|
+
"too_advanced": {
|
863
|
+
"description": "Specify The Proxy Path. It is important especially if you are using HTTP and VMess",
|
864
|
+
"label": "Very Advanced Settings"
|
592
865
|
},
|
593
|
-
"
|
594
|
-
"
|
595
|
-
"
|
866
|
+
"torrent_block": {
|
867
|
+
"description": "Torrent Block Configurations could be set in this section.",
|
868
|
+
"label": "Torrent Block Configuration"
|
596
869
|
},
|
597
|
-
"
|
598
|
-
"
|
599
|
-
"
|
870
|
+
"trojan_enable": {
|
871
|
+
"description": "config.trojan_enable.description",
|
872
|
+
"label": "config.trojan_enable.label"
|
600
873
|
},
|
601
|
-
"
|
602
|
-
"
|
603
|
-
"
|
874
|
+
"tuic": {
|
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",
|
876
|
+
"label": "TUIC"
|
604
877
|
},
|
605
|
-
"
|
606
|
-
"
|
607
|
-
"
|
608
|
-
}
|
609
|
-
},
|
610
|
-
"Error! auto cdn ip can not be find, please contact admin.": "Error In Auto CDN IP! It Can Not Be Find, Please Contact Admin",
|
611
|
-
"Owner can not be deleted!": "Owner can not be deleted!",
|
612
|
-
"This domain does not exist in the panel!": "This Domain does not exist in the Panel !",
|
613
|
-
"Domain can not be resolved! there is a problem in your domain": "Domain can not be resolved! There is a problem in your domain. Please check your Domain configurations.",
|
614
|
-
"selected domain for REALITY is not in the same ASN. To better use of the protocol, it is better to find a domain in the same ASN.": "Selected Domain for REALITY is not in the same ASN. To better use of the Protocol, it is better to find a Domain in the same ASN",
|
615
|
-
"User activated!": "User Activated",
|
616
|
-
"Package ended!": "Package Ended",
|
617
|
-
"Your domains changed. Please do not forget to copy admin links, otherwise you can not access to the panel anymore.": "⚠️ Your Domains Changed. please do not forget to copy Admin links, otherwise you can not access to the panel anymore",
|
618
|
-
"Success! Please wait around 4 minutes to make sure everything is updated. During this time, please save your proxy links which are:": "⚠️ Please wait about 5 minutes to make sure everything is updated. during this time, please copy and save your Proxy links which are:",
|
619
|
-
"see the log in the bellow screen": "📑 See the log in the bellow screen",
|
620
|
-
"Success! Please wait around 5 minutes to make sure everything is updated.": "✔️ Success! Please Wait around 5 minutes to make sure everything is updated",
|
621
|
-
"actions": "Actions",
|
622
|
-
"user": {
|
623
|
-
"user_links": "User Links",
|
624
|
-
"name": "Name",
|
625
|
-
"UUID": "UUID",
|
626
|
-
"usage_limit_GB": "⌛️ Usage Limit (GB)",
|
627
|
-
"current_usage_GB": "Current Usage (GB)",
|
628
|
-
"expiry_time": "Expire (Days)",
|
629
|
-
"last_reset_time": "Last Usage Date Reset",
|
630
|
-
"home": {
|
631
|
-
"title": "Hiddify",
|
632
|
-
"tool": {
|
633
|
-
"all-configs": "All Configs",
|
634
|
-
"doh": {
|
635
|
-
"title": "DNS Over HTTPS",
|
636
|
-
"help": "<h4>Configure DoH on your browser</h4>\n There are several browsers compatible with DNS over HTTPS (DoH). This protocol lets\n you encrypt your connection to 1.1.1.1 in order to protect your DNS queries from privacy intrusions and tampering.\n\n Some browsers might already have this setting enabled.\n<br />\n <h5>Mozilla Firefox</h5>\n Select the <b>menu</b> button > <b>Settings</b>.In the General menu, scroll down to access <b>Network Settings</b>. Select <b>Settings</b>. Select <b>Enable DNS over HTTPS</b>.\n<br />\n <h5>Google Chrome</h5>\n Select the <b>three-dot</b> menu in your browser > <b>Settings</b>.\n Select <b>Privacy and security</b> > <b>Security</b>.\n Scroll down and enable <b>Use secure DNS</b>.\n<br />\n <h5>Microsoft Edge</h5>\n Select the <b>three-dot</b> menu in your browser > <b>Settings</b>.\n Select <b>Privacy, Search, and Services</b>, and scroll down to <b>Security</b>.\n Enable <b>Use secure DNS</b>.\n Select Choose a service provider."
|
637
|
-
}
|
638
|
-
},
|
639
|
-
"allconfig": {
|
640
|
-
"name": "Name and Link",
|
641
|
-
"type": "Type",
|
642
|
-
"protocol": "Protocol",
|
643
|
-
"transport": "Transport",
|
644
|
-
"security": "Security",
|
645
|
-
"hiddify-managers": "All Config Hiddify Managers",
|
646
|
-
"clash-configs": "Clash Configs",
|
647
|
-
"link-configs": "Subscription Link"
|
648
|
-
},
|
649
|
-
"allconfigs": {
|
650
|
-
"expect_vless": "Except VLess"
|
651
|
-
},
|
652
|
-
"android": {
|
653
|
-
"intro": "Please install Hiddify Android from %(dl_link)s %(play_link)s. \n\n<!--\n<div class='callout callout-danger'>\n <b>Update Hiddify Android to Version 0.14</b>\n</div>-->\n<details>\n<summary>Why Hiddify Android?</summary>\n<div class='callout callout-info'>\n\n Hiddify Android is an Open Source Fork Of Clash That Supports More Protocols.\n <br>\n It's Source Codes Exist in\n <a href='https://github.com/hiddify/HiddifyProxyAndroid'>GitHub</a>.\n \n <br>\n Therefore, it is safe.\n\n <details>\n <summary>Alternative: Normal Clash</summary>\n <div class='btn-group'>\n <a href='https://play.google.com/store/apps/details?id=com.github.kr328.clash'\n class='btn btn-warning orig-link'>Clash in Google Play</a>\n </div>\n <div class='btn-group'>\n <a href='/{{hconfigs[ConfigEnum.proxy_path]}}/gh/Kr328/ClashForAndroid/releases/download/v2.5.12/cfa-2.5.12-premium-universal-release.apk'\n class='btn btn-warning orig-link'>Direct Download</a>\n </div>\n\n <div class='alert alert-danger'>\n \tClash does not support VLess protocol. therefore, we need to add another link for it.\n </div>\n \n\n </details>\n </div>\n</details>"
|
654
|
-
},
|
655
|
-
"clash_configs": {
|
656
|
-
"intro": "Now based on your needs, click on one of the following links.\n<br />",
|
657
|
-
"only_for_blocked_sites": {
|
658
|
-
"title": "For only Blocked Sites",
|
659
|
-
"description": "This mode is suggested. It only forwards the blocked sites via Proxy.\n <div class='callout callout-success'>\n In this mode, you will not feel any change in the speed.\n </div>",
|
660
|
-
"btn": "Install for Only Blocked Sites"
|
661
|
-
},
|
662
|
-
"alternative_for_normal_clash": "Alternative link for Clash",
|
663
|
-
"link_for_normal_clash": "Install Clash",
|
664
|
-
"foreign_sites": {
|
665
|
-
"title": "Foreign Sites Proxy",
|
666
|
-
"description": "Use Proxy for all foreign sites (even not blocked ones).\n<div class='callout callout-warning'>\n\tThis mode is useful in accessing some sanctaioned sites.\n</div>\n",
|
667
|
-
"btn": "Install for Foreign Sites"
|
668
|
-
},
|
669
|
-
"all_sites": {
|
670
|
-
"title": "Proxy for All Sites",
|
671
|
-
"description": "Use Proxy for all websites even for local websites.\n<div class='callout callout-danger'>\n Loading local sites will be slower and will endanger your privacy.\n</div>\n",
|
672
|
-
"btn": "Install Proxy for All Sites."
|
673
|
-
}
|
674
|
-
},
|
675
|
-
"all_configs": "All Configs",
|
676
|
-
"speedtest": {
|
677
|
-
"title": "Speed Test (Detect dirty IP)",
|
678
|
-
"intro": "First, Test the Speed <b>without</b> the proxy. If the speed is not good, it means that this ip is so called dirty on your ISP.\nIf the speed was low without a proxy, don't waste your time to test this proxy.\nOtherwise, test with different proxies of this site and if the speed is similar to the speed without the proxy, then you have found the best protocol.\n<br />",
|
679
|
-
"upload": "Upload",
|
680
|
-
"download": "Download",
|
681
|
-
"two_ways": "Both Ways"
|
682
|
-
},
|
683
|
-
"doh": "DNS Over HTTPS",
|
684
|
-
"qr-code": {
|
685
|
-
"description": "To copy or share links, click on the gray <i class='fa-solid fa-qrcode'></i> field to display its QR Code.",
|
686
|
-
"display": "Display QR Code"
|
687
|
-
},
|
688
|
-
"ios": {
|
689
|
-
"stash": {
|
690
|
-
"title": "<button class='btn btn-sm btn-default' onclick='show_video('ios-stash')'><i class='fa-solid fa-question'></i> Stash</button>\n <button class='btn btn-sm btn-default' onclick='show_video('ios-shadowrocket')'><i class='fa-solid fa-question'></i> Shadowrocket</button>\n <span class='badge badge-success'>Recommended</span>",
|
691
|
-
"intro": "Stash & Shadowrocket are both great applications. Either one is worth buying.\n<br>\n<br />\n <div class='btn-group'>\n <a href='https://apps.apple.com/us/app/stash-rule-based-proxy/id1596063349' target='_blank' class='btn btn-success orig-link'>Download Stash</a>\n </div>\n <div class='btn-group'>\n <a href='https://apps.apple.com/us/app/shadowrocket/id932747118' target='_blank' class='btn btn-primary orig-link'>Download Shadowrocket</a> \n </div><br>\n<br />"
|
692
|
-
},
|
693
|
-
"others": {
|
694
|
-
"title": "FoXray and Fair VPN",
|
695
|
-
"intro": "First install one of the following Applications:\n\n<div class='btn-group'>\n\n\t<a href='https://apps.apple.com/us/app/foxray/id6448898396'\n class='btn btn-primary orig-link'>FoXray</a>\n\n</div>\n\n<div class='btn-group'>\n\n\t<a href='https://apps.apple.com/us/app/fair-vpn/id1533873488'\n class='btn btn-primary orig-link'>Fair VPN</a>\n</div>\n\n<br />\nThen apply the following configs:\n<br />"
|
696
|
-
}
|
697
|
-
},
|
698
|
-
"telegram": {
|
699
|
-
"clickbtn": "Telegram Proxy",
|
700
|
-
"description": "Click on one of the following link then, in the telegram you can see a window that contains <b>Connect Proxy</b>. Click on it and it will work.\n<br />"
|
701
|
-
},
|
702
|
-
"usage": {
|
703
|
-
"title": "⏳ Traffic Usage",
|
704
|
-
"from": "Of",
|
705
|
-
"monthly": "Monthly",
|
706
|
-
"expire": "Expire: ",
|
707
|
-
"details": "Display Usage Details"
|
708
|
-
},
|
709
|
-
"branding": {
|
710
|
-
"title": "Support",
|
711
|
-
"linktitle": "Support Page Link"
|
712
|
-
},
|
713
|
-
"windows": {
|
714
|
-
"intro": "First, download and install the Hiddify Desktop software according to your operating system.\n<br />\n%(hiddify_desktop_links)s\n\n<details>\n<summary>Why Hiddify Desktop ?</summary>\n<div class='callout callout-info'>\n\n Hiddify Desktop is an safe and open source fork of Clash that supports more VLESS and UTLS Fingerprinting.\n <br>\n<br />\n Its source codes exist in\n <a href='https://github.com/hiddify/HiddifyDesktop'>GitHub</a>.\n \n\n <details>\n <summary>Alternative: Normal Clash</summary>\n %(normal_clash_link)s\n\n <div class='alert alert-danger'>\n \tClash does not support browser fingerprinting and VLESS protocol . Therefore, we need to add another link for it.\n </div>\n \n\n </details>\n</div>\n </details>\n<br />\nNow, according to your need, you can click on one of the buttons. By viewing the window in your browser, just click on the <b>Open</b> option to automatically add the server link to Hiddify Desktop."
|
715
|
-
},
|
716
|
-
"share-title": "Share to Social Media",
|
717
|
-
"link": {
|
718
|
-
"success-copy": "Link Copied to Clipboard. ",
|
719
|
-
"manual-copy": "Copy to Clipboard: Ctrl+C, Enter"
|
720
|
-
}
|
721
|
-
}
|
722
|
-
},
|
723
|
-
"Mode": "Mode",
|
724
|
-
"Note": "📝 Note",
|
725
|
-
"Max Active Users": "Max Active Users",
|
726
|
-
"Max Users": "Max Users",
|
727
|
-
"Online Users": "Online Users",
|
728
|
-
"Can add sub admin": "👥 Can Add Sub Admin",
|
729
|
-
"Should be a valid uuid": "Should be a valid uuid",
|
730
|
-
"Add some text that is only visible to super_admin.": "Add some Text that is only visible to Super Admin",
|
731
|
-
"Define the admin mode. ": "🥇🥈🥉 Define the Admin Mode",
|
732
|
-
"Config file is incorrect": "Config file is incorrect.",
|
733
|
-
"Restore File": "Restore File",
|
734
|
-
"Restore File Description": "Choose the downloaded restore file",
|
735
|
-
"Restore Settings": "⚙️ Restore Settings",
|
736
|
-
"Restore Settings description": "Restore all settings description",
|
737
|
-
"Restore Users": "👥 Restore Users",
|
738
|
-
"Restore Users description": "Select this option to restore All Users",
|
739
|
-
"Restore Domain": "🌏 Restore Domain",
|
740
|
-
"Restore Domain description": "Select this option to restore your domains",
|
741
|
-
"Override Root Admin": "🔁 Override Owner in Backup",
|
742
|
-
"It will override the root admin to the current user": "It will override the owner admin of the backup file to the current user",
|
743
|
-
"Submit": "Submit",
|
744
|
-
"This version of hiddify panel is outdated. Please update it from admin area.": "⚠️ This version of Hiddify Manager is outdated. please Update it from Admin area",
|
745
|
-
"Access Denied!": "Access Denied",
|
746
|
-
"It seems that you have not setup the system completely. <a class=\"btn btn-success\" href=\"%(quick_setup)s\">Click here</a> to complete setup.": "It seems that you have not setup the system completely. <a class='btn btn-success' href='%(quick_setup)s'>Click here</a> to complete setup.",
|
747
|
-
"Please understand that parent panel is under test and the plan and the condition of use maybe change at anytime.": "Please understand that parent Panel is under test and the plan and the condition of use maybe change at anytime.",
|
748
|
-
"It seems that you are using default domain (%(domain)s) which is not recommended.": "It seems that you are using default domain (%(domain)s) which is not recommended. Please change or remove it from domain section.",
|
749
|
-
"It seems that you have not created any users yet. Default user link: %(default_link)s": "It seems that you have not created any users yet. default user link: %(default_link)s",
|
750
|
-
"serverssh": {
|
751
|
-
"password-login": {
|
752
|
-
"warning": "Your server is vulnerable to abuses because PasswordAuthentication is enabled in your SSH. To secure your server, please switch to key authentication mechanism and turn off PasswordAuthentication. <a href='https://github.com/hiddify/Hiddify-Manager/wiki/Disable-SSH-Password-Authentication'>read more... </a>"
|
753
|
-
}
|
754
|
-
},
|
755
|
-
"child has been removed!": "Child Has Been Removed!",
|
756
|
-
"domain": {
|
757
|
-
"description": "Please fill in this field carefully and correctly. Otherwise, proxies will run into problems. Please visit <a href='https://github.com/hiddify/hiddify-config/wiki/راهنمای-تنظیم-دامنه-و-نهایی-کردن-نصب#آموزش-ساخت-زیردامنه'> Help</a> to learn how to create a subdomain.",
|
758
|
-
"domain": "Domain",
|
759
|
-
"mode": "Mode",
|
760
|
-
"ip": "IP",
|
761
|
-
"cdn": "CDN",
|
762
|
-
"domain_fronting": {
|
763
|
-
"label": "🔒 Enable TLS Domain Fronting",
|
764
|
-
"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."
|
765
|
-
}
|
766
|
-
},
|
767
|
-
"Direct mode means you want to use your server directly (for usual use), CDN means that you use your server on behind of a CDN provider.": "➡️ <b>Direct:</b> Select this mode if you configure your domain exclusively on your DNS provider in DNS-only mode. (CDN or Proxy Mode Off) <br>\n🔙 <b>Old Direct Mode:</b> This mode is similar to Direct mode but does not utilize gRPC for communication. Select Old Mode if you prefer to configure your domain on your DNS provider in DNS-only mode without utilizing gRPC.\n<br>\n🔀 <b>CDN:</b> Select this mode if you use a CDN provider for your server's domain. (Proxy Mode On)<br>\n☑️ <b>Automatic CDN IP Selector:</b> This mode functions similarly to CDN mode but with an automated IP assignment based on the IP provided by <a href='https://ircf.space' target='_blank'>ircf.space</a>. In Auto CDN IP mode, the IP address is resolved from the domain, while in CDN mode, the domain is returned.<br>\n♾️ <b>Relay:</b> Select this mode if you are using one or more Intermediary servers. <a href='https://github.com/hiddify/hiddify-config/discussions/129' target='_blank'>Read More</a>\n<br>\n✴️ <b>Cloudflare Worker:</b> This mode enables automatic creation of workers for your domain in Cloudflare. Simplify the setup and management of workers by registering this domain, as the necessary steps for worker registration are handled automatically within Cloudflare.\n<br>\n🔂 <b>Reality:</b> Utilize the Reality protocol to create multiple domains.\n<br>\n🆎 <b>Fake Site:</b> Select this mode if you want to use a fake Domain (e.g., Soft98.ir) to bypass SNI whitelist Proxy. (Not Recommended)\n<br>",
|
768
|
-
"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.": "For users visit the user area with this domain, Specify they can see the proxies of which domains.\n<br>\nSuggestion: For a domain with an unfiltered IP and different from the others, select all other domains (except the current domain). As a result, since the use of this IP is not for proxy and it is a simple website, this domain and IP will never be blocked and your users can easily update new profiles.",
|
769
|
-
"The name shown in the configs for this domain.": "The name that will be shown in the Configs for this Domain.",
|
770
|
-
"This can be used for giving your users a permanent non blockable links.": "This can be used for giving your Users a permanent non Blockable Links.",
|
771
|
-
"gRPC is a H2 based protocol. Maybe it is faster for you!": "ℹ️ gRPC is a H2 based Protocol. Maybe it is faster for you!",
|
772
|
-
"Should be a valid domain": "Should be a valid domain",
|
773
|
-
"Invalid IP or domain": "Invalid IP or domain",
|
774
|
-
"Invalid REALITY hostnames": "Invalid REALITY Hostnames",
|
775
|
-
"Only for sublink?": "🌍 Use Only for Subscription Link",
|
776
|
-
"Show Domains": "Show Configs of Domains",
|
777
|
-
"Alias": "Alias",
|
778
|
-
"gRPC": "➿ gRPC",
|
779
|
-
"admin link": "Admin",
|
780
|
-
"All": "All",
|
781
|
-
"You have used this domain in: ": "You have already used this Domain in: ",
|
782
|
-
"Couldn't find your ip addresses": "Couldn't find your IP Addresses",
|
783
|
-
"Can not connect to Cloudflare.": "Can not connect to Cloudflare.",
|
784
|
-
"Using alias with special charachters may cause problem in some clients like FairVPN.": "Using alias with special charachters may cause problem in some clients like FairVPN.",
|
785
|
-
"Domain is not REALITY friendly!": "Domain is Not REALITY Friendly!",
|
786
|
-
"REALITY Fallback domain is not compaitble with server names!": "REALITY Fallback Domain is not compaitble with Server names!",
|
787
|
-
"Error in auto cdn format": "⚠️ Error in Auto CDN Format",
|
788
|
-
"node": {
|
789
|
-
"name": {
|
790
|
-
"label": "Node Name",
|
791
|
-
"dscr": "node.name.dscr"
|
878
|
+
"tuic_enable": {
|
879
|
+
"description": "It is a UDP based protocol similar to QUIC",
|
880
|
+
"label": "Enable TUIC"
|
792
881
|
},
|
793
|
-
"
|
794
|
-
"
|
795
|
-
"
|
882
|
+
"tuic_port": {
|
883
|
+
"description": "Use comma to separate ports like 63000,60000",
|
884
|
+
"label": "TUIC Ports"
|
796
885
|
},
|
797
|
-
"
|
798
|
-
"
|
799
|
-
"
|
800
|
-
}
|
801
|
-
},
|
802
|
-
"Remote nodes are not supported yet!": "Remote nodes are not supported yet!",
|
803
|
-
"quicksetup": {
|
804
|
-
"setlang": {
|
805
|
-
"success": "Changing the Language was Successful.",
|
806
|
-
"error": "An error occurred while changing language."
|
807
|
-
}
|
808
|
-
},
|
809
|
-
"lang": {
|
810
|
-
"en": "🇺🇸 English انگلیسی 英语",
|
811
|
-
"fa": "🇮🇷 Persian فارسی 波斯语",
|
812
|
-
"pt": "🇵🇹 Portuguese پرتغالی 葡萄牙語",
|
813
|
-
"zh": "🇨🇳 Chinese چینی 简体中文",
|
814
|
-
"ru": "🇷🇺 Russian روسی Русский"
|
815
|
-
},
|
816
|
-
"Iran": "🇮🇷 Iran",
|
817
|
-
"China": "🇨🇳 China",
|
818
|
-
"config.Invalid domain": "Error! Invalid Domain. The Domain Format is www.google.com",
|
819
|
-
"config.Domain already used": "Domain is exist in domains section. Use another Domain",
|
820
|
-
"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 is not same as your IP = %(server_ip)s . this is required in Direct Mode",
|
821
|
-
"Port is already used! in": "Port is Already Used in:",
|
822
|
-
"ProxyPath is already used! use different proxy path": "ProxyPath is already used! use different proxy path",
|
823
|
-
"Xray": "☢️ XRay",
|
824
|
-
"SingBox": "📦 SingBox",
|
825
|
-
"Disable": "Disable",
|
826
|
-
"Only Blocked and Local websites": "☑️ Only Blocked and Local Websites",
|
827
|
-
"Others": "🇺🇳 Others",
|
828
|
-
"Release": "✅ Release",
|
829
|
-
"Beta": "☑️ Beta",
|
830
|
-
"Develop": "⚠️ Develop",
|
831
|
-
"lib": {
|
832
|
-
"telegram": {
|
833
|
-
"python": "✅ Python : Low Performance",
|
834
|
-
"go": "✴️ Go : High Performance - No ad Support",
|
835
|
-
"orignal": "⛔️ Not Working - Original : High Performance",
|
836
|
-
"erlang": "⛔️ NOT Working - Erlang : Medium Performance"
|
837
|
-
}
|
838
|
-
},
|
839
|
-
"Invalid admin link": "Invalid Admin Link",
|
840
|
-
"config.Invalid telegram bot token": "Invalid Telegram Bot Token",
|
841
|
-
"config.Invalid brand link": "Invalid Link. it should be on this format: (https or http://example.com)",
|
842
|
-
"config.invalid uuid": "Invalid UUID secret. example: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6\n\n",
|
843
|
-
"config.Invalid proxy path": "Invalid Proxy Path. It should be ASCI string (a-z A-Z 0-9)",
|
844
|
-
"config.Invalid port": "Invalid Port. it should be comma separated Integer e.g. 2052,2053",
|
845
|
-
"config.Invalid! The pattern is number-number": "⚠️ Config Invalid! The Pattern Is Number-Number",
|
846
|
-
"config.Invalid! it should be a number only": "⚠️ Config Invalid! It Should Be a Number Only",
|
847
|
-
"Reset package days": "📆 Reset Package's Days",
|
848
|
-
"Reset package usage": "⏳ Reset Package's Usage",
|
849
|
-
"Reset every month": "Monthly",
|
850
|
-
"Added by": "Added by",
|
851
|
-
"Start Date": "Start Date",
|
852
|
-
"Last Online": "Last Connection",
|
853
|
-
"Package Days": "📆 Package Days",
|
854
|
-
"Max IPs": "Max IPs",
|
855
|
-
"Enable": "❇️ Enable",
|
856
|
-
"Active": "Active",
|
857
|
-
"Add some text that is only visible to you.": "You can add some text that Is only visible to you",
|
858
|
-
"Define the user mode. Should the usage reset every month?": "The user's Package Mode. should the usage reset every Month, Week, etc",
|
859
|
-
"If monthly is enabled, the usage will be reset after 30 days from this date.": "If the monthly option is enabled, when this number reaches 30, the user usage will be reset (for weekly and daily this number is 7 and 1)",
|
860
|
-
"From when the user package will be started? Empty for start from first connection": "Specify the starting date of the package. Leave empty to start from first Connection.",
|
861
|
-
"How many days this package should be available?": "How Many Days Is This Package?",
|
862
|
-
"Package not started yet.": "Package not started yet.",
|
863
|
-
"Remaining: ": "Package Ends",
|
864
|
-
"You have too much users! You can have only %(active)s active users and %(total)s users": "You have too much users! You can have only %(active)s active users and %(total)s users",
|
865
|
-
"Backup": "Backup",
|
866
|
-
"You can download a json formated of configurations by clicking <a href='%(link)s' class='btn btn-primary'>here</a>": "🔄 Hiddify Manager automatically takes a Backup every 6 Hours. The path of the Backup files on the server: ⬇️\n<br>\n/opt/hiddify-config/hiddify-panel/backup\n<br>\n<br>\n<br>\n⚠️ You can download a JSON file format of the configurations by clicking on the button below\n<br>\n<br>\n<a href='%(link)s' class='btn btn-primary'>Download Backup File</a>",
|
867
|
-
"Restore": "♻️ Restore",
|
868
|
-
"You can restore your configs from previously downloaded configs": "ℹ️ You can restore your configs from previously downloaded backup file",
|
869
|
-
"Why Going to Premium?": "Why Going to Premium?",
|
870
|
-
"Premium Description": "Hiddify Manager Is Made For Non-Commercial Use. But If You Use This Panel Commercially, Please Help The Project Grow By Donating. <br/>\nIn Exchange For Your Financial Support, We Also Provide Special Facilities For Your Commercial Product.\n<br/>\n<br/>\nSuch as:\n<ul><li>\n<li>The Possibility Of Syncing To Cloudflare: That Is, By Adding a Domain In The Panel, The Relevant Settings Can Also Be Made In Cloudflare</li>\n<li>Possibility Of Displaying Your Brand In The Panel</li>\n<li>Possibility Of Using The Central Panel To Manage More Than 1 Server In Just One Panel, So It Is No Longer Necessary To Register Users In Different Servers, And Their Volume Will Be Collected In All Servers.\n</li>\n<li>\nThe Possibility Of Using The Telegram Bot\n</li>\n<li>\nAbility To Change Proxy Names\n</li>\n</ul>\n\nPlease Contact <a href='tg://resolve?domain=HiddifyCommercial'>@HiddifyCommercial</a> After Donating.\nSend a Message To Get a Special Version for business users.",
|
871
|
-
" Search Settings": " Search Settings",
|
872
|
-
"Create": "Create",
|
873
|
-
"Current Domain": "Current Domain",
|
874
|
-
"Save & Add More": "Save & Add More",
|
875
|
-
"Close": "Close",
|
876
|
-
"Back": "Back",
|
877
|
-
"Today Usage": "Today",
|
878
|
-
"Yesterday Usage": "Yesterday",
|
879
|
-
"Month Usage": "Monthly",
|
880
|
-
"Total Usage": "Total Usage",
|
881
|
-
"In 5 minutes": "In 5 Minutes",
|
882
|
-
"Network": "Network",
|
883
|
-
"From Last Restart": "From Last Restart",
|
884
|
-
"CPU %(cores)s Cores": "CPU %(cores)s Core",
|
885
|
-
"RAM": "RAM",
|
886
|
-
"Disk": "Hard Disk",
|
887
|
-
"Hiddify": "Hiddify",
|
888
|
-
"Childs": "Children",
|
889
|
-
"No children!": "No Children",
|
890
|
-
"Status": "Status",
|
891
|
-
"Domain": "Domain",
|
892
|
-
"Edit Proxy Names": "✏️ Modifying Proxies",
|
893
|
-
"Save Link": "Save Link",
|
894
|
-
"Please note that your panel can be accessed only via <a href=\"%(adminlink)s\" class=\"btn btn-primary copy-link\">%(adminlink)s</a>. Please save this link.": "Please note that your panel can be accessed only via the following link. please save this link.\n<p><a href='%(adminlink)s' class='btn btn-secondary copy-link'><i class='fa-solid fa-copy'></i></a>\n<a href='%(adminlink)s' class='copy-link' style='word-break: break-all;'>%(adminlink)s</a></p> ",
|
895
|
-
"Please wait ": "Please Wait ",
|
896
|
-
"log": "📄 Log",
|
897
|
-
"Click here to see the complete log": "Click here to see the complete log",
|
898
|
-
"Success": "Success",
|
899
|
-
"The action done successfully. You can now leave this page.": "✅ The Action Done Successfully. You can now leave this page",
|
900
|
-
"With selected": "With selected",
|
901
|
-
"Are you sure you want to delete this record?": "Are you sure you want to delete this record?",
|
902
|
-
"Filter": "Filter",
|
903
|
-
"Export": "Export",
|
904
|
-
"%(placeholder)s": "%(placeholder)s",
|
905
|
-
"Save": "Save",
|
906
|
-
"Root": "Root",
|
907
|
-
"Sort by %(name)s": "Sort by %(name)s",
|
908
|
-
"Rename File": "Rename File",
|
909
|
-
"Are you sure you want to delete \\'%(name)s\\' recursively?": "Are you sure you want to delete \\'%(name)s\\' recursively?",
|
910
|
-
"Are you sure you want to delete \\'%(name)s\\'?": "Are you sure you want to delete \\'%(name)s\\'?",
|
911
|
-
"Upload File": "Upload File",
|
912
|
-
"Create Directory": "Create Directory",
|
913
|
-
"Please select at least one file.": "Please select at least one file.",
|
914
|
-
"Edit": "Edit",
|
915
|
-
"Delete?": "Delete?",
|
916
|
-
"New": "New",
|
917
|
-
"Add": "Add",
|
918
|
-
"Apply": "Apply",
|
919
|
-
"Reset Filters": "Reset Filters",
|
920
|
-
"items": "items",
|
921
|
-
"Create New Record": "Create New Record",
|
922
|
-
"Select all records": "Select all records",
|
923
|
-
"Select record": "Select record",
|
924
|
-
"Please select at least one record.": "Please select at least one record.",
|
925
|
-
"In this section, you can add your domain. You need to add at least one domain in direct mode.": "1️⃣ In this section, you can add your Domain. \n<br>\n2️⃣ If you want to lessen the probability of having dirty IP, you can add Multiple Relay Server <a href='https://github.com/hiddify/hiddify-config/discussions/129'>Read More</a>.\n<br>\n3️⃣ If you have Multiple IPv4 or IPv6 in your Panel you have to add the domain pointed to them as Relay.",
|
926
|
-
"Send Message to User's Telegram": "📣 Send Message to User's Telegram",
|
927
|
-
"All Users": "All Users",
|
928
|
-
"Expired Users": "Expired Users",
|
929
|
-
"Active Users": "Active Users",
|
930
|
-
"Offline more than 1 hour": "Offline more than 1 hour",
|
931
|
-
"Offline more than 1 day": "Offline more than 1 day",
|
932
|
-
"Offline more than 1 week": "Offline more than 1 week",
|
933
|
-
"User usage will be updated every 6 minutes. To update it now click <a href=\"%(link)s\"\n class=\"btn btn-info\">here</a>": "🔄 User usage will be updated every 1 Minutes. to update it now <a href='%(link)s' class='btn btn-info'>Click Here</a>",
|
934
|
-
"Please type your message to send to the telegram:": "✏️ Please write your message to send to the Telegram:",
|
935
|
-
"Sending": "Sending...",
|
936
|
-
"The message has been sent.": "The message has been sent.",
|
937
|
-
"Hover the user to see the reason": "Hover the user to see the reason",
|
938
|
-
"The message was not sent to": "The message was not sent to",
|
939
|
-
"%(count)s records were successfully disabled.": "%(count)s records were successfully disabled.",
|
940
|
-
"%(count)s records were successfully enabled.": "%(count)s records were successfully enabled.",
|
941
|
-
"app": {
|
942
|
-
"hiddify": {
|
943
|
-
"next": {
|
944
|
-
"title": "Hiddify Next",
|
945
|
-
"description": "Hiddify Next Description"
|
946
|
-
}
|
886
|
+
"unique_id": {
|
887
|
+
"description": "-",
|
888
|
+
"label": "-"
|
947
889
|
},
|
948
|
-
"
|
949
|
-
"
|
950
|
-
"
|
890
|
+
"utls": {
|
891
|
+
"description": "This Option Will Simulate Different Browsers, Therefore, GFW Can Not Detect Your Browsing",
|
892
|
+
"label": "❇️ uTLS"
|
951
893
|
},
|
952
|
-
"
|
953
|
-
"
|
954
|
-
"
|
894
|
+
"v2ray_enable": {
|
895
|
+
"description": "V2ray does not support accounting and not suggested",
|
896
|
+
"label": "♈️ Enable V2Ray "
|
955
897
|
},
|
956
|
-
"
|
957
|
-
|
958
|
-
|
898
|
+
"validation-error": "There is an error in one of the fields.",
|
899
|
+
"validation-success": "Configs have been changed successfully. Click %(link)s to apply the configs. It may take 2 minutes to apply",
|
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"
|
959
904
|
},
|
960
|
-
"
|
961
|
-
"
|
962
|
-
"
|
905
|
+
"vmess_enable": {
|
906
|
+
"description": "Active VMess Protocol",
|
907
|
+
"label": "♈️ Enable VMess"
|
963
908
|
},
|
964
|
-
"
|
965
|
-
"
|
966
|
-
"
|
909
|
+
"warp": {
|
910
|
+
"description": "Warp is a tool that hides your server IP in outbound traffic. It means if the users are visiting a website the Warp IP is exposed instead of our server IP.\n<br>\nFor example, if you have a problem with captcha on Google, it might be fixed this way.",
|
911
|
+
"label": "WARP➕"
|
967
912
|
},
|
968
|
-
"
|
969
|
-
"
|
970
|
-
"
|
913
|
+
"warp_enable": {
|
914
|
+
"description": "Warp helps you bypass Google, Spotify and Netflix restrictions by hiding server IP ",
|
915
|
+
"label": "Enable WARP+"
|
971
916
|
},
|
972
|
-
"
|
973
|
-
"
|
974
|
-
"
|
917
|
+
"warp_mode": {
|
918
|
+
"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",
|
919
|
+
"label": "✴️ Warp+ Mode"
|
920
|
+
},
|
921
|
+
"warp_plus_code": {
|
922
|
+
"description": "🔝 Increases browsing speed. To get the Key, go to the <a href='https://1.1.1.1/'> 1.1.1.1 </a>\napp and purchase the original KEY from Cloudflare\n<br>\n⚠️ If there is an error in this Key, the WARP will be disabled",
|
923
|
+
"label": "🔑 Warp Plus Key"
|
924
|
+
},
|
925
|
+
"warp_sites": {
|
926
|
+
"description": "Add additional sites to pass through Warp (only when warp mode is not None)",
|
927
|
+
"label": "🆚 Additional Warp Sites"
|
928
|
+
},
|
929
|
+
"wireguard": {
|
930
|
+
"description": "WireGuard is a lightweight, UDP based protocol known for its simplicity, efficiency, and strong security. It offers quick setup, transparent code, and has gained popularity for its ease of use across various operating systems",
|
931
|
+
"label": "WireGuard"
|
932
|
+
},
|
933
|
+
"wireguard_enable": {
|
934
|
+
"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>",
|
935
|
+
"label": "🐉 Enable WireGuard"
|
936
|
+
},
|
937
|
+
"wireguard_ipv4": {
|
938
|
+
"description": "-",
|
939
|
+
"label": "-"
|
940
|
+
},
|
941
|
+
"wireguard_ipv6": {
|
942
|
+
"description": "-",
|
943
|
+
"label": "-"
|
944
|
+
},
|
945
|
+
"wireguard_noise_trick": {
|
946
|
+
"description": "This method introduces extra noise to prevent detection and blocking by the GFW",
|
947
|
+
"label": "💥 WireGuard Noise Trick"
|
948
|
+
},
|
949
|
+
"wireguard_port": {
|
950
|
+
"description": "WireGuard Port",
|
951
|
+
"label": "↔️ WireGuard Port"
|
952
|
+
},
|
953
|
+
"wireguard_private_key": {
|
954
|
+
"description": "-",
|
955
|
+
"label": "-"
|
975
956
|
},
|
976
|
-
"
|
977
|
-
"
|
978
|
-
"
|
957
|
+
"wireguard_public_key": {
|
958
|
+
"description": "-",
|
959
|
+
"label": "-"
|
979
960
|
},
|
980
|
-
"
|
981
|
-
"
|
982
|
-
"
|
961
|
+
"ws_enable": {
|
962
|
+
"description": "Websocket creates a tunnel over HTTP that is useful to be used in CDN",
|
963
|
+
"label": "🔰 Enable Websocket"
|
983
964
|
},
|
984
|
-
"
|
985
|
-
"
|
986
|
-
"
|
965
|
+
"xtls_enable": {
|
966
|
+
"description": "config.xtls_enable.description",
|
967
|
+
"label": "config.xtls_enable.label"
|
968
|
+
}
|
969
|
+
},
|
970
|
+
"config.invalid uuid": "Invalid UUID secret. example: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6\n\n",
|
971
|
+
"copy": "Copy",
|
972
|
+
"daily": "⏰ Daily",
|
973
|
+
"days": "Days",
|
974
|
+
"desktop": "Desktop",
|
975
|
+
"direct": "➡️ Direct",
|
976
|
+
"domain": {
|
977
|
+
"cdn": "CDN",
|
978
|
+
"description": "Please fill in this field carefully and correctly. Otherwise, proxies will run into problems. Please visit <a href='https://github.com/hiddify/hiddify-config/wiki/راهنمای-تنظیم-دامنه-و-نهایی-کردن-نصب#آموزش-ساخت-زیردامنه'> Help</a> to learn how to create a subdomain.",
|
979
|
+
"domain": "Domain",
|
980
|
+
"domain_fronting": {
|
981
|
+
"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.",
|
982
|
+
"label": "🔒 Enable TLS Domain Fronting"
|
987
983
|
},
|
988
|
-
"
|
989
|
-
|
990
|
-
|
984
|
+
"ip": "IP",
|
985
|
+
"mode": "Mode"
|
986
|
+
},
|
987
|
+
"download": "Direct Download",
|
988
|
+
"fake": "🆎 Fake Site",
|
989
|
+
"gRPC": "➿ gRPC",
|
990
|
+
"gRPC is a H2 based protocol. Maybe it is faster for you!": "ℹ️ gRPC is a H2 based Protocol. Maybe it is faster for you!",
|
991
|
+
"in parent panel": "In Parent Panel",
|
992
|
+
"install from google play": "<i class='fa-brands fa-google-play'></i> Google Play",
|
993
|
+
"ios": "iOS",
|
994
|
+
"items": "items",
|
995
|
+
"lang": {
|
996
|
+
"en": "🇺🇸 English انگلیسی 英语",
|
997
|
+
"fa": "🇮🇷 Persian فارسی 波斯语",
|
998
|
+
"pt": "🇵🇹 Portuguese پرتغالی 葡萄牙語",
|
999
|
+
"ru": "🇷🇺 Russian روسی Русский",
|
1000
|
+
"zh": "🇨🇳 Chinese چینی 简体中文"
|
1001
|
+
},
|
1002
|
+
"lib": {
|
1003
|
+
"telegram": {
|
1004
|
+
"erlang": "✴️ Erlang : Good Performance",
|
1005
|
+
"go": "✅ Go : Nornal Performance - No ad Support",
|
1006
|
+
"python": "☑️ Python : Low Performance"
|
991
1007
|
}
|
992
1008
|
},
|
993
|
-
"
|
994
|
-
"[Admin only visible message:] You can change this message from settings": "[Admin-exclusive message]: Customizable via settings.",
|
995
|
-
"Hooray 🎉 🎉 🎉 \nWelcome to hiddifybot.\nStart by clicking the link on the panel or entering your UUID.": "Hooray 🎉 🎉 🎉 \nWelcome to Hiddify bot\nStart by clicking the link on the Panel or entering your UUID.",
|
996
|
-
"update": "update",
|
997
|
-
"Welcome to admin bot. Choose your action": "Welcome to admin bot. Choose your action",
|
998
|
-
"Create Package": "Create Package",
|
999
|
-
"package size?": "package size?",
|
1000
|
-
"Ok": "Ok",
|
1001
|
-
"package days?": "package days?",
|
1002
|
-
"How many?": "How many?",
|
1003
|
-
"Domain?": "Domain?",
|
1004
|
-
"Please Wait...": "Please Wait...",
|
1005
|
-
"Finished": "Finished...",
|
1006
|
-
"Dear {}\n\nYour hiddify information is\nUUID: {}\nLast online date: {}\nExpire time: {}\nUsage class: {}\n": "Dear {}\n\nYour Hiddify Information is\nUUID: {}\nLast Online Date: {}\nExpire Time: {}\nUsage Class: {}\n",
|
1007
|
-
"Your hiddify instance information \nDomain: {} \nUsage limit: {} GB\nCurrent usage: {} GB\nExpires at: {} \nRemaining days: {} \n\n\n Happy using 🎉 🎉 🎉 \n": "Your Hiddify instance information \nDomain: {} \nUsage Limit: {} GB\nCurrent Usage: {} GB\nExpires at: {} \nRemaining Days: {} \n\n\nGood Luck! 🎉 🎉 🎉 \n",
|
1009
|
+
"log": "📄 Log",
|
1008
1010
|
"login": {
|
1009
1011
|
"secret": {
|
1010
|
-
"
|
1011
|
-
"
|
1012
|
+
"description": "Secret code is given by the service provider.",
|
1013
|
+
"label": "Secret Code"
|
1012
1014
|
}
|
1013
1015
|
},
|
1014
|
-
"Incorrect Password": "⚠️ Incorrect Password",
|
1015
|
-
"📅%(expire_days)s days": "📅%(expire_days)s Days Remain",
|
1016
|
-
"copy": "Copy",
|
1017
|
-
"open": "Open",
|
1018
|
-
"Link is changed!": "ℹ️ Link is Changed!",
|
1019
|
-
"The page has been moved to a new link. Please copy and save the new link.": "The page has been moved to a new link. Please copy and save the new link.",
|
1020
|
-
"all": "All",
|
1021
|
-
"auto": "Auto",
|
1022
|
-
"singbox: ssh": "SingBox: SSH",
|
1023
|
-
"ssh": "SSH",
|
1024
|
-
"Please select one of the following applications:": "📍 Please select one of the following applications:\n<br />\n<br />",
|
1025
|
-
"download": "Direct Download",
|
1026
|
-
"install from google play": "<i class='fa-brands fa-google-play'></i> Google Play",
|
1027
|
-
"HiddifyNG": "HiddifyNG <span class='badge badge-success'>Recommended</span>",
|
1028
|
-
"HiddifyNG intro": "📌 Please install HiddifyNG from either of these links:\n<br />\n %(dl_link)s %(play_link)s\n<br />\nThen click on the link below and open it in HiddifyNG.\n<br />",
|
1029
|
-
"Click to Import": "Tap to Import",
|
1030
|
-
"V2rayNG": "Alternative v2rayNG <button class='btn btn-sm btn-default' onclick='show_video('android-v2rayng')'><i class='fa-solid fa-question'></i> </button>\n<br />\n<br />",
|
1031
|
-
"V2rayNG intro": "Please install v2rayNG from either of these links: %(dl_link)s %(play_link)s.\nThen copy the link below and paste it in v2rayNG according to the video tutorial <button class='btn btn-sm btn-default' onclick='show_video('android-v2rayng')'><i class='fa-solid fa-question'></i> </button>.\n<br />",
|
1032
|
-
"Hiddify Android": "Hiddify Android ",
|
1033
|
-
"test": "Test",
|
1034
|
-
"Welcome %(user)s": "Welcome %(user)s",
|
1035
|
-
"telegram": "Telegram",
|
1036
|
-
"android": "Android",
|
1037
|
-
"ios": "iOS",
|
1038
|
-
"desktop": "Desktop",
|
1039
|
-
"user.home.select os": "Please Select Your Operating System.",
|
1040
|
-
"user.home.select tool": "Please select the item.",
|
1041
|
-
"QR code": "🧾 QR Code",
|
1042
|
-
"Want to enjoy more with telegram?": "ℹ️ Connect Your Account to Telegram",
|
1043
|
-
"Please connect your telegram account to the panel to be informed about latest news.": "Please connect your Telegram account to the panel to be informed about latest news.",
|
1044
|
-
"next": "Next",
|
1045
|
-
"previous": "Previous",
|
1046
|
-
"search": "Search",
|
1047
|
-
"Check again": "Check Again",
|
1048
|
-
"Turn of VPN": "Turn Off VPN",
|
1049
|
-
"You should visit this page without VPN. Your country=%(your_country)s\nexpected=%(expected_country)s": "You should visit this page without VPN Your Country =%(your_country)s\nExpected=%(expected_country)s",
|
1050
|
-
"Please connect your telegram accout to the panel to be informed about latest news.": "Please connect your Telegram account to the panel to know the latest Status of your Subscription",
|
1051
|
-
"Click to Start Anti-Filter.": "<i class='fa-solid fa-play'></i> Tap to Set up Anti-Filter",
|
1052
|
-
"Unified link for all application.": "One-click setup link for all applications (recommended)",
|
1053
|
-
"Temporary Short Link": "⏱️ Temporary Short Link",
|
1054
|
-
"Simplifies the process of employing the link elsewhere.": "Simplifies the process of employing the link elsewhere",
|
1055
|
-
"Open in Application": "Open in Application",
|
1056
|
-
"If the application do not open automatically, please click <a class='btn btn-primary copy-link'\n href='%(sub)s'>this universal link</a> to copy and paste it on\n your application, or:": "If the application do not open automatically, please click <a class='btn btn-primary copy-link'\n href='%(sub)s'>this universal link</a> to copy and paste it on\n your application, or:",
|
1057
|
-
"Use HiddifyNext:": "Use HiddifyNext:",
|
1058
|
-
"Download App": "<i class='fa-solid fa-download'></i> Download App",
|
1059
|
-
"Import": "Import in App",
|
1060
|
-
"More Applications": "More Applications",
|
1061
|
-
"Import in": "Import in",
|
1062
|
-
"QRCode": "<i class='fa-solid fa-qrcode'></i> QRCode",
|
1063
|
-
"Copy Link": "Copy Link",
|
1064
|
-
"Reset Usage Time:": "Traffic usage reset time:",
|
1065
|
-
"days": "Days",
|
1066
|
-
"User is inactive": "User Is Inactive",
|
1067
|
-
"Too many Connected IPs": "Too Many Connected IPs",
|
1068
|
-
"View in Telegram": "View in Telegram",
|
1069
|
-
"Windows": "Windows",
|
1070
1016
|
"macOS": "macOS",
|
1071
|
-
"Linux": "Linux",
|
1072
|
-
"HiddigyN": "HiddifyN <span class='badge badge-success'>Recommended</span>",
|
1073
|
-
"HiddifyN intro": "Please install HiddifyN from %(dl_link)s.\nThen click on the link below. It will do everything automatically.\n<br />",
|
1074
|
-
"HiddifyClash": "HiddifyClash",
|
1075
|
-
"Oops! Something went wrong.": "Oops! something went wrong.",
|
1076
|
-
"Please create an issue on Github.": "Please create an issue on Github",
|
1077
1017
|
"master": {
|
1078
1018
|
"page-title": "Hiddify Manager"
|
1079
1019
|
},
|
1080
|
-
"
|
1081
|
-
"
|
1082
|
-
"
|
1083
|
-
"
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1020
|
+
"monthly": "🗓️ Monthly",
|
1021
|
+
"next": "Next",
|
1022
|
+
"no_reset": "⭐️ Without Reset",
|
1023
|
+
"node": {
|
1024
|
+
"diff-version": "node.diff-version",
|
1025
|
+
"mode": {
|
1026
|
+
"dscr": "node.mode.dscr",
|
1027
|
+
"label": "Node Mode"
|
1028
|
+
},
|
1029
|
+
"name": {
|
1030
|
+
"dscr": "node.name.dscr",
|
1031
|
+
"label": "Node Name"
|
1032
|
+
},
|
1033
|
+
"uuid": {
|
1034
|
+
"dscr": "node.uuid.dscr",
|
1035
|
+
"label": "Node UUID"
|
1036
|
+
}
|
1088
1037
|
},
|
1089
|
-
"Telegram Bot": "Telegram Bot",
|
1090
|
-
"Are you sure you want to do this action?": "⚠️ Are you sure you want to do this action?",
|
1091
|
-
"direct": "➡️ Direct",
|
1092
|
-
"sub_link_only": "📳 Only for Subscription Link (can be Direct, Relay, or CDN)",
|
1093
|
-
"cdn": "🔀 CDN (Cloudflare Proxy, ...)",
|
1094
|
-
"auto_cdn_ip": "☑️ Automatic CDN IP Selector",
|
1095
|
-
"relay": "♾️ Relay (Connect Using an Intermediate Node)",
|
1096
|
-
"reality": "🔂 Reality",
|
1097
1038
|
"old_xtls_direct": "🔙 Old Direct Mode (For Trojan TCP, VLess XTLS)",
|
1098
|
-
"
|
1099
|
-
"
|
1100
|
-
"
|
1101
|
-
"
|
1039
|
+
"open": "Open",
|
1040
|
+
"package days?": "package days?",
|
1041
|
+
"package size?": "package size?",
|
1042
|
+
"parent": {
|
1043
|
+
"invalid-parent-url": "parent.invalid-parent-url",
|
1044
|
+
"sync-req-failed": "parent.sync-req-failed"
|
1045
|
+
},
|
1046
|
+
"previous": "Previous",
|
1047
|
+
"quicksetup": {
|
1048
|
+
"setlang": {
|
1049
|
+
"error": "An error occurred while changing language.",
|
1050
|
+
"success": "Changing the Language was Successful."
|
1051
|
+
}
|
1052
|
+
},
|
1053
|
+
"reality": "🔂 Reality",
|
1054
|
+
"relay": "♾️ Relay (Connect Using an Intermediate Node)",
|
1055
|
+
"search": "Search",
|
1056
|
+
"see the log in the bellow screen": "📑 See the log in the bellow screen",
|
1057
|
+
"selected domain for REALITY is not in the same ASN. To better use of the protocol, it is better to find a domain in the same ASN.": "Selected Domain for REALITY is not in the same ASN. To better use of the Protocol, it is better to find a Domain in the same ASN",
|
1058
|
+
"serverssh": {
|
1059
|
+
"password-login": {
|
1060
|
+
"warning": "Your server is vulnerable to abuses because Password Authentication is enabled in your SSH. To secure your server, please switch to key authentication mechanism and turn off Password Authentication. <a href='https://github.com/hiddify/Hiddify-Manager/wiki/Disable-SSH-Password-Authentication'>read more... </a>"
|
1061
|
+
}
|
1062
|
+
},
|
1063
|
+
"singbox: ssh": "SingBox: SSH",
|
1064
|
+
"ssh": "SSH",
|
1065
|
+
"sub_link_only": "📳 Only for Subscription Link (can be Direct, Relay, or CDN)",
|
1066
|
+
"telegram": "Telegram",
|
1067
|
+
"test": "Test",
|
1068
|
+
"update": "update",
|
1069
|
+
"user": {
|
1070
|
+
"UUID": "UUID",
|
1071
|
+
"current_usage_GB": "Current Usage (GB)",
|
1072
|
+
"expiry_time": "Expire (Days)",
|
1073
|
+
"home": {
|
1074
|
+
"all_configs": "All Configs",
|
1075
|
+
"allconfig": {
|
1076
|
+
"clash-configs": "Clash Configs",
|
1077
|
+
"hiddify-managers": "All Config Hiddify Managers",
|
1078
|
+
"link-configs": "Subscription Link",
|
1079
|
+
"name": "Name and Link",
|
1080
|
+
"protocol": "Protocol",
|
1081
|
+
"security": "Security",
|
1082
|
+
"transport": "Transport",
|
1083
|
+
"type": "Type"
|
1084
|
+
},
|
1085
|
+
"allconfigs": {
|
1086
|
+
"expect_vless": "Except VLess"
|
1087
|
+
},
|
1088
|
+
"android": {
|
1089
|
+
"intro": "Please install Hiddify Android from %(dl_link)s %(play_link)s. \n\n<!--\n<div class='callout callout-danger'>\n <b>Update Hiddify Android to Version 0.14</b>\n</div>-->\n<details>\n<summary>Why Hiddify Android?</summary>\n<div class='callout callout-info'>\n\n Hiddify Android is an Open Source Fork Of Clash That Supports More Protocols.\n <br>\n It's Source Codes Exist in\n <a href='https://github.com/hiddify/HiddifyProxyAndroid'>GitHub</a>.\n \n <br>\n Therefore, it is safe.\n\n <details>\n <summary>Alternative: Normal Clash</summary>\n <div class='btn-group'>\n <a href='https://play.google.com/store/apps/details?id=com.github.kr328.clash'\n class='btn btn-warning orig-link'>Clash in Google Play</a>\n </div>\n <div class='btn-group'>\n <a href='/{{hconfigs[ConfigEnum.proxy_path]}}/gh/Kr328/ClashForAndroid/releases/download/v2.5.12/cfa-2.5.12-premium-universal-release.apk'\n class='btn btn-warning orig-link'>Direct Download</a>\n </div>\n\n <div class='alert alert-danger'>\n \tClash does not support VLess protocol. therefore, we need to add another link for it.\n </div>\n \n\n </details>\n </div>\n</details>"
|
1090
|
+
},
|
1091
|
+
"branding": {
|
1092
|
+
"linktitle": "Support Page Link",
|
1093
|
+
"title": "Support"
|
1094
|
+
},
|
1095
|
+
"clash_configs": {
|
1096
|
+
"all_sites": {
|
1097
|
+
"btn": "Install Proxy for All Sites.",
|
1098
|
+
"description": "Use Proxy for all websites even for local websites.\n<div class='callout callout-danger'>\n Loading local sites will be slower and will endanger your privacy.\n</div>\n",
|
1099
|
+
"title": "Proxy for All Sites"
|
1100
|
+
},
|
1101
|
+
"alternative_for_normal_clash": "Alternative link for Clash",
|
1102
|
+
"foreign_sites": {
|
1103
|
+
"btn": "Install for Foreign Sites",
|
1104
|
+
"description": "Use Proxy for all foreign sites (even not blocked ones).\n<div class='callout callout-warning'>\n\tThis mode is useful in accessing some sanctaioned sites.\n</div>\n",
|
1105
|
+
"title": "Foreign Sites Proxy"
|
1106
|
+
},
|
1107
|
+
"intro": "Now based on your needs, click on one of the following links.\n<br />",
|
1108
|
+
"link_for_normal_clash": "Install Clash",
|
1109
|
+
"only_for_blocked_sites": {
|
1110
|
+
"btn": "Install for Only Blocked Sites",
|
1111
|
+
"description": "This mode is suggested. It only forwards the blocked sites via Proxy.\n <div class='callout callout-success'>\n In this mode, you will not feel any change in the speed.\n </div>",
|
1112
|
+
"title": "For only Blocked Sites"
|
1113
|
+
}
|
1114
|
+
},
|
1115
|
+
"doh": "DNS Over HTTPS",
|
1116
|
+
"ios": {
|
1117
|
+
"others": {
|
1118
|
+
"intro": "First install one of the following Applications:\n\n<div class='btn-group'>\n\n\t<a href='https://apps.apple.com/us/app/foxray/id6448898396'\n class='btn btn-primary orig-link'>FoXray</a>\n\n</div>\n\n<div class='btn-group'>\n\n\t<a href='https://apps.apple.com/us/app/fair-vpn/id1533873488'\n class='btn btn-primary orig-link'>Fair VPN</a>\n</div>\n\n<br />\nThen apply the following configs:\n<br />",
|
1119
|
+
"title": "FoXray and Fair VPN"
|
1120
|
+
},
|
1121
|
+
"stash": {
|
1122
|
+
"intro": "Stash & Shadowrocket are both great applications. Either one is worth buying.\n<br>\n<br />\n <div class='btn-group'>\n <a href='https://apps.apple.com/us/app/stash-rule-based-proxy/id1596063349' target='_blank' class='btn btn-success orig-link'>Download Stash</a>\n </div>\n <div class='btn-group'>\n <a href='https://apps.apple.com/us/app/shadowrocket/id932747118' target='_blank' class='btn btn-primary orig-link'>Download Shadowrocket</a> \n </div><br>\n<br />",
|
1123
|
+
"title": "<button class='btn btn-sm btn-default' onclick='show_video('ios-stash')'><i class='fa-solid fa-question'></i> Stash</button>\n <button class='btn btn-sm btn-default' onclick='show_video('ios-shadowrocket')'><i class='fa-solid fa-question'></i> Shadowrocket</button>\n <span class='badge badge-success'>Recommended</span>"
|
1124
|
+
}
|
1125
|
+
},
|
1126
|
+
"link": {
|
1127
|
+
"manual-copy": "Copy to Clipboard: Ctrl+C, Enter",
|
1128
|
+
"success-copy": "Link Copied to Clipboard. "
|
1129
|
+
},
|
1130
|
+
"qr-code": {
|
1131
|
+
"description": "To copy or share links, click on the gray <i class='fa-solid fa-qrcode'></i> field to display its QR Code.",
|
1132
|
+
"display": "Display QR Code"
|
1133
|
+
},
|
1134
|
+
"share-title": "Share to Social Media",
|
1135
|
+
"speedtest": {
|
1136
|
+
"download": "Download",
|
1137
|
+
"intro": "First, Test the Speed <b>without</b> the proxy. If the speed is not good, it means that this ip is so called dirty on your ISP.\nIf the speed was low without a proxy, don't waste your time to test this proxy.\nOtherwise, test with different proxies of this site and if the speed is similar to the speed without the proxy, then you have found the best protocol.\n<br />",
|
1138
|
+
"title": "Speed Test (Detect dirty IP)",
|
1139
|
+
"two_ways": "Both Ways",
|
1140
|
+
"upload": "Upload"
|
1141
|
+
},
|
1142
|
+
"telegram": {
|
1143
|
+
"clickbtn": "Telegram Proxy",
|
1144
|
+
"description": "Click on one of the following link then, in the telegram you can see a window that contains <b>Connect Proxy</b>. Click on it and it will work.\n<br />"
|
1145
|
+
},
|
1146
|
+
"title": "Hiddify",
|
1147
|
+
"tool": {
|
1148
|
+
"all-configs": "All Configs",
|
1149
|
+
"doh": {
|
1150
|
+
"help": "<h4>Configure DoH on your browser</h4>\n There are several browsers compatible with DNS over HTTPS (DoH). This protocol lets\n you encrypt your connection to 1.1.1.1 in order to protect your DNS queries from privacy intrusions and tampering.\n\n Some browsers might already have this setting enabled.\n<br />\n <h5>Mozilla Firefox</h5>\n Select the <b>menu</b> button > <b>Settings</b>.In the General menu, scroll down to access <b>Network Settings</b>. Select <b>Settings</b>. Select <b>Enable DNS over HTTPS</b>.\n<br />\n <h5>Google Chrome</h5>\n Select the <b>three-dot</b> menu in your browser > <b>Settings</b>.\n Select <b>Privacy and security</b> > <b>Security</b>.\n Scroll down and enable <b>Use secure DNS</b>.\n<br />\n <h5>Microsoft Edge</h5>\n Select the <b>three-dot</b> menu in your browser > <b>Settings</b>.\n Select <b>Privacy, Search, and Services</b>, and scroll down to <b>Security</b>.\n Enable <b>Use secure DNS</b>.\n Select Choose a service provider.",
|
1151
|
+
"title": "DNS Over HTTPS"
|
1152
|
+
}
|
1153
|
+
},
|
1154
|
+
"usage": {
|
1155
|
+
"details": "Display Usage Details",
|
1156
|
+
"expire": "Expire: ",
|
1157
|
+
"from": "Of",
|
1158
|
+
"monthly": "Monthly",
|
1159
|
+
"title": "⏳ Traffic Usage"
|
1160
|
+
},
|
1161
|
+
"windows": {
|
1162
|
+
"intro": "First, download and install the Hiddify Desktop software according to your operating system.\n<br />\n%(hiddify_desktop_links)s\n\n<details>\n<summary>Why Hiddify Desktop ?</summary>\n<div class='callout callout-info'>\n\n Hiddify Desktop is an safe and open source fork of Clash that supports more VLESS and UTLS Fingerprinting.\n <br>\n<br />\n Its source codes exist in\n <a href='https://github.com/hiddify/HiddifyDesktop'>GitHub</a>.\n \n\n <details>\n <summary>Alternative: Normal Clash</summary>\n %(normal_clash_link)s\n\n <div class='alert alert-danger'>\n \tClash does not support browser fingerprinting and VLESS protocol . Therefore, we need to add another link for it.\n </div>\n \n\n </details>\n</div>\n </details>\n<br />\nNow, according to your need, you can click on one of the buttons. By viewing the window in your browser, just click on the <b>Open</b> option to automatically add the server link to Hiddify Desktop."
|
1163
|
+
}
|
1164
|
+
},
|
1165
|
+
"last_reset_time": "Last Usage Date Reset",
|
1166
|
+
"name": "Name",
|
1167
|
+
"usage_limit_GB": "⌛️ Usage Limit (GB)",
|
1168
|
+
"user_links": "User Links"
|
1169
|
+
},
|
1170
|
+
"user.home.select os": "Please Select Your Operating System.",
|
1171
|
+
"user.home.select tool": "Please select the item.",
|
1102
1172
|
"weekly": "📅 Weekly",
|
1103
|
-
"
|
1104
|
-
"
|
1105
|
-
"Panel Link": "➖ Panel Link",
|
1106
|
-
"Bridge Servers": "➖ Bridge Servers",
|
1107
|
-
"Fake": "➖ Fake",
|
1108
|
-
"Example Domains": "Test and Suggest Domain ",
|
1109
|
-
"close": "Close",
|
1110
|
-
"clickable copy": "Link for Social Media",
|
1111
|
-
"Install": "Install",
|
1112
|
-
"Install Hiddify Application": "Hiddify Manager Installation",
|
1113
|
-
"Please click on %(install)s to save the user page.": "Click %(install)s to save the User Page.",
|
1114
|
-
"Count:": "Count:",
|
1115
|
-
"Actions": "Actions"
|
1173
|
+
"worker": "✴️ Cloudflare Worker",
|
1174
|
+
"📅%(expire_days)s days": "📅%(expire_days)s Days Remain"
|
1116
1175
|
}
|