Skip to content

Commit 39e5842

Browse files
feat(ui): fix missing translations
1 parent 62a14bb commit 39e5842

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,8 @@
873873
"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.",
874874
"starterModels": "Starter Models",
875875
"starterModelsInModelManager": "Starter Models can be found in Model Manager",
876-
"bundleAlreadyInstalled": "Bundle {{bundleName}} already installed",
876+
"bundleAlreadyInstalled": "Bundle already installed",
877+
"bundleAlreadyInstalledDesc": "All models in the {{bundleName}} bundle are already installed.",
877878
"launchpadTab": "Launchpad",
878879
"launchpad": {
879880
"welcome": "Welcome to Model Management",

invokeai/frontend/web/src/features/modelManagerV2/hooks/useStarterBundleInstall.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ export const useStarterBundleInstall = () => {
3636
if (modelsToInstall.install.length === 0) {
3737
toast({
3838
status: 'info',
39-
title: t('modelManager.bundleAlreadyInstalled', { bundleName: bundle.name }),
40-
description: t('modelManager.allModelsAlreadyInstalled'),
39+
title: t('modelManager.bundleAlreadyInstalled'),
40+
description: t('modelManager.bundleAlreadyInstalledDesc', { bundleName: bundle.name }),
4141
});
4242
return;
4343
}

0 commit comments

Comments
 (0)