diff --git a/invokeai/frontend/web/public/locales/en.json b/invokeai/frontend/web/public/locales/en.json index f7a310fc321..aa84a984ab7 100644 --- a/invokeai/frontend/web/public/locales/en.json +++ b/invokeai/frontend/web/public/locales/en.json @@ -922,7 +922,7 @@ "nAlreadyInstalled": "{{count}} already installed", "installQueue": "Install Queue", "inplaceInstall": "In-place install", - "inplaceInstallDesc": "Install models without copying the files. When using the model, it will be loaded from its this location. If disabled, the model file(s) will be copied into the Invoke-managed models directory during installation.", + "inplaceInstallDesc": "Install models without moving the files. When using the model, it will be loaded from its original location. If disabled, the model file(s) will be moved into the Invoke-managed models directory during installation.", "install": "Install", "installAll": "Install All", "installRepo": "Install Repo", diff --git a/invokeai/frontend/web/src/features/modelManagerV2/subpanels/AddModelPanel/ScanFolder/ScanFolderResults.tsx b/invokeai/frontend/web/src/features/modelManagerV2/subpanels/AddModelPanel/ScanFolder/ScanFolderResults.tsx index c57eee257d4..4267e6a2518 100644 --- a/invokeai/frontend/web/src/features/modelManagerV2/subpanels/AddModelPanel/ScanFolder/ScanFolderResults.tsx +++ b/invokeai/frontend/web/src/features/modelManagerV2/subpanels/AddModelPanel/ScanFolder/ScanFolderResults.tsx @@ -10,6 +10,7 @@ import { Input, InputGroup, InputRightElement, + Tooltip, } from '@invoke-ai/ui-library'; import { useAppDispatch, useAppSelector } from 'app/store/storeHooks'; import ScrollableContent from 'common/components/OverlayScrollbars/ScrollableContent'; @@ -82,10 +83,12 @@ export const ScanModelsResults = memo(({ results }: ScanModelResultsProps) => { {t('modelManager.scanResults')} - - {t('modelManager.inplaceInstall')} - - + + + {t('modelManager.inplaceInstall')} + + +