@agent-native/core 0.79.27 → 0.80.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.
Files changed (346) hide show
  1. package/corpus/README.md +2 -2
  2. package/corpus/core/CHANGELOG.md +26 -0
  3. package/corpus/core/docs/content/locales/ar-SA/template-design.mdx +41 -0
  4. package/corpus/core/docs/content/locales/de-DE/template-design.mdx +51 -0
  5. package/corpus/core/docs/content/locales/es-ES/template-design.mdx +50 -0
  6. package/corpus/core/docs/content/locales/fr-FR/template-design.mdx +49 -0
  7. package/corpus/core/docs/content/locales/hi-IN/template-design.mdx +44 -0
  8. package/corpus/core/docs/content/locales/ja-JP/template-design.mdx +46 -0
  9. package/corpus/core/docs/content/locales/ko-KR/template-design.mdx +44 -0
  10. package/corpus/core/docs/content/locales/pt-BR/template-design.mdx +48 -0
  11. package/corpus/core/docs/content/locales/zh-CN/template-design.mdx +36 -0
  12. package/corpus/core/docs/content/locales/zh-TW/template-design.mdx +38 -0
  13. package/corpus/core/docs/content/template-design.mdx +45 -0
  14. package/corpus/core/package.json +2 -1
  15. package/corpus/core/src/agent/engine/index.ts +1 -0
  16. package/corpus/core/src/agent/engine/registry.ts +40 -0
  17. package/corpus/core/src/agent/production-agent.ts +6 -2
  18. package/corpus/core/src/cli/design-connect.ts +490 -0
  19. package/corpus/core/src/cli/index.ts +16 -0
  20. package/corpus/core/src/cli/skills.ts +126 -3
  21. package/corpus/core/src/client/AssistantChat.tsx +43 -7
  22. package/corpus/core/src/client/agent-chat.ts +27 -3
  23. package/corpus/core/src/client/blocks/library/MermaidBlock.tsx +1 -1
  24. package/corpus/core/src/client/blocks/library/diagram.tsx +2 -2
  25. package/corpus/core/src/client/blocks/library/wireframe.tsx +1 -1
  26. package/corpus/core/src/client/chat/message-components.tsx +1 -1
  27. package/corpus/core/src/client/chat-model-groups.ts +1 -2
  28. package/corpus/core/src/client/components/LiveCursorOverlay.tsx +33 -66
  29. package/corpus/core/src/client/composer/TiptapComposer.tsx +99 -24
  30. package/corpus/core/src/client/composer/useVoiceDictation.ts +429 -260
  31. package/corpus/core/src/client/frame-protocol.ts +17 -2
  32. package/corpus/core/src/client/rich-markdown-editor/RegistryBlockNode.tsx +2 -2
  33. package/corpus/core/src/client/sharing/ShareButton.tsx +20 -15
  34. package/corpus/core/src/client/use-agent-engine-configured.ts +80 -28
  35. package/corpus/core/src/server/transcribe-voice.ts +57 -22
  36. package/corpus/core/src/shared/mcp-embed-headers.ts +23 -1
  37. package/corpus/core/src/styles/agent-native.css +56 -7
  38. package/corpus/core/src/templates/workspace-core/.agents/skills/voice-transcription/SKILL.md +10 -0
  39. package/corpus/core/src/vite/client.ts +2 -0
  40. package/corpus/core/src/voice/index.ts +18 -0
  41. package/corpus/core/src/voice/voice-cleanup-prompt.ts +38 -0
  42. package/corpus/core/src/voice/voice-context.ts +217 -0
  43. package/corpus/core/src/voice/voice-replacements.ts +75 -0
  44. package/corpus/templates/analytics/AGENTS.md +4 -3
  45. package/corpus/templates/analytics/actions/list-session-recordings.ts +6 -1
  46. package/corpus/templates/analytics/app/components/layout/Sidebar.tsx +557 -400
  47. package/corpus/templates/analytics/app/global.css +0 -4
  48. package/corpus/templates/analytics/app/i18n/zh-TW.ts +2 -0
  49. package/corpus/templates/analytics/app/i18n-data.ts +20 -0
  50. package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/index.tsx +33 -8
  51. package/corpus/templates/analytics/app/pages/sessions/SessionDetailPage.tsx +7 -0
  52. package/corpus/templates/analytics/app/pages/sessions/SessionsPage.tsx +7 -0
  53. package/corpus/templates/analytics/changelog/2026-06-28-ask-tab-now-matches-the-darker-app-background.md +6 -0
  54. package/corpus/templates/analytics/changelog/2026-06-28-dashboard-email-reports-now-use-cleaner-light-mode-snapshots.md +6 -0
  55. package/corpus/templates/analytics/changelog/2026-06-28-left-sidebar-collapses-into-an-animated-icon-rail.md +6 -0
  56. package/corpus/templates/analytics/changelog/2026-06-28-sessions-now-show-only-signed-in-recordings-with-playable-re.md +6 -0
  57. package/corpus/templates/analytics/seeds/dashboards/agent-native-templates-first-party.json +3 -3
  58. package/corpus/templates/analytics/server/lib/dashboard-report.ts +29 -7
  59. package/corpus/templates/analytics/server/lib/first-party-metric-catalog.ts +5 -2
  60. package/corpus/templates/analytics/server/lib/session-replay.ts +24 -4
  61. package/corpus/templates/assets/app/components/layout/Sidebar.tsx +4 -4
  62. package/corpus/templates/assets/changelog/2026-06-28-left-sidebar-collapse-motion-and-footer-chrome-are-quieter.md +6 -0
  63. package/corpus/templates/brain/app/components/layout/Layout.tsx +29 -2
  64. package/corpus/templates/brain/app/components/layout/Sidebar.tsx +131 -42
  65. package/corpus/templates/brain/app/i18n/zh-TW.ts +2 -0
  66. package/corpus/templates/brain/app/i18n-data.ts +20 -0
  67. package/corpus/templates/brain/changelog/2026-06-28-left-sidebar-collapses-into-an-animated-icon-rail.md +6 -0
  68. package/corpus/templates/calendar/app/components/layout/AppLayout.tsx +29 -1
  69. package/corpus/templates/calendar/app/components/layout/Sidebar.tsx +417 -299
  70. package/corpus/templates/calendar/app/i18n/zh-TW.ts +2 -0
  71. package/corpus/templates/calendar/app/i18n-data.ts +20 -0
  72. package/corpus/templates/calendar/changelog/2026-06-28-left-sidebar-collapses-into-an-animated-icon-rail.md +6 -0
  73. package/corpus/templates/chat/app/components/layout/Sidebar.tsx +6 -19
  74. package/corpus/templates/chat/changelog/2026-06-28-left-sidebar-collapse-motion-and-footer-chrome-are-quieter.md +6 -0
  75. package/corpus/templates/clips/AGENTS.md +4 -0
  76. package/corpus/templates/clips/actions/cleanup-transcript.ts +39 -9
  77. package/corpus/templates/clips/actions/finalize-meeting.ts +81 -12
  78. package/corpus/templates/clips/actions/lib/agents-md-context.ts +4 -1
  79. package/corpus/templates/clips/app/components/library/library-layout.tsx +3 -3
  80. package/corpus/templates/clips/app/components/meetings/share-meeting-dialog.tsx +1 -1
  81. package/corpus/templates/clips/app/components/player/share-dialog.tsx +2 -2
  82. package/corpus/templates/clips/changelog/2026-06-28-left-sidebar-footer-controls-use-less-divider-chrome.md +6 -0
  83. package/corpus/templates/clips/desktop/src/lib/personal-vocabulary.ts +13 -8
  84. package/corpus/templates/clips/desktop/src/lib/voice-dictation.ts +60 -1
  85. package/corpus/templates/content/app/components/editor/DocumentDatabase.tsx +1 -1
  86. package/corpus/templates/content/app/components/editor/database/DatabaseView.tsx +1 -1
  87. package/corpus/templates/content/app/components/sidebar/DocumentSidebar.tsx +5 -5
  88. package/corpus/templates/content/changelog/2026-06-28-left-sidebar-collapse-motion-and-footer-chrome-are-quieter.md +6 -0
  89. package/corpus/templates/design/.agents/skills/visual-edit/SKILL.md +137 -0
  90. package/corpus/templates/design/AGENTS.md +95 -5
  91. package/corpus/templates/design/DESIGN.md +82 -0
  92. package/corpus/templates/design/DEVELOPING.md +43 -0
  93. package/corpus/templates/design/actions/add-localhost-screens.ts +426 -0
  94. package/corpus/templates/design/actions/apply-shader.ts +277 -0
  95. package/corpus/templates/design/actions/apply-visual-edit.ts +303 -0
  96. package/corpus/templates/design/actions/connect-localhost.ts +183 -0
  97. package/corpus/templates/design/actions/edit-design.ts +195 -42
  98. package/corpus/templates/design/actions/generate-design.ts +71 -1
  99. package/corpus/templates/design/actions/generate-screens.ts +193 -0
  100. package/corpus/templates/design/actions/get-code-layer-projection.ts +191 -0
  101. package/corpus/templates/design/actions/get-shader.ts +119 -0
  102. package/corpus/templates/design/actions/list-localhost-connections.ts +95 -0
  103. package/corpus/templates/design/actions/navigate.ts +55 -2
  104. package/corpus/templates/design/actions/view-screen.ts +68 -1
  105. package/corpus/templates/design/agent-native.app-skill.json +10 -0
  106. package/corpus/templates/design/app/components/design/CanvasContextMenu.tsx +761 -0
  107. package/corpus/templates/design/app/components/design/DesignCanvas.tsx +2057 -103
  108. package/corpus/templates/design/app/components/design/DesignEditorSkeleton.tsx +74 -38
  109. package/corpus/templates/design/app/components/design/DesignExtensionsPanel.tsx +399 -0
  110. package/corpus/templates/design/app/components/design/EditPanel.tsx +3185 -439
  111. package/corpus/templates/design/app/components/design/LayersPanel.tsx +1124 -0
  112. package/corpus/templates/design/app/components/design/MultiScreenCanvas.tsx +3116 -147
  113. package/corpus/templates/design/app/components/design/QuestionFlow.tsx +700 -13
  114. package/corpus/templates/design/app/components/design/TweaksPanel.tsx +107 -63
  115. package/corpus/templates/design/app/components/design/index.ts +0 -5
  116. package/corpus/templates/design/app/components/design/inspector/AlignmentMatrix.tsx +286 -0
  117. package/corpus/templates/design/app/components/design/inspector/AutoLayoutMatrix.tsx +699 -0
  118. package/corpus/templates/design/app/components/design/inspector/ConstraintsWidget.tsx +461 -0
  119. package/corpus/templates/design/app/components/design/inspector/ExportSettingsPanel.tsx +166 -0
  120. package/corpus/templates/design/app/components/design/inspector/FigmaColorPicker.tsx +1420 -0
  121. package/corpus/templates/design/app/components/design/inspector/SHADER_INTEGRATION.md +420 -0
  122. package/corpus/templates/design/app/components/design/inspector/ScrubInput.tsx +215 -0
  123. package/corpus/templates/design/app/components/design/inspector/ShaderControls.stories.tsx +71 -0
  124. package/corpus/templates/design/app/components/design/inspector/ShaderControls.tsx +518 -0
  125. package/corpus/templates/design/app/components/design/inspector/ShaderEffectRow.tsx +106 -0
  126. package/corpus/templates/design/app/components/design/inspector/figma-icons.tsx +361 -0
  127. package/corpus/templates/design/app/components/design/inspector/index.ts +60 -0
  128. package/corpus/templates/design/app/components/design/inspector/scrub-input-utils.ts +201 -0
  129. package/corpus/templates/design/app/components/design/types.ts +23 -0
  130. package/corpus/templates/design/app/components/layout/Layout.tsx +24 -13
  131. package/corpus/templates/design/app/components/layout/Sidebar.tsx +4 -4
  132. package/corpus/templates/design/app/components/visual-editor/CanvasCommentPins.tsx +474 -36
  133. package/corpus/templates/design/app/components/visual-editor/DrawOverlay.tsx +22 -5
  134. package/corpus/templates/design/app/components/visual-editor/SaveStatusIndicator.tsx +24 -11
  135. package/corpus/templates/design/app/global.css +121 -3
  136. package/corpus/templates/design/app/hooks/use-agent-generating.ts +4 -0
  137. package/corpus/templates/design/app/hooks/use-navigation-state.ts +130 -8
  138. package/corpus/templates/design/app/hooks/useDesignHotkeys.ts +329 -0
  139. package/corpus/templates/design/app/i18n/zh-TW.ts +264 -0
  140. package/corpus/templates/design/app/i18n-data.ts +2790 -1
  141. package/corpus/templates/design/app/pages/DesignEditor.tsx +5108 -851
  142. package/corpus/templates/design/changelog/2026-06-28-annotate-mode-now-combines-drawing-and-comment-pins-in-one-c.md +6 -0
  143. package/corpus/templates/design/changelog/2026-06-28-design-editor-panel-borders-are-cleaner-so-the-canvas-edge-s.md +6 -0
  144. package/corpus/templates/design/changelog/2026-06-28-drawing-prompts-now-reliably-open-and-submit-to-the-design-a.md +6 -0
  145. package/corpus/templates/design/changelog/2026-06-28-editor-app-menus-now-use-an-outline-agent-native-mark-with-b.md +6 -0
  146. package/corpus/templates/design/changelog/2026-06-28-figma-style-code-design-mode.md +6 -0
  147. package/corpus/templates/design/changelog/2026-06-28-layer-selection-now-updates-chat-context-without-opening-the.md +6 -0
  148. package/corpus/templates/design/changelog/2026-06-28-layer-selections-now-preserve-hidden-and-locked-canvas-state.md +6 -0
  149. package/corpus/templates/design/changelog/2026-06-28-left-sidebar-collapse-motion-and-footer-chrome-are-quieter.md +6 -0
  150. package/corpus/templates/design/changelog/2026-06-28-live-cursors-now-keep-names-beside-a-cleaner-pointer-marker.md +6 -0
  151. package/corpus/templates/design/changelog/2026-06-28-mode-switching-now-lives-in-a-compact-bottom-right-icon-dock.md +6 -0
  152. package/corpus/templates/design/changelog/2026-06-28-screen-overview-now-handles-zooming-drawing-opening-and-dele.md +6 -0
  153. package/corpus/templates/design/changelog/2026-06-28-screen-overview-now-selects-screens-on-click-and-opens-them-.md +6 -0
  154. package/corpus/templates/design/changelog/2026-06-28-screen-overview-zooms-into-the-active-screen-with-smoother-e.md +6 -0
  155. package/corpus/templates/design/changelog/2026-06-28-selected-element-chips-in-chat-are-shorter-and-easier-to-sca.md +6 -0
  156. package/corpus/templates/design/changelog/2026-06-28-the-design-editor-toolbar-is-more-compact-and-the-app-menu-m.md +6 -0
  157. package/corpus/templates/design/changelog/2026-06-28-tweaks-now-live-at-the-top-of-the-design-sidebar-instead-of-.md +6 -0
  158. package/corpus/templates/design/changelog/2026-06-28-tweaks-now-live-in-the-right-inspector-beside-the-design-tab.md +6 -0
  159. package/corpus/templates/design/changelog/2026-06-29-active-sidebar-rows-use-soft-highlights.md +6 -0
  160. package/corpus/templates/design/changelog/2026-06-29-agents-can-now-open-screen-overview-focus-screens-and-add.md +6 -0
  161. package/corpus/templates/design/changelog/2026-06-29-design-agents-now-edit-broad-copy-changes-more-reliably.md +6 -0
  162. package/corpus/templates/design/changelog/2026-06-29-design-editor-extensions-now-run-inline-beside-the-artboard.md +6 -0
  163. package/corpus/templates/design/changelog/2026-06-29-sidebars-use-darker-chrome-and-chat-warns-immediately.md +6 -0
  164. package/corpus/templates/design/changelog/2026-06-29-visual-edit-can-open-localhost-routes-as-url-backed-screens.md +6 -0
  165. package/corpus/templates/design/package.json +1 -0
  166. package/corpus/templates/design/server/db/schema.ts +26 -0
  167. package/corpus/templates/design/server/lib/design-snapshot.ts +1 -1
  168. package/corpus/templates/design/server/plugins/agent-chat.ts +3 -0
  169. package/corpus/templates/design/shared/api.ts +27 -0
  170. package/corpus/templates/design/shared/canvas-frames.ts +103 -0
  171. package/corpus/templates/design/shared/canvas-math.ts +1058 -0
  172. package/corpus/templates/design/shared/code-layer.ts +2212 -0
  173. package/corpus/templates/design/shared/color-utils.ts +180 -0
  174. package/corpus/templates/design/shared/generation-session.ts +61 -0
  175. package/corpus/templates/design/shared/shader-presets.ts +782 -0
  176. package/corpus/templates/design/shared/shader-safety.ts +137 -0
  177. package/corpus/templates/design/shared/source-mode.ts +237 -0
  178. package/corpus/templates/forms/app/components/layout/Sidebar.tsx +149 -6
  179. package/corpus/templates/forms/app/i18n/ar-SA.ts +2 -0
  180. package/corpus/templates/forms/app/i18n/de-DE.ts +2 -0
  181. package/corpus/templates/forms/app/i18n/en-US.ts +2 -0
  182. package/corpus/templates/forms/app/i18n/es-ES.ts +2 -0
  183. package/corpus/templates/forms/app/i18n/fr-FR.ts +2 -0
  184. package/corpus/templates/forms/app/i18n/hi-IN.ts +2 -0
  185. package/corpus/templates/forms/app/i18n/ja-JP.ts +2 -0
  186. package/corpus/templates/forms/app/i18n/ko-KR.ts +2 -0
  187. package/corpus/templates/forms/app/i18n/pt-BR.ts +2 -0
  188. package/corpus/templates/forms/app/i18n/zh-CN.ts +2 -0
  189. package/corpus/templates/forms/app/i18n/zh-TW.ts +2 -0
  190. package/corpus/templates/forms/changelog/2026-06-28-left-sidebar-collapses-into-an-animated-icon-rail.md +6 -0
  191. package/corpus/templates/macros/app/components/layout/AppLayout.tsx +2 -2
  192. package/corpus/templates/macros/changelog/2026-06-28-left-sidebar-footer-controls-use-less-divider-chrome.md +6 -0
  193. package/corpus/templates/mail/app/components/layout/AppLayout.tsx +408 -247
  194. package/corpus/templates/mail/app/i18n/ar-SA.ts +4 -0
  195. package/corpus/templates/mail/app/i18n/de-DE.ts +4 -0
  196. package/corpus/templates/mail/app/i18n/en-US.ts +4 -0
  197. package/corpus/templates/mail/app/i18n/es-ES.ts +4 -0
  198. package/corpus/templates/mail/app/i18n/fr-FR.ts +4 -0
  199. package/corpus/templates/mail/app/i18n/hi-IN.ts +4 -0
  200. package/corpus/templates/mail/app/i18n/ja-JP.ts +4 -0
  201. package/corpus/templates/mail/app/i18n/ko-KR.ts +4 -0
  202. package/corpus/templates/mail/app/i18n/pt-BR.ts +4 -0
  203. package/corpus/templates/mail/app/i18n/zh-CN.ts +4 -0
  204. package/corpus/templates/mail/app/i18n/zh-TW.ts +4 -0
  205. package/corpus/templates/mail/changelog/2026-06-28-pinned-sidebar-collapses-into-an-animated-icon-rail.md +6 -0
  206. package/corpus/templates/plan/app/components/layout/Sidebar.tsx +6 -8
  207. package/corpus/templates/plan/app/components/plan/wireframe/Wireframe.tsx +1 -1
  208. package/corpus/templates/plan/app/global.css +61 -78
  209. package/corpus/templates/plan/app/pages/PlansPage.tsx +8 -0
  210. package/corpus/templates/plan/changelog/2026-06-28-left-sidebar-collapse-motion-and-footer-chrome-are-quieter.md +6 -0
  211. package/corpus/templates/plan/changelog/2026-06-28-plans-use-the-shared-neutral-light-and-dark-theme.md +6 -0
  212. package/corpus/templates/plan/changelog/2026-06-28-sending-open-feedback-from-a-plan-now-opens-the-inline-plan-.md +6 -0
  213. package/corpus/templates/slides/app/components/layout/Sidebar.tsx +5 -5
  214. package/corpus/templates/slides/changelog/2026-06-28-left-sidebar-collapse-motion-and-footer-chrome-are-quieter.md +6 -0
  215. package/corpus/templates/videos/app/components/Sidebar.tsx +2 -2
  216. package/corpus/templates/videos/app/components/layout/Layout.tsx +29 -2
  217. package/corpus/templates/videos/app/components/layout/NavSidebar.tsx +113 -30
  218. package/corpus/templates/videos/app/i18n/ar-SA.ts +2 -0
  219. package/corpus/templates/videos/app/i18n/de-DE.ts +2 -0
  220. package/corpus/templates/videos/app/i18n/en-US.ts +2 -0
  221. package/corpus/templates/videos/app/i18n/es-ES.ts +2 -0
  222. package/corpus/templates/videos/app/i18n/fr-FR.ts +2 -0
  223. package/corpus/templates/videos/app/i18n/hi-IN.ts +2 -0
  224. package/corpus/templates/videos/app/i18n/ja-JP.ts +2 -0
  225. package/corpus/templates/videos/app/i18n/ko-KR.ts +2 -0
  226. package/corpus/templates/videos/app/i18n/pt-BR.ts +2 -0
  227. package/corpus/templates/videos/app/i18n/zh-CN.ts +2 -0
  228. package/corpus/templates/videos/app/i18n/zh-TW.ts +2 -0
  229. package/corpus/templates/videos/changelog/2026-06-28-left-sidebar-collapses-into-an-animated-icon-rail.md +6 -0
  230. package/dist/agent/engine/index.d.ts +1 -1
  231. package/dist/agent/engine/index.d.ts.map +1 -1
  232. package/dist/agent/engine/index.js +1 -1
  233. package/dist/agent/engine/index.js.map +1 -1
  234. package/dist/agent/engine/registry.d.ts +9 -0
  235. package/dist/agent/engine/registry.d.ts.map +1 -1
  236. package/dist/agent/engine/registry.js +37 -0
  237. package/dist/agent/engine/registry.js.map +1 -1
  238. package/dist/agent/production-agent.d.ts.map +1 -1
  239. package/dist/agent/production-agent.js +4 -3
  240. package/dist/agent/production-agent.js.map +1 -1
  241. package/dist/cli/design-connect.d.ts +52 -0
  242. package/dist/cli/design-connect.d.ts.map +1 -0
  243. package/dist/cli/design-connect.js +409 -0
  244. package/dist/cli/design-connect.js.map +1 -0
  245. package/dist/cli/index.js +15 -0
  246. package/dist/cli/index.js.map +1 -1
  247. package/dist/cli/skills.d.ts +3 -0
  248. package/dist/cli/skills.d.ts.map +1 -1
  249. package/dist/cli/skills.js +121 -3
  250. package/dist/cli/skills.js.map +1 -1
  251. package/dist/client/AssistantChat.d.ts.map +1 -1
  252. package/dist/client/AssistantChat.js +38 -8
  253. package/dist/client/AssistantChat.js.map +1 -1
  254. package/dist/client/agent-chat.d.ts +6 -0
  255. package/dist/client/agent-chat.d.ts.map +1 -1
  256. package/dist/client/agent-chat.js +17 -3
  257. package/dist/client/agent-chat.js.map +1 -1
  258. package/dist/client/blocks/library/MermaidBlock.js +1 -1
  259. package/dist/client/blocks/library/MermaidBlock.js.map +1 -1
  260. package/dist/client/blocks/library/diagram.js +1 -1
  261. package/dist/client/blocks/library/diagram.js.map +1 -1
  262. package/dist/client/blocks/library/wireframe.js +1 -1
  263. package/dist/client/blocks/library/wireframe.js.map +1 -1
  264. package/dist/client/chat/message-components.js +1 -1
  265. package/dist/client/chat/message-components.js.map +1 -1
  266. package/dist/client/chat-model-groups.d.ts.map +1 -1
  267. package/dist/client/chat-model-groups.js +1 -2
  268. package/dist/client/chat-model-groups.js.map +1 -1
  269. package/dist/client/components/LiveCursorOverlay.d.ts +1 -2
  270. package/dist/client/components/LiveCursorOverlay.d.ts.map +1 -1
  271. package/dist/client/components/LiveCursorOverlay.js +19 -40
  272. package/dist/client/components/LiveCursorOverlay.js.map +1 -1
  273. package/dist/client/composer/TiptapComposer.d.ts +3 -1
  274. package/dist/client/composer/TiptapComposer.d.ts.map +1 -1
  275. package/dist/client/composer/TiptapComposer.js +86 -24
  276. package/dist/client/composer/TiptapComposer.js.map +1 -1
  277. package/dist/client/composer/useVoiceDictation.d.ts +9 -0
  278. package/dist/client/composer/useVoiceDictation.d.ts.map +1 -1
  279. package/dist/client/composer/useVoiceDictation.js +154 -32
  280. package/dist/client/composer/useVoiceDictation.js.map +1 -1
  281. package/dist/client/frame-protocol.d.ts +17 -2
  282. package/dist/client/frame-protocol.d.ts.map +1 -1
  283. package/dist/client/frame-protocol.js.map +1 -1
  284. package/dist/client/rich-markdown-editor/RegistryBlockNode.js +2 -2
  285. package/dist/client/rich-markdown-editor/RegistryBlockNode.js.map +1 -1
  286. package/dist/client/sharing/ShareButton.d.ts +2 -0
  287. package/dist/client/sharing/ShareButton.d.ts.map +1 -1
  288. package/dist/client/sharing/ShareButton.js +7 -6
  289. package/dist/client/sharing/ShareButton.js.map +1 -1
  290. package/dist/client/use-agent-engine-configured.d.ts +5 -0
  291. package/dist/client/use-agent-engine-configured.d.ts.map +1 -1
  292. package/dist/client/use-agent-engine-configured.js +51 -25
  293. package/dist/client/use-agent-engine-configured.js.map +1 -1
  294. package/dist/collab/awareness.d.ts +2 -2
  295. package/dist/collab/awareness.d.ts.map +1 -1
  296. package/dist/collab/routes.d.ts +1 -1
  297. package/dist/file-upload/actions/upload-image.d.ts +2 -2
  298. package/dist/notifications/routes.d.ts +3 -3
  299. package/dist/observability/routes.d.ts +8 -8
  300. package/dist/progress/routes.d.ts +1 -1
  301. package/dist/server/agent-engine-api-key-route.d.ts +1 -1
  302. package/dist/server/transcribe-voice.d.ts.map +1 -1
  303. package/dist/server/transcribe-voice.js +40 -24
  304. package/dist/server/transcribe-voice.js.map +1 -1
  305. package/dist/shared/mcp-embed-headers.d.ts +1 -0
  306. package/dist/shared/mcp-embed-headers.d.ts.map +1 -1
  307. package/dist/shared/mcp-embed-headers.js +20 -1
  308. package/dist/shared/mcp-embed-headers.js.map +1 -1
  309. package/dist/styles/agent-native.css +56 -7
  310. package/dist/templates/workspace-core/.agents/skills/voice-transcription/SKILL.md +10 -0
  311. package/dist/vite/client.d.ts.map +1 -1
  312. package/dist/vite/client.js +2 -0
  313. package/dist/vite/client.js.map +1 -1
  314. package/dist/voice/index.d.ts +5 -0
  315. package/dist/voice/index.d.ts.map +1 -0
  316. package/dist/voice/index.js +4 -0
  317. package/dist/voice/index.js.map +1 -0
  318. package/dist/voice/voice-cleanup-prompt.d.ts +6 -0
  319. package/dist/voice/voice-cleanup-prompt.d.ts.map +1 -0
  320. package/dist/voice/voice-cleanup-prompt.js +26 -0
  321. package/dist/voice/voice-cleanup-prompt.js.map +1 -0
  322. package/dist/voice/voice-context.d.ts +25 -0
  323. package/dist/voice/voice-context.d.ts.map +1 -0
  324. package/dist/voice/voice-context.js +156 -0
  325. package/dist/voice/voice-context.js.map +1 -0
  326. package/dist/voice/voice-replacements.d.ts +4 -0
  327. package/dist/voice/voice-replacements.d.ts.map +1 -0
  328. package/dist/voice/voice-replacements.js +52 -0
  329. package/dist/voice/voice-replacements.js.map +1 -0
  330. package/docs/content/locales/ar-SA/template-design.mdx +41 -0
  331. package/docs/content/locales/de-DE/template-design.mdx +51 -0
  332. package/docs/content/locales/es-ES/template-design.mdx +50 -0
  333. package/docs/content/locales/fr-FR/template-design.mdx +49 -0
  334. package/docs/content/locales/hi-IN/template-design.mdx +44 -0
  335. package/docs/content/locales/ja-JP/template-design.mdx +46 -0
  336. package/docs/content/locales/ko-KR/template-design.mdx +44 -0
  337. package/docs/content/locales/pt-BR/template-design.mdx +48 -0
  338. package/docs/content/locales/zh-CN/template-design.mdx +36 -0
  339. package/docs/content/locales/zh-TW/template-design.mdx +38 -0
  340. package/docs/content/template-design.mdx +45 -0
  341. package/package.json +2 -1
  342. package/src/templates/workspace-core/.agents/skills/voice-transcription/SKILL.md +10 -0
  343. package/corpus/templates/design/app/components/design/DesignToolbar.tsx +0 -339
  344. package/corpus/templates/design/app/components/design/PresentMode.tsx +0 -68
  345. package/corpus/templates/design/app/components/design/ViewportTabs.tsx +0 -149
  346. package/corpus/templates/design/app/components/design/ZoomControls.tsx +0 -157
@@ -56,11 +56,17 @@ const enUS = {
56
56
  sections: {
57
57
  page: "Page",
58
58
  typography: "Typography",
59
+ autoLayout: "Auto layout",
60
+ positionLayout: "Position",
59
61
  flexLayout: "Flex Layout",
60
62
  layout: "Layout",
61
63
  spacing: "Spacing",
62
64
  border: "Border",
63
65
  fill: "Fill",
66
+ stroke: "Stroke",
67
+ effects: "Effects",
68
+ codeConfidence: "Code",
69
+ export: "Export",
64
70
  },
65
71
  labels: {
66
72
  background: "Background",
@@ -81,6 +87,71 @@ const enUS = {
81
87
  padding: "Padding",
82
88
  margin: "Margin",
83
89
  radius: "Radius",
90
+ flexGrow: "Grow",
91
+ flexShrink: "Shrink",
92
+ flexBasis: "Basis",
93
+ order: "Order",
94
+ alignSelf: "Align self",
95
+ gridColumn: "Column",
96
+ gridRow: "Row",
97
+ position: "Position",
98
+ display: "Display",
99
+ image: "Image",
100
+ style: "Style",
101
+ rotation: "Rotation",
102
+ flipHorizontal: "Flip horizontal",
103
+ flipVertical: "Flip vertical",
104
+ shadow: "Shadow",
105
+ filter: "Filter",
106
+ addLayer: "Add layer",
107
+ removeLayer: "Remove layer",
108
+ showLayer: "Show layer",
109
+ hideLayer: "Hide layer",
110
+ linkSides: "Link sides",
111
+ unlinkSides: "Unlink sides",
112
+ allSides: "All",
113
+ cornerRadius: "Corner radius",
114
+ independentCorners: "Independent corners",
115
+ topLeft: "TL",
116
+ topRight: "TR",
117
+ bottomLeft: "BL",
118
+ bottomRight: "BR",
119
+ blend: "Blend",
120
+ border: "Border",
121
+ outline: "Outline",
122
+ inside: "Inside",
123
+ outside: "Outside",
124
+ dropShadow: "Drop shadow",
125
+ addDropShadow: "Add drop shadow",
126
+ innerShadow: "Inner shadow",
127
+ layerBlur: "Layer blur",
128
+ blur: "Blur",
129
+ spread: "Spread",
130
+ },
131
+ selection: {
132
+ pageContext: "Page defaults",
133
+ },
134
+ layoutContext: {
135
+ container: "Container",
136
+ child: "Child",
137
+ gridChild: "Grid child",
138
+ parent: "Parent",
139
+ flexContainer: "Flex",
140
+ notContainer: "Flow",
141
+ flexChild: "Flex child",
142
+ flowChild: "Flow child",
143
+ flowDescription:
144
+ "This layer is in normal document flow. Use position controls for explicit offsets, or ask the agent for structural layout changes.",
145
+ },
146
+ codeStatus: {
147
+ safeStyle: "Safe style edit",
148
+ safeStyleDescription:
149
+ "These controls patch inline styles immediately, then persist the HTML source.",
150
+ classTarget: "Stable class/id target",
151
+ selectorFallback: "Selector fallback",
152
+ agentStructural: "Agent needed for structural moves",
153
+ agentStructuralDescription:
154
+ "Moves, wrappers, and parent layout rewrites need the agent to preserve intent.",
84
155
  },
85
156
  sidePlaceholders: {
86
157
  top: "T",
@@ -136,6 +207,36 @@ const enUS = {
136
207
  stretch: "Stretch",
137
208
  baseline: "Baseline",
138
209
  },
210
+ alignSelfOptions: {
211
+ auto: "Auto",
212
+ start: "Start",
213
+ center: "Center",
214
+ end: "End",
215
+ stretch: "Stretch",
216
+ baseline: "Baseline",
217
+ },
218
+ displayOptions: {
219
+ block: "Block",
220
+ flex: "Flex",
221
+ grid: "Grid",
222
+ inline: "Inline",
223
+ inlineBlock: "Inline block",
224
+ none: "None",
225
+ },
226
+ positionOptions: {
227
+ static: "Static",
228
+ relative: "Relative",
229
+ absolute: "Absolute",
230
+ fixed: "Fixed",
231
+ sticky: "Sticky",
232
+ },
233
+ borderStyleOptions: {
234
+ none: "None",
235
+ solid: "Solid",
236
+ dashed: "Dashed",
237
+ dotted: "Dotted",
238
+ double: "Double",
239
+ },
139
240
  },
140
241
  designEditor: {
141
242
  generationMayHaveStopped:
@@ -150,14 +251,30 @@ const enUS = {
150
251
  backToDesigns: "Back to designs",
151
252
  clickToRename: "Click to rename",
152
253
  modes: {
254
+ annotate: "Annotate",
153
255
  comment: "Comment",
154
256
  edit: "Edit",
155
257
  draw: "Draw",
258
+ interact: "Interact",
259
+ screens: "Screens",
260
+ },
261
+ fileTabs: "Files",
262
+ tools: {
263
+ move: "Move",
264
+ frame: "Frame",
265
+ rect: "Rectangle",
266
+ text: "Text",
267
+ pen: "Pen",
268
+ hand: "Hand",
269
+ scale: "Scale",
156
270
  },
157
271
  undo: "Undo",
158
272
  undoShortcut: "Undo (⌘Z)",
159
273
  redo: "Redo",
160
274
  redoShortcut: "Redo (⇧⌘Z)",
275
+ duplicate: "Duplicate",
276
+ delete: "Delete",
277
+ view: "View",
161
278
  returnToCurrentScreen: "Return to current screen",
162
279
  openScreenOverview: "Open screen overview",
163
280
  currentScreen: "Current screen",
@@ -204,6 +321,17 @@ const enUS = {
204
321
  addTweakControls: "Add tweak controls",
205
322
  closeTweaks: "Close tweaks",
206
323
  noTweakControls: "No tweak controls yet.",
324
+ extensions: "Extensions",
325
+ addExtension: "Extension",
326
+ extensionsDocs: "Docs",
327
+ extensionsPromptTitle: "What should this extension do?",
328
+ extensionsPlaceholder:
329
+ "Style tools, selection helpers, artboard actions...",
330
+ extensionsEmptyTitle: "No editor extensions yet",
331
+ extensionsEmptyDescription:
332
+ "Build a small inspector extension that can read the selected element, call actions, or ask the agent to update the artboard.",
333
+ extensionsAvailable: "Available",
334
+ extensionsInstall: "Add",
207
335
  generatePlaceholder: "Describe what you want to build...",
208
336
  tweaksPromptTitle: "What tweaks do you want?",
209
337
  tweaksPlaceholder: "Accent options, density, radius, dark mode...",
@@ -222,6 +350,29 @@ const enUS = {
222
350
  closeOtherTabs: "Close Others",
223
351
  closeTab: "Close",
224
352
  fitToScreen: "Fit to screen",
353
+ patchProof: {
354
+ title: "Patch proof",
355
+ file: "File",
356
+ source: "Source",
357
+ capability: "Capability",
358
+ pending: "Runtime preview applied; source write pending",
359
+ verified: "Source write verified; rollback available",
360
+ rollback: "Rollback",
361
+ keep: "Keep",
362
+ selectorMissing: "The selected element no longer exists in this screen.",
363
+ status: {
364
+ runtime: "Runtime style applied",
365
+ queued: "Writing source patch",
366
+ applied: "Patch applied",
367
+ failed: "Patch failed",
368
+ rolledBack: "Rolled back",
369
+ },
370
+ },
371
+ capabilities: {
372
+ "deterministic-style-edit": "Safe style edit",
373
+ "deterministic-class-edit": "Safe class edit",
374
+ "agent-structural-edit": "Agent needed for structural move",
375
+ },
225
376
  toasts: {
226
377
  codingHandoffError: "Could not create coding handoff",
227
378
  codingHandoffCopied: "Coding handoff copied",
@@ -240,8 +391,107 @@ const enUS = {
240
391
  openScreenSvg: "Open a screen before exporting SVG",
241
392
  svgDownloaded: "SVG downloaded",
242
393
  svgExportError: "Could not export SVG",
394
+ screenDuplicated: "Screen duplicated",
395
+ screenDuplicateError: "Could not duplicate screen",
396
+ copied: "Copied",
397
+ pasted: "Pasted",
398
+ deleted: "Deleted",
399
+ propsCopied: "Properties copied",
400
+ propsPasted: "Properties pasted",
401
+ primitiveInsertFailed: "Could not add that layer to the screen",
402
+ layerMoveFailed: "Could not move that layer",
243
403
  },
244
404
  },
405
+ layersPanel: {
406
+ title: "Layers",
407
+ screens: "Screens",
408
+ addScreen: "Add screen",
409
+ searchPlaceholder: "Search layers...",
410
+ empty: "No layers",
411
+ noMatches: "No layers match",
412
+ designLayers: "Design layers",
413
+ codeLayers: "Code layers",
414
+ elementLayers: "Element layers",
415
+ collapse: "Collapse layer",
416
+ expand: "Expand layer",
417
+ lock: "Lock layer",
418
+ unlock: "Unlock layer",
419
+ hide: "Hide layer",
420
+ show: "Show layer",
421
+ rename: "Rename layer",
422
+ selected: "{{count}} selected",
423
+ },
424
+ multiScreenCanvas: {
425
+ duplicate: "Duplicate",
426
+ fork: "Fork",
427
+ fullView: "Full view",
428
+ preview: "Preview",
429
+ openAndDuplicate:
430
+ "Select {{display}}. Use Full view for focused scrolling.",
431
+ openAndPreview: "Select {{display}}. Use Full view for focused scrolling.",
432
+ doubleClickToEdit: "Use Full view for focused scrolling",
433
+ sources: {
434
+ localhost: {
435
+ label: "Localhost",
436
+ title: "Rendered from a local development server",
437
+ },
438
+ fusion: {
439
+ label: "Fusion",
440
+ title: "Rendered from Fusion",
441
+ },
442
+ inline: {
443
+ label: "Inline",
444
+ title: "Rendered from inline code",
445
+ },
446
+ },
447
+ previews: {
448
+ live: {
449
+ label: "Live",
450
+ shortLabel: "Live frame",
451
+ title: "Live preview",
452
+ },
453
+ snapshot: {
454
+ label: "Snapshot",
455
+ shortLabel: "Snapshot",
456
+ title: "Static cached snapshot",
457
+ },
458
+ preview: {
459
+ label: "Preview",
460
+ shortLabel: "Preview",
461
+ title: "Inline preview",
462
+ },
463
+ },
464
+ },
465
+ questionFlow: {
466
+ defaultTitle: "Shape the design first",
467
+ defaultDescription:
468
+ "Answer the high-leverage choices. Skip anything the agent should decide.",
469
+ answeredCount: "{{answered}} of {{total}} answered",
470
+ requiredCount: "{{answered}} of {{total}} required",
471
+ multiSelectHelp:
472
+ "Multi-select questions can take several chips. Use Other when the exact direction matters.",
473
+ ready: "Ready to continue.",
474
+ answerRequired: "Answer required cards to continue.",
475
+ skip: "Skip",
476
+ continue: "Continue",
477
+ chooseAny: "Choose any that apply",
478
+ chooseOne: "Choose one",
479
+ required: "Required",
480
+ textPlaceholder: "Type your answer...",
481
+ selectedCount: "{{count}} selected. Add or remove chips before continuing.",
482
+ selectUseful: "Select as many as are useful.",
483
+ other: "Other",
484
+ otherDescription: "Tell the agent exactly what you mean.",
485
+ customPlaceholder: "Type a custom answer...",
486
+ recommended: "Recommended",
487
+ dragFiles: "Drag files here or",
488
+ browse: "browse",
489
+ removeFile: "Remove {{name}}",
490
+ exploreLabel: "Explore a few options",
491
+ exploreDescription: "Show me distinct directions before committing.",
492
+ decideLabel: "Decide for me",
493
+ decideDescription: "Use judgment and keep moving.",
494
+ },
245
495
  promptDialog: {
246
496
  assetsTitle: "Assets",
247
497
  assetsImagePicker: "Assets image picker",
@@ -279,6 +529,46 @@ const enUS = {
279
529
  send: "Send",
280
530
  commentSent: "Comment sent",
281
531
  comment: "Comment",
532
+ annotationQueue: "Annotation queue",
533
+ annotationQueueCounts: "{{queued}} queued · {{sent}} sent",
534
+ batchApply: "Batch apply",
535
+ queued: "Queued",
536
+ queuedStatus: "Queued - {{status}}",
537
+ commentSentStatus: "Comment sent - {{status}}",
538
+ commentStatus: "Comment - {{status}}",
539
+ anchorLabel: "Anchor {{id}}",
540
+ nearText: 'near "{{text}}"',
541
+ submitShortcut: "{{mod}}+Enter to submit",
542
+ queue: "Queue",
543
+ pinStatus: {
544
+ deterministic: {
545
+ label: "Deterministic",
546
+ shortLabel: "Direct",
547
+ detail:
548
+ "Anchored to a layer or selector and likely actionable directly.",
549
+ },
550
+ "needs-agent": {
551
+ label: "Needs agent",
552
+ shortLabel: "Agent",
553
+ detail: "Needs interpretation, or only has canvas-position context.",
554
+ },
555
+ conflict: {
556
+ label: "Conflict",
557
+ shortLabel: "Conflict",
558
+ detail: "Possibly overlaps or contradicts another queued comment.",
559
+ },
560
+ unsupported: {
561
+ label: "Unsupported",
562
+ shortLabel: "Blocked",
563
+ detail: "Likely outside this canvas edit surface.",
564
+ },
565
+ },
566
+ pinStatusCount: {
567
+ direct: "Direct {{count}}",
568
+ agent: "Agent {{count}}",
569
+ conflict: "Conflict {{count}}",
570
+ blocked: "Blocked {{count}}",
571
+ },
282
572
  },
283
573
  home: {
284
574
  pageTitle: "Designs",
@@ -617,6 +907,9 @@ const designLocaleOverrides = {
617
907
  padding: "填充",
618
908
  margin: "利润",
619
909
  radius: "半径",
910
+ rotation: "旋转",
911
+ flipHorizontal: "水平翻转",
912
+ flipVertical: "垂直翻转",
620
913
  },
621
914
  sidePlaceholders: {
622
915
  top: "时间",
@@ -684,9 +977,12 @@ const designLocaleOverrides = {
684
977
  backToDesigns: "返回设计",
685
978
  clickToRename: "点击重命名",
686
979
  modes: {
980
+ annotate: "批注",
687
981
  comment: "评论",
688
982
  edit: "编辑",
689
983
  draw: "画",
984
+ interact: "Interact",
985
+ screens: "屏幕",
690
986
  },
691
987
  undo: "撤消",
692
988
  undoShortcut: "撤消 (⌘Z)",
@@ -967,6 +1263,9 @@ const designLocaleOverrides = {
967
1263
  padding: "Relleno",
968
1264
  margin: "Margen",
969
1265
  radius: "Radio",
1266
+ rotation: "Rotación",
1267
+ flipHorizontal: "Voltear horizontal",
1268
+ flipVertical: "Voltear vertical",
970
1269
  },
971
1270
  sidePlaceholders: {
972
1271
  top: "t",
@@ -1036,9 +1335,12 @@ const designLocaleOverrides = {
1036
1335
  backToDesigns: "Volver a diseños",
1037
1336
  clickToRename: "Haga clic para cambiar el nombre",
1038
1337
  modes: {
1338
+ annotate: "Anotar",
1039
1339
  comment: "Comentario",
1040
1340
  edit: "Editar",
1041
1341
  draw: "Dibujar",
1342
+ interact: "Interact",
1343
+ screens: "Pantallas",
1042
1344
  },
1043
1345
  undo: "Deshacer",
1044
1346
  undoShortcut: "Deshacer (⌘Z)",
@@ -1336,6 +1638,9 @@ const designLocaleOverrides = {
1336
1638
  padding: "Rembourrage",
1337
1639
  margin: "Marge",
1338
1640
  radius: "Rayon",
1641
+ rotation: "Rotation",
1642
+ flipHorizontal: "Retourner horizontalement",
1643
+ flipVertical: "Retourner verticalement",
1339
1644
  },
1340
1645
  sidePlaceholders: {
1341
1646
  top: "T",
@@ -1405,9 +1710,12 @@ const designLocaleOverrides = {
1405
1710
  backToDesigns: "Retour aux créations",
1406
1711
  clickToRename: "Cliquez pour renommer",
1407
1712
  modes: {
1713
+ annotate: "Annoter",
1408
1714
  comment: "Commentaire",
1409
1715
  edit: "Modifier",
1410
1716
  draw: "Dessiner",
1717
+ interact: "Interact",
1718
+ screens: "Écrans",
1411
1719
  },
1412
1720
  undo: "Défaire",
1413
1721
  undoShortcut: "Annuler (⌘Z)",
@@ -1707,6 +2015,9 @@ const designLocaleOverrides = {
1707
2015
  padding: "Polsterung",
1708
2016
  margin: "Marge",
1709
2017
  radius: "Radius",
2018
+ rotation: "Drehung",
2019
+ flipHorizontal: "Horizontal spiegeln",
2020
+ flipVertical: "Vertikal spiegeln",
1710
2021
  },
1711
2022
  sidePlaceholders: {
1712
2023
  top: "T",
@@ -1776,9 +2087,12 @@ const designLocaleOverrides = {
1776
2087
  backToDesigns: "Zurück zu den Designs",
1777
2088
  clickToRename: "Klicken Sie zum Umbenennen",
1778
2089
  modes: {
2090
+ annotate: "Annotieren",
1779
2091
  comment: "Kommentar",
1780
2092
  edit: "Bearbeiten",
1781
2093
  draw: "Ziehen",
2094
+ interact: "Interact",
2095
+ screens: "Bildschirme",
1782
2096
  },
1783
2097
  undo: "Rückgängig machen",
1784
2098
  undoShortcut: "Rückgängig machen (⌘Z)",
@@ -2078,6 +2392,9 @@ const designLocaleOverrides = {
2078
2392
  padding: "パディング",
2079
2393
  margin: "マージン",
2080
2394
  radius: "半径",
2395
+ rotation: "回転",
2396
+ flipHorizontal: "水平方向に反転",
2397
+ flipVertical: "垂直方向に反転",
2081
2398
  },
2082
2399
  sidePlaceholders: {
2083
2400
  top: "T",
@@ -2147,9 +2464,12 @@ const designLocaleOverrides = {
2147
2464
  backToDesigns: "デザインに戻る",
2148
2465
  clickToRename: "クリックして名前を変更します",
2149
2466
  modes: {
2467
+ annotate: "注釈",
2150
2468
  comment: "コメント",
2151
2469
  edit: "編集",
2152
2470
  draw: "描く",
2471
+ interact: "Interact",
2472
+ screens: "画面",
2153
2473
  },
2154
2474
  undo: "元に戻す",
2155
2475
  undoShortcut: "元に戻す (⌘Z)",
@@ -2444,6 +2764,9 @@ const designLocaleOverrides = {
2444
2764
  padding: "심",
2445
2765
  margin: "여유",
2446
2766
  radius: "반지름",
2767
+ rotation: "회전",
2768
+ flipHorizontal: "가로로 뒤집기",
2769
+ flipVertical: "세로로 뒤집기",
2447
2770
  },
2448
2771
  sidePlaceholders: {
2449
2772
  top: "티",
@@ -2513,9 +2836,12 @@ const designLocaleOverrides = {
2513
2836
  backToDesigns: "디자인으로 돌아가기",
2514
2837
  clickToRename: "이름을 바꾸려면 클릭하세요.",
2515
2838
  modes: {
2839
+ annotate: "주석",
2516
2840
  comment: "논평",
2517
2841
  edit: "편집하다",
2518
2842
  draw: "그리다",
2843
+ interact: "Interact",
2844
+ screens: "화면",
2519
2845
  },
2520
2846
  undo: "끄르다",
2521
2847
  undoShortcut: "실행 취소(⌘Z)",
@@ -2804,6 +3130,9 @@ const designLocaleOverrides = {
2804
3130
  padding: "Preenchimento",
2805
3131
  margin: "Margem",
2806
3132
  radius: "Raio",
3133
+ rotation: "Rotação",
3134
+ flipHorizontal: "Virar horizontalmente",
3135
+ flipVertical: "Virar verticalmente",
2807
3136
  },
2808
3137
  sidePlaceholders: {
2809
3138
  top: "T",
@@ -2873,9 +3202,12 @@ const designLocaleOverrides = {
2873
3202
  backToDesigns: "Voltar aos designs",
2874
3203
  clickToRename: "Clique para renomear",
2875
3204
  modes: {
3205
+ annotate: "Anotar",
2876
3206
  comment: "Comentário",
2877
3207
  edit: "Editar",
2878
3208
  draw: "Empate",
3209
+ interact: "Interact",
3210
+ screens: "Telas",
2879
3211
  },
2880
3212
  undo: "Desfazer",
2881
3213
  undoShortcut: "Desfazer (⌘Z)",
@@ -3172,6 +3504,9 @@ const designLocaleOverrides = {
3172
3504
  padding: "पैडिंग",
3173
3505
  margin: "अंतर",
3174
3506
  radius: "RADIUS",
3507
+ rotation: "घुमाव",
3508
+ flipHorizontal: "क्षैतिज पलटें",
3509
+ flipVertical: "ऊर्ध्वाधर पलटें",
3175
3510
  },
3176
3511
  sidePlaceholders: {
3177
3512
  top: "टी",
@@ -3240,9 +3575,12 @@ const designLocaleOverrides = {
3240
3575
  backToDesigns: "डिज़ाइन पर वापस जाएँ",
3241
3576
  clickToRename: "नाम बदलने के लिए क्लिक करें",
3242
3577
  modes: {
3578
+ annotate: "एनोटेट करें",
3243
3579
  comment: "टिप्पणी",
3244
3580
  edit: "संपादन करना",
3245
3581
  draw: "खींचना",
3582
+ interact: "Interact",
3583
+ screens: "स्क्रीन",
3246
3584
  },
3247
3585
  undo: "पूर्ववत",
3248
3586
  undoShortcut: "पूर्ववत करें (⌘Z)",
@@ -3531,6 +3869,9 @@ const designLocaleOverrides = {
3531
3869
  padding: "حشوة",
3532
3870
  margin: "هامِش",
3533
3871
  radius: "نصف القطر",
3872
+ rotation: "دوران",
3873
+ flipHorizontal: "قلب أفقي",
3874
+ flipVertical: "قلب عمودي",
3534
3875
  },
3535
3876
  sidePlaceholders: {
3536
3877
  top: "ت",
@@ -3599,9 +3940,12 @@ const designLocaleOverrides = {
3599
3940
  backToDesigns: "العودة إلى التصاميم",
3600
3941
  clickToRename: "انقر لإعادة التسمية",
3601
3942
  modes: {
3943
+ annotate: "تعليق توضيحي",
3602
3944
  comment: "تعليق",
3603
3945
  edit: "يحرر",
3604
3946
  draw: "يرسم",
3947
+ interact: "Interact",
3948
+ screens: "الشاشات",
3605
3949
  },
3606
3950
  undo: "تراجع",
3607
3951
  undoShortcut: "تراجع (⌘Z)",
@@ -3876,6 +4220,16 @@ const designRawLiteralOverrides = {
3876
4220
  addTweakControls: "添加调整控件",
3877
4221
  closeTweaks: "关闭调整",
3878
4222
  noTweakControls: "还没有调整控件。",
4223
+ extensions: "扩展",
4224
+ addExtension: "扩展",
4225
+ extensionsDocs: "文档",
4226
+ extensionsPromptTitle: "这个扩展应该做什么?",
4227
+ extensionsPlaceholder: "样式工具、选择辅助、画板操作...",
4228
+ extensionsEmptyTitle: "还没有编辑器扩展",
4229
+ extensionsEmptyDescription:
4230
+ "构建一个小型检查器扩展,用来读取所选元素、调用操作,或让代理更新画板。",
4231
+ extensionsAvailable: "可用",
4232
+ extensionsInstall: "添加",
3879
4233
  designPreview: "Design 预览",
3880
4234
  presentMode: "呈现模式",
3881
4235
  useThisDirection: "使用这个方向",
@@ -4012,6 +4366,17 @@ const designRawLiteralOverrides = {
4012
4366
  addTweakControls: "Agregar controles de ajuste",
4013
4367
  closeTweaks: "Cerrar ajustes",
4014
4368
  noTweakControls: "Aún no hay controles de ajuste.",
4369
+ extensions: "Extensiones",
4370
+ addExtension: "Extensión",
4371
+ extensionsDocs: "Docs",
4372
+ extensionsPromptTitle: "¿Qué debe hacer esta extensión?",
4373
+ extensionsPlaceholder:
4374
+ "Herramientas de estilo, selección, acciones de mesa...",
4375
+ extensionsEmptyTitle: "Aún no hay extensiones del editor",
4376
+ extensionsEmptyDescription:
4377
+ "Crea una pequeña extensión del inspector que pueda leer el elemento seleccionado, llamar acciones o pedir al agente que actualice la mesa de trabajo.",
4378
+ extensionsAvailable: "Disponibles",
4379
+ extensionsInstall: "Agregar",
4015
4380
  designPreview: "Vista previa de Design",
4016
4381
  presentMode: "Modo presente",
4017
4382
  useThisDirection: "Usa esta dirección",
@@ -4152,6 +4517,17 @@ const designRawLiteralOverrides = {
4152
4517
  addTweakControls: "Ajouter des contrôles de réglage",
4153
4518
  closeTweaks: "Fermer les réglages",
4154
4519
  noTweakControls: "Pas encore de contrôles de réglage.",
4520
+ extensions: "Extensions",
4521
+ addExtension: "Extension",
4522
+ extensionsDocs: "Docs",
4523
+ extensionsPromptTitle: "Que doit faire cette extension ?",
4524
+ extensionsPlaceholder:
4525
+ "Outils de style, aides de sélection, actions de plan...",
4526
+ extensionsEmptyTitle: "Aucune extension d’éditeur pour l’instant",
4527
+ extensionsEmptyDescription:
4528
+ "Créez une petite extension d’inspecteur qui peut lire l’élément sélectionné, appeler des actions ou demander à l’agent de mettre à jour le plan.",
4529
+ extensionsAvailable: "Disponibles",
4530
+ extensionsInstall: "Ajouter",
4155
4531
  designPreview: "Aperçu de Design",
4156
4532
  presentMode: "Mode Présent",
4157
4533
  useThisDirection: "Utilisez cette direction",
@@ -4292,6 +4668,17 @@ const designRawLiteralOverrides = {
4292
4668
  addTweakControls: "Fügen Sie Optimierungssteuerelemente hinzu",
4293
4669
  closeTweaks: "Enge Optimierungen",
4294
4670
  noTweakControls: "Noch keine Optimierungssteuerung.",
4671
+ extensions: "Erweiterungen",
4672
+ addExtension: "Erweiterung",
4673
+ extensionsDocs: "Dokumentation",
4674
+ extensionsPromptTitle: "Was soll diese Erweiterung tun?",
4675
+ extensionsPlaceholder:
4676
+ "Stilwerkzeuge, Auswahlhilfen, Arbeitsflächenaktionen...",
4677
+ extensionsEmptyTitle: "Noch keine Editor-Erweiterungen",
4678
+ extensionsEmptyDescription:
4679
+ "Erstellen Sie eine kleine Inspector-Erweiterung, die das ausgewählte Element lesen, Aktionen aufrufen oder den Agenten bitten kann, die Arbeitsfläche zu aktualisieren.",
4680
+ extensionsAvailable: "Verfügbar",
4681
+ extensionsInstall: "Hinzufügen",
4295
4682
  designPreview: "Design-Vorschau",
4296
4683
  presentMode: "Gegenwartsmodus",
4297
4684
  useThisDirection: "Benutzen Sie diese Richtung",
@@ -4433,6 +4820,16 @@ const designRawLiteralOverrides = {
4433
4820
  addTweakControls: "微調整コントロールを追加する",
4434
4821
  closeTweaks: "微調整を閉じる",
4435
4822
  noTweakControls: "まだ調整コントロールはありません。",
4823
+ extensions: "拡張機能",
4824
+ addExtension: "拡張機能",
4825
+ extensionsDocs: "ドキュメント",
4826
+ extensionsPromptTitle: "この拡張機能で何をしますか?",
4827
+ extensionsPlaceholder: "スタイルツール、選択補助、アートボード操作...",
4828
+ extensionsEmptyTitle: "エディター拡張機能はまだありません",
4829
+ extensionsEmptyDescription:
4830
+ "選択中の要素を読み取り、アクションを呼び出し、エージェントにアートボード更新を依頼できる小さなインスペクター拡張機能を作成します。",
4831
+ extensionsAvailable: "利用可能",
4832
+ extensionsInstall: "追加",
4436
4833
  designPreview: "Design プレビュー",
4437
4834
  presentMode: "プレゼントモード",
4438
4835
  useThisDirection: "この方向を使用してください",
@@ -4570,6 +4967,16 @@ const designRawLiteralOverrides = {
4570
4967
  addTweakControls: "조정 컨트롤 추가",
4571
4968
  closeTweaks: "조정 닫기",
4572
4969
  noTweakControls: "아직 조정 컨트롤이 없습니다.",
4970
+ extensions: "확장",
4971
+ addExtension: "확장",
4972
+ extensionsDocs: "문서",
4973
+ extensionsPromptTitle: "이 확장은 무엇을 해야 하나요?",
4974
+ extensionsPlaceholder: "스타일 도구, 선택 도우미, 아트보드 작업...",
4975
+ extensionsEmptyTitle: "아직 에디터 확장이 없습니다",
4976
+ extensionsEmptyDescription:
4977
+ "선택한 요소를 읽고, 액션을 호출하거나, 에이전트에게 아트보드 업데이트를 요청할 수 있는 작은 인스펙터 확장을 만드세요.",
4978
+ extensionsAvailable: "사용 가능",
4979
+ extensionsInstall: "추가",
4573
4980
  designPreview: "Design 미리보기",
4574
4981
  presentMode: "현재 모드",
4575
4982
  useThisDirection: "이 방향을 사용하세요",
@@ -4706,6 +5113,17 @@ const designRawLiteralOverrides = {
4706
5113
  addTweakControls: "Adicionar controles de ajuste",
4707
5114
  closeTweaks: "Fechar ajustes",
4708
5115
  noTweakControls: "Nenhum controle de ajuste ainda.",
5116
+ extensions: "Extensões",
5117
+ addExtension: "Extensão",
5118
+ extensionsDocs: "Docs",
5119
+ extensionsPromptTitle: "O que esta extensão deve fazer?",
5120
+ extensionsPlaceholder:
5121
+ "Ferramentas de estilo, seleção, ações de prancheta...",
5122
+ extensionsEmptyTitle: "Ainda não há extensões do editor",
5123
+ extensionsEmptyDescription:
5124
+ "Crie uma pequena extensão do inspetor que possa ler o elemento selecionado, chamar ações ou pedir ao agente para atualizar a prancheta.",
5125
+ extensionsAvailable: "Disponíveis",
5126
+ extensionsInstall: "Adicionar",
4709
5127
  designPreview: "Visualização Design",
4710
5128
  presentMode: "Modo Presente",
4711
5129
  useThisDirection: "Use esta direção",
@@ -4846,6 +5264,16 @@ const designRawLiteralOverrides = {
4846
5264
  addTweakControls: "ट्विक नियंत्रण जोड़ें",
4847
5265
  closeTweaks: "बदलाव बंद करें",
4848
5266
  noTweakControls: "अभी तक कोई ट्विक नियंत्रण नहीं है.",
5267
+ extensions: "एक्सटेंशन",
5268
+ addExtension: "एक्सटेंशन",
5269
+ extensionsDocs: "दस्तावेज़",
5270
+ extensionsPromptTitle: "यह एक्सटेंशन क्या करे?",
5271
+ extensionsPlaceholder: "स्टाइल टूल, चयन सहायक, आर्टबोर्ड क्रियाएं...",
5272
+ extensionsEmptyTitle: "अभी कोई एडिटर एक्सटेंशन नहीं",
5273
+ extensionsEmptyDescription:
5274
+ "एक छोटा इंस्पेक्टर एक्सटेंशन बनाएं जो चयनित तत्व पढ़ सके, एक्शन कॉल कर सके, या एजेंट से आर्टबोर्ड अपडेट करा सके.",
5275
+ extensionsAvailable: "उपलब्ध",
5276
+ extensionsInstall: "जोड़ें",
4849
5277
  designPreview: "Design पूर्वावलोकन",
4850
5278
  presentMode: "वर्तमान मोड",
4851
5279
  useThisDirection: "इस दिशा का प्रयोग करें",
@@ -4982,6 +5410,16 @@ const designRawLiteralOverrides = {
4982
5410
  addTweakControls: "إضافة الضوابط القرص",
4983
5411
  closeTweaks: "إغلاق القرص",
4984
5412
  noTweakControls: "لا توجد ضوابط قرص حتى الآن.",
5413
+ extensions: "الإضافات",
5414
+ addExtension: "إضافة",
5415
+ extensionsDocs: "المستندات",
5416
+ extensionsPromptTitle: "ماذا يجب أن تفعل هذه الإضافة؟",
5417
+ extensionsPlaceholder: "أدوات النمط، مساعدات التحديد، إجراءات اللوحة...",
5418
+ extensionsEmptyTitle: "لا توجد إضافات للمحرر بعد",
5419
+ extensionsEmptyDescription:
5420
+ "أنشئ إضافة صغيرة للمفتش يمكنها قراءة العنصر المحدد، أو استدعاء الإجراءات، أو طلب تحديث اللوحة من الوكيل.",
5421
+ extensionsAvailable: "متاحة",
5422
+ extensionsInstall: "إضافة",
4985
5423
  designPreview: "معاينة Design",
4986
5424
  presentMode: "الوضع الحالي",
4987
5425
  useThisDirection: "استخدم هذا الاتجاه",
@@ -5770,14 +6208,2349 @@ const designExactEnglishOverrides = {
5770
6208
  },
5771
6209
  } satisfies Record<Exclude<LocaleCode, "en-US">, PartialMessages>;
5772
6210
 
6211
+ const designModeFeatureOverrides = {
6212
+ "zh-TW": {
6213
+ editPanel: {
6214
+ sections: {
6215
+ autoLayout: "自動布局",
6216
+ positionLayout: "位置",
6217
+ stroke: "描邊",
6218
+ effects: "效果",
6219
+ codeConfidence: "程式碼",
6220
+ },
6221
+ labels: {
6222
+ flexGrow: "增長",
6223
+ flexShrink: "收縮",
6224
+ flexBasis: "基準",
6225
+ order: "順序",
6226
+ alignSelf: "自身對齊",
6227
+ gridColumn: "欄",
6228
+ gridRow: "列",
6229
+ position: "位置",
6230
+ display: "顯示",
6231
+ image: "圖片",
6232
+ style: "樣式",
6233
+ shadow: "陰影",
6234
+ filter: "濾鏡",
6235
+ },
6236
+ selection: { pageContext: "頁面預設" },
6237
+ layoutContext: {
6238
+ container: "容器",
6239
+ child: "子層",
6240
+ gridChild: "格線子層",
6241
+ parent: "父層",
6242
+ flexContainer: "彈性",
6243
+ notContainer: "一般流",
6244
+ flexChild: "彈性子層",
6245
+ flowChild: "流式子層",
6246
+ flowDescription:
6247
+ "此圖層位於一般文件流中。可使用位置控制進行明確偏移,或請代理調整結構布局。",
6248
+ },
6249
+ codeStatus: {
6250
+ safeStyle: "安全樣式編輯",
6251
+ safeStyleDescription:
6252
+ "這些控制項會先套用即時樣式,再持久寫回 HTML 原始碼。",
6253
+ classTarget: "穩定 class/id 目標",
6254
+ selectorFallback: "選擇器備援",
6255
+ agentStructural: "結構移動需要代理",
6256
+ agentStructuralDescription:
6257
+ "移動、包裹層與父層布局重寫需要代理保留意圖。",
6258
+ },
6259
+ alignSelfOptions: {
6260
+ auto: "自動",
6261
+ start: "起點",
6262
+ center: "置中",
6263
+ end: "終點",
6264
+ stretch: "延展",
6265
+ baseline: "基線",
6266
+ },
6267
+ displayOptions: {
6268
+ block: "區塊",
6269
+ flex: "彈性",
6270
+ grid: "格線",
6271
+ inline: "行內",
6272
+ inlineBlock: "行內區塊",
6273
+ none: "無",
6274
+ },
6275
+ positionOptions: {
6276
+ static: "靜態",
6277
+ relative: "相對",
6278
+ absolute: "絕對",
6279
+ fixed: "固定",
6280
+ sticky: "黏著",
6281
+ },
6282
+ borderStyleOptions: {
6283
+ none: "無",
6284
+ solid: "實線",
6285
+ dashed: "虛線",
6286
+ dotted: "點線",
6287
+ double: "雙線",
6288
+ },
6289
+ },
6290
+ designEditor: {
6291
+ patchProof: {
6292
+ title: "補丁證明",
6293
+ file: "檔案",
6294
+ source: "來源",
6295
+ capability: "能力",
6296
+ pending: "已套用即時預覽;來源寫入待處理",
6297
+ verified: "來源寫入已驗證;可回復",
6298
+ rollback: "回復",
6299
+ keep: "保留",
6300
+ selectorMissing: "選取的元素已不在此畫面中。",
6301
+ status: {
6302
+ runtime: "已套用即時樣式",
6303
+ queued: "正在寫入來源補丁",
6304
+ applied: "補丁已套用",
6305
+ failed: "補丁失敗",
6306
+ rolledBack: "已回復",
6307
+ },
6308
+ },
6309
+ capabilities: {
6310
+ "deterministic-style-edit": "安全樣式編輯",
6311
+ "deterministic-class-edit": "安全 class 編輯",
6312
+ "agent-structural-edit": "結構移動需要代理",
6313
+ },
6314
+ toasts: {
6315
+ screenDuplicated: "畫面已複製",
6316
+ screenDuplicateError: "無法複製畫面",
6317
+ },
6318
+ },
6319
+ multiScreenCanvas: {
6320
+ duplicate: "複製",
6321
+ fork: "分支",
6322
+ fullView: "完整檢視",
6323
+ preview: "預覽",
6324
+ openAndDuplicate: "選取 {{display}}。使用完整檢視進行聚焦捲動。",
6325
+ openAndPreview: "選取 {{display}}。使用完整檢視進行聚焦捲動。",
6326
+ doubleClickToEdit: "使用完整檢視進行聚焦捲動",
6327
+ sources: {
6328
+ localhost: { label: "本機", title: "由本機開發伺服器渲染" },
6329
+ fusion: { label: "Fusion 遠端", title: "由 Fusion 渲染" },
6330
+ inline: { label: "內嵌", title: "由內嵌程式碼渲染" },
6331
+ },
6332
+ previews: {
6333
+ live: { label: "即時", shortLabel: "即時框架", title: "即時預覽" },
6334
+ snapshot: { label: "快照", shortLabel: "快照", title: "靜態快取快照" },
6335
+ preview: { label: "預覽", shortLabel: "預覽", title: "內嵌預覽" },
6336
+ },
6337
+ },
6338
+ questionFlow: {
6339
+ defaultTitle: "先塑造設計",
6340
+ defaultDescription: "回答高槓桿選項。代理可判斷的部分可以略過。",
6341
+ multiSelectHelp: "多選題可選多個籤。方向很精確時請使用其他。",
6342
+ ready: "已可繼續。",
6343
+ answerRequired: "回答必填卡片後才能繼續。",
6344
+ chooseAny: "選取所有適用項目",
6345
+ chooseOne: "選擇一項",
6346
+ textPlaceholder: "輸入您的回答...",
6347
+ selectUseful: "選取所有有用項目。",
6348
+ otherDescription: "清楚告訴代理您的意思。",
6349
+ customPlaceholder: "輸入自訂回答...",
6350
+ dragFiles: "將檔案拖到這裡或",
6351
+ exploreLabel: "探索幾個選項",
6352
+ exploreDescription: "定案前先展示不同方向。",
6353
+ decideLabel: "幫我決定",
6354
+ decideDescription: "用判斷力繼續推進。",
6355
+ },
6356
+ visualEditor: {
6357
+ annotationQueue: "註記佇列",
6358
+ batchApply: "批次套用",
6359
+ pinStatus: {
6360
+ deterministic: {
6361
+ detail: "已錨定到圖層或選擇器,通常可直接處理。",
6362
+ },
6363
+ "needs-agent": {
6364
+ label: "需要代理",
6365
+ detail: "需要解讀,或只有畫布位置脈絡。",
6366
+ },
6367
+ conflict: {
6368
+ detail: "可能與另一個佇列中的註解重疊或衝突。",
6369
+ },
6370
+ unsupported: {
6371
+ detail: "可能超出此畫布編輯範圍。",
6372
+ },
6373
+ },
6374
+ },
6375
+ },
6376
+ "zh-CN": {
6377
+ editPanel: {
6378
+ sections: {
6379
+ autoLayout: "自动布局",
6380
+ positionLayout: "位置",
6381
+ stroke: "描边",
6382
+ effects: "效果",
6383
+ codeConfidence: "代码",
6384
+ },
6385
+ labels: {
6386
+ flexGrow: "增长",
6387
+ flexShrink: "收缩",
6388
+ flexBasis: "基准",
6389
+ order: "顺序",
6390
+ alignSelf: "自身对齐",
6391
+ gridColumn: "列",
6392
+ gridRow: "行",
6393
+ position: "位置",
6394
+ display: "显示",
6395
+ image: "图片",
6396
+ style: "样式",
6397
+ shadow: "阴影",
6398
+ filter: "滤镜",
6399
+ },
6400
+ selection: { pageContext: "页面默认" },
6401
+ layoutContext: {
6402
+ container: "容器",
6403
+ child: "子层",
6404
+ gridChild: "网格子层",
6405
+ parent: "父层",
6406
+ flexContainer: "弹性",
6407
+ notContainer: "普通流",
6408
+ flexChild: "弹性子层",
6409
+ flowChild: "流式子层",
6410
+ flowDescription:
6411
+ "此图层位于普通文档流中。可使用位置控制设置明确偏移,或请代理调整结构布局。",
6412
+ },
6413
+ codeStatus: {
6414
+ safeStyle: "安全样式编辑",
6415
+ safeStyleDescription:
6416
+ "这些控件会先即时应用样式,然后持久写回 HTML 源码。",
6417
+ classTarget: "稳定 class/id 目标",
6418
+ selectorFallback: "选择器备用",
6419
+ agentStructural: "结构移动需要代理",
6420
+ agentStructuralDescription:
6421
+ "移动、包裹层和父级布局重写需要代理保留意图。",
6422
+ },
6423
+ alignSelfOptions: {
6424
+ auto: "自动",
6425
+ start: "起点",
6426
+ center: "居中",
6427
+ end: "终点",
6428
+ stretch: "拉伸",
6429
+ baseline: "基线",
6430
+ },
6431
+ displayOptions: {
6432
+ block: "块级",
6433
+ flex: "弹性",
6434
+ grid: "网格",
6435
+ inline: "行内",
6436
+ inlineBlock: "行内块",
6437
+ none: "无",
6438
+ },
6439
+ positionOptions: {
6440
+ static: "静态",
6441
+ relative: "相对",
6442
+ absolute: "绝对",
6443
+ fixed: "固定",
6444
+ sticky: "粘性",
6445
+ },
6446
+ borderStyleOptions: {
6447
+ none: "无",
6448
+ solid: "实线",
6449
+ dashed: "虚线",
6450
+ dotted: "点线",
6451
+ double: "双线",
6452
+ },
6453
+ },
6454
+ designEditor: {
6455
+ patchProof: {
6456
+ title: "补丁证明",
6457
+ file: "文件",
6458
+ source: "来源",
6459
+ capability: "能力",
6460
+ pending: "已应用即时预览;源码写入待处理",
6461
+ verified: "源码写入已验证;可回滚",
6462
+ rollback: "回滚",
6463
+ keep: "保留",
6464
+ selectorMissing: "选中的元素已不在此屏幕中。",
6465
+ status: {
6466
+ runtime: "已应用即时样式",
6467
+ queued: "正在写入源码补丁",
6468
+ applied: "补丁已应用",
6469
+ failed: "补丁失败",
6470
+ rolledBack: "已回滚",
6471
+ },
6472
+ },
6473
+ capabilities: {
6474
+ "deterministic-style-edit": "安全样式编辑",
6475
+ "deterministic-class-edit": "安全 class 编辑",
6476
+ "agent-structural-edit": "结构移动需要代理",
6477
+ },
6478
+ toasts: {
6479
+ screenDuplicated: "屏幕已复制",
6480
+ screenDuplicateError: "无法复制屏幕",
6481
+ },
6482
+ },
6483
+ multiScreenCanvas: {
6484
+ duplicate: "复制",
6485
+ fork: "分支",
6486
+ fullView: "完整视图",
6487
+ preview: "预览",
6488
+ openAndDuplicate: "选择 {{display}}。使用完整视图进行聚焦滚动。",
6489
+ openAndPreview: "选择 {{display}}。使用完整视图进行聚焦滚动。",
6490
+ doubleClickToEdit: "使用完整视图进行聚焦滚动",
6491
+ sources: {
6492
+ localhost: { label: "本机", title: "由本地开发服务器渲染" },
6493
+ fusion: { label: "Fusion 远端", title: "由 Fusion 渲染" },
6494
+ inline: { label: "内嵌", title: "由内嵌代码渲染" },
6495
+ },
6496
+ previews: {
6497
+ live: { label: "实时", shortLabel: "实时框架", title: "实时预览" },
6498
+ snapshot: { label: "快照", shortLabel: "快照", title: "静态缓存快照" },
6499
+ preview: { label: "预览", shortLabel: "预览", title: "内嵌预览" },
6500
+ },
6501
+ },
6502
+ questionFlow: {
6503
+ defaultTitle: "先明确设计方向",
6504
+ defaultDescription: "回答高影响选择。代理可以判断的部分可跳过。",
6505
+ multiSelectHelp: "多选题可选择多个标签。方向很精确时请使用其他。",
6506
+ ready: "可以继续。",
6507
+ answerRequired: "回答必填卡片后才能继续。",
6508
+ chooseAny: "选择所有适用项",
6509
+ chooseOne: "选择一项",
6510
+ textPlaceholder: "输入你的回答...",
6511
+ selectUseful: "选择所有有用项。",
6512
+ otherDescription: "清楚告诉代理你的意思。",
6513
+ customPlaceholder: "输入自定义回答...",
6514
+ dragFiles: "将文件拖到这里或",
6515
+ exploreLabel: "探索几个选项",
6516
+ exploreDescription: "定案前先展示不同方向。",
6517
+ decideLabel: "帮我决定",
6518
+ decideDescription: "用判断力继续推进。",
6519
+ },
6520
+ visualEditor: {
6521
+ annotationQueue: "标注队列",
6522
+ batchApply: "批量应用",
6523
+ pinStatus: {
6524
+ deterministic: {
6525
+ detail: "已锚定到图层或选择器,通常可直接处理。",
6526
+ },
6527
+ "needs-agent": {
6528
+ label: "需要代理",
6529
+ detail: "需要解读,或只有画布位置上下文。",
6530
+ },
6531
+ conflict: {
6532
+ detail: "可能与另一个队列评论重叠或冲突。",
6533
+ },
6534
+ unsupported: {
6535
+ detail: "可能超出此画布编辑范围。",
6536
+ },
6537
+ },
6538
+ },
6539
+ },
6540
+ "es-ES": {
6541
+ editPanel: {
6542
+ sections: {
6543
+ autoLayout: "Diseño automático",
6544
+ positionLayout: "Posición",
6545
+ stroke: "Trazo",
6546
+ effects: "Efectos",
6547
+ codeConfidence: "Código",
6548
+ },
6549
+ labels: {
6550
+ flexGrow: "Crecer",
6551
+ flexShrink: "Encoger",
6552
+ flexBasis: "Base",
6553
+ order: "Orden",
6554
+ alignSelf: "Autoalinear",
6555
+ gridColumn: "Columna",
6556
+ gridRow: "Fila",
6557
+ position: "Posición",
6558
+ display: "Visualización",
6559
+ image: "Imagen",
6560
+ style: "Estilo",
6561
+ shadow: "Sombra",
6562
+ filter: "Filtro",
6563
+ },
6564
+ selection: { pageContext: "Predeterminados de página" },
6565
+ layoutContext: {
6566
+ container: "Contenedor",
6567
+ child: "Hijo",
6568
+ gridChild: "Hijo de cuadrícula",
6569
+ parent: "Padre",
6570
+ flexContainer: "Flexible",
6571
+ notContainer: "Flujo",
6572
+ flexChild: "Hijo flexible",
6573
+ flowChild: "Hijo en flujo",
6574
+ flowDescription:
6575
+ "Esta capa está en el flujo normal del documento. Usa posición para offsets explícitos o pide al agente cambios estructurales.",
6576
+ },
6577
+ codeStatus: {
6578
+ safeStyle: "Edición segura de estilo",
6579
+ safeStyleDescription:
6580
+ "Estos controles aplican estilos al instante y luego persisten el HTML.",
6581
+ classTarget: "Objetivo class/id estable",
6582
+ selectorFallback: "Selector de respaldo",
6583
+ agentStructural: "Agente necesario para movimientos estructurales",
6584
+ agentStructuralDescription:
6585
+ "Mover, envolver y reescribir el layout padre requiere preservar intención.",
6586
+ },
6587
+ alignSelfOptions: {
6588
+ auto: "Automático",
6589
+ start: "Inicio",
6590
+ center: "Centro",
6591
+ end: "Fin",
6592
+ stretch: "Estirar",
6593
+ baseline: "Línea base",
6594
+ },
6595
+ displayOptions: {
6596
+ block: "Bloque",
6597
+ flex: "Flexible",
6598
+ grid: "Cuadrícula",
6599
+ inline: "En línea",
6600
+ inlineBlock: "Bloque en línea",
6601
+ none: "Ninguno",
6602
+ },
6603
+ positionOptions: {
6604
+ static: "Estática",
6605
+ relative: "Relativa",
6606
+ absolute: "Absoluta",
6607
+ fixed: "Fija",
6608
+ sticky: "Pegajosa",
6609
+ },
6610
+ borderStyleOptions: {
6611
+ none: "Ninguno",
6612
+ solid: "Sólido",
6613
+ dashed: "Discontinuo",
6614
+ dotted: "Punteado",
6615
+ double: "Doble",
6616
+ },
6617
+ },
6618
+ designEditor: {
6619
+ patchProof: {
6620
+ title: "Prueba del parche",
6621
+ file: "Archivo",
6622
+ source: "Origen",
6623
+ capability: "Capacidad",
6624
+ pending: "Vista previa aplicada; escritura de origen pendiente",
6625
+ verified: "Escritura verificada; rollback disponible",
6626
+ rollback: "Revertir",
6627
+ keep: "Conservar",
6628
+ selectorMissing:
6629
+ "El elemento seleccionado ya no existe en esta pantalla.",
6630
+ status: {
6631
+ runtime: "Estilo aplicado en runtime",
6632
+ queued: "Escribiendo parche de origen",
6633
+ applied: "Parche aplicado",
6634
+ failed: "Parche fallido",
6635
+ rolledBack: "Revertido",
6636
+ },
6637
+ },
6638
+ capabilities: {
6639
+ "deterministic-style-edit": "Edición segura de estilo",
6640
+ "deterministic-class-edit": "Edición segura de class",
6641
+ "agent-structural-edit": "Agente necesario para mover estructura",
6642
+ },
6643
+ toasts: {
6644
+ screenDuplicated: "Pantalla duplicada",
6645
+ screenDuplicateError: "No se pudo duplicar la pantalla",
6646
+ },
6647
+ },
6648
+ multiScreenCanvas: {
6649
+ duplicate: "Duplicar",
6650
+ fork: "Bifurcar",
6651
+ fullView: "Vista completa",
6652
+ preview: "Vista previa",
6653
+ openAndDuplicate:
6654
+ "Selecciona {{display}}. Usa Vista completa para desplazamiento enfocado.",
6655
+ openAndPreview:
6656
+ "Selecciona {{display}}. Usa Vista completa para desplazamiento enfocado.",
6657
+ doubleClickToEdit: "Usa Vista completa para desplazamiento enfocado",
6658
+ sources: {
6659
+ localhost: {
6660
+ label: "Local",
6661
+ title: "Renderizado desde servidor local",
6662
+ },
6663
+ fusion: { label: "Fusion remoto", title: "Renderizado desde Fusion" },
6664
+ inline: {
6665
+ label: "Integrado",
6666
+ title: "Renderizado desde código integrado",
6667
+ },
6668
+ },
6669
+ previews: {
6670
+ live: {
6671
+ label: "Vivo",
6672
+ shortLabel: "Marco vivo",
6673
+ title: "Vista previa viva",
6674
+ },
6675
+ snapshot: {
6676
+ label: "Captura",
6677
+ shortLabel: "Captura",
6678
+ title: "Captura cacheada",
6679
+ },
6680
+ preview: {
6681
+ label: "Vista previa",
6682
+ shortLabel: "Previa",
6683
+ title: "Previa integrada",
6684
+ },
6685
+ },
6686
+ },
6687
+ questionFlow: {
6688
+ defaultTitle: "Define primero el diseño",
6689
+ defaultDescription:
6690
+ "Responde las decisiones importantes. Omite lo que deba decidir el agente.",
6691
+ multiSelectHelp:
6692
+ "Las preguntas de selección múltiple admiten varios chips. Usa Otro cuando importe el matiz exacto.",
6693
+ ready: "Listo para continuar.",
6694
+ answerRequired: "Responde las tarjetas obligatorias para continuar.",
6695
+ chooseAny: "Elige las que apliquen",
6696
+ chooseOne: "Elige una",
6697
+ textPlaceholder: "Escribe tu respuesta...",
6698
+ selectUseful: "Selecciona todas las útiles.",
6699
+ otherDescription: "Dile al agente exactamente qué quieres decir.",
6700
+ customPlaceholder: "Escribe una respuesta personalizada...",
6701
+ dragFiles: "Arrastra archivos aquí o",
6702
+ exploreLabel: "Explorar opciones",
6703
+ exploreDescription: "Muéstrame direcciones distintas antes de decidir.",
6704
+ decideLabel: "Decide por mí",
6705
+ decideDescription: "Usa criterio y sigue avanzando.",
6706
+ },
6707
+ visualEditor: {
6708
+ annotationQueue: "Cola de anotaciones",
6709
+ batchApply: "Aplicar lote",
6710
+ pinStatus: {
6711
+ deterministic: {
6712
+ detail: "Anclado a una capa o selector y probablemente accionable.",
6713
+ },
6714
+ "needs-agent": {
6715
+ label: "Requiere agente",
6716
+ detail: "Necesita interpretación o solo tiene contexto de posición.",
6717
+ },
6718
+ conflict: {
6719
+ detail: "Puede solaparse o contradecir otro comentario en cola.",
6720
+ },
6721
+ unsupported: {
6722
+ detail: "Probablemente fuera de esta superficie de edición.",
6723
+ },
6724
+ },
6725
+ },
6726
+ },
6727
+ "fr-FR": {
6728
+ editPanel: {
6729
+ sections: {
6730
+ autoLayout: "Mise en page auto",
6731
+ positionLayout: "Position",
6732
+ stroke: "Contour",
6733
+ effects: "Effets",
6734
+ codeConfidence: "Code",
6735
+ },
6736
+ labels: {
6737
+ flexGrow: "Grandir",
6738
+ flexShrink: "Réduire",
6739
+ flexBasis: "Base",
6740
+ order: "Ordre",
6741
+ alignSelf: "Alignement propre",
6742
+ gridColumn: "Colonne",
6743
+ gridRow: "Rangée",
6744
+ position: "Position",
6745
+ display: "Affichage",
6746
+ image: "Image",
6747
+ style: "Style",
6748
+ shadow: "Ombre",
6749
+ filter: "Filtre",
6750
+ },
6751
+ selection: { pageContext: "Valeurs par défaut" },
6752
+ layoutContext: {
6753
+ container: "Conteneur",
6754
+ child: "Enfant",
6755
+ gridChild: "Enfant de grille",
6756
+ parent: "Parent",
6757
+ flexContainer: "Flexible",
6758
+ notContainer: "Flux",
6759
+ flexChild: "Enfant flexible",
6760
+ flowChild: "Enfant en flux",
6761
+ flowDescription:
6762
+ "Ce calque est dans le flux normal. Utilisez la position pour des décalages explicites ou demandez une modification structurelle.",
6763
+ },
6764
+ codeStatus: {
6765
+ safeStyle: "Édition de style sûre",
6766
+ safeStyleDescription:
6767
+ "Ces contrôles appliquent le style instantanément puis persistent le HTML.",
6768
+ classTarget: "Cible class/id stable",
6769
+ selectorFallback: "Sélecteur de secours",
6770
+ agentStructural: "Agent nécessaire pour les déplacements structurels",
6771
+ agentStructuralDescription:
6772
+ "Déplacements, wrappers et réécritures du parent doivent préserver l’intention.",
6773
+ },
6774
+ alignSelfOptions: {
6775
+ auto: "Automatique",
6776
+ start: "Début",
6777
+ center: "Centre",
6778
+ end: "Fin",
6779
+ stretch: "Étirer",
6780
+ baseline: "Ligne de base",
6781
+ },
6782
+ displayOptions: {
6783
+ block: "Bloc",
6784
+ flex: "Flexible",
6785
+ grid: "Grille",
6786
+ inline: "En ligne",
6787
+ inlineBlock: "Bloc en ligne",
6788
+ none: "Aucun",
6789
+ },
6790
+ positionOptions: {
6791
+ static: "Statique",
6792
+ relative: "Relative",
6793
+ absolute: "Absolue",
6794
+ fixed: "Fixe",
6795
+ sticky: "Collante",
6796
+ },
6797
+ borderStyleOptions: {
6798
+ none: "Aucun",
6799
+ solid: "Solide",
6800
+ dashed: "Tirets",
6801
+ dotted: "Pointillé",
6802
+ double: "Double",
6803
+ },
6804
+ },
6805
+ designEditor: {
6806
+ patchProof: {
6807
+ title: "Preuve de patch",
6808
+ file: "Fichier",
6809
+ source: "Source",
6810
+ capability: "Capacité",
6811
+ pending: "Aperçu runtime appliqué ; écriture source en attente",
6812
+ verified: "Écriture source vérifiée ; retour arrière disponible",
6813
+ rollback: "Revenir",
6814
+ keep: "Garder",
6815
+ selectorMissing: "L’élément sélectionné n’existe plus dans cet écran.",
6816
+ status: {
6817
+ runtime: "Style runtime appliqué",
6818
+ queued: "Écriture du patch source",
6819
+ applied: "Patch appliqué",
6820
+ failed: "Patch échoué",
6821
+ rolledBack: "Revenu en arrière",
6822
+ },
6823
+ },
6824
+ capabilities: {
6825
+ "deterministic-style-edit": "Édition de style sûre",
6826
+ "deterministic-class-edit": "Édition de class sûre",
6827
+ "agent-structural-edit": "Agent requis pour déplacer la structure",
6828
+ },
6829
+ toasts: {
6830
+ screenDuplicated: "Écran dupliqué",
6831
+ screenDuplicateError: "Impossible de dupliquer l’écran",
6832
+ },
6833
+ },
6834
+ multiScreenCanvas: {
6835
+ duplicate: "Dupliquer",
6836
+ fork: "Créer une branche",
6837
+ fullView: "Vue complète",
6838
+ preview: "Aperçu",
6839
+ openAndDuplicate:
6840
+ "Sélectionner {{display}}. Utilisez la vue complète pour le défilement ciblé.",
6841
+ openAndPreview:
6842
+ "Sélectionner {{display}}. Utilisez la vue complète pour le défilement ciblé.",
6843
+ doubleClickToEdit: "Utilisez la vue complète pour le défilement ciblé",
6844
+ sources: {
6845
+ localhost: { label: "Local", title: "Rendu depuis le serveur local" },
6846
+ fusion: { label: "Fusion distant", title: "Rendu depuis Fusion" },
6847
+ inline: { label: "Intégré", title: "Rendu depuis le code intégré" },
6848
+ },
6849
+ previews: {
6850
+ live: {
6851
+ label: "Direct",
6852
+ shortLabel: "Cadre direct",
6853
+ title: "Aperçu direct",
6854
+ },
6855
+ snapshot: {
6856
+ label: "Instantané",
6857
+ shortLabel: "Instantané",
6858
+ title: "Instantané cache",
6859
+ },
6860
+ preview: {
6861
+ label: "Aperçu",
6862
+ shortLabel: "Aperçu",
6863
+ title: "Aperçu intégré",
6864
+ },
6865
+ },
6866
+ },
6867
+ questionFlow: {
6868
+ defaultTitle: "Façonner le design d’abord",
6869
+ defaultDescription:
6870
+ "Répondez aux choix importants. Ignorez ce que l’agent peut décider.",
6871
+ multiSelectHelp:
6872
+ "Les questions à choix multiples acceptent plusieurs puces. Utilisez Autre pour une direction précise.",
6873
+ ready: "Prêt à continuer.",
6874
+ answerRequired: "Répondez aux cartes obligatoires pour continuer.",
6875
+ chooseAny: "Choisissez tout ce qui s’applique",
6876
+ chooseOne: "Choisissez une option",
6877
+ textPlaceholder: "Saisissez votre réponse...",
6878
+ selectUseful: "Sélectionnez tout ce qui est utile.",
6879
+ otherDescription: "Dites exactement à l’agent ce que vous voulez dire.",
6880
+ customPlaceholder: "Saisissez une réponse personnalisée...",
6881
+ dragFiles: "Glissez les fichiers ici ou",
6882
+ exploreLabel: "Explorer quelques options",
6883
+ exploreDescription:
6884
+ "Montrez-moi des directions distinctes avant de décider.",
6885
+ decideLabel: "Décidez pour moi",
6886
+ decideDescription: "Faites preuve de jugement et continuez.",
6887
+ },
6888
+ visualEditor: {
6889
+ annotationQueue: "File d’annotations",
6890
+ batchApply: "Appliquer le lot",
6891
+ pinStatus: {
6892
+ deterministic: {
6893
+ detail: "Ancré à un calque ou sélecteur et probablement actionnable.",
6894
+ },
6895
+ "needs-agent": {
6896
+ label: "Agent requis",
6897
+ detail: "Nécessite une interprétation ou seulement une position.",
6898
+ },
6899
+ conflict: {
6900
+ detail:
6901
+ "Peut chevaucher ou contredire un autre commentaire en attente.",
6902
+ },
6903
+ unsupported: {
6904
+ detail: "Probablement hors de cette surface d’édition.",
6905
+ },
6906
+ },
6907
+ },
6908
+ },
6909
+ "de-DE": {
6910
+ editPanel: {
6911
+ sections: {
6912
+ autoLayout: "Auto-Layout",
6913
+ positionLayout: "Position",
6914
+ stroke: "Kontur",
6915
+ effects: "Effekte",
6916
+ codeConfidence: "Code",
6917
+ },
6918
+ labels: {
6919
+ flexGrow: "Wachsen",
6920
+ flexShrink: "Schrumpfen",
6921
+ flexBasis: "Basis",
6922
+ order: "Reihenfolge",
6923
+ alignSelf: "Selbstausrichtung",
6924
+ gridColumn: "Spalte",
6925
+ gridRow: "Zeile",
6926
+ position: "Position",
6927
+ display: "Anzeige",
6928
+ image: "Bild",
6929
+ style: "Stil",
6930
+ shadow: "Schatten",
6931
+ filter: "Filter",
6932
+ },
6933
+ selection: { pageContext: "Seitenvorgaben" },
6934
+ layoutContext: {
6935
+ container: "Container",
6936
+ child: "Kind",
6937
+ gridChild: "Grid-Kind",
6938
+ parent: "Eltern",
6939
+ flexContainer: "Flexibel",
6940
+ notContainer: "Fluss",
6941
+ flexChild: "Flex-Kind",
6942
+ flowChild: "Fluss-Kind",
6943
+ flowDescription:
6944
+ "Diese Ebene liegt im normalen Dokumentfluss. Nutze Position für explizite Offsets oder den Agenten für Strukturänderungen.",
6945
+ },
6946
+ codeStatus: {
6947
+ safeStyle: "Sichere Stilbearbeitung",
6948
+ safeStyleDescription:
6949
+ "Diese Kontrollen wenden Styles sofort an und schreiben danach den HTML-Quelltext.",
6950
+ classTarget: "Stabiles class/id-Ziel",
6951
+ selectorFallback: "Selektor-Fallback",
6952
+ agentStructural: "Agent für strukturelle Bewegungen nötig",
6953
+ agentStructuralDescription:
6954
+ "Verschieben, Wrapper und Parent-Layouts müssen die Absicht bewahren.",
6955
+ },
6956
+ alignSelfOptions: {
6957
+ auto: "Automatisch",
6958
+ start: "Start",
6959
+ center: "Mitte",
6960
+ end: "Ende",
6961
+ stretch: "Strecken",
6962
+ baseline: "Grundlinie",
6963
+ },
6964
+ displayOptions: {
6965
+ block: "Block",
6966
+ flex: "Flexibel",
6967
+ grid: "Raster",
6968
+ inline: "Inline",
6969
+ inlineBlock: "Inline-Block",
6970
+ none: "Keine",
6971
+ },
6972
+ positionOptions: {
6973
+ static: "Statisch",
6974
+ relative: "Relativ",
6975
+ absolute: "Absolut",
6976
+ fixed: "Fixiert",
6977
+ sticky: "Haftend",
6978
+ },
6979
+ borderStyleOptions: {
6980
+ none: "Keine",
6981
+ solid: "Durchgezogen",
6982
+ dashed: "Gestrichelt",
6983
+ dotted: "Gepunktet",
6984
+ double: "Doppelt",
6985
+ },
6986
+ },
6987
+ designEditor: {
6988
+ patchProof: {
6989
+ title: "Patch-Nachweis",
6990
+ file: "Datei",
6991
+ source: "Quelle",
6992
+ capability: "Fähigkeit",
6993
+ pending: "Runtime-Vorschau angewendet; Quellschreibung wartet",
6994
+ verified: "Quellschreibung bestätigt; Rollback verfügbar",
6995
+ rollback: "Zurückrollen",
6996
+ keep: "Behalten",
6997
+ selectorMissing:
6998
+ "Das ausgewählte Element existiert in diesem Screen nicht mehr.",
6999
+ status: {
7000
+ runtime: "Runtime-Stil angewendet",
7001
+ queued: "Quellpatch wird geschrieben",
7002
+ applied: "Patch angewendet",
7003
+ failed: "Patch fehlgeschlagen",
7004
+ rolledBack: "Zurückgerollt",
7005
+ },
7006
+ },
7007
+ capabilities: {
7008
+ "deterministic-style-edit": "Sichere Stilbearbeitung",
7009
+ "deterministic-class-edit": "Sichere class-Bearbeitung",
7010
+ "agent-structural-edit": "Agent für Strukturbewegung nötig",
7011
+ },
7012
+ toasts: {
7013
+ screenDuplicated: "Screen dupliziert",
7014
+ screenDuplicateError: "Screen konnte nicht dupliziert werden",
7015
+ },
7016
+ },
7017
+ multiScreenCanvas: {
7018
+ duplicate: "Duplizieren",
7019
+ fork: "Abzweigen",
7020
+ fullView: "Vollansicht",
7021
+ preview: "Vorschau",
7022
+ openAndDuplicate:
7023
+ "{{display}} auswählen. Verwenden Sie die Vollansicht zum fokussierten Scrollen.",
7024
+ openAndPreview:
7025
+ "{{display}} auswählen. Verwenden Sie die Vollansicht zum fokussierten Scrollen.",
7026
+ doubleClickToEdit:
7027
+ "Verwenden Sie die Vollansicht zum fokussierten Scrollen",
7028
+ sources: {
7029
+ localhost: {
7030
+ label: "Lokal",
7031
+ title: "Vom lokalen Entwicklungsserver gerendert",
7032
+ },
7033
+ fusion: { label: "Fusion remote", title: "Von Fusion gerendert" },
7034
+ inline: {
7035
+ label: "Eingebettet",
7036
+ title: "Aus eingebettetem Code gerendert",
7037
+ },
7038
+ },
7039
+ previews: {
7040
+ live: {
7041
+ label: "Live",
7042
+ shortLabel: "Live-Rahmen",
7043
+ title: "Live-Vorschau",
7044
+ },
7045
+ snapshot: {
7046
+ label: "Snapshot",
7047
+ shortLabel: "Snapshot",
7048
+ title: "Statischer Cache-Snapshot",
7049
+ },
7050
+ preview: {
7051
+ label: "Vorschau",
7052
+ shortLabel: "Vorschau",
7053
+ title: "Eingebettete Vorschau",
7054
+ },
7055
+ },
7056
+ },
7057
+ questionFlow: {
7058
+ defaultTitle: "Design zuerst formen",
7059
+ defaultDescription:
7060
+ "Beantworte die wichtigen Entscheidungen. Überspringe, was der Agent entscheiden soll.",
7061
+ multiSelectHelp:
7062
+ "Mehrfachauswahl erlaubt mehrere Chips. Nutze Andere, wenn die genaue Richtung zählt.",
7063
+ ready: "Bereit zum Fortfahren.",
7064
+ answerRequired: "Beantworte Pflichtkarten, um fortzufahren.",
7065
+ chooseAny: "Wähle alle passenden Optionen",
7066
+ chooseOne: "Wähle eine Option",
7067
+ textPlaceholder: "Antwort eingeben...",
7068
+ selectUseful: "Wähle alles Nützliche aus.",
7069
+ otherDescription: "Sag dem Agenten genau, was du meinst.",
7070
+ customPlaceholder: "Eigene Antwort eingeben...",
7071
+ dragFiles: "Dateien hierher ziehen oder",
7072
+ exploreLabel: "Einige Optionen erkunden",
7073
+ exploreDescription: "Zeige verschiedene Richtungen vor der Entscheidung.",
7074
+ decideLabel: "Entscheide für mich",
7075
+ decideDescription: "Urteilsvermögen nutzen und weitermachen.",
7076
+ },
7077
+ visualEditor: {
7078
+ annotationQueue: "Anmerkungswarteschlange",
7079
+ batchApply: "Stapel anwenden",
7080
+ pinStatus: {
7081
+ deterministic: {
7082
+ detail:
7083
+ "An Ebene oder Selektor verankert und wahrscheinlich direkt umsetzbar.",
7084
+ },
7085
+ "needs-agent": {
7086
+ label: "Agent nötig",
7087
+ detail: "Benötigt Interpretation oder nur Positionskontext.",
7088
+ },
7089
+ conflict: {
7090
+ detail:
7091
+ "Kann sich mit einem anderen Kommentar überschneiden oder widersprechen.",
7092
+ },
7093
+ unsupported: {
7094
+ detail: "Wahrscheinlich außerhalb dieser Bearbeitungsfläche.",
7095
+ },
7096
+ },
7097
+ },
7098
+ },
7099
+ "ja-JP": {
7100
+ editPanel: {
7101
+ sections: {
7102
+ autoLayout: "オートレイアウト",
7103
+ positionLayout: "位置",
7104
+ stroke: "線",
7105
+ effects: "効果",
7106
+ codeConfidence: "コード",
7107
+ },
7108
+ labels: {
7109
+ flexGrow: "伸長",
7110
+ flexShrink: "縮小",
7111
+ flexBasis: "基準",
7112
+ order: "順序",
7113
+ alignSelf: "自己揃え",
7114
+ gridColumn: "列",
7115
+ gridRow: "行",
7116
+ position: "位置",
7117
+ display: "表示",
7118
+ image: "画像",
7119
+ style: "スタイル",
7120
+ shadow: "影",
7121
+ filter: "フィルター",
7122
+ },
7123
+ selection: { pageContext: "ページ既定値" },
7124
+ layoutContext: {
7125
+ container: "コンテナ",
7126
+ child: "子要素",
7127
+ gridChild: "グリッド子要素",
7128
+ parent: "親",
7129
+ flexContainer: "フレックス",
7130
+ notContainer: "フロー",
7131
+ flexChild: "フレックス子要素",
7132
+ flowChild: "フロー子要素",
7133
+ flowDescription:
7134
+ "このレイヤーは通常のドキュメントフロー内です。明示的な位置調整を使うか、構造変更はエージェントに依頼してください。",
7135
+ },
7136
+ codeStatus: {
7137
+ safeStyle: "安全なスタイル編集",
7138
+ safeStyleDescription:
7139
+ "この操作は即時にスタイルを適用し、その後 HTML ソースへ保存します。",
7140
+ classTarget: "安定した class/id ターゲット",
7141
+ selectorFallback: "セレクターフォールバック",
7142
+ agentStructural: "構造移動にはエージェントが必要",
7143
+ agentStructuralDescription:
7144
+ "移動、ラッパー、親レイアウトの変更は意図を保つ必要があります。",
7145
+ },
7146
+ alignSelfOptions: {
7147
+ auto: "自動",
7148
+ start: "開始",
7149
+ center: "中央",
7150
+ end: "終了",
7151
+ stretch: "伸ばす",
7152
+ baseline: "ベースライン",
7153
+ },
7154
+ displayOptions: {
7155
+ block: "ブロック",
7156
+ flex: "フレックス",
7157
+ grid: "グリッド",
7158
+ inline: "インライン",
7159
+ inlineBlock: "インラインブロック",
7160
+ none: "なし",
7161
+ },
7162
+ positionOptions: {
7163
+ static: "静的",
7164
+ relative: "相対",
7165
+ absolute: "絶対",
7166
+ fixed: "固定",
7167
+ sticky: "固定追従",
7168
+ },
7169
+ borderStyleOptions: {
7170
+ none: "なし",
7171
+ solid: "実線",
7172
+ dashed: "破線",
7173
+ dotted: "点線",
7174
+ double: "二重線",
7175
+ },
7176
+ },
7177
+ designEditor: {
7178
+ patchProof: {
7179
+ title: "パッチ証明",
7180
+ file: "ファイル",
7181
+ source: "ソース",
7182
+ capability: "能力",
7183
+ pending: "ランタイムプレビュー適用済み、ソース書き込み待ち",
7184
+ verified: "ソース書き込み確認済み、ロールバック可能",
7185
+ rollback: "戻す",
7186
+ keep: "保持",
7187
+ selectorMissing: "選択した要素はこの画面に存在しません。",
7188
+ status: {
7189
+ runtime: "ランタイムスタイル適用済み",
7190
+ queued: "ソースパッチを書き込み中",
7191
+ applied: "パッチ適用済み",
7192
+ failed: "パッチ失敗",
7193
+ rolledBack: "ロールバック済み",
7194
+ },
7195
+ },
7196
+ capabilities: {
7197
+ "deterministic-style-edit": "安全なスタイル編集",
7198
+ "deterministic-class-edit": "安全な class 編集",
7199
+ "agent-structural-edit": "構造移動にはエージェントが必要",
7200
+ },
7201
+ toasts: {
7202
+ screenDuplicated: "画面を複製しました",
7203
+ screenDuplicateError: "画面を複製できません",
7204
+ },
7205
+ },
7206
+ multiScreenCanvas: {
7207
+ duplicate: "複製",
7208
+ fork: "分岐",
7209
+ fullView: "フルビュー",
7210
+ preview: "プレビュー",
7211
+ openAndDuplicate:
7212
+ "{{display}} を選択します。集中してスクロールするにはフルビューを使用。",
7213
+ openAndPreview:
7214
+ "{{display}} を選択します。集中してスクロールするにはフルビューを使用。",
7215
+ doubleClickToEdit: "集中してスクロールするにはフルビューを使用",
7216
+ sources: {
7217
+ localhost: {
7218
+ label: "ローカル",
7219
+ title: "ローカル開発サーバーからレンダー",
7220
+ },
7221
+ fusion: { label: "Fusion リモート", title: "Fusion からレンダー" },
7222
+ inline: { label: "埋め込み", title: "埋め込みコードからレンダー" },
7223
+ },
7224
+ previews: {
7225
+ live: {
7226
+ label: "ライブ",
7227
+ shortLabel: "ライブフレーム",
7228
+ title: "ライブプレビュー",
7229
+ },
7230
+ snapshot: {
7231
+ label: "スナップショット",
7232
+ shortLabel: "スナップショット",
7233
+ title: "静的キャッシュスナップショット",
7234
+ },
7235
+ preview: {
7236
+ label: "プレビュー",
7237
+ shortLabel: "プレビュー",
7238
+ title: "埋め込みプレビュー",
7239
+ },
7240
+ },
7241
+ },
7242
+ questionFlow: {
7243
+ defaultTitle: "まずデザインを整える",
7244
+ defaultDescription:
7245
+ "重要な選択に答えます。エージェントに任せる部分はスキップできます。",
7246
+ multiSelectHelp:
7247
+ "複数選択は複数のチップを選べます。正確な方向が必要ならその他を使ってください。",
7248
+ ready: "続行できます。",
7249
+ answerRequired: "必須カードに回答すると続行できます。",
7250
+ chooseAny: "当てはまるものを選択",
7251
+ chooseOne: "1つ選択",
7252
+ textPlaceholder: "回答を入力...",
7253
+ selectUseful: "役立つものをすべて選択してください。",
7254
+ otherDescription: "意図をエージェントに正確に伝えてください。",
7255
+ customPlaceholder: "カスタム回答を入力...",
7256
+ dragFiles: "ここにファイルをドラッグ、または",
7257
+ exploreLabel: "いくつかの案を探索",
7258
+ exploreDescription: "決める前に異なる方向を見せてください。",
7259
+ decideLabel: "任せて決定",
7260
+ decideDescription: "判断して進めてください。",
7261
+ },
7262
+ visualEditor: {
7263
+ annotationQueue: "注釈キュー",
7264
+ batchApply: "まとめて適用",
7265
+ pinStatus: {
7266
+ deterministic: {
7267
+ detail: "レイヤーまたはセレクターに固定され、直接対応できそうです。",
7268
+ },
7269
+ "needs-agent": {
7270
+ label: "エージェント必要",
7271
+ detail: "解釈が必要、またはキャンバス位置のみの文脈です。",
7272
+ },
7273
+ conflict: {
7274
+ detail: "別のキュー内コメントと重複または矛盾する可能性があります。",
7275
+ },
7276
+ unsupported: {
7277
+ detail: "この編集面の範囲外の可能性があります。",
7278
+ },
7279
+ },
7280
+ },
7281
+ },
7282
+ "ko-KR": {
7283
+ editPanel: {
7284
+ sections: {
7285
+ autoLayout: "자동 레이아웃",
7286
+ positionLayout: "위치",
7287
+ stroke: "획",
7288
+ effects: "효과",
7289
+ codeConfidence: "코드",
7290
+ },
7291
+ labels: {
7292
+ flexGrow: "확장",
7293
+ flexShrink: "축소",
7294
+ flexBasis: "기준",
7295
+ order: "순서",
7296
+ alignSelf: "자체 정렬",
7297
+ gridColumn: "열",
7298
+ gridRow: "행",
7299
+ position: "위치",
7300
+ display: "표시",
7301
+ image: "이미지",
7302
+ style: "스타일",
7303
+ shadow: "그림자",
7304
+ filter: "필터",
7305
+ },
7306
+ selection: { pageContext: "페이지 기본값" },
7307
+ layoutContext: {
7308
+ container: "컨테이너",
7309
+ child: "자식",
7310
+ gridChild: "그리드 자식",
7311
+ parent: "부모",
7312
+ flexContainer: "플렉스",
7313
+ notContainer: "흐름",
7314
+ flexChild: "플렉스 자식",
7315
+ flowChild: "흐름 자식",
7316
+ flowDescription:
7317
+ "이 레이어는 일반 문서 흐름 안에 있습니다. 명시적 오프셋은 위치 제어를 쓰고 구조 변경은 에이전트에게 요청하세요.",
7318
+ },
7319
+ codeStatus: {
7320
+ safeStyle: "안전한 스타일 편집",
7321
+ safeStyleDescription:
7322
+ "이 제어는 런타임 스타일을 즉시 적용한 뒤 HTML 소스에 저장합니다.",
7323
+ classTarget: "안정적인 class/id 대상",
7324
+ selectorFallback: "선택자 대체",
7325
+ agentStructural: "구조 이동에는 에이전트 필요",
7326
+ agentStructuralDescription:
7327
+ "이동, 래퍼, 부모 레이아웃 재작성은 의도를 보존해야 합니다.",
7328
+ },
7329
+ alignSelfOptions: {
7330
+ auto: "자동",
7331
+ start: "시작",
7332
+ center: "가운데",
7333
+ end: "끝",
7334
+ stretch: "늘이기",
7335
+ baseline: "기준선",
7336
+ },
7337
+ displayOptions: {
7338
+ block: "블록",
7339
+ flex: "플렉스",
7340
+ grid: "그리드",
7341
+ inline: "인라인",
7342
+ inlineBlock: "인라인 블록",
7343
+ none: "없음",
7344
+ },
7345
+ positionOptions: {
7346
+ static: "정적",
7347
+ relative: "상대",
7348
+ absolute: "절대",
7349
+ fixed: "고정",
7350
+ sticky: "스티키",
7351
+ },
7352
+ borderStyleOptions: {
7353
+ none: "없음",
7354
+ solid: "실선",
7355
+ dashed: "파선",
7356
+ dotted: "점선",
7357
+ double: "이중선",
7358
+ },
7359
+ },
7360
+ designEditor: {
7361
+ patchProof: {
7362
+ title: "패치 증명",
7363
+ file: "파일",
7364
+ source: "소스",
7365
+ capability: "기능",
7366
+ pending: "런타임 미리보기가 적용됨; 소스 쓰기 대기 중",
7367
+ verified: "소스 쓰기 확인됨; 롤백 가능",
7368
+ rollback: "롤백",
7369
+ keep: "유지",
7370
+ selectorMissing: "선택한 요소가 이 화면에 더 이상 없습니다.",
7371
+ status: {
7372
+ runtime: "런타임 스타일 적용됨",
7373
+ queued: "소스 패치 작성 중",
7374
+ applied: "패치 적용됨",
7375
+ failed: "패치 실패",
7376
+ rolledBack: "롤백됨",
7377
+ },
7378
+ },
7379
+ capabilities: {
7380
+ "deterministic-style-edit": "안전한 스타일 편집",
7381
+ "deterministic-class-edit": "안전한 class 편집",
7382
+ "agent-structural-edit": "구조 이동에는 에이전트 필요",
7383
+ },
7384
+ toasts: {
7385
+ screenDuplicated: "화면이 복제됨",
7386
+ screenDuplicateError: "화면을 복제할 수 없음",
7387
+ },
7388
+ },
7389
+ multiScreenCanvas: {
7390
+ duplicate: "복제",
7391
+ fork: "분기",
7392
+ fullView: "전체 보기",
7393
+ preview: "미리보기",
7394
+ openAndDuplicate:
7395
+ "{{display}} 선택. 집중 스크롤에는 전체 보기를 사용하세요.",
7396
+ openAndPreview:
7397
+ "{{display}} 선택. 집중 스크롤에는 전체 보기를 사용하세요.",
7398
+ doubleClickToEdit: "집중 스크롤에는 전체 보기를 사용하세요",
7399
+ sources: {
7400
+ localhost: { label: "로컬", title: "로컬 개발 서버에서 렌더링됨" },
7401
+ fusion: { label: "Fusion 원격", title: "Fusion에서 렌더링됨" },
7402
+ inline: { label: "인라인", title: "인라인 코드에서 렌더링됨" },
7403
+ },
7404
+ previews: {
7405
+ live: {
7406
+ label: "실시간",
7407
+ shortLabel: "실시간 프레임",
7408
+ title: "실시간 미리보기",
7409
+ },
7410
+ snapshot: {
7411
+ label: "스냅샷",
7412
+ shortLabel: "스냅샷",
7413
+ title: "정적 캐시 스냅샷",
7414
+ },
7415
+ preview: {
7416
+ label: "미리보기",
7417
+ shortLabel: "미리보기",
7418
+ title: "인라인 미리보기",
7419
+ },
7420
+ },
7421
+ },
7422
+ questionFlow: {
7423
+ defaultTitle: "먼저 디자인 방향 잡기",
7424
+ defaultDescription:
7425
+ "영향이 큰 선택에 답하세요. 에이전트가 결정해도 되는 항목은 건너뛰세요.",
7426
+ multiSelectHelp:
7427
+ "다중 선택 질문은 여러 칩을 선택할 수 있습니다. 정확한 방향이 중요하면 기타를 사용하세요.",
7428
+ ready: "계속할 준비가 되었습니다.",
7429
+ answerRequired: "계속하려면 필수 카드를 답하세요.",
7430
+ chooseAny: "해당되는 항목 선택",
7431
+ chooseOne: "하나 선택",
7432
+ textPlaceholder: "답변 입력...",
7433
+ selectUseful: "유용한 항목을 모두 선택하세요.",
7434
+ otherDescription: "에이전트에게 의미를 정확히 알려주세요.",
7435
+ customPlaceholder: "사용자 지정 답변 입력...",
7436
+ dragFiles: "파일을 여기에 끌어오거나",
7437
+ exploreLabel: "몇 가지 옵션 탐색",
7438
+ exploreDescription: "결정 전에 서로 다른 방향을 보여주세요.",
7439
+ decideLabel: "대신 결정해줘",
7440
+ decideDescription: "판단해서 계속 진행하세요.",
7441
+ },
7442
+ visualEditor: {
7443
+ annotationQueue: "주석 대기열",
7444
+ batchApply: "일괄 적용",
7445
+ pinStatus: {
7446
+ deterministic: {
7447
+ detail: "레이어나 선택자에 고정되어 직접 처리할 가능성이 큽니다.",
7448
+ },
7449
+ "needs-agent": {
7450
+ label: "에이전트 필요",
7451
+ detail: "해석이 필요하거나 캔버스 위치 컨텍스트만 있습니다.",
7452
+ },
7453
+ conflict: {
7454
+ detail: "대기열의 다른 댓글과 겹치거나 충돌할 수 있습니다.",
7455
+ },
7456
+ unsupported: {
7457
+ detail: "이 캔버스 편집 범위 밖일 가능성이 큽니다.",
7458
+ },
7459
+ },
7460
+ },
7461
+ },
7462
+ "pt-BR": {
7463
+ editPanel: {
7464
+ sections: {
7465
+ autoLayout: "Layout automático",
7466
+ positionLayout: "Posição",
7467
+ stroke: "Traço",
7468
+ effects: "Efeitos",
7469
+ codeConfidence: "Código",
7470
+ },
7471
+ labels: {
7472
+ flexGrow: "Crescer",
7473
+ flexShrink: "Encolher",
7474
+ flexBasis: "Base",
7475
+ order: "Ordem",
7476
+ alignSelf: "Autoalinhar",
7477
+ gridColumn: "Coluna",
7478
+ gridRow: "Linha",
7479
+ position: "Posição",
7480
+ display: "Exibição",
7481
+ image: "Imagem",
7482
+ style: "Estilo",
7483
+ shadow: "Sombra",
7484
+ filter: "Filtro",
7485
+ },
7486
+ selection: { pageContext: "Padrões da página" },
7487
+ layoutContext: {
7488
+ container: "Contêiner",
7489
+ child: "Filho",
7490
+ gridChild: "Filho da grade",
7491
+ parent: "Pai",
7492
+ flexContainer: "Flexível",
7493
+ notContainer: "Fluxo",
7494
+ flexChild: "Filho flexível",
7495
+ flowChild: "Filho em fluxo",
7496
+ flowDescription:
7497
+ "Esta camada está no fluxo normal do documento. Use posição para deslocamentos explícitos ou peça mudanças estruturais ao agente.",
7498
+ },
7499
+ codeStatus: {
7500
+ safeStyle: "Edição segura de estilo",
7501
+ safeStyleDescription:
7502
+ "Estes controles aplicam estilos na hora e depois persistem o HTML.",
7503
+ classTarget: "Alvo class/id estável",
7504
+ selectorFallback: "Seletor reserva",
7505
+ agentStructural: "Agente necessário para movimentos estruturais",
7506
+ agentStructuralDescription:
7507
+ "Movimentos, wrappers e reescritas do layout pai precisam preservar intenção.",
7508
+ },
7509
+ alignSelfOptions: {
7510
+ auto: "Automático",
7511
+ start: "Início",
7512
+ center: "Centro",
7513
+ end: "Fim",
7514
+ stretch: "Esticar",
7515
+ baseline: "Linha base",
7516
+ },
7517
+ displayOptions: {
7518
+ block: "Bloco",
7519
+ flex: "Flexível",
7520
+ grid: "Grade",
7521
+ inline: "Em linha",
7522
+ inlineBlock: "Bloco em linha",
7523
+ none: "Nenhum",
7524
+ },
7525
+ positionOptions: {
7526
+ static: "Estática",
7527
+ relative: "Relativa",
7528
+ absolute: "Absoluta",
7529
+ fixed: "Fixa",
7530
+ sticky: "Aderente",
7531
+ },
7532
+ borderStyleOptions: {
7533
+ none: "Nenhum",
7534
+ solid: "Sólido",
7535
+ dashed: "Tracejado",
7536
+ dotted: "Pontilhado",
7537
+ double: "Duplo",
7538
+ },
7539
+ },
7540
+ designEditor: {
7541
+ patchProof: {
7542
+ title: "Prova do patch",
7543
+ file: "Arquivo",
7544
+ source: "Fonte",
7545
+ capability: "Capacidade",
7546
+ pending: "Prévia em runtime aplicada; escrita de fonte pendente",
7547
+ verified: "Escrita de fonte verificada; rollback disponível",
7548
+ rollback: "Reverter",
7549
+ keep: "Manter",
7550
+ selectorMissing: "O elemento selecionado não existe mais nesta tela.",
7551
+ status: {
7552
+ runtime: "Estilo em runtime aplicado",
7553
+ queued: "Escrevendo patch de fonte",
7554
+ applied: "Patch aplicado",
7555
+ failed: "Patch falhou",
7556
+ rolledBack: "Revertido",
7557
+ },
7558
+ },
7559
+ capabilities: {
7560
+ "deterministic-style-edit": "Edição segura de estilo",
7561
+ "deterministic-class-edit": "Edição segura de class",
7562
+ "agent-structural-edit": "Agente necessário para mover estrutura",
7563
+ },
7564
+ toasts: {
7565
+ screenDuplicated: "Tela duplicada",
7566
+ screenDuplicateError: "Não foi possível duplicar a tela",
7567
+ },
7568
+ },
7569
+ multiScreenCanvas: {
7570
+ duplicate: "Duplicar",
7571
+ fork: "Ramificar",
7572
+ fullView: "Visualização completa",
7573
+ preview: "Prévia",
7574
+ openAndDuplicate:
7575
+ "Selecione {{display}}. Use a Visualização completa para rolagem focada.",
7576
+ openAndPreview:
7577
+ "Selecione {{display}}. Use a Visualização completa para rolagem focada.",
7578
+ doubleClickToEdit: "Use a Visualização completa para rolagem focada",
7579
+ sources: {
7580
+ localhost: { label: "Local", title: "Renderizado pelo servidor local" },
7581
+ fusion: { label: "Fusion remoto", title: "Renderizado pelo Fusion" },
7582
+ inline: { label: "Embutido", title: "Renderizado por código embutido" },
7583
+ },
7584
+ previews: {
7585
+ live: {
7586
+ label: "Ao vivo",
7587
+ shortLabel: "Frame ao vivo",
7588
+ title: "Prévia ao vivo",
7589
+ },
7590
+ snapshot: {
7591
+ label: "Instantâneo",
7592
+ shortLabel: "Instantâneo",
7593
+ title: "Instantâneo em cache",
7594
+ },
7595
+ preview: {
7596
+ label: "Prévia",
7597
+ shortLabel: "Prévia",
7598
+ title: "Prévia embutida",
7599
+ },
7600
+ },
7601
+ },
7602
+ questionFlow: {
7603
+ defaultTitle: "Defina o design primeiro",
7604
+ defaultDescription:
7605
+ "Responda às escolhas importantes. Pule o que o agente deve decidir.",
7606
+ multiSelectHelp:
7607
+ "Perguntas de múltipla seleção aceitam vários chips. Use Outro quando a direção exata importar.",
7608
+ ready: "Pronto para continuar.",
7609
+ answerRequired: "Responda aos cartões obrigatórios para continuar.",
7610
+ chooseAny: "Escolha tudo que se aplica",
7611
+ chooseOne: "Escolha uma opção",
7612
+ textPlaceholder: "Digite sua resposta...",
7613
+ selectUseful: "Selecione tudo que for útil.",
7614
+ otherDescription: "Diga ao agente exatamente o que você quer dizer.",
7615
+ customPlaceholder: "Digite uma resposta personalizada...",
7616
+ dragFiles: "Arraste arquivos aqui ou",
7617
+ exploreLabel: "Explorar algumas opções",
7618
+ exploreDescription: "Mostre direções distintas antes de decidir.",
7619
+ decideLabel: "Decida por mim",
7620
+ decideDescription: "Use julgamento e siga em frente.",
7621
+ },
7622
+ visualEditor: {
7623
+ annotationQueue: "Fila de anotações",
7624
+ batchApply: "Aplicar em lote",
7625
+ pinStatus: {
7626
+ deterministic: {
7627
+ detail: "Ancorado a uma camada ou seletor e provavelmente acionável.",
7628
+ },
7629
+ "needs-agent": {
7630
+ label: "Precisa do agente",
7631
+ detail: "Precisa de interpretação ou só tem contexto de posição.",
7632
+ },
7633
+ conflict: {
7634
+ detail: "Pode sobrepor ou contradizer outro comentário na fila.",
7635
+ },
7636
+ unsupported: {
7637
+ detail: "Provavelmente fora desta superfície de edição.",
7638
+ },
7639
+ },
7640
+ },
7641
+ },
7642
+ "hi-IN": {
7643
+ editPanel: {
7644
+ sections: {
7645
+ autoLayout: "ऑटो लेआउट",
7646
+ positionLayout: "स्थिति",
7647
+ stroke: "स्ट्रोक",
7648
+ effects: "प्रभाव",
7649
+ codeConfidence: "कोड",
7650
+ },
7651
+ labels: {
7652
+ flexGrow: "बढ़ना",
7653
+ flexShrink: "सिकुड़ना",
7654
+ flexBasis: "आधार",
7655
+ order: "क्रम",
7656
+ alignSelf: "स्वयं संरेखित",
7657
+ gridColumn: "कॉलम",
7658
+ gridRow: "पंक्ति",
7659
+ position: "स्थिति",
7660
+ display: "दिखावट",
7661
+ image: "छवि",
7662
+ style: "शैली",
7663
+ shadow: "छाया",
7664
+ filter: "फ़िल्टर",
7665
+ },
7666
+ selection: { pageContext: "पेज डिफ़ॉल्ट" },
7667
+ layoutContext: {
7668
+ container: "कंटेनर",
7669
+ child: "चाइल्ड",
7670
+ gridChild: "ग्रिड चाइल्ड",
7671
+ parent: "पैरेंट",
7672
+ flexContainer: "लचीला",
7673
+ notContainer: "प्रवाह",
7674
+ flexChild: "लचीला चाइल्ड",
7675
+ flowChild: "प्रवाह चाइल्ड",
7676
+ flowDescription:
7677
+ "यह लेयर सामान्य दस्तावेज़ प्रवाह में है। स्पष्ट ऑफ़सेट के लिए स्थिति नियंत्रण इस्तेमाल करें या संरचनात्मक बदलाव एजेंट से कराएँ।",
7678
+ },
7679
+ codeStatus: {
7680
+ safeStyle: "सुरक्षित स्टाइल संपादन",
7681
+ safeStyleDescription:
7682
+ "ये नियंत्रण तुरंत स्टाइल लागू करते हैं और फिर HTML स्रोत में सहेजते हैं।",
7683
+ classTarget: "स्थिर class/id लक्ष्य",
7684
+ selectorFallback: "सेलेक्टर विकल्प",
7685
+ agentStructural: "संरचनात्मक मूव के लिए एजेंट चाहिए",
7686
+ agentStructuralDescription:
7687
+ "मूव, wrapper और पैरेंट layout बदलाव में इरादा सुरक्षित रखना होता है।",
7688
+ },
7689
+ alignSelfOptions: {
7690
+ auto: "स्वचालित",
7691
+ start: "आरंभ",
7692
+ center: "केंद्र",
7693
+ end: "अंत",
7694
+ stretch: "फैलाएँ",
7695
+ baseline: "बेसलाइन",
7696
+ },
7697
+ displayOptions: {
7698
+ block: "ब्लॉक",
7699
+ flex: "लचीला",
7700
+ grid: "ग्रिड",
7701
+ inline: "इनलाइन",
7702
+ inlineBlock: "इनलाइन ब्लॉक",
7703
+ none: "कोई नहीं",
7704
+ },
7705
+ positionOptions: {
7706
+ static: "स्थिर",
7707
+ relative: "सापेक्ष",
7708
+ absolute: "पूर्ण",
7709
+ fixed: "फिक्स्ड",
7710
+ sticky: "चिपकने वाला",
7711
+ },
7712
+ borderStyleOptions: {
7713
+ none: "कोई नहीं",
7714
+ solid: "ठोस",
7715
+ dashed: "डैश",
7716
+ dotted: "बिंदु",
7717
+ double: "डबल",
7718
+ },
7719
+ },
7720
+ designEditor: {
7721
+ patchProof: {
7722
+ title: "पैच प्रमाण",
7723
+ file: "फ़ाइल",
7724
+ source: "स्रोत",
7725
+ capability: "क्षमता",
7726
+ pending: "रनटाइम पूर्वावलोकन लागू; स्रोत लिखना बाकी",
7727
+ verified: "स्रोत लेखन सत्यापित; rollback उपलब्ध",
7728
+ rollback: "वापस लें",
7729
+ keep: "रखें",
7730
+ selectorMissing: "चुना गया तत्व अब इस स्क्रीन में नहीं है।",
7731
+ status: {
7732
+ runtime: "रनटाइम स्टाइल लागू",
7733
+ queued: "स्रोत पैच लिखा जा रहा है",
7734
+ applied: "पैच लागू",
7735
+ failed: "पैच विफल",
7736
+ rolledBack: "वापस लिया गया",
7737
+ },
7738
+ },
7739
+ capabilities: {
7740
+ "deterministic-style-edit": "सुरक्षित स्टाइल संपादन",
7741
+ "deterministic-class-edit": "सुरक्षित class संपादन",
7742
+ "agent-structural-edit": "संरचना मूव के लिए एजेंट चाहिए",
7743
+ },
7744
+ toasts: {
7745
+ screenDuplicated: "स्क्रीन डुप्लिकेट हुई",
7746
+ screenDuplicateError: "स्क्रीन डुप्लिकेट नहीं हो सकी",
7747
+ },
7748
+ },
7749
+ multiScreenCanvas: {
7750
+ duplicate: "डुप्लिकेट",
7751
+ fork: "फोर्क",
7752
+ fullView: "पूर्ण दृश्य",
7753
+ preview: "पूर्वावलोकन",
7754
+ openAndDuplicate:
7755
+ "{{display}} चुनें। केंद्रित स्क्रॉलिंग के लिए पूर्ण दृश्य का उपयोग करें।",
7756
+ openAndPreview:
7757
+ "{{display}} चुनें। केंद्रित स्क्रॉलिंग के लिए पूर्ण दृश्य का उपयोग करें।",
7758
+ doubleClickToEdit: "केंद्रित स्क्रॉलिंग के लिए पूर्ण दृश्य का उपयोग करें",
7759
+ sources: {
7760
+ localhost: { label: "स्थानीय", title: "स्थानीय dev server से render" },
7761
+ fusion: { label: "Fusion remote", title: "Fusion से render" },
7762
+ inline: { label: "इनलाइन", title: "इनलाइन कोड से render" },
7763
+ },
7764
+ previews: {
7765
+ live: {
7766
+ label: "लाइव",
7767
+ shortLabel: "लाइव फ़्रेम",
7768
+ title: "लाइव पूर्वावलोकन",
7769
+ },
7770
+ snapshot: {
7771
+ label: "स्नैपशॉट",
7772
+ shortLabel: "स्नैपशॉट",
7773
+ title: "स्थिर cached स्नैपशॉट",
7774
+ },
7775
+ preview: {
7776
+ label: "पूर्वावलोकन",
7777
+ shortLabel: "पूर्वावलोकन",
7778
+ title: "इनलाइन पूर्वावलोकन",
7779
+ },
7780
+ },
7781
+ },
7782
+ questionFlow: {
7783
+ defaultTitle: "पहले डिज़ाइन तय करें",
7784
+ defaultDescription:
7785
+ "महत्वपूर्ण विकल्पों का उत्तर दें। जिसे एजेंट तय कर सकता है उसे छोड़ें।",
7786
+ multiSelectHelp:
7787
+ "मल्टी-सेलेक्ट सवाल कई chips ले सकते हैं। सटीक दिशा ज़रूरी हो तो Other इस्तेमाल करें।",
7788
+ ready: "आगे बढ़ने के लिए तैयार।",
7789
+ answerRequired: "आगे बढ़ने के लिए आवश्यक cards का उत्तर दें।",
7790
+ chooseAny: "जो लागू हो उन्हें चुनें",
7791
+ chooseOne: "एक चुनें",
7792
+ textPlaceholder: "अपना उत्तर लिखें...",
7793
+ selectUseful: "जो उपयोगी हों वे सभी चुनें।",
7794
+ otherDescription: "एजेंट को ठीक-ठीक बताएँ कि आपका मतलब क्या है।",
7795
+ customPlaceholder: "कस्टम उत्तर लिखें...",
7796
+ dragFiles: "फ़ाइलें यहाँ खींचें या",
7797
+ exploreLabel: "कुछ विकल्प देखें",
7798
+ exploreDescription: "निर्णय से पहले अलग दिशाएँ दिखाएँ।",
7799
+ decideLabel: "मेरे लिए तय करें",
7800
+ decideDescription: "निर्णय लेकर आगे बढ़ें।",
7801
+ },
7802
+ visualEditor: {
7803
+ annotationQueue: "एनोटेशन कतार",
7804
+ batchApply: "बैच लागू करें",
7805
+ pinStatus: {
7806
+ deterministic: {
7807
+ detail: "लेयर या selector से जुड़ा है और सीधे actionable हो सकता है।",
7808
+ },
7809
+ "needs-agent": {
7810
+ label: "एजेंट चाहिए",
7811
+ detail: "व्याख्या चाहिए या केवल canvas-position संदर्भ है।",
7812
+ },
7813
+ conflict: {
7814
+ detail: "कतार में किसी दूसरे comment से overlap या विरोध हो सकता है।",
7815
+ },
7816
+ unsupported: {
7817
+ detail: "शायद इस canvas edit surface के बाहर है।",
7818
+ },
7819
+ },
7820
+ },
7821
+ },
7822
+ "ar-SA": {
7823
+ editPanel: {
7824
+ sections: {
7825
+ autoLayout: "تخطيط تلقائي",
7826
+ positionLayout: "الموضع",
7827
+ stroke: "الحد",
7828
+ effects: "التأثيرات",
7829
+ codeConfidence: "الكود",
7830
+ },
7831
+ labels: {
7832
+ flexGrow: "تمدد",
7833
+ flexShrink: "انكماش",
7834
+ flexBasis: "الأساس",
7835
+ order: "الترتيب",
7836
+ alignSelf: "محاذاة الذات",
7837
+ gridColumn: "عمود",
7838
+ gridRow: "صف",
7839
+ position: "الموضع",
7840
+ display: "العرض",
7841
+ image: "صورة",
7842
+ style: "نمط",
7843
+ shadow: "ظل",
7844
+ filter: "مرشح",
7845
+ },
7846
+ selection: { pageContext: "إعدادات الصفحة الافتراضية" },
7847
+ layoutContext: {
7848
+ container: "حاوية",
7849
+ child: "عنصر فرعي",
7850
+ gridChild: "فرعي ضمن شبكة",
7851
+ parent: "الأصل",
7852
+ flexContainer: "مرن",
7853
+ notContainer: "تدفق",
7854
+ flexChild: "فرعي مرن",
7855
+ flowChild: "فرعي في التدفق",
7856
+ flowDescription:
7857
+ "هذه الطبقة ضمن تدفق المستند العادي. استخدم الموضع للإزاحات الصريحة أو اطلب من الوكيل تعديلاً بنيوياً.",
7858
+ },
7859
+ codeStatus: {
7860
+ safeStyle: "تعديل نمط آمن",
7861
+ safeStyleDescription:
7862
+ "تطبق هذه التحكمات النمط فوراً ثم تحفظه في مصدر HTML.",
7863
+ classTarget: "هدف class/id مستقر",
7864
+ selectorFallback: "محدد احتياطي",
7865
+ agentStructural: "يلزم الوكيل للحركات البنيوية",
7866
+ agentStructuralDescription:
7867
+ "النقل واللف وإعادة كتابة تخطيط الأصل تحتاج إلى حفظ القصد.",
7868
+ },
7869
+ alignSelfOptions: {
7870
+ auto: "تلقائي",
7871
+ start: "البداية",
7872
+ center: "الوسط",
7873
+ end: "النهاية",
7874
+ stretch: "تمديد",
7875
+ baseline: "خط الأساس",
7876
+ },
7877
+ displayOptions: {
7878
+ block: "كتلة",
7879
+ flex: "مرن",
7880
+ grid: "شبكة",
7881
+ inline: "ضمن السطر",
7882
+ inlineBlock: "كتلة ضمن السطر",
7883
+ none: "لا شيء",
7884
+ },
7885
+ positionOptions: {
7886
+ static: "ثابتة",
7887
+ relative: "نسبية",
7888
+ absolute: "مطلقة",
7889
+ fixed: "مثبتة",
7890
+ sticky: "لاصقة",
7891
+ },
7892
+ borderStyleOptions: {
7893
+ none: "لا شيء",
7894
+ solid: "متصل",
7895
+ dashed: "متقطع",
7896
+ dotted: "منقط",
7897
+ double: "مزدوج",
7898
+ },
7899
+ },
7900
+ designEditor: {
7901
+ patchProof: {
7902
+ title: "إثبات التصحيح",
7903
+ file: "ملف",
7904
+ source: "المصدر",
7905
+ capability: "القدرة",
7906
+ pending: "تم تطبيق معاينة التشغيل؛ كتابة المصدر معلقة",
7907
+ verified: "تم التحقق من كتابة المصدر؛ التراجع متاح",
7908
+ rollback: "تراجع",
7909
+ keep: "احتفاظ",
7910
+ selectorMissing: "العنصر المحدد لم يعد موجوداً في هذه الشاشة.",
7911
+ status: {
7912
+ runtime: "تم تطبيق نمط التشغيل",
7913
+ queued: "جارٍ كتابة تصحيح المصدر",
7914
+ applied: "تم تطبيق التصحيح",
7915
+ failed: "فشل التصحيح",
7916
+ rolledBack: "تم التراجع",
7917
+ },
7918
+ },
7919
+ capabilities: {
7920
+ "deterministic-style-edit": "تعديل نمط آمن",
7921
+ "deterministic-class-edit": "تعديل class آمن",
7922
+ "agent-structural-edit": "يلزم الوكيل لتحريك البنية",
7923
+ },
7924
+ toasts: {
7925
+ screenDuplicated: "تم تكرار الشاشة",
7926
+ screenDuplicateError: "تعذر تكرار الشاشة",
7927
+ },
7928
+ },
7929
+ multiScreenCanvas: {
7930
+ duplicate: "تكرار",
7931
+ fork: "تفريع",
7932
+ fullView: "العرض الكامل",
7933
+ preview: "معاينة",
7934
+ openAndDuplicate: "حدد {{display}}. استخدم العرض الكامل للتمرير المركّز.",
7935
+ openAndPreview: "حدد {{display}}. استخدم العرض الكامل للتمرير المركّز.",
7936
+ doubleClickToEdit: "استخدم العرض الكامل للتمرير المركّز",
7937
+ sources: {
7938
+ localhost: { label: "محلي", title: "معروض من خادم التطوير المحلي" },
7939
+ fusion: { label: "Fusion بعيد", title: "معروض من Fusion" },
7940
+ inline: { label: "مضمن", title: "معروض من كود مضمن" },
7941
+ },
7942
+ previews: {
7943
+ live: { label: "حي", shortLabel: "إطار حي", title: "معاينة حية" },
7944
+ snapshot: {
7945
+ label: "لقطة",
7946
+ shortLabel: "لقطة",
7947
+ title: "لقطة ثابتة مخزنة",
7948
+ },
7949
+ preview: {
7950
+ label: "معاينة",
7951
+ shortLabel: "معاينة",
7952
+ title: "معاينة مضمنة",
7953
+ },
7954
+ },
7955
+ },
7956
+ questionFlow: {
7957
+ defaultTitle: "شكّل التصميم أولاً",
7958
+ defaultDescription:
7959
+ "أجب عن الخيارات عالية التأثير. تخطَّ ما يجب أن يقرره الوكيل.",
7960
+ multiSelectHelp:
7961
+ "أسئلة الاختيار المتعدد تقبل عدة شرائح. استخدم خيار آخر عندما تهم الدقة.",
7962
+ ready: "جاهز للمتابعة.",
7963
+ answerRequired: "أجب عن البطاقات المطلوبة للمتابعة.",
7964
+ chooseAny: "اختر كل ما ينطبق",
7965
+ chooseOne: "اختر واحداً",
7966
+ textPlaceholder: "اكتب إجابتك...",
7967
+ selectUseful: "اختر كل ما هو مفيد.",
7968
+ otherDescription: "أخبر الوكيل بالضبط بما تقصده.",
7969
+ customPlaceholder: "اكتب إجابة مخصصة...",
7970
+ dragFiles: "اسحب الملفات هنا أو",
7971
+ exploreLabel: "استكشف بعض الخيارات",
7972
+ exploreDescription: "أرني اتجاهات مختلفة قبل الالتزام.",
7973
+ decideLabel: "قرر نيابة عني",
7974
+ decideDescription: "استخدم الحكم واستمر.",
7975
+ },
7976
+ visualEditor: {
7977
+ annotationQueue: "قائمة الملاحظات",
7978
+ batchApply: "تطبيق دفعة",
7979
+ pinStatus: {
7980
+ deterministic: {
7981
+ detail: "مثبت بطبقة أو محدد ومن المحتمل تنفيذه مباشرة.",
7982
+ },
7983
+ "needs-agent": {
7984
+ label: "يحتاج الوكيل",
7985
+ detail: "يحتاج إلى تفسير، أو لديه سياق موضع اللوحة فقط.",
7986
+ },
7987
+ conflict: {
7988
+ detail: "قد يتداخل أو يتعارض مع تعليق آخر في القائمة.",
7989
+ },
7990
+ unsupported: {
7991
+ detail: "غالباً خارج سطح تحرير هذه اللوحة.",
7992
+ },
7993
+ },
7994
+ },
7995
+ },
7996
+ } satisfies Record<Exclude<LocaleCode, "en-US">, PartialMessages>;
7997
+
7998
+ const designCanvasFeatureOverrides = {
7999
+ "zh-TW": {
8000
+ designEditor: {
8001
+ toasts: {
8002
+ propsCopied: "屬性已複製",
8003
+ propsPasted: "屬性已貼上",
8004
+ },
8005
+ },
8006
+ layersPanel: {
8007
+ title: "圖層",
8008
+ screens: "畫面",
8009
+ addScreen: "新增畫面",
8010
+ searchPlaceholder: "搜尋圖層...",
8011
+ empty: "沒有圖層",
8012
+ noMatches: "沒有符合的圖層",
8013
+ designLayers: "設計圖層",
8014
+ codeLayers: "程式碼圖層",
8015
+ elementLayers: "元素圖層",
8016
+ collapse: "收合圖層",
8017
+ expand: "展開圖層",
8018
+ lock: "鎖定圖層",
8019
+ unlock: "解除鎖定圖層",
8020
+ hide: "隱藏圖層",
8021
+ show: "顯示圖層",
8022
+ rename: "重新命名圖層",
8023
+ selected: "已選取 {{count}} 個",
8024
+ },
8025
+ },
8026
+ "zh-CN": {
8027
+ designEditor: {
8028
+ toasts: {
8029
+ propsCopied: "属性已复制",
8030
+ propsPasted: "属性已粘贴",
8031
+ primitiveInsertFailed: "无法将该图层添加到画面",
8032
+ layerMoveFailed: "无法移动该图层",
8033
+ },
8034
+ },
8035
+ editPanel: {
8036
+ labels: {
8037
+ addLayer: "新增图层",
8038
+ removeLayer: "移除图层",
8039
+ showLayer: "显示图层",
8040
+ hideLayer: "隐藏图层",
8041
+ linkSides: "链接四边",
8042
+ unlinkSides: "取消链接四边",
8043
+ allSides: "全部",
8044
+ cornerRadius: "圆角半径",
8045
+ independentCorners: "独立圆角",
8046
+ topLeft: "左上",
8047
+ topRight: "右上",
8048
+ bottomLeft: "左下",
8049
+ bottomRight: "右下",
8050
+ blend: "混合",
8051
+ border: "边框",
8052
+ outline: "轮廓",
8053
+ inside: "内侧",
8054
+ outside: "外侧",
8055
+ dropShadow: "投影",
8056
+ addDropShadow: "新增投影",
8057
+ innerShadow: "内阴影",
8058
+ layerBlur: "图层模糊",
8059
+ blur: "模糊",
8060
+ spread: "扩散",
8061
+ },
8062
+ },
8063
+ layersPanel: {
8064
+ title: "图层",
8065
+ screens: "屏幕",
8066
+ addScreen: "添加屏幕",
8067
+ searchPlaceholder: "搜索图层...",
8068
+ empty: "没有图层",
8069
+ noMatches: "没有匹配的图层",
8070
+ designLayers: "设计图层",
8071
+ codeLayers: "代码图层",
8072
+ elementLayers: "元素图层",
8073
+ collapse: "折叠图层",
8074
+ expand: "展开图层",
8075
+ lock: "锁定图层",
8076
+ unlock: "解锁图层",
8077
+ hide: "隐藏图层",
8078
+ show: "显示图层",
8079
+ rename: "重命名图层",
8080
+ selected: "已选择 {{count}} 个",
8081
+ },
8082
+ },
8083
+ "es-ES": {
8084
+ designEditor: {
8085
+ toasts: {
8086
+ propsCopied: "Propiedades copiadas",
8087
+ propsPasted: "Propiedades pegadas",
8088
+ primitiveInsertFailed: "No se pudo añadir esa capa a la pantalla",
8089
+ layerMoveFailed: "No se pudo mover esa capa",
8090
+ },
8091
+ },
8092
+ editPanel: {
8093
+ labels: {
8094
+ addLayer: "Añadir capa",
8095
+ removeLayer: "Eliminar capa",
8096
+ showLayer: "Mostrar capa",
8097
+ hideLayer: "Ocultar capa",
8098
+ linkSides: "Vincular lados",
8099
+ unlinkSides: "Desvincular lados",
8100
+ allSides: "Todo",
8101
+ cornerRadius: "Radio de esquina",
8102
+ independentCorners: "Esquinas independientes",
8103
+ topLeft: "SI",
8104
+ topRight: "SD",
8105
+ bottomLeft: "II",
8106
+ bottomRight: "ID",
8107
+ blend: "Mezcla",
8108
+ border: "Borde",
8109
+ outline: "Contorno",
8110
+ inside: "Interior",
8111
+ outside: "Exterior",
8112
+ dropShadow: "Sombra paralela",
8113
+ addDropShadow: "Añadir sombra paralela",
8114
+ innerShadow: "Sombra interior",
8115
+ layerBlur: "Desenfoque de capa",
8116
+ blur: "Desenfoque",
8117
+ spread: "Expansión",
8118
+ },
8119
+ },
8120
+ layersPanel: {
8121
+ title: "Capas",
8122
+ screens: "Pantallas",
8123
+ addScreen: "Añadir pantalla",
8124
+ searchPlaceholder: "Buscar capas...",
8125
+ empty: "Sin capas",
8126
+ noMatches: "No hay capas coincidentes",
8127
+ designLayers: "Capas de diseño",
8128
+ codeLayers: "Capas de código",
8129
+ elementLayers: "Capas de elementos",
8130
+ collapse: "Contraer capa",
8131
+ expand: "Expandir capa",
8132
+ lock: "Bloquear capa",
8133
+ unlock: "Desbloquear capa",
8134
+ hide: "Ocultar capa",
8135
+ show: "Mostrar capa",
8136
+ rename: "Renombrar capa",
8137
+ selected: "{{count}} seleccionadas",
8138
+ },
8139
+ },
8140
+ "fr-FR": {
8141
+ designEditor: {
8142
+ toasts: {
8143
+ propsCopied: "Propriétés copiées",
8144
+ propsPasted: "Propriétés collées",
8145
+ primitiveInsertFailed: "Impossible d’ajouter ce calque à l’écran",
8146
+ layerMoveFailed: "Impossible de déplacer ce calque",
8147
+ },
8148
+ },
8149
+ editPanel: {
8150
+ labels: {
8151
+ addLayer: "Ajouter un calque",
8152
+ removeLayer: "Supprimer le calque",
8153
+ showLayer: "Afficher le calque",
8154
+ hideLayer: "Masquer le calque",
8155
+ linkSides: "Lier les côtés",
8156
+ unlinkSides: "Délier les côtés",
8157
+ allSides: "Tout",
8158
+ cornerRadius: "Rayon d’angle",
8159
+ independentCorners: "Angles indépendants",
8160
+ topLeft: "HG",
8161
+ topRight: "HD",
8162
+ bottomLeft: "BG",
8163
+ bottomRight: "BD",
8164
+ blend: "Fusion",
8165
+ border: "Bordure",
8166
+ outline: "Contour",
8167
+ inside: "Intérieur",
8168
+ outside: "Extérieur",
8169
+ dropShadow: "Ombre portée",
8170
+ addDropShadow: "Ajouter une ombre portée",
8171
+ innerShadow: "Ombre interne",
8172
+ layerBlur: "Flou de calque",
8173
+ blur: "Flou",
8174
+ spread: "Diffusion",
8175
+ },
8176
+ },
8177
+ layersPanel: {
8178
+ title: "Calques",
8179
+ screens: "Écrans",
8180
+ addScreen: "Ajouter un écran",
8181
+ searchPlaceholder: "Rechercher des calques...",
8182
+ empty: "Aucun calque",
8183
+ noMatches: "Aucun calque correspondant",
8184
+ designLayers: "Calques de design",
8185
+ codeLayers: "Calques de code",
8186
+ elementLayers: "Calques d’éléments",
8187
+ collapse: "Réduire le calque",
8188
+ expand: "Développer le calque",
8189
+ lock: "Verrouiller le calque",
8190
+ unlock: "Déverrouiller le calque",
8191
+ hide: "Masquer le calque",
8192
+ show: "Afficher le calque",
8193
+ rename: "Renommer le calque",
8194
+ selected: "{{count}} sélectionnés",
8195
+ },
8196
+ },
8197
+ "de-DE": {
8198
+ designEditor: {
8199
+ toasts: {
8200
+ propsCopied: "Eigenschaften kopiert",
8201
+ propsPasted: "Eigenschaften eingefügt",
8202
+ primitiveInsertFailed:
8203
+ "Diese Ebene konnte nicht zur Ansicht hinzugefügt werden",
8204
+ layerMoveFailed: "Diese Ebene konnte nicht verschoben werden",
8205
+ },
8206
+ },
8207
+ editPanel: {
8208
+ labels: {
8209
+ addLayer: "Ebene hinzufügen",
8210
+ removeLayer: "Ebene entfernen",
8211
+ showLayer: "Ebene anzeigen",
8212
+ hideLayer: "Ebene ausblenden",
8213
+ linkSides: "Seiten verknüpfen",
8214
+ unlinkSides: "Seiten lösen",
8215
+ allSides: "Alle",
8216
+ cornerRadius: "Eckenradius",
8217
+ independentCorners: "Unabhängige Ecken",
8218
+ topLeft: "OL",
8219
+ topRight: "OR",
8220
+ bottomLeft: "UL",
8221
+ bottomRight: "UR",
8222
+ blend: "Mischung",
8223
+ border: "Rahmen",
8224
+ outline: "Kontur",
8225
+ inside: "Innen",
8226
+ outside: "Außen",
8227
+ dropShadow: "Schlagschatten",
8228
+ addDropShadow: "Schlagschatten hinzufügen",
8229
+ innerShadow: "Innerer Schatten",
8230
+ layerBlur: "Ebenenunschärfe",
8231
+ blur: "Unschärfe",
8232
+ spread: "Ausbreitung",
8233
+ },
8234
+ },
8235
+ layersPanel: {
8236
+ title: "Ebenen",
8237
+ screens: "Screens",
8238
+ addScreen: "Screen hinzufügen",
8239
+ searchPlaceholder: "Ebenen suchen...",
8240
+ empty: "Keine Ebenen",
8241
+ noMatches: "Keine passenden Ebenen",
8242
+ designLayers: "Design-Ebenen",
8243
+ codeLayers: "Code-Ebenen",
8244
+ elementLayers: "Element-Ebenen",
8245
+ collapse: "Ebene einklappen",
8246
+ expand: "Ebene ausklappen",
8247
+ lock: "Ebene sperren",
8248
+ unlock: "Ebene entsperren",
8249
+ hide: "Ebene ausblenden",
8250
+ show: "Ebene anzeigen",
8251
+ rename: "Ebene umbenennen",
8252
+ selected: "{{count}} ausgewählt",
8253
+ },
8254
+ },
8255
+ "ja-JP": {
8256
+ designEditor: {
8257
+ toasts: {
8258
+ propsCopied: "プロパティをコピーしました",
8259
+ propsPasted: "プロパティを貼り付けました",
8260
+ primitiveInsertFailed: "そのレイヤーを画面に追加できませんでした",
8261
+ layerMoveFailed: "そのレイヤーを移動できませんでした",
8262
+ },
8263
+ },
8264
+ editPanel: {
8265
+ labels: {
8266
+ addLayer: "レイヤーを追加",
8267
+ removeLayer: "レイヤーを削除",
8268
+ showLayer: "レイヤーを表示",
8269
+ hideLayer: "レイヤーを非表示",
8270
+ linkSides: "辺をリンク",
8271
+ unlinkSides: "辺のリンクを解除",
8272
+ allSides: "すべて",
8273
+ cornerRadius: "角丸",
8274
+ independentCorners: "個別の角",
8275
+ topLeft: "左上",
8276
+ topRight: "右上",
8277
+ bottomLeft: "左下",
8278
+ bottomRight: "右下",
8279
+ blend: "ブレンド",
8280
+ border: "境界線",
8281
+ outline: "アウトライン",
8282
+ inside: "内側",
8283
+ outside: "外側",
8284
+ dropShadow: "ドロップシャドウ",
8285
+ addDropShadow: "ドロップシャドウを追加",
8286
+ innerShadow: "内側シャドウ",
8287
+ layerBlur: "レイヤーブラー",
8288
+ blur: "ブラー",
8289
+ spread: "スプレッド",
8290
+ },
8291
+ },
8292
+ layersPanel: {
8293
+ title: "レイヤー",
8294
+ screens: "画面",
8295
+ addScreen: "画面を追加",
8296
+ searchPlaceholder: "レイヤーを検索...",
8297
+ empty: "レイヤーがありません",
8298
+ noMatches: "一致するレイヤーがありません",
8299
+ designLayers: "デザインレイヤー",
8300
+ codeLayers: "コードレイヤー",
8301
+ elementLayers: "要素レイヤー",
8302
+ collapse: "レイヤーを折りたたむ",
8303
+ expand: "レイヤーを展開",
8304
+ lock: "レイヤーをロック",
8305
+ unlock: "レイヤーのロックを解除",
8306
+ hide: "レイヤーを非表示",
8307
+ show: "レイヤーを表示",
8308
+ rename: "レイヤー名を変更",
8309
+ selected: "{{count}} 件選択",
8310
+ },
8311
+ },
8312
+ "ko-KR": {
8313
+ designEditor: {
8314
+ toasts: {
8315
+ propsCopied: "속성이 복사됨",
8316
+ propsPasted: "속성이 붙여넣어짐",
8317
+ primitiveInsertFailed: "해당 레이어를 화면에 추가할 수 없습니다",
8318
+ layerMoveFailed: "해당 레이어를 이동할 수 없습니다",
8319
+ },
8320
+ },
8321
+ editPanel: {
8322
+ labels: {
8323
+ addLayer: "레이어 추가",
8324
+ removeLayer: "레이어 제거",
8325
+ showLayer: "레이어 표시",
8326
+ hideLayer: "레이어 숨기기",
8327
+ linkSides: "면 연결",
8328
+ unlinkSides: "면 연결 해제",
8329
+ allSides: "모두",
8330
+ cornerRadius: "모서리 반경",
8331
+ independentCorners: "개별 모서리",
8332
+ topLeft: "왼쪽 위",
8333
+ topRight: "오른쪽 위",
8334
+ bottomLeft: "왼쪽 아래",
8335
+ bottomRight: "오른쪽 아래",
8336
+ blend: "혼합",
8337
+ border: "테두리",
8338
+ outline: "윤곽선",
8339
+ inside: "안쪽",
8340
+ outside: "바깥쪽",
8341
+ dropShadow: "그림자",
8342
+ addDropShadow: "그림자 추가",
8343
+ innerShadow: "내부 그림자",
8344
+ layerBlur: "레이어 흐림",
8345
+ blur: "흐림",
8346
+ spread: "확산",
8347
+ },
8348
+ },
8349
+ layersPanel: {
8350
+ title: "레이어",
8351
+ screens: "화면",
8352
+ addScreen: "화면 추가",
8353
+ searchPlaceholder: "레이어 검색...",
8354
+ empty: "레이어 없음",
8355
+ noMatches: "일치하는 레이어 없음",
8356
+ designLayers: "디자인 레이어",
8357
+ codeLayers: "코드 레이어",
8358
+ elementLayers: "요소 레이어",
8359
+ collapse: "레이어 접기",
8360
+ expand: "레이어 펼치기",
8361
+ lock: "레이어 잠금",
8362
+ unlock: "레이어 잠금 해제",
8363
+ hide: "레이어 숨기기",
8364
+ show: "레이어 표시",
8365
+ rename: "레이어 이름 변경",
8366
+ selected: "{{count}}개 선택됨",
8367
+ },
8368
+ },
8369
+ "pt-BR": {
8370
+ designEditor: {
8371
+ toasts: {
8372
+ propsCopied: "Propriedades copiadas",
8373
+ propsPasted: "Propriedades coladas",
8374
+ primitiveInsertFailed: "Não foi possível adicionar essa camada à tela",
8375
+ layerMoveFailed: "Não foi possível mover essa camada",
8376
+ },
8377
+ },
8378
+ editPanel: {
8379
+ labels: {
8380
+ addLayer: "Adicionar camada",
8381
+ removeLayer: "Remover camada",
8382
+ showLayer: "Mostrar camada",
8383
+ hideLayer: "Ocultar camada",
8384
+ linkSides: "Vincular lados",
8385
+ unlinkSides: "Desvincular lados",
8386
+ allSides: "Tudo",
8387
+ cornerRadius: "Raio do canto",
8388
+ independentCorners: "Cantos independentes",
8389
+ topLeft: "SE",
8390
+ topRight: "SD",
8391
+ bottomLeft: "IE",
8392
+ bottomRight: "ID",
8393
+ blend: "Mistura",
8394
+ border: "Borda",
8395
+ outline: "Contorno",
8396
+ inside: "Dentro",
8397
+ outside: "Fora",
8398
+ dropShadow: "Sombra projetada",
8399
+ addDropShadow: "Adicionar sombra projetada",
8400
+ innerShadow: "Sombra interna",
8401
+ layerBlur: "Desfoque da camada",
8402
+ blur: "Desfoque",
8403
+ spread: "Espalhamento",
8404
+ },
8405
+ },
8406
+ layersPanel: {
8407
+ title: "Camadas",
8408
+ screens: "Telas",
8409
+ addScreen: "Adicionar tela",
8410
+ searchPlaceholder: "Buscar camadas...",
8411
+ empty: "Nenhuma camada",
8412
+ noMatches: "Nenhuma camada corresponde",
8413
+ designLayers: "Camadas de design",
8414
+ codeLayers: "Camadas de código",
8415
+ elementLayers: "Camadas de elementos",
8416
+ collapse: "Recolher camada",
8417
+ expand: "Expandir camada",
8418
+ lock: "Bloquear camada",
8419
+ unlock: "Desbloquear camada",
8420
+ hide: "Ocultar camada",
8421
+ show: "Mostrar camada",
8422
+ rename: "Renomear camada",
8423
+ selected: "{{count}} selecionadas",
8424
+ },
8425
+ },
8426
+ "hi-IN": {
8427
+ designEditor: {
8428
+ toasts: {
8429
+ propsCopied: "गुण कॉपी किए गए",
8430
+ propsPasted: "गुण चिपकाए गए",
8431
+ primitiveInsertFailed: "उस परत को स्क्रीन में नहीं जोड़ा जा सका",
8432
+ layerMoveFailed: "उस परत को स्थानांतरित नहीं किया जा सका",
8433
+ },
8434
+ },
8435
+ editPanel: {
8436
+ labels: {
8437
+ addLayer: "परत जोड़ें",
8438
+ removeLayer: "परत हटाएं",
8439
+ showLayer: "परत दिखाएं",
8440
+ hideLayer: "परत छिपाएं",
8441
+ linkSides: "किनारे लिंक करें",
8442
+ unlinkSides: "किनारे अनलिंक करें",
8443
+ allSides: "सभी",
8444
+ cornerRadius: "कोने की त्रिज्या",
8445
+ independentCorners: "स्वतंत्र कोने",
8446
+ topLeft: "ऊपर बायां",
8447
+ topRight: "ऊपर दायां",
8448
+ bottomLeft: "नीचे बायां",
8449
+ bottomRight: "नीचे दायां",
8450
+ blend: "मिश्रण",
8451
+ border: "बॉर्डर",
8452
+ outline: "आउटलाइन",
8453
+ inside: "अंदर",
8454
+ outside: "बाहर",
8455
+ dropShadow: "ड्रॉप शैडो",
8456
+ addDropShadow: "ड्रॉप शैडो जोड़ें",
8457
+ innerShadow: "अंदरूनी शैडो",
8458
+ layerBlur: "लेयर ब्लर",
8459
+ blur: "ब्लर",
8460
+ spread: "फैलाव",
8461
+ },
8462
+ },
8463
+ layersPanel: {
8464
+ title: "परतें",
8465
+ screens: "स्क्रीन",
8466
+ addScreen: "स्क्रीन जोड़ें",
8467
+ searchPlaceholder: "परतें खोजें...",
8468
+ empty: "कोई परत नहीं",
8469
+ noMatches: "कोई मेल खाती परत नहीं",
8470
+ designLayers: "डिज़ाइन परतें",
8471
+ codeLayers: "कोड परतें",
8472
+ elementLayers: "एलिमेंट परतें",
8473
+ collapse: "परत समेटें",
8474
+ expand: "परत फैलाएं",
8475
+ lock: "परत लॉक करें",
8476
+ unlock: "परत अनलॉक करें",
8477
+ hide: "परत छिपाएं",
8478
+ show: "परत दिखाएं",
8479
+ rename: "परत का नाम बदलें",
8480
+ selected: "{{count}} चयनित",
8481
+ },
8482
+ },
8483
+ "ar-SA": {
8484
+ designEditor: {
8485
+ toasts: {
8486
+ propsCopied: "تم نسخ الخصائص",
8487
+ propsPasted: "تم لصق الخصائص",
8488
+ primitiveInsertFailed: "تعذرت إضافة تلك الطبقة إلى الشاشة",
8489
+ layerMoveFailed: "تعذر نقل تلك الطبقة",
8490
+ },
8491
+ },
8492
+ editPanel: {
8493
+ labels: {
8494
+ addLayer: "إضافة طبقة",
8495
+ removeLayer: "إزالة طبقة",
8496
+ showLayer: "إظهار الطبقة",
8497
+ hideLayer: "إخفاء الطبقة",
8498
+ linkSides: "ربط الجوانب",
8499
+ unlinkSides: "إلغاء ربط الجوانب",
8500
+ allSides: "الكل",
8501
+ cornerRadius: "نصف قطر الزاوية",
8502
+ independentCorners: "زوايا مستقلة",
8503
+ topLeft: "أعلى يسار",
8504
+ topRight: "أعلى يمين",
8505
+ bottomLeft: "أسفل يسار",
8506
+ bottomRight: "أسفل يمين",
8507
+ blend: "مزج",
8508
+ border: "حد",
8509
+ outline: "مخطط",
8510
+ inside: "داخلي",
8511
+ outside: "خارجي",
8512
+ dropShadow: "ظل ساقط",
8513
+ addDropShadow: "إضافة ظل ساقط",
8514
+ innerShadow: "ظل داخلي",
8515
+ layerBlur: "ضبابية الطبقة",
8516
+ blur: "ضبابية",
8517
+ spread: "انتشار",
8518
+ },
8519
+ },
8520
+ layersPanel: {
8521
+ title: "الطبقات",
8522
+ screens: "الشاشات",
8523
+ addScreen: "إضافة شاشة",
8524
+ searchPlaceholder: "البحث في الطبقات...",
8525
+ empty: "لا توجد طبقات",
8526
+ noMatches: "لا توجد طبقات مطابقة",
8527
+ designLayers: "طبقات التصميم",
8528
+ codeLayers: "طبقات الكود",
8529
+ elementLayers: "طبقات العناصر",
8530
+ collapse: "طي الطبقة",
8531
+ expand: "توسيع الطبقة",
8532
+ lock: "قفل الطبقة",
8533
+ unlock: "فتح قفل الطبقة",
8534
+ hide: "إخفاء الطبقة",
8535
+ show: "إظهار الطبقة",
8536
+ rename: "إعادة تسمية الطبقة",
8537
+ selected: "{{count}} محددة",
8538
+ },
8539
+ },
8540
+ } satisfies Record<Exclude<LocaleCode, "en-US">, PartialMessages>;
8541
+
5773
8542
  export const messagesByLocale = {
5774
8543
  "en-US": enUS,
5775
- "zh-TW": mergeMessages(zhTW),
8544
+ "zh-TW": mergeMessages(
8545
+ mergePartialMessages(zhTW, designModeFeatureOverrides["zh-TW"]),
8546
+ ),
5776
8547
  "zh-CN": mergeMessages(
5777
8548
  mergePartialMessages(
5778
8549
  designLocaleOverrides["zh-CN"],
5779
8550
  designRawLiteralOverrides["zh-CN"],
5780
8551
  designExactEnglishOverrides["zh-CN"],
8552
+ designModeFeatureOverrides["zh-CN"],
8553
+ designCanvasFeatureOverrides["zh-CN"],
5781
8554
  {
5782
8555
  root: {
5783
8556
  commandActions: "操作",
@@ -5824,6 +8597,8 @@ export const messagesByLocale = {
5824
8597
  designLocaleOverrides["es-ES"],
5825
8598
  designRawLiteralOverrides["es-ES"],
5826
8599
  designExactEnglishOverrides["es-ES"],
8600
+ designModeFeatureOverrides["es-ES"],
8601
+ designCanvasFeatureOverrides["es-ES"],
5827
8602
  {
5828
8603
  root: {
5829
8604
  commandActions: "Acciones",
@@ -5870,6 +8645,8 @@ export const messagesByLocale = {
5870
8645
  designLocaleOverrides["fr-FR"],
5871
8646
  designRawLiteralOverrides["fr-FR"],
5872
8647
  designExactEnglishOverrides["fr-FR"],
8648
+ designModeFeatureOverrides["fr-FR"],
8649
+ designCanvasFeatureOverrides["fr-FR"],
5873
8650
  {
5874
8651
  root: {
5875
8652
  commandActions: "Actions",
@@ -5916,6 +8693,8 @@ export const messagesByLocale = {
5916
8693
  designLocaleOverrides["de-DE"],
5917
8694
  designRawLiteralOverrides["de-DE"],
5918
8695
  designExactEnglishOverrides["de-DE"],
8696
+ designModeFeatureOverrides["de-DE"],
8697
+ designCanvasFeatureOverrides["de-DE"],
5919
8698
  {
5920
8699
  root: {
5921
8700
  commandActions: "Aktionen",
@@ -5962,6 +8741,8 @@ export const messagesByLocale = {
5962
8741
  designLocaleOverrides["ja-JP"],
5963
8742
  designRawLiteralOverrides["ja-JP"],
5964
8743
  designExactEnglishOverrides["ja-JP"],
8744
+ designModeFeatureOverrides["ja-JP"],
8745
+ designCanvasFeatureOverrides["ja-JP"],
5965
8746
  {
5966
8747
  root: {
5967
8748
  commandActions: "操作",
@@ -6009,6 +8790,8 @@ export const messagesByLocale = {
6009
8790
  designLocaleOverrides["ko-KR"],
6010
8791
  designRawLiteralOverrides["ko-KR"],
6011
8792
  designExactEnglishOverrides["ko-KR"],
8793
+ designModeFeatureOverrides["ko-KR"],
8794
+ designCanvasFeatureOverrides["ko-KR"],
6012
8795
  {
6013
8796
  root: {
6014
8797
  commandActions: "작업",
@@ -6054,6 +8837,8 @@ export const messagesByLocale = {
6054
8837
  designLocaleOverrides["pt-BR"],
6055
8838
  designRawLiteralOverrides["pt-BR"],
6056
8839
  designExactEnglishOverrides["pt-BR"],
8840
+ designModeFeatureOverrides["pt-BR"],
8841
+ designCanvasFeatureOverrides["pt-BR"],
6057
8842
  {
6058
8843
  root: {
6059
8844
  commandActions: "Ações",
@@ -6100,6 +8885,8 @@ export const messagesByLocale = {
6100
8885
  designLocaleOverrides["hi-IN"],
6101
8886
  designRawLiteralOverrides["hi-IN"],
6102
8887
  designExactEnglishOverrides["hi-IN"],
8888
+ designModeFeatureOverrides["hi-IN"],
8889
+ designCanvasFeatureOverrides["hi-IN"],
6103
8890
  {
6104
8891
  root: {
6105
8892
  commandActions: "क्रियाएं",
@@ -6146,6 +8933,8 @@ export const messagesByLocale = {
6146
8933
  designLocaleOverrides["ar-SA"],
6147
8934
  designRawLiteralOverrides["ar-SA"],
6148
8935
  designExactEnglishOverrides["ar-SA"],
8936
+ designModeFeatureOverrides["ar-SA"],
8937
+ designCanvasFeatureOverrides["ar-SA"],
6149
8938
  {
6150
8939
  root: {
6151
8940
  commandActions: "الإجراءات",