mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-12 19:05:06 -05:00
feat(ui): fix missing translations
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user