Skip to content

Commit 818045f

Browse files
tidy(ui): use × instead of translation string
1 parent 7edefbe commit 818045f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

invokeai/frontend/web/public/locales/en.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1654,7 +1654,6 @@
16541654
"warningNoTile": "a {{base_model}} tile controlnet required by this feature",
16551655
"warningNoTileOrUpscaleModel": "an upscaler model and {{base_model}} tile controlnet required by this feature",
16561656
"warningNoUpscaleModel": "an upscaler model required by this feature",
1657-
"x": "x"
16581657
},
16591658
"ui": {
16601659
"tabs": {

invokeai/frontend/web/src/features/settingsAccordions/components/UpscaleSettingsAccordion/UpscaleSizeDetails.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const UpscaleSizeDetails = () => {
1111
const outputSizeText = useMemo(() => {
1212
if (upscaleInitialImage) {
1313
const { width, height } = getOutputImageSize(upscaleInitialImage);
14-
return `${t('upscaling.outputImageSize')}: ${width} ${t('upscaling.x')} ${height}`;
14+
return `${t('upscaling.outputImageSize')}: ${width}×${height}`;
1515
}
1616
}, [upscaleInitialImage, t]);
1717

@@ -22,7 +22,7 @@ export const UpscaleSizeDetails = () => {
2222
return (
2323
<Flex direction="column">
2424
<Text variant="subtext" fontWeight="bold">
25-
{t('upscaling.currentImageSize')}: {upscaleInitialImage.width} {t('upscaling.x')} {upscaleInitialImage.height}
25+
{t('upscaling.currentImageSize')}: {upscaleInitialImage.width}×{upscaleInitialImage.height}
2626
</Text>
2727
<Text variant="subtext" fontWeight="bold">
2828
{outputSizeText}

0 commit comments

Comments
 (0)