@agent-native/core 0.92.7 → 0.92.8
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/corpus/README.md +1 -1
- package/corpus/core/CHANGELOG.md +12 -0
- package/corpus/core/docs/content/a2a-protocol.mdx +12 -0
- package/corpus/core/docs/content/locales/ar-SA/a2a-protocol.mdx +12 -0
- package/corpus/core/docs/content/locales/ar-SA/pr-visual-recap.mdx +3 -3
- package/corpus/core/docs/content/locales/ar-SA/pure-agent-apps.mdx +4 -0
- package/corpus/core/docs/content/locales/de-DE/a2a-protocol.mdx +12 -0
- package/corpus/core/docs/content/locales/de-DE/pr-visual-recap.mdx +3 -3
- package/corpus/core/docs/content/locales/de-DE/pure-agent-apps.mdx +4 -0
- package/corpus/core/docs/content/locales/es-ES/a2a-protocol.mdx +12 -0
- package/corpus/core/docs/content/locales/es-ES/pr-visual-recap.mdx +3 -3
- package/corpus/core/docs/content/locales/es-ES/pure-agent-apps.mdx +4 -0
- package/corpus/core/docs/content/locales/fr-FR/a2a-protocol.mdx +12 -0
- package/corpus/core/docs/content/locales/fr-FR/pr-visual-recap.mdx +3 -3
- package/corpus/core/docs/content/locales/fr-FR/pure-agent-apps.mdx +4 -0
- package/corpus/core/docs/content/locales/hi-IN/a2a-protocol.mdx +12 -0
- package/corpus/core/docs/content/locales/hi-IN/pr-visual-recap.mdx +3 -3
- package/corpus/core/docs/content/locales/hi-IN/pure-agent-apps.mdx +4 -0
- package/corpus/core/docs/content/locales/ja-JP/a2a-protocol.mdx +12 -0
- package/corpus/core/docs/content/locales/ja-JP/pr-visual-recap.mdx +3 -3
- package/corpus/core/docs/content/locales/ja-JP/pure-agent-apps.mdx +4 -0
- package/corpus/core/docs/content/locales/ko-KR/a2a-protocol.mdx +12 -0
- package/corpus/core/docs/content/locales/ko-KR/pr-visual-recap.mdx +3 -3
- package/corpus/core/docs/content/locales/ko-KR/pure-agent-apps.mdx +4 -0
- package/corpus/core/docs/content/locales/pt-BR/a2a-protocol.mdx +12 -0
- package/corpus/core/docs/content/locales/pt-BR/pr-visual-recap.mdx +3 -3
- package/corpus/core/docs/content/locales/pt-BR/pure-agent-apps.mdx +4 -0
- package/corpus/core/docs/content/locales/zh-CN/a2a-protocol.mdx +12 -0
- package/corpus/core/docs/content/locales/zh-CN/pr-visual-recap.mdx +3 -3
- package/corpus/core/docs/content/locales/zh-CN/pure-agent-apps.mdx +4 -0
- package/corpus/core/docs/content/locales/zh-TW/a2a-protocol.mdx +12 -0
- package/corpus/core/docs/content/locales/zh-TW/pr-visual-recap.mdx +3 -3
- package/corpus/core/docs/content/locales/zh-TW/pure-agent-apps.mdx +4 -0
- package/corpus/core/docs/content/pr-visual-recap.mdx +3 -3
- package/corpus/core/docs/content/pure-agent-apps.mdx +22 -0
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/agent/engine/builtin.ts +1 -1
- package/corpus/core/src/agent/model-config.ts +30 -30
- package/corpus/core/src/agent/production-agent.ts +129 -7
- package/corpus/core/src/cli/design-connect.ts +438 -83
- package/corpus/core/src/cli/recap.ts +2 -2
- package/corpus/core/src/client/AgentPanel.tsx +8 -1
- package/corpus/core/src/client/agent-chat-adapter.ts +12 -7
- package/corpus/core/src/client/composer/TiptapComposer.tsx +1 -1
- package/corpus/core/src/client/index.ts +4 -0
- package/corpus/core/src/client/org/TeamPage.tsx +41 -26
- package/corpus/core/src/client/use-action.ts +113 -1
- package/corpus/core/src/db/client.ts +12 -2
- package/corpus/core/src/db/create-get-db.ts +4 -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/transcribe-voice.ts +1 -1
- package/corpus/core/src/usage/store.ts +13 -4
- package/corpus/core/src/vite/client.ts +38 -1
- package/corpus/templates/analytics/AGENTS.md +3 -0
- package/corpus/templates/analytics/actions/get-data-program.ts +78 -0
- package/corpus/templates/analytics/actions/list-data-programs.ts +49 -0
- package/corpus/templates/analytics/app/global.css +11 -0
- package/corpus/templates/analytics/app/hooks/use-dashboard-chat-context.ts +163 -17
- package/corpus/templates/analytics/app/i18n/zh-TW.ts +2 -0
- package/corpus/templates/analytics/app/i18n-data.ts +20 -0
- package/corpus/templates/analytics/app/pages/adhoc/explorer-dashboard/ChartCard.tsx +96 -3
- package/corpus/templates/analytics/app/pages/adhoc/explorer-dashboard/index.tsx +3 -1
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/SqlChartCard.tsx +61 -4
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/index.tsx +40 -2
- package/corpus/templates/analytics/changelog/2026-07-09-analytics-no-longer-forgets-successful-data-queries-when-a-l.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-09-dashboard-charts-keep-consistent-spacing-when-they-stack-ver.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-09-dashboard-charts-tables-and-extensions-can-be-selected-and-d.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-09-long-running-analytics-requests-now-recover-automatically-wh.md +6 -0
- package/corpus/templates/analytics/server/db/index.ts +6 -0
- package/corpus/templates/clips/desktop/src/hooks/useMeetingTranscription.ts +1 -7
- package/corpus/templates/content/app/components/editor/DocumentProperties.tsx +102 -15
- package/corpus/templates/content/app/hooks/use-content-database.ts +52 -0
- package/corpus/templates/content/app/hooks/use-document-properties.ts +50 -6
- package/corpus/templates/content/app/i18n/zh-TW.ts +2 -0
- package/corpus/templates/content/app/i18n-data.ts +28 -0
- package/corpus/templates/content/changelog/2026-07-09-notion-conflict-warnings-no-longer-flash-during-normal-synce.md +6 -0
- package/corpus/templates/content/changelog/2026-07-09-property-menus-and-delete-confirmations-now-open-visibly-and.md +6 -0
- package/corpus/templates/content/server/lib/notion-sync.ts +130 -28
- package/corpus/templates/design/actions/add-breakpoint.ts +48 -68
- package/corpus/templates/design/actions/add-localhost-screens.ts +496 -61
- package/corpus/templates/design/actions/apply-component-prop-edit.ts +2 -18
- package/corpus/templates/design/actions/apply-design-token-edit.ts +51 -82
- package/corpus/templates/design/actions/apply-tweaks.ts +63 -41
- package/corpus/templates/design/actions/capture-design-state.ts +2 -2
- package/corpus/templates/design/actions/connect-localhost.ts +58 -12
- package/corpus/templates/design/actions/create-component.ts +2 -18
- package/corpus/templates/design/actions/create-design-branch.ts +38 -18
- package/corpus/templates/design/actions/create-fusion-app.ts +15 -11
- package/corpus/templates/design/actions/delete-file.ts +19 -34
- package/corpus/templates/design/actions/deploy-design-preview.ts +59 -27
- package/corpus/templates/design/actions/deploy-fusion-app.ts +22 -15
- package/corpus/templates/design/actions/export-pdf.ts +2 -1
- package/corpus/templates/design/actions/export-zip.ts +9 -3
- package/corpus/templates/design/actions/generate-design.ts +107 -70
- package/corpus/templates/design/actions/get-component-details.ts +2 -18
- package/corpus/templates/design/actions/get-design-branch-diff.ts +2 -3
- package/corpus/templates/design/actions/get-design-surface-index.ts +2 -18
- package/corpus/templates/design/actions/get-design.ts +2 -1
- package/corpus/templates/design/actions/grant-localhost-write-consent.ts +7 -1
- package/corpus/templates/design/actions/import-design-tokens.ts +114 -76
- package/corpus/templates/design/actions/index-components.ts +2 -18
- package/corpus/templates/design/actions/list-design-source-capabilities.ts +23 -28
- package/corpus/templates/design/actions/list-local-files.ts +9 -2
- package/corpus/templates/design/actions/migrate-board-objects-to-file.ts +82 -98
- package/corpus/templates/design/actions/open-component-source.ts +2 -18
- package/corpus/templates/design/actions/open-visual-edit.ts +19 -1
- package/corpus/templates/design/actions/present-design-variants.ts +70 -70
- package/corpus/templates/design/actions/preview-component-prop-edit.ts +4 -14
- package/corpus/templates/design/actions/read-local-file.ts +9 -2
- package/corpus/templates/design/actions/remove-breakpoint.ts +40 -61
- package/corpus/templates/design/actions/rename-screen.ts +425 -0
- package/corpus/templates/design/actions/request-localhost-write-consent.ts +12 -2
- package/corpus/templates/design/actions/revoke-localhost-write-consent.ts +9 -2
- package/corpus/templates/design/actions/sync-fusion-app.ts +56 -39
- package/corpus/templates/design/actions/update-design.ts +376 -61
- package/corpus/templates/design/actions/update-file.ts +455 -188
- package/corpus/templates/design/actions/write-local-file.ts +10 -2
- package/corpus/templates/design/app/components/design/DesignCanvas.tsx +685 -608
- package/corpus/templates/design/app/components/design/LayersPanel.tsx +43 -15
- package/corpus/templates/design/app/components/design/MultiScreenCanvas.tsx +576 -2015
- package/corpus/templates/design/app/components/design/bridge/editor-chrome.bridge.ts +62 -14
- package/corpus/templates/design/app/components/design/bridge/embedded-wheel.bridge.ts +263 -25
- package/corpus/templates/design/app/components/design/design-canvas/annotation-submit.ts +34 -0
- package/corpus/templates/design/app/components/design/design-canvas/coordinate-transforms.ts +40 -0
- package/corpus/templates/design/app/components/design/design-canvas/creation.ts +47 -0
- package/corpus/templates/design/app/components/design/design-canvas/element-payload.ts +27 -0
- package/corpus/templates/design/app/components/design/design-canvas/embedded-frame.ts +62 -0
- package/corpus/templates/design/app/components/design/design-canvas/external-preview.ts +137 -0
- package/corpus/templates/design/app/components/design/design-canvas/file-drop.ts +10 -0
- package/corpus/templates/design/app/components/design/design-canvas/hit-test.ts +23 -0
- package/corpus/templates/design/app/components/design/design-canvas/iframe-events.ts +23 -0
- package/corpus/templates/design/app/components/design/design-canvas/iframe-pan.ts +177 -0
- package/corpus/templates/design/app/components/design/design-canvas/motion-types.ts +7 -0
- package/corpus/templates/design/app/components/design/design-canvas/pending-text-edit.ts +62 -0
- package/corpus/templates/design/app/components/design/index.ts +2 -2
- package/corpus/templates/design/app/components/design/multi-screen/canvas-tools.ts +100 -0
- package/corpus/templates/design/app/components/design/multi-screen/coordinate-transforms.ts +81 -0
- package/corpus/templates/design/app/components/design/multi-screen/cross-screen-drop.ts +23 -13
- package/corpus/templates/design/app/components/design/multi-screen/culling.ts +238 -19
- package/corpus/templates/design/app/components/design/multi-screen/draft-primitives.ts +424 -0
- package/corpus/templates/design/app/components/design/multi-screen/frame-geometry.ts +341 -0
- package/corpus/templates/design/app/components/design/multi-screen/iframe-targeting.ts +52 -0
- package/corpus/templates/design/app/components/design/multi-screen/overview-layout.ts +62 -0
- package/corpus/templates/design/app/components/design/multi-screen/primitive-drop-target.ts +283 -0
- package/corpus/templates/design/app/components/design/multi-screen/screen-content-cache.ts +272 -0
- package/corpus/templates/design/app/components/design/multi-screen/types.ts +5 -1
- package/corpus/templates/design/app/components/design/multi-screen/wheel-gesture-state.ts +12 -0
- package/corpus/templates/design/app/components/visual-editor/DrawOverlay.tsx +325 -84
- package/corpus/templates/design/app/hooks/use-navigation-state.ts +15 -1
- package/corpus/templates/design/app/hooks/useDesignHotkeys.ts +119 -47
- package/corpus/templates/design/app/i18n/zh-TW.ts +9 -0
- package/corpus/templates/design/app/i18n-data.ts +223 -0
- package/corpus/templates/design/app/lib/design-save-outbox.ts +379 -0
- package/corpus/templates/design/app/lib/png-clipboard.ts +113 -0
- package/corpus/templates/design/app/pages/design-editor/canvas-primitives.ts +229 -0
- package/corpus/templates/design/app/pages/design-editor/code-layer-state.ts +918 -0
- package/corpus/templates/design/app/pages/design-editor/collab-sync.ts +43 -0
- package/corpus/templates/design/app/pages/design-editor/cross-screen-text-color.ts +336 -0
- package/corpus/templates/design/app/pages/design-editor/data-operations.ts +270 -0
- package/corpus/templates/design/app/pages/design-editor/dom-guards.ts +24 -0
- package/corpus/templates/design/app/pages/design-editor/dom-utils.ts +11 -0
- package/corpus/templates/design/app/pages/design-editor/editor-session.ts +20 -0
- package/corpus/templates/design/app/pages/design-editor/editor-state.ts +408 -0
- package/corpus/templates/design/app/pages/design-editor/export-capture.ts +115 -0
- package/corpus/templates/design/app/pages/design-editor/geometry-persistence.ts +93 -0
- package/corpus/templates/design/app/pages/design-editor/history.ts +169 -0
- package/corpus/templates/design/app/pages/design-editor/layout-operations.ts +185 -0
- package/corpus/templates/design/app/pages/design-editor/motion-state.ts +309 -0
- package/corpus/templates/design/app/pages/design-editor/overview-camera.ts +438 -0
- package/corpus/templates/design/app/pages/design-editor/pending-edits.ts +510 -0
- package/corpus/templates/design/app/pages/design-editor/portable-style.ts +115 -0
- package/corpus/templates/design/app/pages/design-editor/selection-state.ts +337 -0
- package/corpus/templates/design/app/pages/design-editor/style-utils.ts +5 -0
- package/corpus/templates/design/app/pages/design-editor/tool-state.ts +92 -0
- package/corpus/templates/design/app/pages/design-editor/tweak-save.ts +87 -0
- package/corpus/templates/design/app/pages/design-editor/types.ts +36 -0
- package/corpus/templates/design/app/routes/design.$id.tsx +11 -1
- package/corpus/templates/design/changelog/2026-07-09-design-edits-canvas-positions-tools-and-tab-context-now-pers.md +6 -0
- package/corpus/templates/design/changelog/2026-07-09-figma-style-shortcuts-drawing-annotations-and-cross-screen-d.md +6 -0
- package/corpus/templates/design/changelog/2026-07-09-hand-and-scale-tools-now-keep-their-active-toolbar-identity-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-09-large-multi-screen-designs-now-stay-responsive-during-long-c.md +6 -0
- package/corpus/templates/design/changelog/2026-07-09-layer-drags-now-land-exactly-where-the-insertion-indicator-s.md +6 -0
- package/corpus/templates/design/server/db/index.ts +2 -52
- package/corpus/templates/design/server/db/schema.ts +16 -0
- package/corpus/templates/design/server/lib/design-data-access.ts +70 -0
- package/corpus/templates/design/server/lib/design-data-mutation.ts +249 -0
- package/corpus/templates/design/server/lib/fusion-screens.ts +89 -76
- package/corpus/templates/design/server/lib/import-design-files.ts +76 -35
- package/corpus/templates/design/server/lib/verify-write-grant.ts +7 -2
- package/corpus/templates/design/server/plugins/db.ts +19 -0
- package/corpus/templates/design/server/source-workspace.ts +12 -13
- package/corpus/templates/design/shared/resolve-tweaks.ts +15 -0
- package/corpus/templates/design/shared/screen-rename.ts +42 -0
- package/corpus/templates/design/shared/source-mode.ts +84 -4
- package/dist/agent/engine/builder-engine.d.ts +1 -1
- 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/model-config.d.ts +9 -9
- package/dist/agent/model-config.d.ts.map +1 -1
- package/dist/agent/model-config.js +30 -30
- package/dist/agent/model-config.js.map +1 -1
- package/dist/agent/production-agent.d.ts +60 -1
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +106 -7
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/cli/design-connect.d.ts +30 -1
- package/dist/cli/design-connect.d.ts.map +1 -1
- package/dist/cli/design-connect.js +359 -75
- package/dist/cli/design-connect.js.map +1 -1
- package/dist/cli/recap.js +2 -2
- package/dist/cli/recap.js.map +1 -1
- package/dist/client/AgentPanel.d.ts.map +1 -1
- package/dist/client/AgentPanel.js +6 -1
- package/dist/client/AgentPanel.js.map +1 -1
- package/dist/client/agent-chat-adapter.d.ts.map +1 -1
- package/dist/client/agent-chat-adapter.js +10 -5
- package/dist/client/agent-chat-adapter.js.map +1 -1
- package/dist/client/composer/TiptapComposer.js +1 -1
- package/dist/client/composer/TiptapComposer.js.map +1 -1
- package/dist/client/index.d.ts +1 -1
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +1 -1
- package/dist/client/index.js.map +1 -1
- package/dist/client/org/TeamPage.d.ts.map +1 -1
- package/dist/client/org/TeamPage.js +6 -5
- package/dist/client/org/TeamPage.js.map +1 -1
- package/dist/client/use-action.d.ts +32 -0
- package/dist/client/use-action.d.ts.map +1 -1
- package/dist/client/use-action.js +68 -1
- package/dist/client/use-action.js.map +1 -1
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/db/client.d.ts +3 -0
- package/dist/db/client.d.ts.map +1 -1
- package/dist/db/client.js +7 -2
- package/dist/db/client.js.map +1 -1
- package/dist/db/create-get-db.d.ts.map +1 -1
- package/dist/db/create-get-db.js +2 -2
- package/dist/db/create-get-db.js.map +1 -1
- package/dist/notifications/routes.d.ts +3 -3
- package/dist/resources/handlers.d.ts +2 -2
- 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-engine-api-key-route.d.ts +1 -1
- package/dist/server/transcribe-voice.js +1 -1
- package/dist/server/transcribe-voice.js.map +1 -1
- package/dist/usage/store.d.ts.map +1 -1
- package/dist/usage/store.js +13 -4
- package/dist/usage/store.js.map +1 -1
- package/dist/vite/client.d.ts.map +1 -1
- package/dist/vite/client.js +36 -1
- package/dist/vite/client.js.map +1 -1
- package/docs/content/a2a-protocol.mdx +12 -0
- package/docs/content/locales/ar-SA/a2a-protocol.mdx +12 -0
- package/docs/content/locales/ar-SA/pr-visual-recap.mdx +3 -3
- package/docs/content/locales/ar-SA/pure-agent-apps.mdx +4 -0
- package/docs/content/locales/de-DE/a2a-protocol.mdx +12 -0
- package/docs/content/locales/de-DE/pr-visual-recap.mdx +3 -3
- package/docs/content/locales/de-DE/pure-agent-apps.mdx +4 -0
- package/docs/content/locales/es-ES/a2a-protocol.mdx +12 -0
- package/docs/content/locales/es-ES/pr-visual-recap.mdx +3 -3
- package/docs/content/locales/es-ES/pure-agent-apps.mdx +4 -0
- package/docs/content/locales/fr-FR/a2a-protocol.mdx +12 -0
- package/docs/content/locales/fr-FR/pr-visual-recap.mdx +3 -3
- package/docs/content/locales/fr-FR/pure-agent-apps.mdx +4 -0
- package/docs/content/locales/hi-IN/a2a-protocol.mdx +12 -0
- package/docs/content/locales/hi-IN/pr-visual-recap.mdx +3 -3
- package/docs/content/locales/hi-IN/pure-agent-apps.mdx +4 -0
- package/docs/content/locales/ja-JP/a2a-protocol.mdx +12 -0
- package/docs/content/locales/ja-JP/pr-visual-recap.mdx +3 -3
- package/docs/content/locales/ja-JP/pure-agent-apps.mdx +4 -0
- package/docs/content/locales/ko-KR/a2a-protocol.mdx +12 -0
- package/docs/content/locales/ko-KR/pr-visual-recap.mdx +3 -3
- package/docs/content/locales/ko-KR/pure-agent-apps.mdx +4 -0
- package/docs/content/locales/pt-BR/a2a-protocol.mdx +12 -0
- package/docs/content/locales/pt-BR/pr-visual-recap.mdx +3 -3
- package/docs/content/locales/pt-BR/pure-agent-apps.mdx +4 -0
- package/docs/content/locales/zh-CN/a2a-protocol.mdx +12 -0
- package/docs/content/locales/zh-CN/pr-visual-recap.mdx +3 -3
- package/docs/content/locales/zh-CN/pure-agent-apps.mdx +4 -0
- package/docs/content/locales/zh-TW/a2a-protocol.mdx +12 -0
- package/docs/content/locales/zh-TW/pr-visual-recap.mdx +3 -3
- package/docs/content/locales/zh-TW/pure-agent-apps.mdx +4 -0
- package/docs/content/pr-visual-recap.mdx +3 -3
- package/docs/content/pure-agent-apps.mdx +22 -0
- package/package.json +2 -2
|
@@ -639,6 +639,8 @@ const enUS = {
|
|
|
639
639
|
"agent-structural-edit": "Agent needed for structural move",
|
|
640
640
|
},
|
|
641
641
|
toasts: {
|
|
642
|
+
annotationSendError:
|
|
643
|
+
"Could not send annotations. Your drawing is still here—try again.",
|
|
642
644
|
codingHandoffError: "Could not create agent handoff",
|
|
643
645
|
codingHandoffCopied: "Agent prompt copied",
|
|
644
646
|
clipboardBlocked: "Clipboard blocked",
|
|
@@ -651,6 +653,15 @@ const enUS = {
|
|
|
651
653
|
openScreenPng: "Open a screen before exporting PNG",
|
|
652
654
|
pngCreateError: "Could not create PNG download",
|
|
653
655
|
pngDownloaded: "PNG downloaded",
|
|
656
|
+
pngCopied: "PNG copied to clipboard",
|
|
657
|
+
pngClipboardUnsupported:
|
|
658
|
+
"This browser can't copy PNG images to the clipboard",
|
|
659
|
+
pngClipboardBlocked: "Allow clipboard access to copy this PNG",
|
|
660
|
+
pngClipboardWriteError: "Could not copy PNG to the clipboard",
|
|
661
|
+
pngLivePreviewUnavailable:
|
|
662
|
+
"PNG capture isn't available for URL-backed screens yet",
|
|
663
|
+
pngReadOnlyUnavailable:
|
|
664
|
+
"PNG capture isn't available in read-only previews",
|
|
654
665
|
pngSaveError: "Could not save PNG",
|
|
655
666
|
pngExportError: "Could not export PNG",
|
|
656
667
|
openScreenSvg: "Open a screen before exporting SVG",
|
|
@@ -673,6 +684,10 @@ const enUS = {
|
|
|
673
684
|
auditRunFailed: "Unable to run design audit",
|
|
674
685
|
componentCreated: "Component created",
|
|
675
686
|
componentCreateFailed: "Could not create component",
|
|
687
|
+
tweakConflict:
|
|
688
|
+
"Tweaks changed elsewhere. Refresh the design before trying again.",
|
|
689
|
+
tweakSaveNotDurable:
|
|
690
|
+
"Tweaks aren't saved yet. Keep this tab open and try again.",
|
|
676
691
|
undoSkippedConcurrentEdit: "Skipped an undo — someone else moved that",
|
|
677
692
|
redoSkippedConcurrentEdit: "Skipped a redo — someone else moved that",
|
|
678
693
|
autoLayoutScreensUnsupported: "Add auto layout doesn't apply to screens",
|
|
@@ -1334,6 +1349,8 @@ const designLocaleOverrides = {
|
|
|
1334
1349
|
tweaksPlaceholder: "强调选项、密度、半径、深色模式...",
|
|
1335
1350
|
designExport: "设计导出",
|
|
1336
1351
|
toasts: {
|
|
1352
|
+
tweakConflict: "调整已在其他位置更改。请刷新设计后再试。",
|
|
1353
|
+
tweakSaveNotDurable: "调整尚未保存。请保持此标签页打开并重试。",
|
|
1337
1354
|
codingHandoffError: "无法创建编码切换",
|
|
1338
1355
|
codingHandoffCopied: "复制编码交接",
|
|
1339
1356
|
clipboardBlocked: "剪贴板被阻止",
|
|
@@ -1695,6 +1712,10 @@ const designLocaleOverrides = {
|
|
|
1695
1712
|
tweaksPlaceholder: "Opciones de acento, densidad, radio, modo oscuro...",
|
|
1696
1713
|
designExport: "Exportación de diseño",
|
|
1697
1714
|
toasts: {
|
|
1715
|
+
tweakConflict:
|
|
1716
|
+
"Los ajustes cambiaron en otro lugar. Actualiza el diseño antes de volver a intentarlo.",
|
|
1717
|
+
tweakSaveNotDurable:
|
|
1718
|
+
"Los ajustes aún no se han guardado. Mantén esta pestaña abierta y vuelve a intentarlo.",
|
|
1698
1719
|
codingHandoffError: "No se pudo crear la transferencia de codificación",
|
|
1699
1720
|
codingHandoffCopied: "Transferencia de codificación copiada",
|
|
1700
1721
|
clipboardBlocked: "Portapapeles bloqueado",
|
|
@@ -2076,6 +2097,10 @@ const designLocaleOverrides = {
|
|
|
2076
2097
|
"Options d'accentuation, densité, rayon, mode sombre...",
|
|
2077
2098
|
designExport: "Exportation de conception",
|
|
2078
2099
|
toasts: {
|
|
2100
|
+
tweakConflict:
|
|
2101
|
+
"Les réglages ont été modifiés ailleurs. Actualisez le design avant de réessayer.",
|
|
2102
|
+
tweakSaveNotDurable:
|
|
2103
|
+
"Les réglages ne sont pas encore enregistrés. Gardez cet onglet ouvert et réessayez.",
|
|
2079
2104
|
codingHandoffError: "Impossible de créer un transfert de codage",
|
|
2080
2105
|
codingHandoffCopied: "Transfert de codage copié",
|
|
2081
2106
|
clipboardBlocked: "Presse-papiers bloqué",
|
|
@@ -2458,6 +2483,10 @@ const designLocaleOverrides = {
|
|
|
2458
2483
|
tweaksPlaceholder: "Akzentoptionen, Dichte, Radius, Dunkelmodus...",
|
|
2459
2484
|
designExport: "Design-Export",
|
|
2460
2485
|
toasts: {
|
|
2486
|
+
tweakConflict:
|
|
2487
|
+
"Die Anpassungen wurden an anderer Stelle geändert. Aktualisieren Sie das Design, bevor Sie es erneut versuchen.",
|
|
2488
|
+
tweakSaveNotDurable:
|
|
2489
|
+
"Die Anpassungen sind noch nicht gespeichert. Lassen Sie diesen Tab geöffnet und versuchen Sie es erneut.",
|
|
2461
2490
|
codingHandoffError:
|
|
2462
2491
|
"Die Codierungsübergabe konnte nicht erstellt werden",
|
|
2463
2492
|
codingHandoffCopied: "Codierungsübergabe kopiert",
|
|
@@ -2842,6 +2871,10 @@ const designLocaleOverrides = {
|
|
|
2842
2871
|
tweaksPlaceholder: "アクセントのオプション、密度、半径、ダークモード...",
|
|
2843
2872
|
designExport: "デザインのエクスポート",
|
|
2844
2873
|
toasts: {
|
|
2874
|
+
tweakConflict:
|
|
2875
|
+
"調整内容が別の場所で変更されました。デザインを更新してからもう一度お試しください。",
|
|
2876
|
+
tweakSaveNotDurable:
|
|
2877
|
+
"調整内容はまだ保存されていません。このタブを開いたまま、もう一度お試しください。",
|
|
2845
2878
|
codingHandoffError: "コーディングハンドオフを作成できませんでした",
|
|
2846
2879
|
codingHandoffCopied: "コーディングの引き継ぎがコピーされました",
|
|
2847
2880
|
clipboardBlocked: "クリップボードがブロックされました",
|
|
@@ -3220,6 +3253,10 @@ const designLocaleOverrides = {
|
|
|
3220
3253
|
tweaksPlaceholder: "악센트 옵션, 밀도, 반경, 다크 모드...",
|
|
3221
3254
|
designExport: "디자인 수출",
|
|
3222
3255
|
toasts: {
|
|
3256
|
+
tweakConflict:
|
|
3257
|
+
"조정 값이 다른 곳에서 변경되었습니다. 디자인을 새로고침한 후 다시 시도하세요.",
|
|
3258
|
+
tweakSaveNotDurable:
|
|
3259
|
+
"조정 값이 아직 저장되지 않았습니다. 이 탭을 열어 둔 채 다시 시도하세요.",
|
|
3223
3260
|
codingHandoffError: "코딩 핸드오프를 생성할 수 없습니다.",
|
|
3224
3261
|
codingHandoffCopied: "코딩 핸드오프가 복사되었습니다.",
|
|
3225
3262
|
clipboardBlocked: "클립보드가 차단되었습니다.",
|
|
@@ -3592,6 +3629,10 @@ const designLocaleOverrides = {
|
|
|
3592
3629
|
tweaksPlaceholder: "Opções de destaque, densidade, raio, modo escuro...",
|
|
3593
3630
|
designExport: "Exportação de projetos",
|
|
3594
3631
|
toasts: {
|
|
3632
|
+
tweakConflict:
|
|
3633
|
+
"Os ajustes foram alterados em outro lugar. Atualize o design antes de tentar novamente.",
|
|
3634
|
+
tweakSaveNotDurable:
|
|
3635
|
+
"Os ajustes ainda não foram salvos. Mantenha esta aba aberta e tente novamente.",
|
|
3595
3636
|
codingHandoffError:
|
|
3596
3637
|
"Não foi possível criar a transferência de codificação",
|
|
3597
3638
|
codingHandoffCopied: "Transferência de codificação copiada",
|
|
@@ -3970,6 +4011,10 @@ const designLocaleOverrides = {
|
|
|
3970
4011
|
tweaksPlaceholder: "एक्सेंट विकल्प, घनत्व, त्रिज्या, डार्क मोड...",
|
|
3971
4012
|
designExport: "डिज़ाइन निर्यात",
|
|
3972
4013
|
toasts: {
|
|
4014
|
+
tweakConflict:
|
|
4015
|
+
"बदलाव कहीं और बदल दिए गए हैं। फिर से कोशिश करने से पहले डिज़ाइन रीफ़्रेश करें।",
|
|
4016
|
+
tweakSaveNotDurable:
|
|
4017
|
+
"बदलाव अभी सहेजे नहीं गए हैं। इस टैब को खुला रखें और फिर से कोशिश करें।",
|
|
3973
4018
|
codingHandoffError: "कोडिंग हैंडऑफ़ नहीं बनाया जा सका",
|
|
3974
4019
|
codingHandoffCopied: "कोडिंग हैंडऑफ़ कॉपी किया गया",
|
|
3975
4020
|
clipboardBlocked: "क्लिपबोर्ड अवरुद्ध",
|
|
@@ -4340,6 +4385,10 @@ const designLocaleOverrides = {
|
|
|
4340
4385
|
tweaksPlaceholder: "خيارات اللكنة والكثافة ونصف القطر والوضع المظلم...",
|
|
4341
4386
|
designExport: "تصدير التصميم",
|
|
4342
4387
|
toasts: {
|
|
4388
|
+
tweakConflict:
|
|
4389
|
+
"تم تغيير التعديلات في مكان آخر. حدّث التصميم قبل المحاولة مرة أخرى.",
|
|
4390
|
+
tweakSaveNotDurable:
|
|
4391
|
+
"لم يتم حفظ التعديلات بعد. أبقِ علامة التبويب هذه مفتوحة وحاول مرة أخرى.",
|
|
4343
4392
|
codingHandoffError: "تعذر إنشاء عملية تسليم الترميز",
|
|
4344
4393
|
codingHandoffCopied: "تم نسخ عملية تسليم الترميز",
|
|
4345
4394
|
clipboardBlocked: "تم حظر الحافظة",
|
|
@@ -5989,6 +6038,12 @@ const designExactEnglishOverrides = {
|
|
|
5989
6038
|
openScreenSvg: "导出 SVG 前请先打开一个屏幕",
|
|
5990
6039
|
pngCreateError: "无法创建 PNG 下载",
|
|
5991
6040
|
pngDownloaded: "PNG 已下载",
|
|
6041
|
+
pngCopied: "PNG 已复制到剪贴板",
|
|
6042
|
+
pngClipboardUnsupported: "此浏览器无法将 PNG 图像复制到剪贴板",
|
|
6043
|
+
pngClipboardBlocked: "请允许访问剪贴板以复制此 PNG",
|
|
6044
|
+
pngClipboardWriteError: "无法将 PNG 复制到剪贴板",
|
|
6045
|
+
pngLivePreviewUnavailable: "URL 支持的屏幕暂不支持 PNG 捕获",
|
|
6046
|
+
pngReadOnlyUnavailable: "只读预览不支持 PNG 捕获",
|
|
5992
6047
|
pngExportError: "无法导出 PNG",
|
|
5993
6048
|
pngSaveError: "无法保存 PNG",
|
|
5994
6049
|
svgDownloaded: "SVG 已下载",
|
|
@@ -6065,6 +6120,16 @@ const designExactEnglishOverrides = {
|
|
|
6065
6120
|
openScreenSvg: "Abre una pantalla antes de exportar SVG",
|
|
6066
6121
|
pngCreateError: "No se pudo crear la descarga PNG",
|
|
6067
6122
|
pngDownloaded: "PNG descargado",
|
|
6123
|
+
pngCopied: "PNG copiado al portapapeles",
|
|
6124
|
+
pngClipboardUnsupported:
|
|
6125
|
+
"Este navegador no puede copiar imágenes PNG al portapapeles",
|
|
6126
|
+
pngClipboardBlocked:
|
|
6127
|
+
"Permite el acceso al portapapeles para copiar este PNG",
|
|
6128
|
+
pngClipboardWriteError: "No se pudo copiar el PNG al portapapeles",
|
|
6129
|
+
pngLivePreviewUnavailable:
|
|
6130
|
+
"La captura PNG aún no está disponible para pantallas basadas en URL",
|
|
6131
|
+
pngReadOnlyUnavailable:
|
|
6132
|
+
"La captura PNG no está disponible en vistas previas de solo lectura",
|
|
6068
6133
|
pngExportError: "No se pudo exportar PNG",
|
|
6069
6134
|
pngSaveError: "No se pudo guardar PNG",
|
|
6070
6135
|
svgDownloaded: "SVG descargado",
|
|
@@ -6142,6 +6207,17 @@ const designExactEnglishOverrides = {
|
|
|
6142
6207
|
openScreenSvg: "Ouvrez un écran avant d’exporter SVG",
|
|
6143
6208
|
pngCreateError: "Impossible de créer le téléchargement PNG",
|
|
6144
6209
|
pngDownloaded: "PNG téléchargé",
|
|
6210
|
+
pngCopied: "PNG copié dans le presse-papiers",
|
|
6211
|
+
pngClipboardUnsupported:
|
|
6212
|
+
"Ce navigateur ne peut pas copier d’images PNG dans le presse-papiers",
|
|
6213
|
+
pngClipboardBlocked:
|
|
6214
|
+
"Autorisez l’accès au presse-papiers pour copier ce PNG",
|
|
6215
|
+
pngClipboardWriteError:
|
|
6216
|
+
"Impossible de copier le PNG dans le presse-papiers",
|
|
6217
|
+
pngLivePreviewUnavailable:
|
|
6218
|
+
"La capture PNG n’est pas encore disponible pour les écrans basés sur une URL",
|
|
6219
|
+
pngReadOnlyUnavailable:
|
|
6220
|
+
"La capture PNG n’est pas disponible dans les aperçus en lecture seule",
|
|
6145
6221
|
pngExportError: "Impossible d’exporter PNG",
|
|
6146
6222
|
pngSaveError: "Impossible d’enregistrer PNG",
|
|
6147
6223
|
svgDownloaded: "SVG téléchargé",
|
|
@@ -6219,6 +6295,17 @@ const designExactEnglishOverrides = {
|
|
|
6219
6295
|
openScreenSvg: "Öffnen Sie vor dem SVG-Export einen Bildschirm",
|
|
6220
6296
|
pngCreateError: "PNG-Download konnte nicht erstellt werden",
|
|
6221
6297
|
pngDownloaded: "PNG heruntergeladen",
|
|
6298
|
+
pngCopied: "PNG in die Zwischenablage kopiert",
|
|
6299
|
+
pngClipboardUnsupported:
|
|
6300
|
+
"Dieser Browser kann PNG-Bilder nicht in die Zwischenablage kopieren",
|
|
6301
|
+
pngClipboardBlocked:
|
|
6302
|
+
"Erlauben Sie den Zugriff auf die Zwischenablage, um dieses PNG zu kopieren",
|
|
6303
|
+
pngClipboardWriteError:
|
|
6304
|
+
"PNG konnte nicht in die Zwischenablage kopiert werden",
|
|
6305
|
+
pngLivePreviewUnavailable:
|
|
6306
|
+
"PNG-Aufnahmen sind für URL-basierte Bildschirme noch nicht verfügbar",
|
|
6307
|
+
pngReadOnlyUnavailable:
|
|
6308
|
+
"PNG-Aufnahmen sind in schreibgeschützten Vorschauen nicht verfügbar",
|
|
6222
6309
|
pngExportError: "PNG konnte nicht exportiert werden",
|
|
6223
6310
|
pngSaveError: "PNG konnte nicht gespeichert werden",
|
|
6224
6311
|
svgDownloaded: "SVG heruntergeladen",
|
|
@@ -6296,6 +6383,16 @@ const designExactEnglishOverrides = {
|
|
|
6296
6383
|
openScreenSvg: "SVG をエクスポートする前に画面を開いてください",
|
|
6297
6384
|
pngCreateError: "PNG ダウンロードを作成できませんでした",
|
|
6298
6385
|
pngDownloaded: "PNG をダウンロードしました",
|
|
6386
|
+
pngCopied: "PNG をクリップボードにコピーしました",
|
|
6387
|
+
pngClipboardUnsupported:
|
|
6388
|
+
"このブラウザでは PNG 画像をクリップボードにコピーできません",
|
|
6389
|
+
pngClipboardBlocked:
|
|
6390
|
+
"この PNG をコピーするにはクリップボードへのアクセスを許可してください",
|
|
6391
|
+
pngClipboardWriteError: "PNG をクリップボードにコピーできませんでした",
|
|
6392
|
+
pngLivePreviewUnavailable:
|
|
6393
|
+
"URL ベースの画面では PNG キャプチャをまだ利用できません",
|
|
6394
|
+
pngReadOnlyUnavailable:
|
|
6395
|
+
"読み取り専用プレビューでは PNG キャプチャを利用できません",
|
|
6299
6396
|
pngExportError: "PNG をエクスポートできませんでした",
|
|
6300
6397
|
pngSaveError: "PNG を保存できませんでした",
|
|
6301
6398
|
svgDownloaded: "SVG をダウンロードしました",
|
|
@@ -6372,6 +6469,15 @@ const designExactEnglishOverrides = {
|
|
|
6372
6469
|
openScreenSvg: "SVG를 내보내기 전에 화면을 여세요",
|
|
6373
6470
|
pngCreateError: "PNG 다운로드를 만들 수 없음",
|
|
6374
6471
|
pngDownloaded: "PNG 다운로드됨",
|
|
6472
|
+
pngCopied: "PNG가 클립보드에 복사됨",
|
|
6473
|
+
pngClipboardUnsupported:
|
|
6474
|
+
"이 브라우저에서는 PNG 이미지를 클립보드에 복사할 수 없음",
|
|
6475
|
+
pngClipboardBlocked: "이 PNG를 복사하려면 클립보드 접근을 허용하세요",
|
|
6476
|
+
pngClipboardWriteError: "PNG를 클립보드에 복사할 수 없음",
|
|
6477
|
+
pngLivePreviewUnavailable:
|
|
6478
|
+
"URL 기반 화면에서는 아직 PNG 캡처를 사용할 수 없음",
|
|
6479
|
+
pngReadOnlyUnavailable:
|
|
6480
|
+
"읽기 전용 미리보기에서는 PNG 캡처를 사용할 수 없음",
|
|
6375
6481
|
pngExportError: "PNG를 내보낼 수 없음",
|
|
6376
6482
|
pngSaveError: "PNG를 저장할 수 없음",
|
|
6377
6483
|
svgDownloaded: "SVG 다운로드됨",
|
|
@@ -6448,6 +6554,17 @@ const designExactEnglishOverrides = {
|
|
|
6448
6554
|
openScreenSvg: "Abra uma tela antes de exportar SVG",
|
|
6449
6555
|
pngCreateError: "Não foi possível criar o download PNG",
|
|
6450
6556
|
pngDownloaded: "PNG baixado",
|
|
6557
|
+
pngCopied: "PNG copiado para a área de transferência",
|
|
6558
|
+
pngClipboardUnsupported:
|
|
6559
|
+
"Este navegador não pode copiar imagens PNG para a área de transferência",
|
|
6560
|
+
pngClipboardBlocked:
|
|
6561
|
+
"Permita o acesso à área de transferência para copiar este PNG",
|
|
6562
|
+
pngClipboardWriteError:
|
|
6563
|
+
"Não foi possível copiar o PNG para a área de transferência",
|
|
6564
|
+
pngLivePreviewUnavailable:
|
|
6565
|
+
"A captura PNG ainda não está disponível para telas baseadas em URL",
|
|
6566
|
+
pngReadOnlyUnavailable:
|
|
6567
|
+
"A captura PNG não está disponível em visualizações somente leitura",
|
|
6451
6568
|
pngExportError: "Não foi possível exportar PNG",
|
|
6452
6569
|
pngSaveError: "Não foi possível salvar PNG",
|
|
6453
6570
|
svgDownloaded: "SVG baixado",
|
|
@@ -6523,6 +6640,15 @@ const designExactEnglishOverrides = {
|
|
|
6523
6640
|
openScreenSvg: "SVG निर्यात करने से पहले कोई स्क्रीन खोलें",
|
|
6524
6641
|
pngCreateError: "PNG डाउनलोड नहीं बनाया जा सका",
|
|
6525
6642
|
pngDownloaded: "PNG डाउनलोड हुआ",
|
|
6643
|
+
pngCopied: "PNG क्लिपबोर्ड पर कॉपी हुआ",
|
|
6644
|
+
pngClipboardUnsupported:
|
|
6645
|
+
"यह ब्राउज़र PNG छवियों को क्लिपबोर्ड पर कॉपी नहीं कर सकता",
|
|
6646
|
+
pngClipboardBlocked:
|
|
6647
|
+
"इस PNG को कॉपी करने के लिए क्लिपबोर्ड एक्सेस की अनुमति दें",
|
|
6648
|
+
pngClipboardWriteError: "PNG को क्लिपबोर्ड पर कॉपी नहीं किया जा सका",
|
|
6649
|
+
pngLivePreviewUnavailable:
|
|
6650
|
+
"URL-आधारित स्क्रीन के लिए PNG कैप्चर अभी उपलब्ध नहीं है",
|
|
6651
|
+
pngReadOnlyUnavailable: "केवल-पढ़ने वाले पूर्वावलोकन में PNG कैप्चर उपलब्ध नहीं है",
|
|
6526
6652
|
pngExportError: "PNG निर्यात नहीं किया जा सका",
|
|
6527
6653
|
pngSaveError: "PNG सहेजा नहीं जा सका",
|
|
6528
6654
|
svgDownloaded: "SVG डाउनलोड हुआ",
|
|
@@ -6598,6 +6724,14 @@ const designExactEnglishOverrides = {
|
|
|
6598
6724
|
openScreenSvg: "افتح شاشة قبل تصدير SVG",
|
|
6599
6725
|
pngCreateError: "تعذر إنشاء تنزيل PNG",
|
|
6600
6726
|
pngDownloaded: "تم تنزيل PNG",
|
|
6727
|
+
pngCopied: "تم نسخ PNG إلى الحافظة",
|
|
6728
|
+
pngClipboardUnsupported: "لا يمكن لهذا المتصفح نسخ صور PNG إلى الحافظة",
|
|
6729
|
+
pngClipboardBlocked: "اسمح بالوصول إلى الحافظة لنسخ ملف PNG هذا",
|
|
6730
|
+
pngClipboardWriteError: "تعذر نسخ PNG إلى الحافظة",
|
|
6731
|
+
pngLivePreviewUnavailable:
|
|
6732
|
+
"التقاط PNG غير متاح بعد للشاشات المستندة إلى عنوان URL",
|
|
6733
|
+
pngReadOnlyUnavailable:
|
|
6734
|
+
"التقاط PNG غير متاح في المعاينات المخصصة للقراءة فقط",
|
|
6601
6735
|
pngExportError: "تعذر تصدير PNG",
|
|
6602
6736
|
pngSaveError: "تعذر حفظ PNG",
|
|
6603
6737
|
svgDownloaded: "تم تنزيل SVG",
|
|
@@ -8406,6 +8540,7 @@ const designCanvasFeatureOverrides = {
|
|
|
8406
8540
|
"zh-TW": {
|
|
8407
8541
|
designEditor: {
|
|
8408
8542
|
toasts: {
|
|
8543
|
+
annotationSendError: "無法傳送註解。你的繪圖仍保留在這裡,請再試一次。",
|
|
8409
8544
|
propsCopied: "屬性已複製",
|
|
8410
8545
|
propsPasted: "屬性已貼上",
|
|
8411
8546
|
},
|
|
@@ -8445,6 +8580,7 @@ const designCanvasFeatureOverrides = {
|
|
|
8445
8580
|
"zh-CN": {
|
|
8446
8581
|
designEditor: {
|
|
8447
8582
|
toasts: {
|
|
8583
|
+
annotationSendError: "无法发送批注。你的绘图仍保留在这里,请重试。",
|
|
8448
8584
|
propsCopied: "属性已复制",
|
|
8449
8585
|
propsPasted: "属性已粘贴",
|
|
8450
8586
|
primitiveInsertFailed: "无法将该图层添加到画面",
|
|
@@ -8521,6 +8657,8 @@ const designCanvasFeatureOverrides = {
|
|
|
8521
8657
|
"es-ES": {
|
|
8522
8658
|
designEditor: {
|
|
8523
8659
|
toasts: {
|
|
8660
|
+
annotationSendError:
|
|
8661
|
+
"No se pudieron enviar las anotaciones. Tu dibujo sigue aquí; inténtalo de nuevo.",
|
|
8524
8662
|
propsCopied: "Propiedades copiadas",
|
|
8525
8663
|
propsPasted: "Propiedades pegadas",
|
|
8526
8664
|
primitiveInsertFailed: "No se pudo añadir esa capa a la pantalla",
|
|
@@ -8599,6 +8737,8 @@ const designCanvasFeatureOverrides = {
|
|
|
8599
8737
|
"fr-FR": {
|
|
8600
8738
|
designEditor: {
|
|
8601
8739
|
toasts: {
|
|
8740
|
+
annotationSendError:
|
|
8741
|
+
"Impossible d’envoyer les annotations. Votre dessin est toujours là ; réessayez.",
|
|
8602
8742
|
propsCopied: "Propriétés copiées",
|
|
8603
8743
|
propsPasted: "Propriétés collées",
|
|
8604
8744
|
primitiveInsertFailed: "Impossible d’ajouter ce calque à l’écran",
|
|
@@ -8677,6 +8817,8 @@ const designCanvasFeatureOverrides = {
|
|
|
8677
8817
|
"de-DE": {
|
|
8678
8818
|
designEditor: {
|
|
8679
8819
|
toasts: {
|
|
8820
|
+
annotationSendError:
|
|
8821
|
+
"Die Anmerkungen konnten nicht gesendet werden. Deine Zeichnung ist noch da – versuche es erneut.",
|
|
8680
8822
|
propsCopied: "Eigenschaften kopiert",
|
|
8681
8823
|
propsPasted: "Eigenschaften eingefügt",
|
|
8682
8824
|
primitiveInsertFailed:
|
|
@@ -8756,6 +8898,8 @@ const designCanvasFeatureOverrides = {
|
|
|
8756
8898
|
"ja-JP": {
|
|
8757
8899
|
designEditor: {
|
|
8758
8900
|
toasts: {
|
|
8901
|
+
annotationSendError:
|
|
8902
|
+
"注釈を送信できませんでした。描画はそのまま残っています。もう一度お試しください。",
|
|
8759
8903
|
propsCopied: "プロパティをコピーしました",
|
|
8760
8904
|
propsPasted: "プロパティを貼り付けました",
|
|
8761
8905
|
primitiveInsertFailed: "そのレイヤーを画面に追加できませんでした",
|
|
@@ -8833,6 +8977,8 @@ const designCanvasFeatureOverrides = {
|
|
|
8833
8977
|
"ko-KR": {
|
|
8834
8978
|
designEditor: {
|
|
8835
8979
|
toasts: {
|
|
8980
|
+
annotationSendError:
|
|
8981
|
+
"주석을 보낼 수 없습니다. 그림은 그대로 남아 있으니 다시 시도하세요.",
|
|
8836
8982
|
propsCopied: "속성이 복사됨",
|
|
8837
8983
|
propsPasted: "속성이 붙여넣어짐",
|
|
8838
8984
|
primitiveInsertFailed: "해당 레이어를 화면에 추가할 수 없습니다",
|
|
@@ -8910,6 +9056,8 @@ const designCanvasFeatureOverrides = {
|
|
|
8910
9056
|
"pt-BR": {
|
|
8911
9057
|
designEditor: {
|
|
8912
9058
|
toasts: {
|
|
9059
|
+
annotationSendError:
|
|
9060
|
+
"Não foi possível enviar as anotações. Seu desenho continua aqui; tente novamente.",
|
|
8913
9061
|
propsCopied: "Propriedades copiadas",
|
|
8914
9062
|
propsPasted: "Propriedades coladas",
|
|
8915
9063
|
primitiveInsertFailed: "Não foi possível adicionar essa camada à tela",
|
|
@@ -8988,6 +9136,8 @@ const designCanvasFeatureOverrides = {
|
|
|
8988
9136
|
"hi-IN": {
|
|
8989
9137
|
designEditor: {
|
|
8990
9138
|
toasts: {
|
|
9139
|
+
annotationSendError:
|
|
9140
|
+
"एनोटेशन नहीं भेजे जा सके। आपकी ड्रॉइंग यहीं सुरक्षित है—फिर से कोशिश करें।",
|
|
8991
9141
|
propsCopied: "गुण कॉपी किए गए",
|
|
8992
9142
|
propsPasted: "गुण चिपकाए गए",
|
|
8993
9143
|
primitiveInsertFailed: "उस परत को स्क्रीन में नहीं जोड़ा जा सका",
|
|
@@ -9065,6 +9215,8 @@ const designCanvasFeatureOverrides = {
|
|
|
9065
9215
|
"ar-SA": {
|
|
9066
9216
|
designEditor: {
|
|
9067
9217
|
toasts: {
|
|
9218
|
+
annotationSendError:
|
|
9219
|
+
"تعذّر إرسال التعليقات التوضيحية. لا يزال الرسم محفوظًا هنا، فحاول مرة أخرى.",
|
|
9068
9220
|
propsCopied: "تم نسخ الخصائص",
|
|
9069
9221
|
propsPasted: "تم لصق الخصائص",
|
|
9070
9222
|
primitiveInsertFailed: "تعذرت إضافة تلك الطبقة إلى الشاشة",
|
|
@@ -12077,6 +12229,7 @@ export const messagesByLocale = {
|
|
|
12077
12229
|
designTokenImportOverrides["zh-TW"],
|
|
12078
12230
|
designImportOverrides["zh-TW"],
|
|
12079
12231
|
designModeFeatureOverrides["zh-TW"],
|
|
12232
|
+
designCanvasFeatureOverrides["zh-TW"],
|
|
12080
12233
|
designShapeToolOverrides["zh-TW"],
|
|
12081
12234
|
designPublicShareOverrides["zh-TW"],
|
|
12082
12235
|
designVisualEditOverrides["zh-TW"],
|
|
@@ -12135,6 +12288,12 @@ export const messagesByLocale = {
|
|
|
12135
12288
|
languageDescription: "选择 Design 的界面语言。",
|
|
12136
12289
|
languageLabel: "界面语言",
|
|
12137
12290
|
},
|
|
12291
|
+
designEditor: {
|
|
12292
|
+
toasts: {
|
|
12293
|
+
tweakConflict: "微调设置已在其他位置更改。请刷新设计后重试。",
|
|
12294
|
+
tweakSaveNotDurable: "微调设置尚未保存。请保持此标签页打开并重试。",
|
|
12295
|
+
},
|
|
12296
|
+
},
|
|
12138
12297
|
pages: {
|
|
12139
12298
|
presentEmpty: "没有可演示的内容",
|
|
12140
12299
|
presentBackToEditor: "返回编辑器",
|
|
@@ -12197,6 +12356,14 @@ export const messagesByLocale = {
|
|
|
12197
12356
|
languageDescription: "Elige el idioma de la interfaz de Design.",
|
|
12198
12357
|
languageLabel: "Idioma de la interfaz",
|
|
12199
12358
|
},
|
|
12359
|
+
designEditor: {
|
|
12360
|
+
toasts: {
|
|
12361
|
+
tweakConflict:
|
|
12362
|
+
"Los ajustes cambiaron en otro lugar. Actualiza el diseño antes de intentarlo de nuevo.",
|
|
12363
|
+
tweakSaveNotDurable:
|
|
12364
|
+
"Los ajustes aún no se han guardado. Mantén esta pestaña abierta e inténtalo de nuevo.",
|
|
12365
|
+
},
|
|
12366
|
+
},
|
|
12200
12367
|
pages: {
|
|
12201
12368
|
presentEmpty: "No hay contenido para presentar",
|
|
12202
12369
|
presentBackToEditor: "Volver al editor",
|
|
@@ -12260,6 +12427,14 @@ export const messagesByLocale = {
|
|
|
12260
12427
|
languageDescription: "Choisissez la langue de l'interface de Design.",
|
|
12261
12428
|
languageLabel: "Langue de l'interface",
|
|
12262
12429
|
},
|
|
12430
|
+
designEditor: {
|
|
12431
|
+
toasts: {
|
|
12432
|
+
tweakConflict:
|
|
12433
|
+
"Les réglages ont été modifiés ailleurs. Actualisez le design avant de réessayer.",
|
|
12434
|
+
tweakSaveNotDurable:
|
|
12435
|
+
"Les réglages ne sont pas encore enregistrés. Gardez cet onglet ouvert et réessayez.",
|
|
12436
|
+
},
|
|
12437
|
+
},
|
|
12263
12438
|
pages: {
|
|
12264
12439
|
presentEmpty: "Aucun contenu à présenter",
|
|
12265
12440
|
presentBackToEditor: "Retour à l’éditeur",
|
|
@@ -12323,6 +12498,14 @@ export const messagesByLocale = {
|
|
|
12323
12498
|
languageDescription: "Wähle die Oberflächensprache für Design.",
|
|
12324
12499
|
languageLabel: "Oberflächensprache",
|
|
12325
12500
|
},
|
|
12501
|
+
designEditor: {
|
|
12502
|
+
toasts: {
|
|
12503
|
+
tweakConflict:
|
|
12504
|
+
"Die Anpassungen wurden an anderer Stelle geändert. Aktualisiere das Design, bevor du es erneut versuchst.",
|
|
12505
|
+
tweakSaveNotDurable:
|
|
12506
|
+
"Die Anpassungen sind noch nicht gespeichert. Lass diesen Tab geöffnet und versuche es erneut.",
|
|
12507
|
+
},
|
|
12508
|
+
},
|
|
12326
12509
|
pages: {
|
|
12327
12510
|
presentEmpty: "Keine Inhalte zum Präsentieren",
|
|
12328
12511
|
presentBackToEditor: "Zurück zum Editor",
|
|
@@ -12386,6 +12569,14 @@ export const messagesByLocale = {
|
|
|
12386
12569
|
languageDescription: "Design のインターフェース言語を選択します。",
|
|
12387
12570
|
languageLabel: "インターフェース言語",
|
|
12388
12571
|
},
|
|
12572
|
+
designEditor: {
|
|
12573
|
+
toasts: {
|
|
12574
|
+
tweakConflict:
|
|
12575
|
+
"調整内容が別の場所で変更されました。デザインを更新してからもう一度お試しください。",
|
|
12576
|
+
tweakSaveNotDurable:
|
|
12577
|
+
"調整内容はまだ保存されていません。このタブを開いたまま、もう一度お試しください。",
|
|
12578
|
+
},
|
|
12579
|
+
},
|
|
12389
12580
|
pages: {
|
|
12390
12581
|
presentEmpty: "プレゼンするコンテンツがありません",
|
|
12391
12582
|
presentBackToEditor: "エディターに戻る",
|
|
@@ -12450,6 +12641,14 @@ export const messagesByLocale = {
|
|
|
12450
12641
|
languageDescription: "Design의 인터페이스 언어를 선택하세요.",
|
|
12451
12642
|
languageLabel: "인터페이스 언어",
|
|
12452
12643
|
},
|
|
12644
|
+
designEditor: {
|
|
12645
|
+
toasts: {
|
|
12646
|
+
tweakConflict:
|
|
12647
|
+
"조정 값이 다른 곳에서 변경되었습니다. 디자인을 새로고침한 후 다시 시도하세요.",
|
|
12648
|
+
tweakSaveNotDurable:
|
|
12649
|
+
"조정 값이 아직 저장되지 않았습니다. 이 탭을 열어 둔 채 다시 시도하세요.",
|
|
12650
|
+
},
|
|
12651
|
+
},
|
|
12453
12652
|
pages: {
|
|
12454
12653
|
presentEmpty: "발표할 콘텐츠가 없습니다",
|
|
12455
12654
|
presentBackToEditor: "편집기로 돌아가기",
|
|
@@ -12512,6 +12711,14 @@ export const messagesByLocale = {
|
|
|
12512
12711
|
languageDescription: "Escolha o idioma da interface do Design.",
|
|
12513
12712
|
languageLabel: "Idioma da interface",
|
|
12514
12713
|
},
|
|
12714
|
+
designEditor: {
|
|
12715
|
+
toasts: {
|
|
12716
|
+
tweakConflict:
|
|
12717
|
+
"Os ajustes foram alterados em outro lugar. Atualize o design antes de tentar novamente.",
|
|
12718
|
+
tweakSaveNotDurable:
|
|
12719
|
+
"Os ajustes ainda não foram salvos. Mantenha esta aba aberta e tente novamente.",
|
|
12720
|
+
},
|
|
12721
|
+
},
|
|
12515
12722
|
pages: {
|
|
12516
12723
|
presentEmpty: "Nenhum conteúdo para apresentar",
|
|
12517
12724
|
presentBackToEditor: "Voltar ao editor",
|
|
@@ -12575,6 +12782,14 @@ export const messagesByLocale = {
|
|
|
12575
12782
|
languageDescription: "Design की interface भाषा चुनें।",
|
|
12576
12783
|
languageLabel: "इंटरफ़ेस भाषा",
|
|
12577
12784
|
},
|
|
12785
|
+
designEditor: {
|
|
12786
|
+
toasts: {
|
|
12787
|
+
tweakConflict:
|
|
12788
|
+
"ट्वीक्स कहीं और बदल दिए गए हैं। फिर से प्रयास करने से पहले डिज़ाइन रीफ़्रेश करें।",
|
|
12789
|
+
tweakSaveNotDurable:
|
|
12790
|
+
"ट्वीक्स अभी सहेजे नहीं गए हैं। इस टैब को खुला रखें और फिर से प्रयास करें।",
|
|
12791
|
+
},
|
|
12792
|
+
},
|
|
12578
12793
|
pages: {
|
|
12579
12794
|
presentEmpty: "प्रस्तुत करने के लिए कोई सामग्री नहीं",
|
|
12580
12795
|
presentBackToEditor: "संपादक पर वापस जाएं",
|
|
@@ -12638,6 +12853,14 @@ export const messagesByLocale = {
|
|
|
12638
12853
|
languageDescription: "اختر لغة واجهة Design.",
|
|
12639
12854
|
languageLabel: "لغة الواجهة",
|
|
12640
12855
|
},
|
|
12856
|
+
designEditor: {
|
|
12857
|
+
toasts: {
|
|
12858
|
+
tweakConflict:
|
|
12859
|
+
"تم تغيير التعديلات في مكان آخر. حدّث التصميم قبل المحاولة مرة أخرى.",
|
|
12860
|
+
tweakSaveNotDurable:
|
|
12861
|
+
"لم تُحفظ التعديلات بعد. أبقِ علامة التبويب هذه مفتوحة وحاول مرة أخرى.",
|
|
12862
|
+
},
|
|
12863
|
+
},
|
|
12641
12864
|
pages: {
|
|
12642
12865
|
presentEmpty: "لا يوجد محتوى للعرض",
|
|
12643
12866
|
presentBackToEditor: "العودة إلى المحرر",
|