hiddifypanel 10.86.3__py3-none-any.whl → 11.0.0__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/hutils/proxy/xray.py +2 -2
- hiddifypanel/panel/admin/SettingAdmin.py +15 -13
- hiddifypanel/panel/init_db.py +0 -4
- hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/en/LC_MESSAGES/messages.po +3 -0
- hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/fa/LC_MESSAGES/messages.po +3 -0
- hiddifypanel/translations/my/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/pt/LC_MESSAGES/messages.po +3 -0
- hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/ru/LC_MESSAGES/messages.po +3 -0
- hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/zh/LC_MESSAGES/messages.po +3 -0
- hiddifypanel/translations.i18n/en.json +1 -0
- hiddifypanel/translations.i18n/fa.json +1 -0
- hiddifypanel/translations.i18n/pt.json +1 -0
- hiddifypanel/translations.i18n/ru.json +1 -0
- hiddifypanel/translations.i18n/zh.json +1 -0
- {hiddifypanel-10.86.3.dist-info → hiddifypanel-11.0.0.dist-info}/METADATA +1 -1
- {hiddifypanel-10.86.3.dist-info → hiddifypanel-11.0.0.dist-info}/RECORD +27 -27
- {hiddifypanel-10.86.3.dist-info → hiddifypanel-11.0.0.dist-info}/WHEEL +0 -0
- {hiddifypanel-10.86.3.dist-info → hiddifypanel-11.0.0.dist-info}/entry_points.txt +0 -0
- {hiddifypanel-10.86.3.dist-info → hiddifypanel-11.0.0.dist-info}/licenses/LICENSE.md +0 -0
- {hiddifypanel-10.86.3.dist-info → hiddifypanel-11.0.0.dist-info}/top_level.txt +0 -0
hiddifypanel/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
11.0.0
|
hiddifypanel/VERSION.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# import importlib.metadata
|
2
2
|
from datetime import datetime
|
3
3
|
|
4
|
-
__version__ = '
|
5
|
-
__release_time__= datetime.strptime('2025-07-
|
4
|
+
__version__ = '11.0.0'
|
5
|
+
__release_time__= datetime.strptime('2025-07-10T20:14:23','%Y-%m-%dT%H:%M:%S')
|
6
6
|
is_released_version=True
|
@@ -67,11 +67,11 @@ def to_link(proxy: dict) -> str | dict:
|
|
67
67
|
# else:
|
68
68
|
hk = ",".join(proxy["host_keys"])
|
69
69
|
pk = proxy["private_key"].replace('\n', '')
|
70
|
-
|
70
|
+
q={
|
71
71
|
'file':'ssh',
|
72
|
+
'hk':hk,
|
72
73
|
'pk':pk,
|
73
74
|
'private_key':pk,
|
74
|
-
'hk':hk,
|
75
75
|
'authentication':0,
|
76
76
|
'passphrase':'',
|
77
77
|
}
|
@@ -1,3 +1,9 @@
|
|
1
|
+
from hiddifypanel.cache import cache
|
2
|
+
from hiddifypanel import __version__
|
3
|
+
from hiddifypanel.panel import hiddify, custom_widgets
|
4
|
+
from hiddifypanel.database import db
|
5
|
+
from hiddifypanel.models import *
|
6
|
+
from hiddifypanel.models import BoolConfig, StrConfig, ConfigEnum, hconfig, ConfigCategory
|
1
7
|
import re
|
2
8
|
import flask_babel
|
3
9
|
import flask_babel
|
@@ -20,14 +26,6 @@ from bleach import clean as bleach_clean, ALLOWED_TAGS as BLEACH_ALLOWED_TAGS
|
|
20
26
|
ALLOWED_TAGS = set([*BLEACH_ALLOWED_TAGS, "h1", "h2", "h3", "h4", "p"])
|
21
27
|
|
22
28
|
|
23
|
-
from hiddifypanel.models import BoolConfig, StrConfig, ConfigEnum, hconfig, ConfigCategory
|
24
|
-
from hiddifypanel.models import *
|
25
|
-
from hiddifypanel.database import db
|
26
|
-
from hiddifypanel.panel import hiddify, custom_widgets
|
27
|
-
from hiddifypanel import __version__
|
28
|
-
from hiddifypanel.cache import cache
|
29
|
-
|
30
|
-
|
31
29
|
class SettingAdmin(FlaskView):
|
32
30
|
|
33
31
|
@login_required(roles={Role.super_admin})
|
@@ -63,10 +61,15 @@ class SettingAdmin(FlaskView):
|
|
63
61
|
return render_template('config.html', form=form)
|
64
62
|
if "port" in k:
|
65
63
|
for p in v.split(","):
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
64
|
+
if (k != ConfigEnum.tls_ports and p == "443") or (k != ConfigEnum.http_ports and p == "80"):
|
65
|
+
hutils.flask.flash(_("Port 80 and 443 can not be selected"), 'error')
|
66
|
+
return render_template('config.html', form=form)
|
67
|
+
for c_, c_items2 in form.data.items():
|
68
|
+
if not isinstance(c_items2, dict):continue
|
69
|
+
for k2, v2 in c_items2.items():
|
70
|
+
if "port" in k2 and k.name != k2 and p in v2.strip().split(","):
|
71
|
+
hutils.flask.flash(_("Port is already used! in") + f" {k2} {k}", 'error')
|
72
|
+
return render_template('config.html', form=form)
|
70
73
|
if k == ConfigEnum.parent_panel and v != '':
|
71
74
|
# v=(v+"/").replace("/admin",'')
|
72
75
|
v = re.sub("(/admin/.*)", "/", v) + ("/" if not v.endswith("/") else "")
|
@@ -140,7 +143,6 @@ class SettingAdmin(FlaskView):
|
|
140
143
|
for field, errors in form.errors.items():
|
141
144
|
for error in errors:
|
142
145
|
hutils.flask.flash(error, 'danger') # type: ignore
|
143
|
-
|
144
146
|
|
145
147
|
return reset_action or render_template('config.html', form=form)
|
146
148
|
|
hiddifypanel/panel/init_db.py
CHANGED
@@ -19,10 +19,6 @@ MAX_DB_VERSION = 120
|
|
19
19
|
def _v106(child_id):
|
20
20
|
set_hconfig(ConfigEnum.use_ip_in_config,True)
|
21
21
|
|
22
|
-
def _v105(child_id):
|
23
|
-
StrConfig.query.filter(StrConfig.key==ConfigEnum.reality_port).delete()
|
24
|
-
def _v104(child_id):
|
25
|
-
|
26
22
|
if rport:=hconfig(ConfigEnum.reality_port):
|
27
23
|
set_hconfig(ConfigEnum.special_port,rport)
|
28
24
|
StrConfig.query.filter(StrConfig.key==ConfigEnum.reality_port).delete()
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -152,6 +152,7 @@
|
|
152
152
|
"Please type your message to send to the telegram:": "✏️ Please write your message to send to the Telegram:",
|
153
153
|
"Please understand that parent panel is under test and the plan and the condition of use maybe change at anytime.": "Please understand that parent Panel is under test and the plan and the condition of use maybe change at anytime.",
|
154
154
|
"Please wait ": "Please Wait ",
|
155
|
+
"Port 80 and 443 can not be selected": "Port 80 and 443 can not be selected",
|
155
156
|
"Port is already used! in": "Port is Already Used in:",
|
156
157
|
"Premium Description": "Hiddify Manager Is Made For Non-Commercial Use. But If You Use This Panel Commercially, Please Help The Project Grow By Donating. <br/>\nIn Exchange For Your Financial Support, We Also Provide Special Facilities For Your Commercial Product.\n<br/>\n<br/>\nSuch as:\n<ul><li>\n<li>The Possibility Of Syncing To Cloudflare: That Is, By Adding a Domain In The Panel, The Relevant Settings Can Also Be Made In Cloudflare</li>\n<li>Possibility Of Displaying Your Brand In The Panel</li>\n<li>Possibility Of Using The Central Panel To Manage More Than 1 Server In Just One Panel, So It Is No Longer Necessary To Register Users In Different Servers, And Their Volume Will Be Collected In All Servers.\n</li>\n<li>\nThe Possibility Of Using The Telegram Bot\n</li>\n<li>\nAbility To Change Proxy Names\n</li>\n</ul>\n\nPlease Contact <a href='tg://resolve?domain=HiddifyCommercial'>@HiddifyCommercial</a> After Donating.\nSend a Message To Get a Special Version for business users.",
|
157
158
|
"ProxyPath is already used! use different proxy path": "ProxyPath is already used! use different proxy path",
|
@@ -151,6 +151,7 @@
|
|
151
151
|
"Please type your message to send to the telegram:": "✏️ لطفا پیامی را که میخواهید با ربات تلگرام ارسال کنید بنویسید:",
|
152
152
|
"Please understand that parent panel is under test and the plan and the condition of use maybe change at anytime.": "لطفاً توجه داشته باشید که پنل مادر در حال آزمایش است و طرح و شرایط استفاده ممکن است در هر زمان تغییر کند.",
|
153
153
|
"Please wait ": "لطفا صبر کنید",
|
154
|
+
"Port 80 and 443 can not be selected": "",
|
154
155
|
"Port is already used! in": "پورت قبلا استفاده شده است در",
|
155
156
|
"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پیام دهید تا نسخه ویژه ی کاربران تجاری به شما ارائه شود.",
|
156
157
|
"ProxyPath is already used! use different proxy path": "ProxyPath قبلاً استفاده شده است! از مسیرهای مختلف پروکسی استفاده کنید",
|
@@ -151,6 +151,7 @@
|
|
151
151
|
"Please type your message to send to the telegram:": "✏️ Por favor, escreva sua mensagem para enviar para o Telegram:",
|
152
152
|
"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.",
|
153
153
|
"Please wait ": "Por favor, aguarde",
|
154
|
+
"Port 80 and 443 can not be selected": "",
|
154
155
|
"Port is already used! in": "A porta já é usada em:",
|
155
156
|
"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.",
|
156
157
|
"ProxyPath is already used! use different proxy path": "ProxyPath já está em uso! usar caminho de proxy diferente",
|
@@ -151,6 +151,7 @@
|
|
151
151
|
"Please type your message to send to the telegram:": "✏️ Пожалуйста, напишите свое сообщение для отправки в Telegram:",
|
152
152
|
"Please understand that parent panel is under test and the plan and the condition of use maybe change at anytime.": "Обратите внимание, что родительская панель находится на стадии тестирования, поэтому план и условия использования могут измениться в любое время",
|
153
153
|
"Please wait ": "Пожалуйста, подождите",
|
154
|
+
"Port 80 and 443 can not be selected": "",
|
154
155
|
"Port is already used! in": "Порт уже используется в:",
|
155
156
|
"Premium Description": "Панель Hiddify предназначена для некоммерческого использования. Но если вы используете эту панель в коммерческих целях, пожалуйста, помогите проекту развиваться, сделав пожертвование. <br/>\nВ обмен на вашу финансовую поддержку мы также предоставляем специальные возможности для вашего коммерческого продукта.\n<br/>\n<br/>\nТакой как:\n<ul><li>\n<li>Возможность синхронизации с Cloudflare: то есть, добавив домен в панели, соответствующие настройки также можно сделать в Cloudflare.</li>\n<li>Возможность отображения вашего бренда на панели</li>\n<li>Возможность использования центральной панели для управления более чем 1 сервером всего в одной панели, поэтому больше не нужно регистрировать пользователей на разных серверах, а их объем будет собираться на всех серверах.\n</li>\n<ли>\nВозможность использования Telegram-бота\n</li>\n<ли>\nВозможность изменения имен прокси\n</li>\n</ul>\n\nПожалуйста, свяжитесь с <a href='tg://resolve?domain=HiddifyCommercial'>@HiddifyCommercial</a> после пожертвования.\nОтправьте сообщение, чтобы получить специальную версию для бизнес-пользователей.",
|
156
157
|
"ProxyPath is already used! use different proxy path": "ProxyPath уже используется! используйте другой путь прокси",
|
@@ -151,6 +151,7 @@
|
|
151
151
|
"Please type your message to send to the telegram:": "✏️ 请写下您要发送到 Telegram 的消息:",
|
152
152
|
"Please understand that parent panel is under test and the plan and the condition of use maybe change at anytime.": "请理解,家长面板正在测试中,计划和使用条件可能随时发生变化。",
|
153
153
|
"Please wait ": "请稍等",
|
154
|
+
"Port 80 and 443 can not be selected": "",
|
154
155
|
"Port is already used! in": "端口已用于:",
|
155
156
|
"Premium Description": "Hiddify Manager 仅供非商业用途。但如果您将此面板用于商业用途,请通过捐赠来帮助该项目发展。 <br/>\n为了换取您的财务支持,我们还为您的商业产品提供特殊设施。\n<br/>\n<br/>\n例如:\n<ul><li>\n<li>同步到Cloudflare的可能性:即通过在面板中添加域名,也可以在Cloudflare中进行相关设置</li>\n<li>可以在面板中显示您的品牌</li>\n<li>可以使用中央面板在一个面板中管理多于一台服务器,因此不再需要在不同服务器中注册用户,并且用户的数量将在所有服务器中收集。\n</li>\n<li>\n使用 Telegram 机器人的可能性\n</li>\n<li>\n能够更改代理名称\n</li>\n</ul>\n\n捐赠后请联系<a href='tg://resolve?domain=HiddifyCommercial'>@HiddifyCommercial</a>。\n发送消息获取商业用户专用版本。",
|
156
157
|
"ProxyPath is already used! use different proxy path": "ProxyPath 已被使用!使用不同的代理路径",
|
@@ -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=e9a8vjgT4M1V4JmAU9GCt7yMl9z9C4UCjp9_Va9K1hs,7
|
3
|
+
hiddifypanel/VERSION.py,sha256=xImsaww13QHm35wZBS7Ky69lbQjwiWwB6tW1H_v80rY,186
|
4
4
|
hiddifypanel/__init__.py,sha256=kigwDO8d9jXyPZLvJAWd6zo-GX3pG_xWf-q2aStz80Y,377
|
5
5
|
hiddifypanel/__main__.py,sha256=IVchnXpK6bm8T3N--mN17HBQNLMeLAjyP7iwzULexB4,218
|
6
6
|
hiddifypanel/auth.py,sha256=LJmH4ROqZv5ej_4m1b0xvbEw2meJTzDR1mFCDm523kE,8041
|
@@ -47,7 +47,7 @@ hiddifypanel/hutils/proxy/clash.py,sha256=JiT3wj48b9ezCGxZoEp5FrhvwfmNKslcF5GMoH
|
|
47
47
|
hiddifypanel/hutils/proxy/shared.py,sha256=Cb_LfcO34XWIoREPXdQoaJUR0JpXfSTle7npe7amW-g,24253
|
48
48
|
hiddifypanel/hutils/proxy/singbox.py,sha256=Fmmzoake-gpnRB5yfTyQvd1dB-10WKwhJt4vhiKzJZQ,11722
|
49
49
|
hiddifypanel/hutils/proxy/wireguard.py,sha256=gij01BYXII-RxAh3Yky0o3yce20HJKeHtu1KNwb0Uzk,934
|
50
|
-
hiddifypanel/hutils/proxy/xray.py,sha256=
|
50
|
+
hiddifypanel/hutils/proxy/xray.py,sha256=7v7UTDjTN6OVZrrWSa2RiY6734MxuyGKu0ExJOK6dBs,11672
|
51
51
|
hiddifypanel/hutils/proxy/xrayjson.py,sha256=wcZs4laKO-aASWsHd36vozHXaGRcTiQZQVN9BvzBIBs,16612
|
52
52
|
hiddifypanel/models/__init__.py,sha256=PngFjQL9WvQP4EioNHRz1tTeyIgLoNvZ7WpmAhwKHnU,677
|
53
53
|
hiddifypanel/models/admin.py,sha256=bbvpbquyPTmRjqwVT4zVC3bIF39zZYv8snlOR5XIF90,7517
|
@@ -72,7 +72,7 @@ hiddifypanel/panel/common.py,sha256=pMxdgt37ubIZroFBuvHfN5qXNp8kytVTIzVxzZA_X_I,
|
|
72
72
|
hiddifypanel/panel/custom_widgets.py,sha256=ojnLz-kAa1juZVW1JoCy8FAjvWNORKNpFIb8OnY0lLw,3767
|
73
73
|
hiddifypanel/panel/hiddify.py,sha256=nwLTMYa_LyNuS26BPOO8jfyrslHX2MbQxN0o4lxCTd4,15687
|
74
74
|
hiddifypanel/panel/hlogger.py,sha256=1AQQCs1lg0Y1AYIASRjxWAdFE92HENeg3z1rFycOoY0,1215
|
75
|
-
hiddifypanel/panel/init_db.py,sha256=
|
75
|
+
hiddifypanel/panel/init_db.py,sha256=BIS2Rv_zGmb-AMeM76ajOH-6PtzgLAliNAq2ttPub3A,39306
|
76
76
|
hiddifypanel/panel/run_commander.py,sha256=cXCFVvZ6iTzab3EOZ-Eq3aOeIqfgzgt2ppNaxm_3OJI,3205
|
77
77
|
hiddifypanel/panel/usage.py,sha256=kQAz9nfHt3Mcfa8kLHdrpD408DZEFDT7T1xFV6MlDQE,11991
|
78
78
|
hiddifypanel/panel/admin/Actions.py,sha256=o_ENbphriVrbRJkx9nvrkpaliuMIfp34sscMkZJ3P5s,8578
|
@@ -84,7 +84,7 @@ hiddifypanel/panel/admin/DomainAdmin.py,sha256=NJFmgbBMWmS8dGIhjK9BZG9nPH0jOhb54
|
|
84
84
|
hiddifypanel/panel/admin/NodeAdmin.py,sha256=QAHQjF7e7F4KqsWNWpMt7SoLANlFEborVtWQV9OXJ2E,3102
|
85
85
|
hiddifypanel/panel/admin/ProxyAdmin.py,sha256=HtuYHkZ8LCrYtjF2xO2i7lyw_KtOTBYCPu0bNWR4fOs,5364
|
86
86
|
hiddifypanel/panel/admin/QuickSetup.py,sha256=7ysSAlS7yJerstTDWhuhEwGyoTqpkry2-SfEbuP1VuY,12689
|
87
|
-
hiddifypanel/panel/admin/SettingAdmin.py,sha256=
|
87
|
+
hiddifypanel/panel/admin/SettingAdmin.py,sha256=PLu9SEffkMu_GfgRJ5VGjIdaU_8AvkGs5KlskqjRxxI,20434
|
88
88
|
hiddifypanel/panel/admin/Terminal.py,sha256=rzZWRjMhjVnAvC65rfE3HJT3boUDznI6fl-htzKp7sI,1712
|
89
89
|
hiddifypanel/panel/admin/UserAdmin.py,sha256=i1-B0iBtFA-D18V920hFlYJIzPdiuYUKtLP860D0sbY,18601
|
90
90
|
hiddifypanel/panel/admin/__init__.py,sha256=hb0A2HuK_nBZRCNPumwahXX-25FMxODKYlNbk2ItF08,3015
|
@@ -842,28 +842,28 @@ hiddifypanel/templates/redirect.html,sha256=K9x_O4P96vEkqBhOXIhoGrWw1KIqd2bL0BjI
|
|
842
842
|
hiddifypanel/templates/static.html,sha256=jp6q4wtx-k2A_cjqJoNiMS7Ee30arE45qI3ev4d5ky4,165
|
843
843
|
hiddifypanel/templates/hiddify-flask-admin/actions.html,sha256=2NeITe2e-lPKCk_o511tCIqVtrPu8LYHE1wTCtrFUrI,1331
|
844
844
|
hiddifypanel/templates/hiddify-flask-admin/list.html,sha256=MBGrTqZpzNLe4sZy0RozvXNr8seFUQc2C6v88BJtNWc,11095
|
845
|
-
hiddifypanel/translations/en/LC_MESSAGES/messages.mo,sha256=
|
846
|
-
hiddifypanel/translations/en/LC_MESSAGES/messages.po,sha256=
|
847
|
-
hiddifypanel/translations/fa/LC_MESSAGES/messages.mo,sha256=
|
848
|
-
hiddifypanel/translations/fa/LC_MESSAGES/messages.po,sha256=
|
849
|
-
hiddifypanel/translations/my/LC_MESSAGES/messages.mo,sha256=
|
845
|
+
hiddifypanel/translations/en/LC_MESSAGES/messages.mo,sha256=CE_qBwiwvhEnqWxfNZpINIQuHav7kmeCjfxzLq2mflA,81344
|
846
|
+
hiddifypanel/translations/en/LC_MESSAGES/messages.po,sha256=PTRd-S86e6n6FcFfEk9wNY9oXzfxpTKumZF34ADRD8s,84707
|
847
|
+
hiddifypanel/translations/fa/LC_MESSAGES/messages.mo,sha256=QMpKowLtjq4B8mWYSP1HGUB6smeaXoleOTJV6usLm84,104622
|
848
|
+
hiddifypanel/translations/fa/LC_MESSAGES/messages.po,sha256=F_rviX213BfquPFuYlDJOq0pv2zrPx__Fr0Nfa4YlXo,109395
|
849
|
+
hiddifypanel/translations/my/LC_MESSAGES/messages.mo,sha256=DtH2-01kNi37H52Cw2Ir11RmUZFgd9ey0V5nlbERbFc,139090
|
850
850
|
hiddifypanel/translations/my/LC_MESSAGES/messages.po,sha256=PvYBwQWXaUpAoqy90oow-sH-ZyPE7Fm_l-3FrXT_vEA,141985
|
851
|
-
hiddifypanel/translations/pt/LC_MESSAGES/messages.mo,sha256=
|
852
|
-
hiddifypanel/translations/pt/LC_MESSAGES/messages.po,sha256=
|
853
|
-
hiddifypanel/translations/ru/LC_MESSAGES/messages.mo,sha256=
|
854
|
-
hiddifypanel/translations/ru/LC_MESSAGES/messages.po,sha256=
|
855
|
-
hiddifypanel/translations/zh/LC_MESSAGES/messages.mo,sha256=
|
856
|
-
hiddifypanel/translations/zh/LC_MESSAGES/messages.po,sha256=
|
857
|
-
hiddifypanel/translations.i18n/en.json,sha256=
|
858
|
-
hiddifypanel/translations.i18n/fa.json,sha256=
|
851
|
+
hiddifypanel/translations/pt/LC_MESSAGES/messages.mo,sha256=_7rgbvGSHwDOepWixkDeUPzizgX-_mE6ds8uEyPS2Os,80947
|
852
|
+
hiddifypanel/translations/pt/LC_MESSAGES/messages.po,sha256=6fKR4KFY9pIDBCZG74JTLN9bLyWQgji8P0euB0LTF6c,85983
|
853
|
+
hiddifypanel/translations/ru/LC_MESSAGES/messages.mo,sha256=wY9QVO5znPVze6tHTdH1yeYAZi6jIeEuTp1PjSZufSQ,108744
|
854
|
+
hiddifypanel/translations/ru/LC_MESSAGES/messages.po,sha256=kV4lVivA29LNlceyZ3M3X0Cmlnb2T0uMkPK5IpkXoQc,113986
|
855
|
+
hiddifypanel/translations/zh/LC_MESSAGES/messages.mo,sha256=Nz0wvXDp-zpwV5iDyfxfyHRo9xAHiYKOupTOYONBR9I,75446
|
856
|
+
hiddifypanel/translations/zh/LC_MESSAGES/messages.po,sha256=z8X5CHRb85J8K6bskg0ATQZ1c-lCa1bLDDjXAXwP9HU,80093
|
857
|
+
hiddifypanel/translations.i18n/en.json,sha256=40MeWDGnf6hhoLkWK4FzOGIgRk2jg99TJL6OnAkIfk8,73568
|
858
|
+
hiddifypanel/translations.i18n/fa.json,sha256=Dh9euswESYGJ2h-SsQDQXNERTYfGxU_RJ4UYka4of2w,98266
|
859
859
|
hiddifypanel/translations.i18n/fr.json,sha256=mAZvPzYQhQ1zleLr21cxeB99mb8gvoJBlw7_8AsJgQc,80895
|
860
860
|
hiddifypanel/translations.i18n/my.json,sha256=FWUSUOcHAmVBaq7KL2aX5W8ywsElsy_Dj_ZHuT2EMpE,137466
|
861
|
-
hiddifypanel/translations.i18n/pt.json,sha256=
|
862
|
-
hiddifypanel/translations.i18n/ru.json,sha256=
|
863
|
-
hiddifypanel/translations.i18n/zh.json,sha256=
|
864
|
-
hiddifypanel-
|
865
|
-
hiddifypanel-
|
866
|
-
hiddifypanel-
|
867
|
-
hiddifypanel-
|
868
|
-
hiddifypanel-
|
869
|
-
hiddifypanel-
|
861
|
+
hiddifypanel/translations.i18n/pt.json,sha256=0YL9JCTM9aXpuMLCckVA5GPHWBaBDVQNqZu8aaJ0P3I,75040
|
862
|
+
hiddifypanel/translations.i18n/ru.json,sha256=vef8TTxa6nXkwxEuSfOZUm3sdusf4GkBQQcR0MxJCv0,102827
|
863
|
+
hiddifypanel/translations.i18n/zh.json,sha256=WsbaIOrLIyI6BKPkT8LYWCOaA6PIEMV6qD01wIZuKSk,69573
|
864
|
+
hiddifypanel-11.0.0.dist-info/licenses/LICENSE.md,sha256=oDrt-cUsyiDGnRPjEJh-3dH2ddAuK_bIVBD8ntkOtZw,19807
|
865
|
+
hiddifypanel-11.0.0.dist-info/METADATA,sha256=i8gzHrMjU7pdu6T8SvpssbIxbrIfp1OUiyrz9HWfsgM,25624
|
866
|
+
hiddifypanel-11.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
867
|
+
hiddifypanel-11.0.0.dist-info/entry_points.txt,sha256=Xzpqlh3nwBtZhoV9AANJykano056VJvYzaujxPztJaM,60
|
868
|
+
hiddifypanel-11.0.0.dist-info/top_level.txt,sha256=rv-b3qFWUZQTBy0kyBfsr7L6tPpeO7AaQlLHXn-HI5M,13
|
869
|
+
hiddifypanel-11.0.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|