mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-20 14:54:12 +00:00
[Manager] Show node pack's dependencies in info panel (#3130)
Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
@@ -1,12 +1,24 @@
|
||||
<template>
|
||||
<div class="mt-4 overflow-hidden">
|
||||
<InfoTextSection
|
||||
v-if="nodePack.description"
|
||||
v-if="nodePack?.description"
|
||||
:sections="descriptionSections"
|
||||
/>
|
||||
<p v-else class="text-muted italic text-sm">
|
||||
{{ $t('manager.noDescription') }}
|
||||
</p>
|
||||
<div v-if="nodePack?.latest_version?.dependencies?.length">
|
||||
<p class="mb-1">
|
||||
{{ $t('manager.dependencies') }}
|
||||
</p>
|
||||
<div
|
||||
v-for="(dep, index) in nodePack.latest_version.dependencies"
|
||||
:key="index"
|
||||
class="text-muted break-words"
|
||||
>
|
||||
{{ dep }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
@@ -99,6 +99,7 @@
|
||||
},
|
||||
"manager": {
|
||||
"title": "Custom Nodes Manager",
|
||||
"dependencies": "Dependencies",
|
||||
"infoPanelEmpty": "Click an item to see the info",
|
||||
"restartToApplyChanges": "To apply changes, please restart ComfyUI",
|
||||
"loadingVersions": "Loading versions...",
|
||||
|
||||
@@ -381,6 +381,7 @@
|
||||
},
|
||||
"manager": {
|
||||
"createdBy": "Créé par",
|
||||
"dependencies": "Dépendances",
|
||||
"discoverCommunityContent": "Découvrez les packs de nœuds, extensions et plus encore créés par la communauté...",
|
||||
"downloads": "Téléchargements",
|
||||
"errorConnecting": "Erreur de connexion au registre de nœuds Comfy.",
|
||||
|
||||
@@ -381,6 +381,7 @@
|
||||
},
|
||||
"manager": {
|
||||
"createdBy": "作成者",
|
||||
"dependencies": "依存関係",
|
||||
"discoverCommunityContent": "コミュニティが作成したノードパック、拡張機能などを探す...",
|
||||
"downloads": "ダウンロード",
|
||||
"errorConnecting": "Comfy Node Registryへの接続エラー。",
|
||||
|
||||
@@ -381,6 +381,7 @@
|
||||
},
|
||||
"manager": {
|
||||
"createdBy": "작성자",
|
||||
"dependencies": "의존성",
|
||||
"discoverCommunityContent": "커뮤니티에서 만든 노드 팩, 확장 프로그램 등을 찾아보세요...",
|
||||
"downloads": "다운로드",
|
||||
"errorConnecting": "Comfy Node Registry에 연결하는 중 오류가 발생했습니다.",
|
||||
|
||||
@@ -381,6 +381,7 @@
|
||||
},
|
||||
"manager": {
|
||||
"createdBy": "Создано",
|
||||
"dependencies": "Зависимости",
|
||||
"discoverCommunityContent": "Откройте для себя пакеты узлов, расширения и многое другое, созданные сообществом...",
|
||||
"downloads": "Загрузки",
|
||||
"errorConnecting": "Ошибка подключения к реестру Comfy Node.",
|
||||
|
||||
@@ -381,6 +381,7 @@
|
||||
},
|
||||
"manager": {
|
||||
"createdBy": "创建者",
|
||||
"dependencies": "依赖关系",
|
||||
"discoverCommunityContent": "发现社区制作的节点包,扩展等等...",
|
||||
"downloads": "下载",
|
||||
"errorConnecting": "连接到Comfy节点注册表时出错。",
|
||||
|
||||
Reference in New Issue
Block a user