mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-04 03:15:06 -05:00
fix(ui): missing translation on node footer
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user