hiddifypanel 9.0.0.dev35__py3-none-any.whl → 9.0.0.dev37__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hiddifypanel/VERSION +1 -1
- hiddifypanel/VERSION.py +1 -1
- hiddifypanel/panel/admin/AdminstratorAdmin.py +2 -2
- hiddifypanel/panel/common.py +3 -1
- hiddifypanel/panel/common_bp/login.py +4 -5
- hiddifypanel/panel/hiddify.py +2 -35
- hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/en/LC_MESSAGES/messages.po +8 -8
- hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/fa/LC_MESSAGES/messages.po +8 -8
- hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/pt/LC_MESSAGES/messages.po +8 -8
- hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/ru/LC_MESSAGES/messages.po +8 -8
- hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/zh/LC_MESSAGES/messages.po +8 -8
- {hiddifypanel-9.0.0.dev35.dist-info → hiddifypanel-9.0.0.dev37.dist-info}/METADATA +1 -1
- {hiddifypanel-9.0.0.dev35.dist-info → hiddifypanel-9.0.0.dev37.dist-info}/RECORD +22 -22
- {hiddifypanel-9.0.0.dev35.dist-info → hiddifypanel-9.0.0.dev37.dist-info}/LICENSE.md +0 -0
- {hiddifypanel-9.0.0.dev35.dist-info → hiddifypanel-9.0.0.dev37.dist-info}/WHEEL +0 -0
- {hiddifypanel-9.0.0.dev35.dist-info → hiddifypanel-9.0.0.dev37.dist-info}/entry_points.txt +0 -0
- {hiddifypanel-9.0.0.dev35.dist-info → hiddifypanel-9.0.0.dev37.dist-info}/top_level.txt +0 -0
hiddifypanel/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
9.0.0.
|
1
|
+
9.0.0.dev37
|
hiddifypanel/VERSION.py
CHANGED
@@ -7,7 +7,7 @@ from .adminlte import AdminLTEModelView
|
|
7
7
|
from flask_babelex import gettext as __
|
8
8
|
from flask_babelex import lazy_gettext as _
|
9
9
|
from hiddifypanel.panel import hiddify
|
10
|
-
from flask import Markup, current_app
|
10
|
+
from flask import Markup, current_app, request
|
11
11
|
from flask import g
|
12
12
|
import datetime
|
13
13
|
from wtforms import SelectField
|
@@ -93,7 +93,7 @@ class AdminstratorAdmin(AdminLTEModelView):
|
|
93
93
|
d = request.host
|
94
94
|
if d:
|
95
95
|
|
96
|
-
href = hiddify.get_account_panel_link(model, d) + f'
|
96
|
+
href = hiddify.get_account_panel_link(model, d) + f'#{model.name}'
|
97
97
|
link = f"<a target='_blank' class='share-link' data-copy='{href}' href='{href}'>{model.name} <i class='fa-solid fa-arrow-up-right-from-square'></i></a>"
|
98
98
|
if model.parent_admin:
|
99
99
|
return Markup(model.parent_admin.name + "‏‎ / ‏‎"+link)
|
hiddifypanel/panel/common.py
CHANGED
@@ -107,8 +107,10 @@ def init_app(app: APIFlask):
|
|
107
107
|
# values['proxy_path'] = hconfig(ConfigEnum.proxy_path)
|
108
108
|
elif hiddify.is_user_panel_call():
|
109
109
|
values['proxy_path'] = hconfig(ConfigEnum.proxy_path_client)
|
110
|
-
elif g.
|
110
|
+
elif hiddify.is_admin_role(g.account.role):
|
111
111
|
values['proxy_path'] = hconfig(ConfigEnum.proxy_path_admin)
|
112
|
+
else:
|
113
|
+
values['proxy_path'] = g.proxy_path
|
112
114
|
|
113
115
|
if hiddify.is_api_v1_call(endpoint=endpoint) and 'admin_uuid' not in values:
|
114
116
|
values['admin_uuid'] = AdminUser.get_super_admin_uuid()
|
@@ -52,7 +52,7 @@ class LoginView(FlaskView):
|
|
52
52
|
form = LoginForm()
|
53
53
|
if form.validate_on_submit():
|
54
54
|
uuid = form.secret_textbox.data.strip()
|
55
|
-
if login_by_uuid(uuid,hiddify.is_admin_proxy_path()):
|
55
|
+
if login_by_uuid(uuid, hiddify.is_admin_proxy_path()):
|
56
56
|
return redirect(f'/{g.proxy_path}/')
|
57
57
|
flash(_('config.validation-error'), 'danger')
|
58
58
|
return render_template('login.html', form=LoginForm())
|
@@ -121,8 +121,8 @@ class LoginView(FlaskView):
|
|
121
121
|
@route('/manifest.webmanifest')
|
122
122
|
@login_required()
|
123
123
|
def create_pwa_manifest(self):
|
124
|
-
domain =
|
125
|
-
name = (domain if
|
124
|
+
domain = request.host
|
125
|
+
name = (domain if hiddify.is_admin_panel_call() else g.account.name)
|
126
126
|
return jsonify({
|
127
127
|
"name": f"Hiddify {name}",
|
128
128
|
"short_name": f"{name}"[:12],
|
@@ -130,8 +130,7 @@ class LoginView(FlaskView):
|
|
130
130
|
"background_color": "#1a1b21",
|
131
131
|
"display": "standalone",
|
132
132
|
"scope": f"/",
|
133
|
-
|
134
|
-
"start_url": f"https://{domain}/{g.proxy_path}/{g.account.uuid}/?pwa=true",
|
133
|
+
"start_url": hiddify.get_account_panel_link(g.account, domain) +"?pwa=true",
|
135
134
|
"description": "Hiddify, for a free Internet",
|
136
135
|
"orientation": "any",
|
137
136
|
"icons": [
|
hiddifypanel/panel/hiddify.py
CHANGED
@@ -72,39 +72,6 @@ def exec_command(cmd, cwd=None):
|
|
72
72
|
print(e)
|
73
73
|
|
74
74
|
|
75
|
-
def user_auth(function):
|
76
|
-
def wrapper(*args, **kwargs):
|
77
|
-
if g.account.uuid == None:
|
78
|
-
return jsonify({"error": "auth failed"})
|
79
|
-
if not g.account:
|
80
|
-
return jsonify({"error": "user not found"})
|
81
|
-
if g.account and g.is_admin:
|
82
|
-
return jsonify({"error": "admin can not access user page. add /admin/ to your url"})
|
83
|
-
return function()
|
84
|
-
|
85
|
-
return wrapper
|
86
|
-
|
87
|
-
|
88
|
-
def super_admin(function):
|
89
|
-
def wrapper(*args, **kwargs):
|
90
|
-
if g.account.mode not in [AdminMode.super_admin]:
|
91
|
-
abort(403, __("Access Denied"))
|
92
|
-
# return jsonify({"error": "auth failed"})
|
93
|
-
return function(*args, **kwargs)
|
94
|
-
|
95
|
-
return wrapper
|
96
|
-
|
97
|
-
|
98
|
-
def admin(function):
|
99
|
-
def wrapper(*args, **kwargs):
|
100
|
-
if g.account.mode not in [AdminMode.admin, AdminMode.super_admin]:
|
101
|
-
abort(403, __("Access Denied"))
|
102
|
-
# return jsonify({"error": "auth failed"})
|
103
|
-
|
104
|
-
return function(*args, **kwargs)
|
105
|
-
return wrapper
|
106
|
-
|
107
|
-
|
108
75
|
def api_v1_auth(function):
|
109
76
|
def wrapper(*args, **kwargs):
|
110
77
|
a_uuid = kwargs.get('admin_uuid')
|
@@ -839,8 +806,8 @@ def get_user_agent():
|
|
839
806
|
|
840
807
|
@cache.cache()
|
841
808
|
def __parse_user_agent(ua):
|
842
|
-
#Example: SFA/1.8.0 (239; sing-box 1.8.0)
|
843
|
-
#Example: SFA/1.7.0 (239; sing-box 1.7.0)
|
809
|
+
# Example: SFA/1.8.0 (239; sing-box 1.8.0)
|
810
|
+
# Example: SFA/1.7.0 (239; sing-box 1.7.0)
|
844
811
|
uaa = user_agents.parse(request.user_agent.string)
|
845
812
|
res = {}
|
846
813
|
res["is_bot"] = uaa.is_bot
|
Binary file
|
@@ -3,8 +3,8 @@ msgid ""
|
|
3
3
|
msgstr ""
|
4
4
|
"Project-Id-Version: HiddifyPanel\n"
|
5
5
|
"Report-Msgid-Bugs-To: \n"
|
6
|
-
"POT-Creation-Date: 2024-01-09
|
7
|
-
"PO-Revision-Date: 2024-01-09 05:
|
6
|
+
"POT-Creation-Date: 2024-01-09 13:09+0100\n"
|
7
|
+
"PO-Revision-Date: 2024-01-09 05:55-0600\n"
|
8
8
|
"Last-Translator: hidden u\n"
|
9
9
|
"Language-Team: English (USA)\n"
|
10
10
|
"Language: en_US\n"
|
@@ -25,21 +25,21 @@ msgid "This domain does not exist in the panel!"
|
|
25
25
|
msgstr "This Domain does not exist in the Panel !"
|
26
26
|
|
27
27
|
# | msgid "Apply Configs"
|
28
|
-
#: hiddifypanel/panel/hiddify.py:
|
28
|
+
#: hiddifypanel/panel/hiddify.py:278
|
29
29
|
msgid "admin.config.apply_configs"
|
30
30
|
msgstr "Apply Configs"
|
31
31
|
|
32
32
|
# | msgid ""
|
33
33
|
# | "Configs have been changed successfully. Click %(link)s to apply the "
|
34
34
|
# | "configs. It may take 2 minutes to apply"
|
35
|
-
#: hiddifypanel/panel/hiddify.py:
|
35
|
+
#: hiddifypanel/panel/hiddify.py:279
|
36
36
|
msgid "config.validation-success"
|
37
37
|
msgstr ""
|
38
38
|
"Configs have been changed successfully. Click %(link)s to apply the configs."
|
39
39
|
" It may take 2 minutes to apply"
|
40
40
|
|
41
41
|
# | msgid " ✅ Configs have been changed successfully"
|
42
|
-
#: hiddifypanel/panel/hiddify.py:
|
42
|
+
#: hiddifypanel/panel/hiddify.py:281
|
43
43
|
msgid "config.validation-success-no-reset"
|
44
44
|
msgstr " ✅ Configs have been changed successfully"
|
45
45
|
|
@@ -52,14 +52,14 @@ msgstr " ✅ Configs have been changed successfully"
|
|
52
52
|
#: hiddifypanel/panel/admin/DomainAdmin.py:182
|
53
53
|
#: hiddifypanel/panel/admin/QuickSetup.py:141
|
54
54
|
#: hiddifypanel/panel/commercial/ParentDomainAdmin.py:111
|
55
|
-
#: hiddifypanel/panel/hiddify.py:
|
55
|
+
#: hiddifypanel/panel/hiddify.py:359
|
56
56
|
msgid "Domain can not be resolved! there is a problem in your domain"
|
57
57
|
msgstr ""
|
58
58
|
"Domain can not be resolved! There is a problem in your domain. Please check "
|
59
59
|
"your Domain configurations."
|
60
60
|
|
61
61
|
# | msgid "Last Day"
|
62
|
-
#: hiddifypanel/panel/hiddify.py:
|
62
|
+
#: hiddifypanel/panel/hiddify.py:391
|
63
63
|
msgid "0 - Last day"
|
64
64
|
msgstr "Last Day"
|
65
65
|
|
@@ -67,7 +67,7 @@ msgstr "Last Day"
|
|
67
67
|
# | "Selected Domain for REALITY is not in the same ASN. To better use of the
|
68
68
|
# "
|
69
69
|
# | "Protocol, it is better to find a Domain in the same ASN"
|
70
|
-
#: hiddifypanel/panel/hiddify.py:
|
70
|
+
#: hiddifypanel/panel/hiddify.py:696
|
71
71
|
msgid ""
|
72
72
|
"selected domain for REALITY is not in the same ASN. To better use of the "
|
73
73
|
"protocol, it is better to find a domain in the same ASN."
|
Binary file
|
@@ -3,8 +3,8 @@ msgid ""
|
|
3
3
|
msgstr ""
|
4
4
|
"Project-Id-Version: HiddifyPanel\n"
|
5
5
|
"Report-Msgid-Bugs-To: \n"
|
6
|
-
"POT-Creation-Date: 2024-01-09
|
7
|
-
"PO-Revision-Date: 2024-01-09 05:
|
6
|
+
"POT-Creation-Date: 2024-01-09 13:09+0100\n"
|
7
|
+
"PO-Revision-Date: 2024-01-09 05:55-0600\n"
|
8
8
|
"Last-Translator: hidden u\n"
|
9
9
|
"Language: fa\n"
|
10
10
|
"Language-Team: Persian\n"
|
@@ -26,7 +26,7 @@ msgid "This domain does not exist in the panel!"
|
|
26
26
|
msgstr "این دامنه در پنل وجود ندارد!"
|
27
27
|
|
28
28
|
# | msgid "Apply Configs"
|
29
|
-
#: hiddifypanel/panel/hiddify.py:
|
29
|
+
#: hiddifypanel/panel/hiddify.py:278
|
30
30
|
msgid "admin.config.apply_configs"
|
31
31
|
msgstr "اعمال تنظیمات"
|
32
32
|
|
@@ -34,14 +34,14 @@ msgstr "اعمال تنظیمات"
|
|
34
34
|
# | "Configs have been changed successfully. Click %(link)s to apply the
|
35
35
|
# configs."
|
36
36
|
# | " It may take 2 minutes to apply"
|
37
|
-
#: hiddifypanel/panel/hiddify.py:
|
37
|
+
#: hiddifypanel/panel/hiddify.py:279
|
38
38
|
msgid "config.validation-success"
|
39
39
|
msgstr ""
|
40
40
|
"تنظیمات با موفقیت ذخیره شدند. لطفا بر روی این لینک: %(link)s کلیک کنید تا"
|
41
41
|
" بر روی سیستم اعمال شوند. این کار ممکن است 2 دقیقه طول بکشد"
|
42
42
|
|
43
43
|
# | msgid " ✅ Configs have been changed successfully"
|
44
|
-
#: hiddifypanel/panel/hiddify.py:
|
44
|
+
#: hiddifypanel/panel/hiddify.py:281
|
45
45
|
msgid "config.validation-success-no-reset"
|
46
46
|
msgstr " ✅ تنظیمات با موفقیت تغییر کرد"
|
47
47
|
|
@@ -55,12 +55,12 @@ msgstr " ✅ تنظیمات با موفقیت تغییر کرد"
|
|
55
55
|
#: hiddifypanel/panel/admin/DomainAdmin.py:182
|
56
56
|
#: hiddifypanel/panel/admin/QuickSetup.py:141
|
57
57
|
#: hiddifypanel/panel/commercial/ParentDomainAdmin.py:111
|
58
|
-
#: hiddifypanel/panel/hiddify.py:
|
58
|
+
#: hiddifypanel/panel/hiddify.py:359
|
59
59
|
msgid "Domain can not be resolved! there is a problem in your domain"
|
60
60
|
msgstr "دامنه قابل دسترسی نیست! در دامنه شما مشکلی وجود دارد."
|
61
61
|
|
62
62
|
# | msgid "Last Day"
|
63
|
-
#: hiddifypanel/panel/hiddify.py:
|
63
|
+
#: hiddifypanel/panel/hiddify.py:391
|
64
64
|
msgid "0 - Last day"
|
65
65
|
msgstr "آخرین روز"
|
66
66
|
|
@@ -68,7 +68,7 @@ msgstr "آخرین روز"
|
|
68
68
|
# | "Selected Domain for REALITY is not in the same ASN. To better use of the
|
69
69
|
# "
|
70
70
|
# | "Protocol, it is better to find a Domain in the same ASN"
|
71
|
-
#: hiddifypanel/panel/hiddify.py:
|
71
|
+
#: hiddifypanel/panel/hiddify.py:696
|
72
72
|
msgid ""
|
73
73
|
"selected domain for REALITY is not in the same ASN. To better use of the "
|
74
74
|
"protocol, it is better to find a domain in the same ASN."
|
Binary file
|
@@ -3,8 +3,8 @@ msgid ""
|
|
3
3
|
msgstr ""
|
4
4
|
"Project-Id-Version: HiddifyPT\n"
|
5
5
|
"Report-Msgid-Bugs-To: \n"
|
6
|
-
"POT-Creation-Date: 2024-01-09
|
7
|
-
"PO-Revision-Date: 2024-01-09 05:
|
6
|
+
"POT-Creation-Date: 2024-01-09 13:09+0100\n"
|
7
|
+
"PO-Revision-Date: 2024-01-09 05:55-0600\n"
|
8
8
|
"Last-Translator: lymanrudni\n"
|
9
9
|
"Language: pt\n"
|
10
10
|
"Language-Team: Portuguese\n"
|
@@ -29,7 +29,7 @@ msgid "This domain does not exist in the panel!"
|
|
29
29
|
msgstr "Este Domínio não existe no Painel!"
|
30
30
|
|
31
31
|
# | msgid "Apply Configs"
|
32
|
-
#: hiddifypanel/panel/hiddify.py:
|
32
|
+
#: hiddifypanel/panel/hiddify.py:278
|
33
33
|
#, fuzzy
|
34
34
|
msgid "admin.config.apply_configs"
|
35
35
|
msgstr "Aplicar configurações"
|
@@ -38,7 +38,7 @@ msgstr "Aplicar configurações"
|
|
38
38
|
# | "Configs have been changed successfully. Click %(link)s to apply the
|
39
39
|
# configs."
|
40
40
|
# | " It may take 2 minutes to apply"
|
41
|
-
#: hiddifypanel/panel/hiddify.py:
|
41
|
+
#: hiddifypanel/panel/hiddify.py:279
|
42
42
|
#, fuzzy
|
43
43
|
msgid "config.validation-success"
|
44
44
|
msgstr ""
|
@@ -46,7 +46,7 @@ msgstr ""
|
|
46
46
|
"aplicar as configurações. Pode levar 2 minutos para aplicar"
|
47
47
|
|
48
48
|
# | msgid " ✅ Configs have been changed successfully"
|
49
|
-
#: hiddifypanel/panel/hiddify.py:
|
49
|
+
#: hiddifypanel/panel/hiddify.py:281
|
50
50
|
#, fuzzy
|
51
51
|
msgid "config.validation-success-no-reset"
|
52
52
|
msgstr "✅ As configurações foram alteradas com sucesso"
|
@@ -61,7 +61,7 @@ msgstr "✅ As configurações foram alteradas com sucesso"
|
|
61
61
|
#: hiddifypanel/panel/admin/DomainAdmin.py:182
|
62
62
|
#: hiddifypanel/panel/admin/QuickSetup.py:141
|
63
63
|
#: hiddifypanel/panel/commercial/ParentDomainAdmin.py:111
|
64
|
-
#: hiddifypanel/panel/hiddify.py:
|
64
|
+
#: hiddifypanel/panel/hiddify.py:359
|
65
65
|
#, fuzzy
|
66
66
|
msgid "Domain can not be resolved! there is a problem in your domain"
|
67
67
|
msgstr ""
|
@@ -69,7 +69,7 @@ msgstr ""
|
|
69
69
|
"Verifique as configurações do seu Domínio."
|
70
70
|
|
71
71
|
# | msgid "Last Day"
|
72
|
-
#: hiddifypanel/panel/hiddify.py:
|
72
|
+
#: hiddifypanel/panel/hiddify.py:391
|
73
73
|
#, fuzzy
|
74
74
|
msgid "0 - Last day"
|
75
75
|
msgstr "Último dia"
|
@@ -78,7 +78,7 @@ msgstr "Último dia"
|
|
78
78
|
# | "Selected Domain for REALITY is not in the same ASN. To better use of the
|
79
79
|
# "
|
80
80
|
# | "Protocol, it is better to find a Domain in the same ASN"
|
81
|
-
#: hiddifypanel/panel/hiddify.py:
|
81
|
+
#: hiddifypanel/panel/hiddify.py:696
|
82
82
|
msgid ""
|
83
83
|
"selected domain for REALITY is not in the same ASN. To better use of the "
|
84
84
|
"protocol, it is better to find a domain in the same ASN."
|
Binary file
|
@@ -3,8 +3,8 @@ msgid ""
|
|
3
3
|
msgstr ""
|
4
4
|
"Project-Id-Version: HiddifyPT\n"
|
5
5
|
"Report-Msgid-Bugs-To: \n"
|
6
|
-
"POT-Creation-Date: 2024-01-09
|
7
|
-
"PO-Revision-Date: 2024-01-09 05:
|
6
|
+
"POT-Creation-Date: 2024-01-09 13:09+0100\n"
|
7
|
+
"PO-Revision-Date: 2024-01-09 05:55-0600\n"
|
8
8
|
"Last-Translator: lymanrudni\n"
|
9
9
|
"Language: ru\n"
|
10
10
|
"Language-Team: Russian\n"
|
@@ -27,7 +27,7 @@ msgid "This domain does not exist in the panel!"
|
|
27
27
|
msgstr "Этого домена не существует в панели управления!"
|
28
28
|
|
29
29
|
# | msgid "Apply Configs"
|
30
|
-
#: hiddifypanel/panel/hiddify.py:
|
30
|
+
#: hiddifypanel/panel/hiddify.py:278
|
31
31
|
msgid "admin.config.apply_configs"
|
32
32
|
msgstr "Применить конфигурацию"
|
33
33
|
|
@@ -35,14 +35,14 @@ msgstr "Применить конфигурацию"
|
|
35
35
|
# | "Configs have been changed successfully. Click %(link)s to apply the
|
36
36
|
# configs."
|
37
37
|
# | " It may take 2 minutes to apply"
|
38
|
-
#: hiddifypanel/panel/hiddify.py:
|
38
|
+
#: hiddifypanel/panel/hiddify.py:279
|
39
39
|
msgid "config.validation-success"
|
40
40
|
msgstr ""
|
41
41
|
"Конфигурации успешно изменены. Нажмите %(link)s, чтобы применить их. Это "
|
42
42
|
"может занять 2 минуты"
|
43
43
|
|
44
44
|
# | msgid " ✅ Configs have been changed successfully"
|
45
|
-
#: hiddifypanel/panel/hiddify.py:
|
45
|
+
#: hiddifypanel/panel/hiddify.py:281
|
46
46
|
msgid "config.validation-success-no-reset"
|
47
47
|
msgstr "✅ Конфигурации успешно изменены"
|
48
48
|
|
@@ -56,14 +56,14 @@ msgstr "✅ Конфигурации успешно изменены"
|
|
56
56
|
#: hiddifypanel/panel/admin/DomainAdmin.py:182
|
57
57
|
#: hiddifypanel/panel/admin/QuickSetup.py:141
|
58
58
|
#: hiddifypanel/panel/commercial/ParentDomainAdmin.py:111
|
59
|
-
#: hiddifypanel/panel/hiddify.py:
|
59
|
+
#: hiddifypanel/panel/hiddify.py:359
|
60
60
|
msgid "Domain can not be resolved! there is a problem in your domain"
|
61
61
|
msgstr ""
|
62
62
|
"Не возможно определить IP адрес для домена! В вашем домене возникла "
|
63
63
|
"проблема. Пожалуйста, проверьте настройки."
|
64
64
|
|
65
65
|
# | msgid "Last Day"
|
66
|
-
#: hiddifypanel/panel/hiddify.py:
|
66
|
+
#: hiddifypanel/panel/hiddify.py:391
|
67
67
|
msgid "0 - Last day"
|
68
68
|
msgstr "Последний день"
|
69
69
|
|
@@ -71,7 +71,7 @@ msgstr "Последний день"
|
|
71
71
|
# | "Selected Domain for REALITY is not in the same ASN. To better use of the
|
72
72
|
# "
|
73
73
|
# | "Protocol, it is better to find a Domain in the same ASN"
|
74
|
-
#: hiddifypanel/panel/hiddify.py:
|
74
|
+
#: hiddifypanel/panel/hiddify.py:696
|
75
75
|
msgid ""
|
76
76
|
"selected domain for REALITY is not in the same ASN. To better use of the "
|
77
77
|
"protocol, it is better to find a domain in the same ASN."
|
Binary file
|
@@ -3,8 +3,8 @@ msgid ""
|
|
3
3
|
msgstr ""
|
4
4
|
"Project-Id-Version: HiddifyPanel\n"
|
5
5
|
"Report-Msgid-Bugs-To: \n"
|
6
|
-
"POT-Creation-Date: 2024-01-09
|
7
|
-
"PO-Revision-Date: 2024-01-09 05:
|
6
|
+
"POT-Creation-Date: 2024-01-09 13:09+0100\n"
|
7
|
+
"PO-Revision-Date: 2024-01-09 05:55-0600\n"
|
8
8
|
"Last-Translator: hidden u\n"
|
9
9
|
"Language: zh\n"
|
10
10
|
"Language-Team: Chinese\n"
|
@@ -26,7 +26,7 @@ msgid "This domain does not exist in the panel!"
|
|
26
26
|
msgstr "该域名在面板中不存在!"
|
27
27
|
|
28
28
|
# | msgid "Apply Configs"
|
29
|
-
#: hiddifypanel/panel/hiddify.py:
|
29
|
+
#: hiddifypanel/panel/hiddify.py:278
|
30
30
|
msgid "admin.config.apply_configs"
|
31
31
|
msgstr "应用配置"
|
32
32
|
|
@@ -34,12 +34,12 @@ msgstr "应用配置"
|
|
34
34
|
# | "Configs have been changed successfully. Click %(link)s to apply the
|
35
35
|
# configs."
|
36
36
|
# | " It may take 2 minutes to apply"
|
37
|
-
#: hiddifypanel/panel/hiddify.py:
|
37
|
+
#: hiddifypanel/panel/hiddify.py:279
|
38
38
|
msgid "config.validation-success"
|
39
39
|
msgstr "配置已成功更改。单击 %(link)s 以应用配置。应用可能需要 2 分钟。"
|
40
40
|
|
41
41
|
# | msgid " ✅ Configs have been changed successfully"
|
42
|
-
#: hiddifypanel/panel/hiddify.py:
|
42
|
+
#: hiddifypanel/panel/hiddify.py:281
|
43
43
|
msgid "config.validation-success-no-reset"
|
44
44
|
msgstr " ✅ 配置已成功更改"
|
45
45
|
|
@@ -53,12 +53,12 @@ msgstr " ✅ 配置已成功更改"
|
|
53
53
|
#: hiddifypanel/panel/admin/DomainAdmin.py:182
|
54
54
|
#: hiddifypanel/panel/admin/QuickSetup.py:141
|
55
55
|
#: hiddifypanel/panel/commercial/ParentDomainAdmin.py:111
|
56
|
-
#: hiddifypanel/panel/hiddify.py:
|
56
|
+
#: hiddifypanel/panel/hiddify.py:359
|
57
57
|
msgid "Domain can not be resolved! there is a problem in your domain"
|
58
58
|
msgstr "域名无法解析!你的域名有问题。请检查你的域名配置。"
|
59
59
|
|
60
60
|
# | msgid "Last Day"
|
61
|
-
#: hiddifypanel/panel/hiddify.py:
|
61
|
+
#: hiddifypanel/panel/hiddify.py:391
|
62
62
|
msgid "0 - Last day"
|
63
63
|
msgstr "最后一天"
|
64
64
|
|
@@ -66,7 +66,7 @@ msgstr "最后一天"
|
|
66
66
|
# | "Selected Domain for REALITY is not in the same ASN. To better use of the
|
67
67
|
# "
|
68
68
|
# | "Protocol, it is better to find a Domain in the same ASN"
|
69
|
-
#: hiddifypanel/panel/hiddify.py:
|
69
|
+
#: hiddifypanel/panel/hiddify.py:696
|
70
70
|
msgid ""
|
71
71
|
"selected domain for REALITY is not in the same ASN. To better use of the "
|
72
72
|
"protocol, it is better to find a domain in the same ASN."
|
@@ -1,6 +1,6 @@
|
|
1
1
|
hiddifypanel/Events.py,sha256=mkIsfz4YQqegdeFgH4quxvLIx7AundtjAW6HBSP9I-M,719
|
2
|
-
hiddifypanel/VERSION,sha256=
|
3
|
-
hiddifypanel/VERSION.py,sha256=
|
2
|
+
hiddifypanel/VERSION,sha256=3Aj6kEQuSYw_8jp4SeeQzpNhsw4Udp_04Ghbh43zSHo,12
|
3
|
+
hiddifypanel/VERSION.py,sha256=LT_GEEkhYw8rQLFapHom2NkK8bUDxt9jB6oRt7kUs6g,117
|
4
4
|
hiddifypanel/__init__.py,sha256=b4nIILUBiDaAWF1Mnkew84MxzR5OeWogcVbR-gpnbrA,217
|
5
5
|
hiddifypanel/__main__.py,sha256=GaHLsnu3y4zNTh6x-9kuZLOYaShltkG96rRAHOuMLak,270
|
6
6
|
hiddifypanel/base.py,sha256=yQCXcuxdmFWcSRDL9flOZQ6cW20QG5uwTHTo4v9sO48,4790
|
@@ -36,16 +36,16 @@ hiddifypanel/panel/auth_back.py,sha256=RGAAKUDHNaGamWK0HOglS7XQs_ZKoVaTfDFG2xtw4
|
|
36
36
|
hiddifypanel/panel/auth_back2.py,sha256=fvwZsURQ6gRw0no1m9elhwpiVIpykZuKppYVIshos08,9009
|
37
37
|
hiddifypanel/panel/cf_api.py,sha256=lkkKb4ozSEfOXXcYrTMj9RsRfrI-xSd6ui0npFZfzYg,1110
|
38
38
|
hiddifypanel/panel/cli.py,sha256=mA0LbrEOllt--osOIL7hY4w-A4BFk8YK2Tv2ILGAgaE,9048
|
39
|
-
hiddifypanel/panel/common.py,sha256=
|
39
|
+
hiddifypanel/panel/common.py,sha256=Z3Yqz0NAY4WR5m58bMjOBt7yT1PmegLmgBPNCDQLdJs,11984
|
40
40
|
hiddifypanel/panel/custom_widgets.py,sha256=rAI5lka3rCftJVvdIFGOBh6DrcwrewfY41lXlDI-19s,2502
|
41
41
|
hiddifypanel/panel/database.py,sha256=EMsJ0S-FP7Ir24Qw7EtADmkW8ZHDXM_672TAm5Zrgpk,1143
|
42
42
|
hiddifypanel/panel/github_issue_generator.py,sha256=2zUNnvhJZcvWaaXEpCHzx6WWvBIluVKQhEDsHmL5x1A,3646
|
43
|
-
hiddifypanel/panel/hiddify.py,sha256=
|
43
|
+
hiddifypanel/panel/hiddify.py,sha256=45Yy7AkuEcjX0BWqUC5vrvcz-TH-7ahEL0ytZjryNpM,34351
|
44
44
|
hiddifypanel/panel/init_db.py,sha256=BpULmssoYDg3D1UmlUbx7xsS2ZG1BaIWJq4GDKzNr9A,24624
|
45
45
|
hiddifypanel/panel/run_commander.py,sha256=NGKMxYAmkwvbh27UFUmUD3rPvNU3JCr6YF4IoGU24FA,2932
|
46
46
|
hiddifypanel/panel/usage.py,sha256=eDIHWqElWLSpI2ZDbctlM9vKjunuHnBn1jypEoCvB9g,4164
|
47
47
|
hiddifypanel/panel/admin/Actions.py,sha256=eUxtwRXjY_aPDHBODgko5Dwag6vr2IfSj9jA7d9OxTE,10206
|
48
|
-
hiddifypanel/panel/admin/AdminstratorAdmin.py,sha256=
|
48
|
+
hiddifypanel/panel/admin/AdminstratorAdmin.py,sha256=vU7mNmg1eBaNI5-FoEYpaC6Q6XlsKzY7_Heq3-EYJkk,10182
|
49
49
|
hiddifypanel/panel/admin/Backup.py,sha256=MimgwLxaDC6XJDShmSbluBZlpxdNsuPo0716l7QuiRk,3459
|
50
50
|
hiddifypanel/panel/admin/ChildAdmin.py,sha256=KhjNjFWqu_M-xiC0Z2xHBsr0YTKpXGTsXGHSb1k5Hak,4466
|
51
51
|
hiddifypanel/panel/admin/ConfigAdmin.py,sha256=IMPveW6f6uxcedjVaKzo7Fe29Z-6yIm1J2T2qhf8yLA,3170
|
@@ -112,7 +112,7 @@ hiddifypanel/panel/commercial/telegrambot/information.py,sha256=JMbdM-mkSlZwgEG6
|
|
112
112
|
hiddifypanel/panel/commercial/templates/configc.html,sha256=WCQtEXf-Vf1s8mhTlECdscrSdvXuLxJsOPEY214UBxw,1485
|
113
113
|
hiddifypanel/panel/commercial/templates/parent_dash.html,sha256=-f6AMizeIgtva8r_XqXf-QB28X1XKcxe_ysJbY8kT_g,1937
|
114
114
|
hiddifypanel/panel/common_bp/__init__.py,sha256=JQgsAOBk5lOR-EollEHB7Od9rg5yn3pL0cOdKX4zDF8,279
|
115
|
-
hiddifypanel/panel/common_bp/login.py,sha256=
|
115
|
+
hiddifypanel/panel/common_bp/login.py,sha256=gYsx4aQyGnIdBZIARB-Vc5dGUhjUe9xmIk4UGgsKVLQ,5991
|
116
116
|
hiddifypanel/panel/common_bp/templates/login.html,sha256=jDl9-Nh2qMuCsLQmXm7e5jvSaRAlBxReVVCbNSTTHJw,1312
|
117
117
|
hiddifypanel/panel/importer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
118
118
|
hiddifypanel/panel/importer/xui.py,sha256=JQmd-afDDHr5OsE2bN7oyQfGKLo6HbkkpE-tCPF23gc,5570
|
@@ -758,19 +758,19 @@ hiddifypanel/templates/master.html,sha256=C01NzGP0Ciqx6PX2m7aV0dpIe7u4CbzXLT541y
|
|
758
758
|
hiddifypanel/templates/redirect.html,sha256=K9x_O4P96vEkqBhOXIhoGrWw1KIqd2bL0BjIqmnpZi0,412
|
759
759
|
hiddifypanel/templates/static.html,sha256=jp6q4wtx-k2A_cjqJoNiMS7Ee30arE45qI3ev4d5ky4,165
|
760
760
|
hiddifypanel/templates/hiddify-flask-admin/list.html,sha256=St0TD6-ZIJ24A6Akbh51JNkTEOpimFq2iiRydcUjQlA,13642
|
761
|
-
hiddifypanel/translations/en/LC_MESSAGES/messages.mo,sha256=
|
762
|
-
hiddifypanel/translations/en/LC_MESSAGES/messages.po,sha256=
|
763
|
-
hiddifypanel/translations/fa/LC_MESSAGES/messages.mo,sha256=
|
764
|
-
hiddifypanel/translations/fa/LC_MESSAGES/messages.po,sha256=
|
765
|
-
hiddifypanel/translations/pt/LC_MESSAGES/messages.mo,sha256=
|
766
|
-
hiddifypanel/translations/pt/LC_MESSAGES/messages.po,sha256=
|
767
|
-
hiddifypanel/translations/ru/LC_MESSAGES/messages.mo,sha256=
|
768
|
-
hiddifypanel/translations/ru/LC_MESSAGES/messages.po,sha256=
|
769
|
-
hiddifypanel/translations/zh/LC_MESSAGES/messages.mo,sha256=
|
770
|
-
hiddifypanel/translations/zh/LC_MESSAGES/messages.po,sha256=
|
771
|
-
hiddifypanel-9.0.0.
|
772
|
-
hiddifypanel-9.0.0.
|
773
|
-
hiddifypanel-9.0.0.
|
774
|
-
hiddifypanel-9.0.0.
|
775
|
-
hiddifypanel-9.0.0.
|
776
|
-
hiddifypanel-9.0.0.
|
761
|
+
hiddifypanel/translations/en/LC_MESSAGES/messages.mo,sha256=VWCQ9PM1wnO7ewp10MJZbf0B5406fKjte_q7FgQavVk,61111
|
762
|
+
hiddifypanel/translations/en/LC_MESSAGES/messages.po,sha256=lGCJWL1LWKR1buYRxeuCd7PP6P2EzcOd_C6fV-QssKQ,176434
|
763
|
+
hiddifypanel/translations/fa/LC_MESSAGES/messages.mo,sha256=9Z6kYNA15iSmzyD0YPZRFB9GUOxe8rQlWGojm7X_ebc,81189
|
764
|
+
hiddifypanel/translations/fa/LC_MESSAGES/messages.po,sha256=F0R-7EQWmXxcVTgR36Pd3Ym6epjhduobEutUkqioisc,200905
|
765
|
+
hiddifypanel/translations/pt/LC_MESSAGES/messages.mo,sha256=VaJuyHgpoafININfnMlT-4eOliRX-TTQWo4cdh8MZuY,62521
|
766
|
+
hiddifypanel/translations/pt/LC_MESSAGES/messages.po,sha256=4fAFvS87OMgPX2iCe2k-Dsae-3TYYI9Uz0qDJZSfEPg,175249
|
767
|
+
hiddifypanel/translations/ru/LC_MESSAGES/messages.mo,sha256=vtP_lQPHuS0UdkGTTx3QZ_eEWrd0MIfwZ-0xO2TsxOA,84530
|
768
|
+
hiddifypanel/translations/ru/LC_MESSAGES/messages.po,sha256=D1vaUNOS_Xj2vQPWdE1NFkJ20Z4G2dGE4hwx24ciBcA,195510
|
769
|
+
hiddifypanel/translations/zh/LC_MESSAGES/messages.mo,sha256=d33zEaygiYGBP-2-B4ANlpDT3HY8Q71m0ZOgKGzPKN8,58670
|
770
|
+
hiddifypanel/translations/zh/LC_MESSAGES/messages.po,sha256=ogjFm7RN1I1_2vDMVtF91DtoWF_rF87svEZkyHceYFc,173721
|
771
|
+
hiddifypanel-9.0.0.dev37.dist-info/LICENSE.md,sha256=oDrt-cUsyiDGnRPjEJh-3dH2ddAuK_bIVBD8ntkOtZw,19807
|
772
|
+
hiddifypanel-9.0.0.dev37.dist-info/METADATA,sha256=Tws5FUEx3V0J7wVVNlXRafGijGZ1tAKcg6I8TBrX1us,3564
|
773
|
+
hiddifypanel-9.0.0.dev37.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
774
|
+
hiddifypanel-9.0.0.dev37.dist-info/entry_points.txt,sha256=Xzpqlh3nwBtZhoV9AANJykano056VJvYzaujxPztJaM,60
|
775
|
+
hiddifypanel-9.0.0.dev37.dist-info/top_level.txt,sha256=rv-b3qFWUZQTBy0kyBfsr7L6tPpeO7AaQlLHXn-HI5M,13
|
776
|
+
hiddifypanel-9.0.0.dev37.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|