fix(ui): missing translation on node footer

This commit is contained in:
psychedelicious
2024-09-19 16:13:18 +10:00
parent bd7238e434
commit 7fe2aa751a
2 changed files with 3 additions and 2 deletions

View File

@@ -941,7 +941,8 @@
"prototypeDesc": "This invocation is a prototype. It may have breaking changes during app updates and may be removed at any time.",
"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"
"modelAccessError": "Unable to find model {{key}}, resetting to default",
"saveToGallery": "Save To Gallery"
},
"parameters": {
"aspect": "Aspect",

View File

@@ -30,7 +30,7 @@ const SaveToGalleryCheckbox = ({ nodeId }: { nodeId: string }) => {
return (
<FormControl className="nopan">
<FormLabel>{t('hotkeys.saveToGallery.title')} </FormLabel>
<FormLabel>{t('nodes.saveToGallery')} </FormLabel>
<Checkbox onChange={handleChange} isChecked={!isIntermediate} />
</FormControl>
);