hiddifypanel 9.0.0.dev92__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 +58 -50
- 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 -1848
- hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/ru/LC_MESSAGES/messages.po +2019 -1874
- hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/zh/LC_MESSAGES/messages.po +1873 -1742
- hiddifypanel/translations.i18n/en.json +992 -933
- hiddifypanel/translations.i18n/fa.json +994 -935
- hiddifypanel/translations.i18n/pt.json +1031 -972
- hiddifypanel/translations.i18n/ru.json +994 -935
- hiddifypanel/translations.i18n/zh.json +971 -912
- {hiddifypanel-9.0.0.dev92.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/METADATA +47 -47
- {hiddifypanel-9.0.0.dev92.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/RECORD +147 -120
- {hiddifypanel-9.0.0.dev92.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.dev92.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/LICENSE.md +0 -0
- {hiddifypanel-9.0.0.dev92.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/entry_points.txt +0 -0
- {hiddifypanel-9.0.0.dev92.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/top_level.txt +0 -0
@@ -2,2703 +2,2808 @@
|
|
2
2
|
msgid ""
|
3
3
|
msgstr ""
|
4
4
|
|
5
|
-
msgid "
|
6
|
-
msgstr "
|
7
|
-
|
8
|
-
msgid "admin.config.apply_configs"
|
9
|
-
msgstr "Apply Configs"
|
10
|
-
|
11
|
-
msgid "admin.config.title"
|
12
|
-
msgstr "Settings"
|
5
|
+
msgid " Search Settings"
|
6
|
+
msgstr " Search Settings"
|
13
7
|
|
14
|
-
msgid "
|
15
|
-
msgstr "
|
8
|
+
msgid "%(count)s records were successfully disabled."
|
9
|
+
msgstr "%(count)s records were successfully disabled."
|
16
10
|
|
17
|
-
msgid "
|
18
|
-
msgstr "
|
11
|
+
msgid "%(count)s records were successfully enabled."
|
12
|
+
msgstr "%(count)s records were successfully enabled."
|
19
13
|
|
20
|
-
msgid "
|
21
|
-
msgstr "
|
14
|
+
msgid "%(placeholder)s"
|
15
|
+
msgstr "%(placeholder)s"
|
22
16
|
|
23
|
-
msgid "
|
24
|
-
msgstr ""
|
25
|
-
"Your Server's IPs are: \n"
|
26
|
-
"<div >\n"
|
27
|
-
"IPv4: %(ipv4)s <br> IPv6: %(ipv6)s\n"
|
28
|
-
"</div>\n"
|
29
|
-
"Set these IPs on your Domain or Subdomain and enter your Domain or Subdomain in the bellow box.\n"
|
17
|
+
msgid "0 - Last day"
|
18
|
+
msgstr "Last Day"
|
30
19
|
|
31
|
-
msgid "
|
32
|
-
msgstr "
|
20
|
+
msgid "Access Denied!"
|
21
|
+
msgstr "Access Denied"
|
33
22
|
|
34
|
-
msgid "
|
35
|
-
msgstr "
|
23
|
+
msgid "Actions"
|
24
|
+
msgstr "Actions"
|
36
25
|
|
37
|
-
msgid "
|
38
|
-
msgstr "
|
26
|
+
msgid "Active"
|
27
|
+
msgstr "Active"
|
39
28
|
|
40
|
-
msgid "
|
41
|
-
msgstr "
|
29
|
+
msgid "Active Users"
|
30
|
+
msgstr "Active Users"
|
42
31
|
|
43
|
-
msgid "
|
44
|
-
msgstr "
|
32
|
+
msgid "Add"
|
33
|
+
msgstr "Add"
|
45
34
|
|
46
|
-
msgid "
|
47
|
-
msgstr "
|
35
|
+
msgid "Add some text that is only visible to super_admin."
|
36
|
+
msgstr "Add some Text that is only visible to Super Admin"
|
48
37
|
|
49
|
-
msgid "
|
50
|
-
msgstr "
|
38
|
+
msgid "Add some text that is only visible to you."
|
39
|
+
msgstr "You can add some text that Is only visible to you"
|
51
40
|
|
52
|
-
msgid "
|
53
|
-
msgstr "
|
41
|
+
msgid "Added by"
|
42
|
+
msgstr "Added by"
|
54
43
|
|
55
|
-
msgid "
|
56
|
-
msgstr "
|
44
|
+
msgid "Admins"
|
45
|
+
msgstr "Admins"
|
57
46
|
|
58
|
-
msgid "
|
59
|
-
msgstr "
|
47
|
+
msgid "Alias"
|
48
|
+
msgstr "Alias"
|
60
49
|
|
61
|
-
msgid "
|
62
|
-
msgstr "
|
50
|
+
msgid "All"
|
51
|
+
msgstr "All"
|
63
52
|
|
64
|
-
msgid "
|
65
|
-
msgstr "
|
53
|
+
msgid "All Users"
|
54
|
+
msgstr "All Users"
|
66
55
|
|
67
|
-
msgid "
|
68
|
-
msgstr "Apply
|
56
|
+
msgid "Apply"
|
57
|
+
msgstr "Apply"
|
69
58
|
|
70
|
-
msgid "
|
71
|
-
msgstr "
|
59
|
+
msgid "Are you sure you want to delete \\'%(name)s\\' recursively?"
|
60
|
+
msgstr "Are you sure you want to delete \\'%(name)s\\' recursively?"
|
72
61
|
|
73
|
-
msgid "
|
74
|
-
msgstr "
|
62
|
+
msgid "Are you sure you want to delete \\'%(name)s\\'?"
|
63
|
+
msgstr "Are you sure you want to delete \\'%(name)s\\'?"
|
75
64
|
|
76
|
-
msgid "
|
77
|
-
msgstr "
|
65
|
+
msgid "Are you sure you want to delete this record?"
|
66
|
+
msgstr "Are you sure you want to delete this record?"
|
78
67
|
|
79
|
-
msgid "
|
80
|
-
msgstr ""
|
81
|
-
"Configs have been changed successfully. Click %(link)s to apply the configs."
|
82
|
-
" It may take 2 minutes to apply"
|
68
|
+
msgid "Are you sure you want to do this action?"
|
69
|
+
msgstr "⚠️ Are you sure you want to do this action?"
|
83
70
|
|
84
|
-
msgid "
|
85
|
-
msgstr "
|
71
|
+
msgid "Back"
|
72
|
+
msgstr "Back"
|
86
73
|
|
87
|
-
msgid "
|
88
|
-
msgstr ""
|
89
|
-
"In this part you can use a set of specific domains or IPs for your server to be override in the user links. \n"
|
90
|
-
"\n"
|
91
|
-
"If 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.\n"
|
92
|
-
"Use <a target='_blank' href='https://ip-format.hiddify.com'>this link</a> to set personal IPs."
|
74
|
+
msgid "Backup"
|
75
|
+
msgstr "Backup"
|
93
76
|
|
94
|
-
msgid "
|
95
|
-
msgstr "
|
77
|
+
msgid "Beta"
|
78
|
+
msgstr "☑️ Beta"
|
96
79
|
|
97
|
-
msgid "
|
98
|
-
msgstr "
|
80
|
+
msgid "Bridge Servers"
|
81
|
+
msgstr "➖ Bridge Servers"
|
99
82
|
|
100
|
-
msgid "
|
101
|
-
msgstr "
|
83
|
+
msgid "Bug"
|
84
|
+
msgstr "Bug/Feature"
|
102
85
|
|
103
|
-
msgid "
|
104
|
-
msgstr "
|
86
|
+
msgid "CPU %(cores)s Cores"
|
87
|
+
msgstr "CPU %(cores)s Core"
|
105
88
|
|
106
|
-
msgid "
|
107
|
-
msgstr "
|
89
|
+
msgid "Can add sub admin"
|
90
|
+
msgstr "👥 Can Add Sub Admin"
|
108
91
|
|
109
|
-
msgid "
|
110
|
-
msgstr ""
|
111
|
-
"It is used to simulate another website instead of your website in SNI. therefore, GFW can not filter your Domain\n"
|
112
|
-
"<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."
|
92
|
+
msgid "Can not connect to Cloudflare."
|
93
|
+
msgstr "Can not connect to Cloudflare."
|
113
94
|
|
114
|
-
msgid "
|
115
|
-
msgstr "
|
95
|
+
msgid "Check again"
|
96
|
+
msgstr "Check Again"
|
116
97
|
|
117
|
-
msgid "
|
118
|
-
msgstr "
|
98
|
+
msgid "Childs"
|
99
|
+
msgstr "Children"
|
119
100
|
|
120
|
-
msgid "
|
121
|
-
msgstr "
|
101
|
+
msgid "China"
|
102
|
+
msgstr "🇨🇳 China"
|
122
103
|
|
123
|
-
msgid "
|
124
|
-
msgstr ""
|
125
|
-
"It applies the appropriate settings for each country according to the "
|
126
|
-
"filtering conditions of that country"
|
104
|
+
msgid "Click here to see the complete log"
|
105
|
+
msgstr "Click here to see the complete log"
|
127
106
|
|
128
|
-
msgid "
|
129
|
-
msgstr "
|
107
|
+
msgid "Click to Import"
|
108
|
+
msgstr "Tap to Import"
|
130
109
|
|
131
|
-
msgid "
|
132
|
-
msgstr "
|
110
|
+
msgid "Click to Start Anti-Filter."
|
111
|
+
msgstr "<i class='fa-solid fa-play'></i> Tap to Set up Anti-Filter"
|
133
112
|
|
134
|
-
msgid "
|
135
|
-
msgstr "
|
113
|
+
msgid "Close"
|
114
|
+
msgstr "Close"
|
136
115
|
|
137
|
-
msgid "
|
138
|
-
msgstr ""
|
139
|
-
"Fake Site: simulates a site when someone visits your domain directly.<br>\n"
|
140
|
-
"⚠️ Do not use financial, Iranian and famous sites or sites with login such as Google, Yahoo, Wikipedia, PayPal.<br>\n"
|
141
|
-
"⛔ Be sure to check the site and make sure that it is the right site, otherwise you may receive a phishing warning.<br>\n"
|
142
|
-
"⛔⛔ Check this domain again so that there is no problem in the future"
|
116
|
+
msgid "Commercial use"
|
117
|
+
msgstr "Commercial use"
|
143
118
|
|
144
|
-
msgid "
|
145
|
-
msgstr "
|
119
|
+
msgid "Config file is incorrect"
|
120
|
+
msgstr "Config file is incorrect."
|
146
121
|
|
147
|
-
msgid "
|
148
|
-
msgstr ""
|
149
|
-
"You can switch between different Telegram Libraries. Please note that only "
|
150
|
-
"Python works in all servers, others may have some issue. Test Proxy after "
|
151
|
-
"changing it."
|
122
|
+
msgid "Copy Link"
|
123
|
+
msgstr "Copy Link"
|
152
124
|
|
153
|
-
msgid "
|
154
|
-
msgstr "
|
125
|
+
msgid "Couldn't find your ip addresses"
|
126
|
+
msgstr "Couldn't find your IP Addresses"
|
155
127
|
|
156
|
-
msgid "
|
157
|
-
msgstr "
|
128
|
+
msgid "Count:"
|
129
|
+
msgstr "Count:"
|
158
130
|
|
159
|
-
msgid "
|
160
|
-
msgstr "
|
131
|
+
msgid "Create"
|
132
|
+
msgstr "Create"
|
161
133
|
|
162
|
-
msgid "
|
163
|
-
msgstr "
|
134
|
+
msgid "Create Directory"
|
135
|
+
msgstr "Create Directory"
|
164
136
|
|
165
|
-
msgid "
|
166
|
-
msgstr "
|
137
|
+
msgid "Create New Record"
|
138
|
+
msgstr "Create New Record"
|
167
139
|
|
168
|
-
msgid "
|
169
|
-
msgstr ""
|
170
|
-
"Enter a customized title to be shown on user page. (before yser's Welcome "
|
171
|
-
"Text)"
|
140
|
+
msgid "Create Package"
|
141
|
+
msgstr "Create Package"
|
172
142
|
|
173
|
-
msgid "
|
174
|
-
msgstr ""
|
175
|
-
"🆔 Support Link (goes both on branding title and also on support section of "
|
176
|
-
"user page)"
|
143
|
+
msgid "Current Domain"
|
144
|
+
msgstr "Current Domain"
|
177
145
|
|
178
|
-
msgid "
|
146
|
+
msgid ""
|
147
|
+
"Dear {}\n"
|
148
|
+
"\n"
|
149
|
+
"Your hiddify information is\n"
|
150
|
+
"UUID: {}\n"
|
151
|
+
"Last online date: {}\n"
|
152
|
+
"Expire time: {}\n"
|
153
|
+
"Usage class: {}\n"
|
179
154
|
msgstr ""
|
180
|
-
"
|
181
|
-
"
|
155
|
+
"Dear {}\n"
|
156
|
+
"\n"
|
157
|
+
"Your Hiddify Information is\n"
|
158
|
+
"UUID: {}\n"
|
159
|
+
"Last Online Date: {}\n"
|
160
|
+
"Expire Time: {}\n"
|
161
|
+
"Usage Class: {}\n"
|
182
162
|
|
183
|
-
msgid "
|
184
|
-
msgstr "
|
163
|
+
msgid "Define the admin mode. "
|
164
|
+
msgstr "🥇🥈🥉 Define the Admin Mode"
|
185
165
|
|
186
|
-
msgid "
|
166
|
+
msgid "Define the user mode. Should the usage reset every month?"
|
187
167
|
msgstr ""
|
188
|
-
"
|
189
|
-
"Page. you can use HTML tags"
|
168
|
+
"The user's Package Mode. should the usage reset every Month, Week, etc"
|
190
169
|
|
191
|
-
msgid "
|
192
|
-
msgstr "
|
170
|
+
msgid "Delete?"
|
171
|
+
msgstr "Delete?"
|
193
172
|
|
194
|
-
msgid "
|
195
|
-
msgstr "
|
173
|
+
msgid "Develop"
|
174
|
+
msgstr "⚠️ Develop"
|
196
175
|
|
197
|
-
msgid "
|
198
|
-
msgstr "
|
176
|
+
msgid "Direct"
|
177
|
+
msgstr "➖ Direct"
|
199
178
|
|
200
|
-
msgid "
|
201
|
-
|
202
|
-
"
|
203
|
-
"close all other Ports"
|
204
|
-
|
205
|
-
msgid "config.auto_update.label"
|
206
|
-
msgstr "🔄 Auto Update"
|
207
|
-
|
208
|
-
msgid "config.auto_update.description"
|
179
|
+
msgid ""
|
180
|
+
"Direct mode means you want to use your server directly (for usual use), CDN "
|
181
|
+
"means that you use your server on behind of a CDN provider."
|
209
182
|
msgstr ""
|
210
|
-
"
|
211
|
-
"
|
212
|
-
|
213
|
-
|
214
|
-
|
183
|
+
"➡️ <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"
|
184
|
+
"🔙 <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"
|
185
|
+
"<br>\n"
|
186
|
+
"🔀 <b>CDN:</b> Select this mode if you use a CDN provider for your server's domain. (Proxy Mode On)<br>\n"
|
187
|
+
"☑️ <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"
|
188
|
+
"♾️ <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"
|
189
|
+
"<br>\n"
|
190
|
+
"✴️ <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"
|
191
|
+
"<br>\n"
|
192
|
+
"🔂 <b>Reality:</b> Utilize the Reality protocol to create multiple domains.\n"
|
193
|
+
"<br>\n"
|
194
|
+
"🆎 <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"
|
195
|
+
"<br>"
|
215
196
|
|
216
|
-
msgid "
|
217
|
-
msgstr ""
|
218
|
-
"Allow your users to do Speed Test. It helps them to identify the link "
|
219
|
-
"quality"
|
197
|
+
msgid "Disable"
|
198
|
+
msgstr "Disable"
|
220
199
|
|
221
|
-
msgid "
|
222
|
-
msgstr "
|
200
|
+
msgid "Disk"
|
201
|
+
msgstr "Hard Disk"
|
223
202
|
|
224
|
-
msgid "
|
225
|
-
msgstr "
|
203
|
+
msgid "Domain"
|
204
|
+
msgstr "Domain"
|
226
205
|
|
227
|
-
msgid "
|
228
|
-
|
206
|
+
msgid ""
|
207
|
+
"Domain (%(domain)s)-> IP=%(domain_ip)s is not matched with your "
|
208
|
+
"ip=%(server_ip)s which is required in direct mode"
|
209
|
+
msgstr ""
|
210
|
+
"Domain (%(domain)s)-> IP = %(domain_ip)s is not same as your IP = "
|
211
|
+
"%(server_ip)s . this is required in Direct Mode"
|
229
212
|
|
230
|
-
msgid "
|
213
|
+
msgid ""
|
214
|
+
"Domain IP=%(domain_ip)s is not matched with your ip=%(server_ip)s which is "
|
215
|
+
"required in direct mode"
|
231
216
|
msgstr ""
|
232
|
-
"
|
233
|
-
"
|
217
|
+
"Domain IP=%(domain_ip)s is not matched with your ip=%(server_ip)s which is "
|
218
|
+
"required in direct mode"
|
234
219
|
|
235
|
-
msgid "
|
236
|
-
msgstr "
|
220
|
+
msgid "Domain can not be resolved! there is a problem in your domain"
|
221
|
+
msgstr ""
|
222
|
+
"Domain can not be resolved! There is a problem in your domain. Please check "
|
223
|
+
"your Domain configurations."
|
237
224
|
|
238
|
-
msgid "
|
239
|
-
msgstr "
|
225
|
+
msgid "Domain is not REALITY friendly!"
|
226
|
+
msgstr "Domain is Not REALITY Friendly!"
|
240
227
|
|
241
|
-
msgid "
|
242
|
-
msgstr "
|
228
|
+
msgid "Domain?"
|
229
|
+
msgstr "Domain?"
|
243
230
|
|
244
|
-
msgid "
|
231
|
+
msgid "Donation.description"
|
245
232
|
msgstr ""
|
246
|
-
"
|
247
|
-
"
|
248
|
-
|
249
|
-
|
250
|
-
|
233
|
+
"✳️ We need your help In Developing this Project\n"
|
234
|
+
" <br>\n"
|
235
|
+
" If you are developer or content producer, please contact us at <a href='mailto:info@hiddify.com'>info@hiddify.com</a>\n"
|
236
|
+
" <br><br>\n"
|
237
|
+
" \n"
|
238
|
+
" ℹ️ Also, we need financial help to further develop this panel and our service (we are Non-Profit).\n"
|
239
|
+
" <br>\n"
|
240
|
+
" <h5>Payment Methods :</h5>\n"
|
241
|
+
" <ul>\n"
|
242
|
+
" <li> <div class='btn-group'>\n"
|
243
|
+
" <a role='button' data-copy='EQCWnykA-YhavOXgH3sf-uxtXLjy83_9n5bJPGRPE8r2247_' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n"
|
244
|
+
" <a data-copy='EQCWnykA-YhavOXgH3sf-uxtXLjy83_9n5bJPGRPE8r2247_' role='button' class='btn btn-info share-link'>TON</a> </div></li>\n"
|
245
|
+
" \n"
|
246
|
+
" <li> <div class='btn-group'>\n"
|
247
|
+
" <a role='button' data-copy='TXZtFUxyBPMSykAWogu7C4zmbjySKqMcDE' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n"
|
248
|
+
" <a data-copy='TXZtFUxyBPMSykAWogu7C4zmbjySKqMcDE' role='button' class='btn btn-info share-link'>USDT (TRC20)</a> </div></li>\n"
|
249
|
+
" \n"
|
250
|
+
" <li> <div class='btn-group'>\n"
|
251
|
+
" <a role='button' data-copy='MCHoh7xwaDBBnQgANPpBtXiekagV6KpdrM' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n"
|
252
|
+
" <a data-copy='MCHoh7xwaDBBnQgANPpBtXiekagV6KpdrM' role='button' class='btn btn-info share-link'>Litecoin</a> </div></li>\n"
|
253
|
+
" \n"
|
254
|
+
" <li> <div class='btn-group'>\n"
|
255
|
+
" <a role='button' data-copy='0xF5CFc65ee336B377C2a37EA3BCD0CaD0d0F0CbA0' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n"
|
256
|
+
" <a data-copy='0xF5CFc65ee336B377C2a37EA3BCD0CaD0d0F0CbA0' role='button' class='btn btn-info share-link'>Ethereum</a> </div></li>\n"
|
257
|
+
" \n"
|
258
|
+
" <li> <div class='btn-group'>\n"
|
259
|
+
" <a role='button' data-copy='bc1qkfp7n3wxu2zc9mdy20cf27d5pujj65myww8f60' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n"
|
260
|
+
" <a data-copy='bc1qkfp7n3wxu2zc9mdy20cf27d5pujj65myww8f60' role='button' class='btn btn-info share-link'>Bitcoin</a> </div></li>\n"
|
261
|
+
" \n"
|
262
|
+
" <li> <div class='btn-group'>\n"
|
263
|
+
" <a role='button' data-copy='DPerFS2vCu5XnE3He32BaPVTkUDcKLsEaj' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n"
|
264
|
+
" <a data-copy='DPerFS2vCu5XnE3He32BaPVTkUDcKLsEaj' role='button' class='btn btn-info share-link'>Dogecoin</a> </div></li>\n"
|
265
|
+
" </ul>\n"
|
266
|
+
" \n"
|
267
|
+
" <br>\n"
|
268
|
+
" \n"
|
269
|
+
" We need also other help:\n"
|
270
|
+
" <ul>\n"
|
271
|
+
" <li>👥 Share Hiddify Manager with Others</li>\n"
|
272
|
+
" <li>📝Python Developer</li>\n"
|
273
|
+
" <li>📝Swift Developer</li>\n"
|
274
|
+
" <li>📝Flutter Developer</li>\n"
|
275
|
+
" <li>📝Go Developer</li>\n"
|
276
|
+
" <li>🖥Content Providers</li>\n"
|
277
|
+
" </ul>\n"
|
278
|
+
"\n"
|
279
|
+
"\n"
|
280
|
+
" Please contact us at <a href='mailto:info@hiddify.com'>info@hiddify.com</a> if you can help us."
|
251
281
|
|
252
|
-
msgid "
|
253
|
-
msgstr "
|
282
|
+
msgid "Donation.title"
|
283
|
+
msgstr "Donation"
|
254
284
|
|
255
|
-
msgid "
|
256
|
-
msgstr "
|
285
|
+
msgid "Download App"
|
286
|
+
msgstr "<i class='fa-solid fa-download'></i> Download App"
|
257
287
|
|
258
|
-
msgid "
|
259
|
-
msgstr ""
|
260
|
-
"Some Proxies don't support Accounting currently so we have to use a secret "
|
261
|
-
"for them"
|
288
|
+
msgid "Edit"
|
289
|
+
msgstr "Edit"
|
262
290
|
|
263
|
-
msgid "
|
264
|
-
msgstr "Proxies
|
291
|
+
msgid "Edit Proxy Names"
|
292
|
+
msgstr "✏️ Modifying Proxies"
|
265
293
|
|
266
|
-
msgid "
|
267
|
-
msgstr "
|
294
|
+
msgid "Enable"
|
295
|
+
msgstr "❇️ Enable"
|
268
296
|
|
269
|
-
msgid "
|
270
|
-
msgstr "
|
297
|
+
msgid "Error in auto cdn format"
|
298
|
+
msgstr "⚠️ Error in Auto CDN Format"
|
271
299
|
|
272
|
-
msgid "
|
273
|
-
msgstr ""
|
274
|
-
"In CloudFlare, TLS Domain Fronting is not supported. it will use Port 443 to"
|
275
|
-
" connect to CDN"
|
300
|
+
msgid "Error! auto cdn ip can not be find, please contact admin."
|
301
|
+
msgstr "Error In Auto CDN IP! It Can Not Be Find, Please Contact Admin"
|
276
302
|
|
277
|
-
msgid "
|
278
|
-
msgstr "
|
303
|
+
msgid "Example Domains"
|
304
|
+
msgstr "Test and Suggest Domain "
|
279
305
|
|
280
|
-
msgid "
|
281
|
-
msgstr ""
|
282
|
-
"It is used to simulate another website instead of your website in SNI. "
|
283
|
-
"therefore, GFW Can not filter your domain."
|
306
|
+
msgid "Expired Users"
|
307
|
+
msgstr "Expired Users"
|
284
308
|
|
285
|
-
msgid "
|
286
|
-
msgstr "
|
309
|
+
msgid "Export"
|
310
|
+
msgstr "Export"
|
287
311
|
|
288
|
-
msgid "
|
289
|
-
msgstr ""
|
290
|
-
"Telegram MTProto is used for Encapsulate Telegram Proxy as a tls traffic"
|
312
|
+
msgid "Fake"
|
313
|
+
msgstr "➖ Fake"
|
291
314
|
|
292
|
-
msgid "
|
293
|
-
msgstr "
|
315
|
+
msgid "Filter"
|
316
|
+
msgstr "Filter"
|
294
317
|
|
295
|
-
msgid "
|
296
|
-
msgstr ""
|
297
|
-
"It is used to show a sponsored channel in the client's chat list. To advertise a channel get a tag from @MTProxybot .\n"
|
298
|
-
"enter code 0123456789ABCDEF0123456789ABCDEF in that bot."
|
318
|
+
msgid "Finished"
|
319
|
+
msgstr "Finished..."
|
299
320
|
|
300
|
-
msgid "
|
301
|
-
msgstr "
|
321
|
+
msgid "From Last Restart"
|
322
|
+
msgstr "From Last Restart"
|
302
323
|
|
303
|
-
msgid "
|
324
|
+
msgid ""
|
325
|
+
"From when the user package will be started? Empty for start from first "
|
326
|
+
"connection"
|
304
327
|
msgstr ""
|
305
|
-
"
|
306
|
-
"
|
328
|
+
"Specify the starting date of the package. Leave empty to start from first "
|
329
|
+
"Connection."
|
307
330
|
|
308
|
-
msgid "
|
309
|
-
msgstr "
|
331
|
+
msgid "Hiddify"
|
332
|
+
msgstr "Hiddify"
|
310
333
|
|
311
|
-
msgid "
|
312
|
-
msgstr "
|
334
|
+
msgid "Hiddify Android"
|
335
|
+
msgstr "Hiddify Android "
|
313
336
|
|
314
|
-
msgid "
|
315
|
-
msgstr "
|
337
|
+
msgid "HiddifyClash"
|
338
|
+
msgstr "HiddifyClash"
|
316
339
|
|
317
|
-
msgid "
|
340
|
+
msgid "HiddifyN intro"
|
318
341
|
msgstr ""
|
319
|
-
"
|
320
|
-
"
|
342
|
+
"Please install HiddifyN from %(dl_link)s.\n"
|
343
|
+
"Then click on the link below. It will do everything automatically.\n"
|
344
|
+
"<br />"
|
321
345
|
|
322
|
-
msgid "
|
323
|
-
msgstr "
|
346
|
+
msgid "HiddifyNG"
|
347
|
+
msgstr "HiddifyNG <span class='badge badge-success'>Recommended</span>"
|
324
348
|
|
325
|
-
msgid "
|
349
|
+
msgid "HiddifyNG intro"
|
326
350
|
msgstr ""
|
327
|
-
"
|
328
|
-
"
|
351
|
+
"📌 Please install HiddifyNG from either of these links:\n"
|
352
|
+
"<br />\n"
|
353
|
+
" %(dl_link)s %(play_link)s\n"
|
354
|
+
"<br />\n"
|
355
|
+
"Then click on the link below and open it in HiddifyNG.\n"
|
356
|
+
"<br />"
|
329
357
|
|
330
|
-
msgid "
|
331
|
-
msgstr "
|
358
|
+
msgid "HiddigyN"
|
359
|
+
msgstr "HiddifyN <span class='badge badge-success'>Recommended</span>"
|
332
360
|
|
333
|
-
msgid "
|
334
|
-
|
361
|
+
msgid ""
|
362
|
+
"Hooray 🎉 🎉 🎉 \n"
|
363
|
+
"Welcome to hiddifybot.\n"
|
364
|
+
"Start by clicking the link on the panel or entering your UUID."
|
365
|
+
msgstr ""
|
366
|
+
"Hooray 🎉 🎉 🎉 \n"
|
367
|
+
"Welcome to Hiddify bot\n"
|
368
|
+
"Start by clicking the link on the Panel or entering your UUID."
|
335
369
|
|
336
|
-
msgid "
|
337
|
-
msgstr "
|
370
|
+
msgid "Hover the user to see the reason"
|
371
|
+
msgstr "Hover the user to see the reason"
|
338
372
|
|
339
|
-
msgid "
|
340
|
-
msgstr ""
|
341
|
-
"If you allow invalid SNI, you can use any Domain rather than your original "
|
342
|
-
"Domain to access the Proxy (Not Recommended)"
|
373
|
+
msgid "How many days this package should be available?"
|
374
|
+
msgstr "How Many Days Is This Package?"
|
343
375
|
|
344
|
-
msgid "
|
345
|
-
msgstr "
|
376
|
+
msgid "How many?"
|
377
|
+
msgstr "How many?"
|
346
378
|
|
347
|
-
msgid "
|
379
|
+
msgid ""
|
380
|
+
"If monthly is enabled, the usage will be reset after 30 days from this date."
|
348
381
|
msgstr ""
|
349
|
-
"
|
350
|
-
"
|
351
|
-
|
352
|
-
msgid "config.tls.label"
|
353
|
-
msgstr "TLS Configuration"
|
382
|
+
"If the monthly option is enabled, when this number reaches 30, the user "
|
383
|
+
"usage will be reset (for weekly and daily this number is 7 and 1)"
|
354
384
|
|
355
|
-
msgid "
|
356
|
-
|
385
|
+
msgid ""
|
386
|
+
"If the application do not open automatically, please click <a class='btn btn-primary copy-link'\n"
|
387
|
+
" href='%(sub)s'>this universal link</a> to copy and paste it on\n"
|
388
|
+
" your application, or:"
|
389
|
+
msgstr ""
|
390
|
+
"If the application do not open automatically, please click <a class='btn btn-primary copy-link'\n"
|
391
|
+
" href='%(sub)s'>this universal link</a> to copy and paste it on\n"
|
392
|
+
" your application, or:"
|
357
393
|
|
358
|
-
msgid "
|
359
|
-
msgstr "
|
394
|
+
msgid "Import"
|
395
|
+
msgstr "Import in App"
|
360
396
|
|
361
|
-
msgid "
|
362
|
-
msgstr "
|
397
|
+
msgid "Import in"
|
398
|
+
msgstr "Import in"
|
363
399
|
|
364
|
-
msgid "
|
365
|
-
msgstr "
|
400
|
+
msgid "In 5 minutes"
|
401
|
+
msgstr "In 5 Minutes"
|
366
402
|
|
367
|
-
msgid "
|
403
|
+
msgid ""
|
404
|
+
"In CDN mode, Domain IP=%(domain_ip)s should be different to your "
|
405
|
+
"ip=%(server_ip)s"
|
368
406
|
msgstr ""
|
369
|
-
"
|
370
|
-
"
|
407
|
+
"In CDN mode, Domain IP=%(domain_ip)s should be different to your "
|
408
|
+
"ip=%(server_ip)s"
|
371
409
|
|
372
|
-
msgid "
|
373
|
-
|
374
|
-
|
375
|
-
msgid "config.ssfaketls.description"
|
410
|
+
msgid ""
|
411
|
+
"In this section, you can add your domain. You need to add at least one "
|
412
|
+
"domain in direct mode."
|
376
413
|
msgstr ""
|
377
|
-
"
|
378
|
-
"
|
379
|
-
|
380
|
-
|
381
|
-
|
414
|
+
"1️⃣ In this section, you can add your Domain. \n"
|
415
|
+
"<br>\n"
|
416
|
+
"2️⃣ 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"
|
417
|
+
"<br>\n"
|
418
|
+
"3️⃣ If you have Multiple IPv4 or IPv6 in your Panel you have to add the domain pointed to them as Relay."
|
382
419
|
|
383
|
-
msgid "
|
384
|
-
msgstr ""
|
385
|
-
"ShadowTLS Is a new Protocol but it can hide the traffic from the government "
|
386
|
-
"using FakeTLS"
|
420
|
+
msgid "Incorrect Password"
|
421
|
+
msgstr "⚠️ Incorrect Password"
|
387
422
|
|
388
|
-
msgid "
|
389
|
-
msgstr "
|
423
|
+
msgid "Install"
|
424
|
+
msgstr "Install"
|
390
425
|
|
391
|
-
msgid "
|
392
|
-
msgstr ""
|
393
|
-
"Please use a well known domain in your data center. for example, If you are "
|
394
|
-
"In azure data center, microsoft-update.com Is a good example"
|
426
|
+
msgid "Install Hiddify Application"
|
427
|
+
msgstr "Hiddify Manager Installation"
|
395
428
|
|
396
|
-
msgid "
|
397
|
-
msgstr "
|
429
|
+
msgid "Invalid IP or domain"
|
430
|
+
msgstr "Invalid IP or domain"
|
398
431
|
|
399
|
-
msgid "
|
400
|
-
msgstr ""
|
401
|
-
"A Proxy to expose real tls handshake to the firewall.\n"
|
402
|
-
"\n"
|
403
|
-
"It works like Trojan but It does not require signing certificate. the firewall will see real tls handshake with valid certificate that you choose."
|
432
|
+
msgid "Invalid REALITY hostnames"
|
433
|
+
msgstr "Invalid REALITY Hostnames"
|
404
434
|
|
405
|
-
msgid "
|
406
|
-
msgstr "
|
435
|
+
msgid "Invalid admin link"
|
436
|
+
msgstr "Invalid Admin Link"
|
407
437
|
|
408
|
-
msgid "
|
409
|
-
msgstr "
|
438
|
+
msgid "Iran"
|
439
|
+
msgstr "🇮🇷 Iran"
|
410
440
|
|
411
|
-
msgid "
|
412
|
-
|
441
|
+
msgid ""
|
442
|
+
"It seems that you are using default domain (%(domain)s) which is not "
|
443
|
+
"recommended."
|
444
|
+
msgstr ""
|
445
|
+
"It seems that you are using default domain (%(domain)s) which is not "
|
446
|
+
"recommended. Please change or remove it from domain section."
|
413
447
|
|
414
|
-
msgid "
|
448
|
+
msgid ""
|
449
|
+
"It seems that you have not created any users yet. Default user link: "
|
450
|
+
"%(default_link)s"
|
415
451
|
msgstr ""
|
416
|
-
"
|
417
|
-
"
|
418
|
-
"TUIC's goal is to minimize the handshake latency as much as possible"
|
452
|
+
"It seems that you have not created any users yet. default user link: "
|
453
|
+
"%(default_link)s"
|
419
454
|
|
420
|
-
msgid "
|
421
|
-
|
455
|
+
msgid ""
|
456
|
+
"It seems that you have not setup the system completely. <a class=\"btn btn-"
|
457
|
+
"success\" href=\"%(quick_setup)s\">Click here</a> to complete setup."
|
458
|
+
msgstr ""
|
459
|
+
"It seems that you have not setup the system completely. <a class='btn btn-"
|
460
|
+
"success' href='%(quick_setup)s'>Click here</a> to complete setup."
|
422
461
|
|
423
|
-
msgid "
|
462
|
+
msgid "It will override the root admin to the current user"
|
424
463
|
msgstr ""
|
425
|
-
"
|
426
|
-
"superior in terms of security and stability."
|
464
|
+
"It will override the owner admin of the backup file to the current user"
|
427
465
|
|
428
|
-
msgid "
|
429
|
-
|
466
|
+
msgid ""
|
467
|
+
"Join our Hiddify Telegram channel to get the latest updates on Hiddify."
|
468
|
+
msgstr ""
|
469
|
+
"Join our Hiddify Telegram channel to get the latest updates on Hiddify."
|
430
470
|
|
431
|
-
msgid "
|
432
|
-
msgstr "
|
471
|
+
msgid "Last Online"
|
472
|
+
msgstr "Last Connection"
|
433
473
|
|
434
|
-
msgid "
|
435
|
-
msgstr "
|
474
|
+
msgid "Link is changed!"
|
475
|
+
msgstr "ℹ️ Link is Changed!"
|
436
476
|
|
437
|
-
msgid "
|
438
|
-
msgstr ""
|
439
|
-
"This Option Will Simulate Different Browsers, Therefore, GFW Can Not Detect "
|
440
|
-
"Your Browsing"
|
477
|
+
msgid "Linux"
|
478
|
+
msgstr "Linux"
|
441
479
|
|
442
|
-
msgid "
|
443
|
-
msgstr "
|
480
|
+
msgid "Max Active Users"
|
481
|
+
msgstr "Max Active Users"
|
444
482
|
|
445
|
-
msgid "
|
446
|
-
msgstr ""
|
447
|
-
"To add Telegram bot feature. you need to create a bot with @BotFather and "
|
448
|
-
"enter the API code in this field"
|
483
|
+
msgid "Max IPs"
|
484
|
+
msgstr "Max IPs"
|
449
485
|
|
450
|
-
msgid "
|
451
|
-
msgstr "
|
486
|
+
msgid "Max Users"
|
487
|
+
msgstr "Max Users"
|
452
488
|
|
453
|
-
msgid "
|
454
|
-
msgstr "
|
489
|
+
msgid "Mode"
|
490
|
+
msgstr "Mode"
|
455
491
|
|
456
|
-
msgid "
|
457
|
-
msgstr "
|
492
|
+
msgid "Month Usage"
|
493
|
+
msgstr "Monthly"
|
458
494
|
|
459
|
-
msgid "
|
460
|
-
msgstr ""
|
461
|
-
"In this part, there are some advanced configs that are better not be changed"
|
462
|
-
" unless you are an advanced user"
|
495
|
+
msgid "More Applications"
|
496
|
+
msgstr "More Applications"
|
463
497
|
|
464
|
-
msgid "
|
465
|
-
msgstr "
|
498
|
+
msgid "Network"
|
499
|
+
msgstr "Network"
|
466
500
|
|
467
|
-
msgid "
|
468
|
-
msgstr "
|
501
|
+
msgid "New"
|
502
|
+
msgstr "New"
|
469
503
|
|
470
|
-
msgid "
|
471
|
-
msgstr "
|
504
|
+
msgid "No children!"
|
505
|
+
msgstr "No Children"
|
472
506
|
|
473
|
-
msgid "
|
474
|
-
msgstr "
|
507
|
+
msgid "Note"
|
508
|
+
msgstr "📝 Note"
|
475
509
|
|
476
|
-
msgid "
|
477
|
-
msgstr "
|
510
|
+
msgid "Offline more than 1 day"
|
511
|
+
msgstr "Offline More Than 1 Day"
|
478
512
|
|
479
|
-
msgid "
|
480
|
-
msgstr "
|
513
|
+
msgid "Offline more than 1 hour"
|
514
|
+
msgstr "Offline More Than 1 Hour"
|
481
515
|
|
482
|
-
msgid "
|
483
|
-
msgstr "
|
516
|
+
msgid "Offline more than 1 week"
|
517
|
+
msgstr "Offline More Than 1 Week"
|
484
518
|
|
485
|
-
msgid "
|
486
|
-
msgstr "
|
519
|
+
msgid "Ok"
|
520
|
+
msgstr "Ok"
|
487
521
|
|
488
|
-
msgid "
|
489
|
-
msgstr "
|
522
|
+
msgid "Online Users"
|
523
|
+
msgstr "Online Users"
|
490
524
|
|
491
|
-
msgid "
|
492
|
-
msgstr "
|
525
|
+
msgid "Only Blocked and Local websites"
|
526
|
+
msgstr "☑️ Only Blocked and Local Websites"
|
493
527
|
|
494
|
-
msgid "
|
495
|
-
msgstr "
|
528
|
+
msgid "Only for sublink?"
|
529
|
+
msgstr "🌍 Use Only for Subscription Link"
|
496
530
|
|
497
|
-
msgid "
|
498
|
-
msgstr "
|
531
|
+
msgid "Oops! Something went wrong."
|
532
|
+
msgstr "Oops! something went wrong."
|
499
533
|
|
500
|
-
msgid "
|
501
|
-
msgstr "
|
534
|
+
msgid "Open in Application"
|
535
|
+
msgstr "Open in Application"
|
502
536
|
|
503
|
-
msgid "
|
504
|
-
msgstr "
|
537
|
+
msgid "Others"
|
538
|
+
msgstr "🇺🇳 Others"
|
505
539
|
|
506
|
-
msgid "
|
507
|
-
msgstr "
|
540
|
+
msgid "Override Root Admin"
|
541
|
+
msgstr "🔁 Override Owner in Backup"
|
508
542
|
|
509
|
-
msgid "
|
510
|
-
msgstr ""
|
511
|
-
"Please follow <a href='https://github.com/hiddify/hiddify-config/wiki/Get-"
|
512
|
-
"Cloudflare-API' target='_blank'>the instruction</a> and paste the Cloudflare"
|
513
|
-
" API Key"
|
543
|
+
msgid "Owner can not be deleted!"
|
544
|
+
msgstr "Owner can not be deleted!"
|
514
545
|
|
515
|
-
msgid "
|
516
|
-
msgstr "
|
546
|
+
msgid "Package Days"
|
547
|
+
msgstr "📆 Package Days"
|
517
548
|
|
518
|
-
msgid "
|
519
|
-
msgstr ""
|
520
|
-
"Specify The Proxy Path. It is important especially if you are using HTTP and"
|
521
|
-
" VMess"
|
549
|
+
msgid "Package ended!"
|
550
|
+
msgstr "Package Ended"
|
522
551
|
|
523
|
-
msgid "
|
524
|
-
msgstr "
|
552
|
+
msgid "Package not started yet."
|
553
|
+
msgstr "Package Not Started Yet"
|
525
554
|
|
526
|
-
msgid "
|
527
|
-
msgstr ""
|
528
|
-
"🔝 Increases browsing speed. To get the Key, go to the <a href='https://1.1.1.1/'> 1.1.1.1 </a>\n"
|
529
|
-
"app and purchase the original KEY from Cloudflare\n"
|
530
|
-
"<br>\n"
|
531
|
-
"⚠️ If there is an error in this Key, the WARP will be disabled."
|
555
|
+
msgid "Panel Link"
|
556
|
+
msgstr "➖ Panel Link"
|
532
557
|
|
533
|
-
msgid "
|
534
|
-
msgstr "
|
558
|
+
msgid "Parent Panel"
|
559
|
+
msgstr "Parent Panel"
|
535
560
|
|
536
|
-
msgid "
|
537
|
-
msgstr ""
|
538
|
-
"✴️ All : All Sites use Warp IPs in outbound\n"
|
539
|
-
"<br>\n"
|
540
|
-
"☑️ Only Domestic and Blocked Sites: Only Domestic Sites and websites like Google, Spotify, Netflix, OpenAi, IPinfo.io use Warp IPs in outbound"
|
561
|
+
msgid "Please Wait..."
|
562
|
+
msgstr "Please Wait..."
|
541
563
|
|
542
|
-
msgid "
|
543
|
-
msgstr "
|
564
|
+
msgid "Please click on %(install)s to save the user page."
|
565
|
+
msgstr "Click %(install)s to save the User Page."
|
544
566
|
|
545
|
-
msgid "
|
567
|
+
msgid ""
|
568
|
+
"Please connect your telegram account to the panel to be informed about "
|
569
|
+
"latest news."
|
546
570
|
msgstr ""
|
547
|
-
"
|
548
|
-
"
|
549
|
-
"For example, if you have a problem with captcha on Google, it might be fixed this way."
|
550
|
-
|
551
|
-
msgid "config.reality_short_ids.label"
|
552
|
-
msgstr "🆔 Short IDs"
|
571
|
+
"Please connect your Telegram account to the panel to be informed about "
|
572
|
+
"latest news"
|
553
573
|
|
554
|
-
msgid "
|
555
|
-
|
574
|
+
msgid ""
|
575
|
+
"Please connect your telegram accout to the panel to be informed about latest"
|
576
|
+
" news."
|
577
|
+
msgstr ""
|
578
|
+
"Please connect your Telegram account to the panel to know the latest Status "
|
579
|
+
"of your Subscription"
|
556
580
|
|
557
|
-
msgid "
|
558
|
-
msgstr "
|
581
|
+
msgid "Please create an issue on Github."
|
582
|
+
msgstr "Please create an issue on Github"
|
559
583
|
|
560
|
-
msgid "
|
584
|
+
msgid ""
|
585
|
+
"Please note that your panel can be accessed only via <a "
|
586
|
+
"href=\"%(adminlink)s\" class=\"btn btn-primary copy-"
|
587
|
+
"link\">%(adminlink)s</a>. Please save this link."
|
561
588
|
msgstr ""
|
562
|
-
"
|
563
|
-
"
|
564
|
-
|
565
|
-
msgid "config.reality_private_key.label"
|
566
|
-
msgstr "🔑 Private Key"
|
589
|
+
"Please note that your panel can be accessed only via the following link. please save this link.\n"
|
590
|
+
"<p><a href='%(adminlink)s' class='btn btn-secondary copy-link'><i class='fa-solid fa-copy'></i></a>\n"
|
591
|
+
"<a href='%(adminlink)s' class='copy-link' style='word-break: break-all;'>%(adminlink)s</a></p> "
|
567
592
|
|
568
|
-
msgid "
|
569
|
-
msgstr "
|
593
|
+
msgid "Please select at least one file."
|
594
|
+
msgstr "Please select at least one file."
|
570
595
|
|
571
|
-
msgid "
|
572
|
-
msgstr "
|
596
|
+
msgid "Please select at least one record."
|
597
|
+
msgstr "Please select at least one record."
|
573
598
|
|
574
|
-
msgid "
|
575
|
-
msgstr "
|
599
|
+
msgid "Please select at least one user"
|
600
|
+
msgstr "Please select at least one user"
|
576
601
|
|
577
|
-
msgid "
|
578
|
-
msgstr "
|
602
|
+
msgid "Please select one of the following applications:"
|
603
|
+
msgstr ""
|
604
|
+
"📍 Please select one of the following applications:\n"
|
605
|
+
"<br />\n"
|
606
|
+
"<br />"
|
579
607
|
|
580
|
-
msgid "
|
581
|
-
msgstr "
|
608
|
+
msgid "Please type your message to send to the telegram:"
|
609
|
+
msgstr "✏️ Please write your message to send to the Telegram:"
|
582
610
|
|
583
|
-
msgid "
|
584
|
-
|
611
|
+
msgid ""
|
612
|
+
"Please understand that parent panel is under test and the plan and the "
|
613
|
+
"condition of use maybe change at anytime."
|
614
|
+
msgstr ""
|
615
|
+
"Please understand that parent Panel is under test and the plan and the "
|
616
|
+
"condition of use maybe change at anytime."
|
585
617
|
|
586
|
-
msgid "
|
587
|
-
msgstr "
|
618
|
+
msgid "Please wait "
|
619
|
+
msgstr "Please Wait "
|
588
620
|
|
589
|
-
msgid "
|
590
|
-
msgstr "
|
621
|
+
msgid "Port is already used! in"
|
622
|
+
msgstr "Port is Already Used in:"
|
591
623
|
|
592
|
-
msgid "
|
624
|
+
msgid "Premium Description"
|
593
625
|
msgstr ""
|
594
|
-
"
|
595
|
-
"
|
626
|
+
"Hiddify Manager Is Made For Non-Commercial Use. But If You Use This Panel Commercially, Please Help The Project Grow By Donating. <br/>\n"
|
627
|
+
"In Exchange For Your Financial Support, We Also Provide Special Facilities For Your Commercial Product.\n"
|
628
|
+
"<br/>\n"
|
629
|
+
"<br/>\n"
|
630
|
+
"Such as:\n"
|
631
|
+
"<ul><li>\n"
|
632
|
+
"<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"
|
633
|
+
"<li>Possibility Of Displaying Your Brand In The Panel</li>\n"
|
634
|
+
"<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"
|
635
|
+
"</li>\n"
|
636
|
+
"<li>\n"
|
637
|
+
"The Possibility Of Using The Telegram Bot\n"
|
638
|
+
"</li>\n"
|
639
|
+
"<li>\n"
|
640
|
+
"Ability To Change Proxy Names\n"
|
641
|
+
"</li>\n"
|
642
|
+
"</ul>\n"
|
643
|
+
"\n"
|
644
|
+
"Please Contact <a href='tg://resolve?domain=HiddifyCommercial'>@HiddifyCommercial</a> After Donating.\n"
|
645
|
+
"Send a Message To Get a Special Version for business users."
|
596
646
|
|
597
|
-
msgid "
|
598
|
-
msgstr "
|
647
|
+
msgid "ProxyPath is already used! use different proxy path"
|
648
|
+
msgstr "ProxyPath is already used! use different proxy path"
|
599
649
|
|
600
|
-
msgid "
|
601
|
-
msgstr "
|
650
|
+
msgid "QR code"
|
651
|
+
msgstr "🧾 QR Code"
|
602
652
|
|
603
|
-
msgid "
|
604
|
-
msgstr "
|
653
|
+
msgid "QRCode"
|
654
|
+
msgstr "<i class='fa-solid fa-qrcode'></i> QRCode"
|
605
655
|
|
606
|
-
msgid "
|
607
|
-
msgstr "
|
656
|
+
msgid "RAM"
|
657
|
+
msgstr "RAM"
|
608
658
|
|
609
|
-
msgid "
|
610
|
-
msgstr "
|
659
|
+
msgid "REALITY Fallback domain is not compaitble with server names!"
|
660
|
+
msgstr "REALITY Fallback Domain is not compaitble with Server names!"
|
611
661
|
|
612
|
-
msgid "
|
613
|
-
msgstr "
|
662
|
+
msgid "Release"
|
663
|
+
msgstr "✅ Release"
|
614
664
|
|
615
|
-
msgid "
|
616
|
-
msgstr "
|
665
|
+
msgid "Remaining: "
|
666
|
+
msgstr "Package Ends"
|
617
667
|
|
618
|
-
msgid "
|
619
|
-
msgstr "
|
668
|
+
msgid "Remote nodes are not supported yet!"
|
669
|
+
msgstr "Remote nodes are not supported yet!"
|
620
670
|
|
621
|
-
msgid "
|
622
|
-
msgstr "
|
671
|
+
msgid "Rename File"
|
672
|
+
msgstr "Rename File"
|
623
673
|
|
624
|
-
msgid "
|
625
|
-
msgstr ""
|
626
|
-
"You can Connect to the Central Panel to define only one user and the usage "
|
627
|
-
"of all Servers will be added cumulatively."
|
674
|
+
msgid "Reset Filters"
|
675
|
+
msgstr "Reset Filters"
|
628
676
|
|
629
|
-
msgid "
|
630
|
-
msgstr "
|
677
|
+
msgid "Reset Usage Time:"
|
678
|
+
msgstr "Traffic usage reset time:"
|
631
679
|
|
632
|
-
msgid "
|
633
|
-
msgstr "
|
680
|
+
msgid "Reset every month"
|
681
|
+
msgstr "Monthly"
|
634
682
|
|
635
|
-
msgid "
|
636
|
-
msgstr "
|
683
|
+
msgid "Reset package days"
|
684
|
+
msgstr "📆 Reset Package's Days"
|
637
685
|
|
638
|
-
msgid "
|
639
|
-
msgstr "
|
686
|
+
msgid "Reset package usage"
|
687
|
+
msgstr "⏳ Reset Package's Usage"
|
640
688
|
|
641
|
-
msgid "
|
642
|
-
msgstr "
|
689
|
+
msgid "Restore"
|
690
|
+
msgstr "♻️ Restore"
|
643
691
|
|
644
|
-
msgid "
|
645
|
-
msgstr "
|
692
|
+
msgid "Restore Domain"
|
693
|
+
msgstr "🌏 Restore Domain"
|
646
694
|
|
647
|
-
msgid "
|
648
|
-
msgstr "
|
695
|
+
msgid "Restore Domain description"
|
696
|
+
msgstr "Select this option to restore your domains"
|
649
697
|
|
650
|
-
msgid "
|
651
|
-
msgstr ""
|
652
|
-
"Comma separated integers indicating the ports to use as KCP connection.\n"
|
698
|
+
msgid "Restore File"
|
699
|
+
msgstr "Restore File"
|
653
700
|
|
654
|
-
msgid "
|
655
|
-
msgstr "
|
701
|
+
msgid "Restore File Description"
|
702
|
+
msgstr "Choose the downloaded restore file"
|
656
703
|
|
657
|
-
msgid "
|
658
|
-
msgstr "
|
704
|
+
msgid "Restore Settings"
|
705
|
+
msgstr "⚙️ Restore Settings"
|
659
706
|
|
660
|
-
msgid "
|
661
|
-
msgstr "
|
707
|
+
msgid "Restore Settings description"
|
708
|
+
msgstr "Restore all settings description"
|
662
709
|
|
663
|
-
msgid "
|
664
|
-
msgstr ""
|
665
|
-
"For displaying resources. uses your Server's CPU but it is not too much."
|
710
|
+
msgid "Restore Users"
|
711
|
+
msgstr "👥 Restore Users"
|
666
712
|
|
667
|
-
msgid "
|
668
|
-
msgstr "
|
713
|
+
msgid "Restore Users description"
|
714
|
+
msgstr "Select this option to restore All Users"
|
669
715
|
|
670
|
-
msgid "
|
671
|
-
msgstr "
|
716
|
+
msgid "Root"
|
717
|
+
msgstr "Root"
|
672
718
|
|
673
|
-
msgid "
|
674
|
-
msgstr "
|
719
|
+
msgid "Save"
|
720
|
+
msgstr "Save"
|
675
721
|
|
676
|
-
msgid "
|
677
|
-
msgstr "
|
722
|
+
msgid "Save & Add More"
|
723
|
+
msgstr "Save & Add More"
|
678
724
|
|
679
|
-
msgid "
|
680
|
-
msgstr "
|
725
|
+
msgid "Save Link"
|
726
|
+
msgstr "Save Link"
|
681
727
|
|
682
|
-
msgid "
|
683
|
-
msgstr "
|
728
|
+
msgid "Select all records"
|
729
|
+
msgstr "Select all records"
|
684
730
|
|
685
|
-
msgid "
|
686
|
-
msgstr "
|
731
|
+
msgid "Select record"
|
732
|
+
msgstr "Select record"
|
687
733
|
|
688
|
-
msgid "
|
689
|
-
msgstr ""
|
690
|
-
"ShadowsocksR is a Fork of the original Shadowsocks project, claimed to be "
|
691
|
-
"superior in terms of security and stability. Not tested. Not support "
|
692
|
-
"accounting."
|
734
|
+
msgid "Seleted Users"
|
735
|
+
msgstr "Seleted Users"
|
693
736
|
|
694
|
-
msgid "
|
695
|
-
msgstr "
|
737
|
+
msgid "Send Message to User's Telegram"
|
738
|
+
msgstr "📣 Send Message to User's Telegram"
|
696
739
|
|
697
|
-
msgid "
|
698
|
-
msgstr ""
|
699
|
-
"Please use a well known domain In your data center. for example, If you are "
|
700
|
-
"In Azure data center, microsoft-update.com Is a good example"
|
740
|
+
msgid "Sending"
|
741
|
+
msgstr "Sending..."
|
701
742
|
|
702
|
-
msgid "
|
703
|
-
msgstr "
|
743
|
+
msgid "Should be a valid domain"
|
744
|
+
msgstr "Should be a valid domain"
|
704
745
|
|
705
|
-
msgid "
|
706
|
-
msgstr "
|
746
|
+
msgid "Should be a valid uuid"
|
747
|
+
msgstr "Should be a valid uuid"
|
707
748
|
|
708
|
-
msgid "
|
709
|
-
msgstr "
|
749
|
+
msgid "Show Domains"
|
750
|
+
msgstr "Show Configs of Domains"
|
710
751
|
|
711
|
-
msgid "
|
712
|
-
msgstr "
|
752
|
+
msgid "Simplifies the process of employing the link elsewhere."
|
753
|
+
msgstr "Simplifies the process of employing the link elsewhere"
|
713
754
|
|
714
|
-
msgid "
|
715
|
-
msgstr "
|
755
|
+
msgid "SingBox"
|
756
|
+
msgstr "📦 SingBox"
|
716
757
|
|
717
|
-
msgid "
|
718
|
-
msgstr "
|
758
|
+
msgid "Sort by %(name)s"
|
759
|
+
msgstr "Sort by %(name)s"
|
719
760
|
|
720
|
-
msgid "
|
721
|
-
msgstr "
|
722
|
-
|
723
|
-
msgid "config.path_v2ray.description"
|
724
|
-
msgstr "Set V2Ray Configs Path"
|
725
|
-
|
726
|
-
msgid "config.path_ss.label"
|
727
|
-
msgstr "Shadowsocks Path"
|
728
|
-
|
729
|
-
msgid "config.path_ss.description"
|
730
|
-
msgstr "Shadowsocks Path in the Links"
|
731
|
-
|
732
|
-
msgid "config.dbvalues.label"
|
733
|
-
msgstr "-"
|
734
|
-
|
735
|
-
msgid "config.dbvalues.description"
|
736
|
-
msgstr "-"
|
761
|
+
msgid "Start Date"
|
762
|
+
msgstr "Start Date"
|
737
763
|
|
738
|
-
msgid "
|
739
|
-
msgstr "
|
764
|
+
msgid "Status"
|
765
|
+
msgstr "Status"
|
740
766
|
|
741
|
-
msgid "
|
742
|
-
msgstr "
|
767
|
+
msgid "Submit"
|
768
|
+
msgstr "Submit"
|
743
769
|
|
744
|
-
msgid "
|
745
|
-
msgstr "
|
770
|
+
msgid "Success"
|
771
|
+
msgstr "Success"
|
746
772
|
|
747
|
-
msgid "
|
773
|
+
msgid ""
|
774
|
+
"Success! Please wait around 4 minutes to make sure everything is updated. "
|
775
|
+
"During this time, please save your proxy links which are:"
|
748
776
|
msgstr ""
|
749
|
-
"
|
750
|
-
"
|
751
|
-
"⚠️ It is working in Hiddify Next. "
|
752
|
-
|
753
|
-
msgid "config.wireguard_port.label"
|
754
|
-
msgstr "Wireguard Port"
|
777
|
+
"⚠️ Please wait about 5 minutes to make sure everything is updated. during "
|
778
|
+
"this time, please copy and save your Proxy links which are:"
|
755
779
|
|
756
|
-
msgid "
|
757
|
-
|
780
|
+
msgid ""
|
781
|
+
"Success! Please wait around 5 minutes to make sure everything is updated."
|
782
|
+
msgstr ""
|
783
|
+
"✔️ Success! Please Wait around 5 minutes to make sure everything is updated"
|
758
784
|
|
759
|
-
msgid "
|
760
|
-
msgstr "
|
785
|
+
msgid "Telegram Bot"
|
786
|
+
msgstr "Telegram Bot"
|
761
787
|
|
762
|
-
msgid "
|
763
|
-
msgstr "
|
788
|
+
msgid "Temporary Short Link"
|
789
|
+
msgstr "⏱️ Temporary Short Link"
|
764
790
|
|
765
|
-
msgid "
|
766
|
-
msgstr "
|
791
|
+
msgid "The action done successfully. You can now leave this page."
|
792
|
+
msgstr "✅ The Action Done Successfully. You can now leave this page"
|
767
793
|
|
768
|
-
msgid "
|
769
|
-
msgstr "
|
794
|
+
msgid "The message has been sent."
|
795
|
+
msgstr "The message has been sent."
|
770
796
|
|
771
|
-
msgid "
|
772
|
-
msgstr "
|
797
|
+
msgid "The message was not sent to"
|
798
|
+
msgstr "The message was not sent to"
|
773
799
|
|
774
|
-
msgid "
|
775
|
-
msgstr "
|
800
|
+
msgid "The name shown in the configs for this domain."
|
801
|
+
msgstr "The name that will be shown in the Configs for this Domain."
|
776
802
|
|
777
|
-
msgid "
|
778
|
-
|
803
|
+
msgid ""
|
804
|
+
"The page has been moved to a new link. Please copy and save the new link."
|
805
|
+
msgstr ""
|
806
|
+
"The page has been moved to a new link. Please copy and save the new link."
|
779
807
|
|
780
|
-
msgid "
|
781
|
-
|
808
|
+
msgid ""
|
809
|
+
"This can be used for giving your users a permanent non blockable links."
|
810
|
+
msgstr ""
|
811
|
+
"This can be used for giving your Users a permanent non Blockable Links."
|
782
812
|
|
783
|
-
msgid "
|
784
|
-
msgstr "
|
813
|
+
msgid "This domain does not exist in the panel!"
|
814
|
+
msgstr "This Domain does not exist in the Panel !"
|
785
815
|
|
786
|
-
msgid "
|
816
|
+
msgid ""
|
817
|
+
"This version of hiddify panel is outdated. Please update it from admin area."
|
787
818
|
msgstr ""
|
788
|
-
"This
|
789
|
-
"
|
819
|
+
"⚠️ This version of Hiddify Manager is outdated. please Update it from Admin "
|
820
|
+
"area"
|
790
821
|
|
791
|
-
msgid "
|
792
|
-
msgstr "
|
822
|
+
msgid "Today Usage"
|
823
|
+
msgstr "Today"
|
793
824
|
|
794
|
-
msgid "
|
795
|
-
msgstr "
|
825
|
+
msgid "Too many Connected IPs"
|
826
|
+
msgstr "Too Many Connected IPs"
|
796
827
|
|
797
|
-
msgid "
|
798
|
-
msgstr "
|
828
|
+
msgid "Total Usage"
|
829
|
+
msgstr "Total Usage"
|
799
830
|
|
800
|
-
msgid "
|
801
|
-
msgstr ""
|
802
|
-
"This is completely different from your original SSH server. It is a "
|
803
|
-
"dedicated program."
|
831
|
+
msgid "Turn of VPN"
|
832
|
+
msgstr "Turn Off VPN"
|
804
833
|
|
805
|
-
msgid "
|
806
|
-
msgstr "
|
834
|
+
msgid "Unified link for all application."
|
835
|
+
msgstr "One-click setup link for all applications (recommended)"
|
807
836
|
|
808
|
-
msgid "
|
809
|
-
msgstr "
|
837
|
+
msgid "Upload File"
|
838
|
+
msgstr "Upload File"
|
810
839
|
|
811
|
-
msgid "
|
812
|
-
msgstr "
|
840
|
+
msgid "Use HiddifyNext:"
|
841
|
+
msgstr "Use HiddifyNext:"
|
813
842
|
|
814
|
-
msgid "
|
815
|
-
msgstr ""
|
816
|
-
"☢️ XRay : Is a Complete Core\n"
|
817
|
-
"<br>\n"
|
818
|
-
"📦 Singbox : Developed by SagerNet. It is also a good core"
|
843
|
+
msgid "User activated!"
|
844
|
+
msgstr "User Activated"
|
819
845
|
|
820
|
-
msgid "
|
821
|
-
msgstr "
|
846
|
+
msgid "User is inactive"
|
847
|
+
msgstr "User Is Inactive"
|
822
848
|
|
823
|
-
msgid "
|
849
|
+
msgid ""
|
850
|
+
"User usage will be updated every 6 minutes. To update it now click <a "
|
851
|
+
"href=\"%(link)s\" class=\"btn btn-info\">here</a>"
|
824
852
|
msgstr ""
|
825
|
-
"
|
826
|
-
|
827
|
-
msgid "config.dns_server.label"
|
828
|
-
msgstr "🖥 DNS Server"
|
853
|
+
"User usage will be updated every 6 minutes. To update it now click <a "
|
854
|
+
"href=\"%(link)s\" class=\"btn btn-info\">here</a>"
|
829
855
|
|
830
|
-
msgid "
|
856
|
+
msgid "V2rayNG"
|
831
857
|
msgstr ""
|
832
|
-
"
|
833
|
-
"
|
834
|
-
"
|
835
|
-
|
836
|
-
msgid "config.reality_port.label"
|
837
|
-
msgstr "↔️ Direct Reality Port"
|
858
|
+
"Alternative v2rayNG <button class='btn btn-sm btn-default' onclick='show_video('android-v2rayng')'><i class='fa-solid fa-question'></i> </button>\n"
|
859
|
+
"<br />\n"
|
860
|
+
"<br />"
|
838
861
|
|
839
|
-
msgid "
|
862
|
+
msgid "V2rayNG intro"
|
840
863
|
msgstr ""
|
841
|
-
"
|
842
|
-
"
|
843
|
-
|
844
|
-
msgid "config.tls_fragment_enable.label"
|
845
|
-
msgstr "⏯ Enable TLS Fragment"
|
846
|
-
|
847
|
-
msgid "config.tls_fragment_enable.description"
|
848
|
-
msgstr "Under some circumstances, it can bypass the SNI blacklist system"
|
849
|
-
|
850
|
-
msgid "config.tls_fragment_size.label"
|
851
|
-
msgstr "🎚 TLS Fragment Size"
|
852
|
-
|
853
|
-
msgid "config.tls_fragment_size.description"
|
854
|
-
msgstr "The Size of each Packet"
|
855
|
-
|
856
|
-
msgid "config.tls_fragment_sleep.label"
|
857
|
-
msgstr "⏱ TLS Fragment Sleep"
|
858
|
-
|
859
|
-
msgid "config.tls_fragment_sleep.description"
|
860
|
-
msgstr "The time delay between Fragments"
|
864
|
+
"Please install v2rayNG from either of these links: %(dl_link)s %(play_link)s.\n"
|
865
|
+
"Then 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"
|
866
|
+
"<br />"
|
861
867
|
|
862
|
-
msgid "
|
863
|
-
msgstr "
|
868
|
+
msgid "View in Telegram"
|
869
|
+
msgstr "View in Telegram"
|
864
870
|
|
865
|
-
msgid "
|
866
|
-
msgstr "
|
871
|
+
msgid "Want to enjoy more with telegram?"
|
872
|
+
msgstr "ℹ️ Connect Your Account to Telegram"
|
867
873
|
|
868
|
-
msgid "
|
869
|
-
msgstr "
|
874
|
+
msgid "Welcome %(user)s"
|
875
|
+
msgstr "Welcome %(user)s"
|
870
876
|
|
871
|
-
msgid "
|
872
|
-
msgstr "
|
877
|
+
msgid "Welcome to admin bot. Choose your action"
|
878
|
+
msgstr "Welcome to admin bot. Choose your action"
|
873
879
|
|
874
|
-
msgid "
|
875
|
-
msgstr "
|
880
|
+
msgid "Why Going to Premium?"
|
881
|
+
msgstr "Why Going to Premium?"
|
876
882
|
|
877
|
-
msgid "
|
878
|
-
msgstr "
|
883
|
+
msgid "Windows"
|
884
|
+
msgstr "Windows"
|
879
885
|
|
880
|
-
msgid "
|
881
|
-
msgstr "
|
886
|
+
msgid "With selected"
|
887
|
+
msgstr "With selected"
|
882
888
|
|
883
|
-
msgid "
|
884
|
-
msgstr ""
|
885
|
-
"Mux needs compatible clients. Mux in Hiddify Next and singbox are not "
|
886
|
-
"compatible with Xray"
|
889
|
+
msgid "Xray"
|
890
|
+
msgstr "☢️ XRay"
|
887
891
|
|
888
|
-
msgid "
|
889
|
-
msgstr "
|
892
|
+
msgid "Yesterday Usage"
|
893
|
+
msgstr "Yesterday"
|
890
894
|
|
891
|
-
msgid "
|
895
|
+
msgid ""
|
896
|
+
"You can download a json formated of configurations by clicking <a "
|
897
|
+
"href='%(link)s' class='btn btn-primary'>here</a>"
|
892
898
|
msgstr ""
|
893
|
-
"
|
899
|
+
"🔄 Hiddify Manager automatically takes a Backup every 6 Hours. The path of the Backup files on the server: ⬇️\n"
|
894
900
|
"<br>\n"
|
895
|
-
"
|
901
|
+
"/opt/hiddify-manager/hiddify-panel/backup/\n"
|
896
902
|
"<br>\n"
|
897
|
-
"➖ YaMux: Yet Another Multiplexer\n"
|
898
903
|
"<br>\n"
|
899
|
-
"
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
msgid "config.mux_max_connections.description"
|
905
|
-
msgstr "Maximum Connections. Conflict with Max Streams"
|
906
|
-
|
907
|
-
msgid "config.mux_min_streams.label"
|
908
|
-
msgstr "↘️ MUX Min Streams"
|
904
|
+
"<br>\n"
|
905
|
+
"⚠️ You can download a JSON file format of the configurations by clicking on the button below\n"
|
906
|
+
"<br>\n"
|
907
|
+
"<br>\n"
|
908
|
+
"<a href='%(link)s' class='btn btn-primary'>Download Backup File</a>"
|
909
909
|
|
910
|
-
msgid "
|
910
|
+
msgid "You can restore your configs from previously downloaded configs"
|
911
911
|
msgstr ""
|
912
|
-
"
|
912
|
+
"ℹ️ You can restore your configs from previously downloaded backup file"
|
913
913
|
|
914
|
-
msgid "
|
915
|
-
|
914
|
+
msgid ""
|
915
|
+
"You can select the configs with which domains show be shown in the user "
|
916
|
+
"area. If you select all, automatically, all the new domains will be added "
|
917
|
+
"for each users."
|
918
|
+
msgstr ""
|
919
|
+
"For users visit the user area with this domain, Specify they can see the proxies of which domains.\n"
|
920
|
+
"<br>\n"
|
921
|
+
"Suggestion: 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."
|
916
922
|
|
917
|
-
msgid "
|
923
|
+
msgid ""
|
924
|
+
"You have too much users! You can have only %(active)s active users and "
|
925
|
+
"%(total)s users"
|
918
926
|
msgstr ""
|
919
|
-
"
|
927
|
+
"You have too much users! You can have only %(active)s active users and "
|
928
|
+
"%(total)s users"
|
920
929
|
|
921
|
-
msgid "
|
922
|
-
msgstr "
|
930
|
+
msgid "You have used this domain in: "
|
931
|
+
msgstr "You have already used this Domain in: "
|
923
932
|
|
924
|
-
msgid "
|
925
|
-
|
933
|
+
msgid ""
|
934
|
+
"You should visit this page without VPN. Your country=%(your_country)s\n"
|
935
|
+
"expected=%(expected_country)s"
|
936
|
+
msgstr ""
|
937
|
+
"You should visit this page without VPN Your Country =%(your_country)s\n"
|
938
|
+
"Expected=%(expected_country)s"
|
926
939
|
|
927
|
-
msgid "
|
928
|
-
|
940
|
+
msgid ""
|
941
|
+
"Your domains changed. Please do not forget to copy admin links, otherwise "
|
942
|
+
"you can not access to the panel anymore."
|
943
|
+
msgstr ""
|
944
|
+
"⚠️ Your Domains Changed. please do not forget to copy Admin links, otherwise"
|
945
|
+
" you can not access to the panel anymore"
|
929
946
|
|
930
|
-
msgid "
|
931
|
-
|
947
|
+
msgid ""
|
948
|
+
"Your hiddify instance information \n"
|
949
|
+
"Domain: {} \n"
|
950
|
+
"Usage limit: {} GB\n"
|
951
|
+
"Current usage: {} GB\n"
|
952
|
+
"Expires at: {} \n"
|
953
|
+
"Remaining days: {} \n"
|
954
|
+
"\n"
|
955
|
+
"\n"
|
956
|
+
" Happy using 🎉 🎉 🎉 \n"
|
957
|
+
msgstr ""
|
958
|
+
"Your Hiddify instance information \n"
|
959
|
+
"Domain: {} \n"
|
960
|
+
"Usage Limit: {} GB\n"
|
961
|
+
"Current Usage: {} GB\n"
|
962
|
+
"Expires at: {} \n"
|
963
|
+
"Remaining Days: {} \n"
|
964
|
+
"\n"
|
965
|
+
"\n"
|
966
|
+
"Good Luck! 🎉 🎉 🎉 \n"
|
932
967
|
|
933
|
-
msgid "
|
934
|
-
|
968
|
+
msgid ""
|
969
|
+
"[Admin only visible message:] You can change this message from settings"
|
970
|
+
msgstr "[Admin Exclusive Message]: Customizable via Settings"
|
935
971
|
|
936
|
-
msgid "
|
937
|
-
msgstr "
|
972
|
+
msgid "actions"
|
973
|
+
msgstr "Actions"
|
938
974
|
|
939
|
-
msgid "
|
940
|
-
msgstr "
|
975
|
+
msgid "admin link"
|
976
|
+
msgstr "Admin"
|
941
977
|
|
942
|
-
msgid "
|
943
|
-
msgstr "
|
978
|
+
msgid "admin.Actions:apply_configs"
|
979
|
+
msgstr "Apply Configs"
|
944
980
|
|
945
|
-
msgid "
|
946
|
-
msgstr "
|
981
|
+
msgid "admin.actions.apply_configs"
|
982
|
+
msgstr "Apply Configs"
|
947
983
|
|
948
|
-
msgid "
|
949
|
-
msgstr ""
|
950
|
-
"We use secret proxy path to hide our proxies for the governments and bots"
|
984
|
+
msgid "admin.actions.reinstall"
|
985
|
+
msgstr "Reinstall"
|
951
986
|
|
952
|
-
msgid "
|
953
|
-
msgstr "
|
987
|
+
msgid "admin.actions.reset"
|
988
|
+
msgstr "Restart System"
|
954
989
|
|
955
|
-
msgid "
|
956
|
-
msgstr "
|
990
|
+
msgid "admin.actions.status"
|
991
|
+
msgstr "Status"
|
957
992
|
|
958
|
-
msgid "
|
959
|
-
msgstr "
|
993
|
+
msgid "admin.actions.title"
|
994
|
+
msgstr "Actions"
|
960
995
|
|
961
|
-
msgid "
|
962
|
-
msgstr "
|
996
|
+
msgid "admin.actions.update"
|
997
|
+
msgstr "Update"
|
963
998
|
|
964
|
-
msgid "
|
965
|
-
msgstr "
|
999
|
+
msgid "admin.actions.viewlogs"
|
1000
|
+
msgstr "View Logs"
|
966
1001
|
|
967
|
-
msgid "config.
|
968
|
-
msgstr "
|
1002
|
+
msgid "admin.config.apply_configs"
|
1003
|
+
msgstr "Apply Configs"
|
969
1004
|
|
970
|
-
msgid "config.
|
971
|
-
msgstr "
|
1005
|
+
msgid "admin.config.title"
|
1006
|
+
msgstr "Settings"
|
972
1007
|
|
973
|
-
msgid "
|
974
|
-
msgstr "
|
1008
|
+
msgid "admin.menu.api"
|
1009
|
+
msgstr "API"
|
975
1010
|
|
976
|
-
msgid "
|
977
|
-
msgstr "
|
1011
|
+
msgid "admin.menu.config"
|
1012
|
+
msgstr "Settings"
|
978
1013
|
|
979
|
-
msgid "
|
980
|
-
msgstr "
|
1014
|
+
msgid "admin.menu.domain"
|
1015
|
+
msgstr "Domains"
|
981
1016
|
|
982
|
-
msgid "
|
983
|
-
msgstr "
|
1017
|
+
msgid "admin.menu.home"
|
1018
|
+
msgstr "Dashboard"
|
984
1019
|
|
985
|
-
msgid "
|
986
|
-
msgstr "
|
1020
|
+
msgid "admin.menu.proxy"
|
1021
|
+
msgstr "Proxies"
|
987
1022
|
|
988
|
-
msgid "
|
989
|
-
msgstr "
|
1023
|
+
msgid "admin.menu.proxy_stats"
|
1024
|
+
msgstr "Proxies' Status"
|
990
1025
|
|
991
|
-
msgid "
|
992
|
-
msgstr ""
|
993
|
-
"Shadowsocks 2022 is a secure proxy protocol for TCP and UDP traffic. The "
|
994
|
-
"proxy traffic is indistinguishable from a random byte stream, and therefore "
|
995
|
-
"can circumvent firewalls and Internet censors that rely on DPI (Deep Packet "
|
996
|
-
"Inspection)."
|
1026
|
+
msgid "admin.menu.support"
|
1027
|
+
msgstr "Help"
|
997
1028
|
|
998
|
-
msgid "
|
999
|
-
msgstr "
|
1029
|
+
msgid "admin.menu.telegram"
|
1030
|
+
msgstr "Telegram"
|
1000
1031
|
|
1001
|
-
msgid "
|
1002
|
-
msgstr "
|
1032
|
+
msgid "admin.menu.user"
|
1033
|
+
msgstr "Users"
|
1003
1034
|
|
1004
|
-
msgid "
|
1005
|
-
msgstr "
|
1035
|
+
msgid "admin.proxy.detailed_config"
|
1036
|
+
msgstr "⚙️ Detailed Configs"
|
1006
1037
|
|
1007
|
-
msgid "
|
1008
|
-
msgstr "
|
1038
|
+
msgid "admin.proxy.global_config"
|
1039
|
+
msgstr "⚙️ Global Configs"
|
1009
1040
|
|
1010
|
-
msgid "
|
1011
|
-
msgstr "
|
1041
|
+
msgid "admin.quicksetup.title"
|
1042
|
+
msgstr "Quick Setup"
|
1012
1043
|
|
1013
|
-
msgid "
|
1044
|
+
msgid "admin.quicksetup_intro"
|
1014
1045
|
msgstr ""
|
1015
|
-
"
|
1046
|
+
"Your Server's IPs are: \n"
|
1047
|
+
"<div >\n"
|
1048
|
+
"IPv4: %(ipv4)s <br> IPv6: %(ipv6)s\n"
|
1049
|
+
"</div>\n"
|
1050
|
+
"Set these IPs on your Domain or Subdomain and enter your Domain or Subdomain in the bellow box.\n"
|
1016
1051
|
|
1017
|
-
msgid "
|
1018
|
-
msgstr "
|
1052
|
+
msgid "all"
|
1053
|
+
msgstr "All"
|
1019
1054
|
|
1020
|
-
msgid "
|
1021
|
-
msgstr ""
|
1022
|
-
"gRPC is a modern open source high performance Remote Procedure Call (RPC) "
|
1023
|
-
"framework. It can be used in supported CDNs."
|
1055
|
+
msgid "android"
|
1056
|
+
msgstr "Android"
|
1024
1057
|
|
1025
|
-
msgid "
|
1026
|
-
msgstr "
|
1058
|
+
msgid "app.foxray.description"
|
1059
|
+
msgstr "FoXray Description"
|
1027
1060
|
|
1028
|
-
msgid "
|
1029
|
-
msgstr ""
|
1030
|
-
"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"
|
1031
|
-
"\n"
|
1032
|
-
"⚠️ Not Available in Xray based Clients. Only HiddifyNext, Singbox, and V2fly clients are supported"
|
1061
|
+
msgid "app.foxray.title"
|
1062
|
+
msgstr "FoXray"
|
1033
1063
|
|
1034
|
-
msgid "
|
1035
|
-
msgstr "
|
1064
|
+
msgid "app.hiddify-clash-android.description"
|
1065
|
+
msgstr "app.hiddify-clash-android.description"
|
1036
1066
|
|
1037
|
-
msgid "
|
1038
|
-
msgstr "
|
1067
|
+
msgid "app.hiddify-clash-android.title"
|
1068
|
+
msgstr "Hiddify Clash"
|
1039
1069
|
|
1040
|
-
msgid "
|
1041
|
-
msgstr "
|
1070
|
+
msgid "app.hiddify-clash-desktop.description"
|
1071
|
+
msgstr "app.hiddify-clash-desktop.description"
|
1042
1072
|
|
1043
|
-
msgid "
|
1044
|
-
msgstr "
|
1073
|
+
msgid "app.hiddify-clash-desktop.title"
|
1074
|
+
msgstr "Hiddify Clash"
|
1045
1075
|
|
1046
|
-
msgid "
|
1047
|
-
msgstr "
|
1076
|
+
msgid "app.hiddify.next.description"
|
1077
|
+
msgstr "Hiddify Next Description"
|
1048
1078
|
|
1049
|
-
msgid "
|
1050
|
-
msgstr "
|
1079
|
+
msgid "app.hiddify.next.title"
|
1080
|
+
msgstr "Hiddify Next"
|
1051
1081
|
|
1052
|
-
msgid "
|
1053
|
-
msgstr "
|
1082
|
+
msgid "app.hiddifyn.description"
|
1083
|
+
msgstr "HiddifyN Description"
|
1054
1084
|
|
1055
|
-
msgid "
|
1056
|
-
msgstr ""
|
1057
|
-
"ℹ️ An SSH proxy, also known as an SSH tunnel or SSH port forwarding, is a "
|
1058
|
-
"secure method of creating a secure communication channel between two "
|
1059
|
-
"machines over an insecure network. We have a specific application which is "
|
1060
|
-
"completely different from ssh server and can not execute any commands"
|
1085
|
+
msgid "app.hiddifyn.title"
|
1086
|
+
msgstr "HiddifyN"
|
1061
1087
|
|
1062
|
-
msgid "
|
1063
|
-
msgstr "
|
1088
|
+
msgid "app.hiddifyng.description"
|
1089
|
+
msgstr "HiddifyNG Description"
|
1064
1090
|
|
1065
|
-
msgid "
|
1066
|
-
msgstr ""
|
1067
|
-
"Hysteria is a feature-packed proxy & relay tool optimized for lossy, "
|
1068
|
-
"unstable connections (e.g. satellite networks, congested public Wi-Fi, "
|
1069
|
-
"connecting to foreign servers from China)"
|
1091
|
+
msgid "app.hiddifyng.title"
|
1092
|
+
msgstr "HiddifyNG"
|
1070
1093
|
|
1071
|
-
msgid "
|
1072
|
-
msgstr "
|
1094
|
+
msgid "app.loon.description"
|
1095
|
+
msgstr "Loon Description"
|
1073
1096
|
|
1074
|
-
msgid "
|
1075
|
-
msgstr "
|
1097
|
+
msgid "app.loon.title"
|
1098
|
+
msgstr "Loon"
|
1076
1099
|
|
1077
|
-
msgid "
|
1078
|
-
msgstr "
|
1100
|
+
msgid "app.nekobox.description"
|
1101
|
+
msgstr "app.nekobox.description"
|
1079
1102
|
|
1080
|
-
msgid "
|
1081
|
-
msgstr ""
|
1082
|
-
"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.\n"
|
1083
|
-
"\n"
|
1084
|
-
"⚠️ Accounting is not yet implemented for this protocol."
|
1103
|
+
msgid "app.nekobox.title"
|
1104
|
+
msgstr "NekoBox"
|
1085
1105
|
|
1086
|
-
msgid "
|
1087
|
-
msgstr "
|
1106
|
+
msgid "app.shadowrocket.description"
|
1107
|
+
msgstr "Shadowrocket Description"
|
1088
1108
|
|
1089
|
-
msgid "
|
1090
|
-
msgstr "
|
1109
|
+
msgid "app.shadowrocket.title"
|
1110
|
+
msgstr "Shadowrocket"
|
1091
1111
|
|
1092
|
-
msgid "
|
1093
|
-
msgstr "
|
1112
|
+
msgid "app.stash.description"
|
1113
|
+
msgstr "Stash Description"
|
1094
1114
|
|
1095
|
-
msgid "
|
1096
|
-
msgstr "
|
1115
|
+
msgid "app.stash.title"
|
1116
|
+
msgstr "Stash"
|
1097
1117
|
|
1098
|
-
msgid "
|
1099
|
-
msgstr "
|
1118
|
+
msgid "app.streisand.description"
|
1119
|
+
msgstr "Streisand Description"
|
1100
1120
|
|
1101
|
-
msgid "
|
1102
|
-
msgstr ""
|
1103
|
-
"Domain can not be resolved! There is a problem in your domain. Please check "
|
1104
|
-
"your Domain configurations."
|
1121
|
+
msgid "app.streisand.title"
|
1122
|
+
msgstr "Streisand"
|
1105
1123
|
|
1106
|
-
msgid ""
|
1107
|
-
"
|
1108
|
-
"protocol, it is better to find a domain in the same ASN."
|
1109
|
-
msgstr ""
|
1110
|
-
"Selected Domain for REALITY is not in the same ASN. To better use of the "
|
1111
|
-
"Protocol, it is better to find a Domain in the same ASN"
|
1124
|
+
msgid "app.v2rayng.description"
|
1125
|
+
msgstr "V2RayNG Description"
|
1112
1126
|
|
1113
|
-
msgid "
|
1114
|
-
msgstr "
|
1127
|
+
msgid "app.v2rayng.title"
|
1128
|
+
msgstr "V2RayNG"
|
1115
1129
|
|
1116
|
-
msgid "
|
1117
|
-
msgstr "
|
1118
|
-
|
1119
|
-
msgid ""
|
1120
|
-
"Your domains changed. Please do not forget to copy admin links, otherwise "
|
1121
|
-
"you can not access to the panel anymore."
|
1122
|
-
msgstr ""
|
1123
|
-
"⚠️ Your Domains Changed. please do not forget to copy Admin links, otherwise"
|
1124
|
-
" you can not access to the panel anymore"
|
1125
|
-
|
1126
|
-
msgid ""
|
1127
|
-
"Success! Please wait around 4 minutes to make sure everything is updated. "
|
1128
|
-
"During this time, please save your proxy links which are:"
|
1129
|
-
msgstr ""
|
1130
|
-
"⚠️ Please wait about 5 minutes to make sure everything is updated. during "
|
1131
|
-
"this time, please copy and save your Proxy links which are:"
|
1130
|
+
msgid "auto"
|
1131
|
+
msgstr "Auto"
|
1132
1132
|
|
1133
|
-
msgid "
|
1134
|
-
msgstr "
|
1133
|
+
msgid "auto_cdn_ip"
|
1134
|
+
msgstr "☑️ Automatic CDN IP Selector"
|
1135
1135
|
|
1136
|
-
msgid ""
|
1137
|
-
"
|
1138
|
-
msgstr ""
|
1139
|
-
"✔️ Success! Please Wait around 5 minutes to make sure everything is updated"
|
1136
|
+
msgid "cdn"
|
1137
|
+
msgstr "🔀 CDN (Cloudflare Proxy, ...)"
|
1140
1138
|
|
1141
|
-
msgid "
|
1142
|
-
msgstr "
|
1139
|
+
msgid "child has been removed!"
|
1140
|
+
msgstr "Child Has Been Removed!"
|
1143
1141
|
|
1144
|
-
msgid "
|
1145
|
-
msgstr "
|
1142
|
+
msgid "child.register-failed"
|
1143
|
+
msgstr "child.register-failed"
|
1146
1144
|
|
1147
|
-
msgid "
|
1148
|
-
msgstr "
|
1145
|
+
msgid "child.register-success"
|
1146
|
+
msgstr "child.register-success"
|
1149
1147
|
|
1150
|
-
msgid "
|
1151
|
-
msgstr "
|
1148
|
+
msgid "child.sync-failed"
|
1149
|
+
msgstr "child.sync-failed"
|
1152
1150
|
|
1153
|
-
msgid "
|
1154
|
-
msgstr "
|
1151
|
+
msgid "child.sync-success"
|
1152
|
+
msgstr "child.sync-success"
|
1155
1153
|
|
1156
|
-
msgid "
|
1157
|
-
msgstr "
|
1154
|
+
msgid "clickable copy"
|
1155
|
+
msgstr "Link for Social Media"
|
1158
1156
|
|
1159
|
-
msgid "
|
1160
|
-
msgstr "
|
1157
|
+
msgid "close"
|
1158
|
+
msgstr "Close"
|
1161
1159
|
|
1162
|
-
msgid "
|
1163
|
-
msgstr "
|
1160
|
+
msgid "config.Domain already used"
|
1161
|
+
msgstr "Domain is exist in domains section. Use another Domain"
|
1164
1162
|
|
1165
|
-
msgid "
|
1166
|
-
msgstr "
|
1163
|
+
msgid "config.Invalid brand link"
|
1164
|
+
msgstr ""
|
1165
|
+
"Invalid Link. it should be on this format: (https or http://example.com)"
|
1167
1166
|
|
1168
|
-
msgid "
|
1169
|
-
msgstr "
|
1167
|
+
msgid "config.Invalid domain"
|
1168
|
+
msgstr "Error! Invalid Domain. The Domain Format is www.google.com"
|
1170
1169
|
|
1171
|
-
msgid "
|
1172
|
-
msgstr "
|
1170
|
+
msgid "config.Invalid port"
|
1171
|
+
msgstr "Invalid Port. it should be comma separated Integer e.g. 2052,2053"
|
1173
1172
|
|
1174
|
-
msgid "
|
1175
|
-
msgstr ""
|
1176
|
-
"<h4>Configure DoH on your browser</h4>\n"
|
1177
|
-
" There are several browsers compatible with DNS over HTTPS (DoH). This protocol lets\n"
|
1178
|
-
" you encrypt your connection to 1.1.1.1 in order to protect your DNS queries from privacy intrusions and tampering.\n"
|
1179
|
-
"\n"
|
1180
|
-
" Some browsers might already have this setting enabled.\n"
|
1181
|
-
"<br />\n"
|
1182
|
-
" <h5>Mozilla Firefox</h5>\n"
|
1183
|
-
" 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"
|
1184
|
-
"<br />\n"
|
1185
|
-
" <h5>Google Chrome</h5>\n"
|
1186
|
-
" Select the <b>three-dot</b> menu in your browser > <b>Settings</b>.\n"
|
1187
|
-
" Select <b>Privacy and security</b> > <b>Security</b>.\n"
|
1188
|
-
" Scroll down and enable <b>Use secure DNS</b>.\n"
|
1189
|
-
"<br />\n"
|
1190
|
-
" <h5>Microsoft Edge</h5>\n"
|
1191
|
-
" Select the <b>three-dot</b> menu in your browser > <b>Settings</b>.\n"
|
1192
|
-
" Select <b>Privacy, Search, and Services</b>, and scroll down to <b>Security</b>.\n"
|
1193
|
-
" Enable <b>Use secure DNS</b>.\n"
|
1194
|
-
" Select Choose a service provider."
|
1173
|
+
msgid "config.Invalid proxy path"
|
1174
|
+
msgstr "Invalid Proxy Path. It should be ASCI string (a-z A-Z 0-9)"
|
1195
1175
|
|
1196
|
-
msgid "
|
1197
|
-
msgstr "
|
1176
|
+
msgid "config.Invalid telegram bot token"
|
1177
|
+
msgstr "Invalid Telegram Bot Token"
|
1198
1178
|
|
1199
|
-
msgid "
|
1200
|
-
msgstr "
|
1179
|
+
msgid "config.Invalid! The pattern is number-number"
|
1180
|
+
msgstr "⚠️ The Pattern Is Number-Number ⚠️"
|
1201
1181
|
|
1202
|
-
msgid "
|
1203
|
-
msgstr "
|
1182
|
+
msgid "config.Invalid! it should be a number only"
|
1183
|
+
msgstr "⚠️ It Should Be a Number Only ⚠️"
|
1204
1184
|
|
1205
|
-
msgid "
|
1206
|
-
msgstr "
|
1185
|
+
msgid "config.admin.description"
|
1186
|
+
msgstr "Admin section is for configuring admin related settings"
|
1207
1187
|
|
1208
|
-
msgid "
|
1209
|
-
msgstr "
|
1188
|
+
msgid "config.admin.label"
|
1189
|
+
msgstr "Admin Settings"
|
1210
1190
|
|
1211
|
-
msgid "
|
1212
|
-
msgstr "
|
1191
|
+
msgid "config.admin_lang.description"
|
1192
|
+
msgstr "Choose Language For Admin Area"
|
1213
1193
|
|
1214
|
-
msgid "
|
1215
|
-
msgstr "
|
1194
|
+
msgid "config.admin_lang.label"
|
1195
|
+
msgstr "🗺️ Admin Panel Language"
|
1216
1196
|
|
1217
|
-
msgid "
|
1218
|
-
msgstr "
|
1197
|
+
msgid "config.admin_secret.description"
|
1198
|
+
msgstr "Admin secret will be used for accessing admin panel"
|
1219
1199
|
|
1220
|
-
msgid "
|
1221
|
-
msgstr "
|
1200
|
+
msgid "config.admin_secret.label"
|
1201
|
+
msgstr "Admin Secret"
|
1222
1202
|
|
1223
|
-
msgid "
|
1203
|
+
msgid "config.advanced.description"
|
1224
1204
|
msgstr ""
|
1225
|
-
"
|
1226
|
-
"
|
1227
|
-
"<!--\n"
|
1228
|
-
"<div class='callout callout-danger'>\n"
|
1229
|
-
" <b>Update Hiddify Android to Version 0.14</b>\n"
|
1230
|
-
"</div>-->\n"
|
1231
|
-
"<details>\n"
|
1232
|
-
"<summary>Why Hiddify Android?</summary>\n"
|
1233
|
-
"<div class='callout callout-info'>\n"
|
1234
|
-
"\n"
|
1235
|
-
" Hiddify Android is an Open Source Fork Of Clash That Supports More Protocols.\n"
|
1236
|
-
" <br>\n"
|
1237
|
-
" It's Source Codes Exist in\n"
|
1238
|
-
" <a href='https://github.com/hiddify/HiddifyProxyAndroid'>GitHub</a>.\n"
|
1239
|
-
" \n"
|
1240
|
-
" <br>\n"
|
1241
|
-
" Therefore, it is safe.\n"
|
1242
|
-
"\n"
|
1243
|
-
" <details>\n"
|
1244
|
-
" <summary>Alternative: Normal Clash</summary>\n"
|
1245
|
-
" <div class='btn-group'>\n"
|
1246
|
-
" <a href='https://play.google.com/store/apps/details?id=com.github.kr328.clash'\n"
|
1247
|
-
" class='btn btn-warning orig-link'>Clash in Google Play</a>\n"
|
1248
|
-
" </div>\n"
|
1249
|
-
" <div class='btn-group'>\n"
|
1250
|
-
" <a href='/{{hconfigs[ConfigEnum.proxy_path]}}/gh/Kr328/ClashForAndroid/releases/download/v2.5.12/cfa-2.5.12-premium-universal-release.apk'\n"
|
1251
|
-
" class='btn btn-warning orig-link'>Direct Download</a>\n"
|
1252
|
-
" </div>\n"
|
1253
|
-
"\n"
|
1254
|
-
" <div class='alert alert-danger'>\n"
|
1255
|
-
" \tClash does not support VLess protocol. therefore, we need to add another link for it.\n"
|
1256
|
-
" </div>\n"
|
1257
|
-
" \n"
|
1258
|
-
"\n"
|
1259
|
-
" </details>\n"
|
1260
|
-
" </div>\n"
|
1261
|
-
"</details>"
|
1205
|
+
"In this part, there are some advanced configs that are better not be changed"
|
1206
|
+
" unless you are an advanced user"
|
1262
1207
|
|
1263
|
-
msgid "
|
1208
|
+
msgid "config.advanced.label"
|
1209
|
+
msgstr "Advanced Settings"
|
1210
|
+
|
1211
|
+
msgid "config.allow_invalid_sni.description"
|
1264
1212
|
msgstr ""
|
1265
|
-
"
|
1266
|
-
"
|
1213
|
+
"If you allow invalid SNI, you can use any Domain rather than your original "
|
1214
|
+
"Domain to access the Proxy (Not Recommended)"
|
1267
1215
|
|
1268
|
-
msgid "
|
1269
|
-
msgstr "
|
1216
|
+
msgid "config.allow_invalid_sni.label"
|
1217
|
+
msgstr "🆗 Allow Invalid SNI"
|
1270
1218
|
|
1271
|
-
msgid "
|
1219
|
+
msgid "config.auto_update.description"
|
1272
1220
|
msgstr ""
|
1273
|
-
"
|
1274
|
-
"
|
1275
|
-
" In this mode, you will not feel any change in the speed.\n"
|
1276
|
-
" </div>"
|
1221
|
+
"Every day at 3:00 AM, we will check for a new update. if there is a new "
|
1222
|
+
"update available, we will update the system automatically"
|
1277
1223
|
|
1278
|
-
msgid "
|
1279
|
-
msgstr "
|
1224
|
+
msgid "config.auto_update.label"
|
1225
|
+
msgstr "🔄 Auto Update"
|
1280
1226
|
|
1281
|
-
msgid "
|
1282
|
-
msgstr "
|
1227
|
+
msgid "config.block_iran_sites.description"
|
1228
|
+
msgstr "Block domestic Sites to prevent detection by the government"
|
1283
1229
|
|
1284
|
-
msgid "
|
1285
|
-
msgstr "
|
1230
|
+
msgid "config.block_iran_sites.label"
|
1231
|
+
msgstr "⛔️ Block Domestic Sites"
|
1286
1232
|
|
1287
|
-
msgid "
|
1288
|
-
msgstr "
|
1233
|
+
msgid "config.branding.description"
|
1234
|
+
msgstr "Customization settings for User Page"
|
1289
1235
|
|
1290
|
-
msgid "
|
1291
|
-
msgstr ""
|
1292
|
-
"Use Proxy for all foreign sites (even not blocked ones).\n"
|
1293
|
-
"<div class='callout callout-warning'>\n"
|
1294
|
-
"\tThis mode is useful in accessing some sanctaioned sites.\n"
|
1295
|
-
"</div>\n"
|
1236
|
+
msgid "config.branding.label"
|
1237
|
+
msgstr "Customizing User Page"
|
1296
1238
|
|
1297
|
-
msgid "
|
1298
|
-
msgstr "
|
1239
|
+
msgid "config.branding_freetext.description"
|
1240
|
+
msgstr ""
|
1241
|
+
"Branding Text. this box's text will be shown on support section of User's Page. you can use HTML tags\n"
|
1242
|
+
"<p><br /><a href=\"https://htmleditor.online/full\" target=\"_blank\">HTML Editor</a></p>"
|
1299
1243
|
|
1300
|
-
msgid "
|
1301
|
-
msgstr "
|
1244
|
+
msgid "config.branding_freetext.label"
|
1245
|
+
msgstr "📢 Support Section Text"
|
1302
1246
|
|
1303
|
-
msgid "
|
1247
|
+
msgid "config.branding_site.description"
|
1304
1248
|
msgstr ""
|
1305
|
-
"
|
1306
|
-
"
|
1307
|
-
" Loading local sites will be slower and will endanger your privacy.\n"
|
1308
|
-
"</div>\n"
|
1249
|
+
"The link to be shown on support section of user's page.\n"
|
1250
|
+
"You can put also your Telegram Channel or Telegram PV here"
|
1309
1251
|
|
1310
|
-
msgid "
|
1311
|
-
msgstr "
|
1252
|
+
msgid "config.branding_site.label"
|
1253
|
+
msgstr ""
|
1254
|
+
"🆔 Support Link (goes both on branding title and also on support section of "
|
1255
|
+
"user page)"
|
1312
1256
|
|
1313
|
-
msgid "
|
1314
|
-
msgstr "
|
1257
|
+
msgid "config.branding_title.description"
|
1258
|
+
msgstr ""
|
1259
|
+
"Enter a customized title to be shown on user page. (Before User's Welcome "
|
1260
|
+
"Text)"
|
1315
1261
|
|
1316
|
-
msgid "
|
1317
|
-
msgstr "
|
1262
|
+
msgid "config.branding_title.label"
|
1263
|
+
msgstr "👁🗨 User Page Title"
|
1318
1264
|
|
1319
|
-
msgid "
|
1265
|
+
msgid "config.cdn_forced_host.description"
|
1320
1266
|
msgstr ""
|
1321
|
-
"
|
1322
|
-
"
|
1323
|
-
"
|
1324
|
-
"<
|
1325
|
-
|
1326
|
-
msgid "user.home.speedtest.upload"
|
1327
|
-
msgstr "Upload"
|
1267
|
+
"In this part you can use a set of specific domains or IPs for your server to be override in the user links. \n"
|
1268
|
+
"\n"
|
1269
|
+
"If 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.\n"
|
1270
|
+
"Use <a target='_blank' href='https://ip-format.hiddify.com'>this link</a> to set personal IPs."
|
1328
1271
|
|
1329
|
-
msgid "
|
1330
|
-
msgstr "
|
1272
|
+
msgid "config.cdn_forced_host.label"
|
1273
|
+
msgstr "🔂 Force Config to Use Following IPs"
|
1331
1274
|
|
1332
|
-
msgid "
|
1333
|
-
msgstr "Both Ways"
|
1334
|
-
|
1335
|
-
msgid "user.home.doh"
|
1336
|
-
msgstr "DNS Over HTTPS"
|
1337
|
-
|
1338
|
-
msgid "user.home.qr-code.description"
|
1275
|
+
msgid "config.cloudflare.description"
|
1339
1276
|
msgstr ""
|
1340
|
-
"
|
1341
|
-
"
|
1342
|
-
|
1343
|
-
msgid "user.home.qr-code.display"
|
1344
|
-
msgstr "Display QR Code"
|
1277
|
+
"Please follow <a href='https://github.com/hiddify/hiddify-config/wiki/Get-"
|
1278
|
+
"Cloudflare-API' target='_blank'>the instruction</a> and paste the Cloudflare"
|
1279
|
+
" API Key"
|
1345
1280
|
|
1346
|
-
msgid "
|
1347
|
-
msgstr ""
|
1348
|
-
"<button class='btn btn-sm btn-default' onclick='show_video('ios-stash')'><i class='fa-solid fa-question'></i> Stash</button>\n"
|
1349
|
-
" <button class='btn btn-sm btn-default' onclick='show_video('ios-shadowrocket')'><i class='fa-solid fa-question'></i> Shadowrocket</button>\n"
|
1350
|
-
" <span class='badge badge-success'>Recommended</span>"
|
1281
|
+
msgid "config.cloudflare.label"
|
1282
|
+
msgstr "🔑 Cloudflare API"
|
1351
1283
|
|
1352
|
-
msgid "
|
1284
|
+
msgid "config.core_type.description"
|
1353
1285
|
msgstr ""
|
1354
|
-
"
|
1286
|
+
"☢️ XRay : Is a Complete Core\n"
|
1355
1287
|
"<br>\n"
|
1356
|
-
"
|
1357
|
-
" <div class='btn-group'>\n"
|
1358
|
-
" <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"
|
1359
|
-
" </div>\n"
|
1360
|
-
" <div class='btn-group'>\n"
|
1361
|
-
" <a href='https://apps.apple.com/us/app/shadowrocket/id932747118' target='_blank' class='btn btn-primary orig-link'>Download Shadowrocket</a> \n"
|
1362
|
-
" </div><br>\n"
|
1363
|
-
"<br />"
|
1288
|
+
"📦 Singbox : Developed by SagerNet. It is also a good core"
|
1364
1289
|
|
1365
|
-
msgid "
|
1366
|
-
msgstr "
|
1290
|
+
msgid "config.core_type.label"
|
1291
|
+
msgstr "🎛️ Core"
|
1367
1292
|
|
1368
|
-
msgid "
|
1293
|
+
msgid "config.country.description"
|
1369
1294
|
msgstr ""
|
1370
|
-
"
|
1371
|
-
"
|
1372
|
-
"<div class='btn-group'>\n"
|
1373
|
-
"\n"
|
1374
|
-
"\t<a href='https://apps.apple.com/us/app/foxray/id6448898396'\n"
|
1375
|
-
" class='btn btn-primary orig-link'>FoXray</a>\n"
|
1376
|
-
"\n"
|
1377
|
-
"</div>\n"
|
1378
|
-
"\n"
|
1379
|
-
"<div class='btn-group'>\n"
|
1380
|
-
"\n"
|
1381
|
-
"\t<a href='https://apps.apple.com/us/app/fair-vpn/id1533873488'\n"
|
1382
|
-
" class='btn btn-primary orig-link'>Fair VPN</a>\n"
|
1383
|
-
"</div>\n"
|
1384
|
-
"\n"
|
1385
|
-
"<br />\n"
|
1386
|
-
"Then apply the following configs:\n"
|
1387
|
-
"<br />"
|
1295
|
+
"It applies the appropriate settings for each country according to the "
|
1296
|
+
"filtering conditions of that country"
|
1388
1297
|
|
1389
|
-
msgid "
|
1390
|
-
msgstr "
|
1298
|
+
msgid "config.country.label"
|
1299
|
+
msgstr "🌍 Country"
|
1391
1300
|
|
1392
|
-
msgid "
|
1393
|
-
msgstr ""
|
1394
|
-
"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"
|
1395
|
-
"<br />"
|
1301
|
+
msgid "config.create_easysetup_link.description"
|
1302
|
+
msgstr "config.create_easysetup_link.description"
|
1396
1303
|
|
1397
|
-
msgid "
|
1398
|
-
msgstr "
|
1304
|
+
msgid "config.create_easysetup_link.label"
|
1305
|
+
msgstr "config.create_easysetup_link.label"
|
1399
1306
|
|
1400
|
-
msgid "
|
1401
|
-
msgstr "
|
1307
|
+
msgid "config.db_version.description"
|
1308
|
+
msgstr "Database Version Description"
|
1402
1309
|
|
1403
|
-
msgid "
|
1404
|
-
msgstr "
|
1310
|
+
msgid "config.db_version.label"
|
1311
|
+
msgstr "Database Version Label"
|
1405
1312
|
|
1406
|
-
msgid "
|
1407
|
-
msgstr "
|
1313
|
+
msgid "config.dbvalues.description"
|
1314
|
+
msgstr "config.dbvalues.description"
|
1408
1315
|
|
1409
|
-
msgid "
|
1410
|
-
msgstr "
|
1316
|
+
msgid "config.dbvalues.label"
|
1317
|
+
msgstr "config.dbvalues.label"
|
1411
1318
|
|
1412
|
-
msgid "
|
1413
|
-
msgstr "
|
1319
|
+
msgid "config.decoy_domain.description"
|
1320
|
+
msgstr ""
|
1321
|
+
"Fake Site: simulates a site when someone visits your domain directly.<br>\n"
|
1322
|
+
"⚠️ Do not use financial, Iranian and famous sites or sites with login such as Google, Yahoo, Wikipedia, PayPal.<br>\n"
|
1323
|
+
"⛔ Be sure to check the site and make sure that it is the right site, otherwise you may receive a phishing warning.<br>\n"
|
1324
|
+
"⛔⛔ Check this domain again so that there is no problem in the future"
|
1414
1325
|
|
1415
|
-
msgid "
|
1416
|
-
msgstr "
|
1326
|
+
msgid "config.decoy_domain.label"
|
1327
|
+
msgstr "📺 Decoy Site"
|
1417
1328
|
|
1418
|
-
msgid "
|
1329
|
+
msgid "config.dns_server.description"
|
1419
1330
|
msgstr ""
|
1420
|
-
"
|
1421
|
-
"<br
|
1422
|
-
"
|
1423
|
-
"\n"
|
1424
|
-
"<details>\n"
|
1425
|
-
"<summary>Why Hiddify Desktop ?</summary>\n"
|
1426
|
-
"<div class='callout callout-info'>\n"
|
1427
|
-
"\n"
|
1428
|
-
" Hiddify Desktop is an safe and open source fork of Clash that supports more VLESS and UTLS Fingerprinting.\n"
|
1429
|
-
" <br>\n"
|
1430
|
-
"<br />\n"
|
1431
|
-
" Its source codes exist in\n"
|
1432
|
-
" <a href='https://github.com/hiddify/HiddifyDesktop'>GitHub</a>.\n"
|
1433
|
-
" \n"
|
1434
|
-
"\n"
|
1435
|
-
" <details>\n"
|
1436
|
-
" <summary>Alternative: Normal Clash</summary>\n"
|
1437
|
-
" %(normal_clash_link)s\n"
|
1438
|
-
"\n"
|
1439
|
-
" <div class='alert alert-danger'>\n"
|
1440
|
-
" \tClash does not support browser fingerprinting and VLESS protocol . Therefore, we need to add another link for it.\n"
|
1441
|
-
" </div>\n"
|
1442
|
-
" \n"
|
1443
|
-
"\n"
|
1444
|
-
" </details>\n"
|
1445
|
-
"</div>\n"
|
1446
|
-
" </details>\n"
|
1447
|
-
"<br />\n"
|
1448
|
-
"Now, 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."
|
1331
|
+
"✳️ Default 1.1.1.1 <br>\n"
|
1332
|
+
"🚧 Block Malware 1.1.1.2 <br>\n"
|
1333
|
+
"🔞 Block Porn 1.1.1.3\n"
|
1449
1334
|
|
1450
|
-
msgid "
|
1451
|
-
msgstr "
|
1335
|
+
msgid "config.dns_server.label"
|
1336
|
+
msgstr "🖥 DNS Server"
|
1452
1337
|
|
1453
|
-
msgid "
|
1454
|
-
msgstr "
|
1338
|
+
msgid "config.domain_fronting.description"
|
1339
|
+
msgstr ""
|
1340
|
+
"It is used to simulate another website instead of your website in SNI. therefore, GFW can not filter your Domain\n"
|
1341
|
+
"<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."
|
1455
1342
|
|
1456
|
-
msgid "
|
1457
|
-
msgstr "
|
1343
|
+
msgid "config.domain_fronting.label"
|
1344
|
+
msgstr "🔒 Enable TLS Domain Fronting"
|
1458
1345
|
|
1459
|
-
msgid "
|
1460
|
-
msgstr "
|
1346
|
+
msgid "config.domain_fronting_domain.description"
|
1347
|
+
msgstr ""
|
1348
|
+
"It is used to simulate another website instead of your website in SNI. "
|
1349
|
+
"therefore, GFW Can not filter your domain."
|
1461
1350
|
|
1462
|
-
msgid "
|
1463
|
-
msgstr "
|
1351
|
+
msgid "config.domain_fronting_domain.label"
|
1352
|
+
msgstr "ℹ️ Domain Fronting"
|
1464
1353
|
|
1465
|
-
msgid "
|
1466
|
-
msgstr "
|
1354
|
+
msgid "config.domain_fronting_http_enable.description"
|
1355
|
+
msgstr "Enabling HTTP Domain Fronting causes your domain to be block quickly."
|
1467
1356
|
|
1468
|
-
msgid "
|
1469
|
-
msgstr "
|
1357
|
+
msgid "config.domain_fronting_http_enable.label"
|
1358
|
+
msgstr "Enable HTTP Domain Fronting"
|
1470
1359
|
|
1471
|
-
msgid "
|
1472
|
-
msgstr "
|
1360
|
+
msgid "config.domain_fronting_tls_enable.description"
|
1361
|
+
msgstr ""
|
1362
|
+
"In CloudFlare, TLS Domain Fronting is not supported. it will use Port 443 to"
|
1363
|
+
" connect to CDN"
|
1473
1364
|
|
1474
|
-
msgid "
|
1475
|
-
msgstr "
|
1365
|
+
msgid "config.domain_fronting_tls_enable.label"
|
1366
|
+
msgstr "🔒 Enable TLS Domain Fronting"
|
1476
1367
|
|
1477
|
-
msgid "
|
1478
|
-
msgstr "
|
1368
|
+
msgid "config.firewall.description"
|
1369
|
+
msgstr ""
|
1370
|
+
"Enabling Firewall will open used Ports (at least 22,443,80 and SSH) and "
|
1371
|
+
"close all other Ports"
|
1479
1372
|
|
1480
|
-
msgid "
|
1481
|
-
msgstr "
|
1373
|
+
msgid "config.firewall.label"
|
1374
|
+
msgstr "🛡️ Firewall"
|
1482
1375
|
|
1483
|
-
msgid "
|
1484
|
-
msgstr "
|
1376
|
+
msgid "config.first_setup.description"
|
1377
|
+
msgstr "config.first_setup.description"
|
1485
1378
|
|
1486
|
-
msgid "
|
1487
|
-
msgstr "
|
1379
|
+
msgid "config.first_setup.label"
|
1380
|
+
msgstr "config.first_setup.label"
|
1488
1381
|
|
1489
|
-
msgid "
|
1490
|
-
msgstr "
|
1382
|
+
msgid "config.general.description"
|
1383
|
+
msgstr "It is General System Configurations"
|
1491
1384
|
|
1492
|
-
msgid "
|
1493
|
-
msgstr "
|
1385
|
+
msgid "config.general.label"
|
1386
|
+
msgstr "General Settings"
|
1494
1387
|
|
1495
|
-
msgid "
|
1496
|
-
msgstr "
|
1388
|
+
msgid "config.grpc_enable.description"
|
1389
|
+
msgstr ""
|
1390
|
+
"gRPC is a modern open source high performance Remote Procedure Call (RPC) "
|
1391
|
+
"framework. It can be used in supported CDNs"
|
1497
1392
|
|
1498
|
-
msgid "
|
1499
|
-
msgstr "
|
1393
|
+
msgid "config.grpc_enable.label"
|
1394
|
+
msgstr "➿ Enable gRPC"
|
1500
1395
|
|
1501
|
-
msgid "
|
1502
|
-
msgstr "
|
1396
|
+
msgid "config.h2_enable.description"
|
1397
|
+
msgstr "config.h2_enable.description"
|
1503
1398
|
|
1504
|
-
msgid "
|
1505
|
-
msgstr "
|
1399
|
+
msgid "config.h2_enable.label"
|
1400
|
+
msgstr "config.h2_enable.label"
|
1506
1401
|
|
1507
|
-
msgid "
|
1508
|
-
msgstr "
|
1402
|
+
msgid "config.hidden.description"
|
1403
|
+
msgstr "config.hidden.description"
|
1509
1404
|
|
1510
|
-
msgid "
|
1511
|
-
msgstr "
|
1405
|
+
msgid "config.hidden.label"
|
1406
|
+
msgstr "config.hidden.label"
|
1512
1407
|
|
1513
|
-
msgid "
|
1514
|
-
msgstr "
|
1408
|
+
msgid "config.http.description"
|
1409
|
+
msgstr "HTTP Configurations could be set in this section"
|
1515
1410
|
|
1516
|
-
msgid "
|
1411
|
+
msgid "config.http.label"
|
1412
|
+
msgstr "HTTP Configuration"
|
1413
|
+
|
1414
|
+
msgid "config.http_ports.description"
|
1517
1415
|
msgstr ""
|
1518
|
-
"
|
1416
|
+
"Comma separated integers indicating the ports to use as Unencrypted "
|
1417
|
+
"connections (Port 80 will be used In anycase)\n"
|
1519
1418
|
|
1520
|
-
msgid "
|
1521
|
-
msgstr "
|
1419
|
+
msgid "config.http_ports.label"
|
1420
|
+
msgstr "🔎 HTTP Ports"
|
1522
1421
|
|
1523
|
-
msgid ""
|
1524
|
-
"This version of hiddify panel is outdated. Please update it from admin area."
|
1422
|
+
msgid "config.http_proxy_enable.description"
|
1525
1423
|
msgstr ""
|
1526
|
-
"
|
1527
|
-
"
|
1424
|
+
"By allowing this, your users can connect to the system with Unencrypted HTTP"
|
1425
|
+
" Port. (Not Recommended)"
|
1528
1426
|
|
1529
|
-
msgid "
|
1530
|
-
msgstr "
|
1427
|
+
msgid "config.http_proxy_enable.label"
|
1428
|
+
msgstr "☑️ Allow HTTP Connection"
|
1531
1429
|
|
1532
|
-
msgid ""
|
1533
|
-
"It seems that you have not setup the system completely. <a class=\"btn btn-"
|
1534
|
-
"success\" href=\"%(quick_setup)s\">Click here</a> to complete setup."
|
1430
|
+
msgid "config.httpupgrade_enable.description"
|
1535
1431
|
msgstr ""
|
1536
|
-
"It
|
1537
|
-
"
|
1432
|
+
"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"
|
1433
|
+
"\n"
|
1434
|
+
"⚠️ 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>"
|
1538
1435
|
|
1539
|
-
msgid ""
|
1540
|
-
"
|
1541
|
-
"condition of use maybe change at anytime."
|
1542
|
-
msgstr ""
|
1543
|
-
"Please understand that parent Panel is under test and the plan and the "
|
1544
|
-
"condition of use maybe change at anytime."
|
1545
|
-
|
1546
|
-
msgid ""
|
1547
|
-
"It seems that you are using default domain (%(domain)s) which is not "
|
1548
|
-
"recommended."
|
1549
|
-
msgstr ""
|
1550
|
-
"It seems that you are using default domain (%(domain)s) which is not "
|
1551
|
-
"recommended. Please change or remove it from domain section."
|
1436
|
+
msgid "config.httpupgrade_enable.label"
|
1437
|
+
msgstr "🆙 Enable HTTPUpgrade Method"
|
1552
1438
|
|
1553
|
-
msgid ""
|
1554
|
-
"It seems that you have not created any users yet. Default user link: "
|
1555
|
-
"%(default_link)s"
|
1439
|
+
msgid "config.hysteria.description"
|
1556
1440
|
msgstr ""
|
1557
|
-
"
|
1558
|
-
"
|
1441
|
+
"Hysteria is a feature-packed proxy & relay tool optimized for lossy, "
|
1442
|
+
"unstable connections (e.g. satellite networks, congested public Wi-Fi, "
|
1443
|
+
"connecting to foreign servers from China)"
|
1559
1444
|
|
1560
|
-
msgid "
|
1561
|
-
msgstr ""
|
1562
|
-
"Your server is vulnerable to abuses because PasswordAuthentication is "
|
1563
|
-
"enabled in your SSH. To secure your server, please switch to key "
|
1564
|
-
"authentication mechanism and turn off PasswordAuthentication. <a "
|
1565
|
-
"href='https://github.com/hiddify/Hiddify-Manager/wiki/Disable-SSH-Password-"
|
1566
|
-
"Authentication'>read more... </a>"
|
1445
|
+
msgid "config.hysteria.label"
|
1446
|
+
msgstr "Hysteria"
|
1567
1447
|
|
1568
|
-
msgid "
|
1569
|
-
msgstr "
|
1448
|
+
msgid "config.hysteria_down_mbps.description"
|
1449
|
+
msgstr "Hysteria Maximum Download Speed"
|
1570
1450
|
|
1571
|
-
msgid "
|
1572
|
-
msgstr ""
|
1573
|
-
"Please fill in this field carefully and correctly. Otherwise, proxies will "
|
1574
|
-
"run into problems. Please visit <a href='https://github.com/hiddify/hiddify-"
|
1575
|
-
"config/wiki/راهنمای-تنظیم-دامنه-و-نهایی-کردن-نصب#آموزش-ساخت-زیردامنه'> "
|
1576
|
-
"Help</a> to learn how to create a subdomain."
|
1451
|
+
msgid "config.hysteria_down_mbps.label"
|
1452
|
+
msgstr "⬇️ Hysteria Download (mbps)"
|
1577
1453
|
|
1578
|
-
msgid "
|
1579
|
-
msgstr "
|
1454
|
+
msgid "config.hysteria_enable.description"
|
1455
|
+
msgstr "To Enable UDP based Hysteria Protocol"
|
1580
1456
|
|
1581
|
-
msgid "
|
1582
|
-
msgstr "
|
1457
|
+
msgid "config.hysteria_enable.label"
|
1458
|
+
msgstr "Enable Hysteria2"
|
1583
1459
|
|
1584
|
-
msgid "
|
1585
|
-
msgstr "
|
1460
|
+
msgid "config.hysteria_obfs_enable.description"
|
1461
|
+
msgstr " Enables Hysteria Obfuscation (Salamander)"
|
1586
1462
|
|
1587
|
-
msgid "
|
1588
|
-
msgstr "
|
1463
|
+
msgid "config.hysteria_obfs_enable.label"
|
1464
|
+
msgstr "🎛 Hysteria OBFS Enable"
|
1589
1465
|
|
1590
|
-
msgid "
|
1591
|
-
msgstr "
|
1466
|
+
msgid "config.hysteria_port.description"
|
1467
|
+
msgstr "Hysteria UDP Port for example 5678"
|
1592
1468
|
|
1593
|
-
msgid "
|
1594
|
-
msgstr ""
|
1595
|
-
"It is used to simulate another website instead of your website in SNI. therefore, GFW can not filter your Domain\n"
|
1596
|
-
"<a href='https://github.com/hiddify/hiddify-config/wiki/Guide-for-domain-fronting'>Guide</a>. ⚠️CloudFlare does not support Domain Fronting."
|
1469
|
+
msgid "config.hysteria_port.label"
|
1470
|
+
msgstr "🔍 Hysteria2 Port"
|
1597
1471
|
|
1598
|
-
msgid ""
|
1599
|
-
"
|
1600
|
-
"means that you use your server on behind of a CDN provider."
|
1601
|
-
msgstr ""
|
1602
|
-
"➡️ <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"
|
1603
|
-
"🔙 <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"
|
1604
|
-
"<br>\n"
|
1605
|
-
"🔀 <b>CDN:</b> Select this mode if you use a CDN provider for your server's domain. (Proxy Mode On)<br>\n"
|
1606
|
-
"☑️ <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"
|
1607
|
-
"♾️ <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"
|
1608
|
-
"<br>\n"
|
1609
|
-
"✴️ <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"
|
1610
|
-
"<br>\n"
|
1611
|
-
"🔂 <b>Reality:</b> Utilize the Reality protocol to create multiple domains.\n"
|
1612
|
-
"<br>\n"
|
1613
|
-
"🆎 <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"
|
1614
|
-
"<br>"
|
1472
|
+
msgid "config.hysteria_up_mbps.description"
|
1473
|
+
msgstr "Hysteria Maximum Upload Speed"
|
1615
1474
|
|
1616
|
-
msgid ""
|
1617
|
-
"
|
1618
|
-
"area. If you select all, automatically, all the new domains will be added "
|
1619
|
-
"for each users."
|
1620
|
-
msgstr ""
|
1621
|
-
"For users visit the user area with this domain, Specify they can see the proxies of which domains.\n"
|
1622
|
-
"<br>\n"
|
1623
|
-
"Suggestion: 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."
|
1475
|
+
msgid "config.hysteria_up_mbps.label"
|
1476
|
+
msgstr "⬆️ Hysteria Upload (mbps)"
|
1624
1477
|
|
1625
|
-
msgid "
|
1626
|
-
msgstr "
|
1478
|
+
msgid "config.invalid-pattern-for-warp-sites"
|
1479
|
+
msgstr "config.invalid-pattern-for-warp-sites"
|
1627
1480
|
|
1628
|
-
msgid ""
|
1629
|
-
"
|
1630
|
-
msgstr ""
|
1631
|
-
"This can be used for giving your Users a permanent non Blockable Links."
|
1481
|
+
msgid "config.is_parent.description"
|
1482
|
+
msgstr "config.is_parent.description"
|
1632
1483
|
|
1633
|
-
msgid "
|
1634
|
-
msgstr "
|
1484
|
+
msgid "config.is_parent.label"
|
1485
|
+
msgstr "Parent Panel"
|
1635
1486
|
|
1636
|
-
msgid "
|
1637
|
-
msgstr "
|
1487
|
+
msgid "config.kcp.description"
|
1488
|
+
msgstr "KCP Configurations could be set in this section."
|
1638
1489
|
|
1639
|
-
msgid "
|
1640
|
-
msgstr "
|
1490
|
+
msgid "config.kcp.label"
|
1491
|
+
msgstr "KCP"
|
1641
1492
|
|
1642
|
-
msgid "
|
1643
|
-
msgstr "
|
1493
|
+
msgid "config.kcp_enable.description"
|
1494
|
+
msgstr "It is a UDP Based Protocol "
|
1644
1495
|
|
1645
|
-
msgid "
|
1646
|
-
msgstr "
|
1496
|
+
msgid "config.kcp_enable.label"
|
1497
|
+
msgstr "Enable KCP"
|
1647
1498
|
|
1648
|
-
msgid "
|
1649
|
-
msgstr "
|
1499
|
+
msgid "config.kcp_ports.description"
|
1500
|
+
msgstr ""
|
1501
|
+
"Comma separated integers indicating the ports to use as KCP connection.\n"
|
1650
1502
|
|
1651
|
-
msgid "
|
1652
|
-
msgstr "
|
1503
|
+
msgid "config.kcp_ports.label"
|
1504
|
+
msgstr "KCP Ports"
|
1653
1505
|
|
1654
|
-
msgid "
|
1655
|
-
msgstr "
|
1506
|
+
msgid "config.lang.description"
|
1507
|
+
msgstr "Choose Language For Users Area"
|
1656
1508
|
|
1657
|
-
msgid "
|
1658
|
-
msgstr "
|
1509
|
+
msgid "config.lang.label"
|
1510
|
+
msgstr "🗺️ User Area Language"
|
1659
1511
|
|
1660
|
-
msgid "
|
1661
|
-
msgstr "
|
1512
|
+
msgid "config.last_hash.description"
|
1513
|
+
msgstr "config.last_hash.description"
|
1662
1514
|
|
1663
|
-
msgid "
|
1664
|
-
msgstr "
|
1515
|
+
msgid "config.last_hash.label"
|
1516
|
+
msgstr "config.last_hash.label"
|
1665
1517
|
|
1666
|
-
msgid "
|
1667
|
-
msgstr "
|
1518
|
+
msgid "config.license.description"
|
1519
|
+
msgstr "For commercial use of this Product, you must Purchase its License"
|
1668
1520
|
|
1669
|
-
msgid "
|
1670
|
-
msgstr "
|
1521
|
+
msgid "config.license.label"
|
1522
|
+
msgstr "License Code"
|
1671
1523
|
|
1672
|
-
msgid ""
|
1673
|
-
|
1674
|
-
"FairVPN."
|
1675
|
-
msgstr ""
|
1676
|
-
"Using alias with special charachters may cause problem in some clients like "
|
1677
|
-
"FairVPN."
|
1524
|
+
msgid "config.log_level.description"
|
1525
|
+
msgstr "config.log_level.description"
|
1678
1526
|
|
1679
|
-
msgid "
|
1680
|
-
msgstr "
|
1527
|
+
msgid "config.log_level.label"
|
1528
|
+
msgstr "config.log_level.label"
|
1681
1529
|
|
1682
|
-
msgid "
|
1683
|
-
msgstr "
|
1530
|
+
msgid "config.mux.description"
|
1531
|
+
msgstr "MUX (Multiplex) configurations could be set in this section"
|
1684
1532
|
|
1685
|
-
msgid "
|
1686
|
-
msgstr "
|
1533
|
+
msgid "config.mux.label"
|
1534
|
+
msgstr "MUX Config"
|
1687
1535
|
|
1688
|
-
msgid "
|
1689
|
-
msgstr "
|
1536
|
+
msgid "config.mux_brutal_down_mbps.description"
|
1537
|
+
msgstr "TCP-Brutal Maximum Download Speed"
|
1690
1538
|
|
1691
|
-
msgid "
|
1692
|
-
msgstr "
|
1539
|
+
msgid "config.mux_brutal_down_mbps.label"
|
1540
|
+
msgstr "⬇️ MUX Brutal Download (mbps)"
|
1693
1541
|
|
1694
|
-
msgid "
|
1695
|
-
msgstr "
|
1542
|
+
msgid "config.mux_brutal_enable.description"
|
1543
|
+
msgstr "Enables TCP-Brutal congestion control algorithm"
|
1696
1544
|
|
1697
|
-
msgid "
|
1698
|
-
msgstr "
|
1545
|
+
msgid "config.mux_brutal_enable.label"
|
1546
|
+
msgstr "☣️ MUX Brutal"
|
1699
1547
|
|
1700
|
-
msgid "
|
1701
|
-
msgstr "
|
1548
|
+
msgid "config.mux_brutal_up_mbps.description"
|
1549
|
+
msgstr "TCP-Brutal Maximum Upload Speed"
|
1702
1550
|
|
1703
|
-
msgid "
|
1704
|
-
msgstr "
|
1551
|
+
msgid "config.mux_brutal_up_mbps.label"
|
1552
|
+
msgstr "⬆️ MUX Brutal Upload (mbps)"
|
1705
1553
|
|
1706
|
-
msgid "
|
1707
|
-
msgstr "
|
1554
|
+
msgid "config.mux_enable.description"
|
1555
|
+
msgstr ""
|
1556
|
+
"Mux needs compatible clients. Mux in Hiddify Next and Singbox are not "
|
1557
|
+
"compatible with XRay"
|
1708
1558
|
|
1709
|
-
msgid "
|
1710
|
-
msgstr "
|
1559
|
+
msgid "config.mux_enable.label"
|
1560
|
+
msgstr "Ⓜ️ MUX Enable (⚠️ Incompatible With Some Clients)"
|
1711
1561
|
|
1712
|
-
msgid "
|
1713
|
-
msgstr "
|
1562
|
+
msgid "config.mux_max_connections.description"
|
1563
|
+
msgstr "Maximum Connections. Conflict with Max Streams"
|
1714
1564
|
|
1715
|
-
msgid "
|
1716
|
-
msgstr "
|
1565
|
+
msgid "config.mux_max_connections.label"
|
1566
|
+
msgstr "⛓ MUX Max Connections"
|
1717
1567
|
|
1718
|
-
msgid "
|
1719
|
-
msgstr "
|
1568
|
+
msgid "config.mux_max_streams.description"
|
1569
|
+
msgstr ""
|
1570
|
+
"Maximum Multiplexed streams in a connection before opening a new connection"
|
1720
1571
|
|
1721
|
-
msgid "
|
1722
|
-
msgstr "
|
1572
|
+
msgid "config.mux_max_streams.label"
|
1573
|
+
msgstr "↗️ MUX Max Streams"
|
1723
1574
|
|
1724
|
-
msgid "
|
1725
|
-
msgstr "
|
1575
|
+
msgid "config.mux_min_streams.description"
|
1576
|
+
msgstr ""
|
1577
|
+
"Minimum Multiplexed streams in a connection before opening a new connection"
|
1726
1578
|
|
1727
|
-
msgid "
|
1728
|
-
msgstr "
|
1579
|
+
msgid "config.mux_min_streams.label"
|
1580
|
+
msgstr "↘️ MUX Min Streams"
|
1729
1581
|
|
1730
|
-
msgid "
|
1731
|
-
msgstr "
|
1582
|
+
msgid "config.mux_padding_enable.description"
|
1583
|
+
msgstr "Enables MUX Padding"
|
1732
1584
|
|
1733
|
-
msgid "
|
1734
|
-
msgstr "
|
1585
|
+
msgid "config.mux_padding_enable.label"
|
1586
|
+
msgstr "⟹ MUX Padding"
|
1735
1587
|
|
1736
|
-
msgid "config.
|
1737
|
-
msgstr "
|
1588
|
+
msgid "config.mux_protocol.description"
|
1589
|
+
msgstr ""
|
1590
|
+
"ℹ️ Multiplex Protocol. 'sMux' is used by default\n"
|
1591
|
+
"<br>\n"
|
1592
|
+
"➖ sMux: Stream Multiplexing\n"
|
1593
|
+
"<br>\n"
|
1594
|
+
"➖ YaMux: Yet Another Multiplexer\n"
|
1595
|
+
"<br>\n"
|
1596
|
+
"➖ h2Mux: Multiplexing Streams Over HTTP/2"
|
1738
1597
|
|
1739
|
-
msgid "config.
|
1740
|
-
msgstr "
|
1598
|
+
msgid "config.mux_protocol.label"
|
1599
|
+
msgstr "♍️ MUX Protocol"
|
1741
1600
|
|
1742
|
-
msgid ""
|
1743
|
-
"Domain (%(domain)s)-> IP=%(domain_ip)s is not matched with your "
|
1744
|
-
"ip=%(server_ip)s which is required in direct mode"
|
1601
|
+
msgid "config.netdata.description"
|
1745
1602
|
msgstr ""
|
1746
|
-
"
|
1747
|
-
"%(server_ip)s . this is required in Direct Mode"
|
1748
|
-
|
1749
|
-
msgid "Port is already used! in"
|
1750
|
-
msgstr "Port is Already Used in:"
|
1603
|
+
"For displaying resources. uses your Server's CPU but it is not too much."
|
1751
1604
|
|
1752
|
-
msgid "
|
1753
|
-
msgstr "
|
1605
|
+
msgid "config.netdata.label"
|
1606
|
+
msgstr "Netdata"
|
1754
1607
|
|
1755
|
-
msgid "
|
1756
|
-
msgstr "
|
1757
|
-
|
1758
|
-
msgid "SingBox"
|
1759
|
-
msgstr "📦 SingBox"
|
1760
|
-
|
1761
|
-
msgid "Disable"
|
1762
|
-
msgstr "Disable"
|
1763
|
-
|
1764
|
-
msgid "Only Blocked and Local websites"
|
1765
|
-
msgstr "☑️ Only Blocked and Local Websites"
|
1608
|
+
msgid "config.not_found.description"
|
1609
|
+
msgstr "Config Not Found"
|
1766
1610
|
|
1767
|
-
msgid "
|
1768
|
-
msgstr "
|
1611
|
+
msgid "config.not_found.label"
|
1612
|
+
msgstr "Config Not Found"
|
1769
1613
|
|
1770
|
-
msgid "
|
1771
|
-
msgstr "
|
1614
|
+
msgid "config.only_ipv4.description"
|
1615
|
+
msgstr "It will Disable IPv6"
|
1772
1616
|
|
1773
|
-
msgid "
|
1774
|
-
msgstr "
|
1617
|
+
msgid "config.only_ipv4.label"
|
1618
|
+
msgstr "ℹ️ Only IPv4"
|
1775
1619
|
|
1776
|
-
msgid "
|
1777
|
-
msgstr "
|
1620
|
+
msgid "config.package_mode.description"
|
1621
|
+
msgstr "Specify whether you want Released Package or Beta one"
|
1778
1622
|
|
1779
|
-
msgid "
|
1780
|
-
msgstr "
|
1623
|
+
msgid "config.package_mode.label"
|
1624
|
+
msgstr "🔄 Package Update Mode"
|
1781
1625
|
|
1782
|
-
msgid "
|
1783
|
-
msgstr "
|
1626
|
+
msgid "config.panel_mode.description"
|
1627
|
+
msgstr "config.panel_mode.description"
|
1784
1628
|
|
1785
|
-
msgid "
|
1786
|
-
msgstr "
|
1629
|
+
msgid "config.panel_mode.label"
|
1630
|
+
msgstr "config.panel_mode.label"
|
1787
1631
|
|
1788
|
-
msgid "
|
1789
|
-
msgstr "
|
1632
|
+
msgid "config.parent_admin_proxy_path.description"
|
1633
|
+
msgstr "config.parent_admin_proxy_path.description"
|
1790
1634
|
|
1791
|
-
msgid "
|
1792
|
-
msgstr "
|
1635
|
+
msgid "config.parent_admin_proxy_path.label"
|
1636
|
+
msgstr "config.parent_admin_proxy_path.label"
|
1793
1637
|
|
1794
|
-
msgid "config.
|
1795
|
-
msgstr "
|
1638
|
+
msgid "config.parent_domain.description"
|
1639
|
+
msgstr "config.parent_domain.description"
|
1796
1640
|
|
1797
|
-
msgid "config.
|
1798
|
-
msgstr ""
|
1799
|
-
"Invalid Link. it should be on this format: (https or http://example.com)"
|
1641
|
+
msgid "config.parent_domain.label"
|
1642
|
+
msgstr "config.parent_domain.label"
|
1800
1643
|
|
1801
|
-
msgid "config.
|
1644
|
+
msgid "config.parent_panel.description"
|
1802
1645
|
msgstr ""
|
1803
|
-
"
|
1804
|
-
"
|
1646
|
+
"You can Connect to the Central Panel to define only one user and the usage "
|
1647
|
+
"of all Servers will be added cumulatively."
|
1805
1648
|
|
1806
|
-
msgid "config.
|
1807
|
-
msgstr "
|
1649
|
+
msgid "config.parent_panel.label"
|
1650
|
+
msgstr "Parent Panel (Multi Server)"
|
1808
1651
|
|
1809
|
-
msgid "config.
|
1810
|
-
msgstr "
|
1652
|
+
msgid "config.path_grpc.description"
|
1653
|
+
msgstr "gRPC Path In Configs"
|
1811
1654
|
|
1812
|
-
msgid "config.
|
1813
|
-
msgstr "
|
1655
|
+
msgid "config.path_grpc.label"
|
1656
|
+
msgstr "ℹ️ gRPC Path"
|
1814
1657
|
|
1815
|
-
msgid "config.
|
1816
|
-
msgstr "
|
1658
|
+
msgid "config.path_httpupgrade.description"
|
1659
|
+
msgstr "should be random"
|
1817
1660
|
|
1818
|
-
msgid "
|
1819
|
-
msgstr "
|
1661
|
+
msgid "config.path_httpupgrade.label"
|
1662
|
+
msgstr "ℹ️ HTTP Upgrade Path"
|
1820
1663
|
|
1821
|
-
msgid "
|
1822
|
-
msgstr "
|
1664
|
+
msgid "config.path_ss.description"
|
1665
|
+
msgstr "Shadowsocks Path in the Links"
|
1823
1666
|
|
1824
|
-
msgid "
|
1825
|
-
msgstr "
|
1667
|
+
msgid "config.path_ss.label"
|
1668
|
+
msgstr "Shadowsocks Path"
|
1826
1669
|
|
1827
|
-
msgid "
|
1828
|
-
msgstr "
|
1670
|
+
msgid "config.path_tcp.description"
|
1671
|
+
msgstr "For the Proxy Link"
|
1829
1672
|
|
1830
|
-
msgid "
|
1831
|
-
msgstr "
|
1673
|
+
msgid "config.path_tcp.label"
|
1674
|
+
msgstr "ℹ️ TCP Configuration Path"
|
1832
1675
|
|
1833
|
-
msgid "
|
1834
|
-
msgstr "
|
1676
|
+
msgid "config.path_trojan.description"
|
1677
|
+
msgstr "For Trojan Links"
|
1835
1678
|
|
1836
|
-
msgid "
|
1837
|
-
msgstr "
|
1679
|
+
msgid "config.path_trojan.label"
|
1680
|
+
msgstr "ℹ️ Trojan Path"
|
1838
1681
|
|
1839
|
-
msgid "
|
1840
|
-
msgstr "
|
1682
|
+
msgid "config.path_v2ray.description"
|
1683
|
+
msgstr "Set V2Ray Configs Path"
|
1841
1684
|
|
1842
|
-
msgid "
|
1843
|
-
msgstr "
|
1685
|
+
msgid "config.path_v2ray.label"
|
1686
|
+
msgstr "V2Ray Path"
|
1844
1687
|
|
1845
|
-
msgid "
|
1846
|
-
msgstr "
|
1688
|
+
msgid "config.path_vless.description"
|
1689
|
+
msgstr "For the VLess Path"
|
1847
1690
|
|
1848
|
-
msgid "
|
1849
|
-
msgstr "
|
1691
|
+
msgid "config.path_vless.label"
|
1692
|
+
msgstr "ℹ️ VLess Path"
|
1850
1693
|
|
1851
|
-
msgid "
|
1852
|
-
msgstr ""
|
1853
|
-
"The user's Package Mode. should the usage reset every Month, Week, etc"
|
1694
|
+
msgid "config.path_vmess.description"
|
1695
|
+
msgstr "For the VMess Link"
|
1854
1696
|
|
1855
|
-
msgid ""
|
1856
|
-
"
|
1857
|
-
msgstr ""
|
1858
|
-
"If the monthly option is enabled, when this number reaches 30, the user "
|
1859
|
-
"usage will be reset (for weekly and daily this number is 7 and 1)"
|
1697
|
+
msgid "config.path_vmess.label"
|
1698
|
+
msgstr "ℹ️ VMess Path"
|
1860
1699
|
|
1861
|
-
msgid ""
|
1862
|
-
"
|
1863
|
-
"connection"
|
1864
|
-
msgstr ""
|
1865
|
-
"Specify the starting date of the package. Leave empty to start from first "
|
1866
|
-
"Connection."
|
1700
|
+
msgid "config.path_ws.description"
|
1701
|
+
msgstr "Specify the Websocket Path"
|
1867
1702
|
|
1868
|
-
msgid "
|
1869
|
-
msgstr "
|
1703
|
+
msgid "config.path_ws.label"
|
1704
|
+
msgstr "ℹ️ Path of Websocket Requests"
|
1870
1705
|
|
1871
|
-
msgid "
|
1872
|
-
msgstr "
|
1706
|
+
msgid "config.proxies.description"
|
1707
|
+
msgstr "Define specific proxy settings"
|
1873
1708
|
|
1874
|
-
msgid "
|
1875
|
-
msgstr "
|
1709
|
+
msgid "config.proxies.label"
|
1710
|
+
msgstr "Proxies Settings"
|
1876
1711
|
|
1877
|
-
msgid ""
|
1878
|
-
"
|
1879
|
-
"%(total)s users"
|
1880
|
-
msgstr ""
|
1881
|
-
"You have too much users! You can have only %(active)s active users and "
|
1882
|
-
"%(total)s users"
|
1712
|
+
msgid "config.proxy_path.description"
|
1713
|
+
msgstr "We use secret proxy path to hide our proxies for the gouvernment"
|
1883
1714
|
|
1884
|
-
msgid "
|
1885
|
-
msgstr "
|
1715
|
+
msgid "config.proxy_path.label"
|
1716
|
+
msgstr "ℹ️ Secret Proxy Path"
|
1886
1717
|
|
1887
|
-
msgid ""
|
1888
|
-
"You can download a json formated of configurations by clicking <a "
|
1889
|
-
"href='%(link)s' class='btn btn-primary'>here</a>"
|
1718
|
+
msgid "config.proxy_path_admin.description"
|
1890
1719
|
msgstr ""
|
1891
|
-
"
|
1892
|
-
"<br>\n"
|
1893
|
-
"/opt/hiddify-config/hiddify-panel/backup\n"
|
1894
|
-
"<br>\n"
|
1895
|
-
"<br>\n"
|
1896
|
-
"<br>\n"
|
1897
|
-
"⚠️ You can download a JSON file format of the configurations by clicking on the button below\n"
|
1898
|
-
"<br>\n"
|
1899
|
-
"<br>\n"
|
1900
|
-
"<a href='%(link)s' class='btn btn-primary'>Download Backup File</a>"
|
1720
|
+
"We use secret proxy path to hide our proxies for the governments and bots"
|
1901
1721
|
|
1902
|
-
msgid "
|
1903
|
-
msgstr "
|
1722
|
+
msgid "config.proxy_path_admin.label"
|
1723
|
+
msgstr "🔐 Proxy Path for Admins"
|
1904
1724
|
|
1905
|
-
msgid "
|
1906
|
-
msgstr ""
|
1907
|
-
"ℹ️ You can restore your configs from previously downloaded backup file"
|
1725
|
+
msgid "config.proxy_path_client.description"
|
1726
|
+
msgstr "Secret proxy path hide the proxies from the governments and bots"
|
1908
1727
|
|
1909
|
-
msgid "
|
1910
|
-
msgstr "
|
1728
|
+
msgid "config.proxy_path_client.label"
|
1729
|
+
msgstr "🔏 Proxy Path for Clients"
|
1911
1730
|
|
1912
|
-
msgid "
|
1913
|
-
msgstr ""
|
1914
|
-
"Hiddify Manager Is Made For Non-Commercial Use. But If You Use This Panel Commercially, Please Help The Project Grow By Donating. <br/>\n"
|
1915
|
-
"In Exchange For Your Financial Support, We Also Provide Special Facilities For Your Commercial Product.\n"
|
1916
|
-
"<br/>\n"
|
1917
|
-
"<br/>\n"
|
1918
|
-
"Such as:\n"
|
1919
|
-
"<ul><li>\n"
|
1920
|
-
"<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"
|
1921
|
-
"<li>Possibility Of Displaying Your Brand In The Panel</li>\n"
|
1922
|
-
"<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"
|
1923
|
-
"</li>\n"
|
1924
|
-
"<li>\n"
|
1925
|
-
"The Possibility Of Using The Telegram Bot\n"
|
1926
|
-
"</li>\n"
|
1927
|
-
"<li>\n"
|
1928
|
-
"Ability To Change Proxy Names\n"
|
1929
|
-
"</li>\n"
|
1930
|
-
"</ul>\n"
|
1931
|
-
"\n"
|
1932
|
-
"Please Contact <a href='tg://resolve?domain=HiddifyCommercial'>@HiddifyCommercial</a> After Donating.\n"
|
1933
|
-
"Send a Message To Get a Special Version for business users."
|
1731
|
+
msgid "config.quic_enable.description"
|
1732
|
+
msgstr "config.quic_enable.description"
|
1934
1733
|
|
1935
|
-
msgid "
|
1936
|
-
msgstr "
|
1734
|
+
msgid "config.quic_enable.label"
|
1735
|
+
msgstr "config.quic_enable.label"
|
1937
1736
|
|
1938
|
-
msgid "
|
1939
|
-
msgstr "
|
1737
|
+
msgid "config.reality.description"
|
1738
|
+
msgstr "REALITY eliminate the Server-Side TLS Fingerprint Feature"
|
1940
1739
|
|
1941
|
-
msgid "
|
1942
|
-
msgstr "
|
1740
|
+
msgid "config.reality.label"
|
1741
|
+
msgstr "Reality"
|
1943
1742
|
|
1944
|
-
msgid "
|
1945
|
-
msgstr "
|
1743
|
+
msgid "config.reality_enable.description"
|
1744
|
+
msgstr "config.reality_enable.description"
|
1946
1745
|
|
1947
|
-
msgid "
|
1948
|
-
msgstr "
|
1746
|
+
msgid "config.reality_enable.label"
|
1747
|
+
msgstr "config.reality_enable.label"
|
1949
1748
|
|
1950
|
-
msgid "
|
1951
|
-
msgstr "
|
1749
|
+
msgid "config.reality_fallback_domain.description"
|
1750
|
+
msgstr ""
|
1751
|
+
"When the GFW visit the Websites in Server names, it will be redirect to this"
|
1752
|
+
" Domain."
|
1952
1753
|
|
1953
|
-
msgid "
|
1954
|
-
msgstr "
|
1754
|
+
msgid "config.reality_fallback_domain.label"
|
1755
|
+
msgstr "🌍 Reality Fallback Domain"
|
1955
1756
|
|
1956
|
-
msgid "
|
1957
|
-
msgstr "
|
1757
|
+
msgid "config.reality_port.description"
|
1758
|
+
msgstr ""
|
1759
|
+
"You can set a customized port for your reality server to reduce the system's"
|
1760
|
+
" overhead. (Allow direct connection to proxies should be yes)"
|
1958
1761
|
|
1959
|
-
msgid "
|
1960
|
-
msgstr "
|
1762
|
+
msgid "config.reality_port.label"
|
1763
|
+
msgstr "↔️ Direct Reality Port"
|
1961
1764
|
|
1962
|
-
msgid "
|
1963
|
-
msgstr "
|
1765
|
+
msgid "config.reality_private_key.description"
|
1766
|
+
msgstr "Do Not Change It"
|
1964
1767
|
|
1965
|
-
msgid "
|
1966
|
-
msgstr "
|
1768
|
+
msgid "config.reality_private_key.label"
|
1769
|
+
msgstr "🔑 Private Key"
|
1967
1770
|
|
1968
|
-
msgid "
|
1969
|
-
msgstr "
|
1771
|
+
msgid "config.reality_public_key.description"
|
1772
|
+
msgstr "Do Not Change It"
|
1970
1773
|
|
1971
|
-
msgid "
|
1972
|
-
msgstr "
|
1774
|
+
msgid "config.reality_public_key.label"
|
1775
|
+
msgstr "🔑 Public Key"
|
1973
1776
|
|
1974
|
-
msgid "
|
1975
|
-
msgstr "
|
1777
|
+
msgid "config.reality_server_names.description"
|
1778
|
+
msgstr "You can add several Sever Names in comma seperated format"
|
1976
1779
|
|
1977
|
-
msgid "
|
1978
|
-
msgstr "
|
1780
|
+
msgid "config.reality_server_names.label"
|
1781
|
+
msgstr "🌎 Reality Server Names"
|
1979
1782
|
|
1980
|
-
msgid "
|
1981
|
-
msgstr "
|
1783
|
+
msgid "config.reality_short_ids.description"
|
1784
|
+
msgstr "Do Not Change It"
|
1982
1785
|
|
1983
|
-
msgid "
|
1984
|
-
msgstr "
|
1985
|
-
|
1986
|
-
msgid "Childs"
|
1987
|
-
msgstr "Children"
|
1786
|
+
msgid "config.reality_short_ids.label"
|
1787
|
+
msgstr "🆔 Short IDs"
|
1988
1788
|
|
1989
|
-
msgid "
|
1990
|
-
msgstr "
|
1789
|
+
msgid "config.restls.description"
|
1790
|
+
msgstr "config.restls.description"
|
1991
1791
|
|
1992
|
-
msgid "
|
1993
|
-
msgstr "
|
1792
|
+
msgid "config.restls.label"
|
1793
|
+
msgstr "RestTLS"
|
1994
1794
|
|
1995
|
-
msgid "
|
1996
|
-
msgstr "
|
1795
|
+
msgid "config.restls1_2_domain.description"
|
1796
|
+
msgstr "config.restls1_2_domain.description"
|
1997
1797
|
|
1998
|
-
msgid "
|
1999
|
-
msgstr "
|
1798
|
+
msgid "config.restls1_2_domain.label"
|
1799
|
+
msgstr "config.restls1_2_domain.label"
|
2000
1800
|
|
2001
|
-
msgid "
|
2002
|
-
msgstr "
|
1801
|
+
msgid "config.restls1_3_domain.description"
|
1802
|
+
msgstr "config.restls1_3_domain.description"
|
2003
1803
|
|
2004
|
-
msgid ""
|
2005
|
-
|
2006
|
-
"href=\"%(adminlink)s\" class=\"btn btn-primary copy-"
|
2007
|
-
"link\">%(adminlink)s</a>. Please save this link."
|
2008
|
-
msgstr ""
|
2009
|
-
"Please note that your panel can be accessed only via the following link. please save this link.\n"
|
2010
|
-
"<p><a href='%(adminlink)s' class='btn btn-secondary copy-link'><i class='fa-solid fa-copy'></i></a>\n"
|
2011
|
-
"<a href='%(adminlink)s' class='copy-link' style='word-break: break-all;'>%(adminlink)s</a></p> "
|
1804
|
+
msgid "config.restls1_3_domain.label"
|
1805
|
+
msgstr "config.restls1_3_domain.label"
|
2012
1806
|
|
2013
|
-
msgid "
|
2014
|
-
msgstr "
|
1807
|
+
msgid "config.shadowsocks.description"
|
1808
|
+
msgstr "Shadowsocks is a fast tunnel proxy that helps you bypass firewalls"
|
2015
1809
|
|
2016
|
-
msgid "
|
2017
|
-
msgstr "
|
1810
|
+
msgid "config.shadowsocks.label"
|
1811
|
+
msgstr "Shadowsocks"
|
2018
1812
|
|
2019
|
-
msgid "
|
2020
|
-
msgstr "
|
1813
|
+
msgid "config.shadowsocks2022_enable.description"
|
1814
|
+
msgstr ""
|
1815
|
+
"Shadowsocks 2022 is a secure Proxy Protocol for TCP and UDP traffic. The "
|
1816
|
+
"proxy traffic is indistinguishable from a random byte stream, and therefore "
|
1817
|
+
"can circumvent firewalls and Internet censors that rely on DPI (Deep Packet "
|
1818
|
+
"Inspection)"
|
2021
1819
|
|
2022
|
-
msgid "
|
2023
|
-
msgstr "
|
1820
|
+
msgid "config.shadowsocks2022_enable.label"
|
1821
|
+
msgstr "⭕️ Enable Shadowsocks 2022"
|
2024
1822
|
|
2025
|
-
msgid "
|
2026
|
-
msgstr "
|
1823
|
+
msgid "config.shadowsocks2022_method.description"
|
1824
|
+
msgstr "This method also used in ShadowTLS and SSFakeTLS"
|
2027
1825
|
|
2028
|
-
msgid "
|
2029
|
-
msgstr "
|
1826
|
+
msgid "config.shadowsocks2022_method.label"
|
1827
|
+
msgstr "🔐 Shadowsocks Encrypytion Method"
|
2030
1828
|
|
2031
|
-
msgid "
|
2032
|
-
msgstr "
|
1829
|
+
msgid "config.shadowsocks2022_port.description"
|
1830
|
+
msgstr "It needs both UDP and TCP to be Free"
|
2033
1831
|
|
2034
|
-
msgid "
|
2035
|
-
msgstr "
|
1832
|
+
msgid "config.shadowsocks2022_port.label"
|
1833
|
+
msgstr "↔️ Shadowsocks 2022 Port"
|
2036
1834
|
|
2037
|
-
msgid "
|
2038
|
-
msgstr "
|
1835
|
+
msgid "config.shadowtls.description"
|
1836
|
+
msgstr ""
|
1837
|
+
"A Proxy to expose real tls handshake to the firewall.\n"
|
1838
|
+
"\n"
|
1839
|
+
"It works like Trojan but It does not require signing certificate. the firewall will see real tls handshake with valid certificate that you choose."
|
2039
1840
|
|
2040
|
-
msgid "
|
2041
|
-
msgstr "
|
1841
|
+
msgid "config.shadowtls.label"
|
1842
|
+
msgstr "ShadowTLS"
|
2042
1843
|
|
2043
|
-
msgid "
|
2044
|
-
msgstr "
|
1844
|
+
msgid "config.shadowtls_enable.description"
|
1845
|
+
msgstr ""
|
1846
|
+
"ShadowTLS Is a new Protocol but it can hide the traffic from the government "
|
1847
|
+
"using FakeTLS"
|
2045
1848
|
|
2046
|
-
msgid "
|
2047
|
-
msgstr "
|
1849
|
+
msgid "config.shadowtls_enable.label"
|
1850
|
+
msgstr "☑️ ShadowTLS"
|
2048
1851
|
|
2049
|
-
msgid "
|
2050
|
-
msgstr "
|
1852
|
+
msgid "config.shadowtls_fakedomain.description"
|
1853
|
+
msgstr ""
|
1854
|
+
"Please use a well known domain in your data center. for example, If you are "
|
1855
|
+
"In azure data center, microsoft-update.com Is a good example"
|
2051
1856
|
|
2052
|
-
msgid "
|
2053
|
-
msgstr "
|
1857
|
+
msgid "config.shadowtls_fakedomain.label"
|
1858
|
+
msgstr "🌍 ShadowTLS Fake Domain"
|
2054
1859
|
|
2055
|
-
msgid "
|
2056
|
-
msgstr "
|
1860
|
+
msgid "config.shared_secret.description"
|
1861
|
+
msgstr ""
|
1862
|
+
"Some Proxies don't support Accounting currently so we have to use a secret "
|
1863
|
+
"for them"
|
2057
1864
|
|
2058
|
-
msgid "
|
2059
|
-
msgstr "
|
1865
|
+
msgid "config.shared_secret.label"
|
1866
|
+
msgstr "🔐 Shared Secret"
|
2060
1867
|
|
2061
|
-
msgid "
|
2062
|
-
msgstr "
|
1868
|
+
msgid "config.show_usage_in_sublink.description"
|
1869
|
+
msgstr ""
|
1870
|
+
"This option creates a Fake Config in the user's sub link that shows the "
|
1871
|
+
"user's remaining volume"
|
2063
1872
|
|
2064
|
-
msgid "
|
2065
|
-
msgstr "
|
1873
|
+
msgid "config.show_usage_in_sublink.label"
|
1874
|
+
msgstr "👁️🗨️ Show Usage in Sublink"
|
2066
1875
|
|
2067
|
-
msgid "
|
2068
|
-
msgstr "
|
1876
|
+
msgid "config.speed_test.description"
|
1877
|
+
msgstr ""
|
1878
|
+
"Allow your users to do Speed Test. It helps them to identify the link "
|
1879
|
+
"quality"
|
2069
1880
|
|
2070
|
-
msgid "
|
2071
|
-
msgstr "
|
1881
|
+
msgid "config.speed_test.label"
|
1882
|
+
msgstr "🚀 Speed Test"
|
2072
1883
|
|
2073
|
-
msgid "
|
2074
|
-
msgstr "
|
1884
|
+
msgid "config.ssfaketls.description"
|
1885
|
+
msgstr ""
|
1886
|
+
"Shadowsocks FakeTLS is a simple obfusacting tool that encapsulate the date "
|
1887
|
+
"In tls packet"
|
2075
1888
|
|
2076
|
-
msgid "
|
2077
|
-
msgstr "
|
1889
|
+
msgid "config.ssfaketls.label"
|
1890
|
+
msgstr "Shadowsocks FakeTLS"
|
2078
1891
|
|
2079
|
-
msgid "
|
2080
|
-
msgstr "
|
1892
|
+
msgid "config.ssfaketls_enable.description"
|
1893
|
+
msgstr "Simple OBFS Protocol is Not Recommended"
|
2081
1894
|
|
2082
|
-
msgid "
|
2083
|
-
msgstr "
|
1895
|
+
msgid "config.ssfaketls_enable.label"
|
1896
|
+
msgstr "🆎 Shadowsocks FakeTLS (Simple OBFS)"
|
2084
1897
|
|
2085
|
-
msgid "
|
2086
|
-
msgstr "
|
1898
|
+
msgid "config.ssfaketls_fakedomain.description"
|
1899
|
+
msgstr ""
|
1900
|
+
"Please use a well known domain in your data center. for example, If you are "
|
1901
|
+
"in Azure data center, microsoft-update.com Is a good example"
|
2087
1902
|
|
2088
|
-
msgid "
|
2089
|
-
msgstr "
|
1903
|
+
msgid "config.ssfaketls_fakedomain.label"
|
1904
|
+
msgstr "🌍 SS FakeTLS FakeDomain"
|
2090
1905
|
|
2091
|
-
msgid "
|
2092
|
-
msgstr "
|
1906
|
+
msgid "config.ssh.description"
|
1907
|
+
msgstr ""
|
1908
|
+
"ℹ️ An SSH proxy, also known as an SSH tunnel or SSH port forwarding, is a "
|
1909
|
+
"secure method of creating a secure communication channel between two "
|
1910
|
+
"machines over an insecure network. We have a specific application which is "
|
1911
|
+
"completely different from SSH server and can not execute any commands"
|
2093
1912
|
|
2094
|
-
msgid "
|
2095
|
-
msgstr "
|
1913
|
+
msgid "config.ssh.label"
|
1914
|
+
msgstr "SSH Proxy"
|
2096
1915
|
|
2097
|
-
msgid "
|
2098
|
-
msgstr "
|
1916
|
+
msgid "config.ssh_server_enable.description"
|
1917
|
+
msgstr "SSH Proxy is completely different than original SSH Server"
|
2099
1918
|
|
2100
|
-
msgid "
|
2101
|
-
msgstr "
|
1919
|
+
msgid "config.ssh_server_enable.label"
|
1920
|
+
msgstr "✔️ Enable SSH Proxy"
|
2102
1921
|
|
2103
|
-
msgid ""
|
2104
|
-
"In this section, you can add your domain. You need to add at least one "
|
2105
|
-
"domain in direct mode."
|
1922
|
+
msgid "config.ssh_server_port.description"
|
2106
1923
|
msgstr ""
|
2107
|
-
"
|
2108
|
-
"
|
2109
|
-
"2️⃣ 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"
|
2110
|
-
"<br>\n"
|
2111
|
-
"3️⃣ If you have Multiple IPv4 or IPv6 in your Panel you have to add the domain pointed to them as Relay."
|
1924
|
+
"This is completely different from your original SSH server. It is a "
|
1925
|
+
"dedicated program."
|
2112
1926
|
|
2113
|
-
msgid "
|
2114
|
-
msgstr "
|
1927
|
+
msgid "config.ssh_server_port.label"
|
1928
|
+
msgstr "↔️ SSH Proxy Port"
|
2115
1929
|
|
2116
|
-
msgid "
|
2117
|
-
msgstr "
|
1930
|
+
msgid "config.ssh_server_redis_url.description"
|
1931
|
+
msgstr "Not Used"
|
2118
1932
|
|
2119
|
-
msgid "
|
2120
|
-
msgstr "
|
1933
|
+
msgid "config.ssh_server_redis_url.label"
|
1934
|
+
msgstr "SSH user database address"
|
2121
1935
|
|
2122
|
-
msgid "
|
2123
|
-
msgstr "
|
1936
|
+
msgid "config.ssr.description"
|
1937
|
+
msgstr ""
|
1938
|
+
"ShadowsocksR is a fork of the original Shadowsocks project, claimed to be "
|
1939
|
+
"superior in terms of security and stability."
|
2124
1940
|
|
2125
|
-
msgid "
|
2126
|
-
msgstr "
|
1941
|
+
msgid "config.ssr.label"
|
1942
|
+
msgstr "SSR"
|
2127
1943
|
|
2128
|
-
msgid "
|
2129
|
-
msgstr "
|
1944
|
+
msgid "config.ssr_enable.description"
|
1945
|
+
msgstr ""
|
1946
|
+
"ShadowsocksR is a Fork of the original Shadowsocks project, claimed to be "
|
1947
|
+
"superior in terms of security and stability. Not tested. Not support "
|
1948
|
+
"accounting."
|
2130
1949
|
|
2131
|
-
msgid "
|
2132
|
-
msgstr "
|
1950
|
+
msgid "config.ssr_enable.label"
|
1951
|
+
msgstr "Enable SSR"
|
2133
1952
|
|
2134
|
-
msgid ""
|
2135
|
-
"User usage will be updated every 6 minutes. To update it now click <a href=\"%(link)s\"\n"
|
2136
|
-
" class=\"btn btn-info\">here</a>"
|
1953
|
+
msgid "config.ssr_fakedomain.description"
|
2137
1954
|
msgstr ""
|
2138
|
-
"
|
2139
|
-
"
|
1955
|
+
"Please use a well known domain In your data center. for example, If you are "
|
1956
|
+
"In Azure data center, microsoft-update.com Is a good example"
|
2140
1957
|
|
2141
|
-
msgid "
|
2142
|
-
msgstr "
|
1958
|
+
msgid "config.ssr_fakedomain.label"
|
1959
|
+
msgstr "SSR FakeDomain"
|
2143
1960
|
|
2144
|
-
msgid "
|
2145
|
-
msgstr "
|
1961
|
+
msgid "config.tcp_enable.description"
|
1962
|
+
msgstr "config.tcp_enable.description"
|
2146
1963
|
|
2147
|
-
msgid "
|
2148
|
-
msgstr "
|
1964
|
+
msgid "config.tcp_enable.label"
|
1965
|
+
msgstr "config.tcp_enable.label"
|
2149
1966
|
|
2150
|
-
msgid "
|
2151
|
-
msgstr "
|
1967
|
+
msgid "config.telegram.description"
|
1968
|
+
msgstr "A proxy designed for Telegram to bypass Telegram filtering"
|
2152
1969
|
|
2153
|
-
msgid "
|
2154
|
-
msgstr "
|
1970
|
+
msgid "config.telegram.label"
|
1971
|
+
msgstr "Telegram Proxy "
|
2155
1972
|
|
2156
|
-
msgid "
|
2157
|
-
msgstr "
|
1973
|
+
msgid "config.telegram_adtag.description"
|
1974
|
+
msgstr ""
|
1975
|
+
"It is used to show a Sponsored Channel in the client's chat list. To advertise a channel get a tag from @MTProxybot .\n"
|
1976
|
+
"enter code 0123456789ABCDEF0123456789ABCDEF in that bot."
|
2158
1977
|
|
2159
|
-
msgid "
|
2160
|
-
msgstr "
|
1978
|
+
msgid "config.telegram_adtag.label"
|
1979
|
+
msgstr "📍 Telegram AD Tag"
|
2161
1980
|
|
2162
|
-
msgid "
|
2163
|
-
msgstr "
|
1981
|
+
msgid "config.telegram_bot_token.description"
|
1982
|
+
msgstr ""
|
1983
|
+
"To add Telegram bot feature. you need to create a bot with <a "
|
1984
|
+
"href=\"https://t.me/BotFather\" target=\"_blank\">@BotFather</a> and enter "
|
1985
|
+
"the API code in this field"
|
2164
1986
|
|
2165
|
-
msgid "
|
2166
|
-
msgstr "
|
1987
|
+
msgid "config.telegram_bot_token.label"
|
1988
|
+
msgstr "🔐 Telegram Bot Token"
|
2167
1989
|
|
2168
|
-
msgid "
|
2169
|
-
msgstr "
|
1990
|
+
msgid "config.telegram_enable.description"
|
1991
|
+
msgstr ""
|
1992
|
+
"<p data-pm-slice=\"1 1 []\">Telegram MTProto is used for Encapsulate "
|
1993
|
+
"Telegram Proxy as a tls traffic<br>⚠️ <span "
|
1994
|
+
"style=\"color:#d32f2f;\"><strong>This protocol requires a Direct "
|
1995
|
+
"Domain</strong></span></p>"
|
2170
1996
|
|
2171
|
-
msgid "
|
2172
|
-
msgstr "
|
2173
|
-
|
2174
|
-
msgid "app.v2rayng.title"
|
2175
|
-
msgstr "V2RayNG"
|
2176
|
-
|
2177
|
-
msgid "app.v2rayng.description"
|
2178
|
-
msgstr "V2RayNG Description"
|
2179
|
-
|
2180
|
-
msgid "app.hiddifyng.title"
|
2181
|
-
msgstr "HiddifyNG"
|
2182
|
-
|
2183
|
-
msgid "app.hiddifyng.description"
|
2184
|
-
msgstr "HiddifyNG Description"
|
1997
|
+
msgid "config.telegram_enable.label"
|
1998
|
+
msgstr "✔️ Enable Telegram MTProto"
|
2185
1999
|
|
2186
|
-
msgid "
|
2187
|
-
msgstr "
|
2000
|
+
msgid "config.telegram_fakedomain.description"
|
2001
|
+
msgstr ""
|
2002
|
+
"Please use a well known domain in your data center. for example, If you are "
|
2003
|
+
"in Azure data center, microsoft-update.com is a good example"
|
2188
2004
|
|
2189
|
-
msgid "
|
2190
|
-
msgstr "
|
2005
|
+
msgid "config.telegram_fakedomain.label"
|
2006
|
+
msgstr "📺 Telegram Fake Domain"
|
2191
2007
|
|
2192
|
-
msgid "
|
2193
|
-
msgstr "
|
2008
|
+
msgid "config.telegram_lib.description"
|
2009
|
+
msgstr ""
|
2010
|
+
"You can switch between different Telegram Libraries. Please note that only "
|
2011
|
+
"Python works in all servers, others may have some issue. Test Proxy after "
|
2012
|
+
"changing it"
|
2194
2013
|
|
2195
|
-
msgid "
|
2196
|
-
msgstr "
|
2014
|
+
msgid "config.telegram_lib.label"
|
2015
|
+
msgstr "🔢 Telegram Proxy Library"
|
2197
2016
|
|
2198
|
-
msgid "
|
2199
|
-
msgstr "
|
2017
|
+
msgid "config.tls.description"
|
2018
|
+
msgstr "TLS Configurations could be set in this section"
|
2200
2019
|
|
2201
|
-
msgid "
|
2202
|
-
msgstr "
|
2020
|
+
msgid "config.tls.label"
|
2021
|
+
msgstr "TLS Configuration"
|
2203
2022
|
|
2204
|
-
msgid "
|
2205
|
-
msgstr "
|
2023
|
+
msgid "config.tls_fragment_enable.description"
|
2024
|
+
msgstr "Under some circumstances, it can bypass the SNI blacklist system"
|
2206
2025
|
|
2207
|
-
msgid "
|
2208
|
-
msgstr "
|
2026
|
+
msgid "config.tls_fragment_enable.label"
|
2027
|
+
msgstr "⏯ Enable TLS Fragment"
|
2209
2028
|
|
2210
|
-
msgid "
|
2211
|
-
msgstr "
|
2029
|
+
msgid "config.tls_fragment_size.description"
|
2030
|
+
msgstr "The Size of each Packet"
|
2212
2031
|
|
2213
|
-
msgid "
|
2214
|
-
msgstr "
|
2032
|
+
msgid "config.tls_fragment_size.label"
|
2033
|
+
msgstr "🎚 TLS Fragment Size"
|
2215
2034
|
|
2216
|
-
msgid "
|
2217
|
-
msgstr "
|
2035
|
+
msgid "config.tls_fragment_sleep.description"
|
2036
|
+
msgstr "The time delay between Fragments"
|
2218
2037
|
|
2219
|
-
msgid "
|
2220
|
-
msgstr "
|
2038
|
+
msgid "config.tls_fragment_sleep.label"
|
2039
|
+
msgstr "⏱ TLS Fragment Sleep"
|
2221
2040
|
|
2222
|
-
msgid "
|
2223
|
-
msgstr "
|
2041
|
+
msgid "config.tls_mixed_case.description"
|
2042
|
+
msgstr "Enables TLS Mixed SNI Case Fragmentation"
|
2224
2043
|
|
2225
|
-
msgid "
|
2226
|
-
msgstr "
|
2044
|
+
msgid "config.tls_mixed_case.label"
|
2045
|
+
msgstr "🔠 Enable TLS Mixed SNI Case"
|
2227
2046
|
|
2228
|
-
msgid "
|
2229
|
-
msgstr "
|
2047
|
+
msgid "config.tls_padding_enable.description"
|
2048
|
+
msgstr "Enables Padding for TLS Fragmentation"
|
2230
2049
|
|
2231
|
-
msgid "
|
2232
|
-
msgstr "
|
2050
|
+
msgid "config.tls_padding_enable.label"
|
2051
|
+
msgstr "♒️ Enable TLS Padding"
|
2233
2052
|
|
2234
|
-
msgid ""
|
2235
|
-
"
|
2236
|
-
msgstr ""
|
2237
|
-
"Join our Hiddify Telegram channel to get the latest updates on Hiddify."
|
2053
|
+
msgid "config.tls_padding_length.description"
|
2054
|
+
msgstr "The length of the Padding for TLS Fragmentation"
|
2238
2055
|
|
2239
|
-
msgid ""
|
2240
|
-
"
|
2241
|
-
msgstr "[Admin-exclusive message]: Customizable via settings."
|
2056
|
+
msgid "config.tls_padding_length.label"
|
2057
|
+
msgstr "📏 TLS Padding"
|
2242
2058
|
|
2243
|
-
msgid ""
|
2244
|
-
"Hooray 🎉 🎉 🎉 \n"
|
2245
|
-
"Welcome to hiddifybot.\n"
|
2246
|
-
"Start by clicking the link on the panel or entering your UUID."
|
2059
|
+
msgid "config.tls_ports.description"
|
2247
2060
|
msgstr ""
|
2248
|
-
"
|
2249
|
-
"
|
2250
|
-
"Start by clicking the link on the Panel or entering your UUID."
|
2251
|
-
|
2252
|
-
msgid "update"
|
2253
|
-
msgstr "update"
|
2254
|
-
|
2255
|
-
msgid "Welcome to admin bot. Choose your action"
|
2256
|
-
msgstr "Welcome to admin bot. Choose your action"
|
2061
|
+
"Comma separated integers indicating the ports to use as TLS Connection "
|
2062
|
+
"(Port 443 will be used in anycase)\n"
|
2257
2063
|
|
2258
|
-
msgid "
|
2259
|
-
msgstr "
|
2064
|
+
msgid "config.tls_ports.label"
|
2065
|
+
msgstr "🔎 TLS Ports"
|
2260
2066
|
|
2261
|
-
msgid "
|
2262
|
-
msgstr "
|
2067
|
+
msgid "config.tls_trick.description"
|
2068
|
+
msgstr "TLS Fragmentation configurations could be set in this section"
|
2263
2069
|
|
2264
|
-
msgid "
|
2265
|
-
msgstr "
|
2070
|
+
msgid "config.tls_trick.label"
|
2071
|
+
msgstr "TLS Trick"
|
2266
2072
|
|
2267
|
-
msgid "
|
2268
|
-
msgstr "
|
2073
|
+
msgid "config.too_advanced.description"
|
2074
|
+
msgstr ""
|
2075
|
+
"Specify The Proxy Path. It is important especially if you are using HTTP and"
|
2076
|
+
" VMess"
|
2269
2077
|
|
2270
|
-
msgid "
|
2271
|
-
msgstr "
|
2078
|
+
msgid "config.too_advanced.label"
|
2079
|
+
msgstr "Very Advanced Settings"
|
2272
2080
|
|
2273
|
-
msgid "
|
2274
|
-
msgstr "
|
2081
|
+
msgid "config.torrent_block.description"
|
2082
|
+
msgstr "Torrent Block Configurations could be set in this section."
|
2275
2083
|
|
2276
|
-
msgid "
|
2277
|
-
msgstr "
|
2084
|
+
msgid "config.torrent_block.label"
|
2085
|
+
msgstr "Torrent Block Configuration"
|
2278
2086
|
|
2279
|
-
msgid "
|
2280
|
-
msgstr "
|
2087
|
+
msgid "config.trojan_enable.description"
|
2088
|
+
msgstr "config.trojan_enable.description"
|
2281
2089
|
|
2282
|
-
msgid ""
|
2283
|
-
|
2284
|
-
"\n"
|
2285
|
-
"Your hiddify information is\n"
|
2286
|
-
"UUID: {}\n"
|
2287
|
-
"Last online date: {}\n"
|
2288
|
-
"Expire time: {}\n"
|
2289
|
-
"Usage class: {}\n"
|
2290
|
-
msgstr ""
|
2291
|
-
"Dear {}\n"
|
2292
|
-
"\n"
|
2293
|
-
"Your Hiddify Information is\n"
|
2294
|
-
"UUID: {}\n"
|
2295
|
-
"Last Online Date: {}\n"
|
2296
|
-
"Expire Time: {}\n"
|
2297
|
-
"Usage Class: {}\n"
|
2090
|
+
msgid "config.trojan_enable.label"
|
2091
|
+
msgstr "config.trojan_enable.label"
|
2298
2092
|
|
2299
|
-
msgid ""
|
2300
|
-
"Your hiddify instance information \n"
|
2301
|
-
"Domain: {} \n"
|
2302
|
-
"Usage limit: {} GB\n"
|
2303
|
-
"Current usage: {} GB\n"
|
2304
|
-
"Expires at: {} \n"
|
2305
|
-
"Remaining days: {} \n"
|
2306
|
-
"\n"
|
2307
|
-
"\n"
|
2308
|
-
" Happy using 🎉 🎉 🎉 \n"
|
2093
|
+
msgid "config.tuic.description"
|
2309
2094
|
msgstr ""
|
2310
|
-
"
|
2311
|
-
"Domain: {} \n"
|
2312
|
-
"Usage Limit: {} GB\n"
|
2313
|
-
"Current Usage: {} GB\n"
|
2314
|
-
"Expires at: {} \n"
|
2315
|
-
"Remaining Days: {} \n"
|
2316
|
-
"\n"
|
2095
|
+
"Delicately-TUICed High-Performance proxy is on top of the QUIC protocol. \n"
|
2317
2096
|
"\n"
|
2318
|
-
"
|
2097
|
+
"TUIC's goal is to minimize the handshake latency as much as possible"
|
2319
2098
|
|
2320
|
-
msgid "
|
2321
|
-
msgstr "
|
2099
|
+
msgid "config.tuic.label"
|
2100
|
+
msgstr "TUIC"
|
2322
2101
|
|
2323
|
-
msgid "
|
2324
|
-
msgstr "
|
2102
|
+
msgid "config.tuic_enable.description"
|
2103
|
+
msgstr "It is a UDP based protocol similar to QUIC"
|
2325
2104
|
|
2326
|
-
msgid "
|
2327
|
-
msgstr "
|
2105
|
+
msgid "config.tuic_enable.label"
|
2106
|
+
msgstr "Enable TUIC"
|
2328
2107
|
|
2329
|
-
msgid "
|
2330
|
-
msgstr "
|
2108
|
+
msgid "config.tuic_port.description"
|
2109
|
+
msgstr "Use comma to separate ports like 63000,60000"
|
2331
2110
|
|
2332
|
-
msgid "
|
2333
|
-
msgstr "
|
2111
|
+
msgid "config.tuic_port.label"
|
2112
|
+
msgstr "TUIC Ports"
|
2334
2113
|
|
2335
|
-
msgid "
|
2336
|
-
msgstr "
|
2114
|
+
msgid "config.unique_id.description"
|
2115
|
+
msgstr "-"
|
2337
2116
|
|
2338
|
-
msgid "
|
2339
|
-
msgstr "
|
2117
|
+
msgid "config.unique_id.label"
|
2118
|
+
msgstr "-"
|
2340
2119
|
|
2341
|
-
msgid ""
|
2342
|
-
"The page has been moved to a new link. Please copy and save the new link."
|
2120
|
+
msgid "config.utls.description"
|
2343
2121
|
msgstr ""
|
2344
|
-
"
|
2122
|
+
"This Option Will Simulate Different Browsers, Therefore, GFW Can Not Detect "
|
2123
|
+
"Your Browsing"
|
2345
2124
|
|
2346
|
-
msgid "
|
2347
|
-
msgstr "
|
2125
|
+
msgid "config.utls.label"
|
2126
|
+
msgstr "❇️ uTLS"
|
2348
2127
|
|
2349
|
-
msgid "
|
2350
|
-
msgstr "
|
2128
|
+
msgid "config.v2ray_enable.description"
|
2129
|
+
msgstr "V2ray does not support accounting and not suggested"
|
2351
2130
|
|
2352
|
-
msgid "
|
2353
|
-
msgstr "
|
2131
|
+
msgid "config.v2ray_enable.label"
|
2132
|
+
msgstr "♈️ Enable V2Ray "
|
2354
2133
|
|
2355
|
-
msgid "
|
2356
|
-
msgstr "
|
2134
|
+
msgid "config.validation-error"
|
2135
|
+
msgstr "There is an error in one of the fields."
|
2357
2136
|
|
2358
|
-
msgid "
|
2137
|
+
msgid "config.validation-success"
|
2359
2138
|
msgstr ""
|
2360
|
-
"
|
2361
|
-
"
|
2362
|
-
"<br />"
|
2139
|
+
"Configs have been changed successfully. Click %(link)s to apply the configs."
|
2140
|
+
" It may take 2 minutes to apply"
|
2363
2141
|
|
2364
|
-
msgid "
|
2365
|
-
msgstr "
|
2142
|
+
msgid "config.validation-success-no-reset"
|
2143
|
+
msgstr " ✅ Configs have been changed successfully"
|
2366
2144
|
|
2367
|
-
msgid "
|
2368
|
-
msgstr "
|
2145
|
+
msgid "config.vless_enable.description"
|
2146
|
+
msgstr "config.vless_enable.description"
|
2369
2147
|
|
2370
|
-
msgid "
|
2371
|
-
msgstr "
|
2148
|
+
msgid "config.vless_enable.label"
|
2149
|
+
msgstr "config.vless_enable.label"
|
2372
2150
|
|
2373
|
-
msgid "
|
2374
|
-
msgstr ""
|
2375
|
-
"📌 Please install HiddifyNG from either of these links:\n"
|
2376
|
-
"<br />\n"
|
2377
|
-
" %(dl_link)s %(play_link)s\n"
|
2378
|
-
"<br />\n"
|
2379
|
-
"Then click on the link below and open it in HiddifyNG.\n"
|
2380
|
-
"<br />"
|
2151
|
+
msgid "config.vmess_enable.description"
|
2152
|
+
msgstr "Active VMess Protocol"
|
2381
2153
|
|
2382
|
-
msgid "
|
2383
|
-
msgstr "
|
2154
|
+
msgid "config.vmess_enable.label"
|
2155
|
+
msgstr "♈️ Enable VMess"
|
2384
2156
|
|
2385
|
-
msgid "
|
2386
|
-
msgstr ""
|
2387
|
-
"Alternative v2rayNG <button class='btn btn-sm btn-default' onclick='show_video('android-v2rayng')'><i class='fa-solid fa-question'></i> </button>\n"
|
2388
|
-
"<br />\n"
|
2389
|
-
"<br />"
|
2390
|
-
|
2391
|
-
msgid "V2rayNG intro"
|
2157
|
+
msgid "config.warp.description"
|
2392
2158
|
msgstr ""
|
2393
|
-
"
|
2394
|
-
"
|
2395
|
-
"
|
2159
|
+
"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"
|
2160
|
+
"<br>\n"
|
2161
|
+
"For example, if you have a problem with captcha on Google, it might be fixed this way."
|
2396
2162
|
|
2397
|
-
msgid "
|
2398
|
-
msgstr "
|
2163
|
+
msgid "config.warp.label"
|
2164
|
+
msgstr "WARP➕"
|
2399
2165
|
|
2400
|
-
msgid "
|
2401
|
-
msgstr "
|
2166
|
+
msgid "config.warp_enable.description"
|
2167
|
+
msgstr ""
|
2168
|
+
"Warp helps you bypass Google, Spotify and Netflix restrictions by hiding "
|
2169
|
+
"server IP "
|
2402
2170
|
|
2403
|
-
msgid "
|
2404
|
-
msgstr "
|
2171
|
+
msgid "config.warp_enable.label"
|
2172
|
+
msgstr "Enable WARP+"
|
2405
2173
|
|
2406
|
-
msgid "
|
2407
|
-
msgstr "
|
2174
|
+
msgid "config.warp_mode.description"
|
2175
|
+
msgstr ""
|
2176
|
+
"✴️ All : All Sites use Warp IPs in outbound\n"
|
2177
|
+
"<br>\n"
|
2178
|
+
"☑️ Only Domestic and Blocked Sites: Only Domestic Sites and websites like Google, Spotify, Netflix, OpenAi, IPinfo.io use Warp IPs in outbound"
|
2408
2179
|
|
2409
|
-
msgid "
|
2410
|
-
msgstr "
|
2180
|
+
msgid "config.warp_mode.label"
|
2181
|
+
msgstr "✴️ Warp+ Mode"
|
2411
2182
|
|
2412
|
-
msgid "
|
2413
|
-
msgstr "
|
2183
|
+
msgid "config.warp_plus_code.description"
|
2184
|
+
msgstr ""
|
2185
|
+
"🔝 Increases browsing speed. To get the Key, go to the <a href='https://1.1.1.1/'> 1.1.1.1 </a>\n"
|
2186
|
+
"app and purchase the original KEY from Cloudflare\n"
|
2187
|
+
"<br>\n"
|
2188
|
+
"⚠️ If there is an error in this Key, the WARP will be disabled"
|
2414
2189
|
|
2415
|
-
msgid "
|
2416
|
-
msgstr "
|
2190
|
+
msgid "config.warp_plus_code.label"
|
2191
|
+
msgstr "🔑 Warp Plus Key"
|
2417
2192
|
|
2418
|
-
msgid "
|
2419
|
-
msgstr "
|
2193
|
+
msgid "config.warp_sites.description"
|
2194
|
+
msgstr ""
|
2195
|
+
"Add additional sites to pass through Warp (only when warp mode is not None)"
|
2420
2196
|
|
2421
|
-
msgid "
|
2422
|
-
msgstr "
|
2197
|
+
msgid "config.warp_sites.label"
|
2198
|
+
msgstr "🆚 Additional Warp Sites"
|
2423
2199
|
|
2424
|
-
msgid "
|
2425
|
-
msgstr "
|
2200
|
+
msgid "config.wireguard.description"
|
2201
|
+
msgstr ""
|
2202
|
+
"WireGuard is a lightweight, UDP based protocol known for its simplicity, "
|
2203
|
+
"efficiency, and strong security. It offers quick setup, transparent code, "
|
2204
|
+
"and has gained popularity for its ease of use across various operating "
|
2205
|
+
"systems"
|
2426
2206
|
|
2427
|
-
msgid "
|
2428
|
-
msgstr "
|
2207
|
+
msgid "config.wireguard.label"
|
2208
|
+
msgstr "WireGuard"
|
2429
2209
|
|
2430
|
-
msgid ""
|
2431
|
-
"Please connect your telegram account to the panel to be informed about "
|
2432
|
-
"latest news."
|
2210
|
+
msgid "config.wireguard_enable.description"
|
2433
2211
|
msgstr ""
|
2434
|
-
"
|
2435
|
-
"
|
2436
|
-
|
2437
|
-
msgid "next"
|
2438
|
-
msgstr "Next"
|
2212
|
+
"<p>WireGuard is UDP based protocol. (⚠️ It is Working In <a "
|
2213
|
+
"href=\"https://github.com/hiddify/hiddify-next\" target=\"_blank\">Hiddify "
|
2214
|
+
"Next</a>)</p>"
|
2439
2215
|
|
2440
|
-
msgid "
|
2441
|
-
msgstr "
|
2216
|
+
msgid "config.wireguard_enable.label"
|
2217
|
+
msgstr "🐉 Enable WireGuard"
|
2442
2218
|
|
2443
|
-
msgid "
|
2444
|
-
msgstr "
|
2219
|
+
msgid "config.wireguard_ipv4.description"
|
2220
|
+
msgstr "-"
|
2445
2221
|
|
2446
|
-
msgid "
|
2447
|
-
msgstr "
|
2222
|
+
msgid "config.wireguard_ipv4.label"
|
2223
|
+
msgstr "-"
|
2448
2224
|
|
2449
|
-
msgid "
|
2450
|
-
msgstr "
|
2225
|
+
msgid "config.wireguard_ipv6.description"
|
2226
|
+
msgstr "-"
|
2451
2227
|
|
2452
|
-
msgid ""
|
2453
|
-
|
2454
|
-
"expected=%(expected_country)s"
|
2455
|
-
msgstr ""
|
2456
|
-
"You should visit this page without VPN Your Country =%(your_country)s\n"
|
2457
|
-
"Expected=%(expected_country)s"
|
2228
|
+
msgid "config.wireguard_ipv6.label"
|
2229
|
+
msgstr "-"
|
2458
2230
|
|
2459
|
-
msgid ""
|
2460
|
-
"Please connect your telegram accout to the panel to be informed about latest"
|
2461
|
-
" news."
|
2231
|
+
msgid "config.wireguard_noise_trick.description"
|
2462
2232
|
msgstr ""
|
2463
|
-
"
|
2464
|
-
"
|
2233
|
+
"This method introduces extra noise to prevent detection and blocking by the "
|
2234
|
+
"GFW"
|
2465
2235
|
|
2466
|
-
msgid "
|
2467
|
-
msgstr "
|
2236
|
+
msgid "config.wireguard_noise_trick.label"
|
2237
|
+
msgstr "💥 WireGuard Noise Trick"
|
2468
2238
|
|
2469
|
-
msgid "
|
2470
|
-
msgstr "
|
2239
|
+
msgid "config.wireguard_port.description"
|
2240
|
+
msgstr "WireGuard Port"
|
2471
2241
|
|
2472
|
-
msgid "
|
2473
|
-
msgstr "
|
2242
|
+
msgid "config.wireguard_port.label"
|
2243
|
+
msgstr "↔️ WireGuard Port"
|
2474
2244
|
|
2475
|
-
msgid "
|
2476
|
-
msgstr "
|
2245
|
+
msgid "config.wireguard_private_key.description"
|
2246
|
+
msgstr "-"
|
2477
2247
|
|
2478
|
-
msgid "
|
2479
|
-
msgstr "
|
2248
|
+
msgid "config.wireguard_private_key.label"
|
2249
|
+
msgstr "-"
|
2480
2250
|
|
2481
|
-
msgid ""
|
2482
|
-
"
|
2483
|
-
" href='%(sub)s'>this universal link</a> to copy and paste it on\n"
|
2484
|
-
" your application, or:"
|
2485
|
-
msgstr ""
|
2486
|
-
"If the application do not open automatically, please click <a class='btn btn-primary copy-link'\n"
|
2487
|
-
" href='%(sub)s'>this universal link</a> to copy and paste it on\n"
|
2488
|
-
" your application, or:"
|
2251
|
+
msgid "config.wireguard_public_key.description"
|
2252
|
+
msgstr "-"
|
2489
2253
|
|
2490
|
-
msgid "
|
2491
|
-
msgstr "
|
2254
|
+
msgid "config.wireguard_public_key.label"
|
2255
|
+
msgstr "-"
|
2492
2256
|
|
2493
|
-
msgid "
|
2494
|
-
msgstr "
|
2257
|
+
msgid "config.ws_enable.description"
|
2258
|
+
msgstr "Websocket creates a tunnel over HTTP that is useful to be used in CDN"
|
2495
2259
|
|
2496
|
-
msgid "
|
2497
|
-
msgstr "
|
2260
|
+
msgid "config.ws_enable.label"
|
2261
|
+
msgstr "🔰 Enable Websocket"
|
2498
2262
|
|
2499
|
-
msgid "
|
2500
|
-
msgstr "
|
2263
|
+
msgid "config.xtls_enable.description"
|
2264
|
+
msgstr "config.xtls_enable.description"
|
2501
2265
|
|
2502
|
-
msgid "
|
2503
|
-
msgstr "
|
2266
|
+
msgid "config.xtls_enable.label"
|
2267
|
+
msgstr "config.xtls_enable.label"
|
2504
2268
|
|
2505
|
-
msgid "
|
2506
|
-
msgstr "
|
2269
|
+
msgid "config.invalid uuid"
|
2270
|
+
msgstr ""
|
2271
|
+
"Invalid UUID secret. example: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6\n"
|
2272
|
+
"\n"
|
2507
2273
|
|
2508
|
-
msgid "
|
2509
|
-
msgstr "Copy
|
2274
|
+
msgid "copy"
|
2275
|
+
msgstr "Copy"
|
2510
2276
|
|
2511
|
-
msgid "
|
2512
|
-
msgstr "
|
2277
|
+
msgid "daily"
|
2278
|
+
msgstr "⏰ Daily"
|
2513
2279
|
|
2514
2280
|
msgid "days"
|
2515
2281
|
msgstr "Days"
|
2516
2282
|
|
2517
|
-
msgid "
|
2518
|
-
msgstr "
|
2519
|
-
|
2520
|
-
msgid "Too many Connected IPs"
|
2521
|
-
msgstr "Too Many Connected IPs"
|
2522
|
-
|
2523
|
-
msgid "View in Telegram"
|
2524
|
-
msgstr "View in Telegram"
|
2283
|
+
msgid "desktop"
|
2284
|
+
msgstr "Desktop"
|
2525
2285
|
|
2526
|
-
msgid "
|
2527
|
-
msgstr "
|
2286
|
+
msgid "direct"
|
2287
|
+
msgstr "➡️ Direct"
|
2528
2288
|
|
2529
|
-
msgid "
|
2530
|
-
msgstr "
|
2289
|
+
msgid "domain.cdn"
|
2290
|
+
msgstr "CDN"
|
2531
2291
|
|
2532
|
-
msgid "
|
2533
|
-
msgstr "
|
2292
|
+
msgid "domain.description"
|
2293
|
+
msgstr ""
|
2294
|
+
"Please fill in this field carefully and correctly. Otherwise, proxies will "
|
2295
|
+
"run into problems. Please visit <a href='https://github.com/hiddify/hiddify-"
|
2296
|
+
"config/wiki/راهنمای-تنظیم-دامنه-و-نهایی-کردن-نصب#آموزش-ساخت-زیردامنه'> "
|
2297
|
+
"Help</a> to learn how to create a subdomain."
|
2534
2298
|
|
2535
|
-
msgid "
|
2536
|
-
msgstr "
|
2299
|
+
msgid "domain.domain"
|
2300
|
+
msgstr "Domain"
|
2537
2301
|
|
2538
|
-
msgid "
|
2302
|
+
msgid "domain.domain_fronting.description"
|
2539
2303
|
msgstr ""
|
2540
|
-
"
|
2541
|
-
"
|
2542
|
-
"<br />"
|
2304
|
+
"It is used to simulate another website instead of your website in SNI. therefore, GFW can not filter your Domain\n"
|
2305
|
+
"<a href='https://github.com/hiddify/hiddify-config/wiki/Guide-for-domain-fronting'>Guide</a>. ⚠️CloudFlare does not support Domain Fronting."
|
2543
2306
|
|
2544
|
-
msgid "
|
2545
|
-
msgstr "
|
2307
|
+
msgid "domain.domain_fronting.label"
|
2308
|
+
msgstr "🔒 Enable TLS Domain Fronting"
|
2546
2309
|
|
2547
|
-
msgid "
|
2548
|
-
msgstr "
|
2310
|
+
msgid "domain.ip"
|
2311
|
+
msgstr "IP"
|
2549
2312
|
|
2550
|
-
msgid "
|
2551
|
-
msgstr "
|
2313
|
+
msgid "domain.mode"
|
2314
|
+
msgstr "Mode"
|
2552
2315
|
|
2553
|
-
msgid "
|
2554
|
-
msgstr "
|
2316
|
+
msgid "download"
|
2317
|
+
msgstr "Direct Download"
|
2555
2318
|
|
2556
|
-
msgid "
|
2557
|
-
msgstr "
|
2319
|
+
msgid "fake"
|
2320
|
+
msgstr "🆎 Fake Site"
|
2558
2321
|
|
2559
|
-
msgid "
|
2560
|
-
msgstr "
|
2322
|
+
msgid "gRPC"
|
2323
|
+
msgstr "➿ gRPC"
|
2324
|
+
|
2325
|
+
msgid "gRPC is a H2 based protocol. Maybe it is faster for you!"
|
2326
|
+
msgstr "ℹ️ gRPC is a H2 based Protocol. Maybe it is faster for you!"
|
2561
2327
|
|
2562
2328
|
msgid "in parent panel"
|
2563
2329
|
msgstr "In Parent Panel"
|
2564
2330
|
|
2565
|
-
msgid "
|
2566
|
-
msgstr "
|
2331
|
+
msgid "install from google play"
|
2332
|
+
msgstr "<i class='fa-brands fa-google-play'></i> Google Play"
|
2567
2333
|
|
2568
|
-
msgid "
|
2569
|
-
msgstr "
|
2334
|
+
msgid "ios"
|
2335
|
+
msgstr "iOS"
|
2570
2336
|
|
2571
|
-
msgid "
|
2572
|
-
msgstr "
|
2337
|
+
msgid "items"
|
2338
|
+
msgstr "items"
|
2573
2339
|
|
2574
|
-
msgid "
|
2575
|
-
msgstr ""
|
2576
|
-
"✳️ We need your help In Developing this Project\n"
|
2577
|
-
" <br>\n"
|
2578
|
-
" If you are developer or content producer, please contact us at <a href='mailto:info@hiddify.com'>info@hiddify.com</a>\n"
|
2579
|
-
" <br><br>\n"
|
2580
|
-
" \n"
|
2581
|
-
" ℹ️ Also, we need financial help to further develop this panel and our service (we are Non-Profit).\n"
|
2582
|
-
" <br>\n"
|
2583
|
-
" <h5>Payment Methods :</h5>\n"
|
2584
|
-
" <ul>\n"
|
2585
|
-
" <li> <div class='btn-group'>\n"
|
2586
|
-
" <a role='button' data-copy='EQCWnykA-YhavOXgH3sf-uxtXLjy83_9n5bJPGRPE8r2247_' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n"
|
2587
|
-
" <a data-copy='EQCWnykA-YhavOXgH3sf-uxtXLjy83_9n5bJPGRPE8r2247_' role='button' class='btn btn-info share-link'>TON</a> </div></li>\n"
|
2588
|
-
" \n"
|
2589
|
-
" <li> <div class='btn-group'>\n"
|
2590
|
-
" <a role='button' data-copy='TXZtFUxyBPMSykAWogu7C4zmbjySKqMcDE' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n"
|
2591
|
-
" <a data-copy='TXZtFUxyBPMSykAWogu7C4zmbjySKqMcDE' role='button' class='btn btn-info share-link'>USDT (TRC20)</a> </div></li>\n"
|
2592
|
-
" \n"
|
2593
|
-
" <li> <div class='btn-group'>\n"
|
2594
|
-
" <a role='button' data-copy='MCHoh7xwaDBBnQgANPpBtXiekagV6KpdrM' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n"
|
2595
|
-
" <a data-copy='MCHoh7xwaDBBnQgANPpBtXiekagV6KpdrM' role='button' class='btn btn-info share-link'>Litecoin</a> </div></li>\n"
|
2596
|
-
" \n"
|
2597
|
-
" <li> <div class='btn-group'>\n"
|
2598
|
-
" <a role='button' data-copy='0xF5CFc65ee336B377C2a37EA3BCD0CaD0d0F0CbA0' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n"
|
2599
|
-
" <a data-copy='0xF5CFc65ee336B377C2a37EA3BCD0CaD0d0F0CbA0' role='button' class='btn btn-info share-link'>Ethereum</a> </div></li>\n"
|
2600
|
-
" \n"
|
2601
|
-
" <li> <div class='btn-group'>\n"
|
2602
|
-
" <a role='button' data-copy='bc1qkfp7n3wxu2zc9mdy20cf27d5pujj65myww8f60' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n"
|
2603
|
-
" <a data-copy='bc1qkfp7n3wxu2zc9mdy20cf27d5pujj65myww8f60' role='button' class='btn btn-info share-link'>Bitcoin</a> </div></li>\n"
|
2604
|
-
" \n"
|
2605
|
-
" <li> <div class='btn-group'>\n"
|
2606
|
-
" <a role='button' data-copy='DPerFS2vCu5XnE3He32BaPVTkUDcKLsEaj' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n"
|
2607
|
-
" <a data-copy='DPerFS2vCu5XnE3He32BaPVTkUDcKLsEaj' role='button' class='btn btn-info share-link'>Dogecoin</a> </div></li>\n"
|
2608
|
-
" </ul>\n"
|
2609
|
-
" \n"
|
2610
|
-
" <br>\n"
|
2611
|
-
" \n"
|
2612
|
-
" We need also other help:\n"
|
2613
|
-
" <ul>\n"
|
2614
|
-
" <li>👥 Share Hiddify Manager with Others</li>\n"
|
2615
|
-
" <li>📝Python Developer</li>\n"
|
2616
|
-
" <li>📝Swift Developer</li>\n"
|
2617
|
-
" <li>📝Flutter Developer</li>\n"
|
2618
|
-
" <li>📝Go Developer</li>\n"
|
2619
|
-
" <li>🖥Content Providers</li>\n"
|
2620
|
-
" </ul>\n"
|
2621
|
-
"\n"
|
2622
|
-
"\n"
|
2623
|
-
" Please contact us at <a href='mailto:info@hiddify.com'>info@hiddify.com</a> if you can help us."
|
2340
|
+
msgid "lang.en"
|
2341
|
+
msgstr "🇺🇸 English انگلیسی 英语"
|
2624
2342
|
|
2625
|
-
msgid "
|
2626
|
-
msgstr "
|
2343
|
+
msgid "lang.fa"
|
2344
|
+
msgstr "🇮🇷 Persian فارسی 波斯语"
|
2627
2345
|
|
2628
|
-
msgid "
|
2629
|
-
msgstr "
|
2346
|
+
msgid "lang.pt"
|
2347
|
+
msgstr "🇵🇹 Portuguese پرتغالی 葡萄牙語"
|
2630
2348
|
|
2631
|
-
msgid "
|
2632
|
-
msgstr "
|
2349
|
+
msgid "lang.ru"
|
2350
|
+
msgstr "🇷🇺 Russian روسی Русский"
|
2633
2351
|
|
2634
|
-
msgid "
|
2635
|
-
msgstr "
|
2352
|
+
msgid "lang.zh"
|
2353
|
+
msgstr "🇨🇳 Chinese چینی 简体中文"
|
2636
2354
|
|
2637
|
-
msgid "
|
2638
|
-
msgstr "
|
2355
|
+
msgid "lib.telegram.erlang"
|
2356
|
+
msgstr "✴️ Erlang : Good Performance"
|
2639
2357
|
|
2640
|
-
msgid "
|
2641
|
-
msgstr "
|
2358
|
+
msgid "lib.telegram.go"
|
2359
|
+
msgstr "✅ Go : Nornal Performance - No ad Support"
|
2642
2360
|
|
2643
|
-
msgid "
|
2644
|
-
msgstr "
|
2361
|
+
msgid "lib.telegram.python"
|
2362
|
+
msgstr "☑️ Python : Low Performance"
|
2645
2363
|
|
2646
|
-
msgid "
|
2647
|
-
msgstr "
|
2364
|
+
msgid "log"
|
2365
|
+
msgstr "📄 Log"
|
2648
2366
|
|
2649
|
-
msgid "
|
2650
|
-
msgstr "
|
2367
|
+
msgid "login.secret.description"
|
2368
|
+
msgstr "Secret code is given by the service provider."
|
2651
2369
|
|
2652
|
-
msgid "
|
2653
|
-
msgstr "
|
2370
|
+
msgid "login.secret.label"
|
2371
|
+
msgstr "Secret Code"
|
2654
2372
|
|
2655
|
-
msgid "
|
2656
|
-
msgstr "
|
2373
|
+
msgid "macOS"
|
2374
|
+
msgstr "macOS"
|
2657
2375
|
|
2658
|
-
msgid "
|
2659
|
-
msgstr "
|
2376
|
+
msgid "master.page-title"
|
2377
|
+
msgstr "Hiddify Manager"
|
2660
2378
|
|
2661
2379
|
msgid "monthly"
|
2662
2380
|
msgstr "🗓️ Monthly"
|
2663
2381
|
|
2664
|
-
msgid "
|
2665
|
-
msgstr "
|
2382
|
+
msgid "next"
|
2383
|
+
msgstr "Next"
|
2666
2384
|
|
2667
|
-
msgid "
|
2668
|
-
msgstr "
|
2385
|
+
msgid "no_reset"
|
2386
|
+
msgstr "⭐️ Without Reset"
|
2669
2387
|
|
2670
|
-
msgid "
|
2671
|
-
msgstr "
|
2388
|
+
msgid "node.diff-version"
|
2389
|
+
msgstr "node.diff-version"
|
2672
2390
|
|
2673
|
-
msgid "
|
2674
|
-
msgstr "
|
2391
|
+
msgid "node.mode.dscr"
|
2392
|
+
msgstr "node.mode.dscr"
|
2675
2393
|
|
2676
|
-
msgid "
|
2677
|
-
msgstr "
|
2394
|
+
msgid "node.mode.label"
|
2395
|
+
msgstr "Node Mode"
|
2678
2396
|
|
2679
|
-
msgid "
|
2680
|
-
msgstr "
|
2397
|
+
msgid "node.name.dscr"
|
2398
|
+
msgstr "node.name.dscr"
|
2681
2399
|
|
2682
|
-
msgid "
|
2683
|
-
msgstr "
|
2400
|
+
msgid "node.name.label"
|
2401
|
+
msgstr "Node Name"
|
2684
2402
|
|
2685
|
-
msgid "
|
2686
|
-
msgstr "
|
2403
|
+
msgid "node.uuid.dscr"
|
2404
|
+
msgstr "node.uuid.dscr"
|
2687
2405
|
|
2688
|
-
msgid "
|
2689
|
-
msgstr "
|
2406
|
+
msgid "node.uuid.label"
|
2407
|
+
msgstr "Node UUID"
|
2690
2408
|
|
2691
|
-
msgid "
|
2692
|
-
msgstr "
|
2409
|
+
msgid "old_xtls_direct"
|
2410
|
+
msgstr "🔙 Old Direct Mode (For Trojan TCP, VLess XTLS)"
|
2693
2411
|
|
2694
|
-
msgid "
|
2695
|
-
msgstr "
|
2412
|
+
msgid "open"
|
2413
|
+
msgstr "Open"
|
2696
2414
|
|
2697
|
-
msgid "
|
2698
|
-
msgstr "
|
2415
|
+
msgid "package days?"
|
2416
|
+
msgstr "package days?"
|
2699
2417
|
|
2700
|
-
msgid "
|
2701
|
-
msgstr "
|
2418
|
+
msgid "package size?"
|
2419
|
+
msgstr "package size?"
|
2702
2420
|
|
2703
|
-
msgid "
|
2704
|
-
msgstr "
|
2421
|
+
msgid "parent.invalid-parent-url"
|
2422
|
+
msgstr "parent.invalid-parent-url"
|
2423
|
+
|
2424
|
+
msgid "parent.sync-req-failed"
|
2425
|
+
msgstr "parent.sync-req-failed"
|
2426
|
+
|
2427
|
+
msgid "previous"
|
2428
|
+
msgstr "Previous"
|
2429
|
+
|
2430
|
+
msgid "quicksetup.setlang.error"
|
2431
|
+
msgstr "An error occurred while changing language."
|
2432
|
+
|
2433
|
+
msgid "quicksetup.setlang.success"
|
2434
|
+
msgstr "Changing the Language was Successful."
|
2435
|
+
|
2436
|
+
msgid "reality"
|
2437
|
+
msgstr "🔂 Reality"
|
2438
|
+
|
2439
|
+
msgid "relay"
|
2440
|
+
msgstr "♾️ Relay (Connect Using an Intermediate Node)"
|
2441
|
+
|
2442
|
+
msgid "search"
|
2443
|
+
msgstr "Search"
|
2444
|
+
|
2445
|
+
msgid "see the log in the bellow screen"
|
2446
|
+
msgstr "📑 See the log in the bellow screen"
|
2447
|
+
|
2448
|
+
msgid ""
|
2449
|
+
"selected domain for REALITY is not in the same ASN. To better use of the "
|
2450
|
+
"protocol, it is better to find a domain in the same ASN."
|
2451
|
+
msgstr ""
|
2452
|
+
"Selected Domain for REALITY is not in the same ASN. To better use of the "
|
2453
|
+
"Protocol, it is better to find a Domain in the same ASN"
|
2454
|
+
|
2455
|
+
msgid "serverssh.password-login.warning"
|
2456
|
+
msgstr ""
|
2457
|
+
"Your server is vulnerable to abuses because Password Authentication is "
|
2458
|
+
"enabled in your SSH. To secure your server, please switch to key "
|
2459
|
+
"authentication mechanism and turn off Password Authentication. <a "
|
2460
|
+
"href='https://github.com/hiddify/Hiddify-Manager/wiki/Disable-SSH-Password-"
|
2461
|
+
"Authentication'>read more... </a>"
|
2462
|
+
|
2463
|
+
msgid "singbox: ssh"
|
2464
|
+
msgstr "SingBox: SSH"
|
2465
|
+
|
2466
|
+
msgid "ssh"
|
2467
|
+
msgstr "SSH"
|
2468
|
+
|
2469
|
+
msgid "sub_link_only"
|
2470
|
+
msgstr "📳 Only for Subscription Link (can be Direct, Relay, or CDN)"
|
2471
|
+
|
2472
|
+
msgid "telegram"
|
2473
|
+
msgstr "Telegram"
|
2474
|
+
|
2475
|
+
msgid "test"
|
2476
|
+
msgstr "Test"
|
2477
|
+
|
2478
|
+
msgid "update"
|
2479
|
+
msgstr "update"
|
2480
|
+
|
2481
|
+
msgid "user.UUID"
|
2482
|
+
msgstr "UUID"
|
2483
|
+
|
2484
|
+
msgid "user.current_usage_GB"
|
2485
|
+
msgstr "Current Usage (GB)"
|
2486
|
+
|
2487
|
+
msgid "user.expiry_time"
|
2488
|
+
msgstr "Expire (Days)"
|
2489
|
+
|
2490
|
+
msgid "user.home.all_configs"
|
2491
|
+
msgstr "All Configs"
|
2492
|
+
|
2493
|
+
msgid "user.home.allconfig.clash-configs"
|
2494
|
+
msgstr "Clash Configs"
|
2495
|
+
|
2496
|
+
msgid "user.home.allconfig.hiddify-managers"
|
2497
|
+
msgstr "All Config Hiddify Managers"
|
2498
|
+
|
2499
|
+
msgid "user.home.allconfig.link-configs"
|
2500
|
+
msgstr "Subscription Link"
|
2501
|
+
|
2502
|
+
msgid "user.home.allconfig.name"
|
2503
|
+
msgstr "Name and Link"
|
2504
|
+
|
2505
|
+
msgid "user.home.allconfig.protocol"
|
2506
|
+
msgstr "Protocol"
|
2507
|
+
|
2508
|
+
msgid "user.home.allconfig.security"
|
2509
|
+
msgstr "Security"
|
2510
|
+
|
2511
|
+
msgid "user.home.allconfig.transport"
|
2512
|
+
msgstr "Transport"
|
2513
|
+
|
2514
|
+
msgid "user.home.allconfig.type"
|
2515
|
+
msgstr "Type"
|
2516
|
+
|
2517
|
+
msgid "user.home.allconfigs.expect_vless"
|
2518
|
+
msgstr "Except VLess"
|
2519
|
+
|
2520
|
+
msgid "user.home.android.intro"
|
2521
|
+
msgstr ""
|
2522
|
+
"Please install Hiddify Android from %(dl_link)s %(play_link)s. \n"
|
2523
|
+
"\n"
|
2524
|
+
"<!--\n"
|
2525
|
+
"<div class='callout callout-danger'>\n"
|
2526
|
+
" <b>Update Hiddify Android to Version 0.14</b>\n"
|
2527
|
+
"</div>-->\n"
|
2528
|
+
"<details>\n"
|
2529
|
+
"<summary>Why Hiddify Android?</summary>\n"
|
2530
|
+
"<div class='callout callout-info'>\n"
|
2531
|
+
"\n"
|
2532
|
+
" Hiddify Android is an Open Source Fork Of Clash That Supports More Protocols.\n"
|
2533
|
+
" <br>\n"
|
2534
|
+
" It's Source Codes Exist in\n"
|
2535
|
+
" <a href='https://github.com/hiddify/HiddifyProxyAndroid'>GitHub</a>.\n"
|
2536
|
+
" \n"
|
2537
|
+
" <br>\n"
|
2538
|
+
" Therefore, it is safe.\n"
|
2539
|
+
"\n"
|
2540
|
+
" <details>\n"
|
2541
|
+
" <summary>Alternative: Normal Clash</summary>\n"
|
2542
|
+
" <div class='btn-group'>\n"
|
2543
|
+
" <a href='https://play.google.com/store/apps/details?id=com.github.kr328.clash'\n"
|
2544
|
+
" class='btn btn-warning orig-link'>Clash in Google Play</a>\n"
|
2545
|
+
" </div>\n"
|
2546
|
+
" <div class='btn-group'>\n"
|
2547
|
+
" <a href='/{{hconfigs[ConfigEnum.proxy_path]}}/gh/Kr328/ClashForAndroid/releases/download/v2.5.12/cfa-2.5.12-premium-universal-release.apk'\n"
|
2548
|
+
" class='btn btn-warning orig-link'>Direct Download</a>\n"
|
2549
|
+
" </div>\n"
|
2550
|
+
"\n"
|
2551
|
+
" <div class='alert alert-danger'>\n"
|
2552
|
+
" \tClash does not support VLess protocol. therefore, we need to add another link for it.\n"
|
2553
|
+
" </div>\n"
|
2554
|
+
" \n"
|
2555
|
+
"\n"
|
2556
|
+
" </details>\n"
|
2557
|
+
" </div>\n"
|
2558
|
+
"</details>"
|
2559
|
+
|
2560
|
+
msgid "user.home.branding.linktitle"
|
2561
|
+
msgstr "Support Page Link"
|
2562
|
+
|
2563
|
+
msgid "user.home.branding.title"
|
2564
|
+
msgstr "Support"
|
2565
|
+
|
2566
|
+
msgid "user.home.clash_configs.all_sites.btn"
|
2567
|
+
msgstr "Install Proxy for All Sites."
|
2568
|
+
|
2569
|
+
msgid "user.home.clash_configs.all_sites.description"
|
2570
|
+
msgstr ""
|
2571
|
+
"Use Proxy for all websites even for local websites.\n"
|
2572
|
+
"<div class='callout callout-danger'>\n"
|
2573
|
+
" Loading local sites will be slower and will endanger your privacy.\n"
|
2574
|
+
"</div>\n"
|
2575
|
+
|
2576
|
+
msgid "user.home.clash_configs.all_sites.title"
|
2577
|
+
msgstr "Proxy for All Sites"
|
2578
|
+
|
2579
|
+
msgid "user.home.clash_configs.alternative_for_normal_clash"
|
2580
|
+
msgstr "Alternative link for Clash"
|
2581
|
+
|
2582
|
+
msgid "user.home.clash_configs.foreign_sites.btn"
|
2583
|
+
msgstr "Install for Foreign Sites"
|
2584
|
+
|
2585
|
+
msgid "user.home.clash_configs.foreign_sites.description"
|
2586
|
+
msgstr ""
|
2587
|
+
"Use Proxy for all foreign sites (even not blocked ones).\n"
|
2588
|
+
"<div class='callout callout-warning'>\n"
|
2589
|
+
"\tThis mode is useful in accessing some sanctaioned sites.\n"
|
2590
|
+
"</div>\n"
|
2591
|
+
|
2592
|
+
msgid "user.home.clash_configs.foreign_sites.title"
|
2593
|
+
msgstr "Foreign Sites Proxy"
|
2594
|
+
|
2595
|
+
msgid "user.home.clash_configs.intro"
|
2596
|
+
msgstr ""
|
2597
|
+
"Now based on your needs, click on one of the following links.\n"
|
2598
|
+
"<br />"
|
2599
|
+
|
2600
|
+
msgid "user.home.clash_configs.link_for_normal_clash"
|
2601
|
+
msgstr "Install Clash"
|
2602
|
+
|
2603
|
+
msgid "user.home.clash_configs.only_for_blocked_sites.btn"
|
2604
|
+
msgstr "Install for Only Blocked Sites"
|
2605
|
+
|
2606
|
+
msgid "user.home.clash_configs.only_for_blocked_sites.description"
|
2607
|
+
msgstr ""
|
2608
|
+
"This mode is suggested. It only forwards the blocked sites via Proxy.\n"
|
2609
|
+
" <div class='callout callout-success'>\n"
|
2610
|
+
" In this mode, you will not feel any change in the speed.\n"
|
2611
|
+
" </div>"
|
2612
|
+
|
2613
|
+
msgid "user.home.clash_configs.only_for_blocked_sites.title"
|
2614
|
+
msgstr "For only Blocked Sites"
|
2615
|
+
|
2616
|
+
msgid "user.home.doh"
|
2617
|
+
msgstr "DNS Over HTTPS"
|
2618
|
+
|
2619
|
+
msgid "user.home.ios.others.intro"
|
2620
|
+
msgstr ""
|
2621
|
+
"First install one of the following Applications:\n"
|
2622
|
+
"\n"
|
2623
|
+
"<div class='btn-group'>\n"
|
2624
|
+
"\n"
|
2625
|
+
"\t<a href='https://apps.apple.com/us/app/foxray/id6448898396'\n"
|
2626
|
+
" class='btn btn-primary orig-link'>FoXray</a>\n"
|
2627
|
+
"\n"
|
2628
|
+
"</div>\n"
|
2629
|
+
"\n"
|
2630
|
+
"<div class='btn-group'>\n"
|
2631
|
+
"\n"
|
2632
|
+
"\t<a href='https://apps.apple.com/us/app/fair-vpn/id1533873488'\n"
|
2633
|
+
" class='btn btn-primary orig-link'>Fair VPN</a>\n"
|
2634
|
+
"</div>\n"
|
2635
|
+
"\n"
|
2636
|
+
"<br />\n"
|
2637
|
+
"Then apply the following configs:\n"
|
2638
|
+
"<br />"
|
2639
|
+
|
2640
|
+
msgid "user.home.ios.others.title"
|
2641
|
+
msgstr "FoXray and Fair VPN"
|
2642
|
+
|
2643
|
+
msgid "user.home.ios.stash.intro"
|
2644
|
+
msgstr ""
|
2645
|
+
"Stash & Shadowrocket are both great applications. Either one is worth buying.\n"
|
2646
|
+
"<br>\n"
|
2647
|
+
"<br />\n"
|
2648
|
+
" <div class='btn-group'>\n"
|
2649
|
+
" <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"
|
2650
|
+
" </div>\n"
|
2651
|
+
" <div class='btn-group'>\n"
|
2652
|
+
" <a href='https://apps.apple.com/us/app/shadowrocket/id932747118' target='_blank' class='btn btn-primary orig-link'>Download Shadowrocket</a> \n"
|
2653
|
+
" </div><br>\n"
|
2654
|
+
"<br />"
|
2655
|
+
|
2656
|
+
msgid "user.home.ios.stash.title"
|
2657
|
+
msgstr ""
|
2658
|
+
"<button class='btn btn-sm btn-default' onclick='show_video('ios-stash')'><i class='fa-solid fa-question'></i> Stash</button>\n"
|
2659
|
+
" <button class='btn btn-sm btn-default' onclick='show_video('ios-shadowrocket')'><i class='fa-solid fa-question'></i> Shadowrocket</button>\n"
|
2660
|
+
" <span class='badge badge-success'>Recommended</span>"
|
2661
|
+
|
2662
|
+
msgid "user.home.link.manual-copy"
|
2663
|
+
msgstr "Copy to Clipboard: Ctrl+C, Enter"
|
2664
|
+
|
2665
|
+
msgid "user.home.link.success-copy"
|
2666
|
+
msgstr "Link Copied to Clipboard. "
|
2667
|
+
|
2668
|
+
msgid "user.home.qr-code.description"
|
2669
|
+
msgstr ""
|
2670
|
+
"To copy or share links, click on the gray <i class='fa-solid fa-qrcode'></i>"
|
2671
|
+
" field to display its QR Code."
|
2672
|
+
|
2673
|
+
msgid "user.home.qr-code.display"
|
2674
|
+
msgstr "Display QR Code"
|
2675
|
+
|
2676
|
+
msgid "user.home.share-title"
|
2677
|
+
msgstr "Share to Social Media"
|
2678
|
+
|
2679
|
+
msgid "user.home.speedtest.download"
|
2680
|
+
msgstr "Download"
|
2681
|
+
|
2682
|
+
msgid "user.home.speedtest.intro"
|
2683
|
+
msgstr ""
|
2684
|
+
"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.\n"
|
2685
|
+
"If the speed was low without a proxy, don't waste your time to test this proxy.\n"
|
2686
|
+
"Otherwise, 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"
|
2687
|
+
"<br />"
|
2688
|
+
|
2689
|
+
msgid "user.home.speedtest.title"
|
2690
|
+
msgstr "Speed Test (Detect dirty IP)"
|
2691
|
+
|
2692
|
+
msgid "user.home.speedtest.two_ways"
|
2693
|
+
msgstr "Both Ways"
|
2694
|
+
|
2695
|
+
msgid "user.home.speedtest.upload"
|
2696
|
+
msgstr "Upload"
|
2697
|
+
|
2698
|
+
msgid "user.home.telegram.clickbtn"
|
2699
|
+
msgstr "Telegram Proxy"
|
2700
|
+
|
2701
|
+
msgid "user.home.telegram.description"
|
2702
|
+
msgstr ""
|
2703
|
+
"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"
|
2704
|
+
"<br />"
|
2705
|
+
|
2706
|
+
msgid "user.home.title"
|
2707
|
+
msgstr "Hiddify"
|
2708
|
+
|
2709
|
+
msgid "user.home.tool.all-configs"
|
2710
|
+
msgstr "All Configs"
|
2711
|
+
|
2712
|
+
msgid "user.home.tool.doh.help"
|
2713
|
+
msgstr ""
|
2714
|
+
"<h4>Configure DoH on your browser</h4>\n"
|
2715
|
+
" There are several browsers compatible with DNS over HTTPS (DoH). This protocol lets\n"
|
2716
|
+
" you encrypt your connection to 1.1.1.1 in order to protect your DNS queries from privacy intrusions and tampering.\n"
|
2717
|
+
"\n"
|
2718
|
+
" Some browsers might already have this setting enabled.\n"
|
2719
|
+
"<br />\n"
|
2720
|
+
" <h5>Mozilla Firefox</h5>\n"
|
2721
|
+
" 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"
|
2722
|
+
"<br />\n"
|
2723
|
+
" <h5>Google Chrome</h5>\n"
|
2724
|
+
" Select the <b>three-dot</b> menu in your browser > <b>Settings</b>.\n"
|
2725
|
+
" Select <b>Privacy and security</b> > <b>Security</b>.\n"
|
2726
|
+
" Scroll down and enable <b>Use secure DNS</b>.\n"
|
2727
|
+
"<br />\n"
|
2728
|
+
" <h5>Microsoft Edge</h5>\n"
|
2729
|
+
" Select the <b>three-dot</b> menu in your browser > <b>Settings</b>.\n"
|
2730
|
+
" Select <b>Privacy, Search, and Services</b>, and scroll down to <b>Security</b>.\n"
|
2731
|
+
" Enable <b>Use secure DNS</b>.\n"
|
2732
|
+
" Select Choose a service provider."
|
2733
|
+
|
2734
|
+
msgid "user.home.tool.doh.title"
|
2735
|
+
msgstr "DNS Over HTTPS"
|
2736
|
+
|
2737
|
+
msgid "user.home.usage.details"
|
2738
|
+
msgstr "Display Usage Details"
|
2739
|
+
|
2740
|
+
msgid "user.home.usage.expire"
|
2741
|
+
msgstr "Expire: "
|
2742
|
+
|
2743
|
+
msgid "user.home.usage.from"
|
2744
|
+
msgstr "Of"
|
2745
|
+
|
2746
|
+
msgid "user.home.usage.monthly"
|
2747
|
+
msgstr "Monthly"
|
2748
|
+
|
2749
|
+
msgid "user.home.usage.title"
|
2750
|
+
msgstr "⏳ Traffic Usage"
|
2751
|
+
|
2752
|
+
msgid "user.home.windows.intro"
|
2753
|
+
msgstr ""
|
2754
|
+
"First, download and install the Hiddify Desktop software according to your operating system.\n"
|
2755
|
+
"<br />\n"
|
2756
|
+
"%(hiddify_desktop_links)s\n"
|
2757
|
+
"\n"
|
2758
|
+
"<details>\n"
|
2759
|
+
"<summary>Why Hiddify Desktop ?</summary>\n"
|
2760
|
+
"<div class='callout callout-info'>\n"
|
2761
|
+
"\n"
|
2762
|
+
" Hiddify Desktop is an safe and open source fork of Clash that supports more VLESS and UTLS Fingerprinting.\n"
|
2763
|
+
" <br>\n"
|
2764
|
+
"<br />\n"
|
2765
|
+
" Its source codes exist in\n"
|
2766
|
+
" <a href='https://github.com/hiddify/HiddifyDesktop'>GitHub</a>.\n"
|
2767
|
+
" \n"
|
2768
|
+
"\n"
|
2769
|
+
" <details>\n"
|
2770
|
+
" <summary>Alternative: Normal Clash</summary>\n"
|
2771
|
+
" %(normal_clash_link)s\n"
|
2772
|
+
"\n"
|
2773
|
+
" <div class='alert alert-danger'>\n"
|
2774
|
+
" \tClash does not support browser fingerprinting and VLESS protocol . Therefore, we need to add another link for it.\n"
|
2775
|
+
" </div>\n"
|
2776
|
+
" \n"
|
2777
|
+
"\n"
|
2778
|
+
" </details>\n"
|
2779
|
+
"</div>\n"
|
2780
|
+
" </details>\n"
|
2781
|
+
"<br />\n"
|
2782
|
+
"Now, 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."
|
2783
|
+
|
2784
|
+
msgid "user.last_reset_time"
|
2785
|
+
msgstr "Last Usage Date Reset"
|
2786
|
+
|
2787
|
+
msgid "user.name"
|
2788
|
+
msgstr "Name"
|
2789
|
+
|
2790
|
+
msgid "user.usage_limit_GB"
|
2791
|
+
msgstr "⌛️ Usage Limit (GB)"
|
2792
|
+
|
2793
|
+
msgid "user.user_links"
|
2794
|
+
msgstr "User Links"
|
2795
|
+
|
2796
|
+
msgid "user.home.select os"
|
2797
|
+
msgstr "Please Select Your Operating System."
|
2798
|
+
|
2799
|
+
msgid "user.home.select tool"
|
2800
|
+
msgstr "Please select the item."
|
2801
|
+
|
2802
|
+
msgid "weekly"
|
2803
|
+
msgstr "📅 Weekly"
|
2804
|
+
|
2805
|
+
msgid "worker"
|
2806
|
+
msgstr "✴️ Cloudflare Worker"
|
2807
|
+
|
2808
|
+
msgid "📅%(expire_days)s days"
|
2809
|
+
msgstr "📅%(expire_days)s Days Remain"
|