@agent-native/core 0.82.0 → 0.84.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/README.md +2 -2
- package/corpus/README.md +1 -1
- package/corpus/core/CHANGELOG.md +34 -0
- package/corpus/core/README.md +2 -2
- package/corpus/core/docs/content/cloneable-saas.mdx +2 -2
- package/corpus/core/docs/content/faq.mdx +1 -1
- package/corpus/core/docs/content/locales/ar-SA/cloneable-saas.mdx +2 -2
- package/corpus/core/docs/content/locales/ar-SA/faq.mdx +1 -1
- package/corpus/core/docs/content/locales/ar-SA/template-chat.mdx +1 -1
- package/corpus/core/docs/content/locales/de-DE/cloneable-saas.mdx +2 -2
- package/corpus/core/docs/content/locales/de-DE/faq.mdx +1 -1
- package/corpus/core/docs/content/locales/de-DE/template-chat.mdx +1 -1
- package/corpus/core/docs/content/locales/es-ES/cloneable-saas.mdx +2 -2
- package/corpus/core/docs/content/locales/es-ES/faq.mdx +1 -1
- package/corpus/core/docs/content/locales/es-ES/template-chat.mdx +1 -1
- package/corpus/core/docs/content/locales/fr-FR/cloneable-saas.mdx +2 -2
- package/corpus/core/docs/content/locales/fr-FR/faq.mdx +1 -1
- package/corpus/core/docs/content/locales/fr-FR/template-chat.mdx +1 -1
- package/corpus/core/docs/content/locales/hi-IN/cloneable-saas.mdx +2 -2
- package/corpus/core/docs/content/locales/hi-IN/faq.mdx +1 -1
- package/corpus/core/docs/content/locales/hi-IN/template-chat.mdx +1 -1
- package/corpus/core/docs/content/locales/ja-JP/cloneable-saas.mdx +2 -2
- package/corpus/core/docs/content/locales/ja-JP/faq.mdx +1 -1
- package/corpus/core/docs/content/locales/ja-JP/template-chat.mdx +1 -1
- package/corpus/core/docs/content/locales/ko-KR/cloneable-saas.mdx +2 -2
- package/corpus/core/docs/content/locales/ko-KR/faq.mdx +1 -1
- package/corpus/core/docs/content/locales/ko-KR/template-chat.mdx +1 -1
- package/corpus/core/docs/content/locales/pt-BR/cloneable-saas.mdx +2 -2
- package/corpus/core/docs/content/locales/pt-BR/faq.mdx +1 -1
- package/corpus/core/docs/content/locales/pt-BR/template-chat.mdx +1 -1
- package/corpus/core/docs/content/locales/zh-CN/cloneable-saas.mdx +2 -2
- package/corpus/core/docs/content/locales/zh-CN/faq.mdx +1 -1
- package/corpus/core/docs/content/locales/zh-CN/template-chat.mdx +1 -1
- package/corpus/core/docs/content/locales/zh-TW/cloneable-saas.mdx +2 -2
- package/corpus/core/docs/content/locales/zh-TW/faq.mdx +1 -1
- package/corpus/core/docs/content/locales/zh-TW/template-chat.mdx +1 -1
- package/corpus/core/docs/content/template-chat.mdx +1 -1
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/agent/engine/builtin.ts +1 -1
- package/corpus/core/src/agent/engine/output-tokens.ts +1 -1
- package/corpus/core/src/agent/harness/acp-adapter.ts +28 -4
- package/corpus/core/src/agent/harness/ai-sdk-adapter.ts +3 -0
- package/corpus/core/src/agent/harness/translate.ts +3 -0
- package/corpus/core/src/agent/harness/types.ts +1 -0
- package/corpus/core/src/agent/model-config.ts +34 -13
- package/corpus/core/src/agent/production-agent.ts +87 -10
- package/corpus/core/src/agent/thread-data-builder.ts +29 -4
- package/corpus/core/src/agent/tool-call-journal.ts +109 -48
- package/corpus/core/src/agent/types.ts +6 -1
- package/corpus/core/src/cli/design-connect.ts +106 -0
- package/corpus/core/src/cli/gateway-helpers.ts +17 -0
- package/corpus/core/src/cli/recap.ts +0 -2
- package/corpus/core/src/cli/skills.ts +54 -16
- package/corpus/core/src/cli/workspace-dev.ts +29 -5
- package/corpus/core/src/client/AssistantChat.tsx +89 -42
- package/corpus/core/src/client/CommandMenu.tsx +34 -12
- package/corpus/core/src/client/DefaultSpinner.tsx +8 -1
- package/corpus/core/src/client/chat/message-components.tsx +49 -1
- package/corpus/core/src/client/chat/repo-helpers.ts +71 -0
- package/corpus/core/src/client/chat/run-recovery.tsx +15 -5
- package/corpus/core/src/client/components/ApiKeySettings.tsx +8 -8
- package/corpus/core/src/client/components/CodeRequiredDialog.tsx +26 -15
- package/corpus/core/src/client/components/MissingKeyCard.tsx +13 -6
- package/corpus/core/src/client/composer/TiptapComposer.tsx +4 -3
- package/corpus/core/src/client/extensions/ExtensionsSidebarSection.tsx +0 -1
- package/corpus/core/src/client/guided-questions.tsx +21 -27
- package/corpus/core/src/client/integrations/IntegrationCard.tsx +1 -1
- package/corpus/core/src/client/integrations/IntegrationsPanel.tsx +1 -1
- package/corpus/core/src/client/onboarding/OnboardingBanner.tsx +2 -2
- package/corpus/core/src/client/onboarding/OnboardingPanel.tsx +23 -19
- package/corpus/core/src/client/resources/ResourceEditor.tsx +18 -10
- package/corpus/core/src/client/resources/ResourcesPanel.tsx +5 -1
- package/corpus/core/src/client/settings/SettingsPanel.tsx +8 -3
- package/corpus/core/src/client/settings/useBuilderStatus.ts +8 -41
- package/corpus/core/src/client/useProductionAgent.ts +6 -2
- package/corpus/core/src/deploy/build.ts +1 -1
- package/corpus/core/src/observability/traces.ts +3 -3
- package/corpus/core/src/onboarding/default-steps.ts +1 -1
- package/corpus/core/src/scripts/agent-engines/manage-agent-engine.ts +1 -1
- package/corpus/core/src/scripts/agent-engines/set-agent-engine.ts +1 -1
- package/corpus/core/src/server/agent-chat-plugin.ts +177 -81
- package/corpus/core/src/server/core-routes-plugin.ts +7 -1
- package/corpus/core/src/server/open-route.ts +59 -40
- package/corpus/core/src/shared/reasoning-effort.ts +2 -0
- package/corpus/core/src/sharing/access.ts +22 -2
- package/corpus/core/src/sharing/registry.ts +18 -0
- package/corpus/core/src/styles/agent-native.css +104 -20
- package/corpus/core/src/styles/rich-markdown-editor.css +11 -10
- package/corpus/templates/analytics/actions/hubspot-deals.ts +64 -4
- package/corpus/templates/analytics/app/components/dashboard/CumulativeNetChart.tsx +10 -10
- package/corpus/templates/analytics/app/components/dashboard/RevenueChart.tsx +10 -10
- package/corpus/templates/analytics/app/components/dashboard/RevenueComparisonChart.tsx +6 -5
- package/corpus/templates/analytics/app/components/dashboard/TimeSeriesChart.tsx +9 -9
- package/corpus/templates/analytics/app/global.css +4 -0
- package/corpus/templates/analytics/app/lib/chart-theme.ts +13 -0
- package/corpus/templates/analytics/app/pages/adhoc/_shared/KpiChart.tsx +22 -24
- package/corpus/templates/analytics/changelog/2026-06-30-dashboard-charts-now-use-theme-aware-tooltip-and-grid-colors.md +6 -0
- package/corpus/templates/analytics/changelog/2026-06-30-fixed-ask-composer-spacing-so-the-chat-field-has-a-comfortab.md +6 -0
- package/corpus/templates/calendar/AGENTS.md +4 -0
- package/corpus/templates/calendar/actions/connect-google-calendar.ts +80 -0
- package/corpus/templates/calendar/changelog/2026-06-30-calendar-now-gives-the-agent-a-safe-google-connection-link-i.md +6 -0
- package/corpus/templates/calendar/server/plugins/agent-chat.ts +4 -0
- package/corpus/templates/content/.env.local.example +6 -0
- package/corpus/templates/content/AGENTS.md +10 -1
- package/corpus/templates/content/actions/_builder-cms-read-client.ts +14 -1
- package/corpus/templates/content/actions/_builder-cms-source-adapter.ts +43 -0
- package/corpus/templates/content/actions/_builder-cms-write-adapter.ts +79 -7
- package/corpus/templates/content/actions/_database-source-utils.ts +987 -22
- package/corpus/templates/content/actions/_database-utils.ts +41 -0
- package/corpus/templates/content/actions/_local-file-documents.ts +74 -1
- package/corpus/templates/content/actions/attach-content-database-source.ts +33 -8
- package/corpus/templates/content/actions/change-content-database-source-role.ts +14 -0
- package/corpus/templates/content/actions/disconnect-content-database-source.ts +3 -0
- package/corpus/templates/content/actions/execute-builder-source-execution.ts +71 -3
- package/corpus/templates/content/actions/list-content-databases.ts +41 -33
- package/corpus/templates/content/actions/process-builder-body-hydration.ts +47 -0
- package/corpus/templates/content/actions/update-document.ts +93 -0
- package/corpus/templates/content/app/blocks/SourceComponentBlock.tsx +277 -0
- package/corpus/templates/content/app/blocks/contentBlockRegistry.tsx +2 -0
- package/corpus/templates/content/app/components/editor/BubbleToolbar.tsx +5 -5
- package/corpus/templates/content/app/components/editor/DocumentEditor.tsx +45 -4
- package/corpus/templates/content/app/components/editor/VisualEditor.tsx +5 -1
- package/corpus/templates/content/app/components/editor/database/DatabaseView.tsx +92 -0
- package/corpus/templates/content/app/components/editor/database-sources/BuilderSourceReviewDialog.tsx +5 -3
- package/corpus/templates/content/app/components/editor/extensions/registryBlocks.ts +41 -0
- package/corpus/templates/content/app/components/editor/registrySlashItems.ts +4 -0
- package/corpus/templates/content/app/global.css +16 -8
- package/corpus/templates/content/app/hooks/use-content-database.ts +24 -0
- package/corpus/templates/content/app/i18n/zh-TW.ts +24 -0
- package/corpus/templates/content/app/i18n-data.ts +212 -0
- package/corpus/templates/content/app/lib/content-command-search.ts +64 -0
- package/corpus/templates/content/app/root.tsx +236 -8
- package/corpus/templates/content/changelog/2026-06-29-builder-cms-sources-now-sync-article-bodies-through-content.md +6 -0
- package/corpus/templates/content/changelog/2026-06-30-builder-article-media-now-render-as-images-and-embeds-when-r.md +6 -0
- package/corpus/templates/content/changelog/2026-06-30-builder-source-components-now-render-as-preserved-preview-bl.md +6 -0
- package/corpus/templates/content/changelog/2026-06-30-cmd-k-search-now-opens-from-the-editor-and-finds-real-content.md +6 -0
- package/corpus/templates/content/changelog/2026-06-30-editor-floating-toolbars-now-use-theme-aware-colors-in-light.md +6 -0
- package/corpus/templates/content/package.json +3 -1
- package/corpus/templates/content/scripts/check-native-deps.mjs +57 -0
- package/corpus/templates/content/scripts/dev-database.mjs +83 -0
- package/corpus/templates/content/scripts/seed-demo-user.mjs +107 -0
- package/corpus/templates/content/server/db/schema.ts +27 -0
- package/corpus/templates/content/server/plugins/db.ts +33 -0
- package/corpus/templates/content/shared/api.ts +45 -0
- package/corpus/templates/content/shared/builder-mdx.ts +905 -5
- package/corpus/templates/content/shared/nfm-registry.ts +2 -0
- package/corpus/templates/content/shared/source-component-block.ts +141 -0
- package/corpus/templates/design/.agents/skills/visual-edit/SKILL.md +6 -1
- package/corpus/templates/design/actions/add-localhost-screens.ts +63 -8
- package/corpus/templates/design/actions/apply-motion-edit.ts +12 -46
- package/corpus/templates/design/actions/list-design-native-assets.ts +2 -1
- package/corpus/templates/design/actions/migrate-board-objects-to-file.ts +49 -1
- package/corpus/templates/design/actions/navigate.ts +3 -12
- package/corpus/templates/design/actions/open-visual-edit.ts +341 -0
- package/corpus/templates/design/actions/view-screen.ts +1 -1
- package/corpus/templates/design/app/components/design/CanvasContextMenu.tsx +1 -1
- package/corpus/templates/design/app/components/design/DesignCanvas.tsx +350 -15
- package/corpus/templates/design/app/components/design/DesignEditorSkeleton.tsx +71 -91
- package/corpus/templates/design/app/components/design/DesignExtensionsPanel.tsx +25 -27
- package/corpus/templates/design/app/components/design/DeviceFrame.tsx +1 -1
- package/corpus/templates/design/app/components/design/DrawOverlay.tsx +2 -2
- package/corpus/templates/design/app/components/design/EditPanel.tsx +1111 -570
- package/corpus/templates/design/app/components/design/LayersPanel.tsx +162 -32
- package/corpus/templates/design/app/components/design/MotionDock.tsx +268 -240
- package/corpus/templates/design/app/components/design/MultiScreenCanvas.tsx +1193 -207
- package/corpus/templates/design/app/components/design/QuestionFlow.tsx +1 -1
- package/corpus/templates/design/app/components/design/ReviewPanel.tsx +81 -102
- package/corpus/templates/design/app/components/design/StatesPanel.tsx +6 -6
- package/corpus/templates/design/app/components/design/TokensPanel.tsx +11 -11
- package/corpus/templates/design/app/components/design/TweaksPanel.tsx +9 -7
- package/corpus/templates/design/app/components/design/bridge/editor-chrome.bridge.ts +1225 -154
- package/corpus/templates/design/app/components/design/bridge/hit-test.bridge.ts +130 -37
- package/corpus/templates/design/app/components/design/canvas-primitive-style.ts +24 -11
- package/corpus/templates/design/app/components/design/inspector/AutoLayoutMatrix.tsx +184 -162
- package/corpus/templates/design/app/components/design/inspector/ConstraintsWidget.tsx +137 -79
- package/corpus/templates/design/app/components/design/inspector/DesignColorPicker.tsx +13 -13
- package/corpus/templates/design/app/components/design/inspector/ExportSettingsPanel.tsx +8 -8
- package/corpus/templates/design/app/components/design/inspector/GradientEditor.tsx +2 -2
- package/corpus/templates/design/app/components/design/inspector/ImageFillControls.tsx +4 -4
- package/corpus/templates/design/app/components/design/inspector/InspectorAiActions.tsx +3 -3
- package/corpus/templates/design/app/components/design/inspector/ScrubInput.tsx +13 -7
- package/corpus/templates/design/app/components/design/inspector/ShaderControls.tsx +14 -11
- package/corpus/templates/design/app/components/design/inspector/ShaderFillsPanel.tsx +4 -4
- package/corpus/templates/design/app/components/design/inspector/index.ts +2 -0
- package/corpus/templates/design/app/components/design/types.ts +19 -0
- package/corpus/templates/design/app/components/editor/PromptDialog.tsx +61 -78
- package/corpus/templates/design/app/components/layout/Header.tsx +0 -1
- package/corpus/templates/design/app/components/layout/Layout.tsx +3 -2
- package/corpus/templates/design/app/components/layout/Sidebar.tsx +0 -2
- package/corpus/templates/design/app/components/visual-editor/CanvasCommentPins.tsx +5 -4
- package/corpus/templates/design/app/components/visual-editor/DrawOverlay.tsx +1 -1
- package/corpus/templates/design/app/components/visual-editor/SaveStatusIndicator.tsx +2 -2
- package/corpus/templates/design/app/global.css +56 -0
- package/corpus/templates/design/app/hooks/use-agent-generating.ts +4 -5
- package/corpus/templates/design/app/hooks/use-navigation-state.ts +6 -7
- package/corpus/templates/design/app/hooks/use-question-flow.ts +3 -2
- package/corpus/templates/design/app/hooks/useAgentEditRequest.ts +6 -4
- package/corpus/templates/design/app/hooks/useDesignHotkeys.ts +6 -3
- package/corpus/templates/design/app/i18n/zh-TW.ts +5 -14
- package/corpus/templates/design/app/i18n-data.ts +63 -188
- package/corpus/templates/design/app/lib/agent-chat.ts +13 -0
- package/corpus/templates/design/app/pages/DesignEditor.tsx +1755 -401
- package/corpus/templates/design/app/pages/DesignSystemSetup.tsx +9 -5
- package/corpus/templates/design/app/pages/DesignSystems.tsx +2 -2
- package/corpus/templates/design/app/pages/Index.tsx +49 -26
- package/corpus/templates/design/app/pages/NotFound.tsx +25 -8
- package/corpus/templates/design/app/pages/VisualEdit.tsx +17 -5
- package/corpus/templates/design/app/routes/examples.tsx +1 -7
- package/corpus/templates/design/app/routes/templates.tsx +7 -4
- package/corpus/templates/design/changelog/2026-06-30-board-shapes-and-auto-layout-controls-are-clearer.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-canvas-editing-now-keeps-undo-redo-and-cross-screen-layer-mo.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-component-selections-now-use-purple-component-chrome-and-sho.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-constraints-now-stay-tucked-into-a-compact-inspector-preview.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-creating-a-component-now-opens-in-a-compact-inspector-popove.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-design-cards-no-longer-show-legacy-project-type-badges.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-design-chat-now-keeps-new-turns-in-the-visible-design-agent-.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-design-editor-panels-now-keep-their-compact-text-sizing-cons.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-design-no-longer-shows-the-connected-local-code-warning-bann.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-design-now-opens-to-the-files-panel-unless-a-generation-is-a.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-design-opens-with-a-cleaner-empty-canvas-and-loading-preview.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-design-tools-use-simpler-less-decorative-icons.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-dragging-absolute-elements-no-longer-shows-coordinate-labels.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-fixed-all-screens-opening-too-zoomed-in-by-default.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-fixed-the-public-design-assets-sidebar-so-native-components-.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-fixed-the-screen-overview-board-so-empty-board-space-no-long.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-full-view-screens-can-now-scroll-while-remaining-editable.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-inspector-element-headers-show-the-selected-html-tag-and-the.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-inspector-inputs-stay-compact-across-desktop-breakpoints.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-layers-can-be-multi-selected-from-the-canvas-and-edited-toge.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-local-visual-edit-links-can-edit-localhost-frames-without-si.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-localhost-visual-edit-frames-can-now-be-selected-and-edited.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-marquee-selection-now-works-inside-screens-multi-selected-la.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-motion-is-now-available-from-the-persistent-left-rail-and-th.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-motion-timeline-collapse-and-reopen-animations-feel-smoother.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-multi-select-outlines-now-stay-consistent-across-all-screens.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-new-board-shapes-now-start-with-neutral-gray-styling.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-new-designs-open-into-a-steadier-loading-state-before-the-ed.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-new-designs-show-a-loading-state-during-handoff-and-keep-edi.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-public-visual-edit-design-links-now-open-directly-instead-of.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-removed-the-confusing-states-section-from-the-design-editor-.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-removed-the-templates-gallery-from-design-navigation.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-share-stays-visible-as-soon-as-editable-designs-load.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-signed-out-save-and-share-controls-use-simpler-labels-and-op.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-text-added-on-the-canvas-now-focuses-cleanly-with-the-right-.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-the-design-editor-loading-skeleton-is-simpler-and-its-bottom.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-the-design-editor-loading-skeleton-now-follows-the-current-t.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-the-design-inspector-no-longer-shows-child-layout-controls-o.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-the-design-inspector-no-longer-shows-the-ask-ai-section-abov.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-the-design-review-panel-no-longer-shows-a-separate-inline-au.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-the-empty-designs-page-now-focuses-on-a-single-primary-new-d.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-the-layers-panel-header-stays-as-layers-while-multiple-items.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-the-missing-design-screen-now-uses-a-neutral-back-button.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-the-motion-timeline-now-closes-without-squeezing-the-canvas-.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-the-new-design-connect-ai-setup-now-lines-up-with-the-compos.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-the-screen-overview-board-now-blends-into-the-canvas-and-new.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-top-level-canvas-drops-now-show-screen-guides.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-top-level-canvas-layers-now-keep-a-transparent-backdrop-and-.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-top-level-canvas-layers-now-select-reliably-from-all-screens.md +6 -0
- package/corpus/templates/design/changelog/2026-06-30-visual-edit-can-open-and-refresh-localhost-screens-in-one-au.md +6 -0
- package/corpus/templates/design/e2e/helpers.ts +15 -4
- package/corpus/templates/design/server/db/index.ts +52 -0
- package/corpus/templates/design/server/plugins/agent-chat.ts +5 -0
- package/corpus/templates/design/server/plugins/auth.ts +1 -0
- package/corpus/templates/design/server/plugins/core-routes.ts +4 -0
- package/corpus/templates/design/shared/board-file.ts +380 -5
- package/corpus/templates/design/shared/board-objects.ts +2 -2
- package/corpus/templates/design/shared/code-layer.ts +50 -6
- package/corpus/templates/design/shared/motion-compiler.ts +27 -0
- package/corpus/templates/macros/app/components/DailyProgress.tsx +41 -37
- package/corpus/templates/macros/app/components/ExerciseCard.tsx +2 -2
- package/corpus/templates/macros/app/components/MealCard.tsx +2 -2
- package/corpus/templates/macros/app/components/VoiceDictation.tsx +1 -1
- package/corpus/templates/macros/app/components/WeeklyCaloriesChart.tsx +1 -1
- package/corpus/templates/macros/app/components/WeightCard.tsx +2 -2
- package/corpus/templates/macros/app/components/WeightTracker.tsx +1 -1
- package/corpus/templates/macros/app/components/layout/AppLayout.tsx +1 -1
- package/corpus/templates/macros/app/routes/_index.tsx +5 -5
- package/corpus/templates/macros/app/routes/analytics.tsx +1 -1
- package/corpus/templates/macros/changelog/2026-06-30-dashboard-loading-and-chart-surfaces-now-use-theme-aware-col.md +6 -0
- package/corpus/templates/mail/app/components/email/ComposeBubbleToolbar.tsx +14 -11
- package/corpus/templates/mail/app/global.css +3 -2
- package/corpus/templates/mail/changelog/2026-06-30-compose-floating-toolbars-now-use-theme-aware-colors-in-ligh.md +6 -0
- package/corpus/templates/plan/app/pages/PlansPage.tsx +2 -2
- package/corpus/templates/slides/app/components/deck/DeckCard.tsx +3 -3
- package/corpus/templates/slides/app/global.css +10 -0
- package/corpus/templates/slides/app/pages/Index.tsx +55 -51
- package/corpus/templates/slides/changelog/2026-06-30-deck-thumbnails-collapse-cleanly-to-one-column-when-the-chat.md +6 -0
- package/dist/agent/engine/anthropic-engine.d.ts +2 -2
- package/dist/agent/engine/anthropic-engine.d.ts.map +1 -1
- package/dist/agent/engine/builder-engine.d.ts +2 -2
- package/dist/agent/engine/builder-engine.d.ts.map +1 -1
- package/dist/agent/engine/builtin.js +1 -1
- package/dist/agent/engine/builtin.js.map +1 -1
- package/dist/agent/engine/output-tokens.js +1 -1
- package/dist/agent/engine/output-tokens.js.map +1 -1
- package/dist/agent/harness/acp-adapter.d.ts +4 -1
- package/dist/agent/harness/acp-adapter.d.ts.map +1 -1
- package/dist/agent/harness/acp-adapter.js +19 -2
- package/dist/agent/harness/acp-adapter.js.map +1 -1
- package/dist/agent/harness/ai-sdk-adapter.d.ts.map +1 -1
- package/dist/agent/harness/ai-sdk-adapter.js +3 -0
- package/dist/agent/harness/ai-sdk-adapter.js.map +1 -1
- package/dist/agent/harness/translate.d.ts.map +1 -1
- package/dist/agent/harness/translate.js +3 -0
- package/dist/agent/harness/translate.js.map +1 -1
- package/dist/agent/harness/types.d.ts +1 -0
- package/dist/agent/harness/types.d.ts.map +1 -1
- package/dist/agent/harness/types.js.map +1 -1
- package/dist/agent/model-config.d.ts +21 -20
- package/dist/agent/model-config.d.ts.map +1 -1
- package/dist/agent/model-config.js +31 -13
- package/dist/agent/model-config.js.map +1 -1
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +85 -10
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/agent/thread-data-builder.d.ts.map +1 -1
- package/dist/agent/thread-data-builder.js +27 -6
- package/dist/agent/thread-data-builder.js.map +1 -1
- package/dist/agent/tool-call-journal.d.ts +11 -9
- package/dist/agent/tool-call-journal.d.ts.map +1 -1
- package/dist/agent/tool-call-journal.js +92 -40
- package/dist/agent/tool-call-journal.js.map +1 -1
- package/dist/agent/types.d.ts +5 -1
- package/dist/agent/types.d.ts.map +1 -1
- package/dist/agent/types.js.map +1 -1
- package/dist/cli/design-connect.d.ts.map +1 -1
- package/dist/cli/design-connect.js +84 -0
- package/dist/cli/design-connect.js.map +1 -1
- package/dist/cli/gateway-helpers.d.ts +4 -0
- package/dist/cli/gateway-helpers.d.ts.map +1 -1
- package/dist/cli/gateway-helpers.js +9 -0
- package/dist/cli/gateway-helpers.js.map +1 -1
- package/dist/cli/recap.d.ts.map +1 -1
- package/dist/cli/recap.js +0 -2
- package/dist/cli/recap.js.map +1 -1
- package/dist/cli/skills.d.ts.map +1 -1
- package/dist/cli/skills.js +54 -16
- package/dist/cli/skills.js.map +1 -1
- package/dist/cli/workspace-dev.d.ts.map +1 -1
- package/dist/cli/workspace-dev.js +33 -6
- package/dist/cli/workspace-dev.js.map +1 -1
- package/dist/client/AssistantChat.d.ts.map +1 -1
- package/dist/client/AssistantChat.js +72 -26
- package/dist/client/AssistantChat.js.map +1 -1
- package/dist/client/CommandMenu.d.ts +6 -2
- package/dist/client/CommandMenu.d.ts.map +1 -1
- package/dist/client/CommandMenu.js +25 -14
- package/dist/client/CommandMenu.js.map +1 -1
- package/dist/client/DefaultSpinner.d.ts.map +1 -1
- package/dist/client/DefaultSpinner.js +8 -1
- package/dist/client/DefaultSpinner.js.map +1 -1
- package/dist/client/chat/message-components.d.ts +7 -1
- package/dist/client/chat/message-components.d.ts.map +1 -1
- package/dist/client/chat/message-components.js +37 -1
- package/dist/client/chat/message-components.js.map +1 -1
- package/dist/client/chat/repo-helpers.d.ts +1 -0
- package/dist/client/chat/repo-helpers.d.ts.map +1 -1
- package/dist/client/chat/repo-helpers.js +59 -0
- package/dist/client/chat/repo-helpers.js.map +1 -1
- package/dist/client/chat/run-recovery.d.ts.map +1 -1
- package/dist/client/chat/run-recovery.js +4 -4
- package/dist/client/chat/run-recovery.js.map +1 -1
- package/dist/client/components/ApiKeySettings.js +8 -8
- package/dist/client/components/ApiKeySettings.js.map +1 -1
- package/dist/client/components/CodeRequiredDialog.d.ts.map +1 -1
- package/dist/client/components/CodeRequiredDialog.js +24 -15
- package/dist/client/components/CodeRequiredDialog.js.map +1 -1
- package/dist/client/components/MissingKeyCard.d.ts.map +1 -1
- package/dist/client/components/MissingKeyCard.js +11 -6
- package/dist/client/components/MissingKeyCard.js.map +1 -1
- package/dist/client/composer/TiptapComposer.d.ts.map +1 -1
- package/dist/client/composer/TiptapComposer.js +4 -3
- package/dist/client/composer/TiptapComposer.js.map +1 -1
- package/dist/client/extensions/ExtensionsSidebarSection.d.ts.map +1 -1
- package/dist/client/extensions/ExtensionsSidebarSection.js +1 -1
- package/dist/client/extensions/ExtensionsSidebarSection.js.map +1 -1
- package/dist/client/guided-questions.d.ts.map +1 -1
- package/dist/client/guided-questions.js +6 -6
- package/dist/client/guided-questions.js.map +1 -1
- package/dist/client/integrations/IntegrationCard.js +1 -1
- package/dist/client/integrations/IntegrationCard.js.map +1 -1
- package/dist/client/integrations/IntegrationsPanel.js +1 -1
- package/dist/client/integrations/IntegrationsPanel.js.map +1 -1
- package/dist/client/onboarding/OnboardingBanner.js +2 -2
- package/dist/client/onboarding/OnboardingBanner.js.map +1 -1
- package/dist/client/onboarding/OnboardingPanel.js +23 -19
- package/dist/client/onboarding/OnboardingPanel.js.map +1 -1
- package/dist/client/resources/ResourceEditor.d.ts.map +1 -1
- package/dist/client/resources/ResourceEditor.js +13 -10
- package/dist/client/resources/ResourceEditor.js.map +1 -1
- package/dist/client/resources/ResourcesPanel.d.ts.map +1 -1
- package/dist/client/resources/ResourcesPanel.js +2 -1
- package/dist/client/resources/ResourcesPanel.js.map +1 -1
- package/dist/client/settings/SettingsPanel.d.ts.map +1 -1
- package/dist/client/settings/SettingsPanel.js +8 -3
- package/dist/client/settings/SettingsPanel.js.map +1 -1
- package/dist/client/settings/useBuilderStatus.d.ts.map +1 -1
- package/dist/client/settings/useBuilderStatus.js +6 -38
- package/dist/client/settings/useBuilderStatus.js.map +1 -1
- package/dist/client/useProductionAgent.d.ts +2 -1
- package/dist/client/useProductionAgent.d.ts.map +1 -1
- package/dist/client/useProductionAgent.js.map +1 -1
- package/dist/deploy/build.js +1 -1
- package/dist/deploy/build.js.map +1 -1
- package/dist/notifications/routes.d.ts +3 -3
- package/dist/observability/routes.d.ts +3 -3
- package/dist/observability/traces.d.ts.map +1 -1
- package/dist/observability/traces.js.map +1 -1
- package/dist/onboarding/default-steps.js +1 -1
- package/dist/onboarding/default-steps.js.map +1 -1
- package/dist/scripts/agent-engines/manage-agent-engine.js +1 -1
- package/dist/scripts/agent-engines/manage-agent-engine.js.map +1 -1
- package/dist/scripts/agent-engines/set-agent-engine.js +1 -1
- package/dist/scripts/agent-engines/set-agent-engine.js.map +1 -1
- package/dist/server/agent-chat-plugin.d.ts +3 -0
- package/dist/server/agent-chat-plugin.d.ts.map +1 -1
- package/dist/server/agent-chat-plugin.js +134 -72
- 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/core-routes-plugin.d.ts +3 -0
- package/dist/server/core-routes-plugin.d.ts.map +1 -1
- package/dist/server/core-routes-plugin.js +4 -1
- package/dist/server/core-routes-plugin.js.map +1 -1
- package/dist/server/open-route.d.ts +9 -0
- package/dist/server/open-route.d.ts.map +1 -1
- package/dist/server/open-route.js +48 -38
- package/dist/server/open-route.js.map +1 -1
- package/dist/shared/reasoning-effort.js +3 -0
- package/dist/shared/reasoning-effort.js.map +1 -1
- package/dist/sharing/access.d.ts.map +1 -1
- package/dist/sharing/access.js +18 -2
- package/dist/sharing/access.js.map +1 -1
- package/dist/sharing/registry.d.ts +10 -0
- package/dist/sharing/registry.d.ts.map +1 -1
- package/dist/sharing/registry.js.map +1 -1
- package/dist/styles/agent-native.css +104 -20
- package/dist/styles/rich-markdown-editor.css +11 -10
- package/docs/content/cloneable-saas.mdx +2 -2
- package/docs/content/faq.mdx +1 -1
- package/docs/content/locales/ar-SA/cloneable-saas.mdx +2 -2
- package/docs/content/locales/ar-SA/faq.mdx +1 -1
- package/docs/content/locales/ar-SA/template-chat.mdx +1 -1
- package/docs/content/locales/de-DE/cloneable-saas.mdx +2 -2
- package/docs/content/locales/de-DE/faq.mdx +1 -1
- package/docs/content/locales/de-DE/template-chat.mdx +1 -1
- package/docs/content/locales/es-ES/cloneable-saas.mdx +2 -2
- package/docs/content/locales/es-ES/faq.mdx +1 -1
- package/docs/content/locales/es-ES/template-chat.mdx +1 -1
- package/docs/content/locales/fr-FR/cloneable-saas.mdx +2 -2
- package/docs/content/locales/fr-FR/faq.mdx +1 -1
- package/docs/content/locales/fr-FR/template-chat.mdx +1 -1
- package/docs/content/locales/hi-IN/cloneable-saas.mdx +2 -2
- package/docs/content/locales/hi-IN/faq.mdx +1 -1
- package/docs/content/locales/hi-IN/template-chat.mdx +1 -1
- package/docs/content/locales/ja-JP/cloneable-saas.mdx +2 -2
- package/docs/content/locales/ja-JP/faq.mdx +1 -1
- package/docs/content/locales/ja-JP/template-chat.mdx +1 -1
- package/docs/content/locales/ko-KR/cloneable-saas.mdx +2 -2
- package/docs/content/locales/ko-KR/faq.mdx +1 -1
- package/docs/content/locales/ko-KR/template-chat.mdx +1 -1
- package/docs/content/locales/pt-BR/cloneable-saas.mdx +2 -2
- package/docs/content/locales/pt-BR/faq.mdx +1 -1
- package/docs/content/locales/pt-BR/template-chat.mdx +1 -1
- package/docs/content/locales/zh-CN/cloneable-saas.mdx +2 -2
- package/docs/content/locales/zh-CN/faq.mdx +1 -1
- package/docs/content/locales/zh-CN/template-chat.mdx +1 -1
- package/docs/content/locales/zh-TW/cloneable-saas.mdx +2 -2
- package/docs/content/locales/zh-TW/faq.mdx +1 -1
- package/docs/content/locales/zh-TW/template-chat.mdx +1 -1
- package/docs/content/template-chat.mdx +1 -1
- package/package.json +1 -1
- package/corpus/templates/design/app/components/design/LocalSourceEditBanner.tsx +0 -157
- package/corpus/templates/design/app/lib/design-templates.ts +0 -1305
- package/corpus/templates/design/app/pages/Templates.tsx +0 -279
|
@@ -34,6 +34,7 @@ const enUS = {
|
|
|
34
34
|
presentBackToEditor: "Back to editor",
|
|
35
35
|
presentExitHint: "Press Esc to exit",
|
|
36
36
|
notFoundDescription: "The page you are looking for does not exist.",
|
|
37
|
+
notFoundSignIn: "Sign in",
|
|
37
38
|
notFoundBackToDesigns: "Back to designs",
|
|
38
39
|
teamCreateOrgDescription:
|
|
39
40
|
"Set up a team to share designs with your colleagues.",
|
|
@@ -290,10 +291,10 @@ const enUS = {
|
|
|
290
291
|
clickToRename: "Click to rename",
|
|
291
292
|
collaborators: "Collaborators",
|
|
292
293
|
share: "Share",
|
|
293
|
-
signUpToSave: "Sign up
|
|
294
|
+
signUpToSave: "Sign up to save",
|
|
294
295
|
signUpToSaveDescription:
|
|
295
296
|
"Sign up for a free account to save designs, screen layouts, and generate new ones.",
|
|
296
|
-
signUpToShare: "Sign up to
|
|
297
|
+
signUpToShare: "Sign up to share",
|
|
297
298
|
shareEditorLink: "Design editor link",
|
|
298
299
|
shareEditorLinkDescription:
|
|
299
300
|
"Anyone with access can open this design in the editor.",
|
|
@@ -363,9 +364,6 @@ const enUS = {
|
|
|
363
364
|
variations: "{{count}} variations",
|
|
364
365
|
close: "Close",
|
|
365
366
|
generating: "Generating design...",
|
|
366
|
-
inspectorLockedTitle: "Inspector locked while generating",
|
|
367
|
-
inspectorLockedDescription:
|
|
368
|
-
"Controls unlock when the first screen is ready.",
|
|
369
367
|
noFiles: "No files yet. Ask the agent to generate a design.",
|
|
370
368
|
tryAgain: "Try again",
|
|
371
369
|
newPrompt: "New prompt",
|
|
@@ -464,23 +462,13 @@ const enUS = {
|
|
|
464
462
|
componentCreateFailed: "Could not create component",
|
|
465
463
|
},
|
|
466
464
|
localSourceEdit: {
|
|
467
|
-
bannerNotice:
|
|
468
|
-
"Edits to connected local code are applied by the AI agent, not written directly.",
|
|
469
|
-
askAiToEdit: "Ask AI to edit",
|
|
470
465
|
copyPrompt: "Copy prompt",
|
|
471
|
-
dialogTitle: "Ask AI to edit connected source",
|
|
472
|
-
requestPlaceholder:
|
|
473
|
-
"Change the button color to blue, update the heading text…",
|
|
474
466
|
askAi: "Ask AI",
|
|
475
467
|
applyWithAi: "Apply with AI",
|
|
476
468
|
copyPromptTooltip: "Copy prompt to clipboard",
|
|
477
469
|
targeting: "Targeting:",
|
|
478
470
|
describeElementChange: "Describe the change for this element…",
|
|
479
471
|
describeChange: "Describe what you want to change…",
|
|
480
|
-
dialogDescription:
|
|
481
|
-
"Describe what you want to change. The agent will call view-screen first, then apply edits through the code editor.",
|
|
482
|
-
dialogDescriptionFile:
|
|
483
|
-
'Describe what you want to change in "{{file}}". The agent will call view-screen first, then apply edits through the code editor.',
|
|
484
472
|
},
|
|
485
473
|
},
|
|
486
474
|
layersPanel: {
|
|
@@ -503,7 +491,6 @@ const enUS = {
|
|
|
503
491
|
show: "Show layer",
|
|
504
492
|
rename: "Rename layer",
|
|
505
493
|
deleteBoardObject: "Delete board object",
|
|
506
|
-
selected: "{{count}} selected",
|
|
507
494
|
},
|
|
508
495
|
multiScreenCanvas: {
|
|
509
496
|
duplicate: "Duplicate",
|
|
@@ -662,6 +649,7 @@ const enUS = {
|
|
|
662
649
|
newDesign: "New Design",
|
|
663
650
|
newDesignLower: "New design",
|
|
664
651
|
createDesignProject: "Create a design project",
|
|
652
|
+
openingDesign: "Opening design...",
|
|
665
653
|
describeBuild: "Describe what you want to build...",
|
|
666
654
|
selected: "{{count}} selected",
|
|
667
655
|
clearVisibleSelection: "Clear visible selection",
|
|
@@ -699,7 +687,7 @@ const enUS = {
|
|
|
699
687
|
title: "Inspect local app screens before you sign in",
|
|
700
688
|
description:
|
|
701
689
|
"Open visual-edit without an account. Sign up only when you want to save designs, keep screen layouts, share with others, or generate new directions.",
|
|
702
|
-
saveCta: "
|
|
690
|
+
saveCta: "Save",
|
|
703
691
|
openDesign: "Open Design",
|
|
704
692
|
templatesCta: "Browse templates",
|
|
705
693
|
previewLabel: "Local preview",
|
|
@@ -4389,6 +4377,7 @@ const designRawLiteralOverrides = {
|
|
|
4389
4377
|
newDesign: "新Design",
|
|
4390
4378
|
newDesignLower: "新设计",
|
|
4391
4379
|
createDesignProject: "创建一个设计项目",
|
|
4380
|
+
openingDesign: "正在打开设计...",
|
|
4392
4381
|
describeBuild: "描述您想要构建的内容...",
|
|
4393
4382
|
selected: "已选择 {{count}}",
|
|
4394
4383
|
clearVisibleSelection: "清晰可见的选择",
|
|
@@ -4542,6 +4531,7 @@ const designRawLiteralOverrides = {
|
|
|
4542
4531
|
newDesign: "Nuevo Design",
|
|
4543
4532
|
newDesignLower: "Nuevo diseño",
|
|
4544
4533
|
createDesignProject: "Crear un proyecto de diseño.",
|
|
4534
|
+
openingDesign: "Abriendo diseño...",
|
|
4545
4535
|
describeBuild: "Describe lo que quieres crear...",
|
|
4546
4536
|
selected: "{{count}} seleccionado",
|
|
4547
4537
|
clearVisibleSelection: "Borrar selección visible",
|
|
@@ -4696,6 +4686,7 @@ const designRawLiteralOverrides = {
|
|
|
4696
4686
|
newDesign: "Nouveau Design",
|
|
4697
4687
|
newDesignLower: "Nouveau design",
|
|
4698
4688
|
createDesignProject: "Créer un projet de conception",
|
|
4689
|
+
openingDesign: "Ouverture du design...",
|
|
4699
4690
|
describeBuild: "Décrivez ce que vous voulez créer...",
|
|
4700
4691
|
selected: "{{count}} sélectionné",
|
|
4701
4692
|
clearVisibleSelection: "Effacer la sélection visible",
|
|
@@ -4851,6 +4842,7 @@ const designRawLiteralOverrides = {
|
|
|
4851
4842
|
newDesign: "Neue Design",
|
|
4852
4843
|
newDesignLower: "Neues Design",
|
|
4853
4844
|
createDesignProject: "Erstellen Sie ein Designprojekt",
|
|
4845
|
+
openingDesign: "Design wird geöffnet...",
|
|
4854
4846
|
describeBuild: "Beschreiben Sie, was Sie erstellen möchten...",
|
|
4855
4847
|
selected: "{{count}} ausgewählt",
|
|
4856
4848
|
clearVisibleSelection: "Klare sichtbare Auswahl",
|
|
@@ -5002,6 +4994,7 @@ const designRawLiteralOverrides = {
|
|
|
5002
4994
|
newDesign: "新しいDesign",
|
|
5003
4995
|
newDesignLower: "新しいデザイン",
|
|
5004
4996
|
createDesignProject: "デザインプロジェクトを作成する",
|
|
4997
|
+
openingDesign: "デザインを開いています...",
|
|
5005
4998
|
describeBuild: "作成したいものを説明してください...",
|
|
5006
4999
|
selected: "{{count}} が選択されました",
|
|
5007
5000
|
clearVisibleSelection: "表示されている選択範囲をクリアします",
|
|
@@ -5151,6 +5144,7 @@ const designRawLiteralOverrides = {
|
|
|
5151
5144
|
newDesign: "새로운 Design",
|
|
5152
5145
|
newDesignLower: "새로운 디자인",
|
|
5153
5146
|
createDesignProject: "디자인 프로젝트 만들기",
|
|
5147
|
+
openingDesign: "디자인을 여는 중...",
|
|
5154
5148
|
describeBuild: "만들고 싶은 것을 설명하세요...",
|
|
5155
5149
|
selected: "{{count}} 선택됨",
|
|
5156
5150
|
clearVisibleSelection: "보이는 선택 항목 지우기",
|
|
@@ -5304,6 +5298,7 @@ const designRawLiteralOverrides = {
|
|
|
5304
5298
|
newDesign: "Novo Design",
|
|
5305
5299
|
newDesignLower: "Novo design",
|
|
5306
5300
|
createDesignProject: "Crie um projeto de design",
|
|
5301
|
+
openingDesign: "Abrindo design...",
|
|
5307
5302
|
describeBuild: "Descreva o que você quer criar...",
|
|
5308
5303
|
selected: "{{count}} selecionado",
|
|
5309
5304
|
clearVisibleSelection: "Limpar seleção visível",
|
|
@@ -5454,6 +5449,7 @@ const designRawLiteralOverrides = {
|
|
|
5454
5449
|
newDesign: "नया Design",
|
|
5455
5450
|
newDesignLower: "नया डिज़ाइन",
|
|
5456
5451
|
createDesignProject: "एक डिज़ाइन प्रोजेक्ट बनाएं",
|
|
5452
|
+
openingDesign: "डिज़ाइन खोला जा रहा है...",
|
|
5457
5453
|
describeBuild: "बताएँ कि आप क्या बनाना चाहते हैं...",
|
|
5458
5454
|
selected: "{{count}} चयनित",
|
|
5459
5455
|
clearVisibleSelection: "स्पष्ट दृश्यमान चयन",
|
|
@@ -5603,6 +5599,7 @@ const designRawLiteralOverrides = {
|
|
|
5603
5599
|
newDesign: "جديد Design",
|
|
5604
5600
|
newDesignLower: "تصميم جديد",
|
|
5605
5601
|
createDesignProject: "إنشاء مشروع تصميم",
|
|
5602
|
+
openingDesign: "جارٍ فتح التصميم...",
|
|
5606
5603
|
describeBuild: "صف ما تريد إنشاءه...",
|
|
5607
5604
|
selected: "تم تحديد {{count}}",
|
|
5608
5605
|
clearVisibleSelection: "مسح التحديد المرئي",
|
|
@@ -5670,6 +5667,7 @@ const designExactEnglishOverrides = {
|
|
|
5670
5667
|
pages: {
|
|
5671
5668
|
presentExitHint: "按 Esc 退出",
|
|
5672
5669
|
notFoundDescription: "您要查找的页面不存在。",
|
|
5670
|
+
notFoundSignIn: "登录",
|
|
5673
5671
|
notFoundBackToDesigns: "返回设计",
|
|
5674
5672
|
},
|
|
5675
5673
|
designSystemSetup: {
|
|
@@ -5743,6 +5741,7 @@ const designExactEnglishOverrides = {
|
|
|
5743
5741
|
pages: {
|
|
5744
5742
|
presentExitHint: "Pulsa Esc para salir",
|
|
5745
5743
|
notFoundDescription: "La página que buscas no existe.",
|
|
5744
|
+
notFoundSignIn: "Iniciar sesión",
|
|
5746
5745
|
notFoundBackToDesigns: "Volver a diseños",
|
|
5747
5746
|
},
|
|
5748
5747
|
designSystemSetup: {
|
|
@@ -5818,6 +5817,7 @@ const designExactEnglishOverrides = {
|
|
|
5818
5817
|
pages: {
|
|
5819
5818
|
presentExitHint: "Appuyez sur Esc pour quitter",
|
|
5820
5819
|
notFoundDescription: "La page que vous recherchez n’existe pas.",
|
|
5820
|
+
notFoundSignIn: "Se connecter",
|
|
5821
5821
|
notFoundBackToDesigns: "Retour aux designs",
|
|
5822
5822
|
},
|
|
5823
5823
|
designSystemSetup: {
|
|
@@ -5894,6 +5894,7 @@ const designExactEnglishOverrides = {
|
|
|
5894
5894
|
pages: {
|
|
5895
5895
|
presentExitHint: "Esc drücken, um zu beenden",
|
|
5896
5896
|
notFoundDescription: "Die gesuchte Seite existiert nicht.",
|
|
5897
|
+
notFoundSignIn: "Anmelden",
|
|
5897
5898
|
notFoundBackToDesigns: "Zurück zu Designs",
|
|
5898
5899
|
},
|
|
5899
5900
|
designSystemSetup: {
|
|
@@ -5970,6 +5971,7 @@ const designExactEnglishOverrides = {
|
|
|
5970
5971
|
pages: {
|
|
5971
5972
|
presentExitHint: "Esc を押して終了",
|
|
5972
5973
|
notFoundDescription: "お探しのページは存在しません。",
|
|
5974
|
+
notFoundSignIn: "ログイン",
|
|
5973
5975
|
notFoundBackToDesigns: "デザインに戻る",
|
|
5974
5976
|
},
|
|
5975
5977
|
designSystemSetup: {
|
|
@@ -6046,6 +6048,7 @@ const designExactEnglishOverrides = {
|
|
|
6046
6048
|
pages: {
|
|
6047
6049
|
presentExitHint: "Esc 키를 눌러 종료",
|
|
6048
6050
|
notFoundDescription: "찾고 있는 페이지가 없습니다.",
|
|
6051
|
+
notFoundSignIn: "로그인",
|
|
6049
6052
|
notFoundBackToDesigns: "디자인으로 돌아가기",
|
|
6050
6053
|
},
|
|
6051
6054
|
designSystemSetup: {
|
|
@@ -6121,6 +6124,7 @@ const designExactEnglishOverrides = {
|
|
|
6121
6124
|
pages: {
|
|
6122
6125
|
presentExitHint: "Pressione Esc para sair",
|
|
6123
6126
|
notFoundDescription: "A página que você procura não existe.",
|
|
6127
|
+
notFoundSignIn: "Entrar",
|
|
6124
6128
|
notFoundBackToDesigns: "Voltar aos designs",
|
|
6125
6129
|
},
|
|
6126
6130
|
designSystemSetup: {
|
|
@@ -6196,6 +6200,7 @@ const designExactEnglishOverrides = {
|
|
|
6196
6200
|
pages: {
|
|
6197
6201
|
presentExitHint: "बाहर निकलने के लिए Esc दबाएँ",
|
|
6198
6202
|
notFoundDescription: "आप जिस पृष्ठ को ढूँढ रहे हैं वह मौजूद नहीं है।",
|
|
6203
|
+
notFoundSignIn: "साइन इन करें",
|
|
6199
6204
|
notFoundBackToDesigns: "डिज़ाइन पर वापस जाएँ",
|
|
6200
6205
|
},
|
|
6201
6206
|
designSystemSetup: {
|
|
@@ -6270,6 +6275,7 @@ const designExactEnglishOverrides = {
|
|
|
6270
6275
|
pages: {
|
|
6271
6276
|
presentExitHint: "اضغط على Esc للخروج",
|
|
6272
6277
|
notFoundDescription: "الصفحة التي تبحث عنها غير موجودة.",
|
|
6278
|
+
notFoundSignIn: "تسجيل الدخول",
|
|
6273
6279
|
notFoundBackToDesigns: "العودة إلى التصاميم",
|
|
6274
6280
|
},
|
|
6275
6281
|
designSystemSetup: {
|
|
@@ -8132,8 +8138,6 @@ const designModeFeatureOverrides = {
|
|
|
8132
8138
|
const designCanvasFeatureOverrides = {
|
|
8133
8139
|
"zh-TW": {
|
|
8134
8140
|
designEditor: {
|
|
8135
|
-
inspectorLockedTitle: "產生中,檢查器已鎖定",
|
|
8136
|
-
inspectorLockedDescription: "第一個畫面準備好後即可使用控制項。",
|
|
8137
8141
|
toasts: {
|
|
8138
8142
|
propsCopied: "屬性已複製",
|
|
8139
8143
|
propsPasted: "屬性已貼上",
|
|
@@ -8159,13 +8163,10 @@ const designCanvasFeatureOverrides = {
|
|
|
8159
8163
|
show: "顯示圖層",
|
|
8160
8164
|
rename: "重新命名圖層",
|
|
8161
8165
|
deleteBoardObject: "刪除畫布物件",
|
|
8162
|
-
selected: "已選取 {{count}} 個",
|
|
8163
8166
|
},
|
|
8164
8167
|
},
|
|
8165
8168
|
"zh-CN": {
|
|
8166
8169
|
designEditor: {
|
|
8167
|
-
inspectorLockedTitle: "生成期间检查器已锁定",
|
|
8168
|
-
inspectorLockedDescription: "第一个屏幕准备好后即可使用控件。",
|
|
8169
8170
|
toasts: {
|
|
8170
8171
|
propsCopied: "属性已复制",
|
|
8171
8172
|
propsPasted: "属性已粘贴",
|
|
@@ -8222,14 +8223,10 @@ const designCanvasFeatureOverrides = {
|
|
|
8222
8223
|
show: "显示图层",
|
|
8223
8224
|
rename: "重命名图层",
|
|
8224
8225
|
deleteBoardObject: "删除画布对象",
|
|
8225
|
-
selected: "已选择 {{count}} 个",
|
|
8226
8226
|
},
|
|
8227
8227
|
},
|
|
8228
8228
|
"es-ES": {
|
|
8229
8229
|
designEditor: {
|
|
8230
|
-
inspectorLockedTitle: "Inspector bloqueado durante la generación",
|
|
8231
|
-
inspectorLockedDescription:
|
|
8232
|
-
"Los controles se desbloquean cuando la primera pantalla esté lista.",
|
|
8233
8230
|
toasts: {
|
|
8234
8231
|
propsCopied: "Propiedades copiadas",
|
|
8235
8232
|
propsPasted: "Propiedades pegadas",
|
|
@@ -8286,14 +8283,10 @@ const designCanvasFeatureOverrides = {
|
|
|
8286
8283
|
show: "Mostrar capa",
|
|
8287
8284
|
rename: "Renombrar capa",
|
|
8288
8285
|
deleteBoardObject: "Eliminar objeto del lienzo",
|
|
8289
|
-
selected: "{{count}} seleccionadas",
|
|
8290
8286
|
},
|
|
8291
8287
|
},
|
|
8292
8288
|
"fr-FR": {
|
|
8293
8289
|
designEditor: {
|
|
8294
|
-
inspectorLockedTitle: "Inspecteur verrouillé pendant la génération",
|
|
8295
|
-
inspectorLockedDescription:
|
|
8296
|
-
"Les contrôles se déverrouillent lorsque le premier écran est prêt.",
|
|
8297
8290
|
toasts: {
|
|
8298
8291
|
propsCopied: "Propriétés copiées",
|
|
8299
8292
|
propsPasted: "Propriétés collées",
|
|
@@ -8350,14 +8343,10 @@ const designCanvasFeatureOverrides = {
|
|
|
8350
8343
|
show: "Afficher le calque",
|
|
8351
8344
|
rename: "Renommer le calque",
|
|
8352
8345
|
deleteBoardObject: "Supprimer l’objet du canevas",
|
|
8353
|
-
selected: "{{count}} sélectionnés",
|
|
8354
8346
|
},
|
|
8355
8347
|
},
|
|
8356
8348
|
"de-DE": {
|
|
8357
8349
|
designEditor: {
|
|
8358
|
-
inspectorLockedTitle: "Inspektor während der Generierung gesperrt",
|
|
8359
|
-
inspectorLockedDescription:
|
|
8360
|
-
"Die Steuerelemente werden freigeschaltet, sobald der erste Screen bereit ist.",
|
|
8361
8350
|
toasts: {
|
|
8362
8351
|
propsCopied: "Eigenschaften kopiert",
|
|
8363
8352
|
propsPasted: "Eigenschaften eingefügt",
|
|
@@ -8415,14 +8404,10 @@ const designCanvasFeatureOverrides = {
|
|
|
8415
8404
|
show: "Ebene anzeigen",
|
|
8416
8405
|
rename: "Ebene umbenennen",
|
|
8417
8406
|
deleteBoardObject: "Canvas-Objekt löschen",
|
|
8418
|
-
selected: "{{count}} ausgewählt",
|
|
8419
8407
|
},
|
|
8420
8408
|
},
|
|
8421
8409
|
"ja-JP": {
|
|
8422
8410
|
designEditor: {
|
|
8423
|
-
inspectorLockedTitle: "生成中はインスペクターがロックされています",
|
|
8424
|
-
inspectorLockedDescription:
|
|
8425
|
-
"最初の画面の準備ができるとコントロールが使えます。",
|
|
8426
8411
|
toasts: {
|
|
8427
8412
|
propsCopied: "プロパティをコピーしました",
|
|
8428
8413
|
propsPasted: "プロパティを貼り付けました",
|
|
@@ -8479,14 +8464,10 @@ const designCanvasFeatureOverrides = {
|
|
|
8479
8464
|
show: "レイヤーを表示",
|
|
8480
8465
|
rename: "レイヤー名を変更",
|
|
8481
8466
|
deleteBoardObject: "キャンバスオブジェクトを削除",
|
|
8482
|
-
selected: "{{count}} 件選択",
|
|
8483
8467
|
},
|
|
8484
8468
|
},
|
|
8485
8469
|
"ko-KR": {
|
|
8486
8470
|
designEditor: {
|
|
8487
|
-
inspectorLockedTitle: "생성 중에는 인스펙터가 잠겨 있습니다",
|
|
8488
|
-
inspectorLockedDescription:
|
|
8489
|
-
"첫 화면이 준비되면 컨트롤이 잠금 해제됩니다.",
|
|
8490
8471
|
toasts: {
|
|
8491
8472
|
propsCopied: "속성이 복사됨",
|
|
8492
8473
|
propsPasted: "속성이 붙여넣어짐",
|
|
@@ -8543,14 +8524,10 @@ const designCanvasFeatureOverrides = {
|
|
|
8543
8524
|
show: "레이어 표시",
|
|
8544
8525
|
rename: "레이어 이름 변경",
|
|
8545
8526
|
deleteBoardObject: "캔버스 오브젝트 삭제",
|
|
8546
|
-
selected: "{{count}}개 선택됨",
|
|
8547
8527
|
},
|
|
8548
8528
|
},
|
|
8549
8529
|
"pt-BR": {
|
|
8550
8530
|
designEditor: {
|
|
8551
|
-
inspectorLockedTitle: "Inspetor bloqueado durante a geração",
|
|
8552
|
-
inspectorLockedDescription:
|
|
8553
|
-
"Os controles são desbloqueados quando a primeira tela estiver pronta.",
|
|
8554
8531
|
toasts: {
|
|
8555
8532
|
propsCopied: "Propriedades copiadas",
|
|
8556
8533
|
propsPasted: "Propriedades coladas",
|
|
@@ -8607,14 +8584,10 @@ const designCanvasFeatureOverrides = {
|
|
|
8607
8584
|
show: "Mostrar camada",
|
|
8608
8585
|
rename: "Renomear camada",
|
|
8609
8586
|
deleteBoardObject: "Excluir objeto da tela",
|
|
8610
|
-
selected: "{{count}} selecionadas",
|
|
8611
8587
|
},
|
|
8612
8588
|
},
|
|
8613
8589
|
"hi-IN": {
|
|
8614
8590
|
designEditor: {
|
|
8615
|
-
inspectorLockedTitle: "जनरेट करते समय इंस्पेक्टर लॉक है",
|
|
8616
|
-
inspectorLockedDescription:
|
|
8617
|
-
"पहली स्क्रीन तैयार होने पर नियंत्रण अनलॉक हो जाएंगे.",
|
|
8618
8591
|
toasts: {
|
|
8619
8592
|
propsCopied: "गुण कॉपी किए गए",
|
|
8620
8593
|
propsPasted: "गुण चिपकाए गए",
|
|
@@ -8671,14 +8644,10 @@ const designCanvasFeatureOverrides = {
|
|
|
8671
8644
|
show: "परत दिखाएं",
|
|
8672
8645
|
rename: "परत का नाम बदलें",
|
|
8673
8646
|
deleteBoardObject: "कैनवास ऑब्जेक्ट हटाएं",
|
|
8674
|
-
selected: "{{count}} चयनित",
|
|
8675
8647
|
},
|
|
8676
8648
|
},
|
|
8677
8649
|
"ar-SA": {
|
|
8678
8650
|
designEditor: {
|
|
8679
|
-
inspectorLockedTitle: "المفتش مقفل أثناء الإنشاء",
|
|
8680
|
-
inspectorLockedDescription:
|
|
8681
|
-
"تُفتح عناصر التحكم عندما تكون الشاشة الأولى جاهزة.",
|
|
8682
8651
|
toasts: {
|
|
8683
8652
|
propsCopied: "تم نسخ الخصائص",
|
|
8684
8653
|
propsPasted: "تم لصق الخصائص",
|
|
@@ -8735,7 +8704,6 @@ const designCanvasFeatureOverrides = {
|
|
|
8735
8704
|
show: "إظهار الطبقة",
|
|
8736
8705
|
rename: "إعادة تسمية الطبقة",
|
|
8737
8706
|
deleteBoardObject: "حذف كائن اللوحة",
|
|
8738
|
-
selected: "{{count}} محددة",
|
|
8739
8707
|
},
|
|
8740
8708
|
},
|
|
8741
8709
|
} satisfies Record<Exclude<LocaleCode, "en-US">, PartialMessages>;
|
|
@@ -8937,10 +8905,10 @@ const designPublicShareOverrides = {
|
|
|
8937
8905
|
"zh-TW": {
|
|
8938
8906
|
designEditor: {
|
|
8939
8907
|
share: "分享",
|
|
8940
|
-
signUpToSave: "
|
|
8908
|
+
signUpToSave: "註冊以儲存",
|
|
8941
8909
|
signUpToSaveDescription:
|
|
8942
8910
|
"註冊免費帳號即可儲存設計、畫面版面,並產生新的方向。",
|
|
8943
|
-
signUpToShare: "
|
|
8911
|
+
signUpToShare: "註冊以分享",
|
|
8944
8912
|
shareEditorLink: "設計編輯器連結",
|
|
8945
8913
|
shareEditorLinkDescription: "有權限的任何人都能在編輯器中開啟這個設計。",
|
|
8946
8914
|
toasts: {
|
|
@@ -8953,7 +8921,7 @@ const designPublicShareOverrides = {
|
|
|
8953
8921
|
title: "登入前先檢視本機 App 畫面",
|
|
8954
8922
|
description:
|
|
8955
8923
|
"無需帳號即可開啟 visual-edit。只有在想儲存設計、保留畫面版面、分享給他人或產生新方向時才需要註冊。",
|
|
8956
|
-
saveCta: "
|
|
8924
|
+
saveCta: "儲存",
|
|
8957
8925
|
openDesign: "開啟 Design",
|
|
8958
8926
|
templatesCta: "瀏覽範本",
|
|
8959
8927
|
previewLabel: "本機預覽",
|
|
@@ -8966,10 +8934,10 @@ const designPublicShareOverrides = {
|
|
|
8966
8934
|
"zh-CN": {
|
|
8967
8935
|
designEditor: {
|
|
8968
8936
|
share: "分享",
|
|
8969
|
-
signUpToSave: "
|
|
8937
|
+
signUpToSave: "注册以保存",
|
|
8970
8938
|
signUpToSaveDescription:
|
|
8971
8939
|
"注册免费帐户即可保存设计和屏幕布局,并生成新的方向。",
|
|
8972
|
-
signUpToShare: "
|
|
8940
|
+
signUpToShare: "注册以共享",
|
|
8973
8941
|
shareEditorLink: "设计编辑器链接",
|
|
8974
8942
|
shareEditorLinkDescription:
|
|
8975
8943
|
"有访问权限的任何人都可以在编辑器中打开此设计。",
|
|
@@ -8983,7 +8951,7 @@ const designPublicShareOverrides = {
|
|
|
8983
8951
|
title: "登录前先检查本地应用屏幕",
|
|
8984
8952
|
description:
|
|
8985
8953
|
"无需帐户即可打开 visual-edit。只有在需要保存设计、保留屏幕布局、与他人共享或生成新方向时才注册。",
|
|
8986
|
-
saveCta: "
|
|
8954
|
+
saveCta: "保存",
|
|
8987
8955
|
openDesign: "打开 Design",
|
|
8988
8956
|
templatesCta: "浏览模板",
|
|
8989
8957
|
previewLabel: "本地预览",
|
|
@@ -8996,10 +8964,10 @@ const designPublicShareOverrides = {
|
|
|
8996
8964
|
"es-ES": {
|
|
8997
8965
|
designEditor: {
|
|
8998
8966
|
share: "Compartir",
|
|
8999
|
-
signUpToSave: "Registrarse
|
|
8967
|
+
signUpToSave: "Registrarse para guardar",
|
|
9000
8968
|
signUpToSaveDescription:
|
|
9001
8969
|
"Crea una cuenta gratis para guardar diseños, diseños de pantalla y generar nuevas direcciones.",
|
|
9002
|
-
signUpToShare: "Registrarse para
|
|
8970
|
+
signUpToShare: "Registrarse para compartir",
|
|
9003
8971
|
shareEditorLink: "Enlace del editor de diseño",
|
|
9004
8972
|
shareEditorLinkDescription:
|
|
9005
8973
|
"Cualquier persona con acceso puede abrir este diseño en el editor.",
|
|
@@ -9013,7 +8981,7 @@ const designPublicShareOverrides = {
|
|
|
9013
8981
|
title: "Inspecciona pantallas locales antes de iniciar sesion",
|
|
9014
8982
|
description:
|
|
9015
8983
|
"Abre visual-edit sin una cuenta. Registrate solo cuando quieras guardar diseños, conservar layouts de pantalla, compartir con otros o generar nuevas direcciones.",
|
|
9016
|
-
saveCta: "
|
|
8984
|
+
saveCta: "Guardar",
|
|
9017
8985
|
openDesign: "Abrir Design",
|
|
9018
8986
|
templatesCta: "Explorar plantillas",
|
|
9019
8987
|
previewLabel: "Vista previa local",
|
|
@@ -9026,10 +8994,10 @@ const designPublicShareOverrides = {
|
|
|
9026
8994
|
"fr-FR": {
|
|
9027
8995
|
designEditor: {
|
|
9028
8996
|
share: "Partager",
|
|
9029
|
-
signUpToSave: "S'inscrire
|
|
8997
|
+
signUpToSave: "S'inscrire pour enregistrer",
|
|
9030
8998
|
signUpToSaveDescription:
|
|
9031
8999
|
"Creez un compte gratuit pour enregistrer des designs, des mises en page et generer de nouvelles directions.",
|
|
9032
|
-
signUpToShare: "S'inscrire pour
|
|
9000
|
+
signUpToShare: "S'inscrire pour partager",
|
|
9033
9001
|
shareEditorLink: "Lien de l'editeur de design",
|
|
9034
9002
|
shareEditorLinkDescription:
|
|
9035
9003
|
"Toute personne ayant acces peut ouvrir ce design dans l'editeur.",
|
|
@@ -9043,7 +9011,7 @@ const designPublicShareOverrides = {
|
|
|
9043
9011
|
title: "Inspectez les ecrans locaux avant de vous connecter",
|
|
9044
9012
|
description:
|
|
9045
9013
|
"Ouvrez visual-edit sans compte. Inscrivez-vous seulement pour enregistrer des designs, conserver les mises en page, partager ou generer de nouvelles directions.",
|
|
9046
|
-
saveCta: "
|
|
9014
|
+
saveCta: "Enregistrer",
|
|
9047
9015
|
openDesign: "Ouvrir Design",
|
|
9048
9016
|
templatesCta: "Parcourir les modeles",
|
|
9049
9017
|
previewLabel: "Apercu local",
|
|
@@ -9056,10 +9024,10 @@ const designPublicShareOverrides = {
|
|
|
9056
9024
|
"de-DE": {
|
|
9057
9025
|
designEditor: {
|
|
9058
9026
|
share: "Teilen",
|
|
9059
|
-
signUpToSave: "
|
|
9027
|
+
signUpToSave: "Zum Speichern registrieren",
|
|
9060
9028
|
signUpToSaveDescription:
|
|
9061
9029
|
"Erstelle ein kostenloses Konto, um Designs und Screen-Layouts zu speichern und neue Richtungen zu generieren.",
|
|
9062
|
-
signUpToShare: "
|
|
9030
|
+
signUpToShare: "Zum Teilen registrieren",
|
|
9063
9031
|
shareEditorLink: "Design-Editor-Link",
|
|
9064
9032
|
shareEditorLinkDescription:
|
|
9065
9033
|
"Alle mit Zugriff koennen dieses Design im Editor oeffnen.",
|
|
@@ -9074,7 +9042,7 @@ const designPublicShareOverrides = {
|
|
|
9074
9042
|
title: "Lokale App-Screens vor der Anmeldung pruefen",
|
|
9075
9043
|
description:
|
|
9076
9044
|
"Oeffne visual-edit ohne Konto. Registriere dich erst, wenn du Designs speichern, Screen-Layouts behalten, teilen oder neue Richtungen generieren moechtest.",
|
|
9077
|
-
saveCta: "
|
|
9045
|
+
saveCta: "Speichern",
|
|
9078
9046
|
openDesign: "Design oeffnen",
|
|
9079
9047
|
templatesCta: "Vorlagen durchsuchen",
|
|
9080
9048
|
previewLabel: "Lokale Vorschau",
|
|
@@ -9087,10 +9055,10 @@ const designPublicShareOverrides = {
|
|
|
9087
9055
|
"ja-JP": {
|
|
9088
9056
|
designEditor: {
|
|
9089
9057
|
share: "共有",
|
|
9090
|
-
signUpToSave: "
|
|
9058
|
+
signUpToSave: "登録して保存",
|
|
9091
9059
|
signUpToSaveDescription:
|
|
9092
9060
|
"無料アカウントを作成して、デザインや画面レイアウトを保存し、新しい案を生成できます。",
|
|
9093
|
-
signUpToShare: "
|
|
9061
|
+
signUpToShare: "登録して共有",
|
|
9094
9062
|
shareEditorLink: "デザインエディターリンク",
|
|
9095
9063
|
shareEditorLinkDescription:
|
|
9096
9064
|
"アクセス権のある人は、このデザインをエディターで開けます。",
|
|
@@ -9104,7 +9072,7 @@ const designPublicShareOverrides = {
|
|
|
9104
9072
|
title: "サインイン前にローカルアプリ画面を確認",
|
|
9105
9073
|
description:
|
|
9106
9074
|
"アカウントなしで visual-edit を開けます。デザインの保存、画面レイアウトの保持、共有、新しい方向の生成が必要なときだけ登録します。",
|
|
9107
|
-
saveCta: "
|
|
9075
|
+
saveCta: "保存",
|
|
9108
9076
|
openDesign: "Design を開く",
|
|
9109
9077
|
templatesCta: "テンプレートを見る",
|
|
9110
9078
|
previewLabel: "ローカルプレビュー",
|
|
@@ -9117,10 +9085,10 @@ const designPublicShareOverrides = {
|
|
|
9117
9085
|
"ko-KR": {
|
|
9118
9086
|
designEditor: {
|
|
9119
9087
|
share: "공유",
|
|
9120
|
-
signUpToSave: "
|
|
9088
|
+
signUpToSave: "가입하고 저장",
|
|
9121
9089
|
signUpToSaveDescription:
|
|
9122
9090
|
"무료 계정을 만들어 디자인과 화면 레이아웃을 저장하고 새 방향을 생성하세요.",
|
|
9123
|
-
signUpToShare: "가입하고
|
|
9091
|
+
signUpToShare: "가입하고 공유",
|
|
9124
9092
|
shareEditorLink: "디자인 편집기 링크",
|
|
9125
9093
|
shareEditorLinkDescription:
|
|
9126
9094
|
"액세스 권한이 있는 누구나 편집기에서 이 디자인을 열 수 있습니다.",
|
|
@@ -9134,7 +9102,7 @@ const designPublicShareOverrides = {
|
|
|
9134
9102
|
title: "로그인 전에 로컬 앱 화면 확인",
|
|
9135
9103
|
description:
|
|
9136
9104
|
"계정 없이 visual-edit를 열 수 있습니다. 디자인 저장, 화면 레이아웃 보관, 공유 또는 새 방향 생성이 필요할 때만 가입하세요.",
|
|
9137
|
-
saveCta: "
|
|
9105
|
+
saveCta: "저장",
|
|
9138
9106
|
openDesign: "Design 열기",
|
|
9139
9107
|
templatesCta: "템플릿 찾아보기",
|
|
9140
9108
|
previewLabel: "로컬 미리보기",
|
|
@@ -9147,10 +9115,10 @@ const designPublicShareOverrides = {
|
|
|
9147
9115
|
"pt-BR": {
|
|
9148
9116
|
designEditor: {
|
|
9149
9117
|
share: "Compartilhar",
|
|
9150
|
-
signUpToSave: "Criar conta
|
|
9118
|
+
signUpToSave: "Criar conta para salvar",
|
|
9151
9119
|
signUpToSaveDescription:
|
|
9152
9120
|
"Crie uma conta gratis para salvar designs, layouts de tela e gerar novas direcoes.",
|
|
9153
|
-
signUpToShare: "Criar conta para
|
|
9121
|
+
signUpToShare: "Criar conta para compartilhar",
|
|
9154
9122
|
shareEditorLink: "Link do editor de design",
|
|
9155
9123
|
shareEditorLinkDescription:
|
|
9156
9124
|
"Qualquer pessoa com acesso pode abrir este design no editor.",
|
|
@@ -9164,7 +9132,7 @@ const designPublicShareOverrides = {
|
|
|
9164
9132
|
title: "Inspecione telas locais antes de entrar",
|
|
9165
9133
|
description:
|
|
9166
9134
|
"Abra o visual-edit sem uma conta. Crie uma conta apenas para salvar designs, manter layouts de tela, compartilhar ou gerar novas direcoes.",
|
|
9167
|
-
saveCta: "
|
|
9135
|
+
saveCta: "Salvar",
|
|
9168
9136
|
openDesign: "Abrir Design",
|
|
9169
9137
|
templatesCta: "Ver modelos",
|
|
9170
9138
|
previewLabel: "Previa local",
|
|
@@ -9177,10 +9145,10 @@ const designPublicShareOverrides = {
|
|
|
9177
9145
|
"hi-IN": {
|
|
9178
9146
|
designEditor: {
|
|
9179
9147
|
share: "साझा करें",
|
|
9180
|
-
signUpToSave: "सहेजने के लिए
|
|
9148
|
+
signUpToSave: "सहेजने के लिए साइन अप करें",
|
|
9181
9149
|
signUpToSaveDescription:
|
|
9182
9150
|
"designs, screen layouts सहेजने और नए options generate करने के लिए free account बनाएं।",
|
|
9183
|
-
signUpToShare: "
|
|
9151
|
+
signUpToShare: "साझा करने के लिए sign up करें",
|
|
9184
9152
|
shareEditorLink: "design editor link",
|
|
9185
9153
|
shareEditorLinkDescription:
|
|
9186
9154
|
"access वाला कोई भी व्यक्ति इस design को editor में खोल सकता है।",
|
|
@@ -9194,7 +9162,7 @@ const designPublicShareOverrides = {
|
|
|
9194
9162
|
title: "sign in से पहले local app screens देखें",
|
|
9195
9163
|
description:
|
|
9196
9164
|
"account के बिना visual-edit खोलें। designs सहेजने, screen layouts रखने, share करने या नए directions generate करने के लिए ही sign up करें।",
|
|
9197
|
-
saveCta: "
|
|
9165
|
+
saveCta: "सहेजें",
|
|
9198
9166
|
openDesign: "Design खोलें",
|
|
9199
9167
|
templatesCta: "templates देखें",
|
|
9200
9168
|
previewLabel: "स्थानीय पूर्वावलोकन",
|
|
@@ -9207,10 +9175,10 @@ const designPublicShareOverrides = {
|
|
|
9207
9175
|
"ar-SA": {
|
|
9208
9176
|
designEditor: {
|
|
9209
9177
|
share: "مشاركة",
|
|
9210
|
-
signUpToSave: "سجل
|
|
9178
|
+
signUpToSave: "سجل للحفظ",
|
|
9211
9179
|
signUpToSaveDescription:
|
|
9212
9180
|
"انشئ حسابا مجانيا لحفظ التصاميم وتخطيطات الشاشة وانشاء اتجاهات جديدة.",
|
|
9213
|
-
signUpToShare: "سجل
|
|
9181
|
+
signUpToShare: "سجل للمشاركة",
|
|
9214
9182
|
shareEditorLink: "رابط محرر التصميم",
|
|
9215
9183
|
shareEditorLinkDescription:
|
|
9216
9184
|
"يمكن لاي شخص لديه صلاحية الوصول فتح هذا التصميم في المحرر.",
|
|
@@ -9224,7 +9192,7 @@ const designPublicShareOverrides = {
|
|
|
9224
9192
|
title: "افحص شاشات التطبيق المحلية قبل تسجيل الدخول",
|
|
9225
9193
|
description:
|
|
9226
9194
|
"افتح visual-edit بدون حساب. سجل فقط عندما تريد حفظ التصاميم وتخطيطات الشاشة او مشاركتها او انشاء اتجاهات جديدة.",
|
|
9227
|
-
saveCta: "
|
|
9195
|
+
saveCta: "حفظ",
|
|
9228
9196
|
openDesign: "افتح Design",
|
|
9229
9197
|
templatesCta: "تصفح القوالب",
|
|
9230
9198
|
previewLabel: "معاينة محلية",
|
|
@@ -9243,7 +9211,7 @@ const designVisualEditOverrides = {
|
|
|
9243
9211
|
title: "登入前先檢查本機應用畫面",
|
|
9244
9212
|
description:
|
|
9245
9213
|
"無需帳號即可開啟 visual-edit。只有在想儲存設計、保留畫面版面、與他人分享或生成新方向時才需要註冊。",
|
|
9246
|
-
saveCta: "
|
|
9214
|
+
saveCta: "儲存",
|
|
9247
9215
|
openDesign: "開啟 Design",
|
|
9248
9216
|
templatesCta: "瀏覽範本",
|
|
9249
9217
|
previewLabel: "本機預覽",
|
|
@@ -9259,7 +9227,7 @@ const designVisualEditOverrides = {
|
|
|
9259
9227
|
title: "登录前检查本地应用屏幕",
|
|
9260
9228
|
description:
|
|
9261
9229
|
"无需账号即可打开 visual-edit。只有在想保存设计、保留屏幕布局、与他人共享或生成新方向时才需要注册。",
|
|
9262
|
-
saveCta: "
|
|
9230
|
+
saveCta: "保存",
|
|
9263
9231
|
openDesign: "打开 Design",
|
|
9264
9232
|
templatesCta: "浏览模板",
|
|
9265
9233
|
previewLabel: "本地预览",
|
|
@@ -9275,7 +9243,7 @@ const designVisualEditOverrides = {
|
|
|
9275
9243
|
title: "Inspecciona pantallas locales de la app antes de iniciar sesion",
|
|
9276
9244
|
description:
|
|
9277
9245
|
"Abre visual-edit sin cuenta. Registrate solo cuando quieras guardar disenos, conservar layouts de pantalla, compartir con otros o generar nuevas direcciones.",
|
|
9278
|
-
saveCta: "
|
|
9246
|
+
saveCta: "Guardar",
|
|
9279
9247
|
openDesign: "Abrir Design",
|
|
9280
9248
|
templatesCta: "Ver plantillas",
|
|
9281
9249
|
previewLabel: "Vista previa local",
|
|
@@ -9291,7 +9259,7 @@ const designVisualEditOverrides = {
|
|
|
9291
9259
|
title: "Inspectez les ecrans locaux de l'app avant connexion",
|
|
9292
9260
|
description:
|
|
9293
9261
|
"Ouvrez visual-edit sans compte. Inscrivez-vous seulement pour enregistrer des designs, conserver les mises en page, partager ou generer de nouvelles directions.",
|
|
9294
|
-
saveCta: "
|
|
9262
|
+
saveCta: "Enregistrer",
|
|
9295
9263
|
openDesign: "Ouvrir Design",
|
|
9296
9264
|
templatesCta: "Parcourir les modeles",
|
|
9297
9265
|
previewLabel: "Apercu local",
|
|
@@ -9307,7 +9275,7 @@ const designVisualEditOverrides = {
|
|
|
9307
9275
|
title: "Lokale App-Bildschirme vor der Anmeldung pruefen",
|
|
9308
9276
|
description:
|
|
9309
9277
|
"Oeffne visual-edit ohne Konto. Melde dich nur an, wenn du Designs speichern, Layouts behalten, teilen oder neue Richtungen generieren willst.",
|
|
9310
|
-
saveCta: "
|
|
9278
|
+
saveCta: "Speichern",
|
|
9311
9279
|
openDesign: "Design oeffnen",
|
|
9312
9280
|
templatesCta: "Vorlagen durchsuchen",
|
|
9313
9281
|
previewLabel: "Lokale Vorschau",
|
|
@@ -9323,7 +9291,7 @@ const designVisualEditOverrides = {
|
|
|
9323
9291
|
title: "サインイン前にローカルアプリ画面を確認",
|
|
9324
9292
|
description:
|
|
9325
9293
|
"アカウントなしで visual-edit を開けます。デザイン保存、画面レイアウト保持、共有、新しい方向の生成が必要なときだけ登録します。",
|
|
9326
|
-
saveCta: "
|
|
9294
|
+
saveCta: "保存",
|
|
9327
9295
|
openDesign: "Design を開く",
|
|
9328
9296
|
templatesCta: "テンプレートを見る",
|
|
9329
9297
|
previewLabel: "ローカルプレビュー",
|
|
@@ -9339,7 +9307,7 @@ const designVisualEditOverrides = {
|
|
|
9339
9307
|
title: "로그인 전에 로컬 앱 화면 검사",
|
|
9340
9308
|
description:
|
|
9341
9309
|
"계정 없이 visual-edit를 열 수 있습니다. 디자인 저장, 화면 레이아웃 유지, 공유, 새 방향 생성을 원할 때만 가입하세요.",
|
|
9342
|
-
saveCta: "
|
|
9310
|
+
saveCta: "저장",
|
|
9343
9311
|
openDesign: "Design 열기",
|
|
9344
9312
|
templatesCta: "템플릿 둘러보기",
|
|
9345
9313
|
previewLabel: "로컬 미리보기",
|
|
@@ -9355,7 +9323,7 @@ const designVisualEditOverrides = {
|
|
|
9355
9323
|
title: "Inspecione telas locais do app antes de entrar",
|
|
9356
9324
|
description:
|
|
9357
9325
|
"Abra visual-edit sem conta. Cadastre-se apenas para salvar designs, manter layouts de tela, compartilhar ou gerar novas direcoes.",
|
|
9358
|
-
saveCta: "
|
|
9326
|
+
saveCta: "Salvar",
|
|
9359
9327
|
openDesign: "Abrir Design",
|
|
9360
9328
|
templatesCta: "Ver modelos",
|
|
9361
9329
|
previewLabel: "Previa local",
|
|
@@ -9371,7 +9339,7 @@ const designVisualEditOverrides = {
|
|
|
9371
9339
|
title: "Sign in से पहले local app screens जांचें",
|
|
9372
9340
|
description:
|
|
9373
9341
|
"बिना account visual-edit खोलें। Designs save करने, screen layouts रखने, share करने या नई directions generate करने पर ही sign up करें।",
|
|
9374
|
-
saveCta: "
|
|
9342
|
+
saveCta: "सहेजें",
|
|
9375
9343
|
openDesign: "Design खोलें",
|
|
9376
9344
|
templatesCta: "Templates देखें",
|
|
9377
9345
|
previewLabel: "स्थानीय पूर्वावलोकन",
|
|
@@ -9387,7 +9355,7 @@ const designVisualEditOverrides = {
|
|
|
9387
9355
|
title: "افحص شاشات التطبيق المحلية قبل تسجيل الدخول",
|
|
9388
9356
|
description:
|
|
9389
9357
|
"افتح visual-edit بدون حساب. سجل فقط عندما تريد حفظ التصاميم أو الاحتفاظ بتخطيطات الشاشة أو المشاركة أو توليد اتجاهات جديدة.",
|
|
9390
|
-
saveCta: "
|
|
9358
|
+
saveCta: "حفظ",
|
|
9391
9359
|
openDesign: "فتح Design",
|
|
9392
9360
|
templatesCta: "تصفح القوالب",
|
|
9393
9361
|
previewLabel: "معاينة محلية",
|
|
@@ -9403,223 +9371,130 @@ const designLocalSourceEditOverrides = {
|
|
|
9403
9371
|
"zh-TW": {
|
|
9404
9372
|
designEditor: {
|
|
9405
9373
|
localSourceEdit: {
|
|
9406
|
-
bannerNotice: "對已連結本機程式碼的編輯由 AI 代理套用,不會直接寫入。",
|
|
9407
|
-
askAiToEdit: "請 AI 編輯",
|
|
9408
9374
|
copyPrompt: "複製提示",
|
|
9409
|
-
dialogTitle: "請 AI 編輯已連結的來源",
|
|
9410
|
-
requestPlaceholder: "將按鈕顏色改成藍色、更新標題文字…",
|
|
9411
9375
|
askAi: "詢問 AI",
|
|
9412
9376
|
applyWithAi: "用 AI 套用",
|
|
9413
9377
|
copyPromptTooltip: "將提示複製到剪貼簿",
|
|
9414
9378
|
targeting: "目標:",
|
|
9415
9379
|
describeElementChange: "描述要對此元素進行的更改…",
|
|
9416
9380
|
describeChange: "描述您想要更改的內容…",
|
|
9417
|
-
dialogDescription:
|
|
9418
|
-
"描述您想要更改的內容。代理會先呼叫 view-screen,再透過程式碼編輯器套用編輯。",
|
|
9419
|
-
dialogDescriptionFile:
|
|
9420
|
-
"描述您想在「{{file}}」中更改的內容。代理會先呼叫 view-screen,再透過程式碼編輯器套用編輯。",
|
|
9421
9381
|
},
|
|
9422
9382
|
},
|
|
9423
9383
|
},
|
|
9424
9384
|
"zh-CN": {
|
|
9425
9385
|
designEditor: {
|
|
9426
9386
|
localSourceEdit: {
|
|
9427
|
-
bannerNotice: "对已连接本地代码的编辑由 AI 代理应用,不会直接写入。",
|
|
9428
|
-
askAiToEdit: "请 AI 编辑",
|
|
9429
9387
|
copyPrompt: "复制提示",
|
|
9430
|
-
dialogTitle: "请 AI 编辑已连接的源码",
|
|
9431
|
-
requestPlaceholder: "将按钮颜色改成蓝色、更新标题文字…",
|
|
9432
9388
|
askAi: "询问 AI",
|
|
9433
9389
|
applyWithAi: "用 AI 应用",
|
|
9434
9390
|
copyPromptTooltip: "将提示复制到剪贴板",
|
|
9435
9391
|
targeting: "目标:",
|
|
9436
9392
|
describeElementChange: "描述要对此元素进行的更改…",
|
|
9437
9393
|
describeChange: "描述您想要更改的内容…",
|
|
9438
|
-
dialogDescription:
|
|
9439
|
-
"描述您想要更改的内容。代理会先调用 view-screen,再通过代码编辑器应用编辑。",
|
|
9440
|
-
dialogDescriptionFile:
|
|
9441
|
-
"描述您想在“{{file}}”中更改的内容。代理会先调用 view-screen,再通过代码编辑器应用编辑。",
|
|
9442
9394
|
},
|
|
9443
9395
|
},
|
|
9444
9396
|
},
|
|
9445
9397
|
"es-ES": {
|
|
9446
9398
|
designEditor: {
|
|
9447
9399
|
localSourceEdit: {
|
|
9448
|
-
bannerNotice:
|
|
9449
|
-
"Las ediciones del código local conectado las aplica el agente de IA, no se escriben directamente.",
|
|
9450
|
-
askAiToEdit: "Pedir edición a la IA",
|
|
9451
9400
|
copyPrompt: "Copiar prompt",
|
|
9452
|
-
dialogTitle: "Pedir a la IA que edite el código conectado",
|
|
9453
|
-
requestPlaceholder:
|
|
9454
|
-
"Cambia el color del botón a azul, actualiza el texto del título…",
|
|
9455
9401
|
askAi: "Preguntar a la IA",
|
|
9456
9402
|
applyWithAi: "Aplicar con IA",
|
|
9457
9403
|
copyPromptTooltip: "Copiar prompt al portapapeles",
|
|
9458
9404
|
targeting: "Objetivo:",
|
|
9459
9405
|
describeElementChange: "Describe el cambio para este elemento…",
|
|
9460
9406
|
describeChange: "Describe lo que quieres cambiar…",
|
|
9461
|
-
dialogDescription:
|
|
9462
|
-
"Describe lo que quieres cambiar. El agente llamará a view-screen primero y luego aplicará los cambios a través del editor de código.",
|
|
9463
|
-
dialogDescriptionFile:
|
|
9464
|
-
'Describe lo que quieres cambiar en "{{file}}". El agente llamará a view-screen primero y luego aplicará los cambios a través del editor de código.',
|
|
9465
9407
|
},
|
|
9466
9408
|
},
|
|
9467
9409
|
},
|
|
9468
9410
|
"fr-FR": {
|
|
9469
9411
|
designEditor: {
|
|
9470
9412
|
localSourceEdit: {
|
|
9471
|
-
bannerNotice:
|
|
9472
|
-
"Les modifications du code local connecté sont appliquées par l'agent IA, pas écrites directement.",
|
|
9473
|
-
askAiToEdit: "Demander à l'IA de modifier",
|
|
9474
9413
|
copyPrompt: "Copier le prompt",
|
|
9475
|
-
dialogTitle: "Demander à l'IA de modifier la source connectée",
|
|
9476
|
-
requestPlaceholder:
|
|
9477
|
-
"Change la couleur du bouton en bleu, mets à jour le titre…",
|
|
9478
9414
|
askAi: "Demander à l'IA",
|
|
9479
9415
|
applyWithAi: "Appliquer avec l'IA",
|
|
9480
9416
|
copyPromptTooltip: "Copier le prompt dans le presse-papiers",
|
|
9481
9417
|
targeting: "Cible :",
|
|
9482
9418
|
describeElementChange: "Décrivez la modification pour cet élément…",
|
|
9483
9419
|
describeChange: "Décrivez ce que vous voulez changer…",
|
|
9484
|
-
dialogDescription:
|
|
9485
|
-
"Décrivez ce que vous voulez changer. L'agent appellera d'abord view-screen, puis appliquera les modifications via l'éditeur de code.",
|
|
9486
|
-
dialogDescriptionFile:
|
|
9487
|
-
"Décrivez ce que vous voulez changer dans \"{{file}}\". L'agent appellera d'abord view-screen, puis appliquera les modifications via l'éditeur de code.",
|
|
9488
9420
|
},
|
|
9489
9421
|
},
|
|
9490
9422
|
},
|
|
9491
9423
|
"de-DE": {
|
|
9492
9424
|
designEditor: {
|
|
9493
9425
|
localSourceEdit: {
|
|
9494
|
-
bannerNotice:
|
|
9495
|
-
"Änderungen am verbundenen lokalen Code werden vom KI-Agenten angewendet, nicht direkt geschrieben.",
|
|
9496
|
-
askAiToEdit: "KI um Änderung bitten",
|
|
9497
9426
|
copyPrompt: "Prompt kopieren",
|
|
9498
|
-
dialogTitle: "KI um Bearbeitung der verbundenen Quelle bitten",
|
|
9499
|
-
requestPlaceholder:
|
|
9500
|
-
"Ändere die Button-Farbe in Blau, aktualisiere den Überschriftstext…",
|
|
9501
9427
|
askAi: "KI fragen",
|
|
9502
9428
|
applyWithAi: "Mit KI anwenden",
|
|
9503
9429
|
copyPromptTooltip: "Prompt in die Zwischenablage kopieren",
|
|
9504
9430
|
targeting: "Ziel:",
|
|
9505
9431
|
describeElementChange: "Beschreibe die Änderung für dieses Element…",
|
|
9506
9432
|
describeChange: "Beschreibe, was du ändern möchtest…",
|
|
9507
|
-
dialogDescription:
|
|
9508
|
-
"Beschreibe, was du ändern möchtest. Der Agent ruft zuerst view-screen auf und wendet die Änderungen dann über den Code-Editor an.",
|
|
9509
|
-
dialogDescriptionFile:
|
|
9510
|
-
'Beschreibe, was du in "{{file}}" ändern möchtest. Der Agent ruft zuerst view-screen auf und wendet die Änderungen dann über den Code-Editor an.',
|
|
9511
9433
|
},
|
|
9512
9434
|
},
|
|
9513
9435
|
},
|
|
9514
9436
|
"ja-JP": {
|
|
9515
9437
|
designEditor: {
|
|
9516
9438
|
localSourceEdit: {
|
|
9517
|
-
bannerNotice:
|
|
9518
|
-
"接続済みローカルコードの編集は AI エージェントが適用し、直接は書き込みません。",
|
|
9519
|
-
askAiToEdit: "AI に編集を依頼",
|
|
9520
9439
|
copyPrompt: "プロンプトをコピー",
|
|
9521
|
-
dialogTitle: "接続済みソースの編集を AI に依頼",
|
|
9522
|
-
requestPlaceholder: "ボタンの色を青に変更、見出しテキストを更新…",
|
|
9523
9440
|
askAi: "AI に質問",
|
|
9524
9441
|
applyWithAi: "AI で適用",
|
|
9525
9442
|
copyPromptTooltip: "プロンプトをクリップボードにコピー",
|
|
9526
9443
|
targeting: "対象:",
|
|
9527
9444
|
describeElementChange: "この要素への変更を説明してください…",
|
|
9528
9445
|
describeChange: "変更したい内容を説明してください…",
|
|
9529
|
-
dialogDescription:
|
|
9530
|
-
"変更したい内容を説明してください。エージェントはまず view-screen を呼び出し、その後コードエディターで編集を適用します。",
|
|
9531
|
-
dialogDescriptionFile:
|
|
9532
|
-
"「{{file}}」で変更したい内容を説明してください。エージェントはまず view-screen を呼び出し、その後コードエディターで編集を適用します。",
|
|
9533
9446
|
},
|
|
9534
9447
|
},
|
|
9535
9448
|
},
|
|
9536
9449
|
"ko-KR": {
|
|
9537
9450
|
designEditor: {
|
|
9538
9451
|
localSourceEdit: {
|
|
9539
|
-
bannerNotice:
|
|
9540
|
-
"연결된 로컬 코드 편집은 AI 에이전트가 적용하며 직접 작성하지 않습니다.",
|
|
9541
|
-
askAiToEdit: "AI에 편집 요청",
|
|
9542
9452
|
copyPrompt: "프롬프트 복사",
|
|
9543
|
-
dialogTitle: "연결된 소스 편집을 AI에 요청",
|
|
9544
|
-
requestPlaceholder:
|
|
9545
|
-
"버튼 색상을 파란색으로 변경, 제목 텍스트 업데이트…",
|
|
9546
9453
|
askAi: "AI에 질문",
|
|
9547
9454
|
applyWithAi: "AI로 적용",
|
|
9548
9455
|
copyPromptTooltip: "프롬프트를 클립보드에 복사",
|
|
9549
9456
|
targeting: "대상:",
|
|
9550
9457
|
describeElementChange: "이 요소에 대한 변경 사항을 설명하세요…",
|
|
9551
9458
|
describeChange: "변경하려는 내용을 설명하세요…",
|
|
9552
|
-
dialogDescription:
|
|
9553
|
-
"변경하려는 내용을 설명하세요. 에이전트가 먼저 view-screen을 호출한 다음 코드 편집기로 편집을 적용합니다.",
|
|
9554
|
-
dialogDescriptionFile:
|
|
9555
|
-
"“{{file}}”에서 변경하려는 내용을 설명하세요. 에이전트가 먼저 view-screen을 호출한 다음 코드 편집기로 편집을 적용합니다.",
|
|
9556
9459
|
},
|
|
9557
9460
|
},
|
|
9558
9461
|
},
|
|
9559
9462
|
"pt-BR": {
|
|
9560
9463
|
designEditor: {
|
|
9561
9464
|
localSourceEdit: {
|
|
9562
|
-
bannerNotice:
|
|
9563
|
-
"As edições do código local conectado são aplicadas pelo agente de IA, não escritas diretamente.",
|
|
9564
|
-
askAiToEdit: "Pedir edição à IA",
|
|
9565
9465
|
copyPrompt: "Copiar prompt",
|
|
9566
|
-
dialogTitle: "Pedir à IA para editar a fonte conectada",
|
|
9567
|
-
requestPlaceholder:
|
|
9568
|
-
"Mude a cor do botão para azul, atualize o texto do título…",
|
|
9569
9466
|
askAi: "Perguntar à IA",
|
|
9570
9467
|
applyWithAi: "Aplicar com IA",
|
|
9571
9468
|
copyPromptTooltip: "Copiar prompt para a área de transferência",
|
|
9572
9469
|
targeting: "Alvo:",
|
|
9573
9470
|
describeElementChange: "Descreva a alteração para este elemento…",
|
|
9574
9471
|
describeChange: "Descreva o que você quer mudar…",
|
|
9575
|
-
dialogDescription:
|
|
9576
|
-
"Descreva o que você quer mudar. O agente chamará view-screen primeiro e depois aplicará as edições pelo editor de código.",
|
|
9577
|
-
dialogDescriptionFile:
|
|
9578
|
-
'Descreva o que você quer mudar em "{{file}}". O agente chamará view-screen primeiro e depois aplicará as edições pelo editor de código.',
|
|
9579
9472
|
},
|
|
9580
9473
|
},
|
|
9581
9474
|
},
|
|
9582
9475
|
"hi-IN": {
|
|
9583
9476
|
designEditor: {
|
|
9584
9477
|
localSourceEdit: {
|
|
9585
|
-
bannerNotice:
|
|
9586
|
-
"जुड़े हुए local code में बदलाव AI agent लागू करता है, सीधे नहीं लिखे जाते।",
|
|
9587
|
-
askAiToEdit: "AI से edit करने को कहें",
|
|
9588
9478
|
copyPrompt: "Prompt कॉपी करें",
|
|
9589
|
-
dialogTitle: "जुड़े हुए source को edit करने के लिए AI से कहें",
|
|
9590
|
-
requestPlaceholder: "बटन का रंग नीला करें, heading text अपडेट करें…",
|
|
9591
9479
|
askAi: "AI से पूछें",
|
|
9592
9480
|
applyWithAi: "AI से लागू करें",
|
|
9593
9481
|
copyPromptTooltip: "Prompt को clipboard पर कॉपी करें",
|
|
9594
9482
|
targeting: "लक्ष्य:",
|
|
9595
9483
|
describeElementChange: "इस element के लिए बदलाव बताएं…",
|
|
9596
9484
|
describeChange: "आप क्या बदलना चाहते हैं, बताएं…",
|
|
9597
|
-
dialogDescription:
|
|
9598
|
-
"आप क्या बदलना चाहते हैं, बताएं। Agent पहले view-screen को call करेगा, फिर code editor से बदलाव लागू करेगा।",
|
|
9599
|
-
dialogDescriptionFile:
|
|
9600
|
-
'"{{file}}" में आप क्या बदलना चाहते हैं, बताएं। Agent पहले view-screen को call करेगा, फिर code editor से बदलाव लागू करेगा।',
|
|
9601
9485
|
},
|
|
9602
9486
|
},
|
|
9603
9487
|
},
|
|
9604
9488
|
"ar-SA": {
|
|
9605
9489
|
designEditor: {
|
|
9606
9490
|
localSourceEdit: {
|
|
9607
|
-
bannerNotice:
|
|
9608
|
-
"يطبّق وكيل الذكاء الاصطناعي التعديلات على الكود المحلي المتصل، ولا تُكتب مباشرة.",
|
|
9609
|
-
askAiToEdit: "اطلب من الذكاء الاصطناعي التعديل",
|
|
9610
9491
|
copyPrompt: "نسخ الموجّه",
|
|
9611
|
-
dialogTitle: "اطلب من الذكاء الاصطناعي تعديل المصدر المتصل",
|
|
9612
|
-
requestPlaceholder: "غيّر لون الزر إلى الأزرق، وحدّث نص العنوان…",
|
|
9613
9492
|
askAi: "اسأل الذكاء الاصطناعي",
|
|
9614
9493
|
applyWithAi: "تطبيق بالذكاء الاصطناعي",
|
|
9615
9494
|
copyPromptTooltip: "نسخ الموجّه إلى الحافظة",
|
|
9616
9495
|
targeting: "الهدف:",
|
|
9617
9496
|
describeElementChange: "صف التغيير المطلوب على هذا العنصر…",
|
|
9618
9497
|
describeChange: "صف ما تريد تغييره…",
|
|
9619
|
-
dialogDescription:
|
|
9620
|
-
"صف ما تريد تغييره. سيستدعي الوكيل view-screen أولاً ثم يطبّق التعديلات عبر محرر الكود.",
|
|
9621
|
-
dialogDescriptionFile:
|
|
9622
|
-
'صف ما تريد تغييره في "{{file}}". سيستدعي الوكيل view-screen أولاً ثم يطبّق التعديلات عبر محرر الكود.',
|
|
9623
9498
|
},
|
|
9624
9499
|
},
|
|
9625
9500
|
},
|