@agent-native/core 0.90.1 → 0.90.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/corpus/README.md +1 -1
- package/corpus/core/CHANGELOG.md +14 -0
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/client/AgentPanel.tsx +1 -1
- package/corpus/core/src/client/rich-markdown-editor/useCollabReconcile.ts +11 -6
- package/corpus/core/src/client/use-action.ts +39 -2
- package/corpus/core/src/client/use-db-sync.ts +44 -18
- package/corpus/core/src/db/create-get-db.ts +32 -2
- package/corpus/core/src/server/framework-request-handler.ts +52 -4
- package/corpus/templates/assets/.agents/skills/asset-generation/SKILL.md +5 -0
- package/corpus/templates/assets/.agents/skills/logo-composite/SKILL.md +34 -6
- package/corpus/templates/assets/AGENTS.md +23 -4
- package/corpus/templates/assets/actions/_generation-preset-settings.ts +48 -0
- package/corpus/templates/assets/actions/_helpers.ts +8 -1
- package/corpus/templates/assets/actions/_preset-skeleton-validation.ts +64 -0
- package/corpus/templates/assets/actions/create-generation-preset.ts +11 -3
- package/corpus/templates/assets/actions/generate-image-batch.ts +7 -2
- package/corpus/templates/assets/actions/generate-image.ts +342 -25
- package/corpus/templates/assets/actions/get-library.ts +4 -3
- package/corpus/templates/assets/actions/navigate.ts +2 -1
- package/corpus/templates/assets/actions/refresh-generation-run.ts +5 -1
- package/corpus/templates/assets/actions/update-asset.ts +1 -0
- package/corpus/templates/assets/actions/update-generation-preset.ts +8 -1
- package/corpus/templates/assets/actions/view-screen.ts +8 -1
- package/corpus/templates/assets/app/components/generation/GenerationResults.tsx +9 -1
- package/corpus/templates/assets/app/hooks/use-image-model-menu.ts +1 -0
- package/corpus/templates/assets/app/hooks/use-navigation-state.ts +11 -0
- package/corpus/templates/assets/app/i18n/zh-TW.ts +64 -0
- package/corpus/templates/assets/app/i18n-data.ts +650 -0
- package/corpus/templates/assets/app/routes/asset.$id.tsx +2 -1
- package/corpus/templates/assets/app/routes/brand-kits.$id.tsx +44 -33
- package/corpus/templates/assets/app/routes/brand-kits.$id_.presets.$presetId.tsx +1474 -0
- package/corpus/templates/assets/app/routes/library.tsx +43 -1
- package/corpus/templates/assets/server/lib/generation.ts +366 -44
- package/corpus/templates/assets/server/lib/image-processing.ts +252 -0
- package/corpus/templates/assets/server/lib/preset-skeleton.ts +137 -0
- package/corpus/templates/assets/shared/api.ts +47 -0
- package/corpus/templates/clips/app/components/library/library-layout.tsx +7 -2
- package/corpus/templates/clips/app/components/library/sort-menu.tsx +1 -1
- package/corpus/templates/clips/app/components/recorder/recorder-engine.ts +114 -33
- package/corpus/templates/clips/app/routes/_app.library._index.tsx +27 -1
- package/corpus/templates/clips/app/routes/record.tsx +157 -68
- package/corpus/templates/clips/server/routes/api/uploads/[recordingId]/abort.post.ts +5 -5
- package/corpus/templates/clips/server/routes/api/uploads/[recordingId]/chunk.post.ts +20 -3
- package/corpus/templates/clips/shared/finalize-recovery.ts +23 -3
- package/corpus/templates/content/AGENTS.md +52 -52
- package/corpus/templates/content/actions/_builder-cms-read-client.ts +188 -8
- package/corpus/templates/content/actions/_builder-docs-client.ts +41 -3
- package/corpus/templates/content/actions/_database-source-utils.ts +998 -160
- package/corpus/templates/content/actions/_database-utils.ts +44 -4
- package/corpus/templates/content/actions/_notion-action-utils.ts +6 -2
- package/corpus/templates/content/actions/add-content-database-source-field-property.ts +23 -1
- package/corpus/templates/content/actions/attach-content-database-source.ts +85 -12
- package/corpus/templates/content/actions/change-content-database-source-role.ts +9 -1
- package/corpus/templates/content/actions/delete-content-database.ts +1 -0
- package/corpus/templates/content/actions/get-document.ts +11 -2
- package/corpus/templates/content/actions/list-content-databases.ts +57 -9
- package/corpus/templates/content/actions/prepare-builder-source-review.ts +23 -6
- package/corpus/templates/content/actions/refresh-content-database-source.ts +26 -3
- package/corpus/templates/content/actions/restore-content-database.ts +1 -0
- package/corpus/templates/content/actions/update-document.ts +43 -0
- package/corpus/templates/content/app/components/editor/BuilderBodySyncingNotice.tsx +21 -0
- package/corpus/templates/content/app/components/editor/DocumentDatabase.tsx +0 -1
- package/corpus/templates/content/app/components/editor/DocumentEditor.tsx +70 -28
- package/corpus/templates/content/app/components/editor/DocumentProperties.tsx +69 -17
- package/corpus/templates/content/app/components/editor/VisualEditor.tsx +4 -4
- package/corpus/templates/content/app/components/editor/body-hydration.ts +112 -0
- package/corpus/templates/content/app/components/editor/builder-body-hydration-pump.ts +52 -0
- package/corpus/templates/content/app/components/editor/database/DatabaseView.tsx +9076 -2876
- package/corpus/templates/content/app/components/editor/database-sources/BuilderSourceReviewDialog.tsx +41 -1
- package/corpus/templates/content/app/components/editor/extensions/ImageBlock.tsx +36 -11
- package/corpus/templates/content/app/components/editor/previewDocumentSaveController.ts +21 -1
- package/corpus/templates/content/app/components/sidebar/DocumentSidebar.tsx +11 -1
- package/corpus/templates/content/app/components/sidebar/DocumentTreeItem.tsx +11 -8
- package/corpus/templates/content/app/global.css +41 -0
- package/corpus/templates/content/app/hooks/use-content-database.ts +346 -42
- package/corpus/templates/content/app/hooks/use-db-sync.ts +9 -0
- package/corpus/templates/content/app/hooks/use-documents.ts +47 -0
- package/corpus/templates/content/app/hooks/use-notion.ts +12 -10
- package/corpus/templates/content/app/i18n/zh-TW.ts +35 -0
- package/corpus/templates/content/app/i18n-data.ts +355 -0
- package/corpus/templates/content/app/root.tsx +22 -0
- package/corpus/templates/content/changelog/2026-07-01-builder-database-sources-keep-loading-rows-in-the-background.md +6 -0
- package/corpus/templates/content/changelog/2026-07-01-builder-source-attach-starts-with-usable-rows.md +6 -0
- package/corpus/templates/content/changelog/2026-07-01-builder-source-attachment-now-stays-connected-after-large.md +6 -0
- package/corpus/templates/content/changelog/2026-07-01-builder-source-refreshes-now-show-progress-for-large-docs-blog.md +6 -0
- package/corpus/templates/content/changelog/2026-07-01-database-pages-now-delete-to-trash-without-route-errors.md +6 -0
- package/corpus/templates/content/changelog/2026-07-02-builder-source-refreshes-recover-from-stalled-background-row.md +6 -0
- package/corpus/templates/content/changelog/2026-07-02-builder-sourced-rows-open-with-sync-protection.md +6 -0
- package/corpus/templates/content/changelog/2026-07-02-database-rows-and-pages-open-faster-from-recently-loaded-dat.md +6 -0
- package/corpus/templates/content/changelog/2026-07-02-preview-panels-close-reliably-narrow-sidebar-row-actions-sta.md +6 -0
- package/corpus/templates/content/changelog/2026-07-06-builder-sync-progress-no-longer-shows-continue.md +6 -0
- package/corpus/templates/content/shared/api.ts +13 -0
- package/corpus/templates/content/shared/builder-mdx.ts +16 -3
- package/corpus/templates/design/.agents/skills/design-generation/SKILL.md +23 -13
- package/corpus/templates/design/.agents/skills/responsive-breakpoints/SKILL.md +98 -0
- package/corpus/templates/design/.agents/skills/shader-fills/SKILL.md +162 -0
- package/corpus/templates/design/AGENTS.md +9 -2
- package/corpus/templates/design/actions/add-breakpoint.ts +6 -3
- package/corpus/templates/design/actions/apply-a11y-fix.ts +57 -37
- package/corpus/templates/design/actions/apply-component-prop-edit.ts +41 -20
- package/corpus/templates/design/actions/apply-motion-edit.ts +251 -38
- package/corpus/templates/design/actions/apply-shader-fill.ts +90 -66
- package/corpus/templates/design/actions/apply-visual-edit.ts +282 -55
- package/corpus/templates/design/actions/create-component.ts +29 -60
- package/corpus/templates/design/actions/create-file.ts +9 -2
- package/corpus/templates/design/actions/duplicate-design.ts +31 -2
- package/corpus/templates/design/actions/edit-design.ts +36 -38
- package/corpus/templates/design/actions/generate-design-title.ts +87 -0
- package/corpus/templates/design/actions/generate-design.ts +53 -18
- package/corpus/templates/design/actions/generate-screens.ts +108 -4
- package/corpus/templates/design/actions/get-motion-timeline.ts +35 -7
- package/corpus/templates/design/actions/insert-asset.ts +34 -29
- package/corpus/templates/design/actions/insert-design-native-asset.ts +129 -32
- package/corpus/templates/design/actions/insert-figma-library-asset.ts +35 -30
- package/corpus/templates/design/actions/present-design-variants.ts +7 -2
- package/corpus/templates/design/actions/remove-motion-timeline.ts +31 -36
- package/corpus/templates/design/actions/update-file.ts +190 -75
- package/corpus/templates/design/app/components/design/BreakpointBar.tsx +403 -0
- package/corpus/templates/design/app/components/design/CanvasContextMenu.tsx +469 -222
- package/corpus/templates/design/app/components/design/DesignCanvas.tsx +708 -53
- package/corpus/templates/design/app/components/design/DesignExtensionsPanel.tsx +83 -3
- package/corpus/templates/design/app/components/design/EditPanel.tsx +1091 -6948
- package/corpus/templates/design/app/components/design/LayersPanel.tsx +419 -85
- package/corpus/templates/design/app/components/design/MotionDock.tsx +1124 -103
- package/corpus/templates/design/app/components/design/MultiScreenCanvas.tsx +2610 -1398
- package/corpus/templates/design/app/components/design/ReadOnlyDesignBanner.tsx +22 -0
- package/corpus/templates/design/app/components/design/bridge/editor-chrome.bridge.ts +2182 -235
- package/corpus/templates/design/app/components/design/bridge/motion-preview.bridge.ts +187 -11
- package/corpus/templates/design/app/components/design/bridge/shader-fill-preview.bridge.ts +376 -1
- package/corpus/templates/design/app/components/design/bridge/shader-runtime.bridge.ts +746 -0
- package/corpus/templates/design/app/components/design/canvas-primitive-style.ts +17 -0
- package/corpus/templates/design/app/components/design/code-workbench/SideBar.tsx +1 -1
- package/corpus/templates/design/app/components/design/code-workbench/explorer/FileTree.tsx +1 -3
- package/corpus/templates/design/app/components/design/code-workbench/quickinput/QuickInput.tsx +1 -1
- package/corpus/templates/design/app/components/design/edit-panel/appearance-properties.tsx +518 -0
- package/corpus/templates/design/app/components/design/edit-panel/code-inspect-helpers.tsx +562 -0
- package/corpus/templates/design/app/components/design/edit-panel/component-section.tsx +763 -0
- package/corpus/templates/design/app/components/design/edit-panel/document-colors.ts +94 -0
- package/corpus/templates/design/app/components/design/edit-panel/effects-properties.tsx +780 -0
- package/corpus/templates/design/app/components/design/edit-panel/element-classification.ts +446 -0
- package/corpus/templates/design/app/components/design/edit-panel/element-identity.ts +79 -0
- package/corpus/templates/design/app/components/design/edit-panel/field-primitives.tsx +315 -0
- package/corpus/templates/design/app/components/design/edit-panel/fill-gradient-helpers.ts +344 -0
- package/corpus/templates/design/app/components/design/edit-panel/fill-properties.tsx +594 -0
- package/corpus/templates/design/app/components/design/edit-panel/frame-presets-panel.tsx +119 -0
- package/corpus/templates/design/app/components/design/edit-panel/inspector-controls.tsx +248 -0
- package/corpus/templates/design/app/components/design/edit-panel/interaction-state-helpers.ts +45 -0
- package/corpus/templates/design/app/components/design/edit-panel/layout-properties.tsx +693 -0
- package/corpus/templates/design/app/components/design/edit-panel/panel-primitives.tsx +724 -0
- package/corpus/templates/design/app/components/design/edit-panel/position-helpers.ts +207 -0
- package/corpus/templates/design/app/components/design/edit-panel/position-layout-properties.tsx +628 -0
- package/corpus/templates/design/app/components/design/edit-panel/selection-helpers.ts +91 -0
- package/corpus/templates/design/app/components/design/edit-panel/stroke-properties.tsx +649 -0
- package/corpus/templates/design/app/components/design/edit-panel/style-change-types.ts +118 -0
- package/corpus/templates/design/app/components/design/edit-panel/style-options.ts +88 -0
- package/corpus/templates/design/app/components/design/edit-panel/transform-helpers.ts +100 -0
- package/corpus/templates/design/app/components/design/edit-panel/typography-helpers.ts +117 -0
- package/corpus/templates/design/app/components/design/edit-panel/typography-properties.tsx +501 -0
- package/corpus/templates/design/app/components/design/inspector/AutoLayoutMatrix.tsx +91 -40
- package/corpus/templates/design/app/components/design/inspector/BreakpointOverrideIndicator.tsx +82 -0
- package/corpus/templates/design/app/components/design/inspector/DesignColorPicker.tsx +189 -87
- package/corpus/templates/design/app/components/design/inspector/GlslShaderPanel.tsx +1097 -0
- package/corpus/templates/design/app/components/design/inspector/GradientEditor.tsx +44 -0
- package/corpus/templates/design/app/components/design/inspector/InteractionStatePanel.tsx +258 -0
- package/corpus/templates/design/app/components/design/inspector/MotionKeyframeDiamond.tsx +144 -0
- package/corpus/templates/design/app/components/design/inspector/ScrubInput.tsx +99 -9
- package/corpus/templates/design/app/components/design/inspector/frame-size-presets.ts +116 -0
- package/corpus/templates/design/app/components/design/inspector/index.ts +26 -0
- package/corpus/templates/design/app/components/design/inspector/scrub-input-utils.ts +29 -0
- package/corpus/templates/design/app/components/design/multi-screen/alt-hover-measurement.ts +171 -0
- package/corpus/templates/design/app/components/design/multi-screen/board-surface-html.ts +220 -0
- package/corpus/templates/design/app/components/design/multi-screen/chrome-transitions.ts +35 -0
- package/corpus/templates/design/app/components/design/multi-screen/cross-screen-drop.ts +134 -0
- package/corpus/templates/design/app/components/design/multi-screen/culling.ts +185 -0
- package/corpus/templates/design/app/components/design/multi-screen/gradient-overlay-geometry.ts +120 -0
- package/corpus/templates/design/app/components/design/multi-screen/types.ts +892 -0
- package/corpus/templates/design/app/components/design/multi-screen/vector-edit-geometry.ts +21 -0
- package/corpus/templates/design/app/components/design/types.ts +15 -0
- package/corpus/templates/design/app/components/editor/PromptDialog.tsx +109 -5
- package/corpus/templates/design/app/global.css +8 -8
- package/corpus/templates/design/app/hooks/useDesignHotkeys.ts +259 -2
- package/corpus/templates/design/app/i18n/zh-TW.ts +163 -9
- package/corpus/templates/design/app/i18n-breakpoints.ts +205 -0
- package/corpus/templates/design/app/i18n-data.ts +1664 -152
- package/corpus/templates/design/app/i18n-motion.ts +563 -0
- package/corpus/templates/design/app/lib/design-import.ts +73 -0
- package/corpus/templates/design/app/pages/Index.tsx +41 -22
- package/corpus/templates/design/changelog/2026-06-29-design-inspector-controls-now-match-figmas-softer-dark-chrome.md +1 -1
- package/corpus/templates/design/changelog/2026-06-30-design-now-has-a-figma-style-left-rail-for-file-agent-assets.md +1 -1
- package/corpus/templates/design/changelog/2026-06-30-design-tools-now-use-a-quieter-figma-style-list-layout.md +1 -1
- package/corpus/templates/design/changelog/2026-06-30-multi-select-outlines-now-stay-consistent-across-all-screens.md +1 -1
- package/corpus/templates/design/changelog/2026-07-03-canvas-interactions-now-match-figma-rotation-aware-resizing-.md +1 -1
- package/corpus/templates/design/changelog/2026-07-03-layers-panel-matches-figma-top-layer-on-top-drag-with-auto-s.md +1 -1
- package/corpus/templates/design/changelog/2026-07-05-designs-get-ai-generated-names-from-your-prompt.md +6 -0
- package/corpus/templates/design/changelog/2026-07-05-local-code-screens-keep-their-connection-when-duplicated-and.md +6 -0
- package/corpus/templates/design/changelog/2026-07-05-press-a-to-draw-screens-on-the-canvas-inside-a-screen-it-dr.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-3d-rotation-and-perspective-controls-on-every-element.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-ai-generated-and-duplicated-screens-now-get-their-editor-sel.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-applying-shaders-and-fills-in-quick-succession-can-no-longer.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-breakpoint-frames-in-the-overview-now-support-click-to-selec.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-breakpoint-segments-in-the-inspector-now-show-a-device-icon-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-breakpoint-targeting-now-lives-in-one-compact-control-in-the.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-canvas-edits-can-no-longer-be-overwritten-by-stale-collabora.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-canvas-edits-inside-screens-save-reliably-again.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-cleaner-inspector-removed-the-ask-ai-box-from-the-design-tab.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-clicking-empty-canvas-space-now-deselects-an-element-inside-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-dragging-an-element-onto-a-rectangle-now-nests-it-inside-wit.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-dragging-screens-and-objects-on-the-canvas-is-now-much-smoot.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-drawing-a-shape-or-text-on-the-canvas-no-longer-flashes-away.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-dropping-an-element-between-two-others-inside-a-screen-now-s.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-duplicating-a-screen-now-places-the-copy-exactly-where-you-d.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-edit-gradients-directly-on-elements-inside-screens-scale-str.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-edits-from-collaborators-and-the-agent-now-update-the-canvas.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-fixed-a-bug-where-most-style-position-and-text-edits-briefly.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-fixed-a-confusing-raw-error-message-when-a-file-upload-fails.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-fixed-a-rare-case-where-an-edit-could-be-silently-overwritte.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-fixed-inserted-assets-sometimes-disappearing-reappearing-or-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-fixed-inspector-value-scrubbing-producing-erratic-numbers-an.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-fixed-padding-gap-and-min-max-size-scrubbing-not-updating-th.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-fixed-text-stroke-color-turning-black-and-glyphs-disappearin.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-fixed-the-collapsed-effects-and-stroke-inspector-sections-sh.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-fixed-the-new-design-dialog-closing-unexpectedly-when-using-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-fixed-the-typography-section-missing-when-selecting-text-nes.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-full-view-no-longer-flashes-back-to-the-overview-on-entry-no.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-keyframe-animation-timeline-per-property-keyframes-easing-cu.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-moving-restyling-and-scrubbing-values-on-elements-in-ai-gene.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-padding-and-corner-radius-value-scrubbing-now-snaps-to-whole.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-padding-handles-now-only-resize-on-the-handle-line-itself-sh.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-preview-and-edit-hover-focus-and-pressed-states-with-real-cs.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-promoting-an-element-to-a-component-now-works-correctly-for-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-reduced-url-history-churn-and-selection-overlay-flicker-whil.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-removed-the-decorative-dot-before-screen-names-in-the-overvi.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-responsive-breakpoints-edit-at-any-width-with-cascading-over.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-screen-labels-no-longer-turn-blue-when-you-hover-inside-the-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-scrolling-a-screen-with-an-element-selected-stays-smooth-on-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-selecting-multiple-elements-and-dragging-now-moves-the-whole.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-selection-borders-handles-and-value-readouts-now-stay-the-sa.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-selection-handles-and-editing-chrome-now-stay-a-constant-siz.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-shader-fills-and-effects-ai-authored-or-preset-glsl-shaders-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-text-drawn-on-the-canvas-now-defaults-to-white-and-inter-in-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-text-dropped-into-a-shape-now-stays-readable-instead-of-disa.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-the-add-tweak-controls-prompt-no-longer-jumps-to-the-corner-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-the-padding-value-readout-now-stays-visible-while-you-hover-.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-the-selected-element-attachment-now-clears-from-the-chat-com.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-the-zoom-menu-is-more-compact-with-tight-rows-and-right-alig.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-undo-and-redo-no-longer-flash-the-screen-changes-now-apply-i.md +6 -0
- package/corpus/templates/design/changelog/2026-07-06-zoom-presets-like-zoom-to-50-now-stay-on-the-focused-screen-.md +6 -0
- package/corpus/templates/design/server/lib/import-design-files.ts +11 -2
- package/corpus/templates/design/server/source-workspace.ts +139 -59
- package/corpus/templates/design/shared/board-file.ts +11 -2
- package/corpus/templates/design/shared/breakpoint-media.ts +543 -0
- package/corpus/templates/design/shared/canvas-math.ts +354 -35
- package/corpus/templates/design/shared/code-layer.ts +277 -8
- package/corpus/templates/design/shared/design-state.ts +11 -4
- package/corpus/templates/design/shared/interaction-states.ts +548 -0
- package/corpus/templates/design/shared/motion-compiler.ts +186 -23
- package/corpus/templates/design/shared/motion-easing.ts +294 -0
- package/corpus/templates/design/shared/motion-timeline.ts +400 -34
- package/corpus/templates/design/shared/prompt-title.ts +95 -0
- package/corpus/templates/design/shared/responsive-classes.ts +448 -10
- package/corpus/templates/design/shared/screen-annotation.ts +46 -0
- package/corpus/templates/design/shared/shader-fills.ts +1009 -0
- package/corpus/templates/design/shared/shader-presets.ts +852 -4
- package/corpus/templates/slides/app/components/editor/EditorToolbar.tsx +15 -2
- package/corpus/templates/slides/app/components/editor/ImportButton.tsx +10 -1
- package/corpus/templates/slides/app/lib/upload-response.ts +71 -0
- package/dist/client/AgentPanel.js +1 -1
- package/dist/client/AgentPanel.js.map +1 -1
- package/dist/client/rich-markdown-editor/useCollabReconcile.d.ts.map +1 -1
- package/dist/client/rich-markdown-editor/useCollabReconcile.js +11 -6
- package/dist/client/rich-markdown-editor/useCollabReconcile.js.map +1 -1
- package/dist/client/use-action.d.ts +3 -0
- package/dist/client/use-action.d.ts.map +1 -1
- package/dist/client/use-action.js +34 -3
- package/dist/client/use-action.js.map +1 -1
- package/dist/client/use-db-sync.d.ts +4 -0
- package/dist/client/use-db-sync.d.ts.map +1 -1
- package/dist/client/use-db-sync.js +37 -18
- package/dist/client/use-db-sync.js.map +1 -1
- package/dist/collab/routes.d.ts +1 -1
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/db/create-get-db.d.ts +25 -0
- package/dist/db/create-get-db.d.ts.map +1 -1
- package/dist/db/create-get-db.js +25 -2
- package/dist/db/create-get-db.js.map +1 -1
- package/dist/observability/routes.d.ts +3 -3
- package/dist/secrets/routes.d.ts +9 -9
- package/dist/server/framework-request-handler.d.ts.map +1 -1
- package/dist/server/framework-request-handler.js +37 -1
- package/dist/server/framework-request-handler.js.map +1 -1
- package/package.json +1 -1
- package/corpus/templates/design/app/components/design/inspector/InspectorAiActions.tsx +0 -153
- package/corpus/templates/design/app/hooks/useAgentEditRequest.ts +0 -133
- package/corpus/templates/design/app/pages/DesignEditor.tsx +0 -22924
|
@@ -32,7 +32,36 @@ const databaseMessages = {
|
|
|
32
32
|
builderBodiesQueued: "{{count}} queued",
|
|
33
33
|
builderBodySync: "Body sync",
|
|
34
34
|
builderBodySyncFailed: "{{count}} failed",
|
|
35
|
+
builderBodySyncFailedNotice:
|
|
36
|
+
"This article's body could not be synced from Builder",
|
|
37
|
+
builderBodySyncFailedDescription:
|
|
38
|
+
"The row stays editable, but the Builder body did not finish syncing. Review the article content before publishing or pushing changes.",
|
|
39
|
+
builderBodySyncing: "Content is still syncing from Builder",
|
|
40
|
+
builderBodySyncingDescription:
|
|
41
|
+
"Editing is paused until the Builder body finishes syncing, so the existing article content is not overwritten.",
|
|
35
42
|
builderBodiesHydrated: "{{hydrated}} of {{total}} bodies hydrated",
|
|
43
|
+
builderReviewShowingRows:
|
|
44
|
+
"Showing {{shown}} of {{total}} Builder rows for this review.",
|
|
45
|
+
builderReviewShowMore: "Show more",
|
|
46
|
+
builderReviewRemainingBatches:
|
|
47
|
+
"Review again after this batch to prepare the remaining Builder changes.",
|
|
48
|
+
builderBodiesSyncingProgress: "Syncing {{hydrated}} of {{total}} bodies.",
|
|
49
|
+
builderBodiesSyncFinishedWithFailures:
|
|
50
|
+
"{{hydrated}} of {{total}} bodies synced. {{failed}} failed.",
|
|
51
|
+
builderRowsFetched: "{{count}} Builder rows fetched",
|
|
52
|
+
builderRowsFetchedBodiesSyncing:
|
|
53
|
+
"{{rows}} rows fetched. Syncing {{hydrated}} of {{total}} bodies.",
|
|
54
|
+
builderRowsFetchedBodiesSyncFinishedWithFailures:
|
|
55
|
+
"{{rows}} rows fetched. {{hydrated}} of {{total}} bodies synced. {{failed}} failed.",
|
|
56
|
+
builderRowsFetchedSyncingBodies:
|
|
57
|
+
"Builder rows are fetched. Article bodies are still syncing.",
|
|
58
|
+
builderRowsFetchingMore: "fetching more rows",
|
|
59
|
+
builderRowsFetchFailed: "row fetch needs attention",
|
|
60
|
+
builderRowsFetchedSoFar: "{{count}} rows fetched so far.",
|
|
61
|
+
builderRowsFinishingUp: "Builder rows are finishing up.",
|
|
62
|
+
builderRowsLoadingBackground:
|
|
63
|
+
"Builder is still loading rows in the background.",
|
|
64
|
+
builderRowsLoadingHitSnag: "Builder row loading hit a snag.",
|
|
36
65
|
checkingForMatchingFields: "Checking for matching fields...",
|
|
37
66
|
checkingHowTheseRecordsMatch: "Checking how these records match...",
|
|
38
67
|
chooseFields: "Choose fields",
|
|
@@ -207,6 +236,7 @@ const databaseMessages = {
|
|
|
207
236
|
notMappedToBuilder: "Not mapped to Builder.",
|
|
208
237
|
openPage: "Open page",
|
|
209
238
|
openPagesIn: "Open pages in",
|
|
239
|
+
opening: "Opening...",
|
|
210
240
|
previewThisDatabasePageWithoutLeavingTheDatabase:
|
|
211
241
|
"Preview this database page without leaving the database.",
|
|
212
242
|
properties: "Properties",
|
|
@@ -1731,6 +1761,7 @@ const editorPropertiesMessages = {
|
|
|
1731
1761
|
add: "Add",
|
|
1732
1762
|
addOption: "Add option",
|
|
1733
1763
|
addProperty: "Add property",
|
|
1764
|
+
addPropertyFailed: "Could not add property.",
|
|
1734
1765
|
addPropertyLink: "Add {{name}} link",
|
|
1735
1766
|
addPropertyPerson: "Add {{name}} person",
|
|
1736
1767
|
addPropertyType: "Add {{type}} property",
|
|
@@ -1872,6 +1903,7 @@ const editorMediaMessages = {
|
|
|
1872
1903
|
generatingAltText: "Generating alt text...",
|
|
1873
1904
|
image: "Image",
|
|
1874
1905
|
imageAdded: "Image added",
|
|
1906
|
+
imageBroken: "Image could not be loaded",
|
|
1875
1907
|
imageCommentWithAlt: "Image: {{alt}}",
|
|
1876
1908
|
imageCopied: "Image copied.",
|
|
1877
1909
|
imageDownloadStarted: "Image download started.",
|
|
@@ -2246,7 +2278,12 @@ const enUS = {
|
|
|
2246
2278
|
noDocumentSelected: "No document selected",
|
|
2247
2279
|
couldNotReadLocalSourceFile: "Could not read local source file",
|
|
2248
2280
|
couldNotSaveLocalFile: "Could not save local file",
|
|
2281
|
+
collabConnectingReadOnly:
|
|
2282
|
+
"Connecting live editor. Showing a read-only snapshot.",
|
|
2249
2283
|
documentTitle: "Document title",
|
|
2284
|
+
builderBodySyncing: "Content is still syncing from Builder",
|
|
2285
|
+
builderBodySyncingDescription:
|
|
2286
|
+
"Editing is paused until the Builder body finishes syncing, so the existing article content is not overwritten.",
|
|
2250
2287
|
localFileSavedHistoryNotUpdated:
|
|
2251
2288
|
"Local file saved, but history was not updated",
|
|
2252
2289
|
reorderField: "Reorder {{name}}",
|
|
@@ -4617,6 +4654,10 @@ const databaseExactEnglishMessagesByLocale = {
|
|
|
4617
4654
|
const editorMessagesByLocale = {
|
|
4618
4655
|
"zh-CN": {
|
|
4619
4656
|
noDocumentSelected: "未选择文档",
|
|
4657
|
+
collabConnectingReadOnly: "正在连接实时编辑器。显示只读快照。",
|
|
4658
|
+
builderBodySyncing: "内容仍在从 Builder 同步",
|
|
4659
|
+
builderBodySyncingDescription:
|
|
4660
|
+
"同步 Builder 正文完成前会暂停编辑,避免覆盖现有文章内容。",
|
|
4620
4661
|
creatingDatabase: "正在创建内联数据库...",
|
|
4621
4662
|
databaseCreated: "内联数据库已创建",
|
|
4622
4663
|
describeWhatToGenerate: "描述要生成什么...",
|
|
@@ -4676,6 +4717,7 @@ const editorMessagesByLocale = {
|
|
|
4676
4717
|
generatingAltText: "正在生成替代文本...",
|
|
4677
4718
|
image: "图片",
|
|
4678
4719
|
imageAdded: "图片已添加",
|
|
4720
|
+
imageBroken: "图片无法加载",
|
|
4679
4721
|
imageCommentWithAlt: "图片:{{alt}}",
|
|
4680
4722
|
imageCopied: "图像已复制。",
|
|
4681
4723
|
imageDownloadStarted: "图像下载开始。",
|
|
@@ -4734,6 +4776,7 @@ const editorMessagesByLocale = {
|
|
|
4734
4776
|
add: "添加",
|
|
4735
4777
|
addOption: "添加选项",
|
|
4736
4778
|
addProperty: "添加属性",
|
|
4779
|
+
addPropertyFailed: "无法添加属性。",
|
|
4737
4780
|
addPropertyLink: "添加 {{name}} 链接",
|
|
4738
4781
|
addPropertyPerson: "添加 {{name}} 人",
|
|
4739
4782
|
addPropertyType: "添加 {{type}} 属性",
|
|
@@ -4934,6 +4977,11 @@ const editorMessagesByLocale = {
|
|
|
4934
4977
|
},
|
|
4935
4978
|
"es-ES": {
|
|
4936
4979
|
noDocumentSelected: "Ningún documento seleccionado",
|
|
4980
|
+
collabConnectingReadOnly:
|
|
4981
|
+
"Conectando el editor en vivo. Mostrando una instantánea de solo lectura.",
|
|
4982
|
+
builderBodySyncing: "El contenido aún se está sincronizando desde Builder",
|
|
4983
|
+
builderBodySyncingDescription:
|
|
4984
|
+
"La edición está en pausa hasta que el cuerpo de Builder termine de sincronizarse, para no sobrescribir el contenido existente del artículo.",
|
|
4937
4985
|
creatingDatabase: "Creando base de datos integrada...",
|
|
4938
4986
|
databaseCreated: "Base de datos integrada creada",
|
|
4939
4987
|
describeWhatToGenerate: "Describe qué generar...",
|
|
@@ -4995,6 +5043,7 @@ const editorMessagesByLocale = {
|
|
|
4995
5043
|
generatingAltText: "Generando texto alternativo...",
|
|
4996
5044
|
image: "Imagen",
|
|
4997
5045
|
imageAdded: "Imagen agregada",
|
|
5046
|
+
imageBroken: "No se pudo cargar la imagen",
|
|
4998
5047
|
imageCommentWithAlt: "Imagen: {{alt}}",
|
|
4999
5048
|
imageCopied: "Imagen copiada.",
|
|
5000
5049
|
imageDownloadStarted: "Se inició la descarga de la imagen.",
|
|
@@ -5053,6 +5102,7 @@ const editorMessagesByLocale = {
|
|
|
5053
5102
|
add: "Añadir",
|
|
5054
5103
|
addOption: "Agregar opción",
|
|
5055
5104
|
addProperty: "Agregar propiedad",
|
|
5105
|
+
addPropertyFailed: "No se pudo agregar la propiedad.",
|
|
5056
5106
|
addPropertyLink: "Agregar enlace {{name}}",
|
|
5057
5107
|
addPropertyPerson: "Agregar persona {{name}}",
|
|
5058
5108
|
addPropertyType: "Agregar propiedad {{type}}",
|
|
@@ -5261,6 +5311,12 @@ const editorMessagesByLocale = {
|
|
|
5261
5311
|
},
|
|
5262
5312
|
"fr-FR": {
|
|
5263
5313
|
noDocumentSelected: "Aucun document sélectionné",
|
|
5314
|
+
collabConnectingReadOnly:
|
|
5315
|
+
"Connexion de l'éditeur en direct. Affichage d'un instantané en lecture seule.",
|
|
5316
|
+
builderBodySyncing:
|
|
5317
|
+
"Le contenu est encore en cours de synchronisation depuis Builder",
|
|
5318
|
+
builderBodySyncingDescription:
|
|
5319
|
+
"La modification est suspendue jusqu'à la fin de la synchronisation du corps Builder, afin de ne pas écraser le contenu existant de l'article.",
|
|
5264
5320
|
creatingDatabase: "Création d'une base de données intégrée...",
|
|
5265
5321
|
databaseCreated: "Base de données intégrée créée",
|
|
5266
5322
|
describeWhatToGenerate: "Décrivez ce qu'il faut générer...",
|
|
@@ -5324,6 +5380,7 @@ const editorMessagesByLocale = {
|
|
|
5324
5380
|
generatingAltText: "Génération du texte alternatif...",
|
|
5325
5381
|
image: "Images",
|
|
5326
5382
|
imageAdded: "Image ajoutée",
|
|
5383
|
+
imageBroken: "L'image n'a pas pu être chargée",
|
|
5327
5384
|
imageCommentWithAlt: "Image : {{alt}}",
|
|
5328
5385
|
imageCopied: "Image copiée.",
|
|
5329
5386
|
imageDownloadStarted: "Le téléchargement de l'image a commencé.",
|
|
@@ -5382,6 +5439,7 @@ const editorMessagesByLocale = {
|
|
|
5382
5439
|
add: "Ajouter",
|
|
5383
5440
|
addOption: "Ajouter une option",
|
|
5384
5441
|
addProperty: "Ajouter une propriété",
|
|
5442
|
+
addPropertyFailed: "Impossible d’ajouter la propriété.",
|
|
5385
5443
|
addPropertyLink: "Ajouter un lien {{name}}",
|
|
5386
5444
|
addPropertyPerson: "Ajouter une personne {{name}}",
|
|
5387
5445
|
addPropertyType: "Ajouter la propriété {{type}}",
|
|
@@ -5590,6 +5648,11 @@ const editorMessagesByLocale = {
|
|
|
5590
5648
|
},
|
|
5591
5649
|
"de-DE": {
|
|
5592
5650
|
noDocumentSelected: "Kein Dokument ausgewählt",
|
|
5651
|
+
collabConnectingReadOnly:
|
|
5652
|
+
"Live-Editor wird verbunden. Schreibgeschützte Momentaufnahme wird angezeigt.",
|
|
5653
|
+
builderBodySyncing: "Inhalte werden noch von Builder synchronisiert",
|
|
5654
|
+
builderBodySyncingDescription:
|
|
5655
|
+
"Die Bearbeitung ist pausiert, bis der Builder-Textkörper fertig synchronisiert ist, damit der bestehende Artikelinhalt nicht überschrieben wird.",
|
|
5593
5656
|
creatingDatabase: "Inline-Datenbank wird erstellt...",
|
|
5594
5657
|
databaseCreated: "Inline-Datenbank erstellt",
|
|
5595
5658
|
describeWhatToGenerate: "Beschreiben Sie, was generiert werden soll ...",
|
|
@@ -5653,6 +5716,7 @@ const editorMessagesByLocale = {
|
|
|
5653
5716
|
generatingAltText: "Alternativtext wird generiert...",
|
|
5654
5717
|
image: "Bild",
|
|
5655
5718
|
imageAdded: "Bild hinzugefügt",
|
|
5719
|
+
imageBroken: "Bild konnte nicht geladen werden",
|
|
5656
5720
|
imageCommentWithAlt: "Bild: {{alt}}",
|
|
5657
5721
|
imageCopied: "Bild kopiert.",
|
|
5658
5722
|
imageDownloadStarted: "Bild-Download gestartet.",
|
|
@@ -5712,6 +5776,7 @@ const editorMessagesByLocale = {
|
|
|
5712
5776
|
add: "Hinzufügen",
|
|
5713
5777
|
addOption: "Option hinzufügen",
|
|
5714
5778
|
addProperty: "Eigenschaft hinzufügen",
|
|
5779
|
+
addPropertyFailed: "Eigenschaft konnte nicht hinzugefügt werden.",
|
|
5715
5780
|
addPropertyLink: "{{name}}-Link hinzufügen",
|
|
5716
5781
|
addPropertyPerson: "{{name}}-Person hinzufügen",
|
|
5717
5782
|
addPropertyType: "{{type}}-Eigenschaft hinzufügen",
|
|
@@ -5924,6 +5989,11 @@ const editorMessagesByLocale = {
|
|
|
5924
5989
|
},
|
|
5925
5990
|
"ja-JP": {
|
|
5926
5991
|
noDocumentSelected: "ドキュメントが選択されていません",
|
|
5992
|
+
collabConnectingReadOnly:
|
|
5993
|
+
"ライブエディターに接続中。読み取り専用のスナップショットを表示しています。",
|
|
5994
|
+
builderBodySyncing: "コンテンツはまだ Builder から同期中です",
|
|
5995
|
+
builderBodySyncingDescription:
|
|
5996
|
+
"既存の記事内容を上書きしないよう、Builder 本文の同期が完了するまで編集は一時停止されます。",
|
|
5927
5997
|
creatingDatabase: "インラインデータベースを作成しています...",
|
|
5928
5998
|
databaseCreated: "インラインデータベースが作成されました",
|
|
5929
5999
|
describeWhatToGenerate: "何を生成するかを説明します...",
|
|
@@ -5983,6 +6053,7 @@ const editorMessagesByLocale = {
|
|
|
5983
6053
|
generatingAltText: "代替テキストを生成しています...",
|
|
5984
6054
|
image: "画像",
|
|
5985
6055
|
imageAdded: "画像追加",
|
|
6056
|
+
imageBroken: "画像を読み込めませんでした",
|
|
5986
6057
|
imageCommentWithAlt: "画像: {{alt}}",
|
|
5987
6058
|
imageCopied: "画像をコピーしました。",
|
|
5988
6059
|
imageDownloadStarted: "画像のダウンロードが始まりました。",
|
|
@@ -6042,6 +6113,7 @@ const editorMessagesByLocale = {
|
|
|
6042
6113
|
add: "追加",
|
|
6043
6114
|
addOption: "オプションを追加",
|
|
6044
6115
|
addProperty: "プロパティの追加",
|
|
6116
|
+
addPropertyFailed: "プロパティを追加できませんでした。",
|
|
6045
6117
|
addPropertyLink: "{{name}} リンクを追加",
|
|
6046
6118
|
addPropertyPerson: "{{name}} 人を追加",
|
|
6047
6119
|
addPropertyType: "{{type}}プロパティを追加",
|
|
@@ -6248,6 +6320,11 @@ const editorMessagesByLocale = {
|
|
|
6248
6320
|
},
|
|
6249
6321
|
"ko-KR": {
|
|
6250
6322
|
noDocumentSelected: "선택한 문서가 없습니다.",
|
|
6323
|
+
collabConnectingReadOnly:
|
|
6324
|
+
"라이브 편집기에 연결하는 중입니다. 읽기 전용 스냅샷을 표시합니다.",
|
|
6325
|
+
builderBodySyncing: "콘텐츠가 아직 Builder에서 동기화되는 중입니다",
|
|
6326
|
+
builderBodySyncingDescription:
|
|
6327
|
+
"기존 문서 내용을 덮어쓰지 않도록 Builder 본문 동기화가 완료될 때까지 편집이 일시 중지됩니다.",
|
|
6251
6328
|
creatingDatabase: "인라인 데이터베이스 생성 중...",
|
|
6252
6329
|
databaseCreated: "인라인 데이터베이스가 생성되었습니다.",
|
|
6253
6330
|
describeWhatToGenerate: "무엇을 생성할지 설명하세요...",
|
|
@@ -6307,6 +6384,7 @@ const editorMessagesByLocale = {
|
|
|
6307
6384
|
generatingAltText: "대체 텍스트 생성 중...",
|
|
6308
6385
|
image: "이미지",
|
|
6309
6386
|
imageAdded: "이미지가 추가됨",
|
|
6387
|
+
imageBroken: "이미지를 불러올 수 없습니다",
|
|
6310
6388
|
imageCommentWithAlt: "이미지: {{alt}}",
|
|
6311
6389
|
imageCopied: "이미지가 복사되었습니다.",
|
|
6312
6390
|
imageDownloadStarted: "이미지 다운로드가 시작되었습니다.",
|
|
@@ -6365,6 +6443,7 @@ const editorMessagesByLocale = {
|
|
|
6365
6443
|
add: "추가",
|
|
6366
6444
|
addOption: "옵션 추가",
|
|
6367
6445
|
addProperty: "속성 추가",
|
|
6446
|
+
addPropertyFailed: "속성을 추가하지 못했습니다.",
|
|
6368
6447
|
addPropertyLink: "{{name}} 링크 추가",
|
|
6369
6448
|
addPropertyPerson: "{{name}} 사람 추가",
|
|
6370
6449
|
addPropertyType: "{{type}} 속성 추가",
|
|
@@ -6571,6 +6650,11 @@ const editorMessagesByLocale = {
|
|
|
6571
6650
|
},
|
|
6572
6651
|
"pt-BR": {
|
|
6573
6652
|
noDocumentSelected: "Nenhum documento selecionado",
|
|
6653
|
+
collabConnectingReadOnly:
|
|
6654
|
+
"Conectando o editor ao vivo. Exibindo um instantâneo somente leitura.",
|
|
6655
|
+
builderBodySyncing: "O conteúdo ainda está sincronizando do Builder",
|
|
6656
|
+
builderBodySyncingDescription:
|
|
6657
|
+
"A edição fica pausada até o corpo do Builder terminar de sincronizar, para não sobrescrever o conteúdo existente do artigo.",
|
|
6574
6658
|
creatingDatabase: "Criando banco de dados embutido...",
|
|
6575
6659
|
databaseCreated: "Banco de dados embutido criado",
|
|
6576
6660
|
describeWhatToGenerate: "Descreva o que gerar...",
|
|
@@ -6632,6 +6716,7 @@ const editorMessagesByLocale = {
|
|
|
6632
6716
|
generatingAltText: "Gerando texto alternativo...",
|
|
6633
6717
|
image: "Imagem",
|
|
6634
6718
|
imageAdded: "Imagem adicionada",
|
|
6719
|
+
imageBroken: "Não foi possível carregar a imagem",
|
|
6635
6720
|
imageCommentWithAlt: "Imagem: {{alt}}",
|
|
6636
6721
|
imageCopied: "Imagem copiada.",
|
|
6637
6722
|
imageDownloadStarted: "O download da imagem foi iniciado.",
|
|
@@ -6691,6 +6776,7 @@ const editorMessagesByLocale = {
|
|
|
6691
6776
|
add: "Adicionar",
|
|
6692
6777
|
addOption: "Adicionar opção",
|
|
6693
6778
|
addProperty: "Adicionar propriedade",
|
|
6779
|
+
addPropertyFailed: "Não foi possível adicionar a propriedade.",
|
|
6694
6780
|
addPropertyLink: "Adicionar link {{name}}",
|
|
6695
6781
|
addPropertyPerson: "Adicionar pessoa {{name}}",
|
|
6696
6782
|
addPropertyType: "Adicionar propriedade {{type}}",
|
|
@@ -6900,6 +6986,11 @@ const editorMessagesByLocale = {
|
|
|
6900
6986
|
},
|
|
6901
6987
|
"hi-IN": {
|
|
6902
6988
|
noDocumentSelected: "कोई दस्तावेज़ चयनित नहीं",
|
|
6989
|
+
collabConnectingReadOnly:
|
|
6990
|
+
"लाइव संपादक कनेक्ट हो रहा है। केवल-पठन स्नैपशॉट दिखाया जा रहा है।",
|
|
6991
|
+
builderBodySyncing: "सामग्री अभी भी Builder से सिंक हो रही है",
|
|
6992
|
+
builderBodySyncingDescription:
|
|
6993
|
+
"Builder का मुख्य भाग सिंक पूरा होने तक संपादन रोका गया है, ताकि मौजूदा लेख सामग्री अधिलेखित न हो।",
|
|
6903
6994
|
creatingDatabase: "इनलाइन डेटाबेस बनाया जा रहा है...",
|
|
6904
6995
|
databaseCreated: "इनलाइन डेटाबेस बनाया गया",
|
|
6905
6996
|
describeWhatToGenerate: "वर्णन करें कि क्या उत्पन्न करना है...",
|
|
@@ -6959,6 +7050,7 @@ const editorMessagesByLocale = {
|
|
|
6959
7050
|
generatingAltText: "वैकल्पिक टेक्स्ट जनरेट किया जा रहा है...",
|
|
6960
7051
|
image: "छवि",
|
|
6961
7052
|
imageAdded: "छवि जोड़ी गई",
|
|
7053
|
+
imageBroken: "छवि लोड नहीं हो सकी",
|
|
6962
7054
|
imageCommentWithAlt: "छवि: {{alt}}",
|
|
6963
7055
|
imageCopied: "छवि कॉपी की गई.",
|
|
6964
7056
|
imageDownloadStarted: "छवि डाउनलोड प्रारंभ हुआ.",
|
|
@@ -7017,6 +7109,7 @@ const editorMessagesByLocale = {
|
|
|
7017
7109
|
add: "जोड़ें",
|
|
7018
7110
|
addOption: "विकल्प जोड़ें",
|
|
7019
7111
|
addProperty: "संपत्ति जोड़ें",
|
|
7112
|
+
addPropertyFailed: "प्रॉपर्टी नहीं जोड़ी जा सकी।",
|
|
7020
7113
|
addPropertyLink: "{{name}} लिंक जोड़ें",
|
|
7021
7114
|
addPropertyPerson: "{{name}} व्यक्ति जोड़ें",
|
|
7022
7115
|
addPropertyType: "{{type}} गुण जोड़ें",
|
|
@@ -7220,6 +7313,11 @@ const editorMessagesByLocale = {
|
|
|
7220
7313
|
},
|
|
7221
7314
|
"ar-SA": {
|
|
7222
7315
|
noDocumentSelected: "لم يتم تحديد أي مستند",
|
|
7316
|
+
collabConnectingReadOnly:
|
|
7317
|
+
"جارٍ الاتصال بالمحرر المباشر. يتم عرض لقطة للقراءة فقط.",
|
|
7318
|
+
builderBodySyncing: "لا يزال المحتوى قيد المزامنة من Builder",
|
|
7319
|
+
builderBodySyncingDescription:
|
|
7320
|
+
"يتم إيقاف التحرير مؤقتًا حتى تكتمل مزامنة نص Builder، حتى لا يتم استبدال محتوى المقالة الحالي.",
|
|
7223
7321
|
creatingDatabase: "جارٍ إنشاء قاعدة بيانات مضمنة...",
|
|
7224
7322
|
databaseCreated: "تم إنشاء قاعدة البيانات المضمنة",
|
|
7225
7323
|
describeWhatToGenerate: "وصف ما سيتم إنشاؤه...",
|
|
@@ -7279,6 +7377,7 @@ const editorMessagesByLocale = {
|
|
|
7279
7377
|
generatingAltText: "جارٍ إنشاء نص بديل...",
|
|
7280
7378
|
image: "صورة",
|
|
7281
7379
|
imageAdded: "تمت إضافة الصورة",
|
|
7380
|
+
imageBroken: "تعذّر تحميل الصورة",
|
|
7282
7381
|
imageCommentWithAlt: "الصورة: {{alt}}",
|
|
7283
7382
|
imageCopied: "تم نسخ الصورة.",
|
|
7284
7383
|
imageDownloadStarted: "بدأ تنزيل الصورة.",
|
|
@@ -7337,6 +7436,7 @@ const editorMessagesByLocale = {
|
|
|
7337
7436
|
add: "أضف",
|
|
7338
7437
|
addOption: "إضافة خيار",
|
|
7339
7438
|
addProperty: "أضف خاصية",
|
|
7439
|
+
addPropertyFailed: "تعذرت إضافة الخاصية.",
|
|
7340
7440
|
addPropertyLink: "أضف رابط {{name}}",
|
|
7341
7441
|
addPropertyPerson: "إضافة شخص {{name}}",
|
|
7342
7442
|
addPropertyType: "إضافة خاصية {{type}}",
|
|
@@ -7795,6 +7895,32 @@ export const messagesByLocale = {
|
|
|
7795
7895
|
...databaseExactEnglishMessagesByLocale["zh-CN"],
|
|
7796
7896
|
builderBodiesReadyLocally: "Builder 文章正文已在本地准备就绪。",
|
|
7797
7897
|
builderBodySync: "正文同步",
|
|
7898
|
+
builderBodySyncFailedNotice: "此文章正文无法从 Builder 同步",
|
|
7899
|
+
builderBodySyncFailedDescription:
|
|
7900
|
+
"该行仍可编辑,但 Builder 正文未完成同步。发布或推送更改前请检查文章内容。",
|
|
7901
|
+
builderBodySyncing: "内容仍在从 Builder 同步",
|
|
7902
|
+
builderBodySyncingDescription:
|
|
7903
|
+
"同步 Builder 正文完成前会暂停编辑,避免覆盖现有文章内容。",
|
|
7904
|
+
builderReviewShowingRows:
|
|
7905
|
+
"此次审查显示 {{total}} 个 Builder 行中的 {{shown}} 个。",
|
|
7906
|
+
builderReviewShowMore: "显示更多",
|
|
7907
|
+
builderReviewRemainingBatches:
|
|
7908
|
+
"此批次完成后请再次审查,以准备其余 Builder 更改。",
|
|
7909
|
+
builderBodiesSyncingProgress:
|
|
7910
|
+
"正在同步 {{total}} 个正文中的 {{hydrated}} 个。",
|
|
7911
|
+
builderBodiesSyncFinishedWithFailures:
|
|
7912
|
+
"已同步 {{total}} 个正文中的 {{hydrated}} 个。{{failed}} 个失败。",
|
|
7913
|
+
builderRowsFetchedBodiesSyncing:
|
|
7914
|
+
"已获取 {{rows}} 行。正在同步 {{total}} 个正文中的 {{hydrated}} 个。",
|
|
7915
|
+
builderRowsFetchedBodiesSyncFinishedWithFailures:
|
|
7916
|
+
"已获取 {{rows}} 行。已同步 {{total}} 个正文中的 {{hydrated}} 个。{{failed}} 个失败。",
|
|
7917
|
+
builderRowsFetchedSyncingBodies:
|
|
7918
|
+
"Builder 行已全部获取。文章正文仍在同步中。",
|
|
7919
|
+
builderRowsFetchedSoFar: "目前已获取 {{count}} 行。",
|
|
7920
|
+
builderRowsFinishingUp: "Builder 行即将完成加载。",
|
|
7921
|
+
builderRowsLoadingBackground: "Builder 仍在后台加载行。",
|
|
7922
|
+
builderRowsLoadingHitSnag: "Builder 行加载遇到问题。",
|
|
7923
|
+
opening: "正在打开...",
|
|
7798
7924
|
},
|
|
7799
7925
|
localFiles: localFilesMessagesByLocale["zh-CN"],
|
|
7800
7926
|
root: {
|
|
@@ -7929,6 +8055,37 @@ export const messagesByLocale = {
|
|
|
7929
8055
|
builderBodiesReadyLocally:
|
|
7930
8056
|
"Los cuerpos de los artículos de Builder están listos localmente.",
|
|
7931
8057
|
builderBodySync: "Sincronización del cuerpo",
|
|
8058
|
+
builderBodySyncFailedNotice:
|
|
8059
|
+
"El cuerpo de este artículo no se pudo sincronizar desde Builder",
|
|
8060
|
+
builderBodySyncFailedDescription:
|
|
8061
|
+
"La fila sigue siendo editable, pero el cuerpo de Builder no terminó de sincronizarse. Revisa el contenido del artículo antes de publicar o enviar cambios.",
|
|
8062
|
+
builderBodySyncing:
|
|
8063
|
+
"El contenido aún se está sincronizando desde Builder",
|
|
8064
|
+
builderBodySyncingDescription:
|
|
8065
|
+
"La edición está en pausa hasta que el cuerpo de Builder termine de sincronizarse, para no sobrescribir el contenido existente del artículo.",
|
|
8066
|
+
builderReviewShowingRows:
|
|
8067
|
+
"Mostrando {{shown}} de {{total}} filas de Builder para esta revisión.",
|
|
8068
|
+
builderReviewShowMore: "Mostrar más",
|
|
8069
|
+
builderReviewRemainingBatches:
|
|
8070
|
+
"Revisa de nuevo después de este lote para preparar los cambios restantes de Builder.",
|
|
8071
|
+
builderBodiesSyncingProgress:
|
|
8072
|
+
"Sincronizando {{hydrated}} de {{total}} cuerpos.",
|
|
8073
|
+
builderBodiesSyncFinishedWithFailures:
|
|
8074
|
+
"{{hydrated}} de {{total}} cuerpos sincronizados. {{failed}} fallaron.",
|
|
8075
|
+
builderRowsFetchedBodiesSyncing:
|
|
8076
|
+
"{{rows}} filas obtenidas. Sincronizando {{hydrated}} de {{total}} cuerpos.",
|
|
8077
|
+
builderRowsFetchedBodiesSyncFinishedWithFailures:
|
|
8078
|
+
"{{rows}} filas obtenidas. {{hydrated}} de {{total}} cuerpos sincronizados. {{failed}} fallaron.",
|
|
8079
|
+
builderRowsFetchedSyncingBodies:
|
|
8080
|
+
"Las filas de Builder están obtenidas. Los cuerpos de los artículos aún se están sincronizando.",
|
|
8081
|
+
builderRowsFetchedSoFar: "{{count}} filas obtenidas hasta ahora.",
|
|
8082
|
+
builderRowsFinishingUp:
|
|
8083
|
+
"Las filas de Builder están terminando de cargarse.",
|
|
8084
|
+
builderRowsLoadingBackground:
|
|
8085
|
+
"Builder sigue cargando filas en segundo plano.",
|
|
8086
|
+
builderRowsLoadingHitSnag:
|
|
8087
|
+
"La carga de filas de Builder tuvo un problema.",
|
|
8088
|
+
opening: "Abriendo...",
|
|
7932
8089
|
},
|
|
7933
8090
|
localFiles: localFilesMessagesByLocale["es-ES"],
|
|
7934
8091
|
root: {
|
|
@@ -8073,6 +8230,36 @@ export const messagesByLocale = {
|
|
|
8073
8230
|
builderBodiesReadyLocally:
|
|
8074
8231
|
"Les corps d’articles Builder sont prêts localement.",
|
|
8075
8232
|
builderBodySync: "Synchronisation du corps",
|
|
8233
|
+
builderBodySyncFailedNotice:
|
|
8234
|
+
"Le corps de cet article n'a pas pu être synchronisé depuis Builder",
|
|
8235
|
+
builderBodySyncFailedDescription:
|
|
8236
|
+
"La ligne reste modifiable, mais le corps Builder n'a pas terminé sa synchronisation. Vérifiez le contenu de l'article avant de publier ou de pousser des modifications.",
|
|
8237
|
+
builderBodySyncing:
|
|
8238
|
+
"Le contenu est encore en cours de synchronisation depuis Builder",
|
|
8239
|
+
builderBodySyncingDescription:
|
|
8240
|
+
"La modification est suspendue jusqu'à la fin de la synchronisation du corps Builder, afin de ne pas écraser le contenu existant de l'article.",
|
|
8241
|
+
builderReviewShowingRows:
|
|
8242
|
+
"Affichage de {{shown}} lignes Builder sur {{total}} pour cette revue.",
|
|
8243
|
+
builderReviewShowMore: "Afficher plus",
|
|
8244
|
+
builderReviewRemainingBatches:
|
|
8245
|
+
"Relancez la revue après ce lot pour préparer les modifications Builder restantes.",
|
|
8246
|
+
builderBodiesSyncingProgress:
|
|
8247
|
+
"Synchronisation de {{hydrated}} corps sur {{total}}.",
|
|
8248
|
+
builderBodiesSyncFinishedWithFailures:
|
|
8249
|
+
"{{hydrated}} corps synchronisés sur {{total}}. {{failed}} échecs.",
|
|
8250
|
+
builderRowsFetchedBodiesSyncing:
|
|
8251
|
+
"{{rows}} lignes récupérées. Synchronisation de {{hydrated}} corps sur {{total}}.",
|
|
8252
|
+
builderRowsFetchedBodiesSyncFinishedWithFailures:
|
|
8253
|
+
"{{rows}} lignes récupérées. {{hydrated}} corps synchronisés sur {{total}}. {{failed}} échecs.",
|
|
8254
|
+
builderRowsFetchedSyncingBodies:
|
|
8255
|
+
"Les lignes Builder sont récupérées. Les corps d'articles se synchronisent encore.",
|
|
8256
|
+
builderRowsFetchedSoFar: "{{count}} lignes récupérées jusqu’à présent.",
|
|
8257
|
+
builderRowsFinishingUp: "Les lignes Builder terminent leur chargement.",
|
|
8258
|
+
builderRowsLoadingBackground:
|
|
8259
|
+
"Builder charge encore des lignes en arrière-plan.",
|
|
8260
|
+
builderRowsLoadingHitSnag:
|
|
8261
|
+
"Le chargement des lignes Builder a rencontré un problème.",
|
|
8262
|
+
opening: "Ouverture...",
|
|
8076
8263
|
},
|
|
8077
8264
|
localFiles: localFilesMessagesByLocale["fr-FR"],
|
|
8078
8265
|
root: {
|
|
@@ -8220,6 +8407,35 @@ export const messagesByLocale = {
|
|
|
8220
8407
|
...databaseExactEnglishMessagesByLocale["de-DE"],
|
|
8221
8408
|
builderBodiesReadyLocally: "Builder-Artikelinhalte sind lokal bereit.",
|
|
8222
8409
|
builderBodySync: "Inhaltssynchronisierung",
|
|
8410
|
+
builderBodySyncFailedNotice:
|
|
8411
|
+
"Der Inhalt dieses Artikels konnte nicht aus Builder synchronisiert werden",
|
|
8412
|
+
builderBodySyncFailedDescription:
|
|
8413
|
+
"Die Zeile bleibt bearbeitbar, aber der Builder-Inhalt wurde nicht vollständig synchronisiert. Prüfen Sie den Artikelinhalt vor dem Veröffentlichen oder Pushen.",
|
|
8414
|
+
builderBodySyncing: "Inhalte werden noch von Builder synchronisiert",
|
|
8415
|
+
builderBodySyncingDescription:
|
|
8416
|
+
"Die Bearbeitung ist pausiert, bis der Builder-Textkörper fertig synchronisiert ist, damit der bestehende Artikelinhalt nicht überschrieben wird.",
|
|
8417
|
+
builderReviewShowingRows:
|
|
8418
|
+
"Zeige {{shown}} von {{total}} Builder-Zeilen für diese Überprüfung.",
|
|
8419
|
+
builderReviewShowMore: "Mehr anzeigen",
|
|
8420
|
+
builderReviewRemainingBatches:
|
|
8421
|
+
"Nach diesem Stapel erneut überprüfen, um die restlichen Builder-Änderungen vorzubereiten.",
|
|
8422
|
+
builderBodiesSyncingProgress:
|
|
8423
|
+
"{{hydrated}} von {{total}} Texten werden synchronisiert.",
|
|
8424
|
+
builderBodiesSyncFinishedWithFailures:
|
|
8425
|
+
"{{hydrated}} von {{total}} Texten synchronisiert. {{failed}} fehlgeschlagen.",
|
|
8426
|
+
builderRowsFetchedBodiesSyncing:
|
|
8427
|
+
"{{rows}} Zeilen geladen. {{hydrated}} von {{total}} Texten werden synchronisiert.",
|
|
8428
|
+
builderRowsFetchedBodiesSyncFinishedWithFailures:
|
|
8429
|
+
"{{rows}} Zeilen geladen. {{hydrated}} von {{total}} Texten synchronisiert. {{failed}} fehlgeschlagen.",
|
|
8430
|
+
builderRowsFetchedSyncingBodies:
|
|
8431
|
+
"Builder-Zeilen sind geladen. Artikeltexte werden noch synchronisiert.",
|
|
8432
|
+
builderRowsFetchedSoFar: "{{count}} Zeilen bisher abgerufen.",
|
|
8433
|
+
builderRowsFinishingUp: "Builder-Zeilen werden fertig geladen.",
|
|
8434
|
+
builderRowsLoadingBackground:
|
|
8435
|
+
"Builder lädt weiterhin Zeilen im Hintergrund.",
|
|
8436
|
+
builderRowsLoadingHitSnag:
|
|
8437
|
+
"Beim Laden der Builder-Zeilen ist ein Problem aufgetreten.",
|
|
8438
|
+
opening: "Wird geöffnet...",
|
|
8223
8439
|
},
|
|
8224
8440
|
localFiles: localFilesMessagesByLocale["de-DE"],
|
|
8225
8441
|
root: {
|
|
@@ -8368,6 +8584,34 @@ export const messagesByLocale = {
|
|
|
8368
8584
|
builderBodiesReadyLocally:
|
|
8369
8585
|
"Builder の記事本文はローカルで準備できています。",
|
|
8370
8586
|
builderBodySync: "本文同期",
|
|
8587
|
+
builderBodySyncFailedNotice:
|
|
8588
|
+
"この記事の本文を Builder から同期できませんでした",
|
|
8589
|
+
builderBodySyncFailedDescription:
|
|
8590
|
+
"この行は引き続き編集できますが、Builder 本文の同期は完了していません。公開または変更のプッシュ前に記事内容を確認してください。",
|
|
8591
|
+
builderBodySyncing: "コンテンツはまだ Builder から同期中です",
|
|
8592
|
+
builderBodySyncingDescription:
|
|
8593
|
+
"既存の記事内容を上書きしないよう、Builder 本文の同期が完了するまで編集は一時停止されます。",
|
|
8594
|
+
builderReviewShowingRows:
|
|
8595
|
+
"このレビューでは {{total}} 件中 {{shown}} 件の Builder 行を表示しています。",
|
|
8596
|
+
builderReviewShowMore: "さらに表示",
|
|
8597
|
+
builderReviewRemainingBatches:
|
|
8598
|
+
"残りの Builder 変更を準備するには、このバッチの後で再度レビューしてください。",
|
|
8599
|
+
builderBodiesSyncingProgress:
|
|
8600
|
+
"{{total}} 件中 {{hydrated}} 件の本文を同期しています。",
|
|
8601
|
+
builderBodiesSyncFinishedWithFailures:
|
|
8602
|
+
"{{total}} 件中 {{hydrated}} 件の本文を同期しました。{{failed}} 件が失敗しました。",
|
|
8603
|
+
builderRowsFetchedBodiesSyncing:
|
|
8604
|
+
"{{rows}} 行を取得しました。{{total}} 件中 {{hydrated}} 件の本文を同期しています。",
|
|
8605
|
+
builderRowsFetchedBodiesSyncFinishedWithFailures:
|
|
8606
|
+
"{{rows}} 行を取得しました。{{total}} 件中 {{hydrated}} 件の本文を同期しました。{{failed}} 件が失敗しました。",
|
|
8607
|
+
builderRowsFetchedSyncingBodies:
|
|
8608
|
+
"Builder の行は取得済みです。記事本文はまだ同期中です。",
|
|
8609
|
+
builderRowsFetchedSoFar: "現在 {{count}} 行を取得済みです。",
|
|
8610
|
+
builderRowsFinishingUp: "Builder 行の読み込みを完了しています。",
|
|
8611
|
+
builderRowsLoadingBackground:
|
|
8612
|
+
"Builder はバックグラウンドで行を読み込み続けています。",
|
|
8613
|
+
builderRowsLoadingHitSnag: "Builder 行の読み込みで問題が発生しました。",
|
|
8614
|
+
opening: "開いています...",
|
|
8371
8615
|
},
|
|
8372
8616
|
localFiles: localFilesMessagesByLocale["ja-JP"],
|
|
8373
8617
|
root: {
|
|
@@ -8511,6 +8755,34 @@ export const messagesByLocale = {
|
|
|
8511
8755
|
...databaseExactEnglishMessagesByLocale["ko-KR"],
|
|
8512
8756
|
builderBodiesReadyLocally: "Builder 문서 본문이 로컬에서 준비되었습니다.",
|
|
8513
8757
|
builderBodySync: "본문 동기화",
|
|
8758
|
+
builderBodySyncFailedNotice:
|
|
8759
|
+
"이 문서 본문을 Builder에서 동기화하지 못했습니다",
|
|
8760
|
+
builderBodySyncFailedDescription:
|
|
8761
|
+
"이 행은 계속 편집할 수 있지만 Builder 본문 동기화가 완료되지 않았습니다. 게시하거나 변경 사항을 푸시하기 전에 문서 내용을 검토하세요.",
|
|
8762
|
+
builderBodySyncing: "콘텐츠가 아직 Builder에서 동기화되는 중입니다",
|
|
8763
|
+
builderBodySyncingDescription:
|
|
8764
|
+
"기존 문서 내용을 덮어쓰지 않도록 Builder 본문 동기화가 완료될 때까지 편집이 일시 중지됩니다.",
|
|
8765
|
+
builderReviewShowingRows:
|
|
8766
|
+
"이 검토에서 Builder 행 {{total}}개 중 {{shown}}개를 표시하고 있습니다.",
|
|
8767
|
+
builderReviewShowMore: "더 보기",
|
|
8768
|
+
builderReviewRemainingBatches:
|
|
8769
|
+
"남은 Builder 변경 사항을 준비하려면 이 배치 후 다시 검토하세요.",
|
|
8770
|
+
builderBodiesSyncingProgress:
|
|
8771
|
+
"본문 {{total}}개 중 {{hydrated}}개를 동기화하는 중입니다.",
|
|
8772
|
+
builderBodiesSyncFinishedWithFailures:
|
|
8773
|
+
"본문 {{total}}개 중 {{hydrated}}개를 동기화했습니다. {{failed}}개 실패했습니다.",
|
|
8774
|
+
builderRowsFetchedBodiesSyncing:
|
|
8775
|
+
"행 {{rows}}개를 가져왔습니다. 본문 {{total}}개 중 {{hydrated}}개를 동기화하는 중입니다.",
|
|
8776
|
+
builderRowsFetchedBodiesSyncFinishedWithFailures:
|
|
8777
|
+
"행 {{rows}}개를 가져왔습니다. 본문 {{total}}개 중 {{hydrated}}개를 동기화했습니다. {{failed}}개 실패했습니다.",
|
|
8778
|
+
builderRowsFetchedSyncingBodies:
|
|
8779
|
+
"Builder 행을 모두 가져왔습니다. 문서 본문은 아직 동기화 중입니다.",
|
|
8780
|
+
builderRowsFetchedSoFar: "지금까지 {{count}}개 행을 가져왔습니다.",
|
|
8781
|
+
builderRowsFinishingUp: "Builder 행 로드를 마무리하는 중입니다.",
|
|
8782
|
+
builderRowsLoadingBackground:
|
|
8783
|
+
"Builder가 백그라운드에서 행을 계속 로드하고 있습니다.",
|
|
8784
|
+
builderRowsLoadingHitSnag: "Builder 행 로드 중 문제가 발생했습니다.",
|
|
8785
|
+
opening: "여는 중...",
|
|
8514
8786
|
},
|
|
8515
8787
|
localFiles: localFilesMessagesByLocale["ko-KR"],
|
|
8516
8788
|
root: {
|
|
@@ -8647,6 +8919,36 @@ export const messagesByLocale = {
|
|
|
8647
8919
|
builderBodiesReadyLocally:
|
|
8648
8920
|
"Os corpos dos artigos do Builder estão prontos localmente.",
|
|
8649
8921
|
builderBodySync: "Sincronização do corpo",
|
|
8922
|
+
builderBodySyncFailedNotice:
|
|
8923
|
+
"O corpo deste artigo não pôde ser sincronizado do Builder",
|
|
8924
|
+
builderBodySyncFailedDescription:
|
|
8925
|
+
"A linha continua editável, mas o corpo do Builder não terminou de sincronizar. Revise o conteúdo do artigo antes de publicar ou enviar alterações.",
|
|
8926
|
+
builderBodySyncing: "O conteúdo ainda está sincronizando do Builder",
|
|
8927
|
+
builderBodySyncingDescription:
|
|
8928
|
+
"A edição fica pausada até o corpo do Builder terminar de sincronizar, para não sobrescrever o conteúdo existente do artigo.",
|
|
8929
|
+
builderReviewShowingRows:
|
|
8930
|
+
"Mostrando {{shown}} de {{total}} linhas do Builder para esta revisão.",
|
|
8931
|
+
builderReviewShowMore: "Mostrar mais",
|
|
8932
|
+
builderReviewRemainingBatches:
|
|
8933
|
+
"Revise novamente após este lote para preparar as alterações restantes do Builder.",
|
|
8934
|
+
builderBodiesSyncingProgress:
|
|
8935
|
+
"Sincronizando {{hydrated}} de {{total}} corpos.",
|
|
8936
|
+
builderBodiesSyncFinishedWithFailures:
|
|
8937
|
+
"{{hydrated}} de {{total}} corpos sincronizados. {{failed}} falharam.",
|
|
8938
|
+
builderRowsFetchedBodiesSyncing:
|
|
8939
|
+
"{{rows}} linhas obtidas. Sincronizando {{hydrated}} de {{total}} corpos.",
|
|
8940
|
+
builderRowsFetchedBodiesSyncFinishedWithFailures:
|
|
8941
|
+
"{{rows}} linhas obtidas. {{hydrated}} de {{total}} corpos sincronizados. {{failed}} falharam.",
|
|
8942
|
+
builderRowsFetchedSyncingBodies:
|
|
8943
|
+
"As linhas do Builder foram obtidas. Os corpos dos artigos ainda estão sincronizando.",
|
|
8944
|
+
builderRowsFetchedSoFar: "{{count}} linhas buscadas até agora.",
|
|
8945
|
+
builderRowsFinishingUp:
|
|
8946
|
+
"As linhas do Builder estão terminando de carregar.",
|
|
8947
|
+
builderRowsLoadingBackground:
|
|
8948
|
+
"O Builder ainda está carregando linhas em segundo plano.",
|
|
8949
|
+
builderRowsLoadingHitSnag:
|
|
8950
|
+
"O carregamento de linhas do Builder encontrou um problema.",
|
|
8951
|
+
opening: "Abrindo...",
|
|
8650
8952
|
},
|
|
8651
8953
|
localFiles: localFilesMessagesByLocale["pt-BR"],
|
|
8652
8954
|
root: {
|
|
@@ -8793,6 +9095,33 @@ export const messagesByLocale = {
|
|
|
8793
9095
|
...databaseExactEnglishMessagesByLocale["hi-IN"],
|
|
8794
9096
|
builderBodiesReadyLocally: "Builder लेखों की बॉडी स्थानीय रूप से तैयार है।",
|
|
8795
9097
|
builderBodySync: "बॉडी सिंक",
|
|
9098
|
+
builderBodySyncFailedNotice: "इस लेख की बॉडी Builder से सिंक नहीं हो सकी",
|
|
9099
|
+
builderBodySyncFailedDescription:
|
|
9100
|
+
"पंक्ति संपादन योग्य रहती है, लेकिन Builder बॉडी ने सिंक पूरा नहीं किया। प्रकाशित करने या परिवर्तन पुश करने से पहले लेख सामग्री की समीक्षा करें।",
|
|
9101
|
+
builderBodySyncing: "सामग्री अभी भी Builder से सिंक हो रही है",
|
|
9102
|
+
builderBodySyncingDescription:
|
|
9103
|
+
"Builder का मुख्य भाग सिंक पूरा होने तक संपादन रोका गया है, ताकि मौजूदा लेख सामग्री अधिलेखित न हो।",
|
|
9104
|
+
builderReviewShowingRows:
|
|
9105
|
+
"इस समीक्षा के लिए {{total}} में से {{shown}} Builder पंक्तियाँ दिखाई जा रही हैं।",
|
|
9106
|
+
builderReviewShowMore: "और दिखाएँ",
|
|
9107
|
+
builderReviewRemainingBatches:
|
|
9108
|
+
"शेष Builder परिवर्तन तैयार करने के लिए इस बैच के बाद फिर से समीक्षा करें।",
|
|
9109
|
+
builderBodiesSyncingProgress:
|
|
9110
|
+
"{{total}} में से {{hydrated}} मुख्य भाग सिंक हो रहे हैं।",
|
|
9111
|
+
builderBodiesSyncFinishedWithFailures:
|
|
9112
|
+
"{{total}} में से {{hydrated}} मुख्य भाग सिंक हुए। {{failed}} विफल हुए।",
|
|
9113
|
+
builderRowsFetchedBodiesSyncing:
|
|
9114
|
+
"{{rows}} पंक्तियाँ प्राप्त हुईं। {{total}} में से {{hydrated}} मुख्य भाग सिंक हो रहे हैं।",
|
|
9115
|
+
builderRowsFetchedBodiesSyncFinishedWithFailures:
|
|
9116
|
+
"{{rows}} पंक्तियाँ प्राप्त हुईं। {{total}} में से {{hydrated}} मुख्य भाग सिंक हुए। {{failed}} विफल हुए।",
|
|
9117
|
+
builderRowsFetchedSyncingBodies:
|
|
9118
|
+
"Builder पंक्तियाँ प्राप्त हो गई हैं। लेखों के मुख्य भाग अभी भी सिंक हो रहे हैं।",
|
|
9119
|
+
builderRowsFetchedSoFar: "अब तक {{count}} पंक्तियां लाई गईं।",
|
|
9120
|
+
builderRowsFinishingUp: "Builder पंक्तियां लोड होना पूरा कर रही हैं।",
|
|
9121
|
+
builderRowsLoadingBackground:
|
|
9122
|
+
"Builder अभी भी पृष्ठभूमि में पंक्तियां लोड कर रहा है।",
|
|
9123
|
+
builderRowsLoadingHitSnag: "Builder पंक्तियां लोड करने में समस्या आई।",
|
|
9124
|
+
opening: "खोला जा रहा है...",
|
|
8796
9125
|
},
|
|
8797
9126
|
localFiles: localFilesMessagesByLocale["hi-IN"],
|
|
8798
9127
|
root: {
|
|
@@ -8927,6 +9256,32 @@ export const messagesByLocale = {
|
|
|
8927
9256
|
...databaseExactEnglishMessagesByLocale["ar-SA"],
|
|
8928
9257
|
builderBodiesReadyLocally: "أصبحت نصوص مقالات Builder جاهزة محليًا.",
|
|
8929
9258
|
builderBodySync: "مزامنة النص",
|
|
9259
|
+
builderBodySyncFailedNotice: "تعذرت مزامنة نص هذه المقالة من Builder",
|
|
9260
|
+
builderBodySyncFailedDescription:
|
|
9261
|
+
"يبقى الصف قابلاً للتحرير، لكن نص Builder لم يكمل المزامنة. راجع محتوى المقالة قبل النشر أو دفع التغييرات.",
|
|
9262
|
+
builderBodySyncing: "لا يزال المحتوى قيد المزامنة من Builder",
|
|
9263
|
+
builderBodySyncingDescription:
|
|
9264
|
+
"يتم إيقاف التحرير مؤقتًا حتى تكتمل مزامنة نص Builder، حتى لا يتم استبدال محتوى المقالة الحالي.",
|
|
9265
|
+
builderReviewShowingRows:
|
|
9266
|
+
"يتم عرض {{shown}} من {{total}} صفوف Builder لهذه المراجعة.",
|
|
9267
|
+
builderReviewShowMore: "عرض المزيد",
|
|
9268
|
+
builderReviewRemainingBatches:
|
|
9269
|
+
"راجع مرة أخرى بعد هذه الدفعة لتحضير تغييرات Builder المتبقية.",
|
|
9270
|
+
builderBodiesSyncingProgress:
|
|
9271
|
+
"تتم مزامنة {{hydrated}} من {{total}} من النصوص.",
|
|
9272
|
+
builderBodiesSyncFinishedWithFailures:
|
|
9273
|
+
"تمت مزامنة {{hydrated}} من {{total}} من النصوص. فشل {{failed}}.",
|
|
9274
|
+
builderRowsFetchedBodiesSyncing:
|
|
9275
|
+
"تم جلب {{rows}} صفًا. تتم مزامنة {{hydrated}} من {{total}} من النصوص.",
|
|
9276
|
+
builderRowsFetchedBodiesSyncFinishedWithFailures:
|
|
9277
|
+
"تم جلب {{rows}} صفًا. تمت مزامنة {{hydrated}} من {{total}} من النصوص. فشل {{failed}}.",
|
|
9278
|
+
builderRowsFetchedSyncingBodies:
|
|
9279
|
+
"تم جلب صفوف Builder. لا تزال نصوص المقالات قيد المزامنة.",
|
|
9280
|
+
builderRowsFetchedSoFar: "تم جلب {{count}} صفًا حتى الآن.",
|
|
9281
|
+
builderRowsFinishingUp: "صفوف Builder توشك على إكمال التحميل.",
|
|
9282
|
+
builderRowsLoadingBackground: "لا يزال Builder يحمّل الصفوف في الخلفية.",
|
|
9283
|
+
builderRowsLoadingHitSnag: "واجه تحميل صفوف Builder مشكلة.",
|
|
9284
|
+
opening: "جارٍ الفتح...",
|
|
8930
9285
|
},
|
|
8931
9286
|
localFiles: localFilesMessagesByLocale["ar-SA"],
|
|
8932
9287
|
root: {
|