diff --git a/invokeai/frontend/web/public/locales/en.json b/invokeai/frontend/web/public/locales/en.json index 1cad7b5e55..a742262a16 100644 --- a/invokeai/frontend/web/public/locales/en.json +++ b/invokeai/frontend/web/public/locales/en.json @@ -996,7 +996,7 @@ "heading": "Use CPU Noise", "paragraph": "Uses the CPU to generate random noise." }, - "paramsCFGScale": { + "paramCFGScale": { "heading": "CFG Scale", "paragraph": "Controls how much your prompt influences the generation process." }, @@ -1012,10 +1012,18 @@ "heading": "Model", "paragraph": "Model used for the denoising steps. Different models are trained to specialize in producing different aesthetic results and content." }, + "paramNegativeConditioning": { + "heading": "Negative Prompts", + "paragraph": "This is where you enter your negative prompts." + }, "paramPositiveConditioning": { "heading": "Positive Prompts", "paragraph": "This is where you enter your positive prompts." }, + "paramRatio": { + "heading": "Ratio", + "paragraph": "The ratio of the dimensions of the image generated. An image size (in number of pixels) equivalent to 512x512 is recommended for SD1.5 models and a size equivalent to 1024x1024 is recommended for SDXL models." + }, "paramScheduler": { "heading": "Scheduler", "paragraph": "Scheduler defines how to iteratively add noise to an image or how to update a sample based on a model's output." @@ -1024,10 +1032,6 @@ "heading": "Seed", "paragraph": "Controls the starting noise used for generation. Disable “Random Seed” to produce identical results with the same generation settings." }, - "paramNegativeConditioning": { - "heading": "Negative Prompts", - "paragraph": "This is where you enter your negative prompts." - }, "paramSteps": { "heading": "Steps", "paragraph": "Number of steps that will be performed in each generation. Higher step counts will typically create better images but will require more generation time." diff --git a/invokeai/frontend/web/src/features/parameters/components/Parameters/Canvas/BoundingBox/ParamBoundingBoxSize.tsx b/invokeai/frontend/web/src/features/parameters/components/Parameters/Canvas/BoundingBox/ParamBoundingBoxSize.tsx index 1c1f60bc09..a3eb428526 100644 --- a/invokeai/frontend/web/src/features/parameters/components/Parameters/Canvas/BoundingBox/ParamBoundingBoxSize.tsx +++ b/invokeai/frontend/web/src/features/parameters/components/Parameters/Canvas/BoundingBox/ParamBoundingBoxSize.tsx @@ -18,6 +18,7 @@ import ParamAspectRatio, { } from '../../Core/ParamAspectRatio'; import ParamBoundingBoxHeight from './ParamBoundingBoxHeight'; import ParamBoundingBoxWidth from './ParamBoundingBoxWidth'; +import IAIInformationalPopover from 'common/components/IAIInformationalPopover'; const sizeOptsSelector = createSelector( [generationSelector, canvasSelector], @@ -93,18 +94,20 @@ export default function ParamBoundingBoxSize() { }} > - - {t('parameters.aspectRatio')} - + + + {t('parameters.aspectRatio')} + + - - {t('parameters.aspectRatio')} - + + + {t('parameters.aspectRatio')} + +