hiddifypanel 10.70.1__py3-none-any.whl → 10.70.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hiddifypanel/VERSION +1 -1
- hiddifypanel/VERSION.py +2 -2
- hiddifypanel/panel/init_db.py +14 -14
- hiddifypanel/panel/usage.py +3 -3
- hiddifypanel/static/css/custom.css +4 -0
- hiddifypanel/static/js/qrcode.js +3 -0
- hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/fa/LC_MESSAGES/messages.po +1 -1
- hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/pt/LC_MESSAGES/messages.po +11 -7
- hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/ru/LC_MESSAGES/messages.po +10 -10
- hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations.i18n/fa.json +1 -1
- hiddifypanel/translations.i18n/pt.json +8 -8
- hiddifypanel/translations.i18n/ru.json +9 -9
- {hiddifypanel-10.70.1.dist-info → hiddifypanel-10.70.3.dist-info}/METADATA +1 -1
- {hiddifypanel-10.70.1.dist-info → hiddifypanel-10.70.3.dist-info}/RECORD +23 -23
- {hiddifypanel-10.70.1.dist-info → hiddifypanel-10.70.3.dist-info}/LICENSE.md +0 -0
- {hiddifypanel-10.70.1.dist-info → hiddifypanel-10.70.3.dist-info}/WHEEL +0 -0
- {hiddifypanel-10.70.1.dist-info → hiddifypanel-10.70.3.dist-info}/entry_points.txt +0 -0
- {hiddifypanel-10.70.1.dist-info → hiddifypanel-10.70.3.dist-info}/top_level.txt +0 -0
hiddifypanel/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
10.70.
|
1
|
+
10.70.3
|
hiddifypanel/VERSION.py
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
__version__='10.70.
|
1
|
+
__version__='10.70.3'
|
2
2
|
from datetime import datetime
|
3
|
-
__release_date__= datetime.strptime('2024-
|
3
|
+
__release_date__= datetime.strptime('2024-08-03','%Y-%m-%d')
|
hiddifypanel/panel/init_db.py
CHANGED
@@ -17,20 +17,7 @@ from loguru import logger
|
|
17
17
|
MAX_DB_VERSION = 100
|
18
18
|
|
19
19
|
|
20
|
-
def
|
21
|
-
set_hconfig(ConfigEnum.wireguard_noise_trick, "0-0")
|
22
|
-
|
23
|
-
|
24
|
-
def _v93(child_id):
|
25
|
-
set_hconfig(ConfigEnum.quic_enable, True)
|
26
|
-
set_hconfig(ConfigEnum.splithttp_enable, True)
|
27
|
-
|
28
|
-
|
29
|
-
def _v92(child_id):
|
30
|
-
db.session.bulk_save_objects(get_proxy_rows_v1())
|
31
|
-
|
32
|
-
|
33
|
-
def _v90(child_id):
|
20
|
+
def _v95(child_id):
|
34
21
|
result = (
|
35
22
|
db.session.query(
|
36
23
|
DailyUsage.child_id,
|
@@ -67,6 +54,19 @@ def _v90(child_id):
|
|
67
54
|
db.session.commit()
|
68
55
|
|
69
56
|
|
57
|
+
def _v94(child_id):
|
58
|
+
set_hconfig(ConfigEnum.wireguard_noise_trick, "0-0")
|
59
|
+
|
60
|
+
|
61
|
+
def _v93(child_id):
|
62
|
+
set_hconfig(ConfigEnum.quic_enable, True)
|
63
|
+
set_hconfig(ConfigEnum.splithttp_enable, True)
|
64
|
+
|
65
|
+
|
66
|
+
def _v92(child_id):
|
67
|
+
db.session.bulk_save_objects(get_proxy_rows_v1())
|
68
|
+
|
69
|
+
|
70
70
|
def _v89(child_id):
|
71
71
|
set_hconfig(ConfigEnum.path_splithttp, hutils.random.get_random_string(7, 15))
|
72
72
|
set_hconfig(ConfigEnum.splithttp_enable, False)
|
hiddifypanel/panel/usage.py
CHANGED
@@ -70,12 +70,12 @@ def _add_users_usage(users_usage_data: Dict[User, Dict], child_id, sync=False):
|
|
70
70
|
daily_usage[adm.id] = DailyUsage.query.filter(DailyUsage.date == today, DailyUsage.admin_id == adm.id, DailyUsage.child_id == child_id).first()
|
71
71
|
if daily_usage[adm.id] is None:
|
72
72
|
logger.info(f"creating a new daily usage {today} admin={adm.id} child={child_id}")
|
73
|
-
daily_usage[adm.id] = DailyUsage(admin_id=adm.id, child_id=child_id)
|
73
|
+
daily_usage[adm.id] = DailyUsage(date=today, admin_id=adm.id, child_id=child_id)
|
74
74
|
db.session.add(daily_usage[adm.id])
|
75
75
|
changes = True
|
76
76
|
daily_usage[adm.id].online = User.query.filter(User.added_by == adm.id).filter(func.DATE(User.last_online) == today).count()
|
77
|
-
|
78
|
-
|
77
|
+
if changes:
|
78
|
+
db.session.commit()
|
79
79
|
_reset_priodic_usage()
|
80
80
|
|
81
81
|
# userDetails = {p.user_id: p for p in UserDetail.query.filter(UserDetail.child_id == child_id).all()}
|
hiddifypanel/static/js/qrcode.js
CHANGED
@@ -363,6 +363,9 @@ var QRCode;
|
|
363
363
|
this._bIsPainted = false;
|
364
364
|
this._elImage = document.createElement("img");
|
365
365
|
this._elImage.alt = "Scan me!";
|
366
|
+
this._elImage.style.width = "100%";
|
367
|
+
this._elImage.style.height = "100%";
|
368
|
+
this._elImage.style.position = "relative";
|
366
369
|
this._elImage.style.display = "none";
|
367
370
|
this._el.appendChild(this._elImage);
|
368
371
|
this._bSupportDataURI = null;
|
Binary file
|
Binary file
|
Binary file
|
@@ -249,10 +249,10 @@ msgid "Edit Proxy Names"
|
|
249
249
|
msgstr "✏️ Modificando Proxies"
|
250
250
|
|
251
251
|
msgid "Enable"
|
252
|
-
msgstr "Habilitar"
|
252
|
+
msgstr "❇️ Habilitar"
|
253
253
|
|
254
254
|
msgid "Error in auto cdn format"
|
255
|
-
msgstr "Erro no formato CDN automático"
|
255
|
+
msgstr "⚠️ Erro no formato CDN automático"
|
256
256
|
|
257
257
|
msgid "Error! auto cdn ip can not be find, please contact admin."
|
258
258
|
msgstr ""
|
@@ -299,7 +299,8 @@ msgstr "HiddifyClash"
|
|
299
299
|
msgid "HiddifyN intro"
|
300
300
|
msgstr ""
|
301
301
|
"Por favor, instale HiddifyN de %(dl_link)s.\n"
|
302
|
-
"Então clique no link abaixo. Fará tudo automaticamente
|
302
|
+
"Então clique no link abaixo. Fará tudo automaticamente.\n"
|
303
|
+
"<br />"
|
303
304
|
|
304
305
|
msgid "HiddifyNG"
|
305
306
|
msgstr "HiddifyNG <span class='badge badge-success'>Recommended</span>"
|
@@ -460,13 +461,13 @@ msgid "Others"
|
|
460
461
|
msgstr "🇺🇳 Outros"
|
461
462
|
|
462
463
|
msgid "Override Root Admin"
|
463
|
-
msgstr "
|
464
|
+
msgstr ""
|
464
465
|
|
465
466
|
msgid "Owner can not be deleted!"
|
466
467
|
msgstr "O proprietário não pode ser excluído!"
|
467
468
|
|
468
469
|
msgid "Package Days"
|
469
|
-
msgstr "Dias do pacote"
|
470
|
+
msgstr "📆 Dias do pacote"
|
470
471
|
|
471
472
|
msgid "Package ended!"
|
472
473
|
msgstr "Package encerrado"
|
@@ -514,7 +515,7 @@ msgstr "Selecione pelo menos um usuário"
|
|
514
515
|
|
515
516
|
msgid "Please select one of the following applications:"
|
516
517
|
msgstr ""
|
517
|
-
"Selecione um dos seguintes aplicativos:\n"
|
518
|
+
"📍 Selecione um dos seguintes aplicativos:\n"
|
518
519
|
"<br />"
|
519
520
|
|
520
521
|
msgid "Please type your message to send to the telegram:"
|
@@ -560,7 +561,7 @@ msgid "ProxyPath is already used! use different proxy path"
|
|
560
561
|
msgstr "ProxyPath já está em uso! usar caminho de proxy diferente"
|
561
562
|
|
562
563
|
msgid "QR code"
|
563
|
-
msgstr "Código QR"
|
564
|
+
msgstr "🧾 Código QR"
|
564
565
|
|
565
566
|
msgid "QRCode"
|
566
567
|
msgstr "<i class='fa-solid fa-qrcode'></i> QRCode"
|
@@ -2303,6 +2304,9 @@ msgstr ""
|
|
2303
2304
|
|
2304
2305
|
msgid "domain.intro"
|
2305
2306
|
msgstr ""
|
2307
|
+
"1️⃣ Nesta seção, você pode adicionar seu domínio.\\n<br>\n"
|
2308
|
+
"2️⃣ Se você deseja diminuir a probabilidade de ter um IP sujo, pode adicionar Multiple Relay Server <a href='https://github.com/hiddify/hiddify-config/discussions/129'>Leia mais</a>.\\n<br>\n"
|
2309
|
+
"3️⃣ Se você tiver Múltiplos IPv4 ou IPv6 em seu Painel, deverá adicionar o domínio apontado para eles como Relay.\""
|
2306
2310
|
|
2307
2311
|
msgid "domain.ip"
|
2308
2312
|
msgstr "IP"
|
Binary file
|
@@ -16,7 +16,7 @@ msgid "%(count)s records were successfully enabled."
|
|
16
16
|
msgstr "%(count)s записей были успешно включены."
|
17
17
|
|
18
18
|
msgid "%(expire_days)s days"
|
19
|
-
msgstr "%(expire_days)
|
19
|
+
msgstr "%(expire_days)s дней"
|
20
20
|
|
21
21
|
msgid "%(placeholder)s"
|
22
22
|
msgstr "%(placeholder)s"
|
@@ -88,7 +88,7 @@ msgid "Bridge Servers"
|
|
88
88
|
msgstr "➖ Bridge серверы"
|
89
89
|
|
90
90
|
msgid "Bug"
|
91
|
-
msgstr "
|
91
|
+
msgstr "Баги/Предложения"
|
92
92
|
|
93
93
|
msgid "CPU %(cores)s Cores"
|
94
94
|
msgstr "CPU %(cores)s Ядро"
|
@@ -103,7 +103,7 @@ msgid "Childs"
|
|
103
103
|
msgstr "Дочерние"
|
104
104
|
|
105
105
|
msgid "China"
|
106
|
-
msgstr "
|
106
|
+
msgstr "🇨🇳 Китай"
|
107
107
|
|
108
108
|
msgid "Click here to see the complete log"
|
109
109
|
msgstr "Нажмите здесь, чтобы просмотреть весь журнал"
|
@@ -211,8 +211,8 @@ msgid ""
|
|
211
211
|
"Domain IP=%(domain_ip)s is not matched with your ip=%(server_ip)s which is "
|
212
212
|
"required in direct mode"
|
213
213
|
msgstr ""
|
214
|
-
"IP Домена не совпадает с Вашим IP Сервера, который необходим
|
215
|
-
"Режима\""
|
214
|
+
"IP=%(domain_ip)s Домена не совпадает с Вашим IP Сервера, который необходим "
|
215
|
+
"для \"Прямого Режима\""
|
216
216
|
|
217
217
|
msgid "Domain can not be resolved! there is a problem in your domain"
|
218
218
|
msgstr ""
|
@@ -220,7 +220,7 @@ msgstr ""
|
|
220
220
|
"проблема. Пожалуйста, проверьте настройки."
|
221
221
|
|
222
222
|
msgid "Domain is not REALITY friendly!"
|
223
|
-
msgstr "Домен не подходит для использования с
|
223
|
+
msgstr "Домен не подходит для использования с REALITY!"
|
224
224
|
|
225
225
|
msgid "Domain?"
|
226
226
|
msgstr "Домен?"
|
@@ -385,7 +385,7 @@ msgid "Import in"
|
|
385
385
|
msgstr "Импортировать"
|
386
386
|
|
387
387
|
msgid "In 5 minutes"
|
388
|
-
msgstr "
|
388
|
+
msgstr "Через 5 минут"
|
389
389
|
|
390
390
|
msgid ""
|
391
391
|
"In CDN mode, Domain IP=%(domain_ip)s should be different to your "
|
@@ -412,7 +412,7 @@ msgid "Invalid admin link"
|
|
412
412
|
msgstr "Неверная ссылка администратора"
|
413
413
|
|
414
414
|
msgid "Iran"
|
415
|
-
msgstr "
|
415
|
+
msgstr "🇮🇷 Иран"
|
416
416
|
|
417
417
|
msgid ""
|
418
418
|
"It seems that you are using default domain (%(domain)s) which is not "
|
@@ -497,10 +497,10 @@ msgid "Open in Application"
|
|
497
497
|
msgstr "Открыть в приложении"
|
498
498
|
|
499
499
|
msgid "Others"
|
500
|
-
msgstr "
|
500
|
+
msgstr "🇺🇳 Другие"
|
501
501
|
|
502
502
|
msgid "Override Root Admin"
|
503
|
-
msgstr "Переопределение администратора"
|
503
|
+
msgstr "🔁 Переопределение администратора"
|
504
504
|
|
505
505
|
msgid "Owner can not be deleted!"
|
506
506
|
msgstr "Владелец не может быть удалён!"
|
Binary file
|
@@ -149,7 +149,7 @@
|
|
149
149
|
"Premium Description": "پنل هیدیفای برای استفاده غیرتجاری ساخته شده است. اما چنانچه از این پنل استفاده تجاری میکنید، از شما خواهشمندیم با دونیت کردن به رشد پروژه کمک کنید. <br/>\nدر عوض حمایت مالی شما، امکانات ویژه ای هم برای محصول تجاری شما فراهم میکنیم.\n<br/>\n<br/>\nاز قبیل:\n<ul>\n<li>امکان سینک شدن به کلودفلر: یعنی با افزودن دامنه در پنل، تنظیمات مربوطه در کلود فلر نیز انجام شود</li>\n<li>امکان نمایش برند شما در پنل</li>\n<li>امکان استفاده از پنل مرکزی جهت مدیریت بیش از ۱ سرور در فقط یک پنل بنابراین دیگر لازم نیست کاربران را در سرورهای مختلف ثبت کنید و همین طور حجم آنها در تمام سرورها جمع خواهد شد.\n</li>\n<li>\nامکان استفاده از بات تلگرام\n</li>\n<li>\nامکان تغییر نام پروکسی ها\n</li>\n</ul>\n\nلطفا پس از دونیت کردن به <a href='tg://resolve?domain=HiddifyCommercial'>@HiddifyCommercial</a>\nپیام دهید تا نسخه ویژه ی کاربران تجاری به شما ارائه شود.",
|
150
150
|
"ProxyPath is already used! use different proxy path": "ProxyPath قبلاً استفاده شده است! از مسیرهای مختلف پروکسی استفاده کنید",
|
151
151
|
"QR code": "🧾 کیوآر کد",
|
152
|
-
"QRCode": "
|
152
|
+
"QRCode": "<i class='fa-solid fa-qrcode'></i> QR Code ",
|
153
153
|
"RAM": "رم",
|
154
154
|
"REALITY Fallback domain is not compaitble with server names!": "دامنه بازگشتی REALITY با نام سرور سازگار نیست!",
|
155
155
|
"Release": "✅ پایدار",
|
@@ -66,8 +66,8 @@
|
|
66
66
|
"Download App": "<i class='fa-solid fa-download'></i> Baixar aplicativo",
|
67
67
|
"Edit": "Editar",
|
68
68
|
"Edit Proxy Names": "✏️ Modificando Proxies",
|
69
|
-
"Enable": "Habilitar",
|
70
|
-
"Error in auto cdn format": "Erro no formato CDN automático",
|
69
|
+
"Enable": "❇️ Habilitar",
|
70
|
+
"Error in auto cdn format": "⚠️ Erro no formato CDN automático",
|
71
71
|
"Error! auto cdn ip can not be find, please contact admin.": "Erro no Auto CDN IP! Não pode ser encontrado, entre em contato com o administrador",
|
72
72
|
"Example Domains": "Test and Suggest Domain ",
|
73
73
|
"Expired Users": "Usuários expirados",
|
@@ -80,7 +80,7 @@
|
|
80
80
|
"Hiddify": "Ocultar",
|
81
81
|
"Hiddify Android": "Ocultar Android",
|
82
82
|
"HiddifyClash": "HiddifyClash",
|
83
|
-
"HiddifyN intro": "Por favor, instale HiddifyN de %(dl_link)s.\nEntão clique no link abaixo. Fará tudo automaticamente
|
83
|
+
"HiddifyN intro": "Por favor, instale HiddifyN de %(dl_link)s.\nEntão clique no link abaixo. Fará tudo automaticamente.\n<br />",
|
84
84
|
"HiddifyNG": "HiddifyNG <span class='badge badge-success'>Recommended</span>",
|
85
85
|
"HiddifyNG intro": "Instale o HiddifyNG a partir de um destes links: %(dl_link)s %(play_link)s.\nEm seguida, clique no link abaixo e abra-o no HiddifyNG.",
|
86
86
|
"HiddigyN": "HiddigyN <span class='badge badge-success'>Recommended</span>",
|
@@ -126,9 +126,9 @@
|
|
126
126
|
"Oops! Something went wrong.": "Ops! algo deu errado.",
|
127
127
|
"Open in Application": "Abrir no aplicativo",
|
128
128
|
"Others": "🇺🇳 Outros",
|
129
|
-
"Override Root Admin": "
|
129
|
+
"Override Root Admin": "",
|
130
130
|
"Owner can not be deleted!": "O proprietário não pode ser excluído!",
|
131
|
-
"Package Days": "Dias do pacote",
|
131
|
+
"Package Days": "📆 Dias do pacote",
|
132
132
|
"Package ended!": "Package encerrado",
|
133
133
|
"Package not started yet.": "Pacote ainda não iniciado.",
|
134
134
|
"Panel Link": "➖ Link do Painel",
|
@@ -141,14 +141,14 @@
|
|
141
141
|
"Please select at least one file.": "Por favor, selecione pelo menos um arquivo.",
|
142
142
|
"Please select at least one record.": "Por favor, selecione pelo menos um registro.",
|
143
143
|
"Please select at least one user": "Selecione pelo menos um usuário",
|
144
|
-
"Please select one of the following applications:": "Selecione um dos seguintes aplicativos:\n<br />",
|
144
|
+
"Please select one of the following applications:": "📍 Selecione um dos seguintes aplicativos:\n<br />",
|
145
145
|
"Please type your message to send to the telegram:": "✏️ Por favor, escreva sua mensagem para enviar para o Telegram:",
|
146
146
|
"Please understand that parent panel is under test and the plan and the condition of use maybe change at anytime.": "Por favor, entenda que o painel principal está em teste e o plano e as condições de uso podem mudar a qualquer momento.",
|
147
147
|
"Please wait ": "Por favor, aguarde",
|
148
148
|
"Port is already used! in": "A porta já é usada em:",
|
149
149
|
"Premium Description": "O painel Hiddify é feito para uso não comercial. Mas se você usar este painel comercialmente, ajude o projeto a crescer com uma doação. <br/>\nEm troca de seu suporte financeiro, também fornecemos facilidades especiais para seu produto comercial.\n<br/>\n<br/>\nComo:\n<ul><li>\n<li>A possibilidade de sincronizar com o Cloudflare: ou seja, adicionando um domínio no painel, as configurações relevantes também podem ser feitas no Cloudflare</li>\n<li>Possibilidade de exibir sua marca no painel</li>\n<li>Possibilidade de Utilizar o Painel Central para Gerenciar Mais de 1 Servidor em Apenas um Painel, Assim Não É Mais Necessário Cadastrar Usuários em Servidores Diferentes, E Seu Volume Será Coletado em Todos os Servidores.\n</li>\n<li>\nA possibilidade de usar o bot do Telegram\n</li>\n<li>\nCapacidade de alterar nomes de proxy\n</li>\n</ul>\n\nEntre em contato com <a href='tg://resolve?domain=HiddifyCommercial'>@HiddifyCommercial</a> após a doação.\nEnvie uma mensagem para obter uma versão especial para usuários corporativos.",
|
150
150
|
"ProxyPath is already used! use different proxy path": "ProxyPath já está em uso! usar caminho de proxy diferente",
|
151
|
-
"QR code": "Código QR",
|
151
|
+
"QR code": "🧾 Código QR",
|
152
152
|
"QRCode": "<i class='fa-solid fa-qrcode'></i> QRCode",
|
153
153
|
"RAM": "BATER",
|
154
154
|
"REALITY Fallback domain is not compaitble with server names!": "REALITY Fallback Domain não é compatível com nomes de servidores!",
|
@@ -1038,7 +1038,7 @@
|
|
1038
1038
|
"empty": {
|
1039
1039
|
"allowed_for_fake_only": ""
|
1040
1040
|
},
|
1041
|
-
"intro": "",
|
1041
|
+
"intro": "1️⃣ Nesta seção, você pode adicionar seu domínio.\\n<br>\n2️⃣ Se você deseja diminuir a probabilidade de ter um IP sujo, pode adicionar Multiple Relay Server <a href='https://github.com/hiddify/hiddify-config/discussions/129'>Leia mais</a>.\\n<br>\n3️⃣ Se você tiver Múltiplos IPv4 ou IPv6 em seu Painel, deverá adicionar o domínio apontado para eles como Relay.\"",
|
1042
1042
|
"ip": "IP",
|
1043
1043
|
"mode": "Modo",
|
1044
1044
|
"reality": {
|
@@ -2,7 +2,7 @@
|
|
2
2
|
" Search\n Settings": " Поиск\nНастройки",
|
3
3
|
"%(count)s records were successfully disabled.": "%(count)s записей были успешно отключены.",
|
4
4
|
"%(count)s records were successfully enabled.": "%(count)s записей были успешно включены.",
|
5
|
-
"%(expire_days)s days": "%(expire_days)
|
5
|
+
"%(expire_days)s days": "%(expire_days)s дней",
|
6
6
|
"%(placeholder)s": "%(placeholder)s",
|
7
7
|
"0 - Last day": "Последний день",
|
8
8
|
"Access Denied!": "Доступ запрещен",
|
@@ -26,12 +26,12 @@
|
|
26
26
|
"Backup": "Резервное копирование",
|
27
27
|
"Beta": "☑️ Бета",
|
28
28
|
"Bridge Servers": "➖ Bridge серверы",
|
29
|
-
"Bug": "
|
29
|
+
"Bug": "Баги/Предложения",
|
30
30
|
"CPU %(cores)s Cores": "CPU %(cores)s Ядро",
|
31
31
|
"Can add sub admin": "👥 Может добавлять администраторов",
|
32
32
|
"Check again": "Проверить снова",
|
33
33
|
"Childs": "Дочерние",
|
34
|
-
"China": "
|
34
|
+
"China": "🇨🇳 Китай",
|
35
35
|
"Click here to see the complete log": "Нажмите здесь, чтобы просмотреть весь журнал",
|
36
36
|
"Click to Import": "Импортировать",
|
37
37
|
"Click to Start Anti-Filter.": "<i class='fa-solid fa-play'></i> Нажмите, чтобы настроить Анти-фильтр",
|
@@ -55,9 +55,9 @@
|
|
55
55
|
"Disk": "Жесткий диск",
|
56
56
|
"Domain": "Домен",
|
57
57
|
"Domain (%(domain)s)-> IP=%(domain_ip)s is not matched with your ip=%(server_ip)s which is required in direct mode": "Домен (%(domain)s)-> IP = %(domain_ip)s не совпадает с вашим IP = %(server_ip)s . это требуется в режиме Direct",
|
58
|
-
"Domain IP=%(domain_ip)s is not matched with your ip=%(server_ip)s which is required in direct mode": "IP Домена не совпадает с Вашим IP Сервера, который необходим для \"Прямого Режима\"",
|
58
|
+
"Domain IP=%(domain_ip)s is not matched with your ip=%(server_ip)s which is required in direct mode": "IP=%(domain_ip)s Домена не совпадает с Вашим IP Сервера, который необходим для \"Прямого Режима\"",
|
59
59
|
"Domain can not be resolved! there is a problem in your domain": "Не возможно определить IP адрес для домена! В вашем домене возникла проблема. Пожалуйста, проверьте настройки.",
|
60
|
-
"Domain is not REALITY friendly!": "Домен не подходит для использования с
|
60
|
+
"Domain is not REALITY friendly!": "Домен не подходит для использования с REALITY!",
|
61
61
|
"Domain?": "Домен?",
|
62
62
|
"Donation": {
|
63
63
|
"description": "✳️ Нам нужна ваша помощь в разработке нашего проекта!\n <br>\n Если вы разработчик или создатель контента, свяжитесь с нами по адресу <a href='mailto:info@hiddify.com'>info@hiddify.com</a>\n <br><br>\n \n ℹ️ Также нам нужна финансовая помощь для дальнейшего развития этой панели и нашего сервиса (мы некоммерческая организация).\n <br>\n <h5>Способы оплаты:</h5>\n <ul>\n <li> <div class='btn-group'>\n <a role='button' data-copy='EQCWnykA-YhavOXgH3sf-uxtXLjy83_9n5bJPGRPE8r2247_' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n <a data-copy='EQCWnykA-YhavOXgH3sf-uxtXLjy83_9n5bJPGRPE8r2247_' role='button' class='btn btn-info share-link'>TON</a> </div></li>\n \n <li> <div class='btn-group'>\n <a role='button' data-copy='TXZtFUxyBPMSykAWogu7C4zmbjySKqMcDE' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n <a data-copy='TXZtFUxyBPMSykAWogu7C4zmbjySKqMcDE' role='button' class='btn btn-info share-link'>USDT (TRC20)</a> </div></li>\n \n <li> <div class='btn-group'>\n <a role='button' data-copy='MCHoh7xwaDBBnQgANPpBtXiekagV6KpdrM' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n <a data-copy='MCHoh7xwaDBBnQgANPpBtXiekagV6KpdrM' role='button' class='btn btn-info share-link'>Litecoin</a> </div></li>\n \n <li> <div class='btn-group'>\n <a role='button' data-copy='0xF5CFc65ee336B377C2a37EA3BCD0CaD0d0F0CbA0' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n <a data-copy='0xF5CFc65ee336B377C2a37EA3BCD0CaD0d0F0CbA0' role='button' class='btn btn-info share-link'>Ethereum</a> </div></li>\n \n <li> <div class='btn-group'>\n <a role='button' data-copy='bc1qkfp7n3wxu2zc9mdy20cf27d5pujj65myww8f60' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n <a data-copy='bc1qkfp7n3wxu2zc9mdy20cf27d5pujj65myww8f60' role='button' class='btn btn-info share-link'>Bitcoin</a> </div></li>\n \n <li> <div class='btn-group'>\n <a role='button' data-copy='DPerFS2vCu5XnE3He32BaPVTkUDcKLsEaj' class='btn btn-secondary copy-link'><i class='fa-regular fa-copy'></i></a> \n <a data-copy='DPerFS2vCu5XnE3He32BaPVTkUDcKLsEaj' role='button' class='btn btn-info share-link'>Dogecoin</a> </div></li>\n </ul>\n \n <br>\n \n Другая помощь:\n <ul>\n <li>👥 Поделиться Hiddify Manager с друзьями</li>\n <li>📝Python Developer</li>\n <li>📝Swift Developer</li>\n <li>📝Flutter Developer</li>\n <li>📝Go Developer</li>\n <li>🖥Content Providers</li>\n </ul>\n Свяжитесь с нами <a href='mailto:info@hiddify.com'>info@hiddify.com</a>.",
|
@@ -91,7 +91,7 @@
|
|
91
91
|
"If the application do not open automatically, please click <a class='btn btn-primary copy-link'\n href='%(sub)s'>this universal link</a> to copy and paste it on\n your application, or:": "Если приложение не открывается автоматически, нажмите <a class='btn btn-primary copy-link'\n href='%(sub)s'>универсальную ссылку</a>, чтобы скопировать и вставить ее в ваше приложение:",
|
92
92
|
"Import": "Импортировать в приложение",
|
93
93
|
"Import in": "Импортировать",
|
94
|
-
"In 5 minutes": "
|
94
|
+
"In 5 minutes": "Через 5 минут",
|
95
95
|
"In CDN mode, Domain IP=%(domain_ip)s should be different to your ip=%(server_ip)s": "В CDN Режиме, IP адрес Домена должен отличаться от IP адреса Вашего Сервера",
|
96
96
|
"Incorrect Password": "⚠️ Неверный пароль.",
|
97
97
|
"Install": "Установить",
|
@@ -99,7 +99,7 @@
|
|
99
99
|
"Invalid IP or domain": "Неверный IP или Домен",
|
100
100
|
"Invalid REALITY hostnames": "Неверные имена хостов REALITY",
|
101
101
|
"Invalid admin link": "Неверная ссылка администратора",
|
102
|
-
"Iran": "
|
102
|
+
"Iran": "🇮🇷 Иран",
|
103
103
|
"It seems that you are using default domain (%(domain)s) which is not recommended.": "Похоже, вы используете домен по умолчанию (%(domain)s), что не рекомендуется. Пожалуйста, измените или удалите его из раздела доменов.",
|
104
104
|
"It will override the root admin to the current user": "Переопределение прав администратора на текущего пользователя",
|
105
105
|
"Join our Hiddify Telegram channel to get the latest updates on Hiddify.": "Присоединяйтесь к нашему каналу Hiddify в Telegram, чтобы получать последние обновления Hiddify.",
|
@@ -125,8 +125,8 @@
|
|
125
125
|
"Only for sublink?": "🌍 Используйте только для ссылки на подпискy",
|
126
126
|
"Oops! Something went wrong.": "Упс! что-то пошло не так",
|
127
127
|
"Open in Application": "Открыть в приложении",
|
128
|
-
"Others": "
|
129
|
-
"Override Root Admin": "Переопределение администратора",
|
128
|
+
"Others": "🇺🇳 Другие",
|
129
|
+
"Override Root Admin": "🔁 Переопределение администратора",
|
130
130
|
"Owner can not be deleted!": "Владелец не может быть удалён!",
|
131
131
|
"Package Days": "📆 Дни пакета",
|
132
132
|
"Package ended!": "Пакет закончился",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
hiddifypanel/Events.py,sha256=AlnRdjVul0jP-NCT4-zoaQgowoOo-JhdQB4ytetAFKA,723
|
2
|
-
hiddifypanel/VERSION,sha256=
|
3
|
-
hiddifypanel/VERSION.py,sha256=
|
2
|
+
hiddifypanel/VERSION,sha256=v8XkNb_Mwq6Do4l6OvluvU1KwAX65XDJuyJA_0t_HRA,8
|
3
|
+
hiddifypanel/VERSION.py,sha256=kfQETU5WRn8MevK-k66CNFd9yIXET6p2Gy85G-9gDjc,113
|
4
4
|
hiddifypanel/__init__.py,sha256=aLukp3ORszdcH4G9J-MlxhjHN6yFlOuOE6mm-L3aG_g,266
|
5
5
|
hiddifypanel/__main__.py,sha256=IVchnXpK6bm8T3N--mN17HBQNLMeLAjyP7iwzULexB4,218
|
6
6
|
hiddifypanel/auth.py,sha256=Xq0UwiFTRFmQpxnOehQGwPDlJqoelwGhPQbYZ0Xn5c0,7850
|
@@ -63,9 +63,9 @@ hiddifypanel/panel/cli.py,sha256=GNK-lqoedepG6hfpLHTPLxBaMsdjbQHZAw-qKjdRxnQ,859
|
|
63
63
|
hiddifypanel/panel/common.py,sha256=ia_l9ShvK9SZAuiIGmKQLjHg0bZf-m_LkQoAIp7WNqE,7724
|
64
64
|
hiddifypanel/panel/custom_widgets.py,sha256=_zA0WZRZOCyh6Z1gW62aRQLMAOM_m85B2oZoIOU59Ys,2637
|
65
65
|
hiddifypanel/panel/hiddify.py,sha256=-GBmkEXnGsIhZtjRomYJsqmnEToZwSXzd8ltS6Slgrc,15615
|
66
|
-
hiddifypanel/panel/init_db.py,sha256=
|
66
|
+
hiddifypanel/panel/init_db.py,sha256=g7TLQf6ud4oVlwSv7IL6ayjEMUrWG3KgKclX9KZ6NGE,35278
|
67
67
|
hiddifypanel/panel/run_commander.py,sha256=D9y-My0xSe2adHWXKV5UPYGl-9WwKURzniq55MRu6tE,3259
|
68
|
-
hiddifypanel/panel/usage.py,sha256=
|
68
|
+
hiddifypanel/panel/usage.py,sha256=Nx69zUXhi2OveWIa_oRJXmuafgfI0u3E_A1ODcJDKuY,7168
|
69
69
|
hiddifypanel/panel/admin/Actions.py,sha256=o_ENbphriVrbRJkx9nvrkpaliuMIfp34sscMkZJ3P5s,8578
|
70
70
|
hiddifypanel/panel/admin/AdminstratorAdmin.py,sha256=eUUe5b8bGPj2nZstKkwK3lhqBhMixyAbzEMvZAp0I2k,10231
|
71
71
|
hiddifypanel/panel/admin/Backup.py,sha256=BKSoAZgw1j16P1Jh9vMqGj7ZfB2m-WafDK0C5vil5FY,3634
|
@@ -231,7 +231,7 @@ hiddifypanel/static/css/bootstrap.min.css,sha256=djO3wMl9GeaC_u6K-ic4Uj_LKhRUSlU
|
|
231
231
|
hiddifypanel/static/css/bootstrap4-rtl.min.css,sha256=2ZN6KcWrEZE_efXKufJsIrj2hSZ4PFw7QWnIV0egdxE,8358
|
232
232
|
hiddifypanel/static/css/bootstrap5.rtl.min.css,sha256=6oH_E3oAx6zH-g1hfIn7dq7y7GoCM149BGt2nNYi02s,163995
|
233
233
|
hiddifypanel/static/css/custom-rtl.css,sha256=xihXyOLBPdnr_G5ne14gGxBYprYF7CY4BEllNOSz4fQ,480
|
234
|
-
hiddifypanel/static/css/custom.css,sha256=
|
234
|
+
hiddifypanel/static/css/custom.css,sha256=9tYTRtFnVxgS0w3BFwJGYeUePKeeByWpPF7GPBKI4Lo,10721
|
235
235
|
hiddifypanel/static/css/font-awesome.css,sha256=8RivRM1xoA4MVZ3DyyCpqGLfW3lSoHBItx-EaMM4P6Y,101895
|
236
236
|
hiddifypanel/static/css/lte.old,sha256=EOZyrKYSocDo_gk1VtgeX_OvUL3kN7QVTJJg7D2R6Z0,278568
|
237
237
|
hiddifypanel/static/fonts/Vazir-Black.eot,sha256=J_UB2BiLqRZy7BmJqQEDPWkwwsmrOjIBd3-U6vJ7nGU,92934
|
@@ -291,7 +291,7 @@ hiddifypanel/static/js/moment.min.js,sha256=1hjUhpc44NwiNg8OwMu2QzJXhD8kcj-sJA3a
|
|
291
291
|
hiddifypanel/static/js/popper.min.js,sha256=ByIUysJkIUj_gmaxjIL9xkQokyNp2oTewFYs8ByljTI,19032
|
292
292
|
hiddifypanel/static/js/pwa-sw.js,sha256=po3XnA1TrRgPKCSzymWevwrPF-sV6m4-AJAl38fjWdU,552
|
293
293
|
hiddifypanel/static/js/pwa.js,sha256=VsUsexn301zSFq6qvikIsThpORi53pHtBfCdUhMo8DI,950
|
294
|
-
hiddifypanel/static/js/qrcode.js,sha256=
|
294
|
+
hiddifypanel/static/js/qrcode.js,sha256=IJse3mxP_O2dZinXQ-6k2NP6y764N_oozVV4o-ULdVc,33356
|
295
295
|
hiddifypanel/static/new/get_new.sh,sha256=vNVm8j6-GSV9PWlfkgLaIsaTVV16z55z4Dva_o2e33M,792
|
296
296
|
hiddifypanel/static/new/assets/applestore-ed24a1a4.png,sha256=7SShpLVOc5Hc11fp3apcRNVAWeT-Dc-TnwgBTyfTqH0,10755
|
297
297
|
hiddifypanel/static/new/assets/hiddify-logo-7617d937.png,sha256=dhfZN1pTIJwTFLSwHtvFginpX-XX2FYZhAktPOV6jwo,13617
|
@@ -822,24 +822,24 @@ hiddifypanel/templates/redirect.html,sha256=K9x_O4P96vEkqBhOXIhoGrWw1KIqd2bL0BjI
|
|
822
822
|
hiddifypanel/templates/static.html,sha256=jp6q4wtx-k2A_cjqJoNiMS7Ee30arE45qI3ev4d5ky4,165
|
823
823
|
hiddifypanel/templates/hiddify-flask-admin/actions.html,sha256=2NeITe2e-lPKCk_o511tCIqVtrPu8LYHE1wTCtrFUrI,1331
|
824
824
|
hiddifypanel/templates/hiddify-flask-admin/list.html,sha256=MBGrTqZpzNLe4sZy0RozvXNr8seFUQc2C6v88BJtNWc,11095
|
825
|
-
hiddifypanel/translations/en/LC_MESSAGES/messages.mo,sha256=
|
825
|
+
hiddifypanel/translations/en/LC_MESSAGES/messages.mo,sha256=ao8NByiNkCHJVQLFoanzh39yEKpJIGh34nAA2MhGwfc,76356
|
826
826
|
hiddifypanel/translations/en/LC_MESSAGES/messages.po,sha256=pJ-MDNzSCxXHb_XGivj6r0J-59qtkrk0z0XmQ7-qPUg,79566
|
827
|
-
hiddifypanel/translations/fa/LC_MESSAGES/messages.mo,sha256=
|
828
|
-
hiddifypanel/translations/fa/LC_MESSAGES/messages.po,sha256=
|
829
|
-
hiddifypanel/translations/pt/LC_MESSAGES/messages.mo,sha256=
|
830
|
-
hiddifypanel/translations/pt/LC_MESSAGES/messages.po,sha256=
|
831
|
-
hiddifypanel/translations/ru/LC_MESSAGES/messages.mo,sha256=
|
832
|
-
hiddifypanel/translations/ru/LC_MESSAGES/messages.po,sha256=
|
833
|
-
hiddifypanel/translations/zh/LC_MESSAGES/messages.mo,sha256=
|
827
|
+
hiddifypanel/translations/fa/LC_MESSAGES/messages.mo,sha256=gTmlgDk7paCX-LYOd04YSQLte70v3ZjdEojFXRPufCc,97035
|
828
|
+
hiddifypanel/translations/fa/LC_MESSAGES/messages.po,sha256=RPptWjQeLaJygMyPk9RTO2j4rQ8wtqGJvQBgVx9AR-I,102297
|
829
|
+
hiddifypanel/translations/pt/LC_MESSAGES/messages.mo,sha256=Spqr6C0L28Y7P-d6frmmy-HisPP16xOIYGprP2eBRbo,65090
|
830
|
+
hiddifypanel/translations/pt/LC_MESSAGES/messages.po,sha256=gd1LySEoF0MXNpcqXMIqAZB2_ONnkXOF8k9Ler3DtYM,74696
|
831
|
+
hiddifypanel/translations/ru/LC_MESSAGES/messages.mo,sha256=kKaer4jFV_ebMF1d7Dx8RFGuexX1ikb7N73-6KiANZw,99247
|
832
|
+
hiddifypanel/translations/ru/LC_MESSAGES/messages.po,sha256=KPKkBtTZxUIYocTFKD6Hctm0kZQSLi0__-5LDZDXSXE,105937
|
833
|
+
hiddifypanel/translations/zh/LC_MESSAGES/messages.mo,sha256=TeeuAlR6iNIa8mmoPdcnUd1W207gNp6PCyduDEknfPQ,60671
|
834
834
|
hiddifypanel/translations/zh/LC_MESSAGES/messages.po,sha256=27BuFe4aIQCJBWYjB9ZU4D4xcB8HAFlL0-3-n35bbr8,69685
|
835
835
|
hiddifypanel/translations.i18n/en.json,sha256=a6SVTiRlVlix0ozhcUUwhbD2H7zUsJVVrPNZUh5AAp8,69115
|
836
|
-
hiddifypanel/translations.i18n/fa.json,sha256=
|
837
|
-
hiddifypanel/translations.i18n/pt.json,sha256=
|
838
|
-
hiddifypanel/translations.i18n/ru.json,sha256=
|
836
|
+
hiddifypanel/translations.i18n/fa.json,sha256=vqojahU_IisHJR_BQQF9oa8UlWiJ3zZrGBhBBi_NQkI,91843
|
837
|
+
hiddifypanel/translations.i18n/pt.json,sha256=PiC_dtwucBxhbnBca9_aHWeUWaLqyljHWoz_xp1Puyc,64530
|
838
|
+
hiddifypanel/translations.i18n/ru.json,sha256=dJmKwS5o_d-2VeVxOaG2ktUfLcApFxNtjMt8AagpnnE,95450
|
839
839
|
hiddifypanel/translations.i18n/zh.json,sha256=-NQMBESO3oxaYUEw8Bl1G0sd4TQUNBgynoj8eGhQ5jE,59861
|
840
|
-
hiddifypanel-10.70.
|
841
|
-
hiddifypanel-10.70.
|
842
|
-
hiddifypanel-10.70.
|
843
|
-
hiddifypanel-10.70.
|
844
|
-
hiddifypanel-10.70.
|
845
|
-
hiddifypanel-10.70.
|
840
|
+
hiddifypanel-10.70.3.dist-info/LICENSE.md,sha256=oDrt-cUsyiDGnRPjEJh-3dH2ddAuK_bIVBD8ntkOtZw,19807
|
841
|
+
hiddifypanel-10.70.3.dist-info/METADATA,sha256=RMwBFItf41r7DUnA8T9ASoomp6i1QERU6AnMvCxGOz8,4039
|
842
|
+
hiddifypanel-10.70.3.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
843
|
+
hiddifypanel-10.70.3.dist-info/entry_points.txt,sha256=Xzpqlh3nwBtZhoV9AANJykano056VJvYzaujxPztJaM,60
|
844
|
+
hiddifypanel-10.70.3.dist-info/top_level.txt,sha256=rv-b3qFWUZQTBy0kyBfsr7L6tPpeO7AaQlLHXn-HI5M,13
|
845
|
+
hiddifypanel-10.70.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|