@agent-native/core 0.90.2 → 0.90.4
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/bin/agent-native.js +25 -3
- package/corpus/README.md +2 -2
- package/corpus/core/CHANGELOG.md +21 -0
- package/corpus/core/bin/agent-native.js +25 -3
- package/corpus/core/docs/content/agent-native-toolkit.mdx +87 -80
- package/corpus/core/docs/content/locales/ar-SA/agent-native-toolkit.mdx +89 -80
- package/corpus/core/docs/content/locales/de-DE/agent-native-toolkit.mdx +89 -80
- package/corpus/core/docs/content/locales/es-ES/agent-native-toolkit.mdx +89 -80
- package/corpus/core/docs/content/locales/fr-FR/agent-native-toolkit.mdx +89 -80
- package/corpus/core/docs/content/locales/hi-IN/agent-native-toolkit.mdx +89 -80
- package/corpus/core/docs/content/locales/ja-JP/agent-native-toolkit.mdx +89 -80
- package/corpus/core/docs/content/locales/ko-KR/agent-native-toolkit.mdx +89 -80
- package/corpus/core/docs/content/locales/pt-BR/agent-native-toolkit.mdx +89 -80
- package/corpus/core/docs/content/locales/zh-CN/agent-native-toolkit.mdx +89 -80
- package/corpus/core/docs/content/locales/zh-TW/agent-native-toolkit.mdx +89 -80
- package/corpus/core/docs/content/toolkit-agent-ux.mdx +43 -0
- package/corpus/core/docs/content/toolkit-app-adapters.mdx +9 -0
- package/corpus/core/docs/content/toolkit-collaboration-ui.mdx +12 -0
- package/corpus/core/docs/content/toolkit-collaboration.mdx +74 -0
- package/corpus/core/docs/content/toolkit-command-navigation.mdx +106 -0
- package/corpus/core/docs/content/toolkit-comments-review.mdx +98 -0
- package/corpus/core/docs/content/toolkit-history.mdx +95 -0
- package/corpus/core/docs/content/toolkit-observability.mdx +41 -0
- package/corpus/core/docs/content/toolkit-org-team.mdx +80 -0
- package/corpus/core/docs/content/toolkit-resources.mdx +57 -0
- package/corpus/core/docs/content/toolkit-settings.mdx +65 -0
- package/corpus/core/docs/content/toolkit-setup-connections.mdx +109 -0
- package/corpus/core/docs/content/toolkit-sharing-ui.mdx +18 -6
- package/corpus/core/docs/content/toolkit-sharing.mdx +81 -0
- package/corpus/core/docs/content/toolkit-shell-hooks.mdx +9 -0
- package/corpus/core/docs/content/toolkit-ui.mdx +9 -0
- package/corpus/core/package.json +35 -1
- package/corpus/core/src/agent/engine/ai-sdk-engine.ts +19 -1
- package/corpus/core/src/agent/engine/anthropic-engine.ts +25 -1
- package/corpus/core/src/agent/engine/index.ts +1 -0
- package/corpus/core/src/agent/engine/registry.ts +86 -18
- package/corpus/core/src/agent/production-agent.ts +37 -6
- package/corpus/core/src/cli/create.ts +35 -0
- package/corpus/core/src/cli/design-connect.ts +248 -0
- package/corpus/core/src/cli/index.ts +84 -7
- package/corpus/core/src/cli/workspacify.ts +34 -0
- package/corpus/core/src/client/command-navigation/index.ts +15 -0
- package/corpus/core/src/client/comments-review/index.ts +1 -0
- package/corpus/core/src/client/history/VersionHistoryPanel.tsx +175 -0
- package/corpus/core/src/client/history/index.ts +21 -0
- package/corpus/core/src/client/history/use-history.ts +114 -0
- package/corpus/core/src/client/index.ts +84 -9
- package/corpus/core/src/client/org/OrgSwitcher.tsx +6 -6
- package/corpus/core/src/client/org/RequireActiveOrg.tsx +2 -2
- package/corpus/core/src/client/org/TeamPage.tsx +3 -3
- package/corpus/core/src/client/org/hooks.ts +32 -0
- package/corpus/core/src/client/org/index.ts +30 -1
- package/corpus/core/src/client/org-team/index.ts +1 -0
- package/corpus/core/src/client/review/ReviewStatusBadge.tsx +39 -0
- package/corpus/core/src/client/review/ReviewThreadPanel.tsx +278 -0
- package/corpus/core/src/client/review/index.ts +30 -0
- package/corpus/core/src/client/review/use-review.ts +152 -0
- package/corpus/core/src/client/settings/index.ts +11 -1
- package/corpus/core/src/client/setup-connections/BuilderConnectCard.tsx +94 -0
- package/corpus/core/src/client/setup-connections/ProviderReadinessBadge.tsx +73 -0
- package/corpus/core/src/client/setup-connections/SetupConnectionsPage.tsx +94 -0
- package/corpus/core/src/client/setup-connections/index.ts +46 -0
- package/corpus/core/src/client/sharing/ShareButton.tsx +20 -14
- package/corpus/core/src/client/sharing/ShareDialog.tsx +3 -3
- package/corpus/core/src/command-navigation/actions.ts +100 -0
- package/corpus/core/src/command-navigation/index.ts +12 -0
- package/corpus/core/src/comments-review/index.ts +1 -0
- package/corpus/core/src/file-upload/builder.ts +24 -3
- package/corpus/core/src/file-upload/types.ts +3 -1
- package/corpus/core/src/history/actions/create-resource-version.ts +92 -0
- package/corpus/core/src/history/actions/get-resource-version.ts +60 -0
- package/corpus/core/src/history/actions/list-resource-history.ts +53 -0
- package/corpus/core/src/history/actions/list-resource-versions.ts +43 -0
- package/corpus/core/src/history/actions/restore-resource-version.ts +96 -0
- package/corpus/core/src/history/index.ts +26 -0
- package/corpus/core/src/history/registry.ts +111 -0
- package/corpus/core/src/history/store.ts +379 -0
- package/corpus/core/src/history/types.ts +69 -0
- package/corpus/core/src/index.ts +10 -0
- package/corpus/core/src/navigation/index.ts +170 -0
- package/corpus/core/src/org/index.ts +8 -0
- package/corpus/core/src/org/permissions.ts +30 -0
- package/corpus/core/src/org-team/index.ts +1 -0
- package/corpus/core/src/private-blob/registry.ts +1 -0
- package/corpus/core/src/review/actions/consume-review-feedback.ts +48 -0
- package/corpus/core/src/review/actions/create-review-comment.ts +107 -0
- package/corpus/core/src/review/actions/delete-review-comment.ts +67 -0
- package/corpus/core/src/review/actions/get-review-feedback.ts +54 -0
- package/corpus/core/src/review/actions/list-review-comments.ts +53 -0
- package/corpus/core/src/review/actions/reply-review-comment.ts +107 -0
- package/corpus/core/src/review/actions/resolve-review-thread.ts +67 -0
- package/corpus/core/src/review/actions/set-review-status.ts +58 -0
- package/corpus/core/src/review/index.ts +31 -0
- package/corpus/core/src/review/mentions.ts +44 -0
- package/corpus/core/src/review/registry.ts +111 -0
- package/corpus/core/src/review/store.ts +690 -0
- package/corpus/core/src/review/types.ts +97 -0
- package/corpus/core/src/server/action-discovery.ts +54 -0
- package/corpus/core/src/server/agent-chat-plugin.ts +6 -0
- package/corpus/core/src/server/agent-engine-api-key-route.ts +5 -0
- package/corpus/core/src/server/credential-provider.ts +118 -0
- package/corpus/core/src/setup-connections/index.ts +89 -0
- package/corpus/core/src/setup-connections/onboarding.ts +47 -0
- package/corpus/core/src/transcription/builder-transcription.ts +9 -2
- package/corpus/core/src/vite/action-types-plugin.ts +52 -0
- package/corpus/templates/analytics/app/components/layout/Layout.tsx +2 -1
- package/corpus/templates/analytics/app/components/layout/Sidebar.tsx +2 -2
- package/corpus/templates/analytics/app/global.css +22 -10
- package/corpus/templates/analytics/app/i18n/zh-TW.ts +6 -1
- package/corpus/templates/analytics/app/i18n-data.ts +81 -13
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/index.tsx +2 -2
- package/corpus/templates/analytics/app/pages/analyses/AnalysisDetail.tsx +2 -2
- package/corpus/templates/analytics/app/pages/sessions/SessionDetailPage.tsx +528 -108
- package/corpus/templates/analytics/app/pages/sessions/SessionDevToolsPanel.tsx +466 -183
- package/corpus/templates/analytics/changelog/2026-07-07-session-replays-load-sooner-show-clearer-activity-timelines-.md +6 -0
- package/corpus/templates/assets/actions/_preset-skeleton-validation.ts +11 -11
- package/corpus/templates/assets/actions/generate-image.ts +64 -28
- package/corpus/templates/assets/app/components/generation/GenerationResults.tsx +1 -1
- package/corpus/templates/assets/app/routes/brand-kits.$id_.presets.$presetId.tsx +91 -74
- package/corpus/templates/assets/server/lib/generation.ts +29 -4
- package/corpus/templates/assets/server/lib/image-processing.ts +131 -0
- package/corpus/templates/brain/app/routes/settings.tsx +2 -2
- package/corpus/templates/calendar/.agents/skills/event-management/SKILL.md +24 -2
- package/corpus/templates/calendar/AGENTS.md +3 -0
- package/corpus/templates/calendar/actions/create-event.ts +8 -34
- package/corpus/templates/calendar/actions/event-action-helpers.ts +52 -0
- package/corpus/templates/calendar/actions/manage-event-draft.ts +7 -34
- package/corpus/templates/calendar/actions/update-event.ts +10 -23
- package/corpus/templates/calendar/app/components/calendar/AttendeeAutocomplete.tsx +79 -6
- package/corpus/templates/calendar/app/components/calendar/CreateEventDialog.tsx +23 -0
- package/corpus/templates/calendar/app/components/calendar/EventAttendeesSection.tsx +59 -2
- package/corpus/templates/calendar/app/components/calendar/EventDetailPanel.tsx +40 -1
- package/corpus/templates/calendar/app/components/calendar/EventDetailPopover.tsx +154 -41
- package/corpus/templates/calendar/app/hooks/use-events.ts +6 -0
- package/corpus/templates/calendar/app/hooks/use-people.ts +55 -0
- package/corpus/templates/calendar/app/i18n/zh-TW.ts +4 -0
- package/corpus/templates/calendar/app/i18n-data.ts +40 -0
- package/corpus/templates/calendar/changelog/2026-07-07-guest-suggestions-now-find-coworkers-from-your-google-worksp.md +6 -0
- package/corpus/templates/calendar/changelog/2026-07-07-you-can-mark-event-guests-as-optional-while-inviting-them-or.md +6 -0
- package/corpus/templates/calendar/changelog/2026-07-07-zoom-stays-selected-after-connecting-it-from-a-draft-event.md +6 -0
- package/corpus/templates/calendar/server/handlers/events.ts +1 -0
- package/corpus/templates/calendar/server/lib/google-calendar.ts +4 -0
- package/corpus/templates/calendar/server/plugins/agent-chat.ts +1 -1
- package/corpus/templates/calendar/shared/api.ts +2 -0
- package/corpus/templates/clips/.agents/skills/ai-video-tools/SKILL.md +29 -3
- package/corpus/templates/clips/actions/create-recording.ts +5 -1
- package/corpus/templates/clips/actions/finalize-recording.ts +140 -1
- package/corpus/templates/clips/actions/generate-workflow.ts +19 -8
- package/corpus/templates/clips/actions/get-clips-ai-prefs.ts +36 -0
- package/corpus/templates/clips/actions/import-loom-recording.ts +1 -0
- package/corpus/templates/clips/actions/lib/clips-ai-prefs.ts +28 -0
- package/corpus/templates/clips/actions/lib/ensure-seekable-video.ts +1 -0
- package/corpus/templates/clips/actions/regenerate-chapters.ts +21 -7
- package/corpus/templates/clips/actions/regenerate-summary.ts +26 -8
- package/corpus/templates/clips/actions/regenerate-title.ts +44 -7
- package/corpus/templates/clips/actions/request-transcript.ts +31 -0
- package/corpus/templates/clips/actions/set-thumbnail.ts +2 -0
- package/corpus/templates/clips/actions/update-clips-ai-prefs.ts +50 -0
- package/corpus/templates/clips/app/components/library/organization-switcher.tsx +2 -2
- package/corpus/templates/clips/app/components/meetings/meeting-card.tsx +7 -2
- package/corpus/templates/clips/app/components/player/scrubber-position.ts +9 -0
- package/corpus/templates/clips/app/components/player/scrubber.tsx +5 -2
- package/corpus/templates/clips/app/components/player/share-dialog.tsx +69 -41
- package/corpus/templates/clips/app/components/player/video-player.tsx +38 -1
- package/corpus/templates/clips/app/components/sharing/share-ui.tsx +3 -3
- package/corpus/templates/clips/app/components/sharing/slack-share-hint.tsx +9 -19
- package/corpus/templates/clips/app/hooks/use-auto-title.ts +25 -10
- package/corpus/templates/clips/app/i18n/ar-SA.ts +28 -6
- package/corpus/templates/clips/app/i18n/de-DE.ts +28 -6
- package/corpus/templates/clips/app/i18n/en-US.ts +29 -6
- package/corpus/templates/clips/app/i18n/es-ES.ts +29 -6
- package/corpus/templates/clips/app/i18n/fr-FR.ts +30 -6
- package/corpus/templates/clips/app/i18n/hi-IN.ts +26 -6
- package/corpus/templates/clips/app/i18n/ja-JP.ts +27 -6
- package/corpus/templates/clips/app/i18n/ko-KR.ts +28 -6
- package/corpus/templates/clips/app/i18n/pt-BR.ts +28 -6
- package/corpus/templates/clips/app/i18n/zh-CN.ts +26 -6
- package/corpus/templates/clips/app/i18n/zh-TW.ts +25 -6
- package/corpus/templates/clips/app/routes/_app.meetings._index.tsx +73 -0
- package/corpus/templates/clips/app/routes/_app.settings._index.tsx +1 -0
- package/corpus/templates/clips/app/routes/r.$recordingId.tsx +79 -5
- package/corpus/templates/clips/app/routes/record.tsx +21 -12
- package/corpus/templates/clips/changelog/2026-07-02-recordings-now-wait-for-storage-media-to-serve-before-finishing.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-07-a-pending-app-update-no-longer-blocks-screen-recording-updat.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-07-ai-tools-can-include-the-full-video-not-just-the-transcript-.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-07-chrome-extension-recordings-keep-audio-after-refreshing-tab.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-07-clip-playback-progress-now-starts-and-finishes-at-the-right-times.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-07-clips-desktop-now-surfaces-meetings-and-dictate-directly-in-.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-07-meeting-notes-now-explain-exactly-how-to-start-granola-style.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-07-meeting-start-alerts-now-include-separate-start-notes-and-jo.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-07-recordings-start-more-predictably-and-newly-saved-clips-refr.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-07-sharing-public-clips-now-stays-focused-on-the-normal-link-wi.md +6 -0
- package/corpus/templates/clips/chrome-extension/public/manifest.json +1 -1
- package/corpus/templates/clips/chrome-extension/src/background.ts +18 -0
- package/corpus/templates/clips/chrome-extension/src/offscreen.ts +23 -8
- package/corpus/templates/clips/desktop/src/app.tsx +475 -108
- package/corpus/templates/clips/desktop/src/hooks/useMediaDevices.ts +19 -7
- package/corpus/templates/clips/desktop/src/lib/permissions.ts +2 -0
- package/corpus/templates/clips/desktop/src/lib/recorder.ts +27 -21
- package/corpus/templates/clips/desktop/src/lib/updater.ts +25 -2
- package/corpus/templates/clips/desktop/src/overlays/meeting-notification.tsx +23 -22
- package/corpus/templates/clips/desktop/src/styles.css +167 -2
- package/corpus/templates/clips/desktop/src-tauri/src/native_screen.rs +8 -1
- package/corpus/templates/clips/desktop/src-tauri/src/notifications.rs +3 -7
- package/corpus/templates/clips/desktop/src-tauri/src/tray_meetings.rs +5 -4
- package/corpus/templates/clips/server/routes/_agent-native/clips/user-prefs.put.ts +16 -8
- package/corpus/templates/clips/server/routes/api/recordings/[recordingId]/thumbnail.post.ts +1 -0
- package/corpus/templates/clips/server/routes/api/uploads/[recordingId]/abort.post.ts +22 -5
- package/corpus/templates/clips/server/routes/api/uploads/[recordingId]/chunk.post.ts +8 -0
- package/corpus/templates/clips/server/routes/api/video/[recordingId].get.ts +13 -6
- package/corpus/templates/clips/shared/clips-ai-prefs.ts +81 -0
- package/corpus/templates/clips/shared/finalize-recovery.ts +12 -0
- package/corpus/templates/content/actions/delete-document.ts +337 -52
- package/corpus/templates/content/changelog/2026-07-07-permanently-deleting-trashed-databases-now-finishes-reliably.md +6 -0
- package/corpus/templates/design/.agents/skills/visual-edit/SKILL.md +16 -1
- package/corpus/templates/design/actions/add-localhost-screens.ts +1 -0
- package/corpus/templates/design/app/components/design/DesignCanvas.tsx +345 -11
- package/corpus/templates/design/app/components/design/bridge/editor-chrome.bridge.ts +89 -14
- package/corpus/templates/design/app/components/design/bridge-security.ts +7 -1
- package/corpus/templates/design/app/components/design/multi-screen/types.ts +1 -1
- package/corpus/templates/design/app/i18n/zh-TW.ts +3 -0
- package/corpus/templates/design/app/i18n-data.ts +41 -0
- package/corpus/templates/design/changelog/2026-07-07-local-visual-edit-uses-live-app-iframes-for-click-to-edit-pr.md +6 -0
- package/corpus/templates/slides/app/pages/DeckEditor.tsx +2 -2
- package/dist/agent/engine/ai-sdk-engine.d.ts.map +1 -1
- package/dist/agent/engine/ai-sdk-engine.js +15 -1
- package/dist/agent/engine/ai-sdk-engine.js.map +1 -1
- package/dist/agent/engine/anthropic-engine.d.ts.map +1 -1
- package/dist/agent/engine/anthropic-engine.js +20 -1
- package/dist/agent/engine/anthropic-engine.js.map +1 -1
- package/dist/agent/engine/index.d.ts +1 -1
- package/dist/agent/engine/index.d.ts.map +1 -1
- package/dist/agent/engine/index.js +1 -1
- package/dist/agent/engine/index.js.map +1 -1
- package/dist/agent/engine/registry.d.ts +14 -0
- package/dist/agent/engine/registry.d.ts.map +1 -1
- package/dist/agent/engine/registry.js +78 -16
- package/dist/agent/engine/registry.js.map +1 -1
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +27 -7
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/cli/create.d.ts.map +1 -1
- package/dist/cli/create.js +31 -0
- package/dist/cli/create.js.map +1 -1
- package/dist/cli/design-connect.d.ts.map +1 -1
- package/dist/cli/design-connect.js +186 -0
- package/dist/cli/design-connect.js.map +1 -1
- package/dist/cli/index.js +76 -9
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/workspacify.d.ts.map +1 -1
- package/dist/cli/workspacify.js +30 -0
- package/dist/cli/workspacify.js.map +1 -1
- package/dist/client/command-navigation/index.d.ts +4 -0
- package/dist/client/command-navigation/index.d.ts.map +1 -0
- package/dist/client/command-navigation/index.js +4 -0
- package/dist/client/command-navigation/index.js.map +1 -0
- package/dist/client/comments-review/index.d.ts +2 -0
- package/dist/client/comments-review/index.d.ts.map +1 -0
- package/dist/client/comments-review/index.js +2 -0
- package/dist/client/comments-review/index.js.map +1 -0
- package/dist/client/history/VersionHistoryPanel.d.ts +18 -0
- package/dist/client/history/VersionHistoryPanel.d.ts.map +1 -0
- package/dist/client/history/VersionHistoryPanel.js +31 -0
- package/dist/client/history/VersionHistoryPanel.js.map +1 -0
- package/dist/client/history/index.d.ts +3 -0
- package/dist/client/history/index.d.ts.map +1 -0
- package/dist/client/history/index.js +3 -0
- package/dist/client/history/index.js.map +1 -0
- package/dist/client/history/use-history.d.ts +58 -0
- package/dist/client/history/use-history.d.ts.map +1 -0
- package/dist/client/history/use-history.js +24 -0
- package/dist/client/history/use-history.js.map +1 -0
- package/dist/client/index.d.ts +6 -4
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +6 -4
- package/dist/client/index.js.map +1 -1
- package/dist/client/org/OrgSwitcher.js +5 -5
- package/dist/client/org/OrgSwitcher.js.map +1 -1
- package/dist/client/org/RequireActiveOrg.js +2 -2
- package/dist/client/org/RequireActiveOrg.js.map +1 -1
- package/dist/client/org/TeamPage.js +3 -3
- package/dist/client/org/TeamPage.js.map +1 -1
- package/dist/client/org/hooks.d.ts +12 -1
- package/dist/client/org/hooks.d.ts.map +1 -1
- package/dist/client/org/hooks.js +15 -0
- package/dist/client/org/hooks.js.map +1 -1
- package/dist/client/org/index.d.ts +4 -2
- package/dist/client/org/index.d.ts.map +1 -1
- package/dist/client/org/index.js +3 -1
- package/dist/client/org/index.js.map +1 -1
- package/dist/client/org-team/index.d.ts +2 -0
- package/dist/client/org-team/index.d.ts.map +1 -0
- package/dist/client/org-team/index.js +2 -0
- package/dist/client/org-team/index.js.map +1 -0
- package/dist/client/review/ReviewStatusBadge.d.ts +7 -0
- package/dist/client/review/ReviewStatusBadge.d.ts.map +1 -0
- package/dist/client/review/ReviewStatusBadge.js +19 -0
- package/dist/client/review/ReviewStatusBadge.js.map +1 -0
- package/dist/client/review/ReviewThreadPanel.d.ts +20 -0
- package/dist/client/review/ReviewThreadPanel.d.ts.map +1 -0
- package/dist/client/review/ReviewThreadPanel.js +84 -0
- package/dist/client/review/ReviewThreadPanel.js.map +1 -0
- package/dist/client/review/index.d.ts +4 -0
- package/dist/client/review/index.d.ts.map +1 -0
- package/dist/client/review/index.js +4 -0
- package/dist/client/review/index.js.map +1 -0
- package/dist/client/review/use-review.d.ts +91 -0
- package/dist/client/review/use-review.d.ts.map +1 -0
- package/dist/client/review/use-review.js +30 -0
- package/dist/client/review/use-review.js.map +1 -0
- package/dist/client/settings/index.d.ts +1 -1
- package/dist/client/settings/index.d.ts.map +1 -1
- package/dist/client/settings/index.js +1 -1
- package/dist/client/settings/index.js.map +1 -1
- package/dist/client/setup-connections/BuilderConnectCard.d.ts +9 -0
- package/dist/client/setup-connections/BuilderConnectCard.d.ts.map +1 -0
- package/dist/client/setup-connections/BuilderConnectCard.js +25 -0
- package/dist/client/setup-connections/BuilderConnectCard.js.map +1 -0
- package/dist/client/setup-connections/ProviderReadinessBadge.d.ts +8 -0
- package/dist/client/setup-connections/ProviderReadinessBadge.d.ts.map +1 -0
- package/dist/client/setup-connections/ProviderReadinessBadge.js +32 -0
- package/dist/client/setup-connections/ProviderReadinessBadge.js.map +1 -0
- package/dist/client/setup-connections/SetupConnectionsPage.d.ts +17 -0
- package/dist/client/setup-connections/SetupConnectionsPage.d.ts.map +1 -0
- package/dist/client/setup-connections/SetupConnectionsPage.js +10 -0
- package/dist/client/setup-connections/SetupConnectionsPage.js.map +1 -0
- package/dist/client/setup-connections/index.d.ts +7 -0
- package/dist/client/setup-connections/index.d.ts.map +1 -0
- package/dist/client/setup-connections/index.js +7 -0
- package/dist/client/setup-connections/index.js.map +1 -0
- package/dist/client/sharing/ShareButton.d.ts +4 -4
- package/dist/client/sharing/ShareButton.d.ts.map +1 -1
- package/dist/client/sharing/ShareButton.js +13 -7
- package/dist/client/sharing/ShareButton.js.map +1 -1
- package/dist/client/sharing/ShareDialog.js +3 -3
- package/dist/client/sharing/ShareDialog.js.map +1 -1
- package/dist/collab/awareness.d.ts +2 -2
- package/dist/collab/awareness.d.ts.map +1 -1
- package/dist/collab/routes.d.ts +1 -1
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/command-navigation/actions.d.ts +25 -0
- package/dist/command-navigation/actions.d.ts.map +1 -0
- package/dist/command-navigation/actions.js +64 -0
- package/dist/command-navigation/actions.js.map +1 -0
- package/dist/command-navigation/index.d.ts +4 -0
- package/dist/command-navigation/index.d.ts.map +1 -0
- package/dist/command-navigation/index.js +4 -0
- package/dist/command-navigation/index.js.map +1 -0
- package/dist/comments-review/index.d.ts +2 -0
- package/dist/comments-review/index.d.ts.map +1 -0
- package/dist/comments-review/index.js +2 -0
- package/dist/comments-review/index.js.map +1 -0
- package/dist/file-upload/builder.d.ts.map +1 -1
- package/dist/file-upload/builder.js +18 -2
- package/dist/file-upload/builder.js.map +1 -1
- package/dist/file-upload/types.d.ts +3 -0
- package/dist/file-upload/types.d.ts.map +1 -1
- package/dist/file-upload/types.js.map +1 -1
- package/dist/history/actions/create-resource-version.d.ts +10 -0
- package/dist/history/actions/create-resource-version.d.ts.map +1 -0
- package/dist/history/actions/create-resource-version.js +68 -0
- package/dist/history/actions/create-resource-version.js.map +1 -0
- package/dist/history/actions/get-resource-version.d.ts +10 -0
- package/dist/history/actions/get-resource-version.d.ts.map +1 -0
- package/dist/history/actions/get-resource-version.js +38 -0
- package/dist/history/actions/get-resource-version.js.map +1 -0
- package/dist/history/actions/list-resource-history.d.ts +10 -0
- package/dist/history/actions/list-resource-history.d.ts.map +1 -0
- package/dist/history/actions/list-resource-history.js +45 -0
- package/dist/history/actions/list-resource-history.js.map +1 -0
- package/dist/history/actions/list-resource-versions.d.ts +10 -0
- package/dist/history/actions/list-resource-versions.d.ts.map +1 -0
- package/dist/history/actions/list-resource-versions.js +35 -0
- package/dist/history/actions/list-resource-versions.js.map +1 -0
- package/dist/history/actions/restore-resource-version.d.ts +11 -0
- package/dist/history/actions/restore-resource-version.d.ts.map +1 -0
- package/dist/history/actions/restore-resource-version.js +59 -0
- package/dist/history/actions/restore-resource-version.js.map +1 -0
- package/dist/history/index.d.ts +4 -0
- package/dist/history/index.d.ts.map +1 -0
- package/dist/history/index.js +3 -0
- package/dist/history/index.js.map +1 -0
- package/dist/history/registry.d.ts +10 -0
- package/dist/history/registry.d.ts.map +1 -0
- package/dist/history/registry.js +63 -0
- package/dist/history/registry.js.map +1 -0
- package/dist/history/store.d.ts +34 -0
- package/dist/history/store.d.ts.map +1 -0
- package/dist/history/store.js +290 -0
- package/dist/history/store.js.map +1 -0
- package/dist/history/types.d.ts +55 -0
- package/dist/history/types.d.ts.map +1 -0
- package/dist/history/types.js +2 -0
- package/dist/history/types.js.map +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/navigation/index.d.ts +53 -0
- package/dist/navigation/index.d.ts.map +1 -0
- package/dist/navigation/index.js +105 -0
- package/dist/navigation/index.js.map +1 -0
- package/dist/observability/routes.d.ts +3 -3
- package/dist/org/index.d.ts +1 -0
- package/dist/org/index.d.ts.map +1 -1
- package/dist/org/index.js +1 -0
- package/dist/org/index.js.map +1 -1
- package/dist/org/permissions.d.ts +7 -0
- package/dist/org/permissions.d.ts.map +1 -0
- package/dist/org/permissions.js +21 -0
- package/dist/org/permissions.js.map +1 -0
- package/dist/org-team/index.d.ts +2 -0
- package/dist/org-team/index.d.ts.map +1 -0
- package/dist/org-team/index.js +2 -0
- package/dist/org-team/index.js.map +1 -0
- package/dist/private-blob/registry.d.ts.map +1 -1
- package/dist/private-blob/registry.js +1 -0
- package/dist/private-blob/registry.js.map +1 -1
- package/dist/progress/routes.d.ts +1 -1
- package/dist/resources/handlers.d.ts +2 -2
- package/dist/review/actions/consume-review-feedback.d.ts +10 -0
- package/dist/review/actions/consume-review-feedback.d.ts.map +1 -0
- package/dist/review/actions/consume-review-feedback.js +35 -0
- package/dist/review/actions/consume-review-feedback.js.map +1 -0
- package/dist/review/actions/create-review-comment.d.ts +18 -0
- package/dist/review/actions/create-review-comment.d.ts.map +1 -0
- package/dist/review/actions/create-review-comment.js +81 -0
- package/dist/review/actions/create-review-comment.js.map +1 -0
- package/dist/review/actions/delete-review-comment.d.ts +11 -0
- package/dist/review/actions/delete-review-comment.d.ts.map +1 -0
- package/dist/review/actions/delete-review-comment.js +53 -0
- package/dist/review/actions/delete-review-comment.js.map +1 -0
- package/dist/review/actions/get-review-feedback.d.ts +10 -0
- package/dist/review/actions/get-review-feedback.d.ts.map +1 -0
- package/dist/review/actions/get-review-feedback.js +45 -0
- package/dist/review/actions/get-review-feedback.js.map +1 -0
- package/dist/review/actions/list-review-comments.d.ts +13 -0
- package/dist/review/actions/list-review-comments.d.ts.map +1 -0
- package/dist/review/actions/list-review-comments.js +44 -0
- package/dist/review/actions/list-review-comments.js.map +1 -0
- package/dist/review/actions/reply-review-comment.d.ts +16 -0
- package/dist/review/actions/reply-review-comment.d.ts.map +1 -0
- package/dist/review/actions/reply-review-comment.js +84 -0
- package/dist/review/actions/reply-review-comment.js.map +1 -0
- package/dist/review/actions/resolve-review-thread.d.ts +12 -0
- package/dist/review/actions/resolve-review-thread.d.ts.map +1 -0
- package/dist/review/actions/resolve-review-thread.js +49 -0
- package/dist/review/actions/resolve-review-thread.js.map +1 -0
- package/dist/review/actions/set-review-status.d.ts +9 -0
- package/dist/review/actions/set-review-status.d.ts.map +1 -0
- package/dist/review/actions/set-review-status.js +43 -0
- package/dist/review/actions/set-review-status.js.map +1 -0
- package/dist/review/index.d.ts +5 -0
- package/dist/review/index.d.ts.map +1 -0
- package/dist/review/index.js +4 -0
- package/dist/review/index.js.map +1 -0
- package/dist/review/mentions.d.ts +4 -0
- package/dist/review/mentions.d.ts.map +1 -0
- package/dist/review/mentions.js +39 -0
- package/dist/review/mentions.js.map +1 -0
- package/dist/review/registry.d.ts +10 -0
- package/dist/review/registry.d.ts.map +1 -0
- package/dist/review/registry.js +63 -0
- package/dist/review/registry.js.map +1 -0
- package/dist/review/store.d.ts +63 -0
- package/dist/review/store.d.ts.map +1 -0
- package/dist/review/store.js +561 -0
- package/dist/review/store.js.map +1 -0
- package/dist/review/types.d.ts +77 -0
- package/dist/review/types.d.ts.map +1 -0
- package/dist/review/types.js +2 -0
- package/dist/review/types.js.map +1 -0
- package/dist/secrets/routes.d.ts +9 -9
- package/dist/server/action-discovery.d.ts.map +1 -1
- package/dist/server/action-discovery.js +54 -0
- package/dist/server/action-discovery.js.map +1 -1
- package/dist/server/agent-chat-plugin.d.ts.map +1 -1
- package/dist/server/agent-chat-plugin.js +5 -0
- package/dist/server/agent-chat-plugin.js.map +1 -1
- package/dist/server/agent-engine-api-key-route.d.ts +1 -1
- package/dist/server/agent-engine-api-key-route.d.ts.map +1 -1
- package/dist/server/agent-engine-api-key-route.js +5 -0
- package/dist/server/agent-engine-api-key-route.js.map +1 -1
- package/dist/server/credential-provider.d.ts +28 -0
- package/dist/server/credential-provider.d.ts.map +1 -1
- package/dist/server/credential-provider.js +92 -0
- package/dist/server/credential-provider.js.map +1 -1
- package/dist/setup-connections/index.d.ts +6 -0
- package/dist/setup-connections/index.d.ts.map +1 -0
- package/dist/setup-connections/index.js +6 -0
- package/dist/setup-connections/index.js.map +1 -0
- package/dist/setup-connections/onboarding.d.ts +14 -0
- package/dist/setup-connections/onboarding.d.ts.map +1 -0
- package/dist/setup-connections/onboarding.js +23 -0
- package/dist/setup-connections/onboarding.js.map +1 -0
- package/dist/transcription/builder-transcription.d.ts +1 -0
- package/dist/transcription/builder-transcription.d.ts.map +1 -1
- package/dist/transcription/builder-transcription.js +5 -2
- package/dist/transcription/builder-transcription.js.map +1 -1
- package/dist/vite/action-types-plugin.d.ts.map +1 -1
- package/dist/vite/action-types-plugin.js +52 -0
- package/dist/vite/action-types-plugin.js.map +1 -1
- package/docs/content/agent-native-toolkit.mdx +87 -80
- package/docs/content/locales/ar-SA/agent-native-toolkit.mdx +89 -80
- package/docs/content/locales/de-DE/agent-native-toolkit.mdx +89 -80
- package/docs/content/locales/es-ES/agent-native-toolkit.mdx +89 -80
- package/docs/content/locales/fr-FR/agent-native-toolkit.mdx +89 -80
- package/docs/content/locales/hi-IN/agent-native-toolkit.mdx +89 -80
- package/docs/content/locales/ja-JP/agent-native-toolkit.mdx +89 -80
- package/docs/content/locales/ko-KR/agent-native-toolkit.mdx +89 -80
- package/docs/content/locales/pt-BR/agent-native-toolkit.mdx +89 -80
- package/docs/content/locales/zh-CN/agent-native-toolkit.mdx +89 -80
- package/docs/content/locales/zh-TW/agent-native-toolkit.mdx +89 -80
- package/docs/content/toolkit-agent-ux.mdx +43 -0
- package/docs/content/toolkit-app-adapters.mdx +9 -0
- package/docs/content/toolkit-collaboration-ui.mdx +12 -0
- package/docs/content/toolkit-collaboration.mdx +74 -0
- package/docs/content/toolkit-command-navigation.mdx +106 -0
- package/docs/content/toolkit-comments-review.mdx +98 -0
- package/docs/content/toolkit-history.mdx +95 -0
- package/docs/content/toolkit-observability.mdx +41 -0
- package/docs/content/toolkit-org-team.mdx +80 -0
- package/docs/content/toolkit-resources.mdx +57 -0
- package/docs/content/toolkit-settings.mdx +65 -0
- package/docs/content/toolkit-setup-connections.mdx +109 -0
- package/docs/content/toolkit-sharing-ui.mdx +18 -6
- package/docs/content/toolkit-sharing.mdx +81 -0
- package/docs/content/toolkit-shell-hooks.mdx +9 -0
- package/docs/content/toolkit-ui.mdx +9 -0
- package/package.json +36 -2
|
@@ -16,6 +16,7 @@ import {
|
|
|
16
16
|
callAction,
|
|
17
17
|
sendToAgentChat,
|
|
18
18
|
} from "@agent-native/core/client";
|
|
19
|
+
import { fullVideoAiModelSelection } from "@shared/clips-ai-prefs";
|
|
19
20
|
import { useEffect, useRef } from "react";
|
|
20
21
|
|
|
21
22
|
import { useRecordings, type RecordingSummary } from "./use-library";
|
|
@@ -53,6 +54,7 @@ interface AiRequest {
|
|
|
53
54
|
agentsContext?: string;
|
|
54
55
|
thresholdMs?: number;
|
|
55
56
|
message?: string;
|
|
57
|
+
includeFullVideoInAi?: boolean;
|
|
56
58
|
}
|
|
57
59
|
|
|
58
60
|
const DISPATCHABLE_REQUESTS = new Set([
|
|
@@ -139,16 +141,7 @@ export function useAutoTitleBridge(): void {
|
|
|
139
141
|
if (dispatched.current.has(dispatchKey)) continue;
|
|
140
142
|
dispatched.current.add(dispatchKey);
|
|
141
143
|
|
|
142
|
-
|
|
143
|
-
message:
|
|
144
|
-
request.message ??
|
|
145
|
-
`Handle queued ${request.kind} work for recording ${rec.id}.`,
|
|
146
|
-
context: JSON.stringify(buildRequestContext(rec, request)),
|
|
147
|
-
submit: true,
|
|
148
|
-
openSidebar: false,
|
|
149
|
-
newTab: true,
|
|
150
|
-
background: true,
|
|
151
|
-
});
|
|
144
|
+
dispatchAiRequest(rec, request);
|
|
152
145
|
|
|
153
146
|
void clearRequest(rec.id);
|
|
154
147
|
} else if (isAutoTitleReplaceable(rec.title, rec.titleSource)) {
|
|
@@ -203,10 +196,32 @@ function buildRequestContext(rec: RecordingSummary, request: AiRequest) {
|
|
|
203
196
|
agentsContext: request.agentsContext ?? "",
|
|
204
197
|
transcriptStatus: request.transcriptStatus ?? "ready",
|
|
205
198
|
transcriptSegments: parseJsonArray(request.segmentsJson),
|
|
199
|
+
includeFullVideoInAi: request.includeFullVideoInAi === true,
|
|
206
200
|
request,
|
|
207
201
|
};
|
|
208
202
|
}
|
|
209
203
|
|
|
204
|
+
function dispatchAiRequest(rec: RecordingSummary, request: AiRequest) {
|
|
205
|
+
const includeFullVideo = request.includeFullVideoInAi === true;
|
|
206
|
+
const gemini = includeFullVideo ? fullVideoAiModelSelection() : null;
|
|
207
|
+
sendToAgentChat({
|
|
208
|
+
message:
|
|
209
|
+
request.message ??
|
|
210
|
+
`Handle queued ${request.kind} work for recording ${rec.id}.`,
|
|
211
|
+
context: JSON.stringify(buildRequestContext(rec, request)),
|
|
212
|
+
submit: true,
|
|
213
|
+
openSidebar: false,
|
|
214
|
+
newTab: true,
|
|
215
|
+
background: true,
|
|
216
|
+
...(gemini
|
|
217
|
+
? {
|
|
218
|
+
engine: gemini.engine,
|
|
219
|
+
model: gemini.model,
|
|
220
|
+
}
|
|
221
|
+
: {}),
|
|
222
|
+
});
|
|
223
|
+
}
|
|
224
|
+
|
|
210
225
|
function parseJsonArray(raw: string | undefined): unknown[] {
|
|
211
226
|
if (!raw) return [];
|
|
212
227
|
try {
|
|
@@ -197,6 +197,11 @@ const messages = {
|
|
|
197
197
|
edit: "تحرير",
|
|
198
198
|
aiTools: "أدوات الذكاء الاصطناعي",
|
|
199
199
|
enhanceRecording: "تعزيز هذا التسجيل",
|
|
200
|
+
includeFullVideo: "تضمين الفيديو الكامل",
|
|
201
|
+
includeFullVideoDescription:
|
|
202
|
+
"عند التشغيل، تشاهد أدوات الذكاء الاصطناعي التسجيل (Gemini فقط) لسياق الشاشة — وليس نسخة الصوت النصية فقط. ينطبق أيضاً على إنشاء العنوان والوصف الافتراضيين. يتطلب نموذج Gemini عبر Builder أو GEMINI_API_KEY.",
|
|
203
|
+
includeFullVideoOn: "ستستخدم أدوات الذكاء الاصطناعي الفيديو الكامل (Gemini)",
|
|
204
|
+
includeFullVideoOff: "ستستخدم أدوات الذكاء الاصطناعي النص فقط",
|
|
200
205
|
regenerateTitle: "إعادة إنشاء العنوان",
|
|
201
206
|
regenerateDescription: "إعادة إنشاء الوصف",
|
|
202
207
|
autoChapters: "فصول السيارات",
|
|
@@ -322,7 +327,7 @@ const messages = {
|
|
|
322
327
|
removing: "جارٍ الإزالة...",
|
|
323
328
|
remove: "يزيل",
|
|
324
329
|
desktopHint:
|
|
325
|
-
"
|
|
330
|
+
"لبدء الملاحظات، افتح Clips Desktop من شريط القوائم واختر Start Meeting Notes، أو انقر على Start notes عند ظهور التذكير. يلتقط Clips الميكروفون وصوت النظام ويكتب النص هنا.",
|
|
326
331
|
getDesktopApp: "احصل على تطبيق سطح المكتب",
|
|
327
332
|
generateNotesFailed: "تعذر إنشاء الملاحظات. حاول ثانية.",
|
|
328
333
|
attendee_one: "الحضور {{count}}",
|
|
@@ -996,7 +1001,11 @@ const messages = {
|
|
|
996
1001
|
inHours: "بعد {{count}} س",
|
|
997
1002
|
join: "انضمام",
|
|
998
1003
|
openNotes: "فتح الملاحظات",
|
|
999
|
-
open: "فتح",
|
|
1004
|
+
open: "فتح الملاحظات",
|
|
1005
|
+
startFromDesktopNow:
|
|
1006
|
+
"ابدأ الملاحظات المباشرة من تذكير سطح المكتب أو شريط القوائم.",
|
|
1007
|
+
startFromDesktopLater:
|
|
1008
|
+
"سيعرض Clips Desktop زر Start notes عندما يحين الوقت.",
|
|
1000
1009
|
},
|
|
1001
1010
|
transcriptBubbles: {
|
|
1002
1011
|
listening: "يستمع…",
|
|
@@ -1427,10 +1436,10 @@ const messages = {
|
|
|
1427
1436
|
"Google Calendar needs to be reconnected to keep showing your upcoming meetings. (مترجم)",
|
|
1428
1437
|
connectGoogleCalendar: "Connect Google Calendar (مترجم)",
|
|
1429
1438
|
desktopReminder:
|
|
1430
|
-
"
|
|
1439
|
+
"Connect Google Calendar, keep Clips Desktop open, then click Start notes from the reminder or the menu bar when your meeting begins. (مترجم)",
|
|
1431
1440
|
getDesktopApp: "Get desktop app (مترجم)",
|
|
1432
1441
|
requiredForReminders:
|
|
1433
|
-
"
|
|
1442
|
+
"Desktop captures mic + system audio for meeting transcription. (مترجم)",
|
|
1434
1443
|
calendarConnected: "Calendar connected (مترجم)",
|
|
1435
1444
|
calendarDisconnected: "Calendar disconnected (مترجم)",
|
|
1436
1445
|
calendarSettings: "Calendar settings (مترجم)",
|
|
@@ -1438,14 +1447,27 @@ const messages = {
|
|
|
1438
1447
|
"Connect Google Calendar for meeting reminders. (مترجم)",
|
|
1439
1448
|
disconnectGoogleCalendarTitle: "Disconnect Google Calendar? (مترجم)",
|
|
1440
1449
|
title: "Meetings (مترجم)",
|
|
1441
|
-
intro:
|
|
1450
|
+
intro:
|
|
1451
|
+
"Upcoming calendar meetings and your recorded notes. Start live notes from Clips Desktop at meeting time. (مترجم)",
|
|
1442
1452
|
searchPlaceholder: "Search meetings... (مترجم)",
|
|
1443
1453
|
clearSearch: "Clear search (مترجم)",
|
|
1444
1454
|
noMeetingsYet: "No meetings yet (مترجم)",
|
|
1445
1455
|
noMeetingsDescription:
|
|
1446
|
-
"
|
|
1456
|
+
"Connect your calendar and keep Clips Desktop open. When a meeting starts, use Start notes from the reminder or menu bar. (مترجم)",
|
|
1447
1457
|
noMeetingsMatch: 'No meetings match "{{query}}" (مترجم)',
|
|
1448
1458
|
refreshing: "Refreshing… (مترجم)",
|
|
1459
|
+
howToTriggerTitle: "How to trigger meeting notes (مترجم)",
|
|
1460
|
+
howToTriggerDescription:
|
|
1461
|
+
"Meeting notes are the Granola-style flow in Clips: calendar events appear here, the desktop app captures mic and system audio, and the transcript plus AI notes land back in this history. (مترجم)",
|
|
1462
|
+
guideCalendarTitle: "Connect Google Calendar (مترجم)",
|
|
1463
|
+
guideCalendarDescription:
|
|
1464
|
+
"Meetings are pulled from your calendar so Clips knows when to remind you. (مترجم)",
|
|
1465
|
+
guideDesktopTitle: "Keep Clips Desktop open (مترجم)",
|
|
1466
|
+
guideDesktopDescription:
|
|
1467
|
+
"Desktop capture is required for mic plus system-audio transcription. (مترجم)",
|
|
1468
|
+
guideStartTitle: "Click Start notes (مترجم)",
|
|
1469
|
+
guideStartDescription:
|
|
1470
|
+
"Use the desktop reminder or the menu-bar Start Meeting Notes item when the call begins. (مترجم)",
|
|
1449
1471
|
},
|
|
1450
1472
|
};
|
|
1451
1473
|
|
|
@@ -208,6 +208,11 @@ const messages = {
|
|
|
208
208
|
edit: "Bearbeiten",
|
|
209
209
|
aiTools: "KI-Tools",
|
|
210
210
|
enhanceRecording: "Verbessern Sie diese Aufnahme",
|
|
211
|
+
includeFullVideo: "Vollständiges Video einbeziehen",
|
|
212
|
+
includeFullVideoDescription:
|
|
213
|
+
"Wenn aktiviert, sehen sich KI-Tools die Aufnahme (nur Gemini) für Bildschirmkontext an — nicht nur das Audio-Transkript. Gilt auch für die Standardtitel- und -beschreibungsgenerierung. Erfordert ein Gemini-Modell über Builder oder GEMINI_API_KEY.",
|
|
214
|
+
includeFullVideoOn: "KI-Tools nutzen das vollständige Video (Gemini)",
|
|
215
|
+
includeFullVideoOff: "KI-Tools nutzen nur das Transkript",
|
|
211
216
|
regenerateTitle: "Titel neu generieren",
|
|
212
217
|
regenerateDescription: "Beschreibung neu generieren",
|
|
213
218
|
autoChapters: "Automatische Kapitel",
|
|
@@ -339,7 +344,7 @@ const messages = {
|
|
|
339
344
|
removing: "Entfernen...",
|
|
340
345
|
remove: "Entfernen",
|
|
341
346
|
desktopHint:
|
|
342
|
-
"
|
|
347
|
+
"Um Notizen zu starten, öffnen Sie Clips Desktop über die Menüleiste und wählen Sie Start Meeting Notes, oder klicken Sie auf Start notes, wenn die Erinnerung erscheint. Clips erfasst Mikrofon und Systemaudio und schreibt das Transkript hier.",
|
|
343
348
|
getDesktopApp: "Holen Sie sich die Desktop-App",
|
|
344
349
|
generateNotesFailed:
|
|
345
350
|
"Notizen konnten nicht generiert werden. Versuchen Sie es erneut.",
|
|
@@ -1023,7 +1028,11 @@ Alle sichtbaren Änderungen für Clips-Nutzer werden hier dokumentiert. Du kanns
|
|
|
1023
1028
|
inHours: "in {{count}} Std.",
|
|
1024
1029
|
join: "Beitreten",
|
|
1025
1030
|
openNotes: "Notizen öffnen",
|
|
1026
|
-
open: "
|
|
1031
|
+
open: "Notizen öffnen",
|
|
1032
|
+
startFromDesktopNow:
|
|
1033
|
+
"Starten Sie Live-Notizen über die Desktop-Erinnerung oder die Menüleiste.",
|
|
1034
|
+
startFromDesktopLater:
|
|
1035
|
+
"Clips Desktop zeigt Start notes an, wenn es Zeit ist.",
|
|
1027
1036
|
},
|
|
1028
1037
|
transcriptBubbles: {
|
|
1029
1038
|
listening: "Hört zu…",
|
|
@@ -1458,10 +1467,10 @@ Alle sichtbaren Änderungen für Clips-Nutzer werden hier dokumentiert. Du kanns
|
|
|
1458
1467
|
"Google Calendar needs to be reconnected to keep showing your upcoming meetings. (Lokalisiert)",
|
|
1459
1468
|
connectGoogleCalendar: "Connect Google Calendar (Lokalisiert)",
|
|
1460
1469
|
desktopReminder:
|
|
1461
|
-
"
|
|
1470
|
+
"Connect Google Calendar, keep Clips Desktop open, then click Start notes from the reminder or the menu bar when your meeting begins. (Lokalisiert)",
|
|
1462
1471
|
getDesktopApp: "Get desktop app (Lokalisiert)",
|
|
1463
1472
|
requiredForReminders:
|
|
1464
|
-
"
|
|
1473
|
+
"Desktop captures mic + system audio for meeting transcription. (Lokalisiert)",
|
|
1465
1474
|
calendarConnected: "Calendar connected (Lokalisiert)",
|
|
1466
1475
|
calendarDisconnected: "Calendar disconnected (Lokalisiert)",
|
|
1467
1476
|
calendarSettings: "Calendar settings (Lokalisiert)",
|
|
@@ -1469,14 +1478,27 @@ Alle sichtbaren Änderungen für Clips-Nutzer werden hier dokumentiert. Du kanns
|
|
|
1469
1478
|
"Connect Google Calendar for meeting reminders. (Lokalisiert)",
|
|
1470
1479
|
disconnectGoogleCalendarTitle: "Disconnect Google Calendar? (Lokalisiert)",
|
|
1471
1480
|
title: "Meetings (Lokalisiert)",
|
|
1472
|
-
intro:
|
|
1481
|
+
intro:
|
|
1482
|
+
"Upcoming calendar meetings and your recorded notes. Start live notes from Clips Desktop at meeting time. (Lokalisiert)",
|
|
1473
1483
|
searchPlaceholder: "Search meetings... (Lokalisiert)",
|
|
1474
1484
|
clearSearch: "Clear search (Lokalisiert)",
|
|
1475
1485
|
noMeetingsYet: "No meetings yet (Lokalisiert)",
|
|
1476
1486
|
noMeetingsDescription:
|
|
1477
|
-
"
|
|
1487
|
+
"Connect your calendar and keep Clips Desktop open. When a meeting starts, use Start notes from the reminder or menu bar. (Lokalisiert)",
|
|
1478
1488
|
noMeetingsMatch: 'No meetings match "{{query}}" (Lokalisiert)',
|
|
1479
1489
|
refreshing: "Refreshing… (Lokalisiert)",
|
|
1490
|
+
howToTriggerTitle: "How to trigger meeting notes (Lokalisiert)",
|
|
1491
|
+
howToTriggerDescription:
|
|
1492
|
+
"Meeting notes are the Granola-style flow in Clips: calendar events appear here, the desktop app captures mic and system audio, and the transcript plus AI notes land back in this history. (Lokalisiert)",
|
|
1493
|
+
guideCalendarTitle: "Connect Google Calendar (Lokalisiert)",
|
|
1494
|
+
guideCalendarDescription:
|
|
1495
|
+
"Meetings are pulled from your calendar so Clips knows when to remind you. (Lokalisiert)",
|
|
1496
|
+
guideDesktopTitle: "Keep Clips Desktop open (Lokalisiert)",
|
|
1497
|
+
guideDesktopDescription:
|
|
1498
|
+
"Desktop capture is required for mic plus system-audio transcription. (Lokalisiert)",
|
|
1499
|
+
guideStartTitle: "Click Start notes (Lokalisiert)",
|
|
1500
|
+
guideStartDescription:
|
|
1501
|
+
"Use the desktop reminder or the menu-bar Start Meeting Notes item when the call begins. (Lokalisiert)",
|
|
1480
1502
|
},
|
|
1481
1503
|
};
|
|
1482
1504
|
|
|
@@ -199,6 +199,11 @@ const messages = {
|
|
|
199
199
|
edit: "Edit",
|
|
200
200
|
aiTools: "AI tools",
|
|
201
201
|
enhanceRecording: "Enhance this recording",
|
|
202
|
+
includeFullVideo: "Include full video",
|
|
203
|
+
includeFullVideoDescription:
|
|
204
|
+
"When on, AI tools watch the recording (Gemini only) for on-screen context — not just the audio transcript. Also applies to default title and description generation. Requires a Gemini model via Builder or GEMINI_API_KEY.",
|
|
205
|
+
includeFullVideoOn: "AI tools will use the full video (Gemini)",
|
|
206
|
+
includeFullVideoOff: "AI tools will use the transcript only",
|
|
202
207
|
regenerateTitle: "Regenerate title",
|
|
203
208
|
regenerateDescription: "Regenerate description",
|
|
204
209
|
autoChapters: "Auto chapters",
|
|
@@ -324,7 +329,7 @@ const messages = {
|
|
|
324
329
|
removing: "Removing...",
|
|
325
330
|
remove: "Remove",
|
|
326
331
|
desktopHint:
|
|
327
|
-
"
|
|
332
|
+
"To start notes, open Clips Desktop from the menu bar and choose Start Meeting Notes, or click Start notes when the reminder appears. Clips captures mic + system audio and writes the transcript here.",
|
|
328
333
|
getDesktopApp: "Get desktop app",
|
|
329
334
|
generateNotesFailed: "Couldn't generate notes. Try again.",
|
|
330
335
|
attendee_one: "{{count}} attendee",
|
|
@@ -991,7 +996,11 @@ All notable user-facing changes to Clips are documented here. Open it any time f
|
|
|
991
996
|
inHours: "in {{count}} hr",
|
|
992
997
|
join: "Join",
|
|
993
998
|
openNotes: "Open notes",
|
|
994
|
-
open: "Open",
|
|
999
|
+
open: "Open notes",
|
|
1000
|
+
startFromDesktopNow:
|
|
1001
|
+
"Start live notes from the desktop reminder or menu bar.",
|
|
1002
|
+
startFromDesktopLater:
|
|
1003
|
+
"Clips Desktop will show Start notes when it is time.",
|
|
995
1004
|
},
|
|
996
1005
|
transcriptBubbles: {
|
|
997
1006
|
listening: "Listening…",
|
|
@@ -1417,23 +1426,37 @@ All notable user-facing changes to Clips are documented here. Open it any time f
|
|
|
1417
1426
|
"Google Calendar needs to be reconnected to keep showing your upcoming meetings.",
|
|
1418
1427
|
connectGoogleCalendar: "Connect Google Calendar",
|
|
1419
1428
|
desktopReminder:
|
|
1420
|
-
"
|
|
1429
|
+
"Connect Google Calendar, keep Clips Desktop open, then click Start notes from the reminder or the menu bar when your meeting begins.",
|
|
1421
1430
|
getDesktopApp: "Get desktop app",
|
|
1422
|
-
requiredForReminders:
|
|
1431
|
+
requiredForReminders:
|
|
1432
|
+
"Desktop captures mic + system audio for meeting transcription.",
|
|
1423
1433
|
calendarConnected: "Calendar connected",
|
|
1424
1434
|
calendarDisconnected: "Calendar disconnected",
|
|
1425
1435
|
calendarSettings: "Calendar settings",
|
|
1426
1436
|
connectCalendarReminder: "Connect Google Calendar for meeting reminders.",
|
|
1427
1437
|
disconnectGoogleCalendarTitle: "Disconnect Google Calendar?",
|
|
1428
1438
|
title: "Meetings",
|
|
1429
|
-
intro:
|
|
1439
|
+
intro:
|
|
1440
|
+
"Upcoming calendar meetings and your recorded notes. Start live notes from Clips Desktop at meeting time.",
|
|
1430
1441
|
searchPlaceholder: "Search meetings...",
|
|
1431
1442
|
clearSearch: "Clear search",
|
|
1432
1443
|
noMeetingsYet: "No meetings yet",
|
|
1433
1444
|
noMeetingsDescription:
|
|
1434
|
-
"
|
|
1445
|
+
"Connect your calendar and keep Clips Desktop open. When a meeting starts, use Start notes from the reminder or menu bar.",
|
|
1435
1446
|
noMeetingsMatch: 'No meetings match "{{query}}"',
|
|
1436
1447
|
refreshing: "Refreshing…",
|
|
1448
|
+
howToTriggerTitle: "How to trigger meeting notes",
|
|
1449
|
+
howToTriggerDescription:
|
|
1450
|
+
"Meeting notes are the Granola-style flow in Clips: calendar events appear here, the desktop app captures mic and system audio, and the transcript plus AI notes land back in this history.",
|
|
1451
|
+
guideCalendarTitle: "Connect Google Calendar",
|
|
1452
|
+
guideCalendarDescription:
|
|
1453
|
+
"Meetings are pulled from your calendar so Clips knows when to remind you.",
|
|
1454
|
+
guideDesktopTitle: "Keep Clips Desktop open",
|
|
1455
|
+
guideDesktopDescription:
|
|
1456
|
+
"Desktop capture is required for mic plus system-audio transcription.",
|
|
1457
|
+
guideStartTitle: "Click Start notes",
|
|
1458
|
+
guideStartDescription:
|
|
1459
|
+
"Use the desktop reminder or the menu-bar Start Meeting Notes item when the call begins.",
|
|
1437
1460
|
},
|
|
1438
1461
|
};
|
|
1439
1462
|
|
|
@@ -206,6 +206,12 @@ const messages = {
|
|
|
206
206
|
edit: "Editar",
|
|
207
207
|
aiTools: "herramientas de inteligencia artificial",
|
|
208
208
|
enhanceRecording: "Mejorar esta grabación",
|
|
209
|
+
includeFullVideo: "Incluir el video completo",
|
|
210
|
+
includeFullVideoDescription:
|
|
211
|
+
"Cuando está activado, las herramientas de IA miran la grabación (solo Gemini) para el contexto en pantalla, no solo la transcripción de audio. También se aplica a la generación predeterminada del título y la descripción. Requiere un modelo Gemini vía Builder o GEMINI_API_KEY.",
|
|
212
|
+
includeFullVideoOn:
|
|
213
|
+
"Las herramientas de IA usarán el video completo (Gemini)",
|
|
214
|
+
includeFullVideoOff: "Las herramientas de IA usarán solo la transcripción",
|
|
209
215
|
regenerateTitle: "Regenerar título",
|
|
210
216
|
regenerateDescription: "Regenerar descripción",
|
|
211
217
|
autoChapters: "capítulos automáticos",
|
|
@@ -334,7 +340,7 @@ const messages = {
|
|
|
334
340
|
removing: "Eliminando...",
|
|
335
341
|
remove: "Eliminar",
|
|
336
342
|
desktopHint:
|
|
337
|
-
"
|
|
343
|
+
"Para iniciar notas, abre Clips Desktop desde la barra de menús y elige Start Meeting Notes, o haz clic en Start notes cuando aparezca el recordatorio. Clips captura micrófono y audio del sistema, y escribe la transcripción aquí.",
|
|
338
344
|
getDesktopApp: "Obtener aplicación de escritorio",
|
|
339
345
|
generateNotesFailed: "No se pudieron generar notas. Intentar otra vez.",
|
|
340
346
|
attendee_one: "asistente {{count}}",
|
|
@@ -1014,7 +1020,11 @@ Todos los cambios visibles para los usuarios de Clips se documentan aquí. Puede
|
|
|
1014
1020
|
inHours: "en {{count}} h",
|
|
1015
1021
|
join: "Unirse",
|
|
1016
1022
|
openNotes: "Abrir notas",
|
|
1017
|
-
open: "Abrir",
|
|
1023
|
+
open: "Abrir notas",
|
|
1024
|
+
startFromDesktopNow:
|
|
1025
|
+
"Inicia notas en vivo desde el recordatorio de escritorio o la barra de menús.",
|
|
1026
|
+
startFromDesktopLater:
|
|
1027
|
+
"Clips Desktop mostrará Start notes cuando sea la hora.",
|
|
1018
1028
|
},
|
|
1019
1029
|
transcriptBubbles: {
|
|
1020
1030
|
listening: "Escuchando…",
|
|
@@ -1449,10 +1459,10 @@ Todos los cambios visibles para los usuarios de Clips se documentan aquí. Puede
|
|
|
1449
1459
|
"Google Calendar needs to be reconnected to keep showing your upcoming meetings. (Localizado)",
|
|
1450
1460
|
connectGoogleCalendar: "Connect Google Calendar (Localizado)",
|
|
1451
1461
|
desktopReminder:
|
|
1452
|
-
"
|
|
1462
|
+
"Connect Google Calendar, keep Clips Desktop open, then click Start notes from the reminder or the menu bar when your meeting begins. (Localizado)",
|
|
1453
1463
|
getDesktopApp: "Get desktop app (Localizado)",
|
|
1454
1464
|
requiredForReminders:
|
|
1455
|
-
"
|
|
1465
|
+
"Desktop captures mic + system audio for meeting transcription. (Localizado)",
|
|
1456
1466
|
calendarConnected: "Calendar connected (Localizado)",
|
|
1457
1467
|
calendarDisconnected: "Calendar disconnected (Localizado)",
|
|
1458
1468
|
calendarSettings: "Calendar settings (Localizado)",
|
|
@@ -1460,14 +1470,27 @@ Todos los cambios visibles para los usuarios de Clips se documentan aquí. Puede
|
|
|
1460
1470
|
"Connect Google Calendar for meeting reminders. (Localizado)",
|
|
1461
1471
|
disconnectGoogleCalendarTitle: "Disconnect Google Calendar? (Localizado)",
|
|
1462
1472
|
title: "Meetings (Localizado)",
|
|
1463
|
-
intro:
|
|
1473
|
+
intro:
|
|
1474
|
+
"Upcoming calendar meetings and your recorded notes. Start live notes from Clips Desktop at meeting time. (Localizado)",
|
|
1464
1475
|
searchPlaceholder: "Search meetings... (Localizado)",
|
|
1465
1476
|
clearSearch: "Clear search (Localizado)",
|
|
1466
1477
|
noMeetingsYet: "No meetings yet (Localizado)",
|
|
1467
1478
|
noMeetingsDescription:
|
|
1468
|
-
"
|
|
1479
|
+
"Connect your calendar and keep Clips Desktop open. When a meeting starts, use Start notes from the reminder or menu bar. (Localizado)",
|
|
1469
1480
|
noMeetingsMatch: 'No meetings match "{{query}}" (Localizado)',
|
|
1470
1481
|
refreshing: "Refreshing… (Localizado)",
|
|
1482
|
+
howToTriggerTitle: "How to trigger meeting notes (Localizado)",
|
|
1483
|
+
howToTriggerDescription:
|
|
1484
|
+
"Meeting notes are the Granola-style flow in Clips: calendar events appear here, the desktop app captures mic and system audio, and the transcript plus AI notes land back in this history. (Localizado)",
|
|
1485
|
+
guideCalendarTitle: "Connect Google Calendar (Localizado)",
|
|
1486
|
+
guideCalendarDescription:
|
|
1487
|
+
"Meetings are pulled from your calendar so Clips knows when to remind you. (Localizado)",
|
|
1488
|
+
guideDesktopTitle: "Keep Clips Desktop open (Localizado)",
|
|
1489
|
+
guideDesktopDescription:
|
|
1490
|
+
"Desktop capture is required for mic plus system-audio transcription. (Localizado)",
|
|
1491
|
+
guideStartTitle: "Click Start notes (Localizado)",
|
|
1492
|
+
guideStartDescription:
|
|
1493
|
+
"Use the desktop reminder or the menu-bar Start Meeting Notes item when the call begins. (Localizado)",
|
|
1471
1494
|
},
|
|
1472
1495
|
};
|
|
1473
1496
|
|
|
@@ -205,6 +205,13 @@ const messages = {
|
|
|
205
205
|
edit: "Modifier",
|
|
206
206
|
aiTools: "Outils d'IA",
|
|
207
207
|
enhanceRecording: "Améliorer cet enregistrement",
|
|
208
|
+
includeFullVideo: "Inclure la vidéo complète",
|
|
209
|
+
includeFullVideoDescription:
|
|
210
|
+
"Lorsque c'est activé, les outils d'IA regardent l'enregistrement (Gemini uniquement) pour le contexte à l'écran — pas seulement la transcription audio. S'applique aussi à la génération par défaut du titre et de la description. Nécessite un modèle Gemini via Builder ou GEMINI_API_KEY.",
|
|
211
|
+
includeFullVideoOn:
|
|
212
|
+
"Les outils d'IA utiliseront la vidéo complète (Gemini)",
|
|
213
|
+
includeFullVideoOff:
|
|
214
|
+
"Les outils d'IA utiliseront uniquement la transcription",
|
|
208
215
|
regenerateTitle: "Régénérer le titre",
|
|
209
216
|
regenerateDescription: "Régénérer la description",
|
|
210
217
|
autoChapters: "Chapitres automatiques",
|
|
@@ -334,7 +341,7 @@ const messages = {
|
|
|
334
341
|
removing: "Suppression...",
|
|
335
342
|
remove: "Retirer",
|
|
336
343
|
desktopHint:
|
|
337
|
-
"
|
|
344
|
+
"Pour démarrer les notes, ouvrez Clips Desktop dans la barre de menus et choisissez Start Meeting Notes, ou cliquez sur Start notes lorsque le rappel apparaît. Clips capture le micro et l'audio système, puis écrit la transcription ici.",
|
|
338
345
|
getDesktopApp: "Obtenir l'application de bureau",
|
|
339
346
|
generateNotesFailed: "Impossible de générer des notes. Essayer à nouveau.",
|
|
340
347
|
attendee_one: "participant {{count}}",
|
|
@@ -1016,7 +1023,11 @@ Tous les changements visibles par les utilisateurs de Clips sont documentés ici
|
|
|
1016
1023
|
inHours: "dans {{count}} h",
|
|
1017
1024
|
join: "Rejoindre",
|
|
1018
1025
|
openNotes: "Ouvrir les notes",
|
|
1019
|
-
open: "Ouvrir",
|
|
1026
|
+
open: "Ouvrir les notes",
|
|
1027
|
+
startFromDesktopNow:
|
|
1028
|
+
"Démarrez les notes en direct depuis le rappel bureau ou la barre de menus.",
|
|
1029
|
+
startFromDesktopLater:
|
|
1030
|
+
"Clips Desktop affichera Start notes au moment voulu.",
|
|
1020
1031
|
},
|
|
1021
1032
|
transcriptBubbles: {
|
|
1022
1033
|
listening: "Écoute…",
|
|
@@ -1451,10 +1462,10 @@ Tous les changements visibles par les utilisateurs de Clips sont documentés ici
|
|
|
1451
1462
|
"Google Calendar needs to be reconnected to keep showing your upcoming meetings. (Localisé)",
|
|
1452
1463
|
connectGoogleCalendar: "Connect Google Calendar (Localisé)",
|
|
1453
1464
|
desktopReminder:
|
|
1454
|
-
"
|
|
1465
|
+
"Connect Google Calendar, keep Clips Desktop open, then click Start notes from the reminder or the menu bar when your meeting begins. (Localisé)",
|
|
1455
1466
|
getDesktopApp: "Get desktop app (Localisé)",
|
|
1456
1467
|
requiredForReminders:
|
|
1457
|
-
"
|
|
1468
|
+
"Desktop captures mic + system audio for meeting transcription. (Localisé)",
|
|
1458
1469
|
calendarConnected: "Calendar connected (Localisé)",
|
|
1459
1470
|
calendarDisconnected: "Calendar disconnected (Localisé)",
|
|
1460
1471
|
calendarSettings: "Calendar settings (Localisé)",
|
|
@@ -1462,14 +1473,27 @@ Tous les changements visibles par les utilisateurs de Clips sont documentés ici
|
|
|
1462
1473
|
"Connect Google Calendar for meeting reminders. (Localisé)",
|
|
1463
1474
|
disconnectGoogleCalendarTitle: "Disconnect Google Calendar? (Localisé)",
|
|
1464
1475
|
title: "Meetings (Localisé)",
|
|
1465
|
-
intro:
|
|
1476
|
+
intro:
|
|
1477
|
+
"Upcoming calendar meetings and your recorded notes. Start live notes from Clips Desktop at meeting time. (Localisé)",
|
|
1466
1478
|
searchPlaceholder: "Search meetings... (Localisé)",
|
|
1467
1479
|
clearSearch: "Clear search (Localisé)",
|
|
1468
1480
|
noMeetingsYet: "No meetings yet (Localisé)",
|
|
1469
1481
|
noMeetingsDescription:
|
|
1470
|
-
"
|
|
1482
|
+
"Connect your calendar and keep Clips Desktop open. When a meeting starts, use Start notes from the reminder or menu bar. (Localisé)",
|
|
1471
1483
|
noMeetingsMatch: 'No meetings match "{{query}}" (Localisé)',
|
|
1472
1484
|
refreshing: "Refreshing… (Localisé)",
|
|
1485
|
+
howToTriggerTitle: "How to trigger meeting notes (Localisé)",
|
|
1486
|
+
howToTriggerDescription:
|
|
1487
|
+
"Meeting notes are the Granola-style flow in Clips: calendar events appear here, the desktop app captures mic and system audio, and the transcript plus AI notes land back in this history. (Localisé)",
|
|
1488
|
+
guideCalendarTitle: "Connect Google Calendar (Localisé)",
|
|
1489
|
+
guideCalendarDescription:
|
|
1490
|
+
"Meetings are pulled from your calendar so Clips knows when to remind you. (Localisé)",
|
|
1491
|
+
guideDesktopTitle: "Keep Clips Desktop open (Localisé)",
|
|
1492
|
+
guideDesktopDescription:
|
|
1493
|
+
"Desktop capture is required for mic plus system-audio transcription. (Localisé)",
|
|
1494
|
+
guideStartTitle: "Click Start notes (Localisé)",
|
|
1495
|
+
guideStartDescription:
|
|
1496
|
+
"Use the desktop reminder or the menu-bar Start Meeting Notes item when the call begins. (Localisé)",
|
|
1473
1497
|
},
|
|
1474
1498
|
};
|
|
1475
1499
|
|
|
@@ -197,6 +197,11 @@ const messages = {
|
|
|
197
197
|
edit: "संपादित करें",
|
|
198
198
|
aiTools: "एआई उपकरण",
|
|
199
199
|
enhanceRecording: "इस रिकॉर्डिंग को बेहतर बनाएं",
|
|
200
|
+
includeFullVideo: "पूरी वीडियो शामिल करें",
|
|
201
|
+
includeFullVideoDescription:
|
|
202
|
+
"चालू होने पर, AI टूल रिकॉर्डिंग देखते हैं (केवल Gemini) ऑन-स्क्रीन संदर्भ के लिए — केवल ऑडियो ट्रांसक्रिप्ट नहीं। यह डिफ़ॉल्ट शीर्षक और विवरण जनरेशन पर भी लागू होता है। Builder या GEMINI_API_KEY के ज़रिए Gemini मॉडल आवश्यक है।",
|
|
203
|
+
includeFullVideoOn: "AI टूल पूरी वीडियो का उपयोग करेंगे (Gemini)",
|
|
204
|
+
includeFullVideoOff: "AI टूल केवल ट्रांसक्रिप्ट का उपयोग करेंगे",
|
|
200
205
|
regenerateTitle: "शीर्षक पुन: उत्पन्न करें",
|
|
201
206
|
regenerateDescription: "विवरण पुनर्जीवित करें",
|
|
202
207
|
autoChapters: "ऑटो अध्याय",
|
|
@@ -322,7 +327,7 @@ const messages = {
|
|
|
322
327
|
removing: "हटाया जा रहा है...",
|
|
323
328
|
remove: "निकालना",
|
|
324
329
|
desktopHint:
|
|
325
|
-
"
|
|
330
|
+
"नोट्स शुरू करने के लिए, मेनू बार से Clips Desktop खोलें और Start Meeting Notes चुनें, या रिमाइंडर आने पर Start notes पर क्लिक करें। Clips माइक्रोफ़ोन और सिस्टम ऑडियो कैप्चर करके यहां ट्रांसक्रिप्ट लिखता है।",
|
|
326
331
|
getDesktopApp: "डेस्कटॉप ऐप प्राप्त करें",
|
|
327
332
|
generateNotesFailed: "नोट जनरेट नहीं किए जा सके. पुनः प्रयास करें।",
|
|
328
333
|
attendee_one: "{{count}} सहभागी",
|
|
@@ -985,7 +990,9 @@ Clips में उपयोगकर्ताओं को दिखने व
|
|
|
985
990
|
inHours: "{{count}} घंटे में",
|
|
986
991
|
join: "जुड़ें",
|
|
987
992
|
openNotes: "नोट्स खोलें",
|
|
988
|
-
open: "खोलें",
|
|
993
|
+
open: "नोट्स खोलें",
|
|
994
|
+
startFromDesktopNow: "डेस्कटॉप रिमाइंडर या मेनू बार से लाइव नोट्स शुरू करें।",
|
|
995
|
+
startFromDesktopLater: "समय होने पर Clips Desktop Start notes दिखाएगा।",
|
|
989
996
|
},
|
|
990
997
|
transcriptBubbles: {
|
|
991
998
|
listening: "सुन रहा है…",
|
|
@@ -1418,10 +1425,10 @@ Clips में उपयोगकर्ताओं को दिखने व
|
|
|
1418
1425
|
"Google Calendar needs to be reconnected to keep showing your upcoming meetings. (स्थानीयकृत)",
|
|
1419
1426
|
connectGoogleCalendar: "Connect Google Calendar (स्थानीयकृत)",
|
|
1420
1427
|
desktopReminder:
|
|
1421
|
-
"
|
|
1428
|
+
"Connect Google Calendar, keep Clips Desktop open, then click Start notes from the reminder or the menu bar when your meeting begins. (स्थानीयकृत)",
|
|
1422
1429
|
getDesktopApp: "Get desktop app (स्थानीयकृत)",
|
|
1423
1430
|
requiredForReminders:
|
|
1424
|
-
"
|
|
1431
|
+
"Desktop captures mic + system audio for meeting transcription. (स्थानीयकृत)",
|
|
1425
1432
|
calendarConnected: "Calendar connected (स्थानीयकृत)",
|
|
1426
1433
|
calendarDisconnected: "Calendar disconnected (स्थानीयकृत)",
|
|
1427
1434
|
calendarSettings: "Calendar settings (स्थानीयकृत)",
|
|
@@ -1429,14 +1436,27 @@ Clips में उपयोगकर्ताओं को दिखने व
|
|
|
1429
1436
|
"Connect Google Calendar for meeting reminders. (स्थानीयकृत)",
|
|
1430
1437
|
disconnectGoogleCalendarTitle: "Disconnect Google Calendar? (स्थानीयकृत)",
|
|
1431
1438
|
title: "Meetings (स्थानीयकृत)",
|
|
1432
|
-
intro:
|
|
1439
|
+
intro:
|
|
1440
|
+
"Upcoming calendar meetings and your recorded notes. Start live notes from Clips Desktop at meeting time. (स्थानीयकृत)",
|
|
1433
1441
|
searchPlaceholder: "Search meetings... (स्थानीयकृत)",
|
|
1434
1442
|
clearSearch: "Clear search (स्थानीयकृत)",
|
|
1435
1443
|
noMeetingsYet: "No meetings yet (स्थानीयकृत)",
|
|
1436
1444
|
noMeetingsDescription:
|
|
1437
|
-
"
|
|
1445
|
+
"Connect your calendar and keep Clips Desktop open. When a meeting starts, use Start notes from the reminder or menu bar. (स्थानीयकृत)",
|
|
1438
1446
|
noMeetingsMatch: 'No meetings match "{{query}}" (स्थानीयकृत)',
|
|
1439
1447
|
refreshing: "Refreshing… (स्थानीयकृत)",
|
|
1448
|
+
howToTriggerTitle: "How to trigger meeting notes (स्थानीयकृत)",
|
|
1449
|
+
howToTriggerDescription:
|
|
1450
|
+
"Meeting notes are the Granola-style flow in Clips: calendar events appear here, the desktop app captures mic and system audio, and the transcript plus AI notes land back in this history. (स्थानीयकृत)",
|
|
1451
|
+
guideCalendarTitle: "Connect Google Calendar (स्थानीयकृत)",
|
|
1452
|
+
guideCalendarDescription:
|
|
1453
|
+
"Meetings are pulled from your calendar so Clips knows when to remind you. (स्थानीयकृत)",
|
|
1454
|
+
guideDesktopTitle: "Keep Clips Desktop open (स्थानीयकृत)",
|
|
1455
|
+
guideDesktopDescription:
|
|
1456
|
+
"Desktop capture is required for mic plus system-audio transcription. (स्थानीयकृत)",
|
|
1457
|
+
guideStartTitle: "Click Start notes (स्थानीयकृत)",
|
|
1458
|
+
guideStartDescription:
|
|
1459
|
+
"Use the desktop reminder or the menu-bar Start Meeting Notes item when the call begins. (स्थानीयकृत)",
|
|
1440
1460
|
},
|
|
1441
1461
|
};
|
|
1442
1462
|
|
|
@@ -205,6 +205,11 @@ const messages = {
|
|
|
205
205
|
edit: "編集",
|
|
206
206
|
aiTools: "AIツール",
|
|
207
207
|
enhanceRecording: "この録音を強化する",
|
|
208
|
+
includeFullVideo: "動画全体を含める",
|
|
209
|
+
includeFullVideoDescription:
|
|
210
|
+
"オンにすると、AIツールは画面の文脈のために録画を視聴します(Geminiのみ)— 音声の文字起こしだけではありません。デフォルトのタイトルと説明の生成にも適用されます。Builder または GEMINI_API_KEY 経由の Gemini モデルが必要です。",
|
|
211
|
+
includeFullVideoOn: "AIツールは動画全体を使います(Gemini)",
|
|
212
|
+
includeFullVideoOff: "AIツールは文字起こしのみを使います",
|
|
208
213
|
regenerateTitle: "タイトルを再生成する",
|
|
209
214
|
regenerateDescription: "説明を再生成する",
|
|
210
215
|
autoChapters: "自動チャプター",
|
|
@@ -331,7 +336,7 @@ const messages = {
|
|
|
331
336
|
removing: "削除中...",
|
|
332
337
|
remove: "取り除く",
|
|
333
338
|
desktopHint:
|
|
334
|
-
"Clips
|
|
339
|
+
"メモを開始するには、メニューバーから Clips Desktop を開いて Start Meeting Notes を選ぶか、リマインダーが表示されたら Start notes をクリックします。Clips はマイクとシステム音声を取り込み、ここに文字起こしを書き込みます。",
|
|
335
340
|
getDesktopApp: "デスクトップアプリを入手",
|
|
336
341
|
generateNotesFailed:
|
|
337
342
|
"メモを生成できませんでした。もう一度やり直してください。",
|
|
@@ -1004,7 +1009,11 @@ Clips のユーザー向けの主な変更はここに記録されます。コ
|
|
|
1004
1009
|
inHours: "{{count}}時間後",
|
|
1005
1010
|
join: "参加",
|
|
1006
1011
|
openNotes: "ノートを開く",
|
|
1007
|
-
open: "
|
|
1012
|
+
open: "ノートを開く",
|
|
1013
|
+
startFromDesktopNow:
|
|
1014
|
+
"デスクトップのリマインダーまたはメニューバーからライブメモを開始します。",
|
|
1015
|
+
startFromDesktopLater:
|
|
1016
|
+
"時間になると Clips Desktop に Start notes が表示されます。",
|
|
1008
1017
|
},
|
|
1009
1018
|
transcriptBubbles: {
|
|
1010
1019
|
listening: "聞き取り中…",
|
|
@@ -1441,10 +1450,10 @@ Clips のユーザー向けの主な変更はここに記録されます。コ
|
|
|
1441
1450
|
"Google Calendar needs to be reconnected to keep showing your upcoming meetings. (ローカライズ済み)",
|
|
1442
1451
|
connectGoogleCalendar: "Connect Google Calendar (ローカライズ済み)",
|
|
1443
1452
|
desktopReminder:
|
|
1444
|
-
"
|
|
1453
|
+
"Connect Google Calendar, keep Clips Desktop open, then click Start notes from the reminder or the menu bar when your meeting begins. (ローカライズ済み)",
|
|
1445
1454
|
getDesktopApp: "Get desktop app (ローカライズ済み)",
|
|
1446
1455
|
requiredForReminders:
|
|
1447
|
-
"
|
|
1456
|
+
"Desktop captures mic + system audio for meeting transcription. (ローカライズ済み)",
|
|
1448
1457
|
calendarConnected: "Calendar connected (ローカライズ済み)",
|
|
1449
1458
|
calendarDisconnected: "Calendar disconnected (ローカライズ済み)",
|
|
1450
1459
|
calendarSettings: "Calendar settings (ローカライズ済み)",
|
|
@@ -1454,14 +1463,26 @@ Clips のユーザー向けの主な変更はここに記録されます。コ
|
|
|
1454
1463
|
"Disconnect Google Calendar? (ローカライズ済み)",
|
|
1455
1464
|
title: "Meetings (ローカライズ済み)",
|
|
1456
1465
|
intro:
|
|
1457
|
-
"Upcoming calendar meetings and your recorded notes. (ローカライズ済み)",
|
|
1466
|
+
"Upcoming calendar meetings and your recorded notes. Start live notes from Clips Desktop at meeting time. (ローカライズ済み)",
|
|
1458
1467
|
searchPlaceholder: "Search meetings... (ローカライズ済み)",
|
|
1459
1468
|
clearSearch: "Clear search (ローカライズ済み)",
|
|
1460
1469
|
noMeetingsYet: "No meetings yet (ローカライズ済み)",
|
|
1461
1470
|
noMeetingsDescription:
|
|
1462
|
-
"
|
|
1471
|
+
"Connect your calendar and keep Clips Desktop open. When a meeting starts, use Start notes from the reminder or menu bar. (ローカライズ済み)",
|
|
1463
1472
|
noMeetingsMatch: 'No meetings match "{{query}}" (ローカライズ済み)',
|
|
1464
1473
|
refreshing: "Refreshing… (ローカライズ済み)",
|
|
1474
|
+
howToTriggerTitle: "How to trigger meeting notes (ローカライズ済み)",
|
|
1475
|
+
howToTriggerDescription:
|
|
1476
|
+
"Meeting notes are the Granola-style flow in Clips: calendar events appear here, the desktop app captures mic and system audio, and the transcript plus AI notes land back in this history. (ローカライズ済み)",
|
|
1477
|
+
guideCalendarTitle: "Connect Google Calendar (ローカライズ済み)",
|
|
1478
|
+
guideCalendarDescription:
|
|
1479
|
+
"Meetings are pulled from your calendar so Clips knows when to remind you. (ローカライズ済み)",
|
|
1480
|
+
guideDesktopTitle: "Keep Clips Desktop open (ローカライズ済み)",
|
|
1481
|
+
guideDesktopDescription:
|
|
1482
|
+
"Desktop capture is required for mic plus system-audio transcription. (ローカライズ済み)",
|
|
1483
|
+
guideStartTitle: "Click Start notes (ローカライズ済み)",
|
|
1484
|
+
guideStartDescription:
|
|
1485
|
+
"Use the desktop reminder or the menu-bar Start Meeting Notes item when the call begins. (ローカライズ済み)",
|
|
1465
1486
|
},
|
|
1466
1487
|
};
|
|
1467
1488
|
|