@lobehub/lobehub 2.0.0-next.96 → 2.0.0-next.98
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.console-log-whitelist.json +14 -0
- package/.github/workflows/check-console-log.yml +117 -0
- package/.github/workflows/desktop-pr-build.yml +4 -4
- package/.github/workflows/release-desktop-beta.yml +4 -4
- package/.github/workflows/release.yml +1 -1
- package/.github/workflows/test.yml +5 -5
- package/CHANGELOG.md +66 -0
- package/apps/desktop/src/preload/index.ts +2 -2
- package/apps/desktop/src/preload/invoke.ts +1 -1
- package/apps/desktop/src/preload/routeInterceptor.ts +41 -41
- package/changelog/v1.json +21 -0
- package/docs/development/database-schema.dbml +1 -0
- package/e2e/package.json +1 -1
- package/locales/ar/file.json +9 -11
- package/locales/ar/models.json +6 -0
- package/locales/bg-BG/file.json +8 -10
- package/locales/bg-BG/models.json +6 -0
- package/locales/de-DE/file.json +9 -11
- package/locales/de-DE/models.json +6 -0
- package/locales/en-US/file.json +12 -14
- package/locales/en-US/models.json +6 -0
- package/locales/es-ES/file.json +7 -9
- package/locales/es-ES/models.json +6 -0
- package/locales/fa-IR/file.json +9 -11
- package/locales/fa-IR/models.json +6 -0
- package/locales/fr-FR/file.json +6 -8
- package/locales/fr-FR/models.json +6 -0
- package/locales/it-IT/file.json +8 -10
- package/locales/it-IT/models.json +6 -0
- package/locales/ja-JP/file.json +10 -12
- package/locales/ja-JP/models.json +6 -0
- package/locales/ko-KR/file.json +8 -10
- package/locales/ko-KR/models.json +6 -0
- package/locales/nl-NL/file.json +8 -10
- package/locales/nl-NL/models.json +6 -0
- package/locales/pl-PL/file.json +7 -9
- package/locales/pl-PL/models.json +6 -0
- package/locales/pt-BR/file.json +7 -9
- package/locales/pt-BR/models.json +6 -0
- package/locales/ru-RU/file.json +9 -11
- package/locales/ru-RU/models.json +6 -0
- package/locales/tr-TR/file.json +8 -10
- package/locales/tr-TR/models.json +6 -0
- package/locales/vi-VN/file.json +9 -11
- package/locales/vi-VN/models.json +6 -0
- package/locales/zh-CN/file.json +10 -12
- package/locales/zh-CN/models.json +6 -0
- package/locales/zh-TW/file.json +10 -12
- package/locales/zh-TW/models.json +6 -0
- package/package.json +3 -2
- package/packages/database/migrations/0047_add_slug_document.sql +6 -0
- package/packages/database/migrations/meta/0047_snapshot.json +7891 -0
- package/packages/database/migrations/meta/_journal.json +7 -0
- package/packages/database/src/client/db.ts +12 -12
- package/packages/database/src/core/migrations.json +16 -7
- package/packages/database/src/models/document.ts +2 -2
- package/packages/database/src/repositories/dataImporter/index.ts +10 -10
- package/packages/database/src/schemas/file.ts +7 -1
- package/packages/database/src/schemas/topic.ts +1 -1
- package/packages/database/src/server/models/ragEval/evaluation.ts +1 -1
- package/packages/model-bank/src/aiModels/qwen.ts +5 -3
- package/packages/model-runtime/src/core/openaiCompatibleFactory/index.ts +21 -21
- package/packages/obervability-otel/package.json +2 -2
- package/scripts/checkConsoleLog.mts +148 -0
- package/scripts/prebuild.mts +5 -5
- package/src/app/[variants]/(main)/changelog/index.tsx +1 -1
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/Desktop/ClassicChat.tsx +1 -1
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/Desktop/GroupChat.tsx +1 -1
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/ChatItem/index.tsx +1 -1
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/Content.tsx +2 -2
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/index.tsx +1 -1
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatMinimap/index.tsx +1 -1
- package/src/app/[variants]/(main)/settings/_layout/Desktop/index.tsx +20 -16
- package/src/app/[variants]/(main)/settings/provider/(list)/ProviderGrid/Card.tsx +6 -3
- package/src/app/[variants]/(main)/settings/provider/(list)/index.tsx +3 -2
- package/src/app/[variants]/(main)/settings/provider/detail/index.tsx +14 -4
- package/src/app/[variants]/desktopRouter.config.tsx +23 -0
- package/src/app/[variants]/mobileRouter.config.tsx +23 -0
- package/src/components/InvalidAPIKey/APIKeyForm/Bedrock.tsx +1 -1
- package/src/components/InvalidAPIKey/APIKeyForm/ComfyUIForm.tsx +1 -1
- package/src/components/InvalidAPIKey/APIKeyForm/ProviderApiKeyForm.tsx +1 -1
- package/src/components/InvalidAPIKey/APIKeyForm/__tests__/ComfyUIForm.test.tsx +1 -1
- package/src/components/InvalidAPIKey/index.tsx +1 -1
- package/src/features/{Conversation → ChatList}/MarkdownElements/remarkPlugins/getNodeContent.test.ts +1 -2
- package/src/features/{Conversation → ChatList}/Messages/Assistant/Actions/index.tsx +2 -2
- package/src/features/{Conversation → ChatList}/Messages/Assistant/Extra/index.test.tsx +3 -3
- package/src/features/{Conversation → ChatList}/Messages/Assistant/Extra/index.tsx +6 -5
- package/src/features/{Conversation → ChatList}/Messages/Assistant/MessageContent.tsx +1 -1
- package/src/features/{Conversation → ChatList}/Messages/Group/Actions/WithContentId.tsx +2 -2
- package/src/features/{Conversation → ChatList}/Messages/Group/ContentBlock.tsx +2 -2
- package/src/features/{Conversation → ChatList}/Messages/Group/Error/index.tsx +2 -1
- package/src/features/{Conversation → ChatList}/Messages/Group/Group.tsx +1 -1
- package/src/features/{Conversation → ChatList}/Messages/Group/GroupItem.tsx +3 -2
- package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Render/Intervention/ApprovalActions.tsx +1 -1
- package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Render/index.tsx +1 -2
- package/src/features/{Conversation → ChatList}/Messages/Group/index.tsx +1 -1
- package/src/features/{Conversation → ChatList}/Messages/User/Extra.tsx +3 -3
- package/src/features/{Conversation → ChatList}/Messages/User/index.tsx +1 -1
- package/src/features/{Conversation → ChatList}/Messages/index.tsx +1 -1
- package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareImage/Preview.tsx +1 -1
- package/src/features/{Conversation → ChatList}/components/SkeletonList.tsx +1 -1
- package/src/features/{Conversation → ChatList}/components/VirtualizedList/index.tsx +1 -1
- package/src/features/KnowledgeManager/DocumentExplorer/NoteEditorModal.tsx +0 -20
- package/src/features/KnowledgeManager/DocumentExplorer/index.tsx +3 -3
- package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/index.tsx +0 -20
- package/src/features/KnowledgeManager/Header/AddButton.tsx +0 -1
- package/src/features/KnowledgeManager/Header/NewNoteButton.tsx +1 -1
- package/src/features/KnowledgeManager/Header/TogglePanelButton.tsx +2 -2
- package/src/features/KnowledgeManager/Home/UploadEntries.tsx +2 -2
- package/src/features/KnowledgeManager/Home/index.tsx +4 -4
- package/src/features/OllamaSetupGuide/index.tsx +1 -1
- package/src/features/PluginsUI/Render/MCPType/index.tsx +1 -1
- package/src/features/Portal/GroupThread/Body/ThreadChatItem.tsx +1 -1
- package/src/features/Portal/GroupThread/Body/ThreadChatList.tsx +1 -1
- package/src/features/Portal/Thread/Chat/ChatInput/index.tsx +1 -1
- package/src/features/Portal/Thread/Chat/ChatItem.tsx +1 -1
- package/src/features/Portal/Thread/Chat/ChatList.tsx +1 -1
- package/src/features/Portal/Thread/Chat/index.tsx +1 -1
- package/src/features/ShareModal/ShareImage/ChatList/index.tsx +1 -1
- package/src/features/User/UserPanel/useMenu.tsx +7 -3
- package/src/locales/default/file.ts +11 -13
- package/src/services/debug.ts +4 -4
- package/src/services/electron/remoteServer.ts +5 -5
- package/src/services/electron/settings.ts +6 -6
- package/src/services/mcp.ts +18 -18
- package/src/services/models.ts +20 -20
- package/src/store/chat/agents/__tests__/createAgentExecutors/helpers/testExecutor.ts +1 -4
- /package/src/features/{Conversation → ChatList}/Error/AccessCodeForm.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Error/ChatInvalidApiKey.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Error/ClerkLogin/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Error/ErrorJsonViewer.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Error/OAuthForm.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Error/OllamaBizError/InvalidOllamaModel.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Error/OllamaBizError/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Error/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Error/style.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/Render/Icon.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/Render/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/index.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/rehypePlugin.test.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/rehypePlugin.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeThinking/Render.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeThinking/index.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/LocalFile/Render/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/LocalFile/index.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/Mention/Render.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/Mention/index.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/Thinking/Render.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/Thinking/index.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/index.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/remarkPlugins/__snapshots__/createRemarkSelfClosingTagPlugin.test.ts.snap +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/remarkPlugins/createRemarkCustomTagPlugin.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/remarkPlugins/createRemarkCustomTagWithAttributesPlugin.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.test.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/remarkPlugins/getNodeContent.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/type.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/utils.ts +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Assistant/Actions/Error.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Assistant/CollapsedMessage.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Assistant/FileChunks/Item/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Assistant/FileChunks/Item/style.ts +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Assistant/FileChunks/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Assistant/IntentUnderstanding.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Assistant/Reasoning/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Assistant/SearchGrounding.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Assistant/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Default.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Actions/WithoutContentId.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Actions/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/CollapsedMessage.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/EditState.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/GroupContext.ts +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/MessageContent.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Inspector/BuiltinPluginTitle.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Inspector/Debug.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Inspector/PluginResult.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Inspector/PluginState.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Inspector/Settings.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Inspector/StatusIndicator.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Inspector/ToolTitle.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Inspector/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Render/AbortResponse.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Render/Arguments/ObjectEntity.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Render/Arguments/ValueCell.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Render/Arguments/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Render/CustomRender.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Render/ErrorResponse.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Render/Intervention/Fallback.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Render/Intervention/KeyValueEditor.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Render/Intervention/ModeSelector.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Render/Intervention/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Render/LoadingPlaceholder/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Render/PluginSettings.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/Render/RejectedResponse.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tool/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Group/Tools.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Supervisor/TodoList.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Supervisor/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Tool/Inspector/BuiltinPluginTitle.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Tool/Inspector/Debug.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Tool/Inspector/PluginResult.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Tool/Inspector/PluginState.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Tool/Inspector/Settings.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Tool/Inspector/ToolTitle.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Tool/Inspector/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Tool/Render/Arguments/ObjectEntity.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Tool/Render/Arguments/ValueCell.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Tool/Render/Arguments/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Tool/Render/CustomRender.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Tool/Render/ErrorResponse.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Tool/Render/KeyValueEditor.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Tool/Render/PluginSettings.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Tool/Render/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Tool/ToolItem.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Tool/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/Actions/ActionsBar.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/Actions/MessageBranch.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/Actions/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/BelowMessage.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/FileListViewer/Item.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/FileListViewer/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/ImageFileListViewer.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/MarkdownRender/ContentPreview.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/MarkdownRender/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/MessageContent.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/VideoFileListViewer.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/AutoScroll.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/BackBottom/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/BackBottom/style.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/PdfPreview.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/style.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/template.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/usePdfGeneration.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/ExtraContainer.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/TTS/FilePlayer.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/TTS/InitPlayer.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/TTS/Player.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/TTS/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/Translate.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/AnimatedNumber.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/ModelCard.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/TokenProgress.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/pricing.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/tokens.test.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/tokens.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/Usage/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/History/HistoryDivider.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/History/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/OTPInput.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareImage/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareImage/style.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareImage/type.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/Preview.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/template.test.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/template.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/type.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/style.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/ThreadDivider/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/VirtualizedList/VirtuosoContext.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/WideScreenContainer/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/context/InPortalThreadContext.ts +0 -0
- /package/src/features/{Conversation → ChatList}/hooks/useChatListActionsBar.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/hooks/useDoubleClickEdit.ts +0 -0
- /package/src/features/{Conversation → ChatList}/index.ts +0 -0
- /package/src/features/{Conversation → ChatList}/types/index.ts +0 -0
- /package/src/features/{Conversation → ChatList}/utils/markdown.test.ts +0 -0
- /package/src/features/{Conversation → ChatList}/utils/markdown.ts +0 -0
package/locales/ar/file.json
CHANGED
|
@@ -55,11 +55,11 @@
|
|
|
55
55
|
},
|
|
56
56
|
"documentList": {
|
|
57
57
|
"copyContent": "نسخ المحتوى الكامل",
|
|
58
|
-
"documentCount": "إجمالي {{count}} مستند",
|
|
59
58
|
"duplicate": "إنشاء نسخة",
|
|
60
|
-
"empty": "لا توجد مستندات
|
|
59
|
+
"empty": "لا توجد مستندات حالياً، انقر على الزر أعلاه لإنشاء أول مستند لك",
|
|
61
60
|
"noResults": "لم يتم العثور على مستندات مطابقة",
|
|
62
|
-
"
|
|
61
|
+
"pageCount": "إجمالي {{count}} مستند",
|
|
62
|
+
"selectNote": "اختر مستندًا لبدء التحرير",
|
|
63
63
|
"untitled": "بدون عنوان"
|
|
64
64
|
},
|
|
65
65
|
"empty": "لا توجد ملفات/مجلدات تم تحميلها بعد",
|
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
"uploadFile": "رفع ملف",
|
|
71
71
|
"uploadFolder": "رفع مجلد"
|
|
72
72
|
},
|
|
73
|
-
"newDocumentButton": "مستند جديد",
|
|
74
73
|
"newNoteDialog": {
|
|
75
74
|
"cancel": "إلغاء",
|
|
76
75
|
"editTitle": "تحرير المستند",
|
|
@@ -83,14 +82,15 @@
|
|
|
83
82
|
"title": "مستند جديد",
|
|
84
83
|
"updateSuccess": "تم تحديث المستند بنجاح"
|
|
85
84
|
},
|
|
85
|
+
"newPageButton": "إنشاء مستند جديد",
|
|
86
86
|
"uploadButton": "رفع"
|
|
87
87
|
},
|
|
88
88
|
"home": {
|
|
89
89
|
"getStarted": "ابدأ الآن",
|
|
90
90
|
"greeting": "ابدأ",
|
|
91
91
|
"quickActions": "إجراءات سريعة",
|
|
92
|
-
"recentDocuments": "المستندات الأخيرة",
|
|
93
92
|
"recentFiles": "الملفات الأخيرة",
|
|
93
|
+
"recentPages": "الصفحات الأخيرة",
|
|
94
94
|
"subtitle": "مرحبًا بك في قاعدة المعرفة، ابدأ من هنا لإدارة مستنداتك وملاحظاتك",
|
|
95
95
|
"uploadEntries": {
|
|
96
96
|
"files": {
|
|
@@ -102,8 +102,8 @@
|
|
|
102
102
|
"knowledgeBase": {
|
|
103
103
|
"title": "قاعدة معرفة جديدة"
|
|
104
104
|
},
|
|
105
|
-
"
|
|
106
|
-
"title": "مستند جديد"
|
|
105
|
+
"newPage": {
|
|
106
|
+
"title": "إنشاء مستند جديد"
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
109
|
},
|
|
@@ -142,8 +142,8 @@
|
|
|
142
142
|
"downloadFile": "تحميل الملف",
|
|
143
143
|
"unsupportedFileAndContact": "هذا التنسيق من الملفات غير مدعوم للمعاينة عبر الإنترنت، إذا كان لديك طلب للمعاينة، فلا تتردد في <1>إبلاغنا</1>"
|
|
144
144
|
},
|
|
145
|
-
"searchDocumentPlaceholder": "ابحث في المستندات",
|
|
146
145
|
"searchFilePlaceholder": "بحث عن ملف",
|
|
146
|
+
"searchPagePlaceholder": "ابحث في المستندات",
|
|
147
147
|
"tab": {
|
|
148
148
|
"all": "الكل",
|
|
149
149
|
"audios": "الصوتيات",
|
|
@@ -156,9 +156,7 @@
|
|
|
156
156
|
"websites": "المواقع"
|
|
157
157
|
},
|
|
158
158
|
"title": "قاعدة المعرفة",
|
|
159
|
-
"toggleLeftPanel":
|
|
160
|
-
"title": "عرض/إخفاء اللوحة الجانبية اليسرى"
|
|
161
|
-
},
|
|
159
|
+
"toggleLeftPanel": "إظهار/إخفاء اللوحة الجانبية اليسرى",
|
|
162
160
|
"uploadDock": {
|
|
163
161
|
"body": {
|
|
164
162
|
"collapse": "طي",
|
package/locales/ar/models.json
CHANGED
|
@@ -1907,6 +1907,12 @@
|
|
|
1907
1907
|
"grok-4-0709": {
|
|
1908
1908
|
"description": "Grok 4 من xAI، يتمتع بقدرات استدلال قوية."
|
|
1909
1909
|
},
|
|
1910
|
+
"grok-4-1-fast-non-reasoning": {
|
|
1911
|
+
"description": "نموذج متعدد الوسائط متقدم، مُحسَّن خصيصًا لاستدعاء أدوات الوكلاء عالية الأداء."
|
|
1912
|
+
},
|
|
1913
|
+
"grok-4-1-fast-reasoning": {
|
|
1914
|
+
"description": "نموذج متعدد الوسائط متقدم، مُحسَّن خصيصًا لاستدعاء أدوات الوكلاء عالية الأداء."
|
|
1915
|
+
},
|
|
1910
1916
|
"grok-4-fast-non-reasoning": {
|
|
1911
1917
|
"description": "نحن سعداء بإصدار Grok 4 Fast، وهو أحدث تقدم لدينا في نماذج الاستدلال ذات التكلفة الفعالة."
|
|
1912
1918
|
},
|
package/locales/bg-BG/file.json
CHANGED
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
},
|
|
56
56
|
"documentList": {
|
|
57
57
|
"copyContent": "Копиране на цялото съдържание",
|
|
58
|
-
"documentCount": "Общо {{count}} документа",
|
|
59
58
|
"duplicate": "Създаване на копие",
|
|
60
|
-
"empty": "Все още няма документи.
|
|
59
|
+
"empty": "Все още няма документи. Щракнете върху бутона по-горе, за да създадете първия си документ.",
|
|
61
60
|
"noResults": "Няма намерени съвпадащи документи",
|
|
61
|
+
"pageCount": "Общо {{count}} документа",
|
|
62
62
|
"selectNote": "Изберете документ, за да започнете редактиране",
|
|
63
63
|
"untitled": "Без заглавие"
|
|
64
64
|
},
|
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
"uploadFile": "Качване на файл",
|
|
71
71
|
"uploadFolder": "Качване на папка"
|
|
72
72
|
},
|
|
73
|
-
"newDocumentButton": "Нов документ",
|
|
74
73
|
"newNoteDialog": {
|
|
75
74
|
"cancel": "Отказ",
|
|
76
75
|
"editTitle": "Редактиране на документ",
|
|
@@ -83,14 +82,15 @@
|
|
|
83
82
|
"title": "Нов документ",
|
|
84
83
|
"updateSuccess": "Документът беше обновен успешно"
|
|
85
84
|
},
|
|
85
|
+
"newPageButton": "Създай нов документ",
|
|
86
86
|
"uploadButton": "Качване"
|
|
87
87
|
},
|
|
88
88
|
"home": {
|
|
89
89
|
"getStarted": "Започнете",
|
|
90
90
|
"greeting": "Начало",
|
|
91
91
|
"quickActions": "Бързи действия",
|
|
92
|
-
"recentDocuments": "Скорошни документи",
|
|
93
92
|
"recentFiles": "Скорошни файлове",
|
|
93
|
+
"recentPages": "Скорошни документи",
|
|
94
94
|
"subtitle": "Добре дошли в базата знания. Започнете да управлявате вашите документи оттук",
|
|
95
95
|
"uploadEntries": {
|
|
96
96
|
"files": {
|
|
@@ -102,8 +102,8 @@
|
|
|
102
102
|
"knowledgeBase": {
|
|
103
103
|
"title": "Създай база знания"
|
|
104
104
|
},
|
|
105
|
-
"
|
|
106
|
-
"title": "
|
|
105
|
+
"newPage": {
|
|
106
|
+
"title": "Създаване на нов документ"
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
109
|
},
|
|
@@ -142,8 +142,8 @@
|
|
|
142
142
|
"downloadFile": "Изтеглете файла",
|
|
143
143
|
"unsupportedFileAndContact": "Този формат на файла не поддържа онлайн преглед. Ако имате нужда от преглед, моля, <1>свържете се с нас</1>."
|
|
144
144
|
},
|
|
145
|
-
"searchDocumentPlaceholder": "Търсене на документи",
|
|
146
145
|
"searchFilePlaceholder": "Търсене на файл",
|
|
146
|
+
"searchPagePlaceholder": "Търсене на документи",
|
|
147
147
|
"tab": {
|
|
148
148
|
"all": "Всички",
|
|
149
149
|
"audios": "Аудио",
|
|
@@ -156,9 +156,7 @@
|
|
|
156
156
|
"websites": "Уебсайтове"
|
|
157
157
|
},
|
|
158
158
|
"title": "База знания",
|
|
159
|
-
"toggleLeftPanel":
|
|
160
|
-
"title": "Покажи/Скрий лявото панел"
|
|
161
|
-
},
|
|
159
|
+
"toggleLeftPanel": "Показване/скриване на лявия панел",
|
|
162
160
|
"uploadDock": {
|
|
163
161
|
"body": {
|
|
164
162
|
"collapse": "Скрий",
|
|
@@ -1907,6 +1907,12 @@
|
|
|
1907
1907
|
"grok-4-0709": {
|
|
1908
1908
|
"description": "Grok 4 от xAI, с мощни способности за разсъждение."
|
|
1909
1909
|
},
|
|
1910
|
+
"grok-4-1-fast-non-reasoning": {
|
|
1911
|
+
"description": "Модерен мултимодален модел, специално оптимизиран за високоефективно използване на агентски инструменти."
|
|
1912
|
+
},
|
|
1913
|
+
"grok-4-1-fast-reasoning": {
|
|
1914
|
+
"description": "Модерен мултимодален модел, специално оптимизиран за високоефективно използване на агентски инструменти."
|
|
1915
|
+
},
|
|
1910
1916
|
"grok-4-fast-non-reasoning": {
|
|
1911
1917
|
"description": "С удоволствие представяме Grok 4 Fast, нашият най-нов напредък в модели за разсъждение с висока ефективност на разходите."
|
|
1912
1918
|
},
|
package/locales/de-DE/file.json
CHANGED
|
@@ -55,11 +55,11 @@
|
|
|
55
55
|
},
|
|
56
56
|
"documentList": {
|
|
57
57
|
"copyContent": "Gesamten Inhalt kopieren",
|
|
58
|
-
"documentCount": "Insgesamt {{count}} Dokumente",
|
|
59
58
|
"duplicate": "Kopie erstellen",
|
|
60
|
-
"empty": "Noch keine Dokumente vorhanden.
|
|
59
|
+
"empty": "Noch keine Dokumente vorhanden. Klicke auf die Schaltfläche oben, um dein erstes Dokument zu erstellen.",
|
|
61
60
|
"noResults": "Keine passenden Dokumente gefunden",
|
|
62
|
-
"
|
|
61
|
+
"pageCount": "Insgesamt {{count}} Dokumente",
|
|
62
|
+
"selectNote": "Wähle ein Dokument aus, um mit der Bearbeitung zu beginnen",
|
|
63
63
|
"untitled": "Ohne Titel"
|
|
64
64
|
},
|
|
65
65
|
"empty": "Keine hochgeladenen Dateien/Ordner vorhanden",
|
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
"uploadFile": "Datei hochladen",
|
|
71
71
|
"uploadFolder": "Ordner hochladen"
|
|
72
72
|
},
|
|
73
|
-
"newDocumentButton": "Neues Dokument",
|
|
74
73
|
"newNoteDialog": {
|
|
75
74
|
"cancel": "Abbrechen",
|
|
76
75
|
"editTitle": "Dokument bearbeiten",
|
|
@@ -83,14 +82,15 @@
|
|
|
83
82
|
"title": "Neues Dokument",
|
|
84
83
|
"updateSuccess": "Dokument erfolgreich aktualisiert"
|
|
85
84
|
},
|
|
85
|
+
"newPageButton": "Neues Dokument erstellen",
|
|
86
86
|
"uploadButton": "Hochladen"
|
|
87
87
|
},
|
|
88
88
|
"home": {
|
|
89
89
|
"getStarted": "Loslegen",
|
|
90
90
|
"greeting": "Loslegen",
|
|
91
91
|
"quickActions": "Schnellaktionen",
|
|
92
|
-
"recentDocuments": "Kürzlich verwendete Dokumente",
|
|
93
92
|
"recentFiles": "Kürzlich verwendete Dateien",
|
|
93
|
+
"recentPages": "Kürzlich geöffnete Dokumente",
|
|
94
94
|
"subtitle": "Willkommen im Wissensspeicher. Beginnen Sie hier mit der Verwaltung Ihrer Dokumente.",
|
|
95
95
|
"uploadEntries": {
|
|
96
96
|
"files": {
|
|
@@ -102,8 +102,8 @@
|
|
|
102
102
|
"knowledgeBase": {
|
|
103
103
|
"title": "Neue Wissensdatenbank"
|
|
104
104
|
},
|
|
105
|
-
"
|
|
106
|
-
"title": "Neues Dokument"
|
|
105
|
+
"newPage": {
|
|
106
|
+
"title": "Neues Dokument erstellen"
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
109
|
},
|
|
@@ -142,8 +142,8 @@
|
|
|
142
142
|
"downloadFile": "Datei herunterladen",
|
|
143
143
|
"unsupportedFileAndContact": "Dieses Dateiformat wird derzeit nicht für die Online-Vorschau unterstützt. Wenn Sie eine Vorschau wünschen, können Sie uns gerne <1>Feedback geben</1>."
|
|
144
144
|
},
|
|
145
|
-
"searchDocumentPlaceholder": "Dokumente durchsuchen",
|
|
146
145
|
"searchFilePlaceholder": "Datei suchen",
|
|
146
|
+
"searchPagePlaceholder": "Dokumente durchsuchen",
|
|
147
147
|
"tab": {
|
|
148
148
|
"all": "Alle",
|
|
149
149
|
"audios": "Audio",
|
|
@@ -156,9 +156,7 @@
|
|
|
156
156
|
"websites": "Webseiten"
|
|
157
157
|
},
|
|
158
158
|
"title": "Wissensdatenbank",
|
|
159
|
-
"toggleLeftPanel":
|
|
160
|
-
"title": "Linkes Panel einblenden/ausblenden"
|
|
161
|
-
},
|
|
159
|
+
"toggleLeftPanel": "Seitenleiste ein-/ausblenden",
|
|
162
160
|
"uploadDock": {
|
|
163
161
|
"body": {
|
|
164
162
|
"collapse": "Einklappen",
|
|
@@ -1907,6 +1907,12 @@
|
|
|
1907
1907
|
"grok-4-0709": {
|
|
1908
1908
|
"description": "xAI's Grok 4 mit starker Schlussfolgerungsfähigkeit."
|
|
1909
1909
|
},
|
|
1910
|
+
"grok-4-1-fast-non-reasoning": {
|
|
1911
|
+
"description": "Modernes multimodales Modell, speziell optimiert für die Nutzung leistungsstarker Agenten-Tools."
|
|
1912
|
+
},
|
|
1913
|
+
"grok-4-1-fast-reasoning": {
|
|
1914
|
+
"description": "Modernes multimodales Modell, speziell optimiert für die Nutzung leistungsstarker Agenten-Tools."
|
|
1915
|
+
},
|
|
1910
1916
|
"grok-4-fast-non-reasoning": {
|
|
1911
1917
|
"description": "Wir freuen uns, Grok 4 Fast vorzustellen, unseren neuesten Fortschritt bei kosteneffizienten Inferenzmodellen."
|
|
1912
1918
|
},
|
package/locales/en-US/file.json
CHANGED
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"editedBy": "Edited by {{name}}",
|
|
39
39
|
"editorPlaceholder": "Type document content, press / to open command menu",
|
|
40
40
|
"empty": {
|
|
41
|
-
"createNewDocument": "Create New
|
|
42
|
-
"title": "Select a
|
|
41
|
+
"createNewDocument": "Create New Page",
|
|
42
|
+
"title": "Select a page to start",
|
|
43
43
|
"uploadMarkdown": "Upload Markdown File"
|
|
44
44
|
},
|
|
45
45
|
"linkCopied": "Link copied",
|
|
@@ -55,22 +55,21 @@
|
|
|
55
55
|
},
|
|
56
56
|
"documentList": {
|
|
57
57
|
"copyContent": "Copy All",
|
|
58
|
-
"documentCount": "Total {{count}} documents",
|
|
59
58
|
"duplicate": "Duplicate",
|
|
60
59
|
"empty": "No documents yet. Click the button above to create your first one.",
|
|
61
60
|
"noResults": "No matching documents found.",
|
|
62
|
-
"
|
|
61
|
+
"pageCount": "{{count}} pages in total",
|
|
62
|
+
"selectNote": "Select a document to start editing",
|
|
63
63
|
"untitled": "Untitled"
|
|
64
64
|
},
|
|
65
65
|
"empty": "No files or folders have been uploaded yet.",
|
|
66
66
|
"header": {
|
|
67
67
|
"actions": {
|
|
68
68
|
"newFolder": "New Folder",
|
|
69
|
-
"newPage": "New
|
|
69
|
+
"newPage": "New Page",
|
|
70
70
|
"uploadFile": "Upload File",
|
|
71
71
|
"uploadFolder": "Upload Folder"
|
|
72
72
|
},
|
|
73
|
-
"newDocumentButton": "New Document",
|
|
74
73
|
"newNoteDialog": {
|
|
75
74
|
"cancel": "Cancel",
|
|
76
75
|
"editTitle": "Edit Document",
|
|
@@ -80,17 +79,18 @@
|
|
|
80
79
|
"save": "Save",
|
|
81
80
|
"saveError": "Failed to save the document. Please try again.",
|
|
82
81
|
"saveSuccess": "Document saved successfully.",
|
|
83
|
-
"title": "New
|
|
82
|
+
"title": "New Page",
|
|
84
83
|
"updateSuccess": "Document updated successfully."
|
|
85
84
|
},
|
|
85
|
+
"newPageButton": "New Page",
|
|
86
86
|
"uploadButton": "Upload"
|
|
87
87
|
},
|
|
88
88
|
"home": {
|
|
89
89
|
"getStarted": "Get Started",
|
|
90
90
|
"greeting": "Get Started",
|
|
91
91
|
"quickActions": "Quick Actions",
|
|
92
|
-
"recentDocuments": "Recent Documents",
|
|
93
92
|
"recentFiles": "Recent Files",
|
|
93
|
+
"recentPages": "Recent Documents",
|
|
94
94
|
"subtitle": "Welcome to your knowledge base. Start managing your documents here.",
|
|
95
95
|
"uploadEntries": {
|
|
96
96
|
"files": {
|
|
@@ -102,8 +102,8 @@
|
|
|
102
102
|
"knowledgeBase": {
|
|
103
103
|
"title": "Create Knowledge Base"
|
|
104
104
|
},
|
|
105
|
-
"
|
|
106
|
-
"title": "
|
|
105
|
+
"newPage": {
|
|
106
|
+
"title": "New Page"
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
109
|
},
|
|
@@ -142,8 +142,8 @@
|
|
|
142
142
|
"downloadFile": "Download File",
|
|
143
143
|
"unsupportedFileAndContact": "This file format is not currently supported for online preview. If you have a request for previewing, feel free to <1>contact us</1>."
|
|
144
144
|
},
|
|
145
|
-
"searchDocumentPlaceholder": "Search documents",
|
|
146
145
|
"searchFilePlaceholder": "Search Files",
|
|
146
|
+
"searchPagePlaceholder": "Search Pages",
|
|
147
147
|
"tab": {
|
|
148
148
|
"all": "All",
|
|
149
149
|
"audios": "Audio",
|
|
@@ -156,9 +156,7 @@
|
|
|
156
156
|
"websites": "Websites"
|
|
157
157
|
},
|
|
158
158
|
"title": "Knowledge Base",
|
|
159
|
-
"toggleLeftPanel":
|
|
160
|
-
"title": "Show/Hide Left Panel"
|
|
161
|
-
},
|
|
159
|
+
"toggleLeftPanel": "Show/Hide Left Panel",
|
|
162
160
|
"uploadDock": {
|
|
163
161
|
"body": {
|
|
164
162
|
"collapse": "Collapse",
|
|
@@ -1907,6 +1907,12 @@
|
|
|
1907
1907
|
"grok-4-0709": {
|
|
1908
1908
|
"description": "xAI's Grok 4, featuring strong reasoning capabilities."
|
|
1909
1909
|
},
|
|
1910
|
+
"grok-4-1-fast-non-reasoning": {
|
|
1911
|
+
"description": "Cutting-edge multimodal model optimized specifically for high-performance agent tool invocation."
|
|
1912
|
+
},
|
|
1913
|
+
"grok-4-1-fast-reasoning": {
|
|
1914
|
+
"description": "Cutting-edge multimodal model optimized specifically for high-performance agent tool invocation."
|
|
1915
|
+
},
|
|
1910
1916
|
"grok-4-fast-non-reasoning": {
|
|
1911
1917
|
"description": "We are excited to release Grok 4 Fast, our latest advancement in cost-effective reasoning models."
|
|
1912
1918
|
},
|
package/locales/es-ES/file.json
CHANGED
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
},
|
|
56
56
|
"documentList": {
|
|
57
57
|
"copyContent": "Copiar todo el contenido",
|
|
58
|
-
"documentCount": "Total de {{count}} documentos",
|
|
59
58
|
"duplicate": "Crear una copia",
|
|
60
|
-
"empty": "
|
|
59
|
+
"empty": "Aún no hay documentos. Haz clic en el botón de arriba para crear tu primer documento.",
|
|
61
60
|
"noResults": "No se encontraron documentos coincidentes",
|
|
61
|
+
"pageCount": "Total de {{count}} documentos",
|
|
62
62
|
"selectNote": "Selecciona un documento para comenzar a editar",
|
|
63
63
|
"untitled": "Sin título"
|
|
64
64
|
},
|
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
"uploadFile": "Subir archivo",
|
|
71
71
|
"uploadFolder": "Subir carpeta"
|
|
72
72
|
},
|
|
73
|
-
"newDocumentButton": "Nuevo documento",
|
|
74
73
|
"newNoteDialog": {
|
|
75
74
|
"cancel": "Cancelar",
|
|
76
75
|
"editTitle": "Editar documento",
|
|
@@ -83,14 +82,15 @@
|
|
|
83
82
|
"title": "Nuevo documento",
|
|
84
83
|
"updateSuccess": "Documento actualizado con éxito"
|
|
85
84
|
},
|
|
85
|
+
"newPageButton": "Nuevo documento",
|
|
86
86
|
"uploadButton": "Subir"
|
|
87
87
|
},
|
|
88
88
|
"home": {
|
|
89
89
|
"getStarted": "Comenzar",
|
|
90
90
|
"greeting": "Comenzar",
|
|
91
91
|
"quickActions": "Acciones rápidas",
|
|
92
|
-
"recentDocuments": "Documentos recientes",
|
|
93
92
|
"recentFiles": "Archivos recientes",
|
|
93
|
+
"recentPages": "Páginas recientes",
|
|
94
94
|
"subtitle": "Bienvenido a tu base de conocimientos. Comienza aquí a gestionar tus documentos y notas",
|
|
95
95
|
"uploadEntries": {
|
|
96
96
|
"files": {
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"knowledgeBase": {
|
|
103
103
|
"title": "Nueva base de conocimientos"
|
|
104
104
|
},
|
|
105
|
-
"
|
|
105
|
+
"newPage": {
|
|
106
106
|
"title": "Nuevo documento"
|
|
107
107
|
}
|
|
108
108
|
}
|
|
@@ -142,8 +142,8 @@
|
|
|
142
142
|
"downloadFile": "Descargar archivo",
|
|
143
143
|
"unsupportedFileAndContact": "Este formato de archivo no es compatible con la vista previa en línea. Si desea solicitar una vista previa, no dude en <1>contactarnos</1>."
|
|
144
144
|
},
|
|
145
|
-
"searchDocumentPlaceholder": "Buscar documentos",
|
|
146
145
|
"searchFilePlaceholder": "Buscar archivo",
|
|
146
|
+
"searchPagePlaceholder": "Buscar documentos",
|
|
147
147
|
"tab": {
|
|
148
148
|
"all": "Todo",
|
|
149
149
|
"audios": "Audios",
|
|
@@ -156,9 +156,7 @@
|
|
|
156
156
|
"websites": "Sitios web"
|
|
157
157
|
},
|
|
158
158
|
"title": "Base de conocimientos",
|
|
159
|
-
"toggleLeftPanel":
|
|
160
|
-
"title": "Mostrar/Ocultar panel izquierdo"
|
|
161
|
-
},
|
|
159
|
+
"toggleLeftPanel": "Mostrar/Ocultar panel izquierdo",
|
|
162
160
|
"uploadDock": {
|
|
163
161
|
"body": {
|
|
164
162
|
"collapse": "Colapsar",
|
|
@@ -1907,6 +1907,12 @@
|
|
|
1907
1907
|
"grok-4-0709": {
|
|
1908
1908
|
"description": "Grok 4 de xAI, con potentes capacidades de razonamiento."
|
|
1909
1909
|
},
|
|
1910
|
+
"grok-4-1-fast-non-reasoning": {
|
|
1911
|
+
"description": "Modelo multimodal de vanguardia, optimizado específicamente para llamadas de herramientas de agente de alto rendimiento."
|
|
1912
|
+
},
|
|
1913
|
+
"grok-4-1-fast-reasoning": {
|
|
1914
|
+
"description": "Modelo multimodal de vanguardia, optimizado específicamente para llamadas de herramientas de agente de alto rendimiento."
|
|
1915
|
+
},
|
|
1910
1916
|
"grok-4-fast-non-reasoning": {
|
|
1911
1917
|
"description": "Nos complace anunciar Grok 4 Fast, nuestro último avance en modelos de inferencia con alta relación costo-beneficio."
|
|
1912
1918
|
},
|
package/locales/fa-IR/file.json
CHANGED
|
@@ -55,11 +55,11 @@
|
|
|
55
55
|
},
|
|
56
56
|
"documentList": {
|
|
57
57
|
"copyContent": "کپی کل محتوا",
|
|
58
|
-
"documentCount": "مجموع {{count}} سند",
|
|
59
58
|
"duplicate": "ایجاد نسخه مشابه",
|
|
60
|
-
"empty": "هیچ سندی
|
|
61
|
-
"noResults": "سندی مطابق با جستجو یافت نشد",
|
|
62
|
-
"
|
|
59
|
+
"empty": "هنوز هیچ سندی وجود ندارد، برای ایجاد اولین سند خود روی دکمه بالا کلیک کنید",
|
|
60
|
+
"noResults": "هیچ سندی مطابق با جستجو یافت نشد",
|
|
61
|
+
"pageCount": "مجموعاً {{count}} سند",
|
|
62
|
+
"selectNote": "برای ویرایش، یک سند را انتخاب کنید",
|
|
63
63
|
"untitled": "بدون عنوان"
|
|
64
64
|
},
|
|
65
65
|
"empty": "هیچ فایل/پوشهای بارگذاری نشده است",
|
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
"uploadFile": "بارگذاری فایل",
|
|
71
71
|
"uploadFolder": "بارگذاری پوشه"
|
|
72
72
|
},
|
|
73
|
-
"newDocumentButton": "سند جدید",
|
|
74
73
|
"newNoteDialog": {
|
|
75
74
|
"cancel": "لغو",
|
|
76
75
|
"editTitle": "ویرایش سند",
|
|
@@ -83,14 +82,15 @@
|
|
|
83
82
|
"title": "سند جدید",
|
|
84
83
|
"updateSuccess": "سند با موفقیت بهروزرسانی شد"
|
|
85
84
|
},
|
|
85
|
+
"newPageButton": "ایجاد سند جدید",
|
|
86
86
|
"uploadButton": "بارگذاری"
|
|
87
87
|
},
|
|
88
88
|
"home": {
|
|
89
89
|
"getStarted": "شروع کنید",
|
|
90
90
|
"greeting": "شروع",
|
|
91
91
|
"quickActions": "دسترسی سریع",
|
|
92
|
-
"recentDocuments": "اسناد اخیر",
|
|
93
92
|
"recentFiles": "فایلهای اخیر",
|
|
93
|
+
"recentPages": "اسناد اخیر",
|
|
94
94
|
"subtitle": "به پایگاه دانش خوش آمدید، از اینجا مدیریت اسناد خود را آغاز کنید",
|
|
95
95
|
"uploadEntries": {
|
|
96
96
|
"files": {
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"knowledgeBase": {
|
|
103
103
|
"title": "ایجاد پایگاه دانش جدید"
|
|
104
104
|
},
|
|
105
|
-
"
|
|
105
|
+
"newPage": {
|
|
106
106
|
"title": "ایجاد سند جدید"
|
|
107
107
|
}
|
|
108
108
|
}
|
|
@@ -142,8 +142,8 @@
|
|
|
142
142
|
"downloadFile": "دانلود فایل",
|
|
143
143
|
"unsupportedFileAndContact": "فرمت این فایل در حال حاضر از پیشنمایش آنلاین پشتیبانی نمیکند. در صورت نیاز به پیشنمایش، لطفاً <1>به ما بازخورد دهید</1>."
|
|
144
144
|
},
|
|
145
|
-
"searchDocumentPlaceholder": "جستجوی سند",
|
|
146
145
|
"searchFilePlaceholder": "جستجوی فایل",
|
|
146
|
+
"searchPagePlaceholder": "جستجوی سند",
|
|
147
147
|
"tab": {
|
|
148
148
|
"all": "همه",
|
|
149
149
|
"audios": "صداها",
|
|
@@ -156,9 +156,7 @@
|
|
|
156
156
|
"websites": "وبسایتها"
|
|
157
157
|
},
|
|
158
158
|
"title": "پایگاه دانش",
|
|
159
|
-
"toggleLeftPanel":
|
|
160
|
-
"title": "نمایش/پنهان کردن پانل سمت چپ"
|
|
161
|
-
},
|
|
159
|
+
"toggleLeftPanel": "نمایش/پنهانسازی پنل سمت چپ",
|
|
162
160
|
"uploadDock": {
|
|
163
161
|
"body": {
|
|
164
162
|
"collapse": "بستن",
|
|
@@ -1907,6 +1907,12 @@
|
|
|
1907
1907
|
"grok-4-0709": {
|
|
1908
1908
|
"description": "Grok 4 از xAI با توانایی استدلال قدرتمند."
|
|
1909
1909
|
},
|
|
1910
|
+
"grok-4-1-fast-non-reasoning": {
|
|
1911
|
+
"description": "مدل پیشرفته چندوجهی که بهطور ویژه برای بهینهسازی فراخوانی ابزارهای نماینده با عملکرد بالا طراحی شده است."
|
|
1912
|
+
},
|
|
1913
|
+
"grok-4-1-fast-reasoning": {
|
|
1914
|
+
"description": "مدل پیشرفته چندوجهی که بهطور ویژه برای بهینهسازی فراخوانی ابزارهای نماینده با عملکرد بالا طراحی شده است."
|
|
1915
|
+
},
|
|
1910
1916
|
"grok-4-fast-non-reasoning": {
|
|
1911
1917
|
"description": "خوشحالیم که Grok 4 Fast را منتشر میکنیم، که جدیدترین پیشرفت ما در زمینه مدلهای استنتاج با صرفهجویی در هزینه است."
|
|
1912
1918
|
},
|
package/locales/fr-FR/file.json
CHANGED
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
},
|
|
56
56
|
"documentList": {
|
|
57
57
|
"copyContent": "Copier tout le contenu",
|
|
58
|
-
"documentCount": "{{count}} documents au total",
|
|
59
58
|
"duplicate": "Créer une copie",
|
|
60
59
|
"empty": "Aucun document pour le moment, cliquez sur le bouton ci-dessus pour créer votre premier document",
|
|
61
60
|
"noResults": "Aucun document correspondant trouvé",
|
|
61
|
+
"pageCount": "{{count}} documents au total",
|
|
62
62
|
"selectNote": "Sélectionnez un document pour commencer l’édition",
|
|
63
63
|
"untitled": "Sans titre"
|
|
64
64
|
},
|
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
"uploadFile": "Télécharger un fichier",
|
|
71
71
|
"uploadFolder": "Télécharger un dossier"
|
|
72
72
|
},
|
|
73
|
-
"newDocumentButton": "Nouveau document",
|
|
74
73
|
"newNoteDialog": {
|
|
75
74
|
"cancel": "Annuler",
|
|
76
75
|
"editTitle": "Modifier le document",
|
|
@@ -83,14 +82,15 @@
|
|
|
83
82
|
"title": "Nouveau document",
|
|
84
83
|
"updateSuccess": "Document mis à jour avec succès"
|
|
85
84
|
},
|
|
85
|
+
"newPageButton": "Nouveau document",
|
|
86
86
|
"uploadButton": "Télécharger"
|
|
87
87
|
},
|
|
88
88
|
"home": {
|
|
89
89
|
"getStarted": "Commencer",
|
|
90
90
|
"greeting": "Commencer",
|
|
91
91
|
"quickActions": "Actions rapides",
|
|
92
|
-
"recentDocuments": "Documents récents",
|
|
93
92
|
"recentFiles": "Fichiers récents",
|
|
93
|
+
"recentPages": "Pages récentes",
|
|
94
94
|
"subtitle": "Bienvenue dans votre base de connaissances, commencez ici à gérer vos documents",
|
|
95
95
|
"uploadEntries": {
|
|
96
96
|
"files": {
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"knowledgeBase": {
|
|
103
103
|
"title": "Créer une base de connaissances"
|
|
104
104
|
},
|
|
105
|
-
"
|
|
105
|
+
"newPage": {
|
|
106
106
|
"title": "Nouveau document"
|
|
107
107
|
}
|
|
108
108
|
}
|
|
@@ -142,8 +142,8 @@
|
|
|
142
142
|
"downloadFile": "Télécharger le fichier",
|
|
143
143
|
"unsupportedFileAndContact": "Ce format de fichier n'est pas encore pris en charge pour l'aperçu en ligne. Si vous souhaitez un aperçu, n'hésitez pas à <1>nous contacter</1>."
|
|
144
144
|
},
|
|
145
|
-
"searchDocumentPlaceholder": "Rechercher un document",
|
|
146
145
|
"searchFilePlaceholder": "Rechercher un fichier",
|
|
146
|
+
"searchPagePlaceholder": "Rechercher un document",
|
|
147
147
|
"tab": {
|
|
148
148
|
"all": "Tout",
|
|
149
149
|
"audios": "Audio",
|
|
@@ -156,9 +156,7 @@
|
|
|
156
156
|
"websites": "Sites web"
|
|
157
157
|
},
|
|
158
158
|
"title": "Base de connaissances",
|
|
159
|
-
"toggleLeftPanel":
|
|
160
|
-
"title": "Afficher/Masquer le panneau de gauche"
|
|
161
|
-
},
|
|
159
|
+
"toggleLeftPanel": "Afficher/Masquer le panneau de gauche",
|
|
162
160
|
"uploadDock": {
|
|
163
161
|
"body": {
|
|
164
162
|
"collapse": "Réduire",
|
|
@@ -1907,6 +1907,12 @@
|
|
|
1907
1907
|
"grok-4-0709": {
|
|
1908
1908
|
"description": "Grok 4 de xAI, doté de puissantes capacités de raisonnement."
|
|
1909
1909
|
},
|
|
1910
|
+
"grok-4-1-fast-non-reasoning": {
|
|
1911
|
+
"description": "Modèle multimodal de pointe, spécialement optimisé pour l'appel d'outils d'agents haute performance."
|
|
1912
|
+
},
|
|
1913
|
+
"grok-4-1-fast-reasoning": {
|
|
1914
|
+
"description": "Modèle multimodal de pointe, spécialement optimisé pour l'appel d'outils d'agents haute performance."
|
|
1915
|
+
},
|
|
1910
1916
|
"grok-4-fast-non-reasoning": {
|
|
1911
1917
|
"description": "Nous sommes ravis de présenter Grok 4 Fast, notre dernière avancée dans les modèles de raisonnement à rapport coût-efficacité optimisé."
|
|
1912
1918
|
},
|