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.
Files changed (152) hide show
  1. hiddifypanel/VERSION +1 -1
  2. hiddifypanel/VERSION.py +2 -2
  3. hiddifypanel/auth.py +30 -9
  4. hiddifypanel/base.py +58 -50
  5. hiddifypanel/cache.py +43 -25
  6. hiddifypanel/database.py +9 -0
  7. hiddifypanel/drivers/abstract_driver.py +2 -0
  8. hiddifypanel/drivers/singbox_api.py +17 -15
  9. hiddifypanel/drivers/ssh_liberty_bridge_api.py +3 -1
  10. hiddifypanel/drivers/user_driver.py +12 -6
  11. hiddifypanel/drivers/wireguard_api.py +7 -2
  12. hiddifypanel/drivers/xray_api.py +14 -9
  13. hiddifypanel/hutils/__init__.py +4 -0
  14. hiddifypanel/hutils/convert.py +13 -2
  15. hiddifypanel/hutils/crypto.py +48 -0
  16. hiddifypanel/hutils/encode.py +4 -1
  17. hiddifypanel/hutils/flask.py +38 -5
  18. hiddifypanel/hutils/github_issue.py +1 -1
  19. hiddifypanel/hutils/importer/xui.py +5 -2
  20. hiddifypanel/{models/utils.py → hutils/model.py} +14 -4
  21. hiddifypanel/hutils/network/auto_ip_selector.py +2 -0
  22. hiddifypanel/hutils/network/net.py +46 -2
  23. hiddifypanel/hutils/node/__init__.py +3 -0
  24. hiddifypanel/hutils/node/api_client.py +76 -0
  25. hiddifypanel/hutils/node/child.py +147 -0
  26. hiddifypanel/hutils/node/parent.py +100 -0
  27. hiddifypanel/hutils/node/shared.py +65 -0
  28. hiddifypanel/hutils/proxy/__init__.py +5 -0
  29. hiddifypanel/hutils/proxy/clash.py +161 -0
  30. hiddifypanel/hutils/proxy/shared.py +434 -0
  31. hiddifypanel/hutils/proxy/singbox.py +339 -0
  32. hiddifypanel/hutils/proxy/xray.py +235 -0
  33. hiddifypanel/hutils/proxy/xrayjson.py +391 -0
  34. hiddifypanel/hutils/random.py +4 -0
  35. hiddifypanel/hutils/utils.py +4 -1
  36. hiddifypanel/models/__init__.py +2 -2
  37. hiddifypanel/models/admin.py +31 -17
  38. hiddifypanel/models/base_account.py +7 -7
  39. hiddifypanel/models/child.py +30 -16
  40. hiddifypanel/models/config.py +45 -16
  41. hiddifypanel/models/config_enum.py +68 -17
  42. hiddifypanel/models/domain.py +28 -20
  43. hiddifypanel/models/parent_domain.py +2 -2
  44. hiddifypanel/models/proxy.py +29 -20
  45. hiddifypanel/models/report.py +2 -3
  46. hiddifypanel/models/usage.py +2 -2
  47. hiddifypanel/models/user.py +33 -22
  48. hiddifypanel/panel/admin/Actions.py +13 -19
  49. hiddifypanel/panel/admin/AdminstratorAdmin.py +14 -3
  50. hiddifypanel/panel/admin/Dashboard.py +5 -10
  51. hiddifypanel/panel/admin/DomainAdmin.py +35 -48
  52. hiddifypanel/panel/admin/NodeAdmin.py +6 -2
  53. hiddifypanel/panel/admin/ProxyAdmin.py +6 -5
  54. hiddifypanel/panel/admin/QuickSetup.py +21 -20
  55. hiddifypanel/panel/admin/SettingAdmin.py +107 -62
  56. hiddifypanel/panel/admin/UserAdmin.py +22 -21
  57. hiddifypanel/panel/admin/templates/index.html +1 -1
  58. hiddifypanel/panel/admin/templates/model/user_list.html +44 -20
  59. hiddifypanel/panel/admin/templates/parent_dash.html +2 -4
  60. hiddifypanel/panel/admin/templates/result.html +2 -3
  61. hiddifypanel/panel/cf_api.py +1 -2
  62. hiddifypanel/panel/cli.py +16 -16
  63. hiddifypanel/panel/commercial/ProxyDetailsAdmin.py +16 -12
  64. hiddifypanel/panel/commercial/__init__.py +7 -5
  65. hiddifypanel/panel/commercial/restapi/v1/__init__.py +1 -1
  66. hiddifypanel/panel/commercial/restapi/v1/tgbot.py +1 -1
  67. hiddifypanel/panel/commercial/restapi/v1/tgmsg.py +14 -10
  68. hiddifypanel/panel/commercial/restapi/v2/admin/__init__.py +0 -5
  69. hiddifypanel/panel/commercial/restapi/v2/admin/admin_info_api.py +2 -2
  70. hiddifypanel/panel/commercial/restapi/v2/admin/admin_log_api.py +4 -5
  71. hiddifypanel/panel/commercial/restapi/v2/admin/admin_user_api.py +8 -25
  72. hiddifypanel/panel/commercial/restapi/v2/admin/admin_users_api.py +4 -4
  73. hiddifypanel/panel/commercial/restapi/v2/admin/schema.py +157 -0
  74. hiddifypanel/panel/commercial/restapi/v2/admin/server_status_api.py +3 -3
  75. hiddifypanel/panel/commercial/restapi/v2/admin/user_api.py +9 -66
  76. hiddifypanel/panel/commercial/restapi/v2/admin/users_api.py +1 -1
  77. hiddifypanel/panel/commercial/restapi/v2/child/__init__.py +18 -0
  78. hiddifypanel/panel/commercial/restapi/v2/child/actions.py +63 -0
  79. hiddifypanel/panel/commercial/restapi/v2/child/register_parent_api.py +34 -0
  80. hiddifypanel/panel/commercial/restapi/v2/child/schema.py +7 -0
  81. hiddifypanel/panel/commercial/restapi/v2/child/sync_parent_api.py +21 -0
  82. hiddifypanel/panel/commercial/restapi/v2/panel/__init__.py +13 -0
  83. hiddifypanel/panel/commercial/restapi/v2/panel/info.py +18 -0
  84. hiddifypanel/panel/commercial/restapi/v2/panel/ping_pong.py +23 -0
  85. hiddifypanel/panel/commercial/restapi/v2/panel/schema.py +7 -0
  86. hiddifypanel/panel/commercial/restapi/v2/parent/__init__.py +16 -0
  87. hiddifypanel/panel/commercial/restapi/v2/parent/register_api.py +65 -0
  88. hiddifypanel/panel/commercial/restapi/v2/parent/schema.py +115 -0
  89. hiddifypanel/panel/commercial/restapi/v2/parent/status_api.py +26 -0
  90. hiddifypanel/panel/commercial/restapi/v2/parent/sync_api.py +53 -0
  91. hiddifypanel/panel/commercial/restapi/v2/parent/usage_api.py +57 -0
  92. hiddifypanel/panel/commercial/restapi/v2/user/apps_api.py +17 -23
  93. hiddifypanel/panel/commercial/restapi/v2/user/configs_api.py +23 -26
  94. hiddifypanel/panel/commercial/telegrambot/admin.py +1 -2
  95. hiddifypanel/panel/common.py +25 -8
  96. hiddifypanel/panel/common_bp/login.py +2 -2
  97. hiddifypanel/panel/hiddify.py +22 -185
  98. hiddifypanel/panel/init_db.py +102 -55
  99. hiddifypanel/panel/usage.py +33 -18
  100. hiddifypanel/panel/user/__init__.py +0 -1
  101. hiddifypanel/panel/user/templates/all_configs copy.txt +2 -2
  102. hiddifypanel/panel/user/templates/all_configs.txt +2 -2
  103. hiddifypanel/panel/user/templates/base_singbox_config.json.j2 +2 -1
  104. hiddifypanel/panel/user/templates/base_xray_config.json.j2 +125 -0
  105. hiddifypanel/panel/user/templates/clash_config copy.yml +1 -1
  106. hiddifypanel/panel/user/templates/clash_config.yml +4 -4
  107. hiddifypanel/panel/user/templates/clash_proxies.yml +1 -1
  108. hiddifypanel/panel/user/templates/home/all-configs.html +2 -2
  109. hiddifypanel/panel/user/templates/home/all-configs_old.html +1 -1
  110. hiddifypanel/panel/user/templates/home/ios copy.html +2 -2
  111. hiddifypanel/panel/user/templates/home/usage.html +1 -1
  112. hiddifypanel/panel/user/templates/new.html +2 -2
  113. hiddifypanel/panel/user/user.py +56 -50
  114. hiddifypanel/static/css/custom.css +31 -0
  115. hiddifypanel/static/images/favicon.ico +0 -0
  116. hiddifypanel/static/images/hiddify-old.png +0 -0
  117. hiddifypanel/static/images/hiddify.png +0 -0
  118. hiddifypanel/static/images/hiddify2.png +0 -0
  119. hiddifypanel/static/new/assets/{index-1b891a7c.js → index-ccb9873c.js} +56 -56
  120. hiddifypanel/static/new/assets/index-fa00de9a.css +1 -0
  121. hiddifypanel/static/new/i18n/en.json +6 -6
  122. hiddifypanel/static/new/i18n/fa.json +2 -2
  123. hiddifypanel/templates/admin-layout.html +30 -43
  124. hiddifypanel/templates/fake.html +0 -4
  125. hiddifypanel/templates/flaskadmin-layout.html +7 -3
  126. hiddifypanel/templates/master.html +11 -6
  127. hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
  128. hiddifypanel/translations/en/LC_MESSAGES/messages.po +2082 -1977
  129. hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
  130. hiddifypanel/translations/fa/LC_MESSAGES/messages.po +2035 -1924
  131. hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
  132. hiddifypanel/translations/pt/LC_MESSAGES/messages.po +1911 -1848
  133. hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
  134. hiddifypanel/translations/ru/LC_MESSAGES/messages.po +2019 -1874
  135. hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
  136. hiddifypanel/translations/zh/LC_MESSAGES/messages.po +1873 -1742
  137. hiddifypanel/translations.i18n/en.json +992 -933
  138. hiddifypanel/translations.i18n/fa.json +994 -935
  139. hiddifypanel/translations.i18n/pt.json +1031 -972
  140. hiddifypanel/translations.i18n/ru.json +994 -935
  141. hiddifypanel/translations.i18n/zh.json +971 -912
  142. {hiddifypanel-9.0.0.dev92.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/METADATA +47 -47
  143. {hiddifypanel-9.0.0.dev92.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/RECORD +147 -120
  144. {hiddifypanel-9.0.0.dev92.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/WHEEL +1 -1
  145. hiddifypanel/panel/commercial/restapi/v2/DTO.py +0 -9
  146. hiddifypanel/panel/commercial/restapi/v2/hello/__init__.py +0 -16
  147. hiddifypanel/panel/commercial/restapi/v2/hello/hello.py +0 -32
  148. hiddifypanel/panel/user/link_maker.py +0 -1083
  149. hiddifypanel/static/new/assets/index-669b32c8.css +0 -1
  150. {hiddifypanel-9.0.0.dev92.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/LICENSE.md +0 -0
  151. {hiddifypanel-9.0.0.dev92.dist-info → hiddifypanel-10.5.0.dev0.dist-info}/entry_points.txt +0 -0
  152. {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 "0 - Last day"
6
- msgstr "Last Day"
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 "admin.proxy.global_config"
15
- msgstr "⚙️ Global Configs"
8
+ msgid "%(count)s records were successfully disabled."
9
+ msgstr "%(count)s records were successfully disabled."
16
10
 
17
- msgid "admin.proxy.detailed_config"
18
- msgstr "⚙️ Detailed Configs"
11
+ msgid "%(count)s records were successfully enabled."
12
+ msgstr "%(count)s records were successfully enabled."
19
13
 
20
- msgid "admin.quicksetup.title"
21
- msgstr "Quick Setup"
14
+ msgid "%(placeholder)s"
15
+ msgstr "%(placeholder)s"
22
16
 
23
- msgid "admin.quicksetup_intro"
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 "admin.Actions:apply_configs"
32
- msgstr "Apply Configs"
20
+ msgid "Access Denied!"
21
+ msgstr "Access Denied"
33
22
 
34
- msgid "admin.menu.home"
35
- msgstr "Dashboard"
23
+ msgid "Actions"
24
+ msgstr "Actions"
36
25
 
37
- msgid "admin.menu.user"
38
- msgstr "Users"
26
+ msgid "Active"
27
+ msgstr "Active"
39
28
 
40
- msgid "admin.menu.config"
41
- msgstr "Settings"
29
+ msgid "Active Users"
30
+ msgstr "Active Users"
42
31
 
43
- msgid "admin.menu.support"
44
- msgstr "Help"
32
+ msgid "Add"
33
+ msgstr "Add"
45
34
 
46
- msgid "admin.menu.telegram"
47
- msgstr "Telegram"
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 "admin.menu.domain"
50
- msgstr "Domains"
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 "admin.menu.proxy"
53
- msgstr "Proxies"
41
+ msgid "Added by"
42
+ msgstr "Added by"
54
43
 
55
- msgid "admin.menu.api"
56
- msgstr "API"
44
+ msgid "Admins"
45
+ msgstr "Admins"
57
46
 
58
- msgid "admin.actions.title"
59
- msgstr "Actions"
47
+ msgid "Alias"
48
+ msgstr "Alias"
60
49
 
61
- msgid "admin.actions.status"
62
- msgstr "Status"
50
+ msgid "All"
51
+ msgstr "All"
63
52
 
64
- msgid "admin.actions.viewlogs"
65
- msgstr "View Logs"
53
+ msgid "All Users"
54
+ msgstr "All Users"
66
55
 
67
- msgid "admin.actions.apply_configs"
68
- msgstr "Apply Configs"
56
+ msgid "Apply"
57
+ msgstr "Apply"
69
58
 
70
- msgid "admin.actions.update"
71
- msgstr "Update"
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 "admin.actions.reinstall"
74
- msgstr "Reinstall"
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 "admin.actions.reset"
77
- msgstr "Restart System"
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 "config.validation-success"
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 "config.validation-success-no-reset"
85
- msgstr " ✅ Configs have been changed successfully"
71
+ msgid "Back"
72
+ msgstr "Back"
86
73
 
87
- msgid "config.cdn_forced_host.description"
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 "config.cdn_forced_host.label"
95
- msgstr "🔂 Force Config to Use Following IPs"
77
+ msgid "Beta"
78
+ msgstr "☑️ Beta"
96
79
 
97
- msgid "config.reality_server_names.description"
98
- msgstr "You can add several Sever Names in comma seperated format"
80
+ msgid "Bridge Servers"
81
+ msgstr " Bridge Servers"
99
82
 
100
- msgid "config.reality_server_names.label"
101
- msgstr "🌎 Reality Server Names"
83
+ msgid "Bug"
84
+ msgstr "Bug/Feature"
102
85
 
103
- msgid "config.validation-error"
104
- msgstr "There is an error in one of the fields."
86
+ msgid "CPU %(cores)s Cores"
87
+ msgstr "CPU %(cores)s Core"
105
88
 
106
- msgid "config.domain_fronting.label"
107
- msgstr "🔒 Enable TLS Domain Fronting"
89
+ msgid "Can add sub admin"
90
+ msgstr "👥 Can Add Sub Admin"
108
91
 
109
- msgid "config.domain_fronting.description"
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 "config.admin_lang.label"
115
- msgstr "🗺️ Admin Panel Language"
95
+ msgid "Check again"
96
+ msgstr "Check Again"
116
97
 
117
- msgid "config.admin_lang.description"
118
- msgstr "Choose Language For Admin Area"
98
+ msgid "Childs"
99
+ msgstr "Children"
119
100
 
120
- msgid "config.country.label"
121
- msgstr "🌍 Country"
101
+ msgid "China"
102
+ msgstr "🇨🇳 China"
122
103
 
123
- msgid "config.country.description"
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 "config.block_iran_sites.label"
129
- msgstr "⛔️ Block Domestic Sites"
107
+ msgid "Click to Import"
108
+ msgstr "Tap to Import"
130
109
 
131
- msgid "config.block_iran_sites.description"
132
- msgstr "Block domestic Sites to prevent detection by the government"
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 "config.decoy_domain.label"
135
- msgstr "📺 Decoy Site"
113
+ msgid "Close"
114
+ msgstr "Close"
136
115
 
137
- msgid "config.decoy_domain.description"
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 "config.telegram_lib.label"
145
- msgstr "🔢 Telegram Proxy Library"
119
+ msgid "Config file is incorrect"
120
+ msgstr "Config file is incorrect."
146
121
 
147
- msgid "config.telegram_lib.description"
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 "config.admin.label"
154
- msgstr "Admin Settings"
125
+ msgid "Couldn't find your ip addresses"
126
+ msgstr "Couldn't find your IP Addresses"
155
127
 
156
- msgid "config.admin.description"
157
- msgstr "Admin section is for configuring admin related settings"
128
+ msgid "Count:"
129
+ msgstr "Count:"
158
130
 
159
- msgid "config.lang.label"
160
- msgstr "🗺️ User Area Language"
131
+ msgid "Create"
132
+ msgstr "Create"
161
133
 
162
- msgid "config.lang.description"
163
- msgstr "Choose Language For Users Area"
134
+ msgid "Create Directory"
135
+ msgstr "Create Directory"
164
136
 
165
- msgid "config.branding_title.label"
166
- msgstr "👁‍🗨 User Page Title"
137
+ msgid "Create New Record"
138
+ msgstr "Create New Record"
167
139
 
168
- msgid "config.branding_title.description"
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 "config.branding_site.label"
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 "config.branding_site.description"
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
- "The link to be shown on support section of user's page.\n"
181
- "You can put also your Telegram Channel or Telegram PV here."
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 "config.branding_freetext.label"
184
- msgstr "📢 Support Section Text"
163
+ msgid "Define the admin mode. "
164
+ msgstr "🥇🥈🥉 Define the Admin Mode"
185
165
 
186
- msgid "config.branding_freetext.description"
166
+ msgid "Define the user mode. Should the usage reset every month?"
187
167
  msgstr ""
188
- "Branding Text. this box's text will be shown on support section of User's "
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 "config.branding.label"
192
- msgstr "Customizing User Page"
170
+ msgid "Delete?"
171
+ msgstr "Delete?"
193
172
 
194
- msgid "config.branding.description"
195
- msgstr "Customization settings for User Page"
173
+ msgid "Develop"
174
+ msgstr "⚠️ Develop"
196
175
 
197
- msgid "config.firewall.label"
198
- msgstr "🛡️ Firewall"
176
+ msgid "Direct"
177
+ msgstr " Direct"
199
178
 
200
- msgid "config.firewall.description"
201
- msgstr ""
202
- "Enabling Firewall will open used Ports (at least 22,443,80 and SSH) and "
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
- "Every day at 3:00 AM, we will check for a new update. if there is a new "
211
- "update available, we will update the system automatically"
212
-
213
- msgid "config.speed_test.label"
214
- msgstr "🚀 Speed Test"
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 "config.speed_test.description"
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 "config.only_ipv4.label"
222
- msgstr "ℹ️ Only IPv4"
200
+ msgid "Disk"
201
+ msgstr "Hard Disk"
223
202
 
224
- msgid "config.only_ipv4.description"
225
- msgstr "It will Disable IPv6"
203
+ msgid "Domain"
204
+ msgstr "Domain"
226
205
 
227
- msgid "config.show_usage_in_sublink.label"
228
- msgstr "👁️‍🗨️ Show Usage in Sublink"
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 "config.show_usage_in_sublink.description"
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
- "This option creates a Fake Config in the user's sub link that shows the "
233
- "user's remaining volume"
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 "config.general.label"
236
- msgstr "General Settings"
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 "config.general.description"
239
- msgstr "It is General System Configurations"
225
+ msgid "Domain is not REALITY friendly!"
226
+ msgstr "Domain is Not REALITY Friendly!"
240
227
 
241
- msgid "config.vmess_enable.label"
242
- msgstr "♈️ Enable VMess"
228
+ msgid "Domain?"
229
+ msgstr "Domain?"
243
230
 
244
- msgid "config.vmess_enable.description"
231
+ msgid "Donation.description"
245
232
  msgstr ""
246
- "It is reported by several people that VMess causes the system to be detected"
247
- " by the government. So it is Not Recommended"
248
-
249
- msgid "config.v2ray_enable.label"
250
- msgstr "♈️ Enable V2Ray "
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 "config.v2ray_enable.description"
253
- msgstr "V2ray does not support accounting and not suggested"
282
+ msgid "Donation.title"
283
+ msgstr "Donation"
254
284
 
255
- msgid "config.shared_secret.label"
256
- msgstr "🔐 Shared Secret"
285
+ msgid "Download App"
286
+ msgstr "<i class='fa-solid fa-download'></i> Download App"
257
287
 
258
- msgid "config.shared_secret.description"
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 "config.proxies.label"
264
- msgstr "Proxies Settings"
291
+ msgid "Edit Proxy Names"
292
+ msgstr "✏️ Modifying Proxies"
265
293
 
266
- msgid "config.proxies.description"
267
- msgstr "Define specific proxy settings"
294
+ msgid "Enable"
295
+ msgstr "❇️ Enable"
268
296
 
269
- msgid "config.domain_fronting_tls_enable.label"
270
- msgstr "🔒 Enable TLS Domain Fronting"
297
+ msgid "Error in auto cdn format"
298
+ msgstr "⚠️ Error in Auto CDN Format"
271
299
 
272
- msgid "config.domain_fronting_tls_enable.description"
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 "config.domain_fronting_domain.label"
278
- msgstr "ℹ️ Domain Fronting"
303
+ msgid "Example Domains"
304
+ msgstr "Test and Suggest Domain "
279
305
 
280
- msgid "config.domain_fronting_domain.description"
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 "config.telegram_enable.label"
286
- msgstr "✔️ Enable Telegram MTProto"
309
+ msgid "Export"
310
+ msgstr "Export"
287
311
 
288
- msgid "config.telegram_enable.description"
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 "config.telegram_adtag.label"
293
- msgstr "📍 Telegram AD Tag"
315
+ msgid "Filter"
316
+ msgstr "Filter"
294
317
 
295
- msgid "config.telegram_adtag.description"
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 "config.telegram_fakedomain.label"
301
- msgstr "📺 Telegram Fake Domain"
321
+ msgid "From Last Restart"
322
+ msgstr "From Last Restart"
302
323
 
303
- msgid "config.telegram_fakedomain.description"
324
+ msgid ""
325
+ "From when the user package will be started? Empty for start from first "
326
+ "connection"
304
327
  msgstr ""
305
- "Please use a well known domain in your data center. for example, If you are "
306
- "in Azure data center, microsoft-update.com is a good example"
328
+ "Specify the starting date of the package. Leave empty to start from first "
329
+ "Connection."
307
330
 
308
- msgid "config.telegram.label"
309
- msgstr "Telegram Proxy "
331
+ msgid "Hiddify"
332
+ msgstr "Hiddify"
310
333
 
311
- msgid "config.telegram.description"
312
- msgstr "A proxy designed for Telegram to bypass Telegram filtering"
334
+ msgid "Hiddify Android"
335
+ msgstr "Hiddify Android "
313
336
 
314
- msgid "config.http_proxy_enable.label"
315
- msgstr "☑️ Allow HTTP Connection"
337
+ msgid "HiddifyClash"
338
+ msgstr "HiddifyClash"
316
339
 
317
- msgid "config.http_proxy_enable.description"
340
+ msgid "HiddifyN intro"
318
341
  msgstr ""
319
- "By allowing this, your users can connect to the system with Unencrypted HTTP"
320
- " Port. (Not Recommended)"
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 "config.http_ports.label"
323
- msgstr "🔎 HTTP Ports"
346
+ msgid "HiddifyNG"
347
+ msgstr "HiddifyNG <span class='badge badge-success'>Recommended</span>"
324
348
 
325
- msgid "config.http_ports.description"
349
+ msgid "HiddifyNG intro"
326
350
  msgstr ""
327
- "Comma separated integers indicating the ports to use as Unencrypted "
328
- "connections (Port 80 will be used In anycase)\n"
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 "config.http.label"
331
- msgstr "HTTP Configuration"
358
+ msgid "HiddigyN"
359
+ msgstr "HiddifyN <span class='badge badge-success'>Recommended</span>"
332
360
 
333
- msgid "config.http.description"
334
- msgstr "HTTP Configurations could be set in this section"
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 "config.allow_invalid_sni.label"
337
- msgstr "🆗 Allow Invalid SNI"
370
+ msgid "Hover the user to see the reason"
371
+ msgstr "Hover the user to see the reason"
338
372
 
339
- msgid "config.allow_invalid_sni.description"
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 "config.tls_ports.label"
345
- msgstr "🔎 TLS Ports"
376
+ msgid "How many?"
377
+ msgstr "How many?"
346
378
 
347
- msgid "config.tls_ports.description"
379
+ msgid ""
380
+ "If monthly is enabled, the usage will be reset after 30 days from this date."
348
381
  msgstr ""
349
- "Comma separated integers indicating the ports to use as TLS Connection "
350
- "(Port 443 will be used in anycase)\n"
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 "config.tls.description"
356
- msgstr "TLS Configurations could be set in this section."
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 "config.ssfaketls_enable.label"
359
- msgstr "🆎 Shadowsocks FakeTLS (Simple OBFS)"
394
+ msgid "Import"
395
+ msgstr "Import in App"
360
396
 
361
- msgid "config.ssfaketls_enable.description"
362
- msgstr "Simple OBFS Protocol is Not Recommended"
397
+ msgid "Import in"
398
+ msgstr "Import in"
363
399
 
364
- msgid "config.ssfaketls_fakedomain.label"
365
- msgstr "🌍 SS FakeTLS FakeDomain"
400
+ msgid "In 5 minutes"
401
+ msgstr "In 5 Minutes"
366
402
 
367
- msgid "config.ssfaketls_fakedomain.description"
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
- "Please use a well known domain in your data center. for example, If you are "
370
- "in Azure data center, microsoft-update.com Is a good example"
407
+ "In CDN mode, Domain IP=%(domain_ip)s should be different to your "
408
+ "ip=%(server_ip)s"
371
409
 
372
- msgid "config.ssfaketls.label"
373
- msgstr "Shadowsocks FakeTLS"
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
- "Shadowsocks FakeTLS is a simple obfusacting tool that encapsulate the date "
378
- "In tls packet"
379
-
380
- msgid "config.shadowtls_enable.label"
381
- msgstr "☑️ ShadowTLS"
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 "config.shadowtls_enable.description"
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 "config.shadowtls_fakedomain.label"
389
- msgstr "🌍 ShadowTLS Fake Domain"
423
+ msgid "Install"
424
+ msgstr "Install"
390
425
 
391
- msgid "config.shadowtls_fakedomain.description"
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 "config.shadowtls.label"
397
- msgstr "ShadowTLS"
429
+ msgid "Invalid IP or domain"
430
+ msgstr "Invalid IP or domain"
398
431
 
399
- msgid "config.shadowtls.description"
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 "config.restls.label"
406
- msgstr "RestTLS"
435
+ msgid "Invalid admin link"
436
+ msgstr "Invalid Admin Link"
407
437
 
408
- msgid "config.restls.description"
409
- msgstr "config.restls.description"
438
+ msgid "Iran"
439
+ msgstr "🇮🇷 Iran"
410
440
 
411
- msgid "config.tuic.label"
412
- msgstr "TUIC"
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 "config.tuic.description"
448
+ msgid ""
449
+ "It seems that you have not created any users yet. Default user link: "
450
+ "%(default_link)s"
415
451
  msgstr ""
416
- "Delicately-TUICed High-Performance proxy is on top of the QUIC protocol. \n"
417
- "\n"
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 "config.ssr.label"
421
- msgstr "SSR"
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 "config.ssr.description"
462
+ msgid "It will override the root admin to the current user"
424
463
  msgstr ""
425
- "ShadowsocksR is a fork of the original Shadowsocks project, claimed to be "
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 "config.kcp.label"
429
- msgstr "KCP"
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 "config.kcp.description"
432
- msgstr "KCP Configurations could be set in this section."
471
+ msgid "Last Online"
472
+ msgstr "Last Connection"
433
473
 
434
- msgid "config.utls.label"
435
- msgstr "❇️ uTLS"
474
+ msgid "Link is changed!"
475
+ msgstr "ℹ️ Link is Changed!"
436
476
 
437
- msgid "config.utls.description"
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 "config.telegram_bot_token.label"
443
- msgstr "🔐 Telegram Bot Token"
480
+ msgid "Max Active Users"
481
+ msgstr "Max Active Users"
444
482
 
445
- msgid "config.telegram_bot_token.description"
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 "config.package_mode.label"
451
- msgstr "🔄 Package Update Mode"
486
+ msgid "Max Users"
487
+ msgstr "Max Users"
452
488
 
453
- msgid "config.package_mode.description"
454
- msgstr "Specify whether you want released package or developed one"
489
+ msgid "Mode"
490
+ msgstr "Mode"
455
491
 
456
- msgid "config.advanced.label"
457
- msgstr "Advanced Settings"
492
+ msgid "Month Usage"
493
+ msgstr "Monthly"
458
494
 
459
- msgid "config.advanced.description"
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 "config.proxy_path.label"
465
- msgstr "ℹ️ Secret Proxy Path"
498
+ msgid "Network"
499
+ msgstr "Network"
466
500
 
467
- msgid "config.proxy_path.description"
468
- msgstr "We use secret proxy path to hide our proxies for the gouvernment"
501
+ msgid "New"
502
+ msgstr "New"
469
503
 
470
- msgid "config.path_trojan.label"
471
- msgstr "ℹ️ Trojan Path"
504
+ msgid "No children!"
505
+ msgstr "No Children"
472
506
 
473
- msgid "config.path_trojan.description"
474
- msgstr "For Trojan Links"
507
+ msgid "Note"
508
+ msgstr "📝 Note"
475
509
 
476
- msgid "config.path_vless.label"
477
- msgstr "ℹ️ VLESS Path"
510
+ msgid "Offline more than 1 day"
511
+ msgstr "Offline More Than 1 Day"
478
512
 
479
- msgid "config.path_vless.description"
480
- msgstr "For the VLESS Path"
513
+ msgid "Offline more than 1 hour"
514
+ msgstr "Offline More Than 1 Hour"
481
515
 
482
- msgid "config.path_vmess.label"
483
- msgstr "ℹ️ VMess Path"
516
+ msgid "Offline more than 1 week"
517
+ msgstr "Offline More Than 1 Week"
484
518
 
485
- msgid "config.path_vmess.description"
486
- msgstr "For the VMess Link"
519
+ msgid "Ok"
520
+ msgstr "Ok"
487
521
 
488
- msgid "config.path_grpc.label"
489
- msgstr "ℹ️ gRPC Path"
522
+ msgid "Online Users"
523
+ msgstr "Online Users"
490
524
 
491
- msgid "config.path_grpc.description"
492
- msgstr "gRPC Path In Configs"
525
+ msgid "Only Blocked and Local websites"
526
+ msgstr "☑️ Only Blocked and Local Websites"
493
527
 
494
- msgid "config.path_tcp.label"
495
- msgstr "ℹ️ TCP Configuration Path"
528
+ msgid "Only for sublink?"
529
+ msgstr "🌍 Use Only for Subscription Link"
496
530
 
497
- msgid "config.path_tcp.description"
498
- msgstr "For the Proxy Link"
531
+ msgid "Oops! Something went wrong."
532
+ msgstr "Oops! something went wrong."
499
533
 
500
- msgid "config.path_ws.label"
501
- msgstr "ℹ️ Path of Websocket Requests"
534
+ msgid "Open in Application"
535
+ msgstr "Open in Application"
502
536
 
503
- msgid "config.path_ws.description"
504
- msgstr "Specify the Websocket Path"
537
+ msgid "Others"
538
+ msgstr "🇺🇳 Others"
505
539
 
506
- msgid "config.cloudflare.label"
507
- msgstr "🔑 Cloudflare API"
540
+ msgid "Override Root Admin"
541
+ msgstr "🔁 Override Owner in Backup"
508
542
 
509
- msgid "config.cloudflare.description"
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 "config.too_advanced.label"
516
- msgstr "Very Advanced Settings"
546
+ msgid "Package Days"
547
+ msgstr "📆 Package Days"
517
548
 
518
- msgid "config.too_advanced.description"
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 "config.warp_plus_code.label"
524
- msgstr "🔑 Warp Plus Key"
552
+ msgid "Package not started yet."
553
+ msgstr "Package Not Started Yet"
525
554
 
526
- msgid "config.warp_plus_code.description"
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 "config.warp_mode.label"
534
- msgstr "✴️ Warp+ Mode"
558
+ msgid "Parent Panel"
559
+ msgstr "Parent Panel"
535
560
 
536
- msgid "config.warp_mode.description"
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 "config.warp.label"
543
- msgstr "WARP➕"
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 "config.warp.description"
567
+ msgid ""
568
+ "Please connect your telegram account to the panel to be informed about "
569
+ "latest news."
546
570
  msgstr ""
547
- "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"
548
- "<br>\n"
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 "config.reality_short_ids.description"
555
- msgstr "Do Not Change It"
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 "config.reality_fallback_domain.label"
558
- msgstr "🌍 Reality Fallback Domain"
581
+ msgid "Please create an issue on Github."
582
+ msgstr "Please create an issue on Github"
559
583
 
560
- msgid "config.reality_fallback_domain.description"
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
- "When the GFW visit the Websites in Server names, it will be redirect to this"
563
- " Domain."
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 "config.reality_private_key.description"
569
- msgstr "Do Not Change It"
593
+ msgid "Please select at least one file."
594
+ msgstr "Please select at least one file."
570
595
 
571
- msgid "config.reality_public_key.label"
572
- msgstr "🔑 Public Key"
596
+ msgid "Please select at least one record."
597
+ msgstr "Please select at least one record."
573
598
 
574
- msgid "config.reality_public_key.description"
575
- msgstr "Do Not Change It"
599
+ msgid "Please select at least one user"
600
+ msgstr "Please select at least one user"
576
601
 
577
- msgid "config.reality.label"
578
- msgstr "Reality"
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 "config.reality.description"
581
- msgstr "REALITY eliminate the Server-Side TLS Fingerprint Feature"
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 "config.first_setup.label"
584
- msgstr "-"
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 "config.first_setup.description"
587
- msgstr "-"
618
+ msgid "Please wait "
619
+ msgstr "Please Wait "
588
620
 
589
- msgid "config.warp_enable.label"
590
- msgstr "Enable WARP+"
621
+ msgid "Port is already used! in"
622
+ msgstr "Port is Already Used in:"
591
623
 
592
- msgid "config.warp_enable.description"
624
+ msgid "Premium Description"
593
625
  msgstr ""
594
- "Warp helps you bypass Google, Spotify and Netflix restrictions by hiding "
595
- "server IP "
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 "config.restls1_2_domain.label"
598
- msgstr "config.restls1_2_domain.label"
647
+ msgid "ProxyPath is already used! use different proxy path"
648
+ msgstr "ProxyPath is already used! use different proxy path"
599
649
 
600
- msgid "config.restls1_2_domain.description"
601
- msgstr "config.restls1_2_domain.description"
650
+ msgid "QR code"
651
+ msgstr "🧾 QR Code"
602
652
 
603
- msgid "config.restls1_3_domain.label"
604
- msgstr "config.restls1_3_domain.label"
653
+ msgid "QRCode"
654
+ msgstr "<i class='fa-solid fa-qrcode'></i> QRCode"
605
655
 
606
- msgid "config.restls1_3_domain.description"
607
- msgstr "config.restls1_3_domain.description"
656
+ msgid "RAM"
657
+ msgstr "RAM"
608
658
 
609
- msgid "config.license.label"
610
- msgstr "License Code"
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 "config.license.description"
613
- msgstr "For commercial use of this Product, you must Purchase its License"
662
+ msgid "Release"
663
+ msgstr " Release"
614
664
 
615
- msgid "config.is_parent.label"
616
- msgstr "Parent Panel"
665
+ msgid "Remaining: "
666
+ msgstr "Package Ends"
617
667
 
618
- msgid "config.is_parent.description"
619
- msgstr "-"
668
+ msgid "Remote nodes are not supported yet!"
669
+ msgstr "Remote nodes are not supported yet!"
620
670
 
621
- msgid "config.parent_panel.label"
622
- msgstr "Parent Panel (Multi Server)"
671
+ msgid "Rename File"
672
+ msgstr "Rename File"
623
673
 
624
- msgid "config.parent_panel.description"
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 "config.unique_id.label"
630
- msgstr "-"
677
+ msgid "Reset Usage Time:"
678
+ msgstr "Traffic usage reset time:"
631
679
 
632
- msgid "config.unique_id.description"
633
- msgstr "-"
680
+ msgid "Reset every month"
681
+ msgstr "Monthly"
634
682
 
635
- msgid "config.last_hash.label"
636
- msgstr "-"
683
+ msgid "Reset package days"
684
+ msgstr "📆 Reset Package's Days"
637
685
 
638
- msgid "config.last_hash.description"
639
- msgstr "-"
686
+ msgid "Reset package usage"
687
+ msgstr "⏳ Reset Package's Usage"
640
688
 
641
- msgid "config.admin_secret.label"
642
- msgstr "Admin Secret"
689
+ msgid "Restore"
690
+ msgstr "♻️ Restore"
643
691
 
644
- msgid "config.admin_secret.description"
645
- msgstr "Admin secret will be used for accessing admin panel"
692
+ msgid "Restore Domain"
693
+ msgstr "🌏 Restore Domain"
646
694
 
647
- msgid "config.kcp_ports.label"
648
- msgstr "KCP Ports"
695
+ msgid "Restore Domain description"
696
+ msgstr "Select this option to restore your domains"
649
697
 
650
- msgid "config.kcp_ports.description"
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 "config.kcp_enable.label"
655
- msgstr "Enable KCP"
701
+ msgid "Restore File Description"
702
+ msgstr "Choose the downloaded restore file"
656
703
 
657
- msgid "config.kcp_enable.description"
658
- msgstr "It is a UDP Based Protocol "
704
+ msgid "Restore Settings"
705
+ msgstr "⚙️ Restore Settings"
659
706
 
660
- msgid "config.netdata.label"
661
- msgstr "Netdata"
707
+ msgid "Restore Settings description"
708
+ msgstr "Restore all settings description"
662
709
 
663
- msgid "config.netdata.description"
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 "config.torrent_block.label"
668
- msgstr "Torrent Block Configuration"
713
+ msgid "Restore Users description"
714
+ msgstr "Select this option to restore All Users"
669
715
 
670
- msgid "config.torrent_block.description"
671
- msgstr "Torrent Block Configurations could be set in this section."
716
+ msgid "Root"
717
+ msgstr "Root"
672
718
 
673
- msgid "config.tuic_enable.label"
674
- msgstr "Enable TUIC"
719
+ msgid "Save"
720
+ msgstr "Save"
675
721
 
676
- msgid "config.tuic_enable.description"
677
- msgstr "It is a UDP based protocol similar to QUIC"
722
+ msgid "Save & Add More"
723
+ msgstr "Save & Add More"
678
724
 
679
- msgid "config.tuic_port.label"
680
- msgstr "TUIC Ports"
725
+ msgid "Save Link"
726
+ msgstr "Save Link"
681
727
 
682
- msgid "config.tuic_port.description"
683
- msgstr "Use comma to separate ports like 63000,60000"
728
+ msgid "Select all records"
729
+ msgstr "Select all records"
684
730
 
685
- msgid "config.ssr_enable.label"
686
- msgstr "Enable SSR"
731
+ msgid "Select record"
732
+ msgstr "Select record"
687
733
 
688
- msgid "config.ssr_enable.description"
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 "config.ssr_fakedomain.label"
695
- msgstr "SSR FakeDomain"
737
+ msgid "Send Message to User's Telegram"
738
+ msgstr "📣 Send Message to User's Telegram"
696
739
 
697
- msgid "config.ssr_fakedomain.description"
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 "config.domain_fronting_http_enable.label"
703
- msgstr "Enable HTTP Domain Fronting"
743
+ msgid "Should be a valid domain"
744
+ msgstr "Should be a valid domain"
704
745
 
705
- msgid "config.domain_fronting_http_enable.description"
706
- msgstr "Enabling HTTP Domain Fronting causes your domain to be block quickly."
746
+ msgid "Should be a valid uuid"
747
+ msgstr "Should be a valid uuid"
707
748
 
708
- msgid "config.db_version.label"
709
- msgstr "Database Version Label"
749
+ msgid "Show Domains"
750
+ msgstr "Show Configs of Domains"
710
751
 
711
- msgid "config.db_version.description"
712
- msgstr "Database Version Description"
752
+ msgid "Simplifies the process of employing the link elsewhere."
753
+ msgstr "Simplifies the process of employing the link elsewhere"
713
754
 
714
- msgid "config.not_found.label"
715
- msgstr "Config Not Found"
755
+ msgid "SingBox"
756
+ msgstr "📦 SingBox"
716
757
 
717
- msgid "config.not_found.description"
718
- msgstr "Config Not Found"
758
+ msgid "Sort by %(name)s"
759
+ msgstr "Sort by %(name)s"
719
760
 
720
- msgid "config.path_v2ray.label"
721
- msgstr "V2Ray Path"
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 "config.create_easysetup_link.label"
739
- msgstr "-"
764
+ msgid "Status"
765
+ msgstr "Status"
740
766
 
741
- msgid "config.create_easysetup_link.description"
742
- msgstr "-"
767
+ msgid "Submit"
768
+ msgstr "Submit"
743
769
 
744
- msgid "config.wireguard_enable.label"
745
- msgstr "Enable WireGuard"
770
+ msgid "Success"
771
+ msgstr "Success"
746
772
 
747
- msgid "config.wireguard_enable.description"
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
- "WireGuard is UDP based protocol.\n"
750
- "\n"
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 "config.wireguard_port.description"
757
- msgstr "config.wireguard_port.description"
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 "config.wireguard_ipv6.label"
760
- msgstr "-"
785
+ msgid "Telegram Bot"
786
+ msgstr "Telegram Bot"
761
787
 
762
- msgid "config.wireguard_ipv6.description"
763
- msgstr "-"
788
+ msgid "Temporary Short Link"
789
+ msgstr "⏱️ Temporary Short Link"
764
790
 
765
- msgid "config.wireguard_ipv4.label"
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 "config.wireguard_ipv4.description"
769
- msgstr "-"
794
+ msgid "The message has been sent."
795
+ msgstr "The message has been sent."
770
796
 
771
- msgid "config.wireguard_private_key.label"
772
- msgstr "-"
797
+ msgid "The message was not sent to"
798
+ msgstr "The message was not sent to"
773
799
 
774
- msgid "config.wireguard_private_key.description"
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 "config.wireguard_public_key.label"
778
- msgstr "-"
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 "config.wireguard_public_key.description"
781
- msgstr "-"
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 "config.wireguard_noise_trick.label"
784
- msgstr "WireGuard Noise Trick"
813
+ msgid "This domain does not exist in the panel!"
814
+ msgstr "This Domain does not exist in the Panel !"
785
815
 
786
- msgid "config.wireguard_noise_trick.description"
816
+ msgid ""
817
+ "This version of hiddify panel is outdated. Please update it from admin area."
787
818
  msgstr ""
788
- "This method introduces extra noise to prevent detection and blocking by the "
789
- "GFW."
819
+ "⚠️ This version of Hiddify Manager is outdated. please Update it from Admin "
820
+ "area"
790
821
 
791
- msgid "config.ssh_server_redis_url.label"
792
- msgstr "SSH user database address"
822
+ msgid "Today Usage"
823
+ msgstr "Today"
793
824
 
794
- msgid "config.ssh_server_redis_url.description"
795
- msgstr "Not Used"
825
+ msgid "Too many Connected IPs"
826
+ msgstr "Too Many Connected IPs"
796
827
 
797
- msgid "config.ssh_server_port.label"
798
- msgstr "↔️ SSH Proxy Port"
828
+ msgid "Total Usage"
829
+ msgstr "Total Usage"
799
830
 
800
- msgid "config.ssh_server_port.description"
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 "config.ssh_server_enable.label"
806
- msgstr "✔️ Enable SSH Proxy"
834
+ msgid "Unified link for all application."
835
+ msgstr "One-click setup link for all applications (recommended)"
807
836
 
808
- msgid "config.ssh_server_enable.description"
809
- msgstr "SSH Proxy is completely different than original SSH Server"
837
+ msgid "Upload File"
838
+ msgstr "Upload File"
810
839
 
811
- msgid "config.core_type.label"
812
- msgstr "🎛️ Core"
840
+ msgid "Use HiddifyNext:"
841
+ msgstr "Use HiddifyNext:"
813
842
 
814
- msgid "config.core_type.description"
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 "config.warp_sites.label"
821
- msgstr "🆚 Additional Warp Sites"
846
+ msgid "User is inactive"
847
+ msgstr "User Is Inactive"
822
848
 
823
- msgid "config.warp_sites.description"
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
- "Add additional sites to pass through Warp (only when warp mode is not None)"
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 "config.dns_server.description"
856
+ msgid "V2rayNG"
831
857
  msgstr ""
832
- "✳️ Default 1.1.1.1 <br>\n"
833
- "🚧 Block Malware 1.1.1.2 <br>\n"
834
- "🔞 Block Porn 1.1.1.3\n"
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 "config.reality_port.description"
862
+ msgid "V2rayNG intro"
840
863
  msgstr ""
841
- "You can set a customized port for your reality server to reduce the system's"
842
- " overhead. (Allow direct connection to proxies should be yes)"
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 "config.tls_mixed_case.label"
863
- msgstr "🔠 Enable TLS Mixed SNI Case"
868
+ msgid "View in Telegram"
869
+ msgstr "View in Telegram"
864
870
 
865
- msgid "config.tls_mixed_case.description"
866
- msgstr "Enables TLS Mixed SNI Case Fragmentation"
871
+ msgid "Want to enjoy more with telegram?"
872
+ msgstr "ℹ️ Connect Your Account to Telegram"
867
873
 
868
- msgid "config.tls_padding_enable.label"
869
- msgstr "♒️ Enable TLS Padding"
874
+ msgid "Welcome %(user)s"
875
+ msgstr "Welcome %(user)s"
870
876
 
871
- msgid "config.tls_padding_enable.description"
872
- msgstr "Enables Padding for TLS Fragmentation"
877
+ msgid "Welcome to admin bot. Choose your action"
878
+ msgstr "Welcome to admin bot. Choose your action"
873
879
 
874
- msgid "config.tls_padding_length.label"
875
- msgstr "📏 TLS Padding"
880
+ msgid "Why Going to Premium?"
881
+ msgstr "Why Going to Premium?"
876
882
 
877
- msgid "config.tls_padding_length.description"
878
- msgstr "The length of the Padding for TLS Fragmentation"
883
+ msgid "Windows"
884
+ msgstr "Windows"
879
885
 
880
- msgid "config.mux_enable.label"
881
- msgstr "Ⓜ️ MUX Enable (⚠️ Incompatible with some clients)"
886
+ msgid "With selected"
887
+ msgstr "With selected"
882
888
 
883
- msgid "config.mux_enable.description"
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 "config.mux_protocol.label"
889
- msgstr "♍️ MUX Protocol"
892
+ msgid "Yesterday Usage"
893
+ msgstr "Yesterday"
890
894
 
891
- msgid "config.mux_protocol.description"
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
- "ℹ️ Multiplex Protocol. 'sMux' is used by default\n"
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
- "➖ sMux: Stream Multiplexing\n"
901
+ "/opt/hiddify-manager/hiddify-panel/backup/\n"
896
902
  "<br>\n"
897
- "➖ YaMux: Yet Another Multiplexer\n"
898
903
  "<br>\n"
899
- "➖ h2Mux: Multiplexing Streams Over HTTP/2"
900
-
901
- msgid "config.mux_max_connections.label"
902
- msgstr "⛓ MUX Max Connections"
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 "config.mux_min_streams.description"
910
+ msgid "You can restore your configs from previously downloaded configs"
911
911
  msgstr ""
912
- "Minimum Multiplexed streams in a connection before opening a new connection"
912
+ "ℹ️ You can restore your configs from previously downloaded backup file"
913
913
 
914
- msgid "config.mux_max_streams.label"
915
- msgstr "↗️ MUX Max Streams"
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 "config.mux_max_streams.description"
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
- "Maximum Multiplexed streams in a connection before opening a new connection"
927
+ "You have too much users! You can have only %(active)s active users and "
928
+ "%(total)s users"
920
929
 
921
- msgid "config.mux_padding_enable.label"
922
- msgstr " MUX Padding"
930
+ msgid "You have used this domain in: "
931
+ msgstr "You have already used this Domain in: "
923
932
 
924
- msgid "config.mux_padding_enable.description"
925
- msgstr "Enables MUX Padding"
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 "config.mux_brutal_enable.label"
928
- msgstr "☣️ MUX Brutal"
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 "config.mux_brutal_enable.description"
931
- msgstr "Enables TCP-Brutal congestion control algorithm"
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 "config.mux_brutal_up_mbps.label"
934
- msgstr "⬆️ MUX Brutal Upload (mbps)"
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 "config.mux_brutal_up_mbps.description"
937
- msgstr "TCP-Brutal Maximum Upload Speed"
972
+ msgid "actions"
973
+ msgstr "Actions"
938
974
 
939
- msgid "config.mux_brutal_down_mbps.label"
940
- msgstr "⬇️ MUX Brutal Download (mbps)"
975
+ msgid "admin link"
976
+ msgstr "Admin"
941
977
 
942
- msgid "config.mux_brutal_down_mbps.description"
943
- msgstr "TCP-Brutal Maximum Download Speed"
978
+ msgid "admin.Actions:apply_configs"
979
+ msgstr "Apply Configs"
944
980
 
945
- msgid "config.proxy_path_admin.label"
946
- msgstr "🔐 Proxy Path for Admins"
981
+ msgid "admin.actions.apply_configs"
982
+ msgstr "Apply Configs"
947
983
 
948
- msgid "config.proxy_path_admin.description"
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 "config.proxy_path_client.label"
953
- msgstr "🔏 Proxy Path for Clients"
987
+ msgid "admin.actions.reset"
988
+ msgstr "Restart System"
954
989
 
955
- msgid "config.proxy_path_client.description"
956
- msgstr "Secret proxy path hide the proxies from the governments and bots"
990
+ msgid "admin.actions.status"
991
+ msgstr "Status"
957
992
 
958
- msgid "config.hysteria_enable.label"
959
- msgstr "Enable Hysteria2"
993
+ msgid "admin.actions.title"
994
+ msgstr "Actions"
960
995
 
961
- msgid "config.hysteria_enable.description"
962
- msgstr "To Enable UDP based Hysteria Protocol"
996
+ msgid "admin.actions.update"
997
+ msgstr "Update"
963
998
 
964
- msgid "config.hysteria_port.label"
965
- msgstr "🔍 Hysteria2 Port"
999
+ msgid "admin.actions.viewlogs"
1000
+ msgstr "View Logs"
966
1001
 
967
- msgid "config.hysteria_port.description"
968
- msgstr "Hysteria UDP Port for example 5678"
1002
+ msgid "admin.config.apply_configs"
1003
+ msgstr "Apply Configs"
969
1004
 
970
- msgid "config.hysteria_obfs_enable.label"
971
- msgstr "🎛 Hysteria OBFS Enable"
1005
+ msgid "admin.config.title"
1006
+ msgstr "Settings"
972
1007
 
973
- msgid "config.hysteria_obfs_enable.description"
974
- msgstr " Enables Hysteria Obfuscation (Salamander)"
1008
+ msgid "admin.menu.api"
1009
+ msgstr "API"
975
1010
 
976
- msgid "config.hysteria_up_mbps.label"
977
- msgstr "⬆️ Hysteria Upload (mbps)"
1011
+ msgid "admin.menu.config"
1012
+ msgstr "Settings"
978
1013
 
979
- msgid "config.hysteria_up_mbps.description"
980
- msgstr "Hysteria Maximum Upload Speed"
1014
+ msgid "admin.menu.domain"
1015
+ msgstr "Domains"
981
1016
 
982
- msgid "config.hysteria_down_mbps.label"
983
- msgstr "⬇️ Hysteria Download (mbps)"
1017
+ msgid "admin.menu.home"
1018
+ msgstr "Dashboard"
984
1019
 
985
- msgid "config.hysteria_down_mbps.description"
986
- msgstr "Hysteria Maximum Download Speed"
1020
+ msgid "admin.menu.proxy"
1021
+ msgstr "Proxies"
987
1022
 
988
- msgid "config.shadowsocks2022_enable.label"
989
- msgstr "Enable Shadowsocks 2022"
1023
+ msgid "admin.menu.proxy_stats"
1024
+ msgstr "Proxies' Status"
990
1025
 
991
- msgid "config.shadowsocks2022_enable.description"
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 "config.shadowsocks2022_method.label"
999
- msgstr "Shadowsocks Encrypytion Method"
1029
+ msgid "admin.menu.telegram"
1030
+ msgstr "Telegram"
1000
1031
 
1001
- msgid "config.shadowsocks2022_method.description"
1002
- msgstr "This method also used in ShadowTLS and SSFakeTLS"
1032
+ msgid "admin.menu.user"
1033
+ msgstr "Users"
1003
1034
 
1004
- msgid "config.shadowsocks2022_port.label"
1005
- msgstr "Shadowsocks 2022 Port"
1035
+ msgid "admin.proxy.detailed_config"
1036
+ msgstr "⚙️ Detailed Configs"
1006
1037
 
1007
- msgid "config.shadowsocks2022_port.description"
1008
- msgstr "It needs both UDP and TCP to be free"
1038
+ msgid "admin.proxy.global_config"
1039
+ msgstr "⚙️ Global Configs"
1009
1040
 
1010
- msgid "config.ws_enable.label"
1011
- msgstr "Enable Websocket"
1041
+ msgid "admin.quicksetup.title"
1042
+ msgstr "Quick Setup"
1012
1043
 
1013
- msgid "config.ws_enable.description"
1044
+ msgid "admin.quicksetup_intro"
1014
1045
  msgstr ""
1015
- "Websocket creates a tunnel over http that is useful to be used in CDN."
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 "config.grpc_enable.label"
1018
- msgstr "Enable gRPC"
1052
+ msgid "all"
1053
+ msgstr "All"
1019
1054
 
1020
- msgid "config.grpc_enable.description"
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 "config.httpupgrade_enable.label"
1026
- msgstr "Enable HTTPUpgrade Method"
1058
+ msgid "app.foxray.description"
1059
+ msgstr "FoXray Description"
1027
1060
 
1028
- msgid "config.httpupgrade_enable.description"
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 "config.path_httpupgrade.label"
1035
- msgstr "HTTP Upgrade Path"
1064
+ msgid "app.hiddify-clash-android.description"
1065
+ msgstr "app.hiddify-clash-android.description"
1036
1066
 
1037
- msgid "config.path_httpupgrade.description"
1038
- msgstr "should be random"
1067
+ msgid "app.hiddify-clash-android.title"
1068
+ msgstr "Hiddify Clash"
1039
1069
 
1040
- msgid "config.mux.label"
1041
- msgstr "MUX Config"
1070
+ msgid "app.hiddify-clash-desktop.description"
1071
+ msgstr "app.hiddify-clash-desktop.description"
1042
1072
 
1043
- msgid "config.mux.description"
1044
- msgstr "MUX (Multiplex) configurations could be set in this section"
1073
+ msgid "app.hiddify-clash-desktop.title"
1074
+ msgstr "Hiddify Clash"
1045
1075
 
1046
- msgid "config.tls_trick.label"
1047
- msgstr "TLS Trick"
1076
+ msgid "app.hiddify.next.description"
1077
+ msgstr "Hiddify Next Description"
1048
1078
 
1049
- msgid "config.tls_trick.description"
1050
- msgstr "TLS Fragmentation configurations could be set in this section"
1079
+ msgid "app.hiddify.next.title"
1080
+ msgstr "Hiddify Next"
1051
1081
 
1052
- msgid "config.ssh.label"
1053
- msgstr "SSH Proxy"
1082
+ msgid "app.hiddifyn.description"
1083
+ msgstr "HiddifyN Description"
1054
1084
 
1055
- msgid "config.ssh.description"
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 "config.hysteria.label"
1063
- msgstr "Hysteria"
1088
+ msgid "app.hiddifyng.description"
1089
+ msgstr "HiddifyNG Description"
1064
1090
 
1065
- msgid "config.hysteria.description"
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 "config.hidden.label"
1072
- msgstr "-"
1094
+ msgid "app.loon.description"
1095
+ msgstr "Loon Description"
1073
1096
 
1074
- msgid "config.hidden.description"
1075
- msgstr "-"
1097
+ msgid "app.loon.title"
1098
+ msgstr "Loon"
1076
1099
 
1077
- msgid "config.wireguard.label"
1078
- msgstr "Wireguard"
1100
+ msgid "app.nekobox.description"
1101
+ msgstr "app.nekobox.description"
1079
1102
 
1080
- msgid "config.wireguard.description"
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 "config.shadowsocks.label"
1087
- msgstr "Shadowsocks"
1106
+ msgid "app.shadowrocket.description"
1107
+ msgstr "Shadowrocket Description"
1088
1108
 
1089
- msgid "config.shadowsocks.description"
1090
- msgstr "Shadowsocks is a fast tunnel proxy that helps you bypass firewalls."
1109
+ msgid "app.shadowrocket.title"
1110
+ msgstr "Shadowrocket"
1091
1111
 
1092
- msgid "Error! auto cdn ip can not be find, please contact admin."
1093
- msgstr "Error In Auto CDN IP! It Can Not Be Find, Please Contact Admin"
1112
+ msgid "app.stash.description"
1113
+ msgstr "Stash Description"
1094
1114
 
1095
- msgid "Owner can not be deleted!"
1096
- msgstr "Owner can not be deleted!"
1115
+ msgid "app.stash.title"
1116
+ msgstr "Stash"
1097
1117
 
1098
- msgid "This domain does not exist in the panel!"
1099
- msgstr "This Domain does not exist in the Panel !"
1118
+ msgid "app.streisand.description"
1119
+ msgstr "Streisand Description"
1100
1120
 
1101
- msgid "Domain can not be resolved! there is a problem in your domain"
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
- "selected domain for REALITY is not in the same ASN. To better use of the "
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 "User activated!"
1114
- msgstr "User Activated"
1127
+ msgid "app.v2rayng.title"
1128
+ msgstr "V2RayNG"
1115
1129
 
1116
- msgid "Package ended!"
1117
- msgstr "Package Ended"
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 "see the log in the bellow screen"
1134
- msgstr "📑 See the log in the bellow screen"
1133
+ msgid "auto_cdn_ip"
1134
+ msgstr "☑️ Automatic CDN IP Selector"
1135
1135
 
1136
- msgid ""
1137
- "Success! Please wait around 5 minutes to make sure everything is updated."
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 "actions"
1142
- msgstr "Actions"
1139
+ msgid "child has been removed!"
1140
+ msgstr "Child Has Been Removed!"
1143
1141
 
1144
- msgid "user.user_links"
1145
- msgstr "User Links"
1142
+ msgid "child.register-failed"
1143
+ msgstr "child.register-failed"
1146
1144
 
1147
- msgid "user.name"
1148
- msgstr "Name"
1145
+ msgid "child.register-success"
1146
+ msgstr "child.register-success"
1149
1147
 
1150
- msgid "user.UUID"
1151
- msgstr "UUID"
1148
+ msgid "child.sync-failed"
1149
+ msgstr "child.sync-failed"
1152
1150
 
1153
- msgid "user.usage_limit_GB"
1154
- msgstr "⌛️ Usage Limit (GB)"
1151
+ msgid "child.sync-success"
1152
+ msgstr "child.sync-success"
1155
1153
 
1156
- msgid "user.current_usage_GB"
1157
- msgstr "Current Usage (GB)"
1154
+ msgid "clickable copy"
1155
+ msgstr "Link for Social Media"
1158
1156
 
1159
- msgid "user.expiry_time"
1160
- msgstr "Expire (Days)"
1157
+ msgid "close"
1158
+ msgstr "Close"
1161
1159
 
1162
- msgid "user.last_reset_time"
1163
- msgstr "Last Usage Date Reset"
1160
+ msgid "config.Domain already used"
1161
+ msgstr "Domain is exist in domains section. Use another Domain"
1164
1162
 
1165
- msgid "user.home.title"
1166
- msgstr "Hiddify"
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 "user.home.tool.all-configs"
1169
- msgstr "All Configs"
1167
+ msgid "config.Invalid domain"
1168
+ msgstr "Error! Invalid Domain. The Domain Format is www.google.com"
1170
1169
 
1171
- msgid "user.home.tool.doh.title"
1172
- msgstr "DNS Over HTTPS"
1170
+ msgid "config.Invalid port"
1171
+ msgstr "Invalid Port. it should be comma separated Integer e.g. 2052,2053"
1173
1172
 
1174
- msgid "user.home.tool.doh.help"
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 "user.home.allconfig.name"
1197
- msgstr "Name and Link"
1176
+ msgid "config.Invalid telegram bot token"
1177
+ msgstr "Invalid Telegram Bot Token"
1198
1178
 
1199
- msgid "user.home.allconfig.type"
1200
- msgstr "Type"
1179
+ msgid "config.Invalid! The pattern is number-number"
1180
+ msgstr "⚠️ The Pattern Is Number-Number ⚠️"
1201
1181
 
1202
- msgid "user.home.allconfig.protocol"
1203
- msgstr "Protocol"
1182
+ msgid "config.Invalid! it should be a number only"
1183
+ msgstr "⚠️ It Should Be a Number Only ⚠️"
1204
1184
 
1205
- msgid "user.home.allconfig.transport"
1206
- msgstr "Transport"
1185
+ msgid "config.admin.description"
1186
+ msgstr "Admin section is for configuring admin related settings"
1207
1187
 
1208
- msgid "user.home.allconfig.security"
1209
- msgstr "Security"
1188
+ msgid "config.admin.label"
1189
+ msgstr "Admin Settings"
1210
1190
 
1211
- msgid "user.home.allconfig.hiddify-managers"
1212
- msgstr "All Config Hiddify Managers"
1191
+ msgid "config.admin_lang.description"
1192
+ msgstr "Choose Language For Admin Area"
1213
1193
 
1214
- msgid "user.home.allconfig.clash-configs"
1215
- msgstr "Clash Configs"
1194
+ msgid "config.admin_lang.label"
1195
+ msgstr "🗺️ Admin Panel Language"
1216
1196
 
1217
- msgid "user.home.allconfig.link-configs"
1218
- msgstr "Subscription Link"
1197
+ msgid "config.admin_secret.description"
1198
+ msgstr "Admin secret will be used for accessing admin panel"
1219
1199
 
1220
- msgid "user.home.allconfigs.expect_vless"
1221
- msgstr "Except VLess"
1200
+ msgid "config.admin_secret.label"
1201
+ msgstr "Admin Secret"
1222
1202
 
1223
- msgid "user.home.android.intro"
1203
+ msgid "config.advanced.description"
1224
1204
  msgstr ""
1225
- "Please install Hiddify Android from %(dl_link)s %(play_link)s. \n"
1226
- "\n"
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 "user.home.clash_configs.intro"
1208
+ msgid "config.advanced.label"
1209
+ msgstr "Advanced Settings"
1210
+
1211
+ msgid "config.allow_invalid_sni.description"
1264
1212
  msgstr ""
1265
- "Now based on your needs, click on one of the following links.\n"
1266
- "<br />"
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 "user.home.clash_configs.only_for_blocked_sites.title"
1269
- msgstr "For only Blocked Sites"
1216
+ msgid "config.allow_invalid_sni.label"
1217
+ msgstr "🆗 Allow Invalid SNI"
1270
1218
 
1271
- msgid "user.home.clash_configs.only_for_blocked_sites.description"
1219
+ msgid "config.auto_update.description"
1272
1220
  msgstr ""
1273
- "This mode is suggested. It only forwards the blocked sites via Proxy.\n"
1274
- " <div class='callout callout-success'>\n"
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 "user.home.clash_configs.only_for_blocked_sites.btn"
1279
- msgstr "Install for Only Blocked Sites"
1224
+ msgid "config.auto_update.label"
1225
+ msgstr "🔄 Auto Update"
1280
1226
 
1281
- msgid "user.home.clash_configs.alternative_for_normal_clash"
1282
- msgstr "Alternative link for Clash"
1227
+ msgid "config.block_iran_sites.description"
1228
+ msgstr "Block domestic Sites to prevent detection by the government"
1283
1229
 
1284
- msgid "user.home.clash_configs.link_for_normal_clash"
1285
- msgstr "Install Clash"
1230
+ msgid "config.block_iran_sites.label"
1231
+ msgstr "⛔️ Block Domestic Sites"
1286
1232
 
1287
- msgid "user.home.clash_configs.foreign_sites.title"
1288
- msgstr "Foreign Sites Proxy"
1233
+ msgid "config.branding.description"
1234
+ msgstr "Customization settings for User Page"
1289
1235
 
1290
- msgid "user.home.clash_configs.foreign_sites.description"
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 "user.home.clash_configs.foreign_sites.btn"
1298
- msgstr "Install for Foreign Sites"
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 "user.home.clash_configs.all_sites.title"
1301
- msgstr "Proxy for All Sites"
1244
+ msgid "config.branding_freetext.label"
1245
+ msgstr "📢 Support Section Text"
1302
1246
 
1303
- msgid "user.home.clash_configs.all_sites.description"
1247
+ msgid "config.branding_site.description"
1304
1248
  msgstr ""
1305
- "Use Proxy for all websites even for local websites.\n"
1306
- "<div class='callout callout-danger'>\n"
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 "user.home.clash_configs.all_sites.btn"
1311
- msgstr "Install Proxy for All Sites."
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 "user.home.all_configs"
1314
- msgstr "All Configs"
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 "user.home.speedtest.title"
1317
- msgstr "Speed Test (Detect dirty IP)"
1262
+ msgid "config.branding_title.label"
1263
+ msgstr "👁‍🗨 User Page Title"
1318
1264
 
1319
- msgid "user.home.speedtest.intro"
1265
+ msgid "config.cdn_forced_host.description"
1320
1266
  msgstr ""
1321
- "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"
1322
- "If the speed was low without a proxy, don't waste your time to test this proxy.\n"
1323
- "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"
1324
- "<br />"
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 "user.home.speedtest.download"
1330
- msgstr "Download"
1272
+ msgid "config.cdn_forced_host.label"
1273
+ msgstr "🔂 Force Config to Use Following IPs"
1331
1274
 
1332
- msgid "user.home.speedtest.two_ways"
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
- "To copy or share links, click on the gray <i class='fa-solid fa-qrcode'></i>"
1341
- " field to display its QR Code."
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 "user.home.ios.stash.title"
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 "user.home.ios.stash.intro"
1284
+ msgid "config.core_type.description"
1353
1285
  msgstr ""
1354
- "Stash & Shadowrocket are both great applications. Either one is worth buying.\n"
1286
+ "☢️ XRay : Is a Complete Core\n"
1355
1287
  "<br>\n"
1356
- "<br />\n"
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 "user.home.ios.others.title"
1366
- msgstr "FoXray and Fair VPN"
1290
+ msgid "config.core_type.label"
1291
+ msgstr "🎛️ Core"
1367
1292
 
1368
- msgid "user.home.ios.others.intro"
1293
+ msgid "config.country.description"
1369
1294
  msgstr ""
1370
- "First install one of the following Applications:\n"
1371
- "\n"
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 "user.home.telegram.clickbtn"
1390
- msgstr "Telegram Proxy"
1298
+ msgid "config.country.label"
1299
+ msgstr "🌍 Country"
1391
1300
 
1392
- msgid "user.home.telegram.description"
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 "user.home.usage.title"
1398
- msgstr "⏳ Traffic Usage"
1304
+ msgid "config.create_easysetup_link.label"
1305
+ msgstr "config.create_easysetup_link.label"
1399
1306
 
1400
- msgid "user.home.usage.from"
1401
- msgstr "Of"
1307
+ msgid "config.db_version.description"
1308
+ msgstr "Database Version Description"
1402
1309
 
1403
- msgid "user.home.usage.monthly"
1404
- msgstr "Monthly"
1310
+ msgid "config.db_version.label"
1311
+ msgstr "Database Version Label"
1405
1312
 
1406
- msgid "user.home.usage.expire"
1407
- msgstr "Expire: "
1313
+ msgid "config.dbvalues.description"
1314
+ msgstr "config.dbvalues.description"
1408
1315
 
1409
- msgid "user.home.usage.details"
1410
- msgstr "Display Usage Details"
1316
+ msgid "config.dbvalues.label"
1317
+ msgstr "config.dbvalues.label"
1411
1318
 
1412
- msgid "user.home.branding.title"
1413
- msgstr "Support"
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 "user.home.branding.linktitle"
1416
- msgstr "Support Page Link"
1326
+ msgid "config.decoy_domain.label"
1327
+ msgstr "📺 Decoy Site"
1417
1328
 
1418
- msgid "user.home.windows.intro"
1329
+ msgid "config.dns_server.description"
1419
1330
  msgstr ""
1420
- "First, download and install the Hiddify Desktop software according to your operating system.\n"
1421
- "<br />\n"
1422
- "%(hiddify_desktop_links)s\n"
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 "user.home.share-title"
1451
- msgstr "Share to Social Media"
1335
+ msgid "config.dns_server.label"
1336
+ msgstr "🖥 DNS Server"
1452
1337
 
1453
- msgid "user.home.link.success-copy"
1454
- msgstr "Link Copied to Clipboard. "
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 "user.home.link.manual-copy"
1457
- msgstr "Copy to Clipboard: Ctrl+C, Enter"
1343
+ msgid "config.domain_fronting.label"
1344
+ msgstr "🔒 Enable TLS Domain Fronting"
1458
1345
 
1459
- msgid "Mode"
1460
- msgstr "Mode"
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 "Note"
1463
- msgstr "📝 Note"
1351
+ msgid "config.domain_fronting_domain.label"
1352
+ msgstr "ℹ️ Domain Fronting"
1464
1353
 
1465
- msgid "Max Active Users"
1466
- msgstr "Max Active Users"
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 "Max Users"
1469
- msgstr "Max Users"
1357
+ msgid "config.domain_fronting_http_enable.label"
1358
+ msgstr "Enable HTTP Domain Fronting"
1470
1359
 
1471
- msgid "Online Users"
1472
- msgstr "Online Users"
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 "Can add sub admin"
1475
- msgstr "👥 Can Add Sub Admin"
1365
+ msgid "config.domain_fronting_tls_enable.label"
1366
+ msgstr "🔒 Enable TLS Domain Fronting"
1476
1367
 
1477
- msgid "Should be a valid uuid"
1478
- msgstr "Should be a valid uuid"
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 "Add some text that is only visible to super_admin."
1481
- msgstr "Add some Text that is only visible to Super Admin"
1373
+ msgid "config.firewall.label"
1374
+ msgstr "🛡️ Firewall"
1482
1375
 
1483
- msgid "Define the admin mode. "
1484
- msgstr "🥇🥈🥉 Define the Admin Mode"
1376
+ msgid "config.first_setup.description"
1377
+ msgstr "config.first_setup.description"
1485
1378
 
1486
- msgid "Config file is incorrect"
1487
- msgstr "Config file is incorrect."
1379
+ msgid "config.first_setup.label"
1380
+ msgstr "config.first_setup.label"
1488
1381
 
1489
- msgid "Restore File"
1490
- msgstr "Restore File"
1382
+ msgid "config.general.description"
1383
+ msgstr "It is General System Configurations"
1491
1384
 
1492
- msgid "Restore File Description"
1493
- msgstr "Choose the downloaded restore file"
1385
+ msgid "config.general.label"
1386
+ msgstr "General Settings"
1494
1387
 
1495
- msgid "Restore Settings"
1496
- msgstr "⚙️ Restore Settings"
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 "Restore Settings description"
1499
- msgstr "Restore all settings description"
1393
+ msgid "config.grpc_enable.label"
1394
+ msgstr " Enable gRPC"
1500
1395
 
1501
- msgid "Restore Users"
1502
- msgstr "👥 Restore Users"
1396
+ msgid "config.h2_enable.description"
1397
+ msgstr "config.h2_enable.description"
1503
1398
 
1504
- msgid "Restore Users description"
1505
- msgstr "Select this option to restore All Users"
1399
+ msgid "config.h2_enable.label"
1400
+ msgstr "config.h2_enable.label"
1506
1401
 
1507
- msgid "Restore Domain"
1508
- msgstr "🌏 Restore Domain"
1402
+ msgid "config.hidden.description"
1403
+ msgstr "config.hidden.description"
1509
1404
 
1510
- msgid "Restore Domain description"
1511
- msgstr "Select this option to restore your domains"
1405
+ msgid "config.hidden.label"
1406
+ msgstr "config.hidden.label"
1512
1407
 
1513
- msgid "Override Root Admin"
1514
- msgstr "🔁 Override Owner in Backup"
1408
+ msgid "config.http.description"
1409
+ msgstr "HTTP Configurations could be set in this section"
1515
1410
 
1516
- msgid "It will override the root admin to the current user"
1411
+ msgid "config.http.label"
1412
+ msgstr "HTTP Configuration"
1413
+
1414
+ msgid "config.http_ports.description"
1517
1415
  msgstr ""
1518
- "It will override the owner admin of the backup file to the current user"
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 "Submit"
1521
- msgstr "Submit"
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
- "⚠️ This version of Hiddify Manager is outdated. please Update it from Admin "
1527
- "area"
1424
+ "By allowing this, your users can connect to the system with Unencrypted HTTP"
1425
+ " Port. (Not Recommended)"
1528
1426
 
1529
- msgid "Access Denied!"
1530
- msgstr "Access Denied"
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 seems that you have not setup the system completely. <a class='btn btn-"
1537
- "success' href='%(quick_setup)s'>Click here</a> to complete setup."
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
- "Please understand that parent panel is under test and the plan and the "
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
- "It seems that you have not created any users yet. default user link: "
1558
- "%(default_link)s"
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 "serverssh.password-login.warning"
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 "child has been removed!"
1569
- msgstr "Child Has Been Removed!"
1448
+ msgid "config.hysteria_down_mbps.description"
1449
+ msgstr "Hysteria Maximum Download Speed"
1570
1450
 
1571
- msgid "domain.description"
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 "domain.domain"
1579
- msgstr "Domain"
1454
+ msgid "config.hysteria_enable.description"
1455
+ msgstr "To Enable UDP based Hysteria Protocol"
1580
1456
 
1581
- msgid "domain.mode"
1582
- msgstr "Mode"
1457
+ msgid "config.hysteria_enable.label"
1458
+ msgstr "Enable Hysteria2"
1583
1459
 
1584
- msgid "domain.ip"
1585
- msgstr "IP"
1460
+ msgid "config.hysteria_obfs_enable.description"
1461
+ msgstr " Enables Hysteria Obfuscation (Salamander)"
1586
1462
 
1587
- msgid "domain.cdn"
1588
- msgstr "CDN"
1463
+ msgid "config.hysteria_obfs_enable.label"
1464
+ msgstr "🎛 Hysteria OBFS Enable"
1589
1465
 
1590
- msgid "domain.domain_fronting.label"
1591
- msgstr "🔒 Enable TLS Domain Fronting"
1466
+ msgid "config.hysteria_port.description"
1467
+ msgstr "Hysteria UDP Port for example 5678"
1592
1468
 
1593
- msgid "domain.domain_fronting.description"
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
- "Direct mode means you want to use your server directly (for usual use), CDN "
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
- "You can select the configs with which domains show be shown in the user "
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 "The name shown in the configs for this domain."
1626
- msgstr "The name that will be shown in the Configs for this Domain."
1478
+ msgid "config.invalid-pattern-for-warp-sites"
1479
+ msgstr "config.invalid-pattern-for-warp-sites"
1627
1480
 
1628
- msgid ""
1629
- "This can be used for giving your users a permanent non blockable links."
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 "gRPC is a H2 based protocol. Maybe it is faster for you!"
1634
- msgstr "ℹ️ gRPC is a H2 based Protocol. Maybe it is faster for you!"
1484
+ msgid "config.is_parent.label"
1485
+ msgstr "Parent Panel"
1635
1486
 
1636
- msgid "Should be a valid domain"
1637
- msgstr "Should be a valid domain"
1487
+ msgid "config.kcp.description"
1488
+ msgstr "KCP Configurations could be set in this section."
1638
1489
 
1639
- msgid "Invalid IP or domain"
1640
- msgstr "Invalid IP or domain"
1490
+ msgid "config.kcp.label"
1491
+ msgstr "KCP"
1641
1492
 
1642
- msgid "Invalid REALITY hostnames"
1643
- msgstr "Invalid REALITY Hostnames"
1493
+ msgid "config.kcp_enable.description"
1494
+ msgstr "It is a UDP Based Protocol "
1644
1495
 
1645
- msgid "Only for sublink?"
1646
- msgstr "🌍 Use Only for Subscription Link"
1496
+ msgid "config.kcp_enable.label"
1497
+ msgstr "Enable KCP"
1647
1498
 
1648
- msgid "Show Domains"
1649
- msgstr "Show Configs of Domains"
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 "Alias"
1652
- msgstr "Alias"
1503
+ msgid "config.kcp_ports.label"
1504
+ msgstr "KCP Ports"
1653
1505
 
1654
- msgid "gRPC"
1655
- msgstr " gRPC"
1506
+ msgid "config.lang.description"
1507
+ msgstr "Choose Language For Users Area"
1656
1508
 
1657
- msgid "admin link"
1658
- msgstr "Admin"
1509
+ msgid "config.lang.label"
1510
+ msgstr "🗺️ User Area Language"
1659
1511
 
1660
- msgid "All"
1661
- msgstr "All"
1512
+ msgid "config.last_hash.description"
1513
+ msgstr "config.last_hash.description"
1662
1514
 
1663
- msgid "You have used this domain in: "
1664
- msgstr "You have already used this Domain in: "
1515
+ msgid "config.last_hash.label"
1516
+ msgstr "config.last_hash.label"
1665
1517
 
1666
- msgid "Couldn't find your ip addresses"
1667
- msgstr "Couldn't find your IP Addresses"
1518
+ msgid "config.license.description"
1519
+ msgstr "For commercial use of this Product, you must Purchase its License"
1668
1520
 
1669
- msgid "Can not connect to Cloudflare."
1670
- msgstr "Can not connect to Cloudflare."
1521
+ msgid "config.license.label"
1522
+ msgstr "License Code"
1671
1523
 
1672
- msgid ""
1673
- "Using alias with special charachters may cause problem in some clients like "
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 "Domain is not REALITY friendly!"
1680
- msgstr "Domain is Not REALITY Friendly!"
1527
+ msgid "config.log_level.label"
1528
+ msgstr "config.log_level.label"
1681
1529
 
1682
- msgid "REALITY Fallback domain is not compaitble with server names!"
1683
- msgstr "REALITY Fallback Domain is not compaitble with Server names!"
1530
+ msgid "config.mux.description"
1531
+ msgstr "MUX (Multiplex) configurations could be set in this section"
1684
1532
 
1685
- msgid "Error in auto cdn format"
1686
- msgstr "⚠️ Error in Auto CDN Format"
1533
+ msgid "config.mux.label"
1534
+ msgstr "MUX Config"
1687
1535
 
1688
- msgid "node.name.label"
1689
- msgstr "Node Name"
1536
+ msgid "config.mux_brutal_down_mbps.description"
1537
+ msgstr "TCP-Brutal Maximum Download Speed"
1690
1538
 
1691
- msgid "node.name.dscr"
1692
- msgstr "node.name.dscr"
1539
+ msgid "config.mux_brutal_down_mbps.label"
1540
+ msgstr "⬇️ MUX Brutal Download (mbps)"
1693
1541
 
1694
- msgid "node.mode.label"
1695
- msgstr "Node Mode"
1542
+ msgid "config.mux_brutal_enable.description"
1543
+ msgstr "Enables TCP-Brutal congestion control algorithm"
1696
1544
 
1697
- msgid "node.mode.dscr"
1698
- msgstr "node.mode.dscr"
1545
+ msgid "config.mux_brutal_enable.label"
1546
+ msgstr "☣️ MUX Brutal"
1699
1547
 
1700
- msgid "node.uuid.label"
1701
- msgstr "Node UUID"
1548
+ msgid "config.mux_brutal_up_mbps.description"
1549
+ msgstr "TCP-Brutal Maximum Upload Speed"
1702
1550
 
1703
- msgid "node.uuid.dscr"
1704
- msgstr "node.uuid.dscr"
1551
+ msgid "config.mux_brutal_up_mbps.label"
1552
+ msgstr "⬆️ MUX Brutal Upload (mbps)"
1705
1553
 
1706
- msgid "Remote nodes are not supported yet!"
1707
- msgstr "Remote nodes are not supported yet!"
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 "quicksetup.setlang.success"
1710
- msgstr "Changing the Language was Successful."
1559
+ msgid "config.mux_enable.label"
1560
+ msgstr "Ⓜ️ MUX Enable (⚠️ Incompatible With Some Clients)"
1711
1561
 
1712
- msgid "quicksetup.setlang.error"
1713
- msgstr "An error occurred while changing language."
1562
+ msgid "config.mux_max_connections.description"
1563
+ msgstr "Maximum Connections. Conflict with Max Streams"
1714
1564
 
1715
- msgid "lang.en"
1716
- msgstr "🇺🇸 English انگلیسی 英语"
1565
+ msgid "config.mux_max_connections.label"
1566
+ msgstr " MUX Max Connections"
1717
1567
 
1718
- msgid "lang.fa"
1719
- msgstr "🇮🇷 Persian فارسی 波斯语"
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 "lang.pt"
1722
- msgstr "🇵🇹 Portuguese پرتغالی 葡萄牙語"
1572
+ msgid "config.mux_max_streams.label"
1573
+ msgstr "↗️ MUX Max Streams"
1723
1574
 
1724
- msgid "lang.zh"
1725
- msgstr "🇨🇳 Chinese چینی 简体中文"
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 "lang.ru"
1728
- msgstr "🇷🇺 Russian روسی Русский"
1579
+ msgid "config.mux_min_streams.label"
1580
+ msgstr "↘️ MUX Min Streams"
1729
1581
 
1730
- msgid "Iran"
1731
- msgstr "🇮🇷 Iran"
1582
+ msgid "config.mux_padding_enable.description"
1583
+ msgstr "Enables MUX Padding"
1732
1584
 
1733
- msgid "China"
1734
- msgstr "🇨🇳 China"
1585
+ msgid "config.mux_padding_enable.label"
1586
+ msgstr " MUX Padding"
1735
1587
 
1736
- msgid "config.Invalid domain"
1737
- msgstr "Error! Invalid Domain. The Domain Format is www.google.com"
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.Domain already used"
1740
- msgstr "Domain is exist in domains section. Use another Domain"
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
- "Domain (%(domain)s)-> IP = %(domain_ip)s is not same as your IP = "
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 "ProxyPath is already used! use different proxy path"
1753
- msgstr "ProxyPath is already used! use different proxy path"
1605
+ msgid "config.netdata.label"
1606
+ msgstr "Netdata"
1754
1607
 
1755
- msgid "Xray"
1756
- msgstr "☢️ XRay"
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 "Others"
1768
- msgstr "🇺🇳 Others"
1611
+ msgid "config.not_found.label"
1612
+ msgstr "Config Not Found"
1769
1613
 
1770
- msgid "Release"
1771
- msgstr " Release"
1614
+ msgid "config.only_ipv4.description"
1615
+ msgstr "It will Disable IPv6"
1772
1616
 
1773
- msgid "Beta"
1774
- msgstr "☑️ Beta"
1617
+ msgid "config.only_ipv4.label"
1618
+ msgstr "ℹ️ Only IPv4"
1775
1619
 
1776
- msgid "Develop"
1777
- msgstr "⚠️ Develop"
1620
+ msgid "config.package_mode.description"
1621
+ msgstr "Specify whether you want Released Package or Beta one"
1778
1622
 
1779
- msgid "lib.telegram.python"
1780
- msgstr " Python : Low Performance"
1623
+ msgid "config.package_mode.label"
1624
+ msgstr "🔄 Package Update Mode"
1781
1625
 
1782
- msgid "lib.telegram.go"
1783
- msgstr "✴️ Go : High Performance - No ad Support"
1626
+ msgid "config.panel_mode.description"
1627
+ msgstr "config.panel_mode.description"
1784
1628
 
1785
- msgid "lib.telegram.orignal"
1786
- msgstr "⛔️ Not Working - Original : High Performance"
1629
+ msgid "config.panel_mode.label"
1630
+ msgstr "config.panel_mode.label"
1787
1631
 
1788
- msgid "lib.telegram.erlang"
1789
- msgstr "⛔️ NOT Working - Erlang : Medium Performance"
1632
+ msgid "config.parent_admin_proxy_path.description"
1633
+ msgstr "config.parent_admin_proxy_path.description"
1790
1634
 
1791
- msgid "Invalid admin link"
1792
- msgstr "Invalid Admin Link"
1635
+ msgid "config.parent_admin_proxy_path.label"
1636
+ msgstr "config.parent_admin_proxy_path.label"
1793
1637
 
1794
- msgid "config.Invalid telegram bot token"
1795
- msgstr "Invalid Telegram Bot Token"
1638
+ msgid "config.parent_domain.description"
1639
+ msgstr "config.parent_domain.description"
1796
1640
 
1797
- msgid "config.Invalid brand link"
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.invalid uuid"
1644
+ msgid "config.parent_panel.description"
1802
1645
  msgstr ""
1803
- "Invalid UUID secret. example: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6\n"
1804
- "\n"
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.Invalid proxy path"
1807
- msgstr "Invalid Proxy Path. It should be ASCI string (a-z A-Z 0-9)"
1649
+ msgid "config.parent_panel.label"
1650
+ msgstr "Parent Panel (Multi Server)"
1808
1651
 
1809
- msgid "config.Invalid port"
1810
- msgstr "Invalid Port. it should be comma separated Integer e.g. 2052,2053"
1652
+ msgid "config.path_grpc.description"
1653
+ msgstr "gRPC Path In Configs"
1811
1654
 
1812
- msgid "config.Invalid! The pattern is number-number"
1813
- msgstr "⚠️ Config Invalid! The Pattern Is Number-Number"
1655
+ msgid "config.path_grpc.label"
1656
+ msgstr "ℹ️ gRPC Path"
1814
1657
 
1815
- msgid "config.Invalid! it should be a number only"
1816
- msgstr "⚠️ Config Invalid! It Should Be a Number Only"
1658
+ msgid "config.path_httpupgrade.description"
1659
+ msgstr "should be random"
1817
1660
 
1818
- msgid "Reset package days"
1819
- msgstr "📆 Reset Package's Days"
1661
+ msgid "config.path_httpupgrade.label"
1662
+ msgstr "ℹ️ HTTP Upgrade Path"
1820
1663
 
1821
- msgid "Reset package usage"
1822
- msgstr " Reset Package's Usage"
1664
+ msgid "config.path_ss.description"
1665
+ msgstr "Shadowsocks Path in the Links"
1823
1666
 
1824
- msgid "Reset every month"
1825
- msgstr "Monthly"
1667
+ msgid "config.path_ss.label"
1668
+ msgstr "Shadowsocks Path"
1826
1669
 
1827
- msgid "Added by"
1828
- msgstr "Added by"
1670
+ msgid "config.path_tcp.description"
1671
+ msgstr "For the Proxy Link"
1829
1672
 
1830
- msgid "Start Date"
1831
- msgstr "Start Date"
1673
+ msgid "config.path_tcp.label"
1674
+ msgstr "ℹ️ TCP Configuration Path"
1832
1675
 
1833
- msgid "Last Online"
1834
- msgstr "Last Connection"
1676
+ msgid "config.path_trojan.description"
1677
+ msgstr "For Trojan Links"
1835
1678
 
1836
- msgid "Package Days"
1837
- msgstr "📆 Package Days"
1679
+ msgid "config.path_trojan.label"
1680
+ msgstr "ℹ️ Trojan Path"
1838
1681
 
1839
- msgid "Max IPs"
1840
- msgstr "Max IPs"
1682
+ msgid "config.path_v2ray.description"
1683
+ msgstr "Set V2Ray Configs Path"
1841
1684
 
1842
- msgid "Enable"
1843
- msgstr "❇️ Enable"
1685
+ msgid "config.path_v2ray.label"
1686
+ msgstr "V2Ray Path"
1844
1687
 
1845
- msgid "Active"
1846
- msgstr "Active"
1688
+ msgid "config.path_vless.description"
1689
+ msgstr "For the VLess Path"
1847
1690
 
1848
- msgid "Add some text that is only visible to you."
1849
- msgstr "You can add some text that Is only visible to you"
1691
+ msgid "config.path_vless.label"
1692
+ msgstr "ℹ️ VLess Path"
1850
1693
 
1851
- msgid "Define the user mode. Should the usage reset every month?"
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
- "If monthly is enabled, the usage will be reset after 30 days from this date."
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
- "From when the user package will be started? Empty for start from first "
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 "How many days this package should be available?"
1869
- msgstr "How Many Days Is This Package?"
1703
+ msgid "config.path_ws.label"
1704
+ msgstr "ℹ️ Path of Websocket Requests"
1870
1705
 
1871
- msgid "Package not started yet."
1872
- msgstr "Package not started yet."
1706
+ msgid "config.proxies.description"
1707
+ msgstr "Define specific proxy settings"
1873
1708
 
1874
- msgid "Remaining: "
1875
- msgstr "Package Ends"
1709
+ msgid "config.proxies.label"
1710
+ msgstr "Proxies Settings"
1876
1711
 
1877
- msgid ""
1878
- "You have too much users! You can have only %(active)s active users and "
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 "Backup"
1885
- msgstr "Backup"
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
- "🔄 Hiddify Manager automatically takes a Backup every 6 Hours. The path of the Backup files on the server: ⬇️\n"
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 "Restore"
1903
- msgstr "♻️ Restore"
1722
+ msgid "config.proxy_path_admin.label"
1723
+ msgstr "🔐 Proxy Path for Admins"
1904
1724
 
1905
- msgid "You can restore your configs from previously downloaded configs"
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 "Why Going to Premium?"
1910
- msgstr "Why Going to Premium?"
1728
+ msgid "config.proxy_path_client.label"
1729
+ msgstr "🔏 Proxy Path for Clients"
1911
1730
 
1912
- msgid "Premium Description"
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 " Search Settings"
1936
- msgstr " Search Settings"
1734
+ msgid "config.quic_enable.label"
1735
+ msgstr "config.quic_enable.label"
1937
1736
 
1938
- msgid "Create"
1939
- msgstr "Create"
1737
+ msgid "config.reality.description"
1738
+ msgstr "REALITY eliminate the Server-Side TLS Fingerprint Feature"
1940
1739
 
1941
- msgid "Current Domain"
1942
- msgstr "Current Domain"
1740
+ msgid "config.reality.label"
1741
+ msgstr "Reality"
1943
1742
 
1944
- msgid "Save & Add More"
1945
- msgstr "Save & Add More"
1743
+ msgid "config.reality_enable.description"
1744
+ msgstr "config.reality_enable.description"
1946
1745
 
1947
- msgid "Close"
1948
- msgstr "Close"
1746
+ msgid "config.reality_enable.label"
1747
+ msgstr "config.reality_enable.label"
1949
1748
 
1950
- msgid "Back"
1951
- msgstr "Back"
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 "Today Usage"
1954
- msgstr "Today"
1754
+ msgid "config.reality_fallback_domain.label"
1755
+ msgstr "🌍 Reality Fallback Domain"
1955
1756
 
1956
- msgid "Yesterday Usage"
1957
- msgstr "Yesterday"
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 "Month Usage"
1960
- msgstr "Monthly"
1762
+ msgid "config.reality_port.label"
1763
+ msgstr "↔️ Direct Reality Port"
1961
1764
 
1962
- msgid "Total Usage"
1963
- msgstr "Total Usage"
1765
+ msgid "config.reality_private_key.description"
1766
+ msgstr "Do Not Change It"
1964
1767
 
1965
- msgid "In 5 minutes"
1966
- msgstr "In 5 Minutes"
1768
+ msgid "config.reality_private_key.label"
1769
+ msgstr "🔑 Private Key"
1967
1770
 
1968
- msgid "Network"
1969
- msgstr "Network"
1771
+ msgid "config.reality_public_key.description"
1772
+ msgstr "Do Not Change It"
1970
1773
 
1971
- msgid "From Last Restart"
1972
- msgstr "From Last Restart"
1774
+ msgid "config.reality_public_key.label"
1775
+ msgstr "🔑 Public Key"
1973
1776
 
1974
- msgid "CPU %(cores)s Cores"
1975
- msgstr "CPU %(cores)s Core"
1777
+ msgid "config.reality_server_names.description"
1778
+ msgstr "You can add several Sever Names in comma seperated format"
1976
1779
 
1977
- msgid "RAM"
1978
- msgstr "RAM"
1780
+ msgid "config.reality_server_names.label"
1781
+ msgstr "🌎 Reality Server Names"
1979
1782
 
1980
- msgid "Disk"
1981
- msgstr "Hard Disk"
1783
+ msgid "config.reality_short_ids.description"
1784
+ msgstr "Do Not Change It"
1982
1785
 
1983
- msgid "Hiddify"
1984
- msgstr "Hiddify"
1985
-
1986
- msgid "Childs"
1987
- msgstr "Children"
1786
+ msgid "config.reality_short_ids.label"
1787
+ msgstr "🆔 Short IDs"
1988
1788
 
1989
- msgid "No children!"
1990
- msgstr "No Children"
1789
+ msgid "config.restls.description"
1790
+ msgstr "config.restls.description"
1991
1791
 
1992
- msgid "Status"
1993
- msgstr "Status"
1792
+ msgid "config.restls.label"
1793
+ msgstr "RestTLS"
1994
1794
 
1995
- msgid "Domain"
1996
- msgstr "Domain"
1795
+ msgid "config.restls1_2_domain.description"
1796
+ msgstr "config.restls1_2_domain.description"
1997
1797
 
1998
- msgid "Edit Proxy Names"
1999
- msgstr "✏️ Modifying Proxies"
1798
+ msgid "config.restls1_2_domain.label"
1799
+ msgstr "config.restls1_2_domain.label"
2000
1800
 
2001
- msgid "Save Link"
2002
- msgstr "Save Link"
1801
+ msgid "config.restls1_3_domain.description"
1802
+ msgstr "config.restls1_3_domain.description"
2003
1803
 
2004
- msgid ""
2005
- "Please note that your panel can be accessed only via <a "
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 "Please wait "
2014
- msgstr "Please Wait "
1807
+ msgid "config.shadowsocks.description"
1808
+ msgstr "Shadowsocks is a fast tunnel proxy that helps you bypass firewalls"
2015
1809
 
2016
- msgid "log"
2017
- msgstr "📄 Log"
1810
+ msgid "config.shadowsocks.label"
1811
+ msgstr "Shadowsocks"
2018
1812
 
2019
- msgid "Click here to see the complete log"
2020
- msgstr "Click here to see the complete log"
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 "Success"
2023
- msgstr "Success"
1820
+ msgid "config.shadowsocks2022_enable.label"
1821
+ msgstr "⭕️ Enable Shadowsocks 2022"
2024
1822
 
2025
- msgid "The action done successfully. You can now leave this page."
2026
- msgstr " The Action Done Successfully. You can now leave this page"
1823
+ msgid "config.shadowsocks2022_method.description"
1824
+ msgstr "This method also used in ShadowTLS and SSFakeTLS"
2027
1825
 
2028
- msgid "With selected"
2029
- msgstr "With selected"
1826
+ msgid "config.shadowsocks2022_method.label"
1827
+ msgstr "🔐 Shadowsocks Encrypytion Method"
2030
1828
 
2031
- msgid "Are you sure you want to delete this record?"
2032
- msgstr "Are you sure you want to delete this record?"
1829
+ msgid "config.shadowsocks2022_port.description"
1830
+ msgstr "It needs both UDP and TCP to be Free"
2033
1831
 
2034
- msgid "Filter"
2035
- msgstr "Filter"
1832
+ msgid "config.shadowsocks2022_port.label"
1833
+ msgstr "↔️ Shadowsocks 2022 Port"
2036
1834
 
2037
- msgid "Export"
2038
- msgstr "Export"
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 "%(placeholder)s"
2041
- msgstr "%(placeholder)s"
1841
+ msgid "config.shadowtls.label"
1842
+ msgstr "ShadowTLS"
2042
1843
 
2043
- msgid "Save"
2044
- msgstr "Save"
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 "Root"
2047
- msgstr "Root"
1849
+ msgid "config.shadowtls_enable.label"
1850
+ msgstr "☑️ ShadowTLS"
2048
1851
 
2049
- msgid "Sort by %(name)s"
2050
- msgstr "Sort by %(name)s"
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 "Rename File"
2053
- msgstr "Rename File"
1857
+ msgid "config.shadowtls_fakedomain.label"
1858
+ msgstr "🌍 ShadowTLS Fake Domain"
2054
1859
 
2055
- msgid "Are you sure you want to delete \\'%(name)s\\' recursively?"
2056
- msgstr "Are you sure you want to delete \\'%(name)s\\' recursively?"
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 "Are you sure you want to delete \\'%(name)s\\'?"
2059
- msgstr "Are you sure you want to delete \\'%(name)s\\'?"
1865
+ msgid "config.shared_secret.label"
1866
+ msgstr "🔐 Shared Secret"
2060
1867
 
2061
- msgid "Upload File"
2062
- msgstr "Upload File"
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 "Create Directory"
2065
- msgstr "Create Directory"
1873
+ msgid "config.show_usage_in_sublink.label"
1874
+ msgstr "👁️‍🗨️ Show Usage in Sublink"
2066
1875
 
2067
- msgid "Please select at least one file."
2068
- msgstr "Please select at least one file."
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 "Edit"
2071
- msgstr "Edit"
1881
+ msgid "config.speed_test.label"
1882
+ msgstr "🚀 Speed Test"
2072
1883
 
2073
- msgid "Delete?"
2074
- msgstr "Delete?"
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 "New"
2077
- msgstr "New"
1889
+ msgid "config.ssfaketls.label"
1890
+ msgstr "Shadowsocks FakeTLS"
2078
1891
 
2079
- msgid "Add"
2080
- msgstr "Add"
1892
+ msgid "config.ssfaketls_enable.description"
1893
+ msgstr "Simple OBFS Protocol is Not Recommended"
2081
1894
 
2082
- msgid "Apply"
2083
- msgstr "Apply"
1895
+ msgid "config.ssfaketls_enable.label"
1896
+ msgstr "🆎 Shadowsocks FakeTLS (Simple OBFS)"
2084
1897
 
2085
- msgid "Reset Filters"
2086
- msgstr "Reset Filters"
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 "items"
2089
- msgstr "items"
1903
+ msgid "config.ssfaketls_fakedomain.label"
1904
+ msgstr "🌍 SS FakeTLS FakeDomain"
2090
1905
 
2091
- msgid "Create New Record"
2092
- msgstr "Create New Record"
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 "Select all records"
2095
- msgstr "Select all records"
1913
+ msgid "config.ssh.label"
1914
+ msgstr "SSH Proxy"
2096
1915
 
2097
- msgid "Select record"
2098
- msgstr "Select record"
1916
+ msgid "config.ssh_server_enable.description"
1917
+ msgstr "SSH Proxy is completely different than original SSH Server"
2099
1918
 
2100
- msgid "Please select at least one record."
2101
- msgstr "Please select at least one record."
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
- "1️⃣ In this section, you can add your Domain. \n"
2108
- "<br>\n"
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 "Send Message to User's Telegram"
2114
- msgstr "📣 Send Message to User's Telegram"
1927
+ msgid "config.ssh_server_port.label"
1928
+ msgstr "↔️ SSH Proxy Port"
2115
1929
 
2116
- msgid "All Users"
2117
- msgstr "All Users"
1930
+ msgid "config.ssh_server_redis_url.description"
1931
+ msgstr "Not Used"
2118
1932
 
2119
- msgid "Expired Users"
2120
- msgstr "Expired Users"
1933
+ msgid "config.ssh_server_redis_url.label"
1934
+ msgstr "SSH user database address"
2121
1935
 
2122
- msgid "Active Users"
2123
- msgstr "Active Users"
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 "Offline more than 1 hour"
2126
- msgstr "Offline more than 1 hour"
1941
+ msgid "config.ssr.label"
1942
+ msgstr "SSR"
2127
1943
 
2128
- msgid "Offline more than 1 day"
2129
- msgstr "Offline more than 1 day"
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 "Offline more than 1 week"
2132
- msgstr "Offline more than 1 week"
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
- "🔄 User usage will be updated every 1 Minutes. to update it now <a "
2139
- "href='%(link)s' class='btn btn-info'>Click Here</a>"
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 "Please type your message to send to the telegram:"
2142
- msgstr "✏️ Please write your message to send to the Telegram:"
1958
+ msgid "config.ssr_fakedomain.label"
1959
+ msgstr "SSR FakeDomain"
2143
1960
 
2144
- msgid "Sending"
2145
- msgstr "Sending..."
1961
+ msgid "config.tcp_enable.description"
1962
+ msgstr "config.tcp_enable.description"
2146
1963
 
2147
- msgid "The message has been sent."
2148
- msgstr "The message has been sent."
1964
+ msgid "config.tcp_enable.label"
1965
+ msgstr "config.tcp_enable.label"
2149
1966
 
2150
- msgid "Hover the user to see the reason"
2151
- msgstr "Hover the user to see the reason"
1967
+ msgid "config.telegram.description"
1968
+ msgstr "A proxy designed for Telegram to bypass Telegram filtering"
2152
1969
 
2153
- msgid "The message was not sent to"
2154
- msgstr "The message was not sent to"
1970
+ msgid "config.telegram.label"
1971
+ msgstr "Telegram Proxy "
2155
1972
 
2156
- msgid "%(count)s records were successfully disabled."
2157
- msgstr "%(count)s records were successfully disabled."
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 "%(count)s records were successfully enabled."
2160
- msgstr "%(count)s records were successfully enabled."
1978
+ msgid "config.telegram_adtag.label"
1979
+ msgstr "📍 Telegram AD Tag"
2161
1980
 
2162
- msgid "app.hiddify.next.title"
2163
- msgstr "Hiddify Next"
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 "app.hiddify.next.description"
2166
- msgstr "Hiddify Next Description"
1987
+ msgid "config.telegram_bot_token.label"
1988
+ msgstr "🔐 Telegram Bot Token"
2167
1989
 
2168
- msgid "app.hiddifyn.title"
2169
- msgstr "HiddifyN"
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 "app.hiddifyn.description"
2172
- msgstr "HiddifyN Description"
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 "app.hiddify-clash-android.title"
2187
- msgstr "Hiddify Clash"
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 "app.hiddify-clash-android.description"
2190
- msgstr "app.hiddify-clash-android.description"
2005
+ msgid "config.telegram_fakedomain.label"
2006
+ msgstr "📺 Telegram Fake Domain"
2191
2007
 
2192
- msgid "app.foxray.title"
2193
- msgstr "FoXray"
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 "app.foxray.description"
2196
- msgstr "FoXray Description"
2014
+ msgid "config.telegram_lib.label"
2015
+ msgstr "🔢 Telegram Proxy Library"
2197
2016
 
2198
- msgid "app.shadowrocket.title"
2199
- msgstr "Shadowrocket"
2017
+ msgid "config.tls.description"
2018
+ msgstr "TLS Configurations could be set in this section"
2200
2019
 
2201
- msgid "app.shadowrocket.description"
2202
- msgstr "Shadowrocket Description"
2020
+ msgid "config.tls.label"
2021
+ msgstr "TLS Configuration"
2203
2022
 
2204
- msgid "app.streisand.title"
2205
- msgstr "Streisand"
2023
+ msgid "config.tls_fragment_enable.description"
2024
+ msgstr "Under some circumstances, it can bypass the SNI blacklist system"
2206
2025
 
2207
- msgid "app.streisand.description"
2208
- msgstr "Streisand Description"
2026
+ msgid "config.tls_fragment_enable.label"
2027
+ msgstr " Enable TLS Fragment"
2209
2028
 
2210
- msgid "app.loon.title"
2211
- msgstr "Loon"
2029
+ msgid "config.tls_fragment_size.description"
2030
+ msgstr "The Size of each Packet"
2212
2031
 
2213
- msgid "app.loon.description"
2214
- msgstr "Loon Description"
2032
+ msgid "config.tls_fragment_size.label"
2033
+ msgstr "🎚 TLS Fragment Size"
2215
2034
 
2216
- msgid "app.stash.title"
2217
- msgstr "Stash"
2035
+ msgid "config.tls_fragment_sleep.description"
2036
+ msgstr "The time delay between Fragments"
2218
2037
 
2219
- msgid "app.stash.description"
2220
- msgstr "Stash Description"
2038
+ msgid "config.tls_fragment_sleep.label"
2039
+ msgstr " TLS Fragment Sleep"
2221
2040
 
2222
- msgid "app.hiddify-clash-desktop.title"
2223
- msgstr "Hiddify Clash"
2041
+ msgid "config.tls_mixed_case.description"
2042
+ msgstr "Enables TLS Mixed SNI Case Fragmentation"
2224
2043
 
2225
- msgid "app.hiddify-clash-desktop.description"
2226
- msgstr "app.hiddify-clash-desktop.description"
2044
+ msgid "config.tls_mixed_case.label"
2045
+ msgstr "🔠 Enable TLS Mixed SNI Case"
2227
2046
 
2228
- msgid "app.nekobox.title"
2229
- msgstr "NekoBox"
2047
+ msgid "config.tls_padding_enable.description"
2048
+ msgstr "Enables Padding for TLS Fragmentation"
2230
2049
 
2231
- msgid "app.nekobox.description"
2232
- msgstr "app.nekobox.description"
2050
+ msgid "config.tls_padding_enable.label"
2051
+ msgstr "♒️ Enable TLS Padding"
2233
2052
 
2234
- msgid ""
2235
- "Join our Hiddify Telegram channel to get the latest updates on Hiddify."
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
- "[Admin only visible message:] You can change this message from settings"
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
- "Hooray 🎉 🎉 🎉 \n"
2249
- "Welcome to Hiddify bot\n"
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 "Create Package"
2259
- msgstr "Create Package"
2064
+ msgid "config.tls_ports.label"
2065
+ msgstr "🔎 TLS Ports"
2260
2066
 
2261
- msgid "package size?"
2262
- msgstr "package size?"
2067
+ msgid "config.tls_trick.description"
2068
+ msgstr "TLS Fragmentation configurations could be set in this section"
2263
2069
 
2264
- msgid "Ok"
2265
- msgstr "Ok"
2070
+ msgid "config.tls_trick.label"
2071
+ msgstr "TLS Trick"
2266
2072
 
2267
- msgid "package days?"
2268
- msgstr "package days?"
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 "How many?"
2271
- msgstr "How many?"
2078
+ msgid "config.too_advanced.label"
2079
+ msgstr "Very Advanced Settings"
2272
2080
 
2273
- msgid "Domain?"
2274
- msgstr "Domain?"
2081
+ msgid "config.torrent_block.description"
2082
+ msgstr "Torrent Block Configurations could be set in this section."
2275
2083
 
2276
- msgid "Please Wait..."
2277
- msgstr "Please Wait..."
2084
+ msgid "config.torrent_block.label"
2085
+ msgstr "Torrent Block Configuration"
2278
2086
 
2279
- msgid "Finished"
2280
- msgstr "Finished..."
2087
+ msgid "config.trojan_enable.description"
2088
+ msgstr "config.trojan_enable.description"
2281
2089
 
2282
- msgid ""
2283
- "Dear {}\n"
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
- "Your Hiddify instance information \n"
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
- "Good Luck! 🎉 🎉 🎉 \n"
2097
+ "TUIC's goal is to minimize the handshake latency as much as possible"
2319
2098
 
2320
- msgid "login.secret.label"
2321
- msgstr "Secret Code"
2099
+ msgid "config.tuic.label"
2100
+ msgstr "TUIC"
2322
2101
 
2323
- msgid "login.secret.description"
2324
- msgstr "Secret code is given by the service provider."
2102
+ msgid "config.tuic_enable.description"
2103
+ msgstr "It is a UDP based protocol similar to QUIC"
2325
2104
 
2326
- msgid "Incorrect Password"
2327
- msgstr "⚠️ Incorrect Password"
2105
+ msgid "config.tuic_enable.label"
2106
+ msgstr "Enable TUIC"
2328
2107
 
2329
- msgid "📅%(expire_days)s days"
2330
- msgstr "📅%(expire_days)s Days Remain"
2108
+ msgid "config.tuic_port.description"
2109
+ msgstr "Use comma to separate ports like 63000,60000"
2331
2110
 
2332
- msgid "copy"
2333
- msgstr "Copy"
2111
+ msgid "config.tuic_port.label"
2112
+ msgstr "TUIC Ports"
2334
2113
 
2335
- msgid "open"
2336
- msgstr "Open"
2114
+ msgid "config.unique_id.description"
2115
+ msgstr "-"
2337
2116
 
2338
- msgid "Link is changed!"
2339
- msgstr "ℹ️ Link is Changed!"
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
- "The page has been moved to a new link. Please copy and save the new link."
2122
+ "This Option Will Simulate Different Browsers, Therefore, GFW Can Not Detect "
2123
+ "Your Browsing"
2345
2124
 
2346
- msgid "all"
2347
- msgstr "All"
2125
+ msgid "config.utls.label"
2126
+ msgstr "❇️ uTLS"
2348
2127
 
2349
- msgid "auto"
2350
- msgstr "Auto"
2128
+ msgid "config.v2ray_enable.description"
2129
+ msgstr "V2ray does not support accounting and not suggested"
2351
2130
 
2352
- msgid "singbox: ssh"
2353
- msgstr "SingBox: SSH"
2131
+ msgid "config.v2ray_enable.label"
2132
+ msgstr "♈️ Enable V2Ray "
2354
2133
 
2355
- msgid "ssh"
2356
- msgstr "SSH"
2134
+ msgid "config.validation-error"
2135
+ msgstr "There is an error in one of the fields."
2357
2136
 
2358
- msgid "Please select one of the following applications:"
2137
+ msgid "config.validation-success"
2359
2138
  msgstr ""
2360
- "📍 Please select one of the following applications:\n"
2361
- "<br />\n"
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 "download"
2365
- msgstr "Direct Download"
2142
+ msgid "config.validation-success-no-reset"
2143
+ msgstr " ✅ Configs have been changed successfully"
2366
2144
 
2367
- msgid "install from google play"
2368
- msgstr "<i class='fa-brands fa-google-play'></i> Google Play"
2145
+ msgid "config.vless_enable.description"
2146
+ msgstr "config.vless_enable.description"
2369
2147
 
2370
- msgid "HiddifyNG"
2371
- msgstr "HiddifyNG <span class='badge badge-success'>Recommended</span>"
2148
+ msgid "config.vless_enable.label"
2149
+ msgstr "config.vless_enable.label"
2372
2150
 
2373
- msgid "HiddifyNG intro"
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 "Click to Import"
2383
- msgstr "Tap to Import"
2154
+ msgid "config.vmess_enable.label"
2155
+ msgstr "♈️ Enable VMess"
2384
2156
 
2385
- msgid "V2rayNG"
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
- "Please install v2rayNG from either of these links: %(dl_link)s %(play_link)s.\n"
2394
- "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"
2395
- "<br />"
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 "Hiddify Android"
2398
- msgstr "Hiddify Android "
2163
+ msgid "config.warp.label"
2164
+ msgstr "WARP➕"
2399
2165
 
2400
- msgid "test"
2401
- msgstr "Test"
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 "Welcome %(user)s"
2404
- msgstr "Welcome %(user)s"
2171
+ msgid "config.warp_enable.label"
2172
+ msgstr "Enable WARP+"
2405
2173
 
2406
- msgid "telegram"
2407
- msgstr "Telegram"
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 "android"
2410
- msgstr "Android"
2180
+ msgid "config.warp_mode.label"
2181
+ msgstr "✴️ Warp+ Mode"
2411
2182
 
2412
- msgid "ios"
2413
- msgstr "iOS"
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 "desktop"
2416
- msgstr "Desktop"
2190
+ msgid "config.warp_plus_code.label"
2191
+ msgstr "🔑 Warp Plus Key"
2417
2192
 
2418
- msgid "user.home.select os"
2419
- msgstr "Please Select Your Operating System."
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 "user.home.select tool"
2422
- msgstr "Please select the item."
2197
+ msgid "config.warp_sites.label"
2198
+ msgstr "🆚 Additional Warp Sites"
2423
2199
 
2424
- msgid "QR code"
2425
- msgstr "🧾 QR Code"
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 "Want to enjoy more with telegram?"
2428
- msgstr "ℹ️ Connect Your Account to Telegram"
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
- "Please connect your Telegram account to the panel to be informed about "
2435
- "latest news."
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 "previous"
2441
- msgstr "Previous"
2216
+ msgid "config.wireguard_enable.label"
2217
+ msgstr "🐉 Enable WireGuard"
2442
2218
 
2443
- msgid "search"
2444
- msgstr "Search"
2219
+ msgid "config.wireguard_ipv4.description"
2220
+ msgstr "-"
2445
2221
 
2446
- msgid "Check again"
2447
- msgstr "Check Again"
2222
+ msgid "config.wireguard_ipv4.label"
2223
+ msgstr "-"
2448
2224
 
2449
- msgid "Turn of VPN"
2450
- msgstr "Turn Off VPN"
2225
+ msgid "config.wireguard_ipv6.description"
2226
+ msgstr "-"
2451
2227
 
2452
- msgid ""
2453
- "You should visit this page without VPN. Your country=%(your_country)s\n"
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
- "Please connect your Telegram account to the panel to know the latest Status "
2464
- "of your Subscription"
2233
+ "This method introduces extra noise to prevent detection and blocking by the "
2234
+ "GFW"
2465
2235
 
2466
- msgid "Click to Start Anti-Filter."
2467
- msgstr "<i class='fa-solid fa-play'></i> Tap to Set up Anti-Filter"
2236
+ msgid "config.wireguard_noise_trick.label"
2237
+ msgstr "💥 WireGuard Noise Trick"
2468
2238
 
2469
- msgid "Unified link for all application."
2470
- msgstr "One-click setup link for all applications (recommended)"
2239
+ msgid "config.wireguard_port.description"
2240
+ msgstr "WireGuard Port"
2471
2241
 
2472
- msgid "Temporary Short Link"
2473
- msgstr "⏱️ Temporary Short Link"
2242
+ msgid "config.wireguard_port.label"
2243
+ msgstr "↔️ WireGuard Port"
2474
2244
 
2475
- msgid "Simplifies the process of employing the link elsewhere."
2476
- msgstr "Simplifies the process of employing the link elsewhere"
2245
+ msgid "config.wireguard_private_key.description"
2246
+ msgstr "-"
2477
2247
 
2478
- msgid "Open in Application"
2479
- msgstr "Open in Application"
2248
+ msgid "config.wireguard_private_key.label"
2249
+ msgstr "-"
2480
2250
 
2481
- msgid ""
2482
- "If the application do not open automatically, please click <a class='btn btn-primary copy-link'\n"
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 "Use HiddifyNext:"
2491
- msgstr "Use HiddifyNext:"
2254
+ msgid "config.wireguard_public_key.label"
2255
+ msgstr "-"
2492
2256
 
2493
- msgid "Download App"
2494
- msgstr "<i class='fa-solid fa-download'></i> Download App"
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 "Import"
2497
- msgstr "Import in App"
2260
+ msgid "config.ws_enable.label"
2261
+ msgstr "🔰 Enable Websocket"
2498
2262
 
2499
- msgid "More Applications"
2500
- msgstr "More Applications"
2263
+ msgid "config.xtls_enable.description"
2264
+ msgstr "config.xtls_enable.description"
2501
2265
 
2502
- msgid "Import in"
2503
- msgstr "Import in"
2266
+ msgid "config.xtls_enable.label"
2267
+ msgstr "config.xtls_enable.label"
2504
2268
 
2505
- msgid "QRCode"
2506
- msgstr "<i class='fa-solid fa-qrcode'></i> QRCode"
2269
+ msgid "config.invalid uuid"
2270
+ msgstr ""
2271
+ "Invalid UUID secret. example: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6\n"
2272
+ "\n"
2507
2273
 
2508
- msgid "Copy Link"
2509
- msgstr "Copy Link"
2274
+ msgid "copy"
2275
+ msgstr "Copy"
2510
2276
 
2511
- msgid "Reset Usage Time:"
2512
- msgstr "Traffic usage reset time:"
2277
+ msgid "daily"
2278
+ msgstr " Daily"
2513
2279
 
2514
2280
  msgid "days"
2515
2281
  msgstr "Days"
2516
2282
 
2517
- msgid "User is inactive"
2518
- msgstr "User Is Inactive"
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 "Windows"
2527
- msgstr "Windows"
2286
+ msgid "direct"
2287
+ msgstr "➡️ Direct"
2528
2288
 
2529
- msgid "macOS"
2530
- msgstr "macOS"
2289
+ msgid "domain.cdn"
2290
+ msgstr "CDN"
2531
2291
 
2532
- msgid "Linux"
2533
- msgstr "Linux"
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 "HiddigyN"
2536
- msgstr "HiddifyN <span class='badge badge-success'>Recommended</span>"
2299
+ msgid "domain.domain"
2300
+ msgstr "Domain"
2537
2301
 
2538
- msgid "HiddifyN intro"
2302
+ msgid "domain.domain_fronting.description"
2539
2303
  msgstr ""
2540
- "Please install HiddifyN from %(dl_link)s.\n"
2541
- "Then click on the link below. It will do everything automatically.\n"
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 "HiddifyClash"
2545
- msgstr "HiddifyClash"
2307
+ msgid "domain.domain_fronting.label"
2308
+ msgstr "🔒 Enable TLS Domain Fronting"
2546
2309
 
2547
- msgid "Oops! Something went wrong."
2548
- msgstr "Oops! something went wrong."
2310
+ msgid "domain.ip"
2311
+ msgstr "IP"
2549
2312
 
2550
- msgid "Please create an issue on Github."
2551
- msgstr "Please create an issue on Github"
2313
+ msgid "domain.mode"
2314
+ msgstr "Mode"
2552
2315
 
2553
- msgid "master.page-title"
2554
- msgstr "Hiddify Manager"
2316
+ msgid "download"
2317
+ msgstr "Direct Download"
2555
2318
 
2556
- msgid "Parent Panel"
2557
- msgstr "Parent Panel"
2319
+ msgid "fake"
2320
+ msgstr "🆎 Fake Site"
2558
2321
 
2559
- msgid "Admins"
2560
- msgstr "Admins"
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 "Commercial use"
2566
- msgstr "Commercial use"
2331
+ msgid "install from google play"
2332
+ msgstr "<i class='fa-brands fa-google-play'></i> Google Play"
2567
2333
 
2568
- msgid "Bug"
2569
- msgstr "Bug/Feature"
2334
+ msgid "ios"
2335
+ msgstr "iOS"
2570
2336
 
2571
- msgid "Donation.title"
2572
- msgstr "Donation"
2337
+ msgid "items"
2338
+ msgstr "items"
2573
2339
 
2574
- msgid "Donation.description"
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 "Telegram Bot"
2626
- msgstr "Telegram Bot"
2343
+ msgid "lang.fa"
2344
+ msgstr "🇮🇷 Persian فارسی 波斯语"
2627
2345
 
2628
- msgid "Are you sure you want to do this action?"
2629
- msgstr "⚠️ Are you sure you want to do this action?"
2346
+ msgid "lang.pt"
2347
+ msgstr "🇵🇹 Portuguese پرتغالی 葡萄牙語"
2630
2348
 
2631
- msgid "direct"
2632
- msgstr "➡️ Direct"
2349
+ msgid "lang.ru"
2350
+ msgstr "🇷🇺 Russian روسی Русский"
2633
2351
 
2634
- msgid "sub_link_only"
2635
- msgstr "📳 Only for Subscription Link (can be Direct, Relay, or CDN)"
2352
+ msgid "lang.zh"
2353
+ msgstr "🇨🇳 Chinese چینی 简体中文"
2636
2354
 
2637
- msgid "cdn"
2638
- msgstr "🔀 CDN (Cloudflare Proxy, ...)"
2355
+ msgid "lib.telegram.erlang"
2356
+ msgstr "✴️ Erlang : Good Performance"
2639
2357
 
2640
- msgid "auto_cdn_ip"
2641
- msgstr "☑️ Automatic CDN IP Selector"
2358
+ msgid "lib.telegram.go"
2359
+ msgstr " Go : Nornal Performance - No ad Support"
2642
2360
 
2643
- msgid "relay"
2644
- msgstr "♾️ Relay (Connect Using an Intermediate Node)"
2361
+ msgid "lib.telegram.python"
2362
+ msgstr "☑️ Python : Low Performance"
2645
2363
 
2646
- msgid "reality"
2647
- msgstr "🔂 Reality"
2364
+ msgid "log"
2365
+ msgstr "📄 Log"
2648
2366
 
2649
- msgid "old_xtls_direct"
2650
- msgstr "🔙 Old Direct Mode (For Trojan TCP, VLess XTLS)"
2367
+ msgid "login.secret.description"
2368
+ msgstr "Secret code is given by the service provider."
2651
2369
 
2652
- msgid "worker"
2653
- msgstr "✴️ Cloudflare Worker"
2370
+ msgid "login.secret.label"
2371
+ msgstr "Secret Code"
2654
2372
 
2655
- msgid "fake"
2656
- msgstr "🆎 Fake Site"
2373
+ msgid "macOS"
2374
+ msgstr "macOS"
2657
2375
 
2658
- msgid "no_reset"
2659
- msgstr "⭐️ Without Reset"
2376
+ msgid "master.page-title"
2377
+ msgstr "Hiddify Manager"
2660
2378
 
2661
2379
  msgid "monthly"
2662
2380
  msgstr "🗓️ Monthly"
2663
2381
 
2664
- msgid "weekly"
2665
- msgstr "📅 Weekly"
2382
+ msgid "next"
2383
+ msgstr "Next"
2666
2384
 
2667
- msgid "daily"
2668
- msgstr " Daily"
2385
+ msgid "no_reset"
2386
+ msgstr "⭐️ Without Reset"
2669
2387
 
2670
- msgid "Direct"
2671
- msgstr "➖ Direct"
2388
+ msgid "node.diff-version"
2389
+ msgstr "node.diff-version"
2672
2390
 
2673
- msgid "Panel Link"
2674
- msgstr "➖ Panel Link"
2391
+ msgid "node.mode.dscr"
2392
+ msgstr "node.mode.dscr"
2675
2393
 
2676
- msgid "Bridge Servers"
2677
- msgstr " Bridge Servers"
2394
+ msgid "node.mode.label"
2395
+ msgstr "Node Mode"
2678
2396
 
2679
- msgid "Fake"
2680
- msgstr "➖ Fake"
2397
+ msgid "node.name.dscr"
2398
+ msgstr "node.name.dscr"
2681
2399
 
2682
- msgid "Example Domains"
2683
- msgstr "Test and Suggest Domain "
2400
+ msgid "node.name.label"
2401
+ msgstr "Node Name"
2684
2402
 
2685
- msgid "close"
2686
- msgstr "Close"
2403
+ msgid "node.uuid.dscr"
2404
+ msgstr "node.uuid.dscr"
2687
2405
 
2688
- msgid "clickable copy"
2689
- msgstr "Link for Social Media"
2406
+ msgid "node.uuid.label"
2407
+ msgstr "Node UUID"
2690
2408
 
2691
- msgid "Install"
2692
- msgstr "Install"
2409
+ msgid "old_xtls_direct"
2410
+ msgstr "🔙 Old Direct Mode (For Trojan TCP, VLess XTLS)"
2693
2411
 
2694
- msgid "Install Hiddify Application"
2695
- msgstr "Hiddify Manager Installation"
2412
+ msgid "open"
2413
+ msgstr "Open"
2696
2414
 
2697
- msgid "Please click on %(install)s to save the user page."
2698
- msgstr "Click %(install)s to save the User Page."
2415
+ msgid "package days?"
2416
+ msgstr "package days?"
2699
2417
 
2700
- msgid "Count:"
2701
- msgstr "Count:"
2418
+ msgid "package size?"
2419
+ msgstr "package size?"
2702
2420
 
2703
- msgid "Actions"
2704
- msgstr "Actions"
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"