Skip to content

Commit 59433f7

Browse files
committed
chore: text key updated
1 parent e2d0bf3 commit 59433f7

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

src/components/dialog/content/MissingNodesContent.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,13 @@
3434
</div>
3535

3636
<!-- Bottom instruction -->
37-
<div v-if="isCloud">
37+
<div>
3838
<p class="m-0 text-sm leading-4 text-muted-foreground">
39-
{{ $t('missingNodes.cloud.replacementInstruction') }}
39+
{{
40+
isCloud
41+
? $t('missingNodes.cloud.replacementInstruction')
42+
: $t('missingNodes.oss.replacementInstruction')
43+
}}
4044
</p>
4145
</div>
4246
</div>

src/locales/en/main.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2057,8 +2057,9 @@
20572057
"gotIt": "Ok, got it"
20582058
},
20592059
"oss": {
2060-
"title": "Some Nodes Are Missing",
2061-
"description": "This workflow uses custom nodes you haven't installed yet."
2060+
"title": "This workflow has missing nodes",
2061+
"description": "This workflow uses custom nodes you haven't installed yet.",
2062+
"replacementInstruction": "Install these nodes to run this workflow, or replace them with installed alternatives. Missing nodes are highlighted in red on the canvas."
20622063
}
20632064
}
20642065
}

0 commit comments

Comments
 (0)