From 39e584297eeb8035ac4d47415b78dcf1f1dab065 Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Fri, 27 Jun 2025 12:49:36 +1000 Subject: [PATCH] feat(ui): fix missing translations --- invokeai/frontend/web/public/locales/en.json | 3 ++- .../features/modelManagerV2/hooks/useStarterBundleInstall.ts | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/invokeai/frontend/web/public/locales/en.json b/invokeai/frontend/web/public/locales/en.json index 2d078aec66..5135d32832 100644 --- a/invokeai/frontend/web/public/locales/en.json +++ b/invokeai/frontend/web/public/locales/en.json @@ -873,7 +873,8 @@ "starterBundleHelpText": "Easily install all models needed to get started with a base model, including a main model, controlnets, IP adapters, and more. Selecting a bundle will skip any models that you already have installed.", "starterModels": "Starter Models", "starterModelsInModelManager": "Starter Models can be found in Model Manager", - "bundleAlreadyInstalled": "Bundle {{bundleName}} already installed", + "bundleAlreadyInstalled": "Bundle already installed", + "bundleAlreadyInstalledDesc": "All models in the {{bundleName}} bundle are already installed.", "launchpadTab": "Launchpad", "launchpad": { "welcome": "Welcome to Model Management", diff --git a/invokeai/frontend/web/src/features/modelManagerV2/hooks/useStarterBundleInstall.ts b/invokeai/frontend/web/src/features/modelManagerV2/hooks/useStarterBundleInstall.ts index a620619e1f..6c1c2a0cfd 100644 --- a/invokeai/frontend/web/src/features/modelManagerV2/hooks/useStarterBundleInstall.ts +++ b/invokeai/frontend/web/src/features/modelManagerV2/hooks/useStarterBundleInstall.ts @@ -36,8 +36,8 @@ export const useStarterBundleInstall = () => { if (modelsToInstall.install.length === 0) { toast({ status: 'info', - title: t('modelManager.bundleAlreadyInstalled', { bundleName: bundle.name }), - description: t('modelManager.allModelsAlreadyInstalled'), + title: t('modelManager.bundleAlreadyInstalled'), + description: t('modelManager.bundleAlreadyInstalledDesc', { bundleName: bundle.name }), }); return; }