diff --git a/apps/client/public/locales/en-US/translation.json b/apps/client/public/locales/en-US/translation.json index f5b9f4bd..f99cfc2b 100644 --- a/apps/client/public/locales/en-US/translation.json +++ b/apps/client/public/locales/en-US/translation.json @@ -92,6 +92,7 @@ "Import pages": "Import pages", "Import pages & space settings": "Import pages & space settings", "Importing pages": "Importing pages", + "Indexed {{indexed}} of {{total}} pages": "Indexed {{indexed}} of {{total}} pages", "invalid invitation link": "invalid invitation link", "Invitation signup": "Invitation signup", "Invite by email": "Invite by email", diff --git a/apps/client/public/locales/ru-RU/translation.json b/apps/client/public/locales/ru-RU/translation.json index 3d93ec67..25ff2530 100644 --- a/apps/client/public/locales/ru-RU/translation.json +++ b/apps/client/public/locales/ru-RU/translation.json @@ -92,6 +92,7 @@ "Import pages": "Импорт страниц", "Import pages & space settings": "Импорт страниц и настройки пространства", "Importing pages": "Импортирование страниц", + "Indexed {{indexed}} of {{total}} pages": "Проиндексировано {{indexed}} из {{total}} страниц", "invalid invitation link": "недействительная ссылка-приглашение", "Invitation signup": "Регистрация по приглашению", "Invite by email": "Пригласить по электронной почте", diff --git a/apps/client/src/features/workspace/components/settings/components/ai-provider-settings.tsx b/apps/client/src/features/workspace/components/settings/components/ai-provider-settings.tsx index 47a70a7e..6458f2e4 100644 --- a/apps/client/src/features/workspace/components/settings/components/ai-provider-settings.tsx +++ b/apps/client/src/features/workspace/components/settings/components/ai-provider-settings.tsx @@ -188,6 +188,15 @@ export default function AiProviderSettings() { {...form.getInputProps("embeddingModel")} /> + {settings && ( + + {t("Indexed {{indexed}} of {{total}} pages", { + indexed: settings.indexedPages ?? 0, + total: settings.totalPages ?? 0, + })} + + )} +