Fixup IP-Adapter locale strings.

This commit is contained in:
Ryan Dick 2023-10-06 17:15:13 -04:00 committed by Kent Keirsey
parent d8d0c9af09
commit 3f860c3523
2 changed files with 14 additions and 6 deletions

View File

@ -785,6 +785,14 @@
"integerPolymorphic": "Integer Polymorphic",
"integerPolymorphicDescription": "A collection of integers.",
"invalidOutputSchema": "Invalid output schema",
"ipAdapter": "IP-Adapter",
"ipAdapterCollection": "IP-Adapters Collection",
"ipAdapterCollectionDescription": "A collection of IP-Adapters.",
"ipAdapterDescription": "An Image Prompt Adapter (IP-Adapter).",
"ipAdapterModel": "IP-Adapter Model",
"ipAdapterModelDescription": "IP-Adapter Model Field",
"ipAdapterPolymorphic": "IP-Adapter Polymorphic",
"ipAdapterPolymorphicDescription": "A collection of IP-Adapters.",
"latentsCollection": "Latents Collection",
"latentsCollectionDescription": "Latents may be passed between nodes.",
"latentsField": "Latents",

View File

@ -291,18 +291,18 @@ export const FIELDS: Record<FieldType, FieldUIConfig> = {
},
IPAdapterField: {
color: 'teal.500',
description: 'IP-Adapter info passed between nodes.',
title: 'IP-Adapter',
description: t('nodes.ipAdapterDescription'),
title: t('nodes.ipAdapter'),
},
IPAdapterModelField: {
color: 'teal.500',
description: 'IP-Adapter model',
title: 'IP-Adapter Model',
description: t('nodes.ipAdapterModelDescription'),
title: t('nodes.ipAdapterModel'),
},
IPAdapterPolymorphic: {
color: 'teal.500',
description: 'IP-Adapter info passed between nodes.',
title: 'IP-Adapter Polymorphic',
description: t('nodes.ipAdapterPolymorphicDescription'),
title: t('nodes.ipAdapterPolymorphic'),
},
LatentsCollection: {
color: 'pink.500',