@agent-native/core 0.80.0 → 0.80.2
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 +2 -2
- package/corpus/core/CHANGELOG.md +28 -0
- package/corpus/core/docs/content/locales/ar-SA/skills-guide.mdx +5 -0
- package/corpus/core/docs/content/locales/ar-SA/template-design.mdx +14 -1
- package/corpus/core/docs/content/locales/de-DE/skills-guide.mdx +5 -0
- package/corpus/core/docs/content/locales/de-DE/template-design.mdx +15 -1
- package/corpus/core/docs/content/locales/es-ES/skills-guide.mdx +5 -0
- package/corpus/core/docs/content/locales/es-ES/template-design.mdx +15 -1
- package/corpus/core/docs/content/locales/fr-FR/skills-guide.mdx +5 -0
- package/corpus/core/docs/content/locales/fr-FR/template-design.mdx +15 -1
- package/corpus/core/docs/content/locales/hi-IN/skills-guide.mdx +5 -0
- package/corpus/core/docs/content/locales/hi-IN/template-design.mdx +15 -1
- package/corpus/core/docs/content/locales/ja-JP/skills-guide.mdx +5 -0
- package/corpus/core/docs/content/locales/ja-JP/template-design.mdx +16 -1
- package/corpus/core/docs/content/locales/ko-KR/skills-guide.mdx +5 -0
- package/corpus/core/docs/content/locales/ko-KR/template-design.mdx +14 -1
- package/corpus/core/docs/content/locales/pt-BR/skills-guide.mdx +5 -0
- package/corpus/core/docs/content/locales/pt-BR/template-design.mdx +14 -1
- package/corpus/core/docs/content/locales/zh-CN/skills-guide.mdx +5 -0
- package/corpus/core/docs/content/locales/zh-CN/template-design.mdx +14 -1
- package/corpus/core/docs/content/locales/zh-TW/skills-guide.mdx +5 -0
- package/corpus/core/docs/content/locales/zh-TW/template-design.mdx +14 -1
- package/corpus/core/docs/content/skills-guide.mdx +5 -0
- package/corpus/core/docs/content/template-design.mdx +14 -1
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/application-state/handlers.ts +1 -1
- package/corpus/core/src/brand-kit/index.ts +1 -1
- package/corpus/core/src/cli/skills.ts +18 -0
- package/corpus/core/src/client/AgentPanel.tsx +1 -1
- package/corpus/core/src/client/MultiTabAssistantChat.tsx +1 -1
- package/corpus/core/src/client/extensions/portable-extension.ts +1 -1
- package/corpus/core/src/code-agents/transcript-normalizer.ts +1 -1
- package/corpus/core/src/extensions/path.ts +1 -4
- package/corpus/core/src/integrations/a2a-continuation-processor.ts +1 -1
- package/corpus/core/src/mcp/build-server.ts +2 -2
- package/corpus/core/src/mcp/embed-app.ts +35 -1
- package/corpus/core/src/org/handlers.ts +5 -5
- package/corpus/core/src/org/plugin.ts +2 -2
- package/corpus/core/src/scripts/call-agent.ts +1 -1
- package/corpus/core/src/scripts/db/safety.ts +1 -1
- package/corpus/core/src/server/auth.ts +3 -0
- package/corpus/core/src/server/builder-design-systems.ts +308 -0
- package/corpus/core/src/server/core-routes-plugin.ts +29 -3
- package/corpus/core/src/server/index.ts +8 -0
- package/corpus/core/src/styles/agent-native.css +14 -7
- package/corpus/core/src/usage/store.ts +2 -2
- package/corpus/templates/analytics/actions/dashboard-mutation-api.ts +298 -15
- package/corpus/templates/analytics/actions/get-sql-dashboard.ts +9 -4
- package/corpus/templates/analytics/actions/mutate-dashboard.ts +18 -2
- package/corpus/templates/analytics/actions/query-agent-native-analytics.ts +12 -2
- package/corpus/templates/analytics/app/hooks/use-replay-storage-status.ts +66 -0
- package/corpus/templates/analytics/app/i18n/zh-TW.ts +37 -0
- package/corpus/templates/analytics/app/i18n-data.ts +404 -0
- package/corpus/templates/analytics/app/pages/Settings.tsx +333 -0
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/PanelEditorDialog.tsx +2 -1
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/dashboard-layout.ts +121 -3
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/index.tsx +49 -26
- package/corpus/templates/analytics/app/pages/sessions/SessionsPage.tsx +137 -36
- package/corpus/templates/analytics/changelog/2026-06-29-analytics-agents-can-now-place-new-charts-into-requested-das.md +6 -0
- package/corpus/templates/analytics/changelog/2026-06-29-analytics-queries-now-report-failed-source-query-errors-inst.md +6 -0
- package/corpus/templates/analytics/changelog/2026-06-29-charts-can-now-be-dropped-between-full-dashboard-rows-to-cre.md +6 -0
- package/corpus/templates/analytics/changelog/2026-06-29-dashboard-email-reports-include-the-full-dashboard-image-wit.md +6 -0
- package/corpus/templates/analytics/changelog/2026-06-29-main-surface-border-reaches-the-top.md +6 -0
- package/corpus/templates/analytics/changelog/2026-06-29-session-replay-now-records-playable-sessions-in-production-a.md +6 -0
- package/corpus/templates/analytics/changelog/2026-06-29-set-up-session-replay-storage-from-settings-connect-builder-.md +6 -0
- package/corpus/templates/analytics/scripts/cleanup-empty-session-recordings.ts +102 -0
- package/corpus/templates/analytics/server/lib/dashboard-report.ts +49 -26
- package/corpus/templates/analytics/server/lib/real-data-actions.ts +81 -20
- package/corpus/templates/analytics/server/lib/replay-storage.ts +79 -0
- package/corpus/templates/analytics/server/lib/s3-upload-provider.ts +255 -0
- package/corpus/templates/analytics/server/lib/session-replay.ts +29 -8
- package/corpus/templates/analytics/server/plugins/agent-chat.ts +11 -2
- package/corpus/templates/analytics/server/plugins/onboarding.ts +97 -0
- package/corpus/templates/clips/desktop/src/lib/recorder.ts +24 -0
- package/corpus/templates/clips/desktop/src/lib/transcription-capture.ts +105 -5
- package/corpus/templates/content/actions/set-image-alt-text.ts +1 -1
- package/corpus/templates/content/shared/document-export.ts +1 -1
- package/corpus/templates/design/.agents/skills/design-systems/SKILL.md +8 -18
- package/corpus/templates/design/.agents/skills/visual-edit/SKILL.md +17 -0
- package/corpus/templates/design/actions/add-localhost-screens.ts +32 -5
- package/corpus/templates/design/actions/index-design-system-with-builder.ts +259 -0
- package/corpus/templates/design/actions/update-file.ts +9 -2
- package/corpus/templates/design/app/components/design/CanvasContextMenu.tsx +33 -75
- package/corpus/templates/design/app/components/design/DesignCanvas.tsx +72 -9
- package/corpus/templates/design/app/components/design/DesignExtensionsPanel.tsx +41 -39
- package/corpus/templates/design/app/components/design/EditPanel.tsx +1029 -249
- package/corpus/templates/design/app/components/design/LayersPanel.tsx +450 -101
- package/corpus/templates/design/app/components/design/MultiScreenCanvas.tsx +978 -154
- package/corpus/templates/design/app/components/design/TweaksPanel.tsx +7 -9
- package/corpus/templates/design/app/components/design/inspector/AlignmentMatrix.tsx +133 -66
- package/corpus/templates/design/app/components/design/inspector/AutoLayoutMatrix.tsx +1234 -344
- package/corpus/templates/design/app/components/design/inspector/ConstraintsWidget.tsx +144 -94
- package/corpus/templates/design/app/components/design/inspector/ExportSettingsPanel.tsx +301 -72
- package/corpus/templates/design/app/components/design/inspector/FigmaColorPicker.tsx +876 -286
- package/corpus/templates/design/app/components/design/inspector/GradientEditor.tsx +601 -0
- package/corpus/templates/design/app/components/design/inspector/ImageFillControls.tsx +242 -0
- package/corpus/templates/design/app/components/design/inspector/ScrubInput.tsx +30 -7
- package/corpus/templates/design/app/components/design/inspector/ShaderControls.tsx +212 -155
- package/corpus/templates/design/app/components/design/inspector/ShaderFillsPanel.tsx +423 -0
- package/corpus/templates/design/app/components/design/inspector/figma-icons.tsx +487 -107
- package/corpus/templates/design/app/components/design/inspector/index.ts +27 -0
- package/corpus/templates/design/app/global.css +29 -3
- package/corpus/templates/design/app/i18n/zh-TW.ts +13 -0
- package/corpus/templates/design/app/i18n-data.ts +239 -1
- package/corpus/templates/design/app/pages/DesignEditor.tsx +1023 -353
- package/corpus/templates/design/app/pages/DesignSystemSetup.tsx +57 -221
- package/corpus/templates/design/changelog/2026-06-29-canvas-selection-no-longer-flashes-broken-prototype-html-whe.md +6 -0
- package/corpus/templates/design/changelog/2026-06-29-command-menu-selections-are-clearer-in-dark-mode.md +6 -0
- package/corpus/templates/design/changelog/2026-06-29-design-mode-top-chrome-now-groups-collaborators-preview-shar.md +6 -0
- package/corpus/templates/design/changelog/2026-06-29-element-selection-now-stays-on-the-intended-layer-after-sele.md +6 -0
- package/corpus/templates/design/changelog/2026-06-29-screen-overview-full-view-controls-now-sit-above-frames-inst.md +6 -0
- package/corpus/templates/design/changelog/2026-06-29-screen-overview-tools-can-draw-shapes-create-screens-and-kee.md +6 -0
- package/corpus/templates/design/changelog/2026-06-29-the-pen-tool-now-creates-anchor-based-bezier-vectors-with-ha.md +6 -0
- package/corpus/templates/design/server/handlers/import-figma-system.ts +38 -85
- package/corpus/templates/design/server/lib/design-snapshot.ts +9 -1
- package/corpus/templates/design/shared/code-layer.ts +209 -9
- package/corpus/templates/design/shared/html-content.ts +21 -0
- package/corpus/templates/design/shared/pen-path.ts +207 -0
- package/corpus/templates/mail/app/lib/utils.ts +2 -2
- package/corpus/templates/slides/.agents/skills/design-systems/SKILL.md +9 -10
- package/corpus/templates/slides/AGENTS.md +3 -2
- package/corpus/templates/slides/actions/import-file.ts +26 -17
- package/corpus/templates/slides/actions/index-design-system-with-builder.ts +259 -0
- package/corpus/templates/slides/app/components/design-system/DesignSystemSetup.tsx +35 -167
- package/corpus/templates/slides/app/components/design-system/fig-import-response.ts +9 -13
- package/corpus/templates/slides/app/context/DeckContext.tsx +1 -1
- package/corpus/templates/slides/app/i18n/ar-SA.ts +9 -37
- package/corpus/templates/slides/app/i18n/de-DE.ts +10 -25
- package/corpus/templates/slides/app/i18n/en-US.ts +9 -26
- package/corpus/templates/slides/app/i18n/es-ES.ts +10 -28
- package/corpus/templates/slides/app/i18n/fr-FR.ts +10 -28
- package/corpus/templates/slides/app/i18n/hi-IN.ts +9 -26
- package/corpus/templates/slides/app/i18n/ja-JP.ts +10 -22
- package/corpus/templates/slides/app/i18n/ko-KR.ts +9 -23
- package/corpus/templates/slides/app/i18n/pt-BR.ts +10 -28
- package/corpus/templates/slides/app/i18n/zh-CN.ts +9 -22
- package/corpus/templates/slides/app/i18n/zh-TW.ts +9 -22
- package/corpus/templates/slides/server/handlers/import-figma-system.ts +44 -12
- package/corpus/templates/slides/server/lib/chat-attachments.ts +1 -1
- package/corpus/templates/videos/app/components/NewCompositionPopover.tsx +1 -1
- package/dist/application-state/handlers.js +1 -1
- package/dist/application-state/handlers.js.map +1 -1
- package/dist/brand-kit/index.d.ts +1 -1
- package/dist/brand-kit/index.js +1 -1
- package/dist/brand-kit/index.js.map +1 -1
- package/dist/cli/skills.d.ts.map +1 -1
- package/dist/cli/skills.js +18 -0
- package/dist/cli/skills.js.map +1 -1
- package/dist/client/AgentPanel.js +1 -1
- package/dist/client/AgentPanel.js.map +1 -1
- package/dist/client/MultiTabAssistantChat.js +1 -1
- package/dist/client/MultiTabAssistantChat.js.map +1 -1
- package/dist/client/extensions/portable-extension.d.ts +1 -1
- package/dist/client/extensions/portable-extension.d.ts.map +1 -1
- package/dist/client/extensions/portable-extension.js.map +1 -1
- package/dist/code-agents/transcript-normalizer.js +1 -1
- package/dist/code-agents/transcript-normalizer.js.map +1 -1
- package/dist/collab/awareness.d.ts +2 -2
- package/dist/collab/awareness.d.ts.map +1 -1
- package/dist/collab/routes.d.ts +1 -1
- package/dist/extensions/path.d.ts +1 -1
- package/dist/extensions/path.d.ts.map +1 -1
- package/dist/extensions/path.js.map +1 -1
- package/dist/file-upload/actions/upload-image.d.ts +2 -2
- package/dist/integrations/a2a-continuation-processor.js +1 -1
- package/dist/integrations/a2a-continuation-processor.js.map +1 -1
- package/dist/mcp/build-server.d.ts +1 -1
- package/dist/mcp/build-server.d.ts.map +1 -1
- package/dist/mcp/build-server.js +1 -1
- package/dist/mcp/build-server.js.map +1 -1
- package/dist/mcp/embed-app.d.ts.map +1 -1
- package/dist/mcp/embed-app.js +35 -1
- package/dist/mcp/embed-app.js.map +1 -1
- package/dist/notifications/routes.d.ts +3 -3
- package/dist/observability/routes.d.ts +8 -8
- package/dist/org/handlers.js +5 -5
- package/dist/org/handlers.js.map +1 -1
- package/dist/org/plugin.js +2 -2
- package/dist/org/plugin.js.map +1 -1
- package/dist/resources/handlers.d.ts +1 -1
- package/dist/scripts/call-agent.js +1 -1
- package/dist/scripts/call-agent.js.map +1 -1
- package/dist/scripts/db/safety.js +1 -1
- package/dist/scripts/db/safety.js.map +1 -1
- package/dist/server/agent-engine-api-key-route.d.ts +1 -1
- package/dist/server/auth.d.ts.map +1 -1
- package/dist/server/auth.js +3 -0
- package/dist/server/auth.js.map +1 -1
- package/dist/server/builder-design-systems.d.ts +28 -0
- package/dist/server/builder-design-systems.d.ts.map +1 -0
- package/dist/server/builder-design-systems.js +217 -0
- package/dist/server/builder-design-systems.js.map +1 -0
- package/dist/server/core-routes-plugin.d.ts +1 -0
- package/dist/server/core-routes-plugin.d.ts.map +1 -1
- package/dist/server/core-routes-plugin.js +20 -3
- package/dist/server/core-routes-plugin.js.map +1 -1
- package/dist/server/index.d.ts +1 -0
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +1 -0
- package/dist/server/index.js.map +1 -1
- package/dist/styles/agent-native.css +14 -7
- package/dist/usage/store.js +2 -2
- package/dist/usage/store.js.map +1 -1
- package/docs/content/locales/ar-SA/skills-guide.mdx +5 -0
- package/docs/content/locales/ar-SA/template-design.mdx +14 -1
- package/docs/content/locales/de-DE/skills-guide.mdx +5 -0
- package/docs/content/locales/de-DE/template-design.mdx +15 -1
- package/docs/content/locales/es-ES/skills-guide.mdx +5 -0
- package/docs/content/locales/es-ES/template-design.mdx +15 -1
- package/docs/content/locales/fr-FR/skills-guide.mdx +5 -0
- package/docs/content/locales/fr-FR/template-design.mdx +15 -1
- package/docs/content/locales/hi-IN/skills-guide.mdx +5 -0
- package/docs/content/locales/hi-IN/template-design.mdx +15 -1
- package/docs/content/locales/ja-JP/skills-guide.mdx +5 -0
- package/docs/content/locales/ja-JP/template-design.mdx +16 -1
- package/docs/content/locales/ko-KR/skills-guide.mdx +5 -0
- package/docs/content/locales/ko-KR/template-design.mdx +14 -1
- package/docs/content/locales/pt-BR/skills-guide.mdx +5 -0
- package/docs/content/locales/pt-BR/template-design.mdx +14 -1
- package/docs/content/locales/zh-CN/skills-guide.mdx +5 -0
- package/docs/content/locales/zh-CN/template-design.mdx +14 -1
- package/docs/content/locales/zh-TW/skills-guide.mdx +5 -0
- package/docs/content/locales/zh-TW/template-design.mdx +14 -1
- package/docs/content/skills-guide.mdx +5 -0
- package/docs/content/template-design.mdx +14 -1
- package/package.json +1 -1
- package/corpus/templates/design/actions/import-figma-file.ts +0 -166
- package/corpus/templates/slides/server/lib/fig-design-system.ts +0 -110
|
@@ -17,6 +17,8 @@ export {
|
|
|
17
17
|
type AutoLayoutSizing,
|
|
18
18
|
type AutoLayoutSizingAxis,
|
|
19
19
|
type AutoLayoutWrap,
|
|
20
|
+
SizingField,
|
|
21
|
+
type SizingFieldProps,
|
|
20
22
|
} from "./AutoLayoutMatrix";
|
|
21
23
|
export {
|
|
22
24
|
ConstraintsWidget,
|
|
@@ -44,7 +46,32 @@ export {
|
|
|
44
46
|
type FigmaGradientStop,
|
|
45
47
|
type FigmaGradientStopPatch,
|
|
46
48
|
type FigmaGradientType,
|
|
49
|
+
type FigmaPaintType,
|
|
47
50
|
} from "./FigmaColorPicker";
|
|
51
|
+
export {
|
|
52
|
+
GradientEditor,
|
|
53
|
+
defaultGradient,
|
|
54
|
+
gradientToCss,
|
|
55
|
+
parseGradientCss,
|
|
56
|
+
type GradientEditorProps,
|
|
57
|
+
type GradientKind,
|
|
58
|
+
type GradientStopValue,
|
|
59
|
+
type GradientValue,
|
|
60
|
+
} from "./GradientEditor";
|
|
61
|
+
export {
|
|
62
|
+
ImageFillControls,
|
|
63
|
+
imageFillToCss,
|
|
64
|
+
parseImageFillCss,
|
|
65
|
+
type ImageFillControlsProps,
|
|
66
|
+
type ImageFillValue,
|
|
67
|
+
type ImageFitMode,
|
|
68
|
+
} from "./ImageFillControls";
|
|
69
|
+
export {
|
|
70
|
+
ShaderFillsPanel,
|
|
71
|
+
descriptorFromPreset,
|
|
72
|
+
shaderDescriptorToCss,
|
|
73
|
+
type ShaderFillsPanelProps,
|
|
74
|
+
} from "./ShaderFillsPanel";
|
|
48
75
|
export {
|
|
49
76
|
ScrubInput,
|
|
50
77
|
type ScrubInputChangeMeta,
|
|
@@ -47,6 +47,21 @@
|
|
|
47
47
|
hsl(220 10% 15%) 8%,
|
|
48
48
|
transparent
|
|
49
49
|
);
|
|
50
|
+
--design-editor-layer-hover-color: color-mix(
|
|
51
|
+
in srgb,
|
|
52
|
+
hsl(220 10% 15%) 6%,
|
|
53
|
+
transparent
|
|
54
|
+
);
|
|
55
|
+
--design-editor-selected-subtree-color: color-mix(
|
|
56
|
+
in srgb,
|
|
57
|
+
hsl(213 91% 67%) 9%,
|
|
58
|
+
transparent
|
|
59
|
+
);
|
|
60
|
+
--design-editor-panel-divider-color: color-mix(
|
|
61
|
+
in srgb,
|
|
62
|
+
hsl(var(--border)) 76%,
|
|
63
|
+
transparent
|
|
64
|
+
);
|
|
50
65
|
--design-editor-accent-strong-color: var(--design-editor-accent-color);
|
|
51
66
|
--design-editor-accent-contrast-color: #ffffff;
|
|
52
67
|
--design-editor-measure-color: hsl(344 100% 63%);
|
|
@@ -62,7 +77,7 @@
|
|
|
62
77
|
--foreground: 0 0% 90%;
|
|
63
78
|
--card: 220 5% 13%;
|
|
64
79
|
--card-foreground: 0 0% 90%;
|
|
65
|
-
--popover: 220
|
|
80
|
+
--popover: 220 6% 9%;
|
|
66
81
|
--popover-foreground: 0 0% 90%;
|
|
67
82
|
--primary: 0 0% 75%;
|
|
68
83
|
--primary-foreground: 220 6% 6%;
|
|
@@ -70,8 +85,8 @@
|
|
|
70
85
|
--secondary-foreground: 0 0% 90%;
|
|
71
86
|
--muted: 220 4% 10%;
|
|
72
87
|
--muted-foreground: 220 4% 60%;
|
|
73
|
-
--accent: 220
|
|
74
|
-
--accent-foreground: 0 0%
|
|
88
|
+
--accent: 220 5% 20%;
|
|
89
|
+
--accent-foreground: 0 0% 96%;
|
|
75
90
|
--destructive: 0 63% 51%;
|
|
76
91
|
--destructive-foreground: 0 0% 98%;
|
|
77
92
|
--border: 220 4% 14%;
|
|
@@ -94,6 +109,17 @@
|
|
|
94
109
|
transparent
|
|
95
110
|
);
|
|
96
111
|
--design-editor-active-row-color: hsl(220 4% 20%);
|
|
112
|
+
--design-editor-layer-hover-color: color-mix(
|
|
113
|
+
in srgb,
|
|
114
|
+
hsl(0 0% 100%) 8%,
|
|
115
|
+
transparent
|
|
116
|
+
);
|
|
117
|
+
--design-editor-selected-subtree-color: color-mix(
|
|
118
|
+
in srgb,
|
|
119
|
+
hsl(213 91% 67%) 18%,
|
|
120
|
+
transparent
|
|
121
|
+
);
|
|
122
|
+
--design-editor-panel-divider-color: hsl(220 4% 22%);
|
|
97
123
|
--design-editor-accent-strong-color: var(--design-editor-accent-color);
|
|
98
124
|
--design-editor-accent-contrast-color: #ffffff;
|
|
99
125
|
--design-editor-measure-color: hsl(344 100% 63%);
|
|
@@ -63,6 +63,11 @@ const messages = {
|
|
|
63
63
|
codeConfidence: "程式碼",
|
|
64
64
|
export: "匯出",
|
|
65
65
|
},
|
|
66
|
+
textResize: {
|
|
67
|
+
autoWidth: "自動寬度",
|
|
68
|
+
autoHeight: "自動高度",
|
|
69
|
+
fixed: "固定大小",
|
|
70
|
+
},
|
|
66
71
|
labels: {
|
|
67
72
|
background: "背景",
|
|
68
73
|
font: "字型",
|
|
@@ -242,6 +247,7 @@ const messages = {
|
|
|
242
247
|
notFound: "未找到設計",
|
|
243
248
|
backToDesigns: "返回設計",
|
|
244
249
|
clickToRename: "點選重新命名",
|
|
250
|
+
collaborators: "協作者",
|
|
245
251
|
modes: {
|
|
246
252
|
annotate: "註解",
|
|
247
253
|
comment: "評論",
|
|
@@ -255,6 +261,12 @@ const messages = {
|
|
|
255
261
|
move: "移動",
|
|
256
262
|
frame: "畫框",
|
|
257
263
|
rect: "矩形",
|
|
264
|
+
line: "線條",
|
|
265
|
+
arrow: "箭頭",
|
|
266
|
+
ellipse: "橢圓",
|
|
267
|
+
polygon: "多邊形",
|
|
268
|
+
star: "星形",
|
|
269
|
+
imageVideo: "圖片/影片...",
|
|
258
270
|
text: "文字",
|
|
259
271
|
pen: "鋼筆",
|
|
260
272
|
hand: "手形",
|
|
@@ -395,6 +407,7 @@ const messages = {
|
|
|
395
407
|
layersPanel: {
|
|
396
408
|
title: "圖層",
|
|
397
409
|
screens: "畫面",
|
|
410
|
+
thumbnail: "縮圖",
|
|
398
411
|
addScreen: "新增畫面",
|
|
399
412
|
searchPlaceholder: "搜尋圖層...",
|
|
400
413
|
empty: "沒有圖層",
|
|
@@ -68,6 +68,11 @@ const enUS = {
|
|
|
68
68
|
codeConfidence: "Code",
|
|
69
69
|
export: "Export",
|
|
70
70
|
},
|
|
71
|
+
textResize: {
|
|
72
|
+
autoWidth: "Auto width",
|
|
73
|
+
autoHeight: "Auto height",
|
|
74
|
+
fixed: "Fixed size",
|
|
75
|
+
},
|
|
71
76
|
labels: {
|
|
72
77
|
background: "Background",
|
|
73
78
|
font: "Font",
|
|
@@ -250,6 +255,7 @@ const enUS = {
|
|
|
250
255
|
notFound: "Design not found",
|
|
251
256
|
backToDesigns: "Back to designs",
|
|
252
257
|
clickToRename: "Click to rename",
|
|
258
|
+
collaborators: "Collaborators",
|
|
253
259
|
modes: {
|
|
254
260
|
annotate: "Annotate",
|
|
255
261
|
comment: "Comment",
|
|
@@ -263,6 +269,12 @@ const enUS = {
|
|
|
263
269
|
move: "Move",
|
|
264
270
|
frame: "Frame",
|
|
265
271
|
rect: "Rectangle",
|
|
272
|
+
line: "Line",
|
|
273
|
+
arrow: "Arrow",
|
|
274
|
+
ellipse: "Ellipse",
|
|
275
|
+
polygon: "Polygon",
|
|
276
|
+
star: "Star",
|
|
277
|
+
imageVideo: "Image/video...",
|
|
266
278
|
text: "Text",
|
|
267
279
|
pen: "Pen",
|
|
268
280
|
hand: "Hand",
|
|
@@ -405,6 +417,7 @@ const enUS = {
|
|
|
405
417
|
layersPanel: {
|
|
406
418
|
title: "Layers",
|
|
407
419
|
screens: "Screens",
|
|
420
|
+
thumbnail: "Thumbnail",
|
|
408
421
|
addScreen: "Add screen",
|
|
409
422
|
searchPlaceholder: "Search layers...",
|
|
410
423
|
empty: "No layers",
|
|
@@ -5554,6 +5567,7 @@ const designExactEnglishOverrides = {
|
|
|
5554
5567
|
designEditor: {
|
|
5555
5568
|
backToDesigns: "返回设计",
|
|
5556
5569
|
clickToRename: "点击重命名",
|
|
5570
|
+
collaborators: "协作者",
|
|
5557
5571
|
copyCodingHandoff: "复制编码交接",
|
|
5558
5572
|
currentScreen: "当前屏幕",
|
|
5559
5573
|
designExport: "Design 导出",
|
|
@@ -5626,6 +5640,7 @@ const designExactEnglishOverrides = {
|
|
|
5626
5640
|
designEditor: {
|
|
5627
5641
|
backToDesigns: "Volver a diseños",
|
|
5628
5642
|
clickToRename: "Haz clic para cambiar el nombre",
|
|
5643
|
+
collaborators: "Colaboradores",
|
|
5629
5644
|
copyCodingHandoff: "Copiar entrega para código",
|
|
5630
5645
|
currentScreen: "Pantalla actual",
|
|
5631
5646
|
designExport: "Exportación de Design",
|
|
@@ -5700,6 +5715,7 @@ const designExactEnglishOverrides = {
|
|
|
5700
5715
|
designEditor: {
|
|
5701
5716
|
backToDesigns: "Retour aux designs",
|
|
5702
5717
|
clickToRename: "Cliquer pour renommer",
|
|
5718
|
+
collaborators: "Collaborateurs",
|
|
5703
5719
|
copyCodingHandoff: "Copier le transfert de code",
|
|
5704
5720
|
currentScreen: "Écran actuel",
|
|
5705
5721
|
designExport: "Export Design",
|
|
@@ -5775,6 +5791,7 @@ const designExactEnglishOverrides = {
|
|
|
5775
5791
|
designEditor: {
|
|
5776
5792
|
backToDesigns: "Zurück zu Designs",
|
|
5777
5793
|
clickToRename: "Zum Umbenennen klicken",
|
|
5794
|
+
collaborators: "Mitwirkende",
|
|
5778
5795
|
copyCodingHandoff: "Code-Übergabe kopieren",
|
|
5779
5796
|
currentScreen: "Aktueller Bildschirm",
|
|
5780
5797
|
designExport: "Design-Export",
|
|
@@ -5850,6 +5867,7 @@ const designExactEnglishOverrides = {
|
|
|
5850
5867
|
designEditor: {
|
|
5851
5868
|
backToDesigns: "デザインに戻る",
|
|
5852
5869
|
clickToRename: "クリックして名前を変更",
|
|
5870
|
+
collaborators: "共同編集者",
|
|
5853
5871
|
copyCodingHandoff: "コーディング引き継ぎをコピー",
|
|
5854
5872
|
currentScreen: "現在の画面",
|
|
5855
5873
|
designExport: "Design エクスポート",
|
|
@@ -5925,6 +5943,7 @@ const designExactEnglishOverrides = {
|
|
|
5925
5943
|
designEditor: {
|
|
5926
5944
|
backToDesigns: "디자인으로 돌아가기",
|
|
5927
5945
|
clickToRename: "클릭하여 이름 바꾸기",
|
|
5946
|
+
collaborators: "공동 작업자",
|
|
5928
5947
|
copyCodingHandoff: "코딩 인계 복사",
|
|
5929
5948
|
currentScreen: "현재 화면",
|
|
5930
5949
|
designExport: "Design 내보내기",
|
|
@@ -5999,6 +6018,7 @@ const designExactEnglishOverrides = {
|
|
|
5999
6018
|
designEditor: {
|
|
6000
6019
|
backToDesigns: "Voltar aos designs",
|
|
6001
6020
|
clickToRename: "Clique para renomear",
|
|
6021
|
+
collaborators: "Colaboradores",
|
|
6002
6022
|
copyCodingHandoff: "Copiar handoff de código",
|
|
6003
6023
|
currentScreen: "Tela atual",
|
|
6004
6024
|
designExport: "Exportação de Design",
|
|
@@ -6073,6 +6093,7 @@ const designExactEnglishOverrides = {
|
|
|
6073
6093
|
designEditor: {
|
|
6074
6094
|
backToDesigns: "डिज़ाइन पर वापस जाएँ",
|
|
6075
6095
|
clickToRename: "नाम बदलने के लिए क्लिक करें",
|
|
6096
|
+
collaborators: "सहयोगी",
|
|
6076
6097
|
copyCodingHandoff: "कोडिंग हैंडऑफ़ कॉपी करें",
|
|
6077
6098
|
currentScreen: "वर्तमान स्क्रीन",
|
|
6078
6099
|
designExport: "Design निर्यात",
|
|
@@ -6146,6 +6167,7 @@ const designExactEnglishOverrides = {
|
|
|
6146
6167
|
designEditor: {
|
|
6147
6168
|
backToDesigns: "العودة إلى التصاميم",
|
|
6148
6169
|
clickToRename: "انقر لإعادة التسمية",
|
|
6170
|
+
collaborators: "المتعاونون",
|
|
6149
6171
|
copyCodingHandoff: "نسخ تسليم الترميز",
|
|
6150
6172
|
currentScreen: "الشاشة الحالية",
|
|
6151
6173
|
designExport: "تصدير Design",
|
|
@@ -8006,6 +8028,7 @@ const designCanvasFeatureOverrides = {
|
|
|
8006
8028
|
layersPanel: {
|
|
8007
8029
|
title: "圖層",
|
|
8008
8030
|
screens: "畫面",
|
|
8031
|
+
thumbnail: "縮圖",
|
|
8009
8032
|
addScreen: "新增畫面",
|
|
8010
8033
|
searchPlaceholder: "搜尋圖層...",
|
|
8011
8034
|
empty: "沒有圖層",
|
|
@@ -8063,6 +8086,7 @@ const designCanvasFeatureOverrides = {
|
|
|
8063
8086
|
layersPanel: {
|
|
8064
8087
|
title: "图层",
|
|
8065
8088
|
screens: "屏幕",
|
|
8089
|
+
thumbnail: "缩略图",
|
|
8066
8090
|
addScreen: "添加屏幕",
|
|
8067
8091
|
searchPlaceholder: "搜索图层...",
|
|
8068
8092
|
empty: "没有图层",
|
|
@@ -8120,6 +8144,7 @@ const designCanvasFeatureOverrides = {
|
|
|
8120
8144
|
layersPanel: {
|
|
8121
8145
|
title: "Capas",
|
|
8122
8146
|
screens: "Pantallas",
|
|
8147
|
+
thumbnail: "Miniatura",
|
|
8123
8148
|
addScreen: "Añadir pantalla",
|
|
8124
8149
|
searchPlaceholder: "Buscar capas...",
|
|
8125
8150
|
empty: "Sin capas",
|
|
@@ -8177,6 +8202,7 @@ const designCanvasFeatureOverrides = {
|
|
|
8177
8202
|
layersPanel: {
|
|
8178
8203
|
title: "Calques",
|
|
8179
8204
|
screens: "Écrans",
|
|
8205
|
+
thumbnail: "Miniature",
|
|
8180
8206
|
addScreen: "Ajouter un écran",
|
|
8181
8207
|
searchPlaceholder: "Rechercher des calques...",
|
|
8182
8208
|
empty: "Aucun calque",
|
|
@@ -8235,6 +8261,7 @@ const designCanvasFeatureOverrides = {
|
|
|
8235
8261
|
layersPanel: {
|
|
8236
8262
|
title: "Ebenen",
|
|
8237
8263
|
screens: "Screens",
|
|
8264
|
+
thumbnail: "Miniaturansicht",
|
|
8238
8265
|
addScreen: "Screen hinzufügen",
|
|
8239
8266
|
searchPlaceholder: "Ebenen suchen...",
|
|
8240
8267
|
empty: "Keine Ebenen",
|
|
@@ -8292,6 +8319,7 @@ const designCanvasFeatureOverrides = {
|
|
|
8292
8319
|
layersPanel: {
|
|
8293
8320
|
title: "レイヤー",
|
|
8294
8321
|
screens: "画面",
|
|
8322
|
+
thumbnail: "サムネイル",
|
|
8295
8323
|
addScreen: "画面を追加",
|
|
8296
8324
|
searchPlaceholder: "レイヤーを検索...",
|
|
8297
8325
|
empty: "レイヤーがありません",
|
|
@@ -8349,6 +8377,7 @@ const designCanvasFeatureOverrides = {
|
|
|
8349
8377
|
layersPanel: {
|
|
8350
8378
|
title: "레이어",
|
|
8351
8379
|
screens: "화면",
|
|
8380
|
+
thumbnail: "썸네일",
|
|
8352
8381
|
addScreen: "화면 추가",
|
|
8353
8382
|
searchPlaceholder: "레이어 검색...",
|
|
8354
8383
|
empty: "레이어 없음",
|
|
@@ -8406,6 +8435,7 @@ const designCanvasFeatureOverrides = {
|
|
|
8406
8435
|
layersPanel: {
|
|
8407
8436
|
title: "Camadas",
|
|
8408
8437
|
screens: "Telas",
|
|
8438
|
+
thumbnail: "Miniatura",
|
|
8409
8439
|
addScreen: "Adicionar tela",
|
|
8410
8440
|
searchPlaceholder: "Buscar camadas...",
|
|
8411
8441
|
empty: "Nenhuma camada",
|
|
@@ -8463,6 +8493,7 @@ const designCanvasFeatureOverrides = {
|
|
|
8463
8493
|
layersPanel: {
|
|
8464
8494
|
title: "परतें",
|
|
8465
8495
|
screens: "स्क्रीन",
|
|
8496
|
+
thumbnail: "थंबनेल",
|
|
8466
8497
|
addScreen: "स्क्रीन जोड़ें",
|
|
8467
8498
|
searchPlaceholder: "परतें खोजें...",
|
|
8468
8499
|
empty: "कोई परत नहीं",
|
|
@@ -8520,6 +8551,7 @@ const designCanvasFeatureOverrides = {
|
|
|
8520
8551
|
layersPanel: {
|
|
8521
8552
|
title: "الطبقات",
|
|
8522
8553
|
screens: "الشاشات",
|
|
8554
|
+
thumbnail: "الصورة المصغرة",
|
|
8523
8555
|
addScreen: "إضافة شاشة",
|
|
8524
8556
|
searchPlaceholder: "البحث في الطبقات...",
|
|
8525
8557
|
empty: "لا توجد طبقات",
|
|
@@ -8539,10 +8571,207 @@ const designCanvasFeatureOverrides = {
|
|
|
8539
8571
|
},
|
|
8540
8572
|
} satisfies Record<Exclude<LocaleCode, "en-US">, PartialMessages>;
|
|
8541
8573
|
|
|
8574
|
+
const designShapeToolOverrides = {
|
|
8575
|
+
"zh-TW": {
|
|
8576
|
+
editPanel: {
|
|
8577
|
+
textResize: {
|
|
8578
|
+
autoWidth: "自動寬度",
|
|
8579
|
+
autoHeight: "自動高度",
|
|
8580
|
+
fixed: "固定大小",
|
|
8581
|
+
},
|
|
8582
|
+
},
|
|
8583
|
+
designEditor: {
|
|
8584
|
+
tools: {
|
|
8585
|
+
line: "線條",
|
|
8586
|
+
arrow: "箭頭",
|
|
8587
|
+
ellipse: "橢圓",
|
|
8588
|
+
polygon: "多邊形",
|
|
8589
|
+
star: "星形",
|
|
8590
|
+
imageVideo: "圖片/影片...",
|
|
8591
|
+
},
|
|
8592
|
+
},
|
|
8593
|
+
},
|
|
8594
|
+
"zh-CN": {
|
|
8595
|
+
editPanel: {
|
|
8596
|
+
textResize: {
|
|
8597
|
+
autoWidth: "自动宽度",
|
|
8598
|
+
autoHeight: "自动高度",
|
|
8599
|
+
fixed: "固定大小",
|
|
8600
|
+
},
|
|
8601
|
+
},
|
|
8602
|
+
designEditor: {
|
|
8603
|
+
tools: {
|
|
8604
|
+
line: "线条",
|
|
8605
|
+
arrow: "箭头",
|
|
8606
|
+
ellipse: "椭圆",
|
|
8607
|
+
polygon: "多边形",
|
|
8608
|
+
star: "星形",
|
|
8609
|
+
imageVideo: "图片/视频...",
|
|
8610
|
+
},
|
|
8611
|
+
},
|
|
8612
|
+
},
|
|
8613
|
+
"es-ES": {
|
|
8614
|
+
editPanel: {
|
|
8615
|
+
textResize: {
|
|
8616
|
+
autoWidth: "Ancho automático",
|
|
8617
|
+
autoHeight: "Alto automático",
|
|
8618
|
+
fixed: "Tamaño fijo",
|
|
8619
|
+
},
|
|
8620
|
+
},
|
|
8621
|
+
designEditor: {
|
|
8622
|
+
tools: {
|
|
8623
|
+
line: "Línea",
|
|
8624
|
+
arrow: "Flecha",
|
|
8625
|
+
ellipse: "Elipse",
|
|
8626
|
+
polygon: "Polígono",
|
|
8627
|
+
star: "Estrella",
|
|
8628
|
+
imageVideo: "Imagen/video...",
|
|
8629
|
+
},
|
|
8630
|
+
},
|
|
8631
|
+
},
|
|
8632
|
+
"fr-FR": {
|
|
8633
|
+
editPanel: {
|
|
8634
|
+
textResize: {
|
|
8635
|
+
autoWidth: "Largeur auto",
|
|
8636
|
+
autoHeight: "Hauteur auto",
|
|
8637
|
+
fixed: "Taille fixe",
|
|
8638
|
+
},
|
|
8639
|
+
},
|
|
8640
|
+
designEditor: {
|
|
8641
|
+
tools: {
|
|
8642
|
+
line: "Ligne",
|
|
8643
|
+
arrow: "Flèche",
|
|
8644
|
+
ellipse: "Ellipse",
|
|
8645
|
+
polygon: "Polygone",
|
|
8646
|
+
star: "Étoile",
|
|
8647
|
+
imageVideo: "Image/vidéo...",
|
|
8648
|
+
},
|
|
8649
|
+
},
|
|
8650
|
+
},
|
|
8651
|
+
"de-DE": {
|
|
8652
|
+
editPanel: {
|
|
8653
|
+
textResize: {
|
|
8654
|
+
autoWidth: "Automatische Breite",
|
|
8655
|
+
autoHeight: "Automatische Höhe",
|
|
8656
|
+
fixed: "Feste Größe",
|
|
8657
|
+
},
|
|
8658
|
+
},
|
|
8659
|
+
designEditor: {
|
|
8660
|
+
tools: {
|
|
8661
|
+
line: "Linie",
|
|
8662
|
+
arrow: "Pfeil",
|
|
8663
|
+
ellipse: "Ellipse",
|
|
8664
|
+
polygon: "Polygon",
|
|
8665
|
+
star: "Stern",
|
|
8666
|
+
imageVideo: "Bild/Video...",
|
|
8667
|
+
},
|
|
8668
|
+
},
|
|
8669
|
+
},
|
|
8670
|
+
"ja-JP": {
|
|
8671
|
+
editPanel: {
|
|
8672
|
+
textResize: {
|
|
8673
|
+
autoWidth: "自動幅",
|
|
8674
|
+
autoHeight: "自動高さ",
|
|
8675
|
+
fixed: "固定サイズ",
|
|
8676
|
+
},
|
|
8677
|
+
},
|
|
8678
|
+
designEditor: {
|
|
8679
|
+
tools: {
|
|
8680
|
+
line: "線",
|
|
8681
|
+
arrow: "矢印",
|
|
8682
|
+
ellipse: "楕円",
|
|
8683
|
+
polygon: "多角形",
|
|
8684
|
+
star: "星",
|
|
8685
|
+
imageVideo: "画像/動画...",
|
|
8686
|
+
},
|
|
8687
|
+
},
|
|
8688
|
+
},
|
|
8689
|
+
"ko-KR": {
|
|
8690
|
+
editPanel: {
|
|
8691
|
+
textResize: {
|
|
8692
|
+
autoWidth: "자동 너비",
|
|
8693
|
+
autoHeight: "자동 높이",
|
|
8694
|
+
fixed: "고정 크기",
|
|
8695
|
+
},
|
|
8696
|
+
},
|
|
8697
|
+
designEditor: {
|
|
8698
|
+
tools: {
|
|
8699
|
+
line: "선",
|
|
8700
|
+
arrow: "화살표",
|
|
8701
|
+
ellipse: "타원",
|
|
8702
|
+
polygon: "다각형",
|
|
8703
|
+
star: "별",
|
|
8704
|
+
imageVideo: "이미지/동영상...",
|
|
8705
|
+
},
|
|
8706
|
+
},
|
|
8707
|
+
},
|
|
8708
|
+
"pt-BR": {
|
|
8709
|
+
editPanel: {
|
|
8710
|
+
textResize: {
|
|
8711
|
+
autoWidth: "Largura automática",
|
|
8712
|
+
autoHeight: "Altura automática",
|
|
8713
|
+
fixed: "Tamanho fixo",
|
|
8714
|
+
},
|
|
8715
|
+
},
|
|
8716
|
+
designEditor: {
|
|
8717
|
+
tools: {
|
|
8718
|
+
line: "Linha",
|
|
8719
|
+
arrow: "Seta",
|
|
8720
|
+
ellipse: "Elipse",
|
|
8721
|
+
polygon: "Polígono",
|
|
8722
|
+
star: "Estrela",
|
|
8723
|
+
imageVideo: "Imagem/vídeo...",
|
|
8724
|
+
},
|
|
8725
|
+
},
|
|
8726
|
+
},
|
|
8727
|
+
"hi-IN": {
|
|
8728
|
+
editPanel: {
|
|
8729
|
+
textResize: {
|
|
8730
|
+
autoWidth: "ऑटो चौड़ाई",
|
|
8731
|
+
autoHeight: "ऑटो ऊंचाई",
|
|
8732
|
+
fixed: "स्थिर आकार",
|
|
8733
|
+
},
|
|
8734
|
+
},
|
|
8735
|
+
designEditor: {
|
|
8736
|
+
tools: {
|
|
8737
|
+
line: "रेखा",
|
|
8738
|
+
arrow: "तीर",
|
|
8739
|
+
ellipse: "दीर्घवृत्त",
|
|
8740
|
+
polygon: "बहुभुज",
|
|
8741
|
+
star: "तारा",
|
|
8742
|
+
imageVideo: "छवि/वीडियो...",
|
|
8743
|
+
},
|
|
8744
|
+
},
|
|
8745
|
+
},
|
|
8746
|
+
"ar-SA": {
|
|
8747
|
+
editPanel: {
|
|
8748
|
+
textResize: {
|
|
8749
|
+
autoWidth: "عرض تلقائي",
|
|
8750
|
+
autoHeight: "ارتفاع تلقائي",
|
|
8751
|
+
fixed: "حجم ثابت",
|
|
8752
|
+
},
|
|
8753
|
+
},
|
|
8754
|
+
designEditor: {
|
|
8755
|
+
tools: {
|
|
8756
|
+
line: "خط",
|
|
8757
|
+
arrow: "سهم",
|
|
8758
|
+
ellipse: "شكل بيضاوي",
|
|
8759
|
+
polygon: "مضلع",
|
|
8760
|
+
star: "نجمة",
|
|
8761
|
+
imageVideo: "صورة/فيديو...",
|
|
8762
|
+
},
|
|
8763
|
+
},
|
|
8764
|
+
},
|
|
8765
|
+
} satisfies Record<Exclude<LocaleCode, "en-US">, PartialMessages>;
|
|
8766
|
+
|
|
8542
8767
|
export const messagesByLocale = {
|
|
8543
8768
|
"en-US": enUS,
|
|
8544
8769
|
"zh-TW": mergeMessages(
|
|
8545
|
-
mergePartialMessages(
|
|
8770
|
+
mergePartialMessages(
|
|
8771
|
+
zhTW,
|
|
8772
|
+
designModeFeatureOverrides["zh-TW"],
|
|
8773
|
+
designShapeToolOverrides["zh-TW"],
|
|
8774
|
+
),
|
|
8546
8775
|
),
|
|
8547
8776
|
"zh-CN": mergeMessages(
|
|
8548
8777
|
mergePartialMessages(
|
|
@@ -8551,6 +8780,7 @@ export const messagesByLocale = {
|
|
|
8551
8780
|
designExactEnglishOverrides["zh-CN"],
|
|
8552
8781
|
designModeFeatureOverrides["zh-CN"],
|
|
8553
8782
|
designCanvasFeatureOverrides["zh-CN"],
|
|
8783
|
+
designShapeToolOverrides["zh-CN"],
|
|
8554
8784
|
{
|
|
8555
8785
|
root: {
|
|
8556
8786
|
commandActions: "操作",
|
|
@@ -8599,6 +8829,7 @@ export const messagesByLocale = {
|
|
|
8599
8829
|
designExactEnglishOverrides["es-ES"],
|
|
8600
8830
|
designModeFeatureOverrides["es-ES"],
|
|
8601
8831
|
designCanvasFeatureOverrides["es-ES"],
|
|
8832
|
+
designShapeToolOverrides["es-ES"],
|
|
8602
8833
|
{
|
|
8603
8834
|
root: {
|
|
8604
8835
|
commandActions: "Acciones",
|
|
@@ -8647,6 +8878,7 @@ export const messagesByLocale = {
|
|
|
8647
8878
|
designExactEnglishOverrides["fr-FR"],
|
|
8648
8879
|
designModeFeatureOverrides["fr-FR"],
|
|
8649
8880
|
designCanvasFeatureOverrides["fr-FR"],
|
|
8881
|
+
designShapeToolOverrides["fr-FR"],
|
|
8650
8882
|
{
|
|
8651
8883
|
root: {
|
|
8652
8884
|
commandActions: "Actions",
|
|
@@ -8695,6 +8927,7 @@ export const messagesByLocale = {
|
|
|
8695
8927
|
designExactEnglishOverrides["de-DE"],
|
|
8696
8928
|
designModeFeatureOverrides["de-DE"],
|
|
8697
8929
|
designCanvasFeatureOverrides["de-DE"],
|
|
8930
|
+
designShapeToolOverrides["de-DE"],
|
|
8698
8931
|
{
|
|
8699
8932
|
root: {
|
|
8700
8933
|
commandActions: "Aktionen",
|
|
@@ -8743,6 +8976,7 @@ export const messagesByLocale = {
|
|
|
8743
8976
|
designExactEnglishOverrides["ja-JP"],
|
|
8744
8977
|
designModeFeatureOverrides["ja-JP"],
|
|
8745
8978
|
designCanvasFeatureOverrides["ja-JP"],
|
|
8979
|
+
designShapeToolOverrides["ja-JP"],
|
|
8746
8980
|
{
|
|
8747
8981
|
root: {
|
|
8748
8982
|
commandActions: "操作",
|
|
@@ -8792,6 +9026,7 @@ export const messagesByLocale = {
|
|
|
8792
9026
|
designExactEnglishOverrides["ko-KR"],
|
|
8793
9027
|
designModeFeatureOverrides["ko-KR"],
|
|
8794
9028
|
designCanvasFeatureOverrides["ko-KR"],
|
|
9029
|
+
designShapeToolOverrides["ko-KR"],
|
|
8795
9030
|
{
|
|
8796
9031
|
root: {
|
|
8797
9032
|
commandActions: "작업",
|
|
@@ -8839,6 +9074,7 @@ export const messagesByLocale = {
|
|
|
8839
9074
|
designExactEnglishOverrides["pt-BR"],
|
|
8840
9075
|
designModeFeatureOverrides["pt-BR"],
|
|
8841
9076
|
designCanvasFeatureOverrides["pt-BR"],
|
|
9077
|
+
designShapeToolOverrides["pt-BR"],
|
|
8842
9078
|
{
|
|
8843
9079
|
root: {
|
|
8844
9080
|
commandActions: "Ações",
|
|
@@ -8887,6 +9123,7 @@ export const messagesByLocale = {
|
|
|
8887
9123
|
designExactEnglishOverrides["hi-IN"],
|
|
8888
9124
|
designModeFeatureOverrides["hi-IN"],
|
|
8889
9125
|
designCanvasFeatureOverrides["hi-IN"],
|
|
9126
|
+
designShapeToolOverrides["hi-IN"],
|
|
8890
9127
|
{
|
|
8891
9128
|
root: {
|
|
8892
9129
|
commandActions: "क्रियाएं",
|
|
@@ -8935,6 +9172,7 @@ export const messagesByLocale = {
|
|
|
8935
9172
|
designExactEnglishOverrides["ar-SA"],
|
|
8936
9173
|
designModeFeatureOverrides["ar-SA"],
|
|
8937
9174
|
designCanvasFeatureOverrides["ar-SA"],
|
|
9175
|
+
designShapeToolOverrides["ar-SA"],
|
|
8938
9176
|
{
|
|
8939
9177
|
root: {
|
|
8940
9178
|
commandActions: "الإجراءات",
|