diff --git a/invokeai/frontend/web/public/locales/en.json b/invokeai/frontend/web/public/locales/en.json index f4e61cc1b78..ef736b6dac4 100644 --- a/invokeai/frontend/web/public/locales/en.json +++ b/invokeai/frontend/web/public/locales/en.json @@ -978,6 +978,8 @@ "zoomOutNodes": "Zoom Out", "betaDesc": "This invocation is in beta. Until it is stable, it may have breaking changes during app updates. We plan to support this invocation long-term.", "prototypeDesc": "This invocation is a prototype. It may have breaking changes during app updates and may be removed at any time.", + "internalDesc": "This invocation is used internally by Invoke. It may have breaking changes during app updates and may be removed at any time.", + "specialDesc": "This invocation some special handling in the app. For example, Batch nodes are used to queue multiple graphs from a single workflow.", "imageAccessError": "Unable to find image {{image_name}}, resetting to default", "boardAccessError": "Unable to find board {{board_id}}, resetting to default", "modelAccessError": "Unable to find model {{key}}, resetting to default", diff --git a/invokeai/frontend/web/src/features/nodes/components/flow/nodes/Invocation/InvocationNodeClassificationIcon.tsx b/invokeai/frontend/web/src/features/nodes/components/flow/nodes/Invocation/InvocationNodeClassificationIcon.tsx index 0a5d801cc2f..8d1fdb7b2b1 100644 --- a/invokeai/frontend/web/src/features/nodes/components/flow/nodes/Invocation/InvocationNodeClassificationIcon.tsx +++ b/invokeai/frontend/web/src/features/nodes/components/flow/nodes/Invocation/InvocationNodeClassificationIcon.tsx @@ -41,7 +41,11 @@ const ClassificationTooltipContent = memo(({ classification }: { classification: } if (classification === 'internal') { - return t('nodes.prototypeDesc'); + return t('nodes.internalDesc'); + } + + if (classification === 'special') { + return t('nodes.specialDesc'); } return null;