@vertesia/ui 1.0.0-dev.20260227.112605Z → 1.0.0
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/lib/esm/core/components/SelectList.js +3 -1
- package/lib/esm/core/components/SelectList.js.map +1 -1
- package/lib/esm/core/components/SidePanel.js +2 -2
- package/lib/esm/core/components/SidePanel.js.map +1 -1
- package/lib/esm/core/components/index.js +0 -5
- package/lib/esm/core/components/index.js.map +1 -1
- package/lib/esm/core/components/shadcn/breadcrumb.js +11 -7
- package/lib/esm/core/components/shadcn/breadcrumb.js.map +1 -1
- package/lib/esm/core/components/shadcn/button.js +5 -3
- package/lib/esm/core/components/shadcn/button.js.map +1 -1
- package/lib/esm/core/components/shadcn/collaspible.js +14 -0
- package/lib/esm/core/components/shadcn/collaspible.js.map +1 -0
- package/lib/esm/core/components/shadcn/dropdown.js +61 -0
- package/lib/esm/core/components/shadcn/dropdown.js.map +1 -0
- package/lib/esm/core/components/shadcn/filters/comboBox/DateCombobox.js +3 -1
- package/lib/esm/core/components/shadcn/filters/comboBox/DateCombobox.js.map +1 -1
- package/lib/esm/core/components/shadcn/filters/comboBox/SelectCombobox.js +3 -1
- package/lib/esm/core/components/shadcn/filters/comboBox/SelectCombobox.js.map +1 -1
- package/lib/esm/core/components/shadcn/filters/comboBox/StringListCombobox.js +1 -1
- package/lib/esm/core/components/shadcn/filters/comboBox/StringListCombobox.js.map +1 -1
- package/lib/esm/core/components/shadcn/filters/filter/StringListFilter.js +1 -1
- package/lib/esm/core/components/shadcn/filters/filter/StringListFilter.js.map +1 -1
- package/lib/esm/core/components/shadcn/filters/filter/dateFilter.js +4 -2
- package/lib/esm/core/components/shadcn/filters/filter/dateFilter.js.map +1 -1
- package/lib/esm/core/components/shadcn/filters/filterBar.js +7 -4
- package/lib/esm/core/components/shadcn/filters/filterBar.js.map +1 -1
- package/lib/esm/core/components/shadcn/index.js +4 -0
- package/lib/esm/core/components/shadcn/index.js.map +1 -1
- package/lib/esm/core/components/shadcn/modal/ConfirmModal.js +4 -2
- package/lib/esm/core/components/shadcn/modal/ConfirmModal.js.map +1 -1
- package/lib/esm/core/components/shadcn/modal/DeleteModal.js +5 -3
- package/lib/esm/core/components/shadcn/modal/DeleteModal.js.map +1 -1
- package/lib/esm/core/components/shadcn/popover.js +11 -7
- package/lib/esm/core/components/shadcn/popover.js.map +1 -1
- package/lib/esm/core/components/shadcn/radioGroup.js +29 -0
- package/lib/esm/core/components/shadcn/radioGroup.js.map +1 -0
- package/lib/esm/core/components/shadcn/selectBox.js +1 -1
- package/lib/esm/core/components/shadcn/switch.js +19 -0
- package/lib/esm/core/components/shadcn/switch.js.map +1 -0
- package/lib/esm/core/components/shadcn/tabs.js +6 -6
- package/lib/esm/core/components/shadcn/tabs.js.map +1 -1
- package/lib/esm/core/components/shadcn/theme/ThemeSwitcher.js +8 -6
- package/lib/esm/core/components/shadcn/theme/ThemeSwitcher.js.map +1 -1
- package/lib/esm/core/components/shadcn/tooltip.js +1 -1
- package/lib/esm/core/components/shadcn/tooltip.js.map +1 -1
- package/lib/esm/core/components/toast/NotificationPanel.js +3 -3
- package/lib/esm/core/components/toast/NotificationPanel.js.map +1 -1
- package/lib/esm/env/index.js +11 -1
- package/lib/esm/env/index.js.map +1 -1
- package/lib/esm/features/agent/PayloadBuilder.js +87 -15
- package/lib/esm/features/agent/PayloadBuilder.js.map +1 -1
- package/lib/esm/features/agent/chat/AgentRightPanel.js +159 -0
- package/lib/esm/features/agent/chat/AgentRightPanel.js.map +1 -0
- package/lib/esm/features/agent/chat/ArtifactsTab.js +69 -0
- package/lib/esm/features/agent/chat/ArtifactsTab.js.map +1 -0
- package/lib/esm/features/agent/chat/AskUserWidget.js +12 -6
- package/lib/esm/features/agent/chat/AskUserWidget.js.map +1 -1
- package/lib/esm/features/agent/chat/DocumentPanel.js +6 -3
- package/lib/esm/features/agent/chat/DocumentPanel.js.map +1 -1
- package/lib/esm/features/agent/chat/ImageLightbox.js +3 -1
- package/lib/esm/features/agent/chat/ImageLightbox.js.map +1 -1
- package/lib/esm/features/agent/chat/ModernAgentConversation.js +243 -106
- package/lib/esm/features/agent/chat/ModernAgentConversation.js.map +1 -1
- package/lib/esm/features/agent/chat/ModernAgentOutput/AllMessagesMixed.js +122 -52
- package/lib/esm/features/agent/chat/ModernAgentOutput/AllMessagesMixed.js.map +1 -1
- package/lib/esm/features/agent/chat/ModernAgentOutput/BatchProgressPanel.js +5 -3
- package/lib/esm/features/agent/chat/ModernAgentOutput/BatchProgressPanel.js.map +1 -1
- package/lib/esm/features/agent/chat/ModernAgentOutput/Header.js +57 -18
- package/lib/esm/features/agent/chat/ModernAgentOutput/Header.js.map +1 -1
- package/lib/esm/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.js +82 -83
- package/lib/esm/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.js.map +1 -1
- package/lib/esm/features/agent/chat/ModernAgentOutput/MessageInput.js +16 -14
- package/lib/esm/features/agent/chat/ModernAgentOutput/MessageInput.js.map +1 -1
- package/lib/esm/features/agent/chat/ModernAgentOutput/MessageItem.js +20 -5
- package/lib/esm/features/agent/chat/ModernAgentOutput/MessageItem.js.map +1 -1
- package/lib/esm/features/agent/chat/ModernAgentOutput/PlanPanel.js +8 -6
- package/lib/esm/features/agent/chat/ModernAgentOutput/PlanPanel.js.map +1 -1
- package/lib/esm/features/agent/chat/ModernAgentOutput/SlidingPlanPanel.js +12 -10
- package/lib/esm/features/agent/chat/ModernAgentOutput/SlidingPlanPanel.js.map +1 -1
- package/lib/esm/features/agent/chat/ModernAgentOutput/StreamingMessage.js +5 -3
- package/lib/esm/features/agent/chat/ModernAgentOutput/StreamingMessage.js.map +1 -1
- package/lib/esm/features/agent/chat/ModernAgentOutput/ToolCallGroup.js +104 -13
- package/lib/esm/features/agent/chat/ModernAgentOutput/ToolCallGroup.js.map +1 -1
- package/lib/esm/features/agent/chat/ModernAgentOutput/WorkstreamTabs.js +9 -5
- package/lib/esm/features/agent/chat/ModernAgentOutput/WorkstreamTabs.js.map +1 -1
- package/lib/esm/features/agent/chat/ModernAgentOutput/utils.js +160 -76
- package/lib/esm/features/agent/chat/ModernAgentOutput/utils.js.map +1 -1
- package/lib/esm/features/agent/chat/SlidingThinkingIndicator.js +3 -1
- package/lib/esm/features/agent/chat/SlidingThinkingIndicator.js.map +1 -1
- package/lib/esm/features/agent/chat/VegaLiteChart.js +14 -2
- package/lib/esm/features/agent/chat/VegaLiteChart.js.map +1 -1
- package/lib/esm/features/agent/chat/hooks/useAgentPlans.js +3 -8
- package/lib/esm/features/agent/chat/hooks/useAgentPlans.js.map +1 -1
- package/lib/esm/features/agent/chat/hooks/useAgentStream.js +75 -16
- package/lib/esm/features/agent/chat/hooks/useAgentStream.js.map +1 -1
- package/lib/esm/features/agent/chat/hooks/useArtifacts.js +108 -0
- package/lib/esm/features/agent/chat/hooks/useArtifacts.js.map +1 -0
- package/lib/esm/features/agent/chat/hooks/useDocumentPanel.js +56 -5
- package/lib/esm/features/agent/chat/hooks/useDocumentPanel.js.map +1 -1
- package/lib/esm/features/agent/chat/hooks/useFileProcessing.js +12 -10
- package/lib/esm/features/agent/chat/hooks/useFileProcessing.js.map +1 -1
- package/lib/esm/features/errors/PanelErrorBoundary.js +3 -1
- package/lib/esm/features/errors/PanelErrorBoundary.js.map +1 -1
- package/lib/esm/features/facets/AgentRunnerFacetsNav.js +45 -33
- package/lib/esm/features/facets/AgentRunnerFacetsNav.js.map +1 -1
- package/lib/esm/features/facets/RunsFacetsNav.js +1 -1
- package/lib/esm/features/facets/RunsFacetsNav.js.map +1 -1
- package/lib/esm/features/facets/index.js +1 -1
- package/lib/esm/features/facets/index.js.map +1 -1
- package/lib/esm/features/layout/GenericPageNavHeader.js +40 -28
- package/lib/esm/features/layout/GenericPageNavHeader.js.map +1 -1
- package/lib/esm/features/layout/NotFoundView.js +3 -1
- package/lib/esm/features/layout/NotFoundView.js.map +1 -1
- package/lib/esm/features/magic-pdf/AnnotatedImageSlider.js +9 -5
- package/lib/esm/features/magic-pdf/AnnotatedImageSlider.js.map +1 -1
- package/lib/esm/features/magic-pdf/DownloadPopover.js +5 -4
- package/lib/esm/features/magic-pdf/DownloadPopover.js.map +1 -1
- package/lib/esm/features/magic-pdf/MagicPdfView.js +8 -5
- package/lib/esm/features/magic-pdf/MagicPdfView.js.map +1 -1
- package/lib/esm/features/pdf-viewer/PdfPageSlider.js +9 -5
- package/lib/esm/features/pdf-viewer/PdfPageSlider.js.map +1 -1
- package/lib/esm/features/pdf-viewer/SimplePdfViewer.js +5 -3
- package/lib/esm/features/pdf-viewer/SimplePdfViewer.js.map +1 -1
- package/lib/esm/features/permissions/UserPermissionsProvider.js +3 -1
- package/lib/esm/features/permissions/UserPermissionsProvider.js.map +1 -1
- package/lib/esm/features/store/collections/BrowseCollectionView.js +9 -1
- package/lib/esm/features/store/collections/BrowseCollectionView.js.map +1 -1
- package/lib/esm/features/store/collections/CollectionsTable.js +14 -7
- package/lib/esm/features/store/collections/CollectionsTable.js.map +1 -1
- package/lib/esm/features/store/collections/CreateCollection.js +21 -18
- package/lib/esm/features/store/collections/CreateCollection.js.map +1 -1
- package/lib/esm/features/store/collections/EditCollectionView.js +23 -19
- package/lib/esm/features/store/collections/EditCollectionView.js.map +1 -1
- package/lib/esm/features/store/collections/SelectCollection.js +25 -10
- package/lib/esm/features/store/collections/SelectCollection.js.map +1 -1
- package/lib/esm/features/store/collections/SharedPropsEditor.js +5 -3
- package/lib/esm/features/store/collections/SharedPropsEditor.js.map +1 -1
- package/lib/esm/features/store/collections/SyncMemberHeadsToggle.js +5 -3
- package/lib/esm/features/store/collections/SyncMemberHeadsToggle.js.map +1 -1
- package/lib/esm/features/store/objects/DocumentPreviewPanel.js +14 -12
- package/lib/esm/features/store/objects/DocumentPreviewPanel.js.map +1 -1
- package/lib/esm/features/store/objects/DocumentSearchResults.js +15 -5
- package/lib/esm/features/store/objects/DocumentSearchResults.js.map +1 -1
- package/lib/esm/features/store/objects/DocumentTable.js +10 -7
- package/lib/esm/features/store/objects/DocumentTable.js.map +1 -1
- package/lib/esm/features/store/objects/ExportPropertiesModal.js +5 -2
- package/lib/esm/features/store/objects/ExportPropertiesModal.js.map +1 -1
- package/lib/esm/features/store/objects/components/ContentDispositionButton.js +3 -1
- package/lib/esm/features/store/objects/components/ContentDispositionButton.js.map +1 -1
- package/lib/esm/features/store/objects/components/ContentOverview.js +55 -40
- package/lib/esm/features/store/objects/components/ContentOverview.js.map +1 -1
- package/lib/esm/features/store/objects/components/DocumentIcon.js +4 -3
- package/lib/esm/features/store/objects/components/DocumentIcon.js.map +1 -1
- package/lib/esm/features/store/objects/components/PropertiesEditorModal.js +13 -11
- package/lib/esm/features/store/objects/components/PropertiesEditorModal.js.map +1 -1
- package/lib/esm/features/store/objects/components/SaveVersionConfirmModal.js +15 -18
- package/lib/esm/features/store/objects/components/SaveVersionConfirmModal.js.map +1 -1
- package/lib/esm/features/store/objects/components/SelectDocument.js +9 -6
- package/lib/esm/features/store/objects/components/SelectDocument.js.map +1 -1
- package/lib/esm/features/store/objects/components/TextEditorPanel.js +97 -0
- package/lib/esm/features/store/objects/components/TextEditorPanel.js.map +1 -0
- package/lib/esm/features/store/objects/components/VectorSearchWidget.js +3 -1
- package/lib/esm/features/store/objects/components/VectorSearchWidget.js.map +1 -1
- package/lib/esm/features/store/objects/components/useContentPanelHooks.js +4 -2
- package/lib/esm/features/store/objects/components/useContentPanelHooks.js.map +1 -1
- package/lib/esm/features/store/objects/components/useDownloadFile.js +12 -10
- package/lib/esm/features/store/objects/components/useDownloadFile.js.map +1 -1
- package/lib/esm/features/store/objects/layout/documentLayout.js +10 -6
- package/lib/esm/features/store/objects/layout/documentLayout.js.map +1 -1
- package/lib/esm/features/store/objects/layout/renderers.js +10 -1
- package/lib/esm/features/store/objects/layout/renderers.js.map +1 -1
- package/lib/esm/features/store/objects/search/DocumentSearchContext.js +3 -2
- package/lib/esm/features/store/objects/search/DocumentSearchContext.js.map +1 -1
- package/lib/esm/features/store/objects/search/DocumentSearchProvider.js +3 -0
- package/lib/esm/features/store/objects/search/DocumentSearchProvider.js.map +1 -1
- package/lib/esm/features/store/objects/selection/ObjectsActionContext.js +22 -109
- package/lib/esm/features/store/objects/selection/ObjectsActionContext.js.map +1 -1
- package/lib/esm/features/store/objects/selection/ObjectsActionContextClass.js +50 -0
- package/lib/esm/features/store/objects/selection/ObjectsActionContextClass.js.map +1 -0
- package/lib/esm/features/store/objects/selection/ObjectsActionHooks.js +27 -0
- package/lib/esm/features/store/objects/selection/ObjectsActionHooks.js.map +1 -0
- package/lib/esm/features/store/objects/selection/SelectionActions.js +10 -6
- package/lib/esm/features/store/objects/selection/SelectionActions.js.map +1 -1
- package/lib/esm/features/store/objects/selection/actions/AddToCollectionAction.js +17 -12
- package/lib/esm/features/store/objects/selection/actions/AddToCollectionAction.js.map +1 -1
- package/lib/esm/features/store/objects/selection/actions/ChangeTypeAction.js +9 -5
- package/lib/esm/features/store/objects/selection/actions/ChangeTypeAction.js.map +1 -1
- package/lib/esm/features/store/objects/selection/actions/ConfirmAction.js +4 -2
- package/lib/esm/features/store/objects/selection/actions/ConfirmAction.js.map +1 -1
- package/lib/esm/features/store/objects/selection/actions/DeleteObjectsAction.js +24 -23
- package/lib/esm/features/store/objects/selection/actions/DeleteObjectsAction.js.map +1 -1
- package/lib/esm/features/store/objects/selection/actions/ExportPropertiesAction.js +10 -5
- package/lib/esm/features/store/objects/selection/actions/ExportPropertiesAction.js.map +1 -1
- package/lib/esm/features/store/objects/selection/actions/RemoveFromCollectionAction.js +13 -9
- package/lib/esm/features/store/objects/selection/actions/RemoveFromCollectionAction.js.map +1 -1
- package/lib/esm/features/store/objects/selection/actions/StartWorkflowComponent.js +14 -8
- package/lib/esm/features/store/objects/selection/actions/StartWorkflowComponent.js.map +1 -1
- package/lib/esm/features/store/objects/upload/DocumentUploadModal.js +42 -39
- package/lib/esm/features/store/objects/upload/DocumentUploadModal.js.map +1 -1
- package/lib/esm/features/store/objects/upload/useSmartFileUploadProcessing.js +4 -2
- package/lib/esm/features/store/objects/upload/useSmartFileUploadProcessing.js.map +1 -1
- package/lib/esm/features/store/objects/upload/useUploadHandler.js +9 -7
- package/lib/esm/features/store/objects/upload/useUploadHandler.js.map +1 -1
- package/lib/esm/features/store/types/ContentObjectTypesSearch.js +6 -4
- package/lib/esm/features/store/types/ContentObjectTypesSearch.js.map +1 -1
- package/lib/esm/features/store/types/ContentObjectTypesTable.js +3 -1
- package/lib/esm/features/store/types/ContentObjectTypesTable.js.map +1 -1
- package/lib/esm/features/store/types/CreateOrUpdateTypeModal.js +6 -7
- package/lib/esm/features/store/types/CreateOrUpdateTypeModal.js.map +1 -1
- package/lib/esm/features/store/types/ObjectSchemaEditor.js +9 -7
- package/lib/esm/features/store/types/ObjectSchemaEditor.js.map +1 -1
- package/lib/esm/features/store/types/SelectContentType.js +9 -7
- package/lib/esm/features/store/types/SelectContentType.js.map +1 -1
- package/lib/esm/features/store/types/SelectContentTypeModal.js +5 -2
- package/lib/esm/features/store/types/SelectContentTypeModal.js.map +1 -1
- package/lib/esm/features/store/types/TableLayoutEditor.js +6 -4
- package/lib/esm/features/store/types/TableLayoutEditor.js.map +1 -1
- package/lib/esm/features/user/UserInfo.js +40 -50
- package/lib/esm/features/user/UserInfo.js.map +1 -1
- package/lib/esm/i18n/index.js +31 -0
- package/lib/esm/i18n/index.js.map +1 -0
- package/lib/esm/i18n/instance.js +46 -0
- package/lib/esm/i18n/instance.js.map +1 -0
- package/lib/esm/i18n/locales/ar.json +694 -0
- package/lib/esm/i18n/locales/de.json +662 -0
- package/lib/esm/i18n/locales/en.json +663 -0
- package/lib/esm/i18n/locales/es.json +668 -0
- package/lib/esm/i18n/locales/fr.json +670 -0
- package/lib/esm/i18n/locales/it.json +668 -0
- package/lib/esm/i18n/locales/ja.json +662 -0
- package/lib/esm/i18n/locales/ko.json +662 -0
- package/lib/esm/i18n/locales/pt.json +668 -0
- package/lib/esm/i18n/locales/ru.json +678 -0
- package/lib/esm/i18n/locales/tr.json +662 -0
- package/lib/esm/i18n/locales/zh-TW.json +662 -0
- package/lib/esm/i18n/locales/zh.json +662 -0
- package/lib/esm/layout/FullHeightLayout.js +3 -0
- package/lib/esm/layout/FullHeightLayout.js.map +1 -1
- package/lib/esm/layout/Navbar.js +3 -1
- package/lib/esm/layout/Navbar.js.map +1 -1
- package/lib/esm/layout/RegionTag.js +15 -0
- package/lib/esm/layout/RegionTag.js.map +1 -0
- package/lib/esm/layout/Sidebar.js +2 -2
- package/lib/esm/layout/Sidebar.js.map +1 -1
- package/lib/esm/layout/index.js +1 -0
- package/lib/esm/layout/index.js.map +1 -1
- package/lib/esm/router/HistoryNavigator.js +1 -1
- package/lib/esm/router/HistoryNavigator.js.map +1 -1
- package/lib/esm/router/Nav.js +5 -3
- package/lib/esm/router/Nav.js.map +1 -1
- package/lib/esm/router/NestedNavigationContext.js +4 -0
- package/lib/esm/router/NestedNavigationContext.js.map +1 -1
- package/lib/esm/router/NestedRouterProvider.js +3 -1
- package/lib/esm/router/NestedRouterProvider.js.map +1 -1
- package/lib/esm/router/Router.js +21 -6
- package/lib/esm/router/Router.js.map +1 -1
- package/lib/esm/session/UserSession.js +31 -0
- package/lib/esm/session/UserSession.js.map +1 -1
- package/lib/esm/session/UserSessionProvider.js +4 -0
- package/lib/esm/session/UserSessionProvider.js.map +1 -1
- package/lib/esm/session/auth/composable.js +1 -1
- package/lib/esm/session/auth/composable.js.map +1 -1
- package/lib/esm/session/auth/firebase.js +1 -1
- package/lib/esm/session/auth/firebase.js.map +1 -1
- package/lib/esm/session/auth/useCurrentTenant.js +3 -1
- package/lib/esm/session/auth/useCurrentTenant.js.map +1 -1
- package/lib/esm/shell/SplashScreen.js +3 -7
- package/lib/esm/shell/SplashScreen.js.map +1 -1
- package/lib/esm/shell/apps/StandaloneApp.js +5 -2
- package/lib/esm/shell/apps/StandaloneApp.js.map +1 -1
- package/lib/esm/shell/login/EnterpriseSigninButton.js +5 -3
- package/lib/esm/shell/login/EnterpriseSigninButton.js.map +1 -1
- package/lib/esm/shell/login/GitHubSignInButton.js +3 -7
- package/lib/esm/shell/login/GitHubSignInButton.js.map +1 -1
- package/lib/esm/shell/login/GoogleSignInButton.js +3 -1
- package/lib/esm/shell/login/GoogleSignInButton.js.map +1 -1
- package/lib/esm/shell/login/InviteAcceptModal.js +5 -2
- package/lib/esm/shell/login/InviteAcceptModal.js.map +1 -1
- package/lib/esm/shell/login/MicrosoftSigninButton.js +4 -6
- package/lib/esm/shell/login/MicrosoftSigninButton.js.map +1 -1
- package/lib/esm/shell/login/SigninScreen.js +6 -2
- package/lib/esm/shell/login/SigninScreen.js.map +1 -1
- package/lib/esm/shell/login/SignupForm.js +36 -34
- package/lib/esm/shell/login/SignupForm.js.map +1 -1
- package/lib/esm/shell/login/TerminalLogin.js +29 -22
- package/lib/esm/shell/login/TerminalLogin.js.map +1 -1
- package/lib/esm/shell/login/UserInfo.js +6 -4
- package/lib/esm/shell/login/UserInfo.js.map +1 -1
- package/lib/esm/shell/login/UserSessionMenu.js +3 -4
- package/lib/esm/shell/login/UserSessionMenu.js.map +1 -1
- package/lib/esm/widgets/index.js +0 -1
- package/lib/esm/widgets/index.js.map +1 -1
- package/lib/esm/widgets/json-view/JSONCode.js +1 -1
- package/lib/esm/widgets/json-view/JSONCode.js.map +1 -1
- package/lib/esm/widgets/json-view/JSONDisplay.js +6 -2
- package/lib/esm/widgets/json-view/JSONDisplay.js.map +1 -1
- package/lib/esm/widgets/json-view/JSONSwitcher.js +6 -0
- package/lib/esm/widgets/json-view/JSONSwitcher.js.map +1 -0
- package/lib/esm/widgets/json-view/JSONView.js +1 -1
- package/lib/esm/widgets/json-view/JSONView.js.map +1 -1
- package/lib/esm/widgets/json-view/index.js +1 -0
- package/lib/esm/widgets/json-view/index.js.map +1 -1
- package/lib/esm/widgets/markdown/ArtifactContentRenderer.js +6 -5
- package/lib/esm/widgets/markdown/ArtifactContentRenderer.js.map +1 -1
- package/lib/esm/widgets/markdown/CodeBlockContext.js +11 -0
- package/lib/esm/widgets/markdown/CodeBlockContext.js.map +1 -0
- package/lib/esm/widgets/markdown/MarkdownRenderer.js +11 -10
- package/lib/esm/widgets/markdown/MarkdownRenderer.js.map +1 -1
- package/lib/esm/widgets/markdown/codeBlockHandlers.js +11 -12
- package/lib/esm/widgets/markdown/codeBlockHandlers.js.map +1 -1
- package/lib/esm/widgets/markdown/index.js +10 -9
- package/lib/esm/widgets/markdown/index.js.map +1 -1
- package/lib/esm/widgets/markdown/remarkDirectiveHandler.js +0 -1
- package/lib/esm/widgets/markdown/remarkDirectiveHandler.js.map +1 -1
- package/lib/esm/widgets/schema-editor/ManagedSchema.js +6 -5
- package/lib/esm/widgets/schema-editor/ManagedSchema.js.map +1 -1
- package/lib/esm/widgets/schema-editor/editor/PropertyEditor.js +7 -3
- package/lib/esm/widgets/schema-editor/editor/PropertyEditor.js.map +1 -1
- package/lib/esm/widgets/schema-editor/editor/SchemaEditor.js +3 -1
- package/lib/esm/widgets/schema-editor/editor/SchemaEditor.js.map +1 -1
- package/lib/esm/widgets/upload/DropZone.js +9 -11
- package/lib/esm/widgets/upload/DropZone.js.map +1 -1
- package/lib/esm/widgets/upload/UploadResultCategory.js +3 -1
- package/lib/esm/widgets/upload/UploadResultCategory.js.map +1 -1
- package/lib/esm/widgets/upload/UploadSummary.js +3 -1
- package/lib/esm/widgets/upload/UploadSummary.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types/core/components/SelectList.d.ts.map +1 -1
- package/lib/types/core/components/SidePanel.d.ts +4 -2
- package/lib/types/core/components/SidePanel.d.ts.map +1 -1
- package/lib/types/core/components/index.d.ts +0 -5
- package/lib/types/core/components/index.d.ts.map +1 -1
- package/lib/types/core/components/shadcn/badge.d.ts +2 -2
- package/lib/types/core/components/shadcn/breadcrumb.d.ts +1 -1
- package/lib/types/core/components/shadcn/breadcrumb.d.ts.map +1 -1
- package/lib/types/core/components/shadcn/button.d.ts.map +1 -1
- package/lib/types/core/components/shadcn/collaspible.d.ts +6 -0
- package/lib/types/core/components/shadcn/collaspible.d.ts.map +1 -0
- package/lib/types/core/components/shadcn/dropdown.d.ts +44 -0
- package/lib/types/core/components/shadcn/dropdown.d.ts.map +1 -0
- package/lib/types/core/components/shadcn/filters/comboBox/DateCombobox.d.ts.map +1 -1
- package/lib/types/core/components/shadcn/filters/comboBox/SelectCombobox.d.ts.map +1 -1
- package/lib/types/core/components/shadcn/filters/filter/dateFilter.d.ts.map +1 -1
- package/lib/types/core/components/shadcn/filters/filterBar.d.ts.map +1 -1
- package/lib/types/core/components/shadcn/index.d.ts +4 -0
- package/lib/types/core/components/shadcn/index.d.ts.map +1 -1
- package/lib/types/core/components/shadcn/input.d.ts +1 -1
- package/lib/types/core/components/shadcn/modal/ConfirmModal.d.ts +2 -1
- package/lib/types/core/components/shadcn/modal/ConfirmModal.d.ts.map +1 -1
- package/lib/types/core/components/shadcn/modal/DeleteModal.d.ts.map +1 -1
- package/lib/types/core/components/shadcn/popover.d.ts +11 -3
- package/lib/types/core/components/shadcn/popover.d.ts.map +1 -1
- package/lib/types/core/components/shadcn/radioGroup.d.ts +26 -0
- package/lib/types/core/components/shadcn/radioGroup.d.ts.map +1 -0
- package/lib/types/core/components/shadcn/switch.d.ts +12 -0
- package/lib/types/core/components/shadcn/switch.d.ts.map +1 -0
- package/lib/types/core/components/shadcn/tabs.d.ts +4 -2
- package/lib/types/core/components/shadcn/tabs.d.ts.map +1 -1
- package/lib/types/core/components/shadcn/theme/ThemeSwitcher.d.ts +8 -2
- package/lib/types/core/components/shadcn/theme/ThemeSwitcher.d.ts.map +1 -1
- package/lib/types/core/components/toast/NotificationPanel.d.ts.map +1 -1
- package/lib/types/env/index.d.ts +8 -1
- package/lib/types/env/index.d.ts.map +1 -1
- package/lib/types/features/agent/PayloadBuilder.d.ts +31 -3
- package/lib/types/features/agent/PayloadBuilder.d.ts.map +1 -1
- package/lib/types/features/agent/chat/AgentRightPanel.d.ts +50 -0
- package/lib/types/features/agent/chat/AgentRightPanel.d.ts.map +1 -0
- package/lib/types/features/agent/chat/ArtifactsTab.d.ts +9 -0
- package/lib/types/features/agent/chat/ArtifactsTab.d.ts.map +1 -0
- package/lib/types/features/agent/chat/AskUserWidget.d.ts.map +1 -1
- package/lib/types/features/agent/chat/DocumentPanel.d.ts.map +1 -1
- package/lib/types/features/agent/chat/ImageLightbox.d.ts.map +1 -1
- package/lib/types/features/agent/chat/ModernAgentConversation.d.ts +22 -9
- package/lib/types/features/agent/chat/ModernAgentConversation.d.ts.map +1 -1
- package/lib/types/features/agent/chat/ModernAgentOutput/AllMessagesMixed.d.ts +3 -1
- package/lib/types/features/agent/chat/ModernAgentOutput/AllMessagesMixed.d.ts.map +1 -1
- package/lib/types/features/agent/chat/ModernAgentOutput/BatchProgressPanel.d.ts.map +1 -1
- package/lib/types/features/agent/chat/ModernAgentOutput/Header.d.ts +12 -3
- package/lib/types/features/agent/chat/ModernAgentOutput/Header.d.ts.map +1 -1
- package/lib/types/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.d.ts +1 -1
- package/lib/types/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.d.ts.map +1 -1
- package/lib/types/features/agent/chat/ModernAgentOutput/MessageInput.d.ts.map +1 -1
- package/lib/types/features/agent/chat/ModernAgentOutput/MessageItem.d.ts.map +1 -1
- package/lib/types/features/agent/chat/ModernAgentOutput/PlanPanel.d.ts.map +1 -1
- package/lib/types/features/agent/chat/ModernAgentOutput/SlidingPlanPanel.d.ts.map +1 -1
- package/lib/types/features/agent/chat/ModernAgentOutput/StreamingMessage.d.ts +3 -1
- package/lib/types/features/agent/chat/ModernAgentOutput/StreamingMessage.d.ts.map +1 -1
- package/lib/types/features/agent/chat/ModernAgentOutput/ToolCallGroup.d.ts +5 -1
- package/lib/types/features/agent/chat/ModernAgentOutput/ToolCallGroup.d.ts.map +1 -1
- package/lib/types/features/agent/chat/ModernAgentOutput/WorkstreamTabs.d.ts.map +1 -1
- package/lib/types/features/agent/chat/ModernAgentOutput/utils.d.ts +16 -1
- package/lib/types/features/agent/chat/ModernAgentOutput/utils.d.ts.map +1 -1
- package/lib/types/features/agent/chat/SlidingThinkingIndicator.d.ts.map +1 -1
- package/lib/types/features/agent/chat/VegaLiteChart.d.ts.map +1 -1
- package/lib/types/features/agent/chat/hooks/useAgentPlans.d.ts.map +1 -1
- package/lib/types/features/agent/chat/hooks/useAgentStream.d.ts +3 -3
- package/lib/types/features/agent/chat/hooks/useAgentStream.d.ts.map +1 -1
- package/lib/types/features/agent/chat/hooks/useArtifacts.d.ts +18 -0
- package/lib/types/features/agent/chat/hooks/useArtifacts.d.ts.map +1 -0
- package/lib/types/features/agent/chat/hooks/useDocumentPanel.d.ts.map +1 -1
- package/lib/types/features/agent/chat/hooks/useFileProcessing.d.ts +4 -4
- package/lib/types/features/agent/chat/hooks/useFileProcessing.d.ts.map +1 -1
- package/lib/types/features/agent/chat/types/document.d.ts +2 -0
- package/lib/types/features/agent/chat/types/document.d.ts.map +1 -1
- package/lib/types/features/errors/PanelErrorBoundary.d.ts.map +1 -1
- package/lib/types/features/facets/AgentRunnerFacetsNav.d.ts +2 -1
- package/lib/types/features/facets/AgentRunnerFacetsNav.d.ts.map +1 -1
- package/lib/types/features/facets/index.d.ts +1 -1
- package/lib/types/features/facets/index.d.ts.map +1 -1
- package/lib/types/features/layout/GenericPageNavHeader.d.ts +2 -2
- package/lib/types/features/layout/GenericPageNavHeader.d.ts.map +1 -1
- package/lib/types/features/layout/NotFoundView.d.ts.map +1 -1
- package/lib/types/features/magic-pdf/AnnotatedImageSlider.d.ts.map +1 -1
- package/lib/types/features/magic-pdf/DownloadPopover.d.ts.map +1 -1
- package/lib/types/features/magic-pdf/MagicPdfView.d.ts.map +1 -1
- package/lib/types/features/pdf-viewer/PdfPageSlider.d.ts.map +1 -1
- package/lib/types/features/pdf-viewer/SimplePdfViewer.d.ts.map +1 -1
- package/lib/types/features/permissions/UserPermissionsProvider.d.ts.map +1 -1
- package/lib/types/features/store/collections/BrowseCollectionView.d.ts.map +1 -1
- package/lib/types/features/store/collections/CollectionsTable.d.ts +4 -0
- package/lib/types/features/store/collections/CollectionsTable.d.ts.map +1 -1
- package/lib/types/features/store/collections/CreateCollection.d.ts.map +1 -1
- package/lib/types/features/store/collections/EditCollectionView.d.ts.map +1 -1
- package/lib/types/features/store/collections/SelectCollection.d.ts.map +1 -1
- package/lib/types/features/store/collections/SharedPropsEditor.d.ts.map +1 -1
- package/lib/types/features/store/collections/SyncMemberHeadsToggle.d.ts.map +1 -1
- package/lib/types/features/store/objects/DocumentPreviewPanel.d.ts.map +1 -1
- package/lib/types/features/store/objects/DocumentSearchResults.d.ts.map +1 -1
- package/lib/types/features/store/objects/DocumentTable.d.ts.map +1 -1
- package/lib/types/features/store/objects/ExportPropertiesModal.d.ts.map +1 -1
- package/lib/types/features/store/objects/components/ContentDispositionButton.d.ts.map +1 -1
- package/lib/types/features/store/objects/components/ContentOverview.d.ts.map +1 -1
- package/lib/types/features/store/objects/components/DocumentIcon.d.ts +2 -1
- package/lib/types/features/store/objects/components/DocumentIcon.d.ts.map +1 -1
- package/lib/types/features/store/objects/components/PropertiesEditorModal.d.ts.map +1 -1
- package/lib/types/features/store/objects/components/SaveVersionConfirmModal.d.ts.map +1 -1
- package/lib/types/features/store/objects/components/SelectDocument.d.ts +3 -1
- package/lib/types/features/store/objects/components/SelectDocument.d.ts.map +1 -1
- package/lib/types/features/store/objects/components/TextEditorPanel.d.ts +10 -0
- package/lib/types/features/store/objects/components/TextEditorPanel.d.ts.map +1 -0
- package/lib/types/features/store/objects/components/VectorSearchWidget.d.ts.map +1 -1
- package/lib/types/features/store/objects/components/useContentPanelHooks.d.ts.map +1 -1
- package/lib/types/features/store/objects/components/useDownloadFile.d.ts.map +1 -1
- package/lib/types/features/store/objects/layout/documentLayout.d.ts +3 -2
- package/lib/types/features/store/objects/layout/documentLayout.d.ts.map +1 -1
- package/lib/types/features/store/objects/layout/renderers.d.ts.map +1 -1
- package/lib/types/features/store/objects/search/DocumentSearchContext.d.ts.map +1 -1
- package/lib/types/features/store/objects/search/DocumentSearchProvider.d.ts.map +1 -1
- package/lib/types/features/store/objects/selection/ObjectsActionContext.d.ts +3 -20
- package/lib/types/features/store/objects/selection/ObjectsActionContext.d.ts.map +1 -1
- package/lib/types/features/store/objects/selection/ObjectsActionContextClass.d.ts +16 -0
- package/lib/types/features/store/objects/selection/ObjectsActionContextClass.d.ts.map +1 -0
- package/lib/types/features/store/objects/selection/ObjectsActionHooks.d.ts +7 -0
- package/lib/types/features/store/objects/selection/ObjectsActionHooks.d.ts.map +1 -0
- package/lib/types/features/store/objects/selection/ObjectsActionSpec.d.ts +4 -1
- package/lib/types/features/store/objects/selection/ObjectsActionSpec.d.ts.map +1 -1
- package/lib/types/features/store/objects/selection/SelectionActions.d.ts +6 -1
- package/lib/types/features/store/objects/selection/SelectionActions.d.ts.map +1 -1
- package/lib/types/features/store/objects/selection/actions/AddToCollectionAction.d.ts.map +1 -1
- package/lib/types/features/store/objects/selection/actions/ChangeTypeAction.d.ts.map +1 -1
- package/lib/types/features/store/objects/selection/actions/ConfirmAction.d.ts +1 -1
- package/lib/types/features/store/objects/selection/actions/ConfirmAction.d.ts.map +1 -1
- package/lib/types/features/store/objects/selection/actions/DeleteObjectsAction.d.ts.map +1 -1
- package/lib/types/features/store/objects/selection/actions/ExportPropertiesAction.d.ts.map +1 -1
- package/lib/types/features/store/objects/selection/actions/RemoveFromCollectionAction.d.ts.map +1 -1
- package/lib/types/features/store/objects/selection/actions/StartWorkflowComponent.d.ts.map +1 -1
- package/lib/types/features/store/objects/upload/DocumentUploadModal.d.ts.map +1 -1
- package/lib/types/features/store/objects/upload/useSmartFileUploadProcessing.d.ts.map +1 -1
- package/lib/types/features/store/objects/upload/useUploadHandler.d.ts.map +1 -1
- package/lib/types/features/store/types/ContentObjectTypesSearch.d.ts.map +1 -1
- package/lib/types/features/store/types/ContentObjectTypesTable.d.ts.map +1 -1
- package/lib/types/features/store/types/CreateOrUpdateTypeModal.d.ts +2 -1
- package/lib/types/features/store/types/CreateOrUpdateTypeModal.d.ts.map +1 -1
- package/lib/types/features/store/types/ObjectSchemaEditor.d.ts.map +1 -1
- package/lib/types/features/store/types/SelectContentType.d.ts.map +1 -1
- package/lib/types/features/store/types/SelectContentTypeModal.d.ts.map +1 -1
- package/lib/types/features/store/types/TableLayoutEditor.d.ts.map +1 -1
- package/lib/types/features/user/UserInfo.d.ts +2 -2
- package/lib/types/features/user/UserInfo.d.ts.map +1 -1
- package/lib/types/i18n/index.d.ts +14 -0
- package/lib/types/i18n/index.d.ts.map +1 -0
- package/lib/types/i18n/instance.d.ts +5 -0
- package/lib/types/i18n/instance.d.ts.map +1 -0
- package/lib/types/layout/FullHeightLayout.d.ts +3 -0
- package/lib/types/layout/FullHeightLayout.d.ts.map +1 -1
- package/lib/types/layout/Navbar.d.ts.map +1 -1
- package/lib/types/layout/RegionTag.d.ts +4 -0
- package/lib/types/layout/RegionTag.d.ts.map +1 -0
- package/lib/types/layout/Sidebar.d.ts +2 -1
- package/lib/types/layout/Sidebar.d.ts.map +1 -1
- package/lib/types/layout/index.d.ts +1 -0
- package/lib/types/layout/index.d.ts.map +1 -1
- package/lib/types/router/Nav.d.ts +5 -1
- package/lib/types/router/Nav.d.ts.map +1 -1
- package/lib/types/router/NestedNavigationContext.d.ts.map +1 -1
- package/lib/types/router/NestedRouterProvider.d.ts.map +1 -1
- package/lib/types/router/Router.d.ts +2 -0
- package/lib/types/router/Router.d.ts.map +1 -1
- package/lib/types/session/UserSession.d.ts +1 -0
- package/lib/types/session/UserSession.d.ts.map +1 -1
- package/lib/types/session/UserSessionProvider.d.ts.map +1 -1
- package/lib/types/session/auth/useCurrentTenant.d.ts.map +1 -1
- package/lib/types/shell/SplashScreen.d.ts.map +1 -1
- package/lib/types/shell/apps/StandaloneApp.d.ts.map +1 -1
- package/lib/types/shell/login/EnterpriseSigninButton.d.ts.map +1 -1
- package/lib/types/shell/login/GitHubSignInButton.d.ts.map +1 -1
- package/lib/types/shell/login/GoogleSignInButton.d.ts.map +1 -1
- package/lib/types/shell/login/InviteAcceptModal.d.ts.map +1 -1
- package/lib/types/shell/login/MicrosoftSigninButton.d.ts +1 -1
- package/lib/types/shell/login/MicrosoftSigninButton.d.ts.map +1 -1
- package/lib/types/shell/login/SigninScreen.d.ts.map +1 -1
- package/lib/types/shell/login/SignupForm.d.ts.map +1 -1
- package/lib/types/shell/login/TerminalLogin.d.ts.map +1 -1
- package/lib/types/shell/login/UserInfo.d.ts.map +1 -1
- package/lib/types/shell/login/UserSessionMenu.d.ts.map +1 -1
- package/lib/types/widgets/index.d.ts +0 -1
- package/lib/types/widgets/index.d.ts.map +1 -1
- package/lib/types/widgets/json-view/JSONDisplay.d.ts.map +1 -1
- package/lib/types/widgets/json-view/JSONSwitcher.d.ts +6 -0
- package/lib/types/widgets/json-view/JSONSwitcher.d.ts.map +1 -0
- package/lib/types/widgets/json-view/index.d.ts +1 -0
- package/lib/types/widgets/json-view/index.d.ts.map +1 -1
- package/lib/types/widgets/markdown/ArtifactContentRenderer.d.ts.map +1 -1
- package/lib/types/widgets/markdown/CodeBlockContext.d.ts +21 -0
- package/lib/types/widgets/markdown/CodeBlockContext.d.ts.map +1 -0
- package/lib/types/widgets/markdown/MarkdownRenderer.d.ts.map +1 -1
- package/lib/types/widgets/markdown/codeBlockHandlers.d.ts +0 -12
- package/lib/types/widgets/markdown/codeBlockHandlers.d.ts.map +1 -1
- package/lib/types/widgets/markdown/index.d.ts +10 -9
- package/lib/types/widgets/markdown/index.d.ts.map +1 -1
- package/lib/types/widgets/schema-editor/ManagedSchema.d.ts +1 -1
- package/lib/types/widgets/schema-editor/ManagedSchema.d.ts.map +1 -1
- package/lib/types/widgets/schema-editor/editor/PropertyEditor.d.ts.map +1 -1
- package/lib/types/widgets/schema-editor/editor/SchemaEditor.d.ts.map +1 -1
- package/lib/types/widgets/upload/DropZone.d.ts.map +1 -1
- package/lib/types/widgets/upload/UploadResultCategory.d.ts.map +1 -1
- package/lib/types/widgets/upload/UploadSummary.d.ts.map +1 -1
- package/lib/vertesia-ui-core.js +1 -1
- package/lib/vertesia-ui-core.js.map +1 -1
- package/lib/vertesia-ui-env.js +1 -1
- package/lib/vertesia-ui-env.js.map +1 -1
- package/lib/vertesia-ui-features.js +1 -1
- package/lib/vertesia-ui-features.js.map +1 -1
- package/lib/vertesia-ui-i18n.js +2 -0
- package/lib/vertesia-ui-i18n.js.map +1 -0
- package/lib/vertesia-ui-layout.js +1 -1
- package/lib/vertesia-ui-layout.js.map +1 -1
- package/lib/vertesia-ui-router.js +1 -1
- package/lib/vertesia-ui-router.js.map +1 -1
- package/lib/vertesia-ui-session.js +1 -1
- package/lib/vertesia-ui-session.js.map +1 -1
- package/lib/vertesia-ui-shell.js +1 -1
- package/lib/vertesia-ui-shell.js.map +1 -1
- package/lib/vertesia-ui-widgets.js +1 -1
- package/lib/vertesia-ui-widgets.js.map +1 -1
- package/llms.txt +124 -4
- package/package.json +50 -22
- package/src/core/components/SelectList.tsx +3 -1
- package/src/core/components/SidePanel.tsx +5 -4
- package/src/core/components/index.ts +0 -5
- package/src/core/components/shadcn/breadcrumb.tsx +16 -9
- package/src/core/components/shadcn/button.tsx +5 -3
- package/src/core/components/shadcn/collaspible.tsx +33 -0
- package/src/core/components/shadcn/dropdown.tsx +309 -0
- package/src/core/components/shadcn/filters/comboBox/DateCombobox.tsx +3 -1
- package/src/core/components/shadcn/filters/comboBox/SelectCombobox.tsx +3 -1
- package/src/core/components/shadcn/filters/comboBox/StringListCombobox.tsx +1 -1
- package/src/core/components/shadcn/filters/filter/StringListFilter.tsx +1 -1
- package/src/core/components/shadcn/filters/filter/dateFilter.tsx +5 -3
- package/src/core/components/shadcn/filters/filterBar.tsx +8 -5
- package/src/core/components/shadcn/index.ts +5 -1
- package/src/core/components/shadcn/modal/ConfirmModal.tsx +7 -3
- package/src/core/components/shadcn/modal/DeleteModal.tsx +5 -3
- package/src/core/components/shadcn/popover.tsx +12 -7
- package/src/core/components/shadcn/radioGroup.tsx +100 -0
- package/src/core/components/shadcn/selectBox.tsx +1 -1
- package/src/core/components/shadcn/switch.tsx +60 -0
- package/src/core/components/shadcn/tabs.tsx +29 -27
- package/src/core/components/shadcn/theme/ThemeSwitcher.tsx +19 -10
- package/src/core/components/shadcn/tooltip.tsx +1 -1
- package/src/core/components/toast/NotificationPanel.tsx +38 -44
- package/src/css/base.css +31 -0
- package/src/css/color.css +136 -0
- package/src/css/custom-tooltips.css +64 -0
- package/src/css/index.css +27 -0
- package/src/css/theme.css +86 -0
- package/src/css/typography.css +88 -0
- package/src/css/utilities.css +72 -0
- package/src/env/index.ts +16 -3
- package/src/features/agent/PayloadBuilder.tsx +100 -13
- package/src/features/agent/chat/AgentRightPanel.tsx +424 -0
- package/src/features/agent/chat/ArtifactsTab.tsx +197 -0
- package/src/features/agent/chat/AskUserWidget.tsx +14 -8
- package/src/features/agent/chat/DocumentPanel.tsx +24 -9
- package/src/features/agent/chat/ImageLightbox.tsx +6 -3
- package/src/features/agent/chat/ModernAgentConversation.tsx +539 -356
- package/src/features/agent/chat/ModernAgentOutput/AllMessagesMixed.tsx +151 -55
- package/src/features/agent/chat/ModernAgentOutput/BatchProgressPanel.tsx +6 -4
- package/src/features/agent/chat/ModernAgentOutput/Header.tsx +126 -46
- package/src/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.tsx +21 -31
- package/src/features/agent/chat/ModernAgentOutput/MessageInput.tsx +119 -114
- package/src/features/agent/chat/ModernAgentOutput/MessageItem.tsx +26 -9
- package/src/features/agent/chat/ModernAgentOutput/PlanPanel.tsx +9 -7
- package/src/features/agent/chat/ModernAgentOutput/SlidingPlanPanel.tsx +15 -13
- package/src/features/agent/chat/ModernAgentOutput/StreamingMessage.tsx +8 -3
- package/src/features/agent/chat/ModernAgentOutput/ToolCallGroup.tsx +149 -49
- package/src/features/agent/chat/ModernAgentOutput/WorkstreamTabs.tsx +9 -5
- package/src/features/agent/chat/ModernAgentOutput/utils.test.ts +229 -0
- package/src/features/agent/chat/ModernAgentOutput/utils.ts +202 -97
- package/src/features/agent/chat/SlidingThinkingIndicator.tsx +5 -3
- package/src/features/agent/chat/VegaLiteChart.tsx +20 -8
- package/src/features/agent/chat/hooks/useAgentPlans.ts +3 -9
- package/src/features/agent/chat/hooks/useAgentStream.ts +80 -19
- package/src/features/agent/chat/hooks/useArtifacts.ts +151 -0
- package/src/features/agent/chat/hooks/useDocumentPanel.ts +65 -5
- package/src/features/agent/chat/hooks/useFileProcessing.ts +14 -13
- package/src/features/agent/chat/types/document.ts +2 -0
- package/src/features/errors/PanelErrorBoundary.tsx +5 -3
- package/src/features/facets/AgentRunnerFacetsNav.tsx +54 -35
- package/src/features/facets/RunsFacetsNav.tsx +6 -6
- package/src/features/facets/index.ts +1 -1
- package/src/features/layout/GenericPageNavHeader.tsx +64 -41
- package/src/features/layout/NotFoundView.tsx +4 -1
- package/src/features/magic-pdf/AnnotatedImageSlider.tsx +12 -8
- package/src/features/magic-pdf/DownloadPopover.tsx +11 -10
- package/src/features/magic-pdf/MagicPdfView.tsx +10 -7
- package/src/features/pdf-viewer/PdfPageSlider.tsx +10 -6
- package/src/features/pdf-viewer/SimplePdfViewer.tsx +5 -3
- package/src/features/permissions/UserPermissionsProvider.tsx +3 -1
- package/src/features/store/collections/BrowseCollectionView.tsx +11 -1
- package/src/features/store/collections/CollectionsTable.tsx +20 -12
- package/src/features/store/collections/CreateCollection.tsx +45 -40
- package/src/features/store/collections/EditCollectionView.tsx +31 -28
- package/src/features/store/collections/SelectCollection.tsx +50 -14
- package/src/features/store/collections/SharedPropsEditor.tsx +7 -5
- package/src/features/store/collections/SyncMemberHeadsToggle.tsx +6 -4
- package/src/features/store/objects/DocumentPreviewPanel.tsx +30 -28
- package/src/features/store/objects/DocumentSearchResults.tsx +31 -21
- package/src/features/store/objects/DocumentTable.tsx +11 -5
- package/src/features/store/objects/ExportPropertiesModal.tsx +8 -5
- package/src/features/store/objects/components/ContentDispositionButton.tsx +3 -1
- package/src/features/store/objects/components/ContentOverview.tsx +96 -50
- package/src/features/store/objects/components/DocumentIcon.tsx +11 -3
- package/src/features/store/objects/components/PropertiesEditorModal.tsx +14 -12
- package/src/features/store/objects/components/SaveVersionConfirmModal.tsx +24 -37
- package/src/features/store/objects/components/SelectDocument.tsx +15 -6
- package/src/features/store/objects/components/TextEditorPanel.tsx +143 -0
- package/src/features/store/objects/components/VectorSearchWidget.tsx +11 -8
- package/src/features/store/objects/components/useContentPanelHooks.ts +4 -2
- package/src/features/store/objects/components/useDownloadFile.ts +12 -10
- package/src/features/store/objects/layout/documentLayout.tsx +16 -6
- package/src/features/store/objects/layout/renderers.tsx +27 -1
- package/src/features/store/objects/search/DocumentSearchContext.ts +3 -2
- package/src/features/store/objects/search/DocumentSearchProvider.tsx +3 -0
- package/src/features/store/objects/selection/ObjectsActionContext.tsx +26 -128
- package/src/features/store/objects/selection/ObjectsActionContextClass.ts +59 -0
- package/src/features/store/objects/selection/ObjectsActionHooks.ts +33 -0
- package/src/features/store/objects/selection/ObjectsActionSpec.ts +4 -1
- package/src/features/store/objects/selection/SelectionActions.tsx +14 -6
- package/src/features/store/objects/selection/actions/AddToCollectionAction.tsx +19 -14
- package/src/features/store/objects/selection/actions/ChangeTypeAction.tsx +9 -5
- package/src/features/store/objects/selection/actions/ConfirmAction.tsx +4 -3
- package/src/features/store/objects/selection/actions/DeleteObjectsAction.tsx +24 -23
- package/src/features/store/objects/selection/actions/ExportPropertiesAction.tsx +10 -5
- package/src/features/store/objects/selection/actions/RemoveFromCollectionAction.tsx +13 -9
- package/src/features/store/objects/selection/actions/StartWorkflowComponent.tsx +14 -8
- package/src/features/store/objects/upload/DocumentUploadModal.tsx +56 -55
- package/src/features/store/objects/upload/useSmartFileUploadProcessing.ts +4 -2
- package/src/features/store/objects/upload/useUploadHandler.ts +9 -7
- package/src/features/store/types/ContentObjectTypesSearch.tsx +10 -8
- package/src/features/store/types/ContentObjectTypesTable.tsx +6 -4
- package/src/features/store/types/CreateOrUpdateTypeModal.tsx +11 -12
- package/src/features/store/types/ObjectSchemaEditor.tsx +11 -9
- package/src/features/store/types/SelectContentType.tsx +15 -13
- package/src/features/store/types/SelectContentTypeModal.tsx +16 -13
- package/src/features/store/types/TableLayoutEditor.tsx +16 -12
- package/src/features/user/UserInfo.tsx +47 -56
- package/src/i18n/index.tsx +45 -0
- package/src/i18n/instance.ts +49 -0
- package/src/i18n/locales/ar.json +694 -0
- package/src/i18n/locales/de.json +662 -0
- package/src/i18n/locales/en.json +663 -0
- package/src/i18n/locales/es.json +668 -0
- package/src/i18n/locales/fr.json +670 -0
- package/src/i18n/locales/it.json +668 -0
- package/src/i18n/locales/ja.json +662 -0
- package/src/i18n/locales/ko.json +662 -0
- package/src/i18n/locales/pt.json +668 -0
- package/src/i18n/locales/ru.json +678 -0
- package/src/i18n/locales/tr.json +662 -0
- package/src/i18n/locales/zh-TW.json +662 -0
- package/src/i18n/locales/zh.json +662 -0
- package/src/layout/FullHeightLayout.tsx +8 -0
- package/src/layout/Navbar.tsx +4 -2
- package/src/layout/RegionTag.tsx +25 -0
- package/src/layout/Sidebar.tsx +4 -3
- package/src/layout/index.ts +2 -1
- package/src/router/HistoryNavigator.ts +10 -10
- package/src/router/Nav.tsx +9 -3
- package/src/router/NestedNavigationContext.tsx +4 -0
- package/src/router/NestedRouterProvider.tsx +3 -1
- package/src/router/Router.tsx +23 -7
- package/src/session/UserSession.ts +32 -0
- package/src/session/UserSessionProvider.tsx +4 -0
- package/src/session/auth/composable.ts +1 -1
- package/src/session/auth/firebase.ts +1 -1
- package/src/session/auth/useCurrentTenant.ts +3 -1
- package/src/shell/SplashScreen.tsx +22 -26
- package/src/shell/apps/StandaloneApp.tsx +9 -6
- package/src/shell/login/EnterpriseSigninButton.tsx +6 -4
- package/src/shell/login/GitHubSignInButton.tsx +3 -7
- package/src/shell/login/GoogleSignInButton.tsx +3 -1
- package/src/shell/login/InviteAcceptModal.tsx +5 -2
- package/src/shell/login/MicrosoftSigninButton.tsx +4 -6
- package/src/shell/login/SigninScreen.tsx +18 -13
- package/src/shell/login/SignupForm.tsx +46 -46
- package/src/shell/login/TerminalLogin.tsx +36 -33
- package/src/shell/login/UserInfo.tsx +15 -13
- package/src/shell/login/UserSessionMenu.tsx +28 -31
- package/src/widgets/index.ts +0 -1
- package/src/widgets/json-view/JSONCode.tsx +1 -1
- package/src/widgets/json-view/JSONDisplay.tsx +8 -3
- package/src/widgets/json-view/JSONSwitcher.tsx +24 -0
- package/src/widgets/json-view/JSONView.tsx +1 -1
- package/src/widgets/json-view/index.ts +1 -0
- package/src/widgets/markdown/ArtifactContentRenderer.tsx +15 -7
- package/src/widgets/markdown/CodeBlockContext.tsx +34 -0
- package/src/widgets/markdown/MarkdownRenderer.tsx +14 -13
- package/src/widgets/markdown/codeBlockHandlers.tsx +17 -36
- package/src/widgets/markdown/index.ts +27 -34
- package/src/widgets/markdown/remarkDirectiveHandler.ts +1 -1
- package/src/widgets/schema-editor/ManagedSchema.ts +6 -5
- package/src/widgets/schema-editor/editor/PropertyEditor.tsx +7 -3
- package/src/widgets/schema-editor/editor/SchemaEditor.tsx +3 -1
- package/src/widgets/upload/DropZone.tsx +10 -13
- package/src/widgets/upload/UploadResultCategory.tsx +3 -1
- package/src/widgets/upload/UploadSummary.tsx +13 -11
- package/tsconfig.dist.json +1 -1
- package/lib/esm/core/components/Dropdown.js +0 -16
- package/lib/esm/core/components/Dropdown.js.map +0 -1
- package/lib/esm/core/components/DropdownList.js +0 -9
- package/lib/esm/core/components/DropdownList.js.map +0 -1
- package/lib/esm/core/components/RadioGroup.js +0 -34
- package/lib/esm/core/components/RadioGroup.js.map +0 -1
- package/lib/esm/core/components/SelectStack.js +0 -8
- package/lib/esm/core/components/SelectStack.js.map +0 -1
- package/lib/esm/core/components/Switch.js +0 -12
- package/lib/esm/core/components/Switch.js.map +0 -1
- package/lib/esm/widgets/popover/Popover.js +0 -73
- package/lib/esm/widgets/popover/Popover.js.map +0 -1
- package/lib/esm/widgets/popover/context.js +0 -7
- package/lib/esm/widgets/popover/context.js.map +0 -1
- package/lib/esm/widgets/popover/index.js +0 -3
- package/lib/esm/widgets/popover/index.js.map +0 -1
- package/lib/esm/widgets/popover/slots.js +0 -22
- package/lib/esm/widgets/popover/slots.js.map +0 -1
- package/lib/types/core/components/Dropdown.d.ts +0 -15
- package/lib/types/core/components/Dropdown.d.ts.map +0 -1
- package/lib/types/core/components/DropdownList.d.ts +0 -13
- package/lib/types/core/components/DropdownList.d.ts.map +0 -1
- package/lib/types/core/components/RadioGroup.d.ts +0 -26
- package/lib/types/core/components/RadioGroup.d.ts.map +0 -1
- package/lib/types/core/components/SelectStack.d.ts +0 -13
- package/lib/types/core/components/SelectStack.d.ts.map +0 -1
- package/lib/types/core/components/Switch.d.ts +0 -11
- package/lib/types/core/components/Switch.d.ts.map +0 -1
- package/lib/types/widgets/popover/Popover.d.ts +0 -38
- package/lib/types/widgets/popover/Popover.d.ts.map +0 -1
- package/lib/types/widgets/popover/context.d.ts +0 -8
- package/lib/types/widgets/popover/context.d.ts.map +0 -1
- package/lib/types/widgets/popover/index.d.ts +0 -3
- package/lib/types/widgets/popover/index.d.ts.map +0 -1
- package/lib/types/widgets/popover/slots.d.ts +0 -5
- package/lib/types/widgets/popover/slots.d.ts.map +0 -1
- package/src/core/components/Dropdown.tsx +0 -63
- package/src/core/components/DropdownList.tsx +0 -72
- package/src/core/components/RadioGroup.tsx +0 -100
- package/src/core/components/SelectStack.tsx +0 -63
- package/src/core/components/Switch.tsx +0 -30
- package/src/widgets/popover/Popover.tsx +0 -171
- package/src/widgets/popover/context.ts +0 -15
- package/src/widgets/popover/index.ts +0 -2
- package/src/widgets/popover/slots.ts +0 -24
|
@@ -0,0 +1,662 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent.actions": "Eylemler",
|
|
3
|
+
"agent.activeWorkstreams_one": "Ajanın {{count}} aktif iş akışı çalışıyor",
|
|
4
|
+
"agent.activeWorkstreams_other": "Ajanın {{count}} aktif iş akışı çalışıyor",
|
|
5
|
+
"agent.agentConversation": "Ajan Konuşması",
|
|
6
|
+
"agent.agentInterrupted": "Ajan Durduruldu",
|
|
7
|
+
"agent.agentPlan": "Ajan planı",
|
|
8
|
+
"agent.agentProcessing": "Ajan işliyor, tamamlandığında devam edebilirsiniz...",
|
|
9
|
+
"agent.agentStarted": "Ajan başlatıldı",
|
|
10
|
+
"agent.agentWorking": "Ajan çalışıyor... (Esc Esc durdurmak için)",
|
|
11
|
+
"agent.agentWorkingStop": "Ajan çalışıyor... Durdurmak için Esc'ye iki kez basın veya Durdur'a tıklayın",
|
|
12
|
+
"agent.allMessages": "Tüm mesajlar",
|
|
13
|
+
"agent.artifacts": "Yapılar",
|
|
14
|
+
"agent.askAnything": "Bir şey sorun... (dosya sürükleyin veya yapıştırın)",
|
|
15
|
+
"agent.batch": "Toplu",
|
|
16
|
+
"agent.cancelWorkflow": "İş akışını iptal et",
|
|
17
|
+
"agent.canceling": "iptal ediliyor",
|
|
18
|
+
"agent.clickToEnlarge": "Büyütmek için tıklayın",
|
|
19
|
+
"agent.close": "Kapat",
|
|
20
|
+
"agent.closeFullscreen": "Tam ekranı kapat",
|
|
21
|
+
"agent.completed": "Tamamlandı",
|
|
22
|
+
"agent.conversationForked": "Konuşma çatallandı",
|
|
23
|
+
"agent.conversationRestarted": "Konuşma yeniden başlatıldı",
|
|
24
|
+
"agent.copied": "Kopyalandı",
|
|
25
|
+
"agent.copiedAllToolCalls": "Tüm araç çağrıları panoya kopyalandı",
|
|
26
|
+
"agent.copiedBatchDetails": "Toplu ayrıntılar panoya kopyalandı",
|
|
27
|
+
"agent.copiedToClipboard": "Panoya kopyalandı",
|
|
28
|
+
"agent.copy": "Kopyala",
|
|
29
|
+
"agent.copyAllToolCalls": "Tüm araç çağrılarını kopyala",
|
|
30
|
+
"agent.copyBatchDetails": "Toplu ayrıntıları kopyala",
|
|
31
|
+
"agent.copyMessage": "Mesajı kopyala",
|
|
32
|
+
"agent.copyRunId": "Çalışma kimliğini kopyala",
|
|
33
|
+
"agent.copyToClipboard": "Panoya kopyala",
|
|
34
|
+
"agent.dashboard": "Gösterge paneli",
|
|
35
|
+
"agent.details": "Ayrıntılar",
|
|
36
|
+
"agent.document": "Belge",
|
|
37
|
+
"agent.documentAttachments": "Belge ekleri",
|
|
38
|
+
"agent.documentAttachmentsDescription": "Bu mesaja eklenmiş mağaza belgeleri. Ajan bunları istediği zaman ID ile yeniden alabilir veya içeriği doğrudan dahil etmek için yeniden ekleyebilir.",
|
|
39
|
+
"agent.documents": "Belgeler",
|
|
40
|
+
"agent.download": "İndir",
|
|
41
|
+
"agent.downloadConversation": "Konuşmayı indir",
|
|
42
|
+
"agent.dropFilesToUpload": "Yüklemek için dosyaları bırakın",
|
|
43
|
+
"agent.elapsed": "{{seconds}}sn geçti",
|
|
44
|
+
"agent.enlargedView": "Büyütülmüş görünüm",
|
|
45
|
+
"agent.enterMessage": "Konuşma başlatmak için bir mesaj girin",
|
|
46
|
+
"agent.enterToSend": "Göndermek için Enter • Yeni satır için Shift+Enter",
|
|
47
|
+
"agent.error": "Hata",
|
|
48
|
+
"agent.errorStarting": "İş akışı başlatılırken hata oluştu",
|
|
49
|
+
"agent.exit": "Çıkış",
|
|
50
|
+
"agent.exitFullscreen": "Tam ekrandan çık",
|
|
51
|
+
"agent.export": "Dışa aktar",
|
|
52
|
+
"agent.exportAsPdf": "PDF olarak dışa aktar",
|
|
53
|
+
"agent.exportAsPng": "PNG olarak dışa aktar",
|
|
54
|
+
"agent.exportAsWord": "Word olarak dışa aktar",
|
|
55
|
+
"agent.exportMessage": "Mesajı dışa aktar",
|
|
56
|
+
"agent.exporting": "Dışa aktarılıyor...",
|
|
57
|
+
"agent.failedToCancelWorkflow": "İş akışı iptal edilemedi",
|
|
58
|
+
"agent.failedToDownload": "Konuşma indirilemedi",
|
|
59
|
+
"agent.failedToForkConversation": "Konuşma çatallanamadı",
|
|
60
|
+
"agent.failedToInterrupt": "Durdurulamadı",
|
|
61
|
+
"agent.failedToLoadDocument": "Belge yüklenemedi",
|
|
62
|
+
"agent.failedToRenderMessage": "Mesaj oluşturulamadı",
|
|
63
|
+
"agent.failedToRestartConversation": "Konuşma yeniden başlatılamadı",
|
|
64
|
+
"agent.failedToSend": "Mesaj gönderilemedi",
|
|
65
|
+
"agent.filesProcessing": "Dosyalar hâlâ işleniyor",
|
|
66
|
+
"agent.filesStagedCount_one": "{{count}} dosya hazırlandı - konuşma başladığında yüklenecek",
|
|
67
|
+
"agent.filesStagedCount_other": "{{count}} dosya hazırlandı - konuşma başladığında yüklenecek",
|
|
68
|
+
"agent.filesUploadedDescription": "Bu sohbete yüklenen dosyalar sürekli olarak kullanılabilir durumda kalır. Ajan bunlara istediği zaman erişebilir.",
|
|
69
|
+
"agent.forkConversation": "Konuşmayı çatalla",
|
|
70
|
+
"agent.fullscreen": "Tam ekran",
|
|
71
|
+
"agent.hideDetails": "Ayrıntıları gizle",
|
|
72
|
+
"agent.hideSidebar": "Kenar çubuğunu gizle",
|
|
73
|
+
"agent.hideThinkingDetails": "Düşünme ayrıntılarını gizle",
|
|
74
|
+
"agent.inProgress": "Devam ediyor",
|
|
75
|
+
"agent.linkObject": "Nesne bağla",
|
|
76
|
+
"agent.loadingArtifacts": "Yapılar yükleniyor...",
|
|
77
|
+
"agent.loadingDocument": "Belge yükleniyor...",
|
|
78
|
+
"agent.main": "Ana",
|
|
79
|
+
"agent.mainWorkstream": "Ana iş akışı",
|
|
80
|
+
"agent.moreActions": "Daha fazla eylem",
|
|
81
|
+
"agent.newerPlan": "Daha yeni plan",
|
|
82
|
+
"agent.no": "Hayır",
|
|
83
|
+
"agent.noActiveWorkstreams": "Aktif iş akışı yok",
|
|
84
|
+
"agent.noAgentRunning": "Şu anda çalışan ajan yok",
|
|
85
|
+
"agent.noArtifactsYet": "Henüz yapı yok",
|
|
86
|
+
"agent.noContentAvailable": "Kullanılabilir içerik yok",
|
|
87
|
+
"agent.noContentToExport": "Dışa aktarılacak içerik yok",
|
|
88
|
+
"agent.noConversationContent": "Dışa aktarılacak konuşma içeriği yok",
|
|
89
|
+
"agent.noDocumentsOpen": "Açık belge yok",
|
|
90
|
+
"agent.noFilesUploadedYet": "Yüklenen dosya yok",
|
|
91
|
+
"agent.noMessagesInWorkstream": "Bu iş akışında henüz mesaj yok...",
|
|
92
|
+
"agent.noPlanAvailable": "Plan mevcut değil",
|
|
93
|
+
"agent.noPlanDetected": "Henüz bir plan algılanmadı",
|
|
94
|
+
"agent.olderPlan": "Daha eski plan",
|
|
95
|
+
"agent.openDocument": "Belgeyi aç",
|
|
96
|
+
"agent.openInNewTab": "Yeni sekmede aç",
|
|
97
|
+
"agent.pdfExportFailed": "PDF dışa aktarma başarısız",
|
|
98
|
+
"agent.pdfExportReady": "PDF dışa aktarma hazır",
|
|
99
|
+
"agent.pending": "Beklemede",
|
|
100
|
+
"agent.plan": "Plan",
|
|
101
|
+
"agent.planProgress": "Plan ilerlemesi",
|
|
102
|
+
"agent.plansWillAppear": "Ajan bir plan oluşturduğunda burada görünecek",
|
|
103
|
+
"agent.printDialogDescription": "PDF olarak kaydetmek için tarayıcınızın yazdırma iletişim kutusunu kullanın",
|
|
104
|
+
"agent.processing": "İşleniyor...",
|
|
105
|
+
"agent.ready": "Hazır",
|
|
106
|
+
"agent.refresh": "Yenile",
|
|
107
|
+
"agent.remaining": "{{seconds}}sn kaldı",
|
|
108
|
+
"agent.resizeRightPanel": "Sağ paneli yeniden boyutlandır",
|
|
109
|
+
"agent.restartConversation": "Konuşmayı yeniden başlat",
|
|
110
|
+
"agent.retry": "Tekrar dene",
|
|
111
|
+
"agent.runIdCopied": "Çalıştırma ID'si kopyalandı",
|
|
112
|
+
"agent.running": "çalışıyor",
|
|
113
|
+
"agent.searchDocuments": "Belgeleri ara",
|
|
114
|
+
"agent.selectInteraction": "Bir etkileşim seçin ve ajanı başlatmak için Başlat'a tıklayın",
|
|
115
|
+
"agent.send": "Gönder",
|
|
116
|
+
"agent.showAllMessages": "Tüm mesajları göster",
|
|
117
|
+
"agent.showDetails": "Ayrıntıları göster",
|
|
118
|
+
"agent.showSidebar": "Kenar çubuğunu göster",
|
|
119
|
+
"agent.staged": "Hazırlandı",
|
|
120
|
+
"agent.startAgent": "Ajanı başlat",
|
|
121
|
+
"agent.startNewConversation": "Yeni konuşma başlat",
|
|
122
|
+
"agent.startingAgent": "Ajan başlatılıyor...",
|
|
123
|
+
"agent.startingAgentUploading": "Ajan başlatılıyor ve dosyalar yükleniyor...",
|
|
124
|
+
"agent.stepByStepPlan": "Adım adım plan",
|
|
125
|
+
"agent.stop": "Durdur",
|
|
126
|
+
"agent.stopAgent": "Ajanı durdur",
|
|
127
|
+
"agent.submitSelection": "Seçimi gönder",
|
|
128
|
+
"agent.submitSelectionCount_one": "Seçimi gönder ({{count}})",
|
|
129
|
+
"agent.submitSelectionCount_other": "Seçimi gönder ({{count}})",
|
|
130
|
+
"agent.summary": "Özet",
|
|
131
|
+
"agent.taskProgress": "Görev ilerlemesi",
|
|
132
|
+
"agent.toggleRightSidebar": "Sağ kenar çubuğunu aç/kapat",
|
|
133
|
+
"agent.typeNewInstructions": "Yeni talimatlar vermek için mesajınızı yazın",
|
|
134
|
+
"agent.typeQuestionBelow": "Sorunuzu aşağıya yazın ve başlamak için Enter'a basın veya {{buttonText}} tıklayın",
|
|
135
|
+
"agent.typeYourMessage": "Mesajınızı yazın...",
|
|
136
|
+
"agent.typeYourResponse": "Yanıtınızı yazın...",
|
|
137
|
+
"agent.unableToOpenPrint": "Yazdırma önizlemesi açılamadı",
|
|
138
|
+
"agent.unknownError": "Bilinmeyen hata",
|
|
139
|
+
"agent.unknownTime": "Bilinmeyen zaman",
|
|
140
|
+
"agent.upload": "Yükle",
|
|
141
|
+
"agent.uploadFailed": "Yükleme başarısız",
|
|
142
|
+
"agent.uploadedFiles": "Yüklenen dosyalar",
|
|
143
|
+
"agent.uploading": "Yükleniyor...",
|
|
144
|
+
"agent.uploads": "Yüklemeler",
|
|
145
|
+
"agent.waitForFiles": "Dosyaların işlenmesini bekleyin",
|
|
146
|
+
"agent.waitForFilesProcessing": "Göndermeden önce tüm dosyaların işlenmesini bekleyin",
|
|
147
|
+
"agent.waiting": "Bekleniyor...",
|
|
148
|
+
"agent.waitingForAgentResponse": "Ajan yanıtı bekleniyor...",
|
|
149
|
+
"agent.workflowCancelled": "İş akışı iptal edildi",
|
|
150
|
+
"agent.working": "Çalışıyor...",
|
|
151
|
+
"agent.workstreams": "İş akışları",
|
|
152
|
+
"agent.yes": "Evet",
|
|
153
|
+
"auth.continueWithEnterprise": "Kurumsal SSO ile devam et",
|
|
154
|
+
"auth.continueWithGithub": "GitHub ile devam et",
|
|
155
|
+
"auth.continueWithGoogle": "Google ile devam et",
|
|
156
|
+
"auth.continueWithMicrosoft": "Microsoft ile devam et",
|
|
157
|
+
"auth.enterEnterpriseEmail": "Kurumsal e-postanızı girin",
|
|
158
|
+
"auth.error": "Hata: {{message}}",
|
|
159
|
+
"auth.firstTimeDetails": "Sadece birkaç soru soracağız ve hazır olacaksınız.",
|
|
160
|
+
"auth.firstTimeMessage": "İlk kez mi buradasınız? Sorun değil, ücretsiz deneyebilirsiniz!",
|
|
161
|
+
"auth.goBack": "Geri dön",
|
|
162
|
+
"auth.invalidEmail": "Geçersiz e-posta adresi",
|
|
163
|
+
"auth.logInOrSignUp": "Giriş yap veya Kayıt ol",
|
|
164
|
+
"auth.needToMakeChange": "Değişiklik yapmanız mı gerekiyor?",
|
|
165
|
+
"auth.or": "VEYA",
|
|
166
|
+
"auth.privacyPolicy": "Gizlilik Politikası",
|
|
167
|
+
"auth.signInError": "Üzgünüz, oturumunuzu açamadık.",
|
|
168
|
+
"auth.signInErrorContact": "Lütfen tekrar deneyin veya iletişime geçin",
|
|
169
|
+
"auth.signInErrorPersists": "sorun devam ederse.",
|
|
170
|
+
"auth.tenantNotFound": "Kuruluş bulunamadı",
|
|
171
|
+
"auth.termsOfService": "Hizmet Şartları",
|
|
172
|
+
"errors.failedToLoadTenantConfig": "Kiracı yapılandırması yüklenemedi",
|
|
173
|
+
"errors.somethingWentWrong": "Üzgünüz, bir şeyler ters gitti...",
|
|
174
|
+
"errors.teamNotifiedLine1": "Ekibimiz bilgilendirildi ve sorunu hızla çözmeye çalışacaktır.",
|
|
175
|
+
"errors.teamNotifiedLine2": "Konuyu iletmek veya bizimle iletişime geçmek isterseniz, lütfen bize şu adresten e-posta gönderin:",
|
|
176
|
+
"filter.clearAll": "Tümünü Temizle",
|
|
177
|
+
"filter.filter": "Filtre",
|
|
178
|
+
"filter.filterBy": "{{view}} ile filtrele",
|
|
179
|
+
"filter.filterPlaceholder": "Filtrele...",
|
|
180
|
+
"filter.from": "Başlangıç:",
|
|
181
|
+
"filter.noAvailableFilters": "Kullanılabilir filtre yok",
|
|
182
|
+
"filter.noMatchingFilters": "Eşleşen filtre yok",
|
|
183
|
+
"filter.noResultsFound": "Sonuç bulunamadı.",
|
|
184
|
+
"filter.selectRange": "Aralık seçin",
|
|
185
|
+
"filter.to": "Bitiş:",
|
|
186
|
+
"form.clickToRemove": "kaldırmak için tıklayın",
|
|
187
|
+
"form.createValue": "\"{{value}}\" oluştur",
|
|
188
|
+
"form.filter": "Filtrele...",
|
|
189
|
+
"form.noMoreOptions": "Başka seçenek yok",
|
|
190
|
+
"form.noOptionsFound": "Seçenek bulunamadı",
|
|
191
|
+
"layout.pageNotFound": "Sayfa Bulunamadı",
|
|
192
|
+
"layout.search": "Ara",
|
|
193
|
+
"layout.searchPlaceholder": "Ara...",
|
|
194
|
+
"login.accept": "Kabul Et",
|
|
195
|
+
"login.reject": "Reddet",
|
|
196
|
+
"login.reviewInvites": "Davetleri İncele",
|
|
197
|
+
"login.terminal.account": "Hesap",
|
|
198
|
+
"login.terminal.accountRequired": "Hesap gereklidir",
|
|
199
|
+
"login.terminal.accountRequiredDesc": "İstemcinin ComposablePrompts sunucularına erişmesi için lütfen bir hesap seçin",
|
|
200
|
+
"login.terminal.authPayloadCopied": "Kimlik doğrulama yükü kopyalandı",
|
|
201
|
+
"login.terminal.authPayloadCopiedSuccess": "Bu sayfayı kapatabilirsiniz. CLI tokenı almış olmalıdır.",
|
|
202
|
+
"login.terminal.authPayloadCopiedWithError": "Yükü terminale yapıştırabilirsiniz. Not: CLI tokenı almadı. Bir hata oluştu: {{error}}",
|
|
203
|
+
"login.terminal.authorizeClient": "İstemciyi Yetkilendir",
|
|
204
|
+
"login.terminal.browserPermissionNote": "Not: Tarayıcınız yerel ağınıza erişim izni isterse lütfen izin verin. Bu, yetkilendirme tokenını CLI aracına geri göndermek için gereklidir. Aksi takdirde tokenı terminalinize elle kopyalayıp yapıştırmanız gerekecektir.",
|
|
205
|
+
"login.terminal.chooseAccountProject": "İstemcinin erişeceği hedef hesap ve projeyi seçmelisiniz.",
|
|
206
|
+
"login.terminal.clientAuthenticated": "İstemci kimlik doğrulandı. Bu sayfayı kapatabilirsiniz.",
|
|
207
|
+
"login.terminal.clientWantsAuth": "Bir istemci uygulama sizin adınıza composable prompt sunucularına erişim yetkisi istiyor.",
|
|
208
|
+
"login.terminal.copyAuthPayload": "Kimlik Doğrulama Yükünü Kopyala",
|
|
209
|
+
"login.terminal.envLocalDev": "Yerel Geliştirme",
|
|
210
|
+
"login.terminal.envProduction": "Üretim",
|
|
211
|
+
"login.terminal.envStaging": "Hazırlık",
|
|
212
|
+
"login.terminal.errorAuthorizingClient": "İstemci yetkilendirme hatası",
|
|
213
|
+
"login.terminal.errorLoadingProjects": "Projeler yüklenirken hata oluştu",
|
|
214
|
+
"login.terminal.failedToGetToken": "Composable tokenı alınamadı",
|
|
215
|
+
"login.terminal.failedToSendToken": "Yetkilendirme tokenı CLI aracına gönderilemedi",
|
|
216
|
+
"login.terminal.failedToSendTokenDesc": "Bu, Safari'deki güvenlik kontrolleri nedeniyle olabilir. Hata: \"{{error}}\"",
|
|
217
|
+
"login.terminal.invalidRequest": "Geçersiz istek",
|
|
218
|
+
"login.terminal.invalidRequestDesc": "Bu sayfa, ComposablePrompts sunucularına kimlik doğrulaması yapmak için bir terminal istemcisi tarafından çağrılmalıdır",
|
|
219
|
+
"login.terminal.profileName": "Profil Adı",
|
|
220
|
+
"login.terminal.profileNameNote": "Ayrıca istemci yapılandırmanıza yetkilendirmeyi kaydetmek için kullanılacak bir profil adı girin.",
|
|
221
|
+
"login.terminal.profileRequired": "Profil gereklidir",
|
|
222
|
+
"login.terminal.profileRequiredDesc": "İstemci yetkilendirmesini kaydetmek için lütfen bir profil adı girin",
|
|
223
|
+
"login.terminal.project": "Proje",
|
|
224
|
+
"login.terminal.projectRequired": "Proje gereklidir",
|
|
225
|
+
"login.terminal.projectRequiredDesc": "İstemcinin ComposablePrompts sunucularına erişmesi için lütfen bir proje seçin",
|
|
226
|
+
"login.terminal.selectAccount": "Hesap Seçin",
|
|
227
|
+
"login.terminal.selectProject": "Proje Seçin",
|
|
228
|
+
"misc.copiedToClipboard": "Panoya kopyalandı",
|
|
229
|
+
"misc.copy": "Kopyala",
|
|
230
|
+
"misc.failedToCopy": "Kopyalama başarısız",
|
|
231
|
+
"misc.noData": "Görüntülenecek veri yok",
|
|
232
|
+
"misc.tableView": "Tablo görünümü",
|
|
233
|
+
"misc.thumbnailView": "Küçük resim görünümü",
|
|
234
|
+
"modal.cancel": "İptal",
|
|
235
|
+
"modal.confirm": "Onayla",
|
|
236
|
+
"modal.delete.error": "Nesne silinirken bir hata oluştu",
|
|
237
|
+
"modal.delete.failed": "Silme başarısız",
|
|
238
|
+
"modal.delete.succeeded": "Silme başarılı",
|
|
239
|
+
"modal.save": "Kaydet",
|
|
240
|
+
"modal.saveChanges": "Değişiklikleri kaydet",
|
|
241
|
+
"modal.saveVersion.createDescription": "Bu özellik değişiklikleriyle yeni bir revizyon oluşturun, orijinali koruyun.",
|
|
242
|
+
"modal.saveVersion.createNew": "Yeni sürüm oluştur",
|
|
243
|
+
"modal.saveVersion.createWithFileDescription": "Değiştirme dosyasıyla yeni bir revizyon oluşturun, orijinali koruyun.",
|
|
244
|
+
"modal.saveVersion.howToSave": "Bu değişiklikleri nasıl kaydetmek istersiniz?",
|
|
245
|
+
"modal.saveVersion.replaceFile": "İçerik dosyasını şununla değiştirmek üzeresiniz:",
|
|
246
|
+
"modal.saveVersion.updateCurrent": "Mevcut sürümü güncelle",
|
|
247
|
+
"modal.saveVersion.updateDescription": "Mevcut revizyonda özellikleri doğrudan düzenleyin.",
|
|
248
|
+
"modal.saveVersion.updateWithFileDescription": "İçerik dosyasını değiştirin ve mevcut revizyonda özellikleri doğrudan düzenleyin.",
|
|
249
|
+
"modal.saveVersion.versionLabel": "Sürüm etiketi (İsteğe bağlı)",
|
|
250
|
+
"modal.saveVersion.versionLabelDescription": "Yeni sürüm için isteğe bağlı etiket.",
|
|
251
|
+
"modal.saveVersion.versionLabelPlaceholder": "örn., v1.2, onaylandı, inceleme sonrası",
|
|
252
|
+
"oauthApps.authenticate": "Kimlik Doğrula",
|
|
253
|
+
"oauthApps.authenticating": "Kimlik doğrulanıyor...",
|
|
254
|
+
"oauthApps.authorizationEndpoint": "Yetkilendirme Uç Noktası",
|
|
255
|
+
"oauthApps.cancel": "İptal",
|
|
256
|
+
"oauthApps.clientId": "Client ID",
|
|
257
|
+
"oauthApps.clientSecret": "Client Secret",
|
|
258
|
+
"oauthApps.clientSecretConfigured": "Secret yapılandırıldı (korumak için boş bırakın)",
|
|
259
|
+
"oauthApps.clientSecretHelp": "İsteğe bağlı. Gizli istemciler için gereklidir. Depolama sırasında şifrelenir.",
|
|
260
|
+
"oauthApps.clientSecretPlaceholder": "Client Secret girin",
|
|
261
|
+
"oauthApps.connect": "Bağlan",
|
|
262
|
+
"oauthApps.connected": "Bağlandı",
|
|
263
|
+
"oauthApps.create": "Oluştur",
|
|
264
|
+
"oauthApps.createDescription": "Bu proje için yeni bir OAuth uygulaması yapılandırın.",
|
|
265
|
+
"oauthApps.created": "OAuth uygulaması oluşturuldu",
|
|
266
|
+
"oauthApps.defaultScopes": "Varsayılan Kapsamlar",
|
|
267
|
+
"oauthApps.defaultScopesHelp": "Boşlukla ayrılmış OAuth kapsamları listesi.",
|
|
268
|
+
"oauthApps.deleteConfirm": "OAuth Uygulamasını Sil",
|
|
269
|
+
"oauthApps.deleteConfirmMessage": "Silmek istediğinizden emin misiniz",
|
|
270
|
+
"oauthApps.deleteFailed": "OAuth uygulaması silinemedi",
|
|
271
|
+
"oauthApps.deleted": "OAuth uygulaması silindi",
|
|
272
|
+
"oauthApps.description": "Üçüncü taraf entegrasyonları için OAuth uygulamalarını yapılandırın.",
|
|
273
|
+
"oauthApps.disconnect": "Bağlantıyı Kes",
|
|
274
|
+
"oauthApps.displayName": "Görünen Ad",
|
|
275
|
+
"oauthApps.edit": "OAuth Uygulamasını Düzenle",
|
|
276
|
+
"oauthApps.editDescription": "OAuth uygulama yapılandırmasını güncelleyin.",
|
|
277
|
+
"oauthApps.empty": "Henüz yapılandırılmış OAuth uygulaması yok.",
|
|
278
|
+
"oauthApps.endpointsOptionalHelp": "İsteğe bağlı. .well-known keşfini destekleyen MCP sunucuları için boş bırakın.",
|
|
279
|
+
"oauthApps.name": "Ad",
|
|
280
|
+
"oauthApps.nameHelp": "Kebab-case tanımlayıcı (ör.: my-oauth-app). Oluşturulduktan sonra değiştirilemez.",
|
|
281
|
+
"oauthApps.notConnected": "Bağlı değil",
|
|
282
|
+
"oauthApps.revocationEndpoint": "İptal Uç Noktası",
|
|
283
|
+
"oauthApps.save": "Kaydet",
|
|
284
|
+
"oauthApps.saveFailed": "OAuth uygulaması kaydedilemedi",
|
|
285
|
+
"oauthApps.saving": "Kaydediliyor...",
|
|
286
|
+
"oauthApps.status": "Durum",
|
|
287
|
+
"oauthApps.title": "OAuth Uygulamaları",
|
|
288
|
+
"oauthApps.tokenEndpoint": "Token Uç Noktası",
|
|
289
|
+
"oauthApps.updated": "OAuth uygulaması güncellendi",
|
|
290
|
+
"oauthApps.usePkce": "PKCE Kullan (önerilir)",
|
|
291
|
+
"pdf.close": "Kapat",
|
|
292
|
+
"pdf.closeFullscreen": "Tam ekranı kapat",
|
|
293
|
+
"pdf.download": "İndir",
|
|
294
|
+
"pdf.failedToLoadViewer": "PDF görüntüleyici yüklenemedi",
|
|
295
|
+
"pdf.fetchingDocumentFailed": "Belge alınamadı",
|
|
296
|
+
"pdf.fitToWidth": "Genişliğe sığdır",
|
|
297
|
+
"pdf.fullscreen": "Tam ekran",
|
|
298
|
+
"pdf.instrumentedImages": "İşaretlenmiş görüntüler",
|
|
299
|
+
"pdf.nextPage": "Sonraki sayfa",
|
|
300
|
+
"pdf.noPdfAvailable": "PDF mevcut değil",
|
|
301
|
+
"pdf.originalImages": "Orijinal görüntüler",
|
|
302
|
+
"pdf.page": "Sayfa",
|
|
303
|
+
"pdf.pageOf": "Sayfa {{pageNumber}} / {{totalPages}}",
|
|
304
|
+
"pdf.previousPage": "Önceki sayfa",
|
|
305
|
+
"pdf.zoomIn": "Yakınlaştır",
|
|
306
|
+
"pdf.zoomOut": "Uzaklaştır",
|
|
307
|
+
"shell.accessDenied": "Erişim Reddedildi",
|
|
308
|
+
"shell.applicationNotRegistered": "Uygulama kayıtlı değil",
|
|
309
|
+
"shell.organization": "Kuruluş",
|
|
310
|
+
"shell.selectOrganization": "Kuruluş Seçin",
|
|
311
|
+
"shell.selectProject": "Proje Seçin",
|
|
312
|
+
"signup.accountType": "Hesap Türü",
|
|
313
|
+
"signup.activelyExploring": "Bir Projede LLM'leri Aktif Olarak Keşfetme",
|
|
314
|
+
"signup.alreadyUsing": "Üretimde Zaten LLM Kullanıyor",
|
|
315
|
+
"signup.company": "Şirket",
|
|
316
|
+
"signup.companyDescription": "Bir şirket veya kuruluş için.",
|
|
317
|
+
"signup.companyName": "Şirket Adı",
|
|
318
|
+
"signup.companySize": "Şirket Büyüklüğü",
|
|
319
|
+
"signup.companyWebsite": "Şirket Web Sitesi",
|
|
320
|
+
"signup.justTesting": "LLM'leri Test Etme veya Değerlendirme Aşamasında",
|
|
321
|
+
"signup.migratingLLMs": "Farklı LLM'lere Geçiş Yapıyor",
|
|
322
|
+
"signup.other": "Diğer",
|
|
323
|
+
"signup.personal": "Kişisel",
|
|
324
|
+
"signup.personalDescription": "Kişisel kullanım veya küçük bir ekip için.",
|
|
325
|
+
"signup.pleaseEnterOrgName": "Lütfen bir kuruluş adı girin",
|
|
326
|
+
"signup.pleaseSelectAccountType": "Lütfen bir hesap türü seçin",
|
|
327
|
+
"signup.pleaseSelectCompanySize": "Lütfen bir şirket büyüklüğü seçin",
|
|
328
|
+
"signup.projectMaturity": "Proje Olgunluğu",
|
|
329
|
+
"signup.selectCompanySize": "Şirket Büyüklüğü Seçin",
|
|
330
|
+
"signup.selectProjectMaturity": "Proje Olgunluğu Seçin",
|
|
331
|
+
"signup.signUp": "Kaydol",
|
|
332
|
+
"signup.size1001to5000": "1001-5000 çalışan",
|
|
333
|
+
"signup.size101to1000": "101-1000 çalışan",
|
|
334
|
+
"signup.size11to100": "11-100 çalışan",
|
|
335
|
+
"signup.size1to10": "1-10 çalışan",
|
|
336
|
+
"signup.size5000plus": "5000+ çalışan",
|
|
337
|
+
"signup.welcomeMessage": "Vertesia'ya hoş geldiniz, {{name}} ({{email}}).\nLütfen kendiniz hakkında biraz bilgi verin ve hemen başlayın.\nKredi kartı gerekmez.",
|
|
338
|
+
"signup.wrongAccountGoBack": "Yanlış hesap, geri dön",
|
|
339
|
+
"store.actions.addToCollection": "Koleksiyona Ekle",
|
|
340
|
+
"store.actions.addToCollectionBody": "Seçili nesneleri mevcut bir koleksiyona ekleyin veya yeni bir tane oluşturun.",
|
|
341
|
+
"store.actions.addToCollectionButton": "Koleksiyona Ekle",
|
|
342
|
+
"store.actions.addToCollectionDesc": "Belgeleri bir koleksiyona ekle",
|
|
343
|
+
"store.actions.addToCollectionFailure": "Koleksiyona ekleme başarısız",
|
|
344
|
+
"store.actions.addToCollectionFailureDesc": "Seçili nesneler koleksiyona eklenemedi",
|
|
345
|
+
"store.actions.addToCollectionSuccess": "Koleksiyona ekleme başarılı",
|
|
346
|
+
"store.actions.addToCollectionSuccessDesc": "{{count}} nesne seçili koleksiyona eklendi",
|
|
347
|
+
"store.actions.addToCollectionTitle": "Bir Koleksiyona Ekle",
|
|
348
|
+
"store.actions.areYouSure": "Emin misiniz?",
|
|
349
|
+
"store.actions.cannotRemoveNoCollection": "Nesneler kaldırılamıyor: koleksiyon belirtilmedi",
|
|
350
|
+
"store.actions.changeContentType": "İçerik Türünü Değiştir",
|
|
351
|
+
"store.actions.changeContentTypeDesc": "Seçili belgelerin İçerik Türünü değiştirin",
|
|
352
|
+
"store.actions.changeType": "Türü Değiştir",
|
|
353
|
+
"store.actions.chooseExistingCollections": "Mevcut koleksiyonlardan seçin",
|
|
354
|
+
"store.actions.chooseWorkflowRule": "Başlatılacak bir iş akışı kuralı seçin:",
|
|
355
|
+
"store.actions.confirmDeleteAll": "Seçili tüm nesneleri silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.",
|
|
356
|
+
"store.actions.confirmDeleteSelected": "Seçili nesneleri silmek istediğinizden emin misiniz?\nBu, koleksiyonlardan kaldırma işlemi değildir.",
|
|
357
|
+
"store.actions.confirmRemoveFromCollection": "Seçili nesneleri bu koleksiyondan kaldırmak istediğinizden emin misiniz?",
|
|
358
|
+
"store.actions.createNew": "Yeni oluştur",
|
|
359
|
+
"store.actions.delete": "Sil",
|
|
360
|
+
"store.actions.deleteObjects": "Nesneleri Sil",
|
|
361
|
+
"store.actions.deleteTheSelectedObjects": "Seçili nesneleri sil",
|
|
362
|
+
"store.actions.errorChangingType": "Tür değiştirme hatası",
|
|
363
|
+
"store.actions.errorDeletingObjects": "Nesneler silinirken hata oluştu",
|
|
364
|
+
"store.actions.errorExportProperties": "Özellikleri Dışa Aktarma Hatası",
|
|
365
|
+
"store.actions.errorRemovingObjects": "Nesneler koleksiyondan kaldırılırken hata oluştu",
|
|
366
|
+
"store.actions.errorStartingWorkflow": "İş akışı başlatılırken hata oluştu",
|
|
367
|
+
"store.actions.exportAllObjectProperties": "Tüm Nesne Özelliklerini Dışa Aktar",
|
|
368
|
+
"store.actions.exportProperties": "Özellikleri Dışa Aktar",
|
|
369
|
+
"store.actions.noCollectionContext": "Koleksiyon bağlamı yok",
|
|
370
|
+
"store.actions.noObjectsSelected": "Nesne seçilmedi",
|
|
371
|
+
"store.actions.pleaseSelectObjectsToDelete": "Lütfen silinecek nesneleri seçin",
|
|
372
|
+
"store.actions.pleaseSelectObjectsToRemove": "Lütfen koleksiyondan kaldırılacak nesneleri seçin",
|
|
373
|
+
"store.actions.removeFromCollection": "Koleksiyondan Kaldır",
|
|
374
|
+
"store.actions.removeFromCollectionDesc": "Seçili nesneleri bu koleksiyondan kaldır",
|
|
375
|
+
"store.actions.selectCollection": "Koleksiyon Seçin",
|
|
376
|
+
"store.actions.startWorkflow": "İş Akışı Başlat",
|
|
377
|
+
"store.actions.startWorkflowByRule": "Kurala Göre İş Akışı Başlat",
|
|
378
|
+
"store.actions.startWorkflowDesc": "Seçili nesneler üzerinde bir iş akışı başlat",
|
|
379
|
+
"store.actions.workflowStarted": "İş akışı başlatıldı",
|
|
380
|
+
"store.allowedContentTypes": "İzin Verilen İçerik Türleri",
|
|
381
|
+
"store.allowedContentTypesOptionalDescription": "İsteğe bağlı olarak koleksiyona eklenebilecek içerik türlerini seçin. Ayarlanmamışsa tüm içerik türlerine izin verilir.",
|
|
382
|
+
"store.allowedContentTypesSelectDescription": "Koleksiyona eklenebilecek içerik türlerini seçin. Ayarlanmamışsa tüm içerik türlerine izin verilir.",
|
|
383
|
+
"store.areYouSureDeleteCollection": "Bu koleksiyonu silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.",
|
|
384
|
+
"store.audioFormatRequired": "MP3, M4A, OGG, WAV veya WebM formatı gereklidir",
|
|
385
|
+
"store.automaticTypeDetection": "Otomatik Tür Algılama",
|
|
386
|
+
"store.automaticTypeDetectionDescription": "Vertesia içeriği analiz ederek en uygun türü seçecektir. Bu, çoğu yükleme için önerilir ve en iyi işlemeyi sağlar.",
|
|
387
|
+
"store.cancelEdit": "İptal",
|
|
388
|
+
"store.chooseAFormat": "Bir format seçin",
|
|
389
|
+
"store.chooseContentType": "Bir İçerik Türü Seçin...",
|
|
390
|
+
"store.chooseContentTypes": "İçerik Türleri Seçin...",
|
|
391
|
+
"store.chooseWhatToExport": "Dışa aktarılacak olanı seçin",
|
|
392
|
+
"store.clearSelection": "Seçimi temizle",
|
|
393
|
+
"store.close": "Kapat",
|
|
394
|
+
"store.collectionCreated": "Koleksiyon oluşturuldu",
|
|
395
|
+
"store.collectionDeleted": "Koleksiyon silindi",
|
|
396
|
+
"store.collectionFetchFailed": "Koleksiyon getirme başarısız",
|
|
397
|
+
"store.collectionPropertiesUpdated": "Koleksiyon özellikleri güncellendi",
|
|
398
|
+
"store.collectionUpdated": "Koleksiyon güncellendi",
|
|
399
|
+
"store.collectionUpdatedSuccess": "Koleksiyon başarıyla güncellendi",
|
|
400
|
+
"store.collectionsSelected": "{{count}} koleksiyon seçildi",
|
|
401
|
+
"store.configuration": "Yapılandırma",
|
|
402
|
+
"store.confirmSelection": "Seçimi onayla",
|
|
403
|
+
"store.contentCopied": "{{type}} kopyalandı",
|
|
404
|
+
"store.contentExported": "İçerik dışa aktarıldı",
|
|
405
|
+
"store.contentType": "İçerik Türü",
|
|
406
|
+
"store.convertingToPdf": "PDF'ye dönüştürülüyor...",
|
|
407
|
+
"store.copyFailed": "Kopyalama başarısız",
|
|
408
|
+
"store.createACollection": "Bir Koleksiyon Oluştur",
|
|
409
|
+
"store.createCollection": "Koleksiyon Oluştur",
|
|
410
|
+
"store.createType": "Tür Oluştur",
|
|
411
|
+
"store.created": "Oluşturulma",
|
|
412
|
+
"store.createdBy": "Oluşturan",
|
|
413
|
+
"store.deleteCollection": "Koleksiyonu Sil",
|
|
414
|
+
"store.documentExported": "Belge dışa aktarıldı",
|
|
415
|
+
"store.documentInformation": "Belge Bilgisi",
|
|
416
|
+
"store.documentListRefreshed": "Belge listesi yenilendi",
|
|
417
|
+
"store.documentListRefreshedDesc": "Belge listesi yüklenen dosyalarınızla güncellendi.",
|
|
418
|
+
"store.documentPreview": "Belge Önizleme",
|
|
419
|
+
"store.downloadFailed": "İndirme başarısız",
|
|
420
|
+
"store.dynamicCollection": "Dinamik Koleksiyon",
|
|
421
|
+
"store.dynamicCollectionDescription": "Bir sorguya dayalı olarak koleksiyon için dinamik olarak içerik getirin. Etkinleştirilmezse içerik kullanıcılar veya ajanlar tarafından eklenmelidir.",
|
|
422
|
+
"store.editJson": "JSON Düzenle",
|
|
423
|
+
"store.editProperties": "Özellikleri Düzenle",
|
|
424
|
+
"store.editSchema": "Şema Düzenle",
|
|
425
|
+
"store.editText": "Metni düzenle",
|
|
426
|
+
"store.editingGenericDocument": "Genel belge özellikleri düzenleniyor",
|
|
427
|
+
"store.embeddings": "Gömüler",
|
|
428
|
+
"store.enableSyncMemberHeads": "Üye başlıklarını senkronize etmeyi etkinleştir",
|
|
429
|
+
"store.error": "Hata",
|
|
430
|
+
"store.errorCheckingDuplicates": "Yinelenen dosyalar kontrol edilirken bir hata oluştu",
|
|
431
|
+
"store.errorCreatingType": "Tür oluşturma hatası",
|
|
432
|
+
"store.errorInUploadProcessingCheck": "Dosya yükleme işleme kontrolünde hata",
|
|
433
|
+
"store.errorProcessingFiles": "Dosyalar işlenirken hata oluştu",
|
|
434
|
+
"store.errorSavingText": "Metin kaydedilemedi",
|
|
435
|
+
"store.errorSavingTextDefault": "Metin içeriği kaydedilirken bir hata oluştu.",
|
|
436
|
+
"store.errorUpdatingProperties": "Özellikler güncellenirken hata oluştu",
|
|
437
|
+
"store.errorUpdatingPropertiesDefault": "Özellikler güncellenirken bir hata oluştu.",
|
|
438
|
+
"store.exportFailed": "Dışa aktarma başarısız",
|
|
439
|
+
"store.exportInProgress": "DIŞA AKTARMA DEVAM EDİYOR",
|
|
440
|
+
"store.failedToConvertToPdf": "PDF'ye dönüştürülemedi",
|
|
441
|
+
"store.failedToCopy": "{{type}} panoya kopyalanamadı",
|
|
442
|
+
"store.failedToCreateCollection": "Koleksiyon oluşturulamadı",
|
|
443
|
+
"store.failedToDeleteCollection": "Koleksiyon silinemedi",
|
|
444
|
+
"store.failedToDownloadFile": "Dosya indirilemedi",
|
|
445
|
+
"store.failedToDownloadPdf": "PDF dosyası indirilemedi",
|
|
446
|
+
"store.failedToExportContent": "İçerik dışa aktarılamadı",
|
|
447
|
+
"store.failedToExportDocument": "Belge dışa aktarılamadı",
|
|
448
|
+
"store.failedToFetchRoleMappings": "Rol eşlemeleri getirilemedi",
|
|
449
|
+
"store.failedToFetchTypes": "ObjectType'lar getirilemedi",
|
|
450
|
+
"store.failedToFetchWorkflows": "İş akışları getirilemedi",
|
|
451
|
+
"store.failedToGetDownloadUrl": "İndirme URL'si alınamadı",
|
|
452
|
+
"store.failedToLoadDocument": "Belge yüklenemedi",
|
|
453
|
+
"store.failedToLoadType": "Tür yüklenemedi",
|
|
454
|
+
"store.failedToUpdateCollection": "Koleksiyon güncellenemedi",
|
|
455
|
+
"store.failedToUpdateCollectionProperties": "Koleksiyon özellikleri güncellenemedi",
|
|
456
|
+
"store.failedToUpdateSchema": "Şema güncellenemedi",
|
|
457
|
+
"store.failedToUpdateSharedProperties": "Paylaşılan özellikler güncellenemedi",
|
|
458
|
+
"store.failedToUpdateSkipHeadSync": "Başlık senkronizasyonu atlama ayarı güncellenemedi",
|
|
459
|
+
"store.failedToUpdateTableLayout": "Tablo düzeni güncellenemedi",
|
|
460
|
+
"store.filesAnalyzedTitle": "Dosyalar analiz edildi",
|
|
461
|
+
"store.filesReadyToProcess": "Dosyalar işlenmeye hazır",
|
|
462
|
+
"store.filterByName": "Ada Göre Filtrele",
|
|
463
|
+
"store.fullText": "Tam Metin",
|
|
464
|
+
"store.fullView": "Tam Görünüm",
|
|
465
|
+
"store.getStartedCollections": "Yeni bir Koleksiyon oluşturarak başlayın.",
|
|
466
|
+
"store.getStartedTypes": "Yeni bir Tür oluşturarak başlayın.",
|
|
467
|
+
"store.id": "ID",
|
|
468
|
+
"store.invalidJson": "Geçersiz JSON",
|
|
469
|
+
"store.invalidJsonSchema": "Geçersiz JSON Şeması",
|
|
470
|
+
"store.invalidQueryJson": "Geçersiz Sorgu JSON",
|
|
471
|
+
"store.invalidTableLayout": "Geçersiz Tablo Düzeni",
|
|
472
|
+
"store.isChunkable": "Parçalanabilir",
|
|
473
|
+
"store.limit": "Sınır",
|
|
474
|
+
"store.loadingDocument": "Belge yükleniyor...",
|
|
475
|
+
"store.loadingProcessingStatus": "İşleme durumu yükleniyor...",
|
|
476
|
+
"store.na": "Yok",
|
|
477
|
+
"store.name": "Ad",
|
|
478
|
+
"store.newCollections": "Yeni Koleksiyonlar",
|
|
479
|
+
"store.newVersionCreated": "Yeni sürüm oluşturuldu",
|
|
480
|
+
"store.newVersionCreatedDesc": "Güncellenmiş özelliklerle yeni bir sürüm oluşturuldu.",
|
|
481
|
+
"store.noAudioRendition": "Web uyumlu ses sürümü mevcut değil",
|
|
482
|
+
"store.noCollections": "Koleksiyon Yok",
|
|
483
|
+
"store.noCollectionsAvailable": "Kullanılabilir koleksiyon yok.",
|
|
484
|
+
"store.noCollectionsFound": "Koleksiyon bulunamadı.",
|
|
485
|
+
"store.noFilesSelected": "Dosya seçilmedi",
|
|
486
|
+
"store.noObjectsDragAndDrop": "Nesne yok. İçerik nesneleri oluşturmak için belgeleri veya resimleri buraya sürükleyip bırakın.",
|
|
487
|
+
"store.noPreviewAvailable": "Bu belge türü için önizleme mevcut değil.",
|
|
488
|
+
"store.noProjectSelected": "Proje seçilmedi",
|
|
489
|
+
"store.noPropertiesAvailable": "Bu belge için kullanılabilir özellik yok.",
|
|
490
|
+
"store.noPropertiesDefined": "Tanımlı özellik yok",
|
|
491
|
+
"store.noTranscriptAvailable": "Transkript mevcut değil",
|
|
492
|
+
"store.noType": "Tür Yok",
|
|
493
|
+
"store.noValidFilesSelected": "Geçerli dosya seçilmedi",
|
|
494
|
+
"store.noVideoRendition": "Web uyumlu video sürümü mevcut değil",
|
|
495
|
+
"store.none": "Hiçbiri",
|
|
496
|
+
"store.openFullDocument": "Tam Belgeyi Aç",
|
|
497
|
+
"store.openFullDocumentView": "Tam Belge Görünümünü Aç",
|
|
498
|
+
"store.optional": "(İsteğe bağlı)",
|
|
499
|
+
"store.pdfConversionFailed": "PDF dönüştürme başarısız",
|
|
500
|
+
"store.pdfPreviewFullView": "PDF belge önizlemesi tam görünümde kullanılabilir.",
|
|
501
|
+
"store.pleaseFixJsonSyntax": "Lütfen kaydetmeden önce JSON sözdizimi hatalarını düzeltin.",
|
|
502
|
+
"store.pleaseProvideName": "Lütfen koleksiyon için bir ad girin",
|
|
503
|
+
"store.pleaseSelectValidFiles": "Lütfen geçerli içeriğe sahip dosyalar seçin.",
|
|
504
|
+
"store.pleaseWait": "LÜTFEN BEKLEYİN",
|
|
505
|
+
"store.preview": "Önizleme",
|
|
506
|
+
"store.previewProperties": "Özellikleri önizle",
|
|
507
|
+
"store.processingFailedFor": "{{name}} için işleme başarısız",
|
|
508
|
+
"store.processingFiles": "Dosyalar işleniyor",
|
|
509
|
+
"store.properties": "Özellikler",
|
|
510
|
+
"store.propertiesUpdated": "Özellikler güncellendi",
|
|
511
|
+
"store.propertiesUpdatedDesc": "Nesne özellikleri başarıyla güncellendi.",
|
|
512
|
+
"store.query": "Sorgu",
|
|
513
|
+
"store.queryDescription": "Koleksiyon için dinamik olarak içerik getirmek üzere sorguyu tanımlayın.",
|
|
514
|
+
"store.refresh": "Yenile",
|
|
515
|
+
"store.renderingDocument": "Belgeniz oluşturuluyor...",
|
|
516
|
+
"store.saveChanges": "Değişiklikleri Kaydet",
|
|
517
|
+
"store.saveText": "Kaydet",
|
|
518
|
+
"store.schemaEditor": "Şema Düzenleyici",
|
|
519
|
+
"store.schemaUpdated": "Şema güncellendi",
|
|
520
|
+
"store.schemaUpdatedSuccess": "Şema başarıyla güncellendi",
|
|
521
|
+
"store.search": "Ara",
|
|
522
|
+
"store.searchCollections": "Koleksiyonları ara",
|
|
523
|
+
"store.searchFailed": "Arama başarısız",
|
|
524
|
+
"store.searchPlaceholder": "Aradığınızı yazın veya bir filtre seçin",
|
|
525
|
+
"store.searchTypes": "Türleri Ara",
|
|
526
|
+
"store.searching": "Aranıyor...",
|
|
527
|
+
"store.selectACollection": "Bir koleksiyon seçin",
|
|
528
|
+
"store.selectContent": "İçerik Seç",
|
|
529
|
+
"store.selectContentType": "İçerik Türü Seçin",
|
|
530
|
+
"store.selectContentTypeAuto": "Bir içerik türü seçin veya otomatik algılama için boş bırakın",
|
|
531
|
+
"store.selectContentTypeLabel": "Bir içerik türü seçin",
|
|
532
|
+
"store.selectPropertiesToShare": "Paylaşılacak özellikleri seçin",
|
|
533
|
+
"store.semanticChunking": "Semantik Parçalama",
|
|
534
|
+
"store.semanticSearch": "Semantik arama",
|
|
535
|
+
"store.semanticSearchSettings": "Semantik arama ayarları",
|
|
536
|
+
"store.sharedProperties": "Paylaşılan Özellikler",
|
|
537
|
+
"store.sharedPropertiesDescription": "Koleksiyondaki tüm üyeler arasında paylaşılacak özellikler ekleyin. Bu özellik, projede paylaşılan özellik senkronizasyonunun etkinleştirilmesini gerektirir.",
|
|
538
|
+
"store.showingFirst128K": "Yalnızca ilk 128K karakter gösteriliyor",
|
|
539
|
+
"store.size": "Boyut",
|
|
540
|
+
"store.staticCollection": "Statik Koleksiyon",
|
|
541
|
+
"store.strictMode": "Katı Mod",
|
|
542
|
+
"store.successfullyCopied": "{{type}} panoya başarıyla kopyalandı",
|
|
543
|
+
"store.successfullyExportedTo": "{{format}} olarak başarıyla dışa aktarıldı",
|
|
544
|
+
"store.syncMemberHeads": "Üye Başlıklarını Senkronize Et",
|
|
545
|
+
"store.syncMemberHeadsDescription": "Bir üyenin yeni HEAD sürümü oluşturulduğunda koleksiyon yeni HEAD'i gösterecek şekilde güncellenir.",
|
|
546
|
+
"store.tableLayout": "Tablo Düzeni",
|
|
547
|
+
"store.tableLayoutDescription": "Koleksiyonun tablolarda görüntülenmesi için özel bir düzen tanımlayın.",
|
|
548
|
+
"store.tableLayoutUpdated": "Tablo Düzeni güncellendi",
|
|
549
|
+
"store.tableLayoutUpdatedDesc": "Tablo düzeni başarıyla güncellendi",
|
|
550
|
+
"store.textConflict": "Belge başka bir yerde değiştirildi. Lütfen yenileyip tekrar deneyin.",
|
|
551
|
+
"store.textSaved": "Metin içeriği kaydedildi",
|
|
552
|
+
"store.typeCreated": "Tür oluşturuldu",
|
|
553
|
+
"store.typeDescription": "İsteğe bağlı olarak koleksiyona özel özellikler ve veriler atamak için bir içerik türü seçin.",
|
|
554
|
+
"store.typeSelectDescription": "Koleksiyona özel özellikler ve veriler atamak için bir içerik türü seçin.",
|
|
555
|
+
"store.unknown": "Bilinmeyen",
|
|
556
|
+
"store.unsavedChanges": "Kaydedilmemiş değişiklikler",
|
|
557
|
+
"store.updated": "Güncelleme",
|
|
558
|
+
"store.updatedAt": "Güncellenme Tarihi",
|
|
559
|
+
"store.updatedBy": "Güncelleyen",
|
|
560
|
+
"store.updatedSharedProperties": "Paylaşılan özellikler güncellendi",
|
|
561
|
+
"store.updatedSkipHeadSync": "Başlık senkronizasyonu atlama ayarı güncellendi",
|
|
562
|
+
"store.upload": "Yükle",
|
|
563
|
+
"store.uploadComplete": "Yükleme Tamamlandı",
|
|
564
|
+
"store.uploadIssues": "Yükleme Sorunları",
|
|
565
|
+
"store.validationFailed": "Doğrulama başarısız",
|
|
566
|
+
"store.videoFormatRequired": "MP4 veya WebM formatı gereklidir",
|
|
567
|
+
"store.viewAsPdf": "PDF olarak görüntüle",
|
|
568
|
+
"store.viewAudio": "Sesi Görüntüle",
|
|
569
|
+
"store.viewImage": "Resmi Görüntüle",
|
|
570
|
+
"store.viewInJsonFormat": "JSON formatında görüntüle",
|
|
571
|
+
"store.viewPdf": "PDF Görüntüle",
|
|
572
|
+
"store.viewText": "Metni Görüntüle",
|
|
573
|
+
"store.viewTranscript": "Transkripti Görüntüle",
|
|
574
|
+
"store.viewVideo": "Videoyu Görüntüle",
|
|
575
|
+
"store.viewingNewVersion": "Yeni Sürüm Görüntüleniyor",
|
|
576
|
+
"store.viewingNewVersionDefault": "Şimdi yeni sürüm görüntüleniyor",
|
|
577
|
+
"store.viewingVersionLabel": "Şimdi '{{label}}' sürümü görüntüleniyor",
|
|
578
|
+
"theme.dark": "Koyu",
|
|
579
|
+
"theme.label": "Tema",
|
|
580
|
+
"theme.light": "Açık",
|
|
581
|
+
"theme.system": "Sistem",
|
|
582
|
+
"type.description": "Açıklama",
|
|
583
|
+
"type.name": "Ad",
|
|
584
|
+
"type.nameRequired": "Ad gereklidir",
|
|
585
|
+
"upload.allFilesExist": "Tüm {{count}} dosya sistemde zaten mevcut ve atlanacaktır. Sonuçları görüntülemek için devam edebilirsiniz.",
|
|
586
|
+
"upload.analyzingFiles": "Dosyalar analiz ediliyor...",
|
|
587
|
+
"upload.checkingForDuplicates": "Yinelenler ve güncellemeler kontrol ediliyor",
|
|
588
|
+
"upload.collectionLabel": "Koleksiyon:",
|
|
589
|
+
"upload.contentTypeTooltip": "Yüklenen dosyalara uygulanacak bir içerik türü seçin. Boş bırakılırsa Vertesia dosya içeriğine göre türü otomatik algılar.",
|
|
590
|
+
"upload.continue": "Devam",
|
|
591
|
+
"upload.dragAndDrop": "Dosyaları sürükleyip bırakın veya seçmek için tıklayın",
|
|
592
|
+
"upload.errorAnalyzingFiles": "Dosyalar analiz edilirken bir hata oluştu",
|
|
593
|
+
"upload.failedToUpload": "Yükleme başarısız",
|
|
594
|
+
"upload.fileAnalysisResults": "Dosya Analiz Sonuçları",
|
|
595
|
+
"upload.filesAnalyzed": "Dosyalar analiz edildi",
|
|
596
|
+
"upload.filesProcessed_one": "{{count}} dosya işlendi",
|
|
597
|
+
"upload.filesProcessed_other": "{{count}} dosya işlendi",
|
|
598
|
+
"upload.filesReadyToProcess_one": "{{count}} dosya işlenmeye hazır",
|
|
599
|
+
"upload.filesReadyToProcess_other": "{{count}} dosya işlenmeye hazır",
|
|
600
|
+
"upload.filesToSkip_one": "{{count}} dosya sistemde zaten mevcut ve atlanacak.",
|
|
601
|
+
"upload.filesToSkip_other": "{{count}} dosya sistemde zaten mevcut ve atlanacak.",
|
|
602
|
+
"upload.folderLabel": "Klasör:",
|
|
603
|
+
"upload.inCollection": " '{{collection}}' koleksiyonunda",
|
|
604
|
+
"upload.inFolder": " '{{location}}' klasöründe",
|
|
605
|
+
"upload.new": "Yeni",
|
|
606
|
+
"upload.noFilesToProcess": "İşlenecek dosya yok.",
|
|
607
|
+
"upload.noItems": "Görüntülenecek öğe yok",
|
|
608
|
+
"upload.preparingFiles_one": "{{count}} dosya yüklenmeye hazırlanıyor...",
|
|
609
|
+
"upload.preparingFiles_other": "{{count}} dosya yüklenmeye hazırlanıyor...",
|
|
610
|
+
"upload.preparingFolder_one": "{{fileCount}} dosya içeren 1 klasör yüklenmeye hazırlanıyor...",
|
|
611
|
+
"upload.preparingFolder_other": "{{fileCount}} dosya içeren {{folderCount}} klasör yüklenmeye hazırlanıyor...",
|
|
612
|
+
"upload.processedCount": "{{processed}}/{{total}} dosya işlendi...",
|
|
613
|
+
"upload.processingFilesAction": "Dosyalar işleniyor ({{action}})",
|
|
614
|
+
"upload.selectFiles": "Dosya Seç",
|
|
615
|
+
"upload.selectFolder": "Klasör seç",
|
|
616
|
+
"upload.skip": "Atla",
|
|
617
|
+
"upload.skippedAlreadyExisted": "Atlandı (zaten mevcut)",
|
|
618
|
+
"upload.successfullyUpdated": "Başarıyla güncellendi",
|
|
619
|
+
"upload.successfullyUploaded": "Başarıyla yüklendi",
|
|
620
|
+
"upload.update": "Güncelle",
|
|
621
|
+
"upload.uploadComplete": "Yükleme Tamamlandı",
|
|
622
|
+
"upload.uploadFiles": "Dosya yükle",
|
|
623
|
+
"upload.uploadLocation": "Yükleme Konumu:",
|
|
624
|
+
"upload.uploadMore": "Daha Fazla Yükle",
|
|
625
|
+
"upload.uploadProcessInterrupted": "Yükleme işlemi kesildi",
|
|
626
|
+
"upload.uploadingFiles": "Dosyalar Yükleniyor",
|
|
627
|
+
"upload.useAutoDetection": "Otomatik Tür Algılama Kullan",
|
|
628
|
+
"upload.useTypeName": "{{typeName}} Kullan",
|
|
629
|
+
"user.account": "Hesap:",
|
|
630
|
+
"user.agentOnBehalfOf": "Adına hareket eden ajan",
|
|
631
|
+
"user.agentOnBehalfOfApiKey": "API anahtarı adına hareket eden ajan",
|
|
632
|
+
"user.appVersion": "Uygulama Sürümü",
|
|
633
|
+
"user.environment": "Ortam",
|
|
634
|
+
"user.failedToFetchApiKey": "API anahtarı getirilemedi",
|
|
635
|
+
"user.failedToFetchGroup": "Grup getirilemedi",
|
|
636
|
+
"user.failedToFetchUser": "Kullanıcı getirilemedi",
|
|
637
|
+
"user.groupId": "Grup ID: {{id}}",
|
|
638
|
+
"user.key": "Anahtar:",
|
|
639
|
+
"user.organizationId": "Kuruluş ID",
|
|
640
|
+
"user.organizationRoles": "Kuruluş Rolleri",
|
|
641
|
+
"user.privateKey": "Özel Anahtar",
|
|
642
|
+
"user.project": "Proje:",
|
|
643
|
+
"user.projectId": "Proje ID",
|
|
644
|
+
"user.projectRoles": "Proje Rolleri",
|
|
645
|
+
"user.schedule": "{{title}} Zamanla",
|
|
646
|
+
"user.sdkVersion": "SDK Sürümü",
|
|
647
|
+
"user.server": "Sunucu",
|
|
648
|
+
"user.serviceAccount": "Hizmet Hesabı",
|
|
649
|
+
"user.serviceAccountDescription": "Bu kullanıcı, iş akışı işçileri gibi robotlar tarafından kullanılır.",
|
|
650
|
+
"user.store": "Depo",
|
|
651
|
+
"user.systemUser": "Sistem Kullanıcısı",
|
|
652
|
+
"user.systemUserDescription": "Sistem kullanıcısı, yerleşik nesneleri başlatmak için kullanılır.",
|
|
653
|
+
"user.tenantId": "Kiracı ID",
|
|
654
|
+
"user.unknown": "bilinmeyen",
|
|
655
|
+
"user.unknownUser": "Bilinmeyen Kullanıcı",
|
|
656
|
+
"user.unknownUserDescription": "Kullanıcı bilgisi mevcut değil.",
|
|
657
|
+
"user.unnamedGroup": "Adsız Grup",
|
|
658
|
+
"user.user": "Kullanıcı",
|
|
659
|
+
"user.userId": "Kullanıcı ID",
|
|
660
|
+
"widgets.schema.editDescription": "Açıklamayı düzenle",
|
|
661
|
+
"widgets.schema.invalidPropertyDeclaration": "Geçersiz özellik bildirimi"
|
|
662
|
+
}
|