mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix(ui): add missing star image translation key
This commit is contained in:
parent
a6d4e4ed57
commit
2f81f9fb22
@ -243,7 +243,6 @@
|
|||||||
"setControlImageDimensions": "Set Control Image Dimensions To W/H",
|
"setControlImageDimensions": "Set Control Image Dimensions To W/H",
|
||||||
"showAdvanced": "Show Advanced",
|
"showAdvanced": "Show Advanced",
|
||||||
"toggleControlNet": "Toggle this ControlNet",
|
"toggleControlNet": "Toggle this ControlNet",
|
||||||
"unstarImage": "Unstar Image",
|
|
||||||
"w": "W",
|
"w": "W",
|
||||||
"weight": "Weight",
|
"weight": "Weight",
|
||||||
"enableIPAdapter": "Enable IP Adapter",
|
"enableIPAdapter": "Enable IP Adapter",
|
||||||
@ -378,6 +377,8 @@
|
|||||||
"showGenerations": "Show Generations",
|
"showGenerations": "Show Generations",
|
||||||
"showUploads": "Show Uploads",
|
"showUploads": "Show Uploads",
|
||||||
"singleColumnLayout": "Single Column Layout",
|
"singleColumnLayout": "Single Column Layout",
|
||||||
|
"starImage": "Star Image",
|
||||||
|
"unstarImage": "Unstar Image",
|
||||||
"unableToLoad": "Unable to load Gallery",
|
"unableToLoad": "Unable to load Gallery",
|
||||||
"uploads": "Uploads",
|
"uploads": "Uploads",
|
||||||
"deleteSelection": "Delete Selection",
|
"deleteSelection": "Delete Selection",
|
||||||
|
@ -234,14 +234,14 @@ const SingleSelectionMenuItems = (props: SingleSelectionMenuItemsProps) => {
|
|||||||
icon={customStarUi ? customStarUi.off.icon : <MdStar />}
|
icon={customStarUi ? customStarUi.off.icon : <MdStar />}
|
||||||
onClickCapture={handleUnstarImage}
|
onClickCapture={handleUnstarImage}
|
||||||
>
|
>
|
||||||
{customStarUi ? customStarUi.off.text : t('controlnet.unstarImage')}
|
{customStarUi ? customStarUi.off.text : t('gallery.unstarImage')}
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
) : (
|
) : (
|
||||||
<MenuItem
|
<MenuItem
|
||||||
icon={customStarUi ? customStarUi.on.icon : <MdStarBorder />}
|
icon={customStarUi ? customStarUi.on.icon : <MdStarBorder />}
|
||||||
onClickCapture={handleStarImage}
|
onClickCapture={handleStarImage}
|
||||||
>
|
>
|
||||||
{customStarUi ? customStarUi.on.text : `Star Image`}
|
{customStarUi ? customStarUi.on.text : t('gallery.starImage')}
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
)}
|
)}
|
||||||
<MenuItem
|
<MenuItem
|
||||||
|
Loading…
x
Reference in New Issue
Block a user