feat(ui): fix missing translations

This commit is contained in:
psychedelicious
2025-06-27 12:49:36 +10:00
parent 62a14bb935
commit 39e584297e
2 changed files with 4 additions and 3 deletions

View File

@@ -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",

View File

@@ -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;
}