@blokkli/editor 2.0.0-alpha.52 → 2.0.0-alpha.53
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/dist/chunks/tailwindConfig.mjs +3 -3
- package/dist/global/types/blockOptions.d.ts +18 -2
- package/dist/module.d.mts +2 -2
- package/dist/module.json +1 -1
- package/dist/module.mjs +281 -18
- package/dist/modules/agent/index.d.mts +1 -1
- package/dist/modules/agent/runtime/app/composables/agentProvider.d.ts +1 -0
- package/dist/modules/agent/runtime/app/composables/agentProvider.js +7 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/DropHandler/index.d.vue.ts +2 -2
- package/dist/modules/agent/runtime/app/features/agent/Panel/DropHandler/index.vue +14 -49
- package/dist/modules/agent/runtime/app/features/agent/Panel/DropHandler/index.vue.d.ts +2 -2
- package/dist/modules/agent/runtime/app/features/agent/Panel/Feedback/index.d.vue.ts +10 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Feedback/index.vue +102 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Feedback/index.vue.d.ts +10 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/Input/Actions/index.vue +8 -5
- package/dist/modules/agent/runtime/app/features/agent/Panel/ToolCard/index.d.vue.ts +3 -3
- package/dist/modules/agent/runtime/app/features/agent/Panel/ToolCard/index.vue +9 -5
- package/dist/modules/agent/runtime/app/features/agent/Panel/ToolCard/index.vue.d.ts +3 -3
- package/dist/modules/agent/runtime/app/features/agent/Panel/index.d.vue.ts +7 -0
- package/dist/modules/agent/runtime/app/features/agent/Panel/index.vue +16 -2
- package/dist/modules/agent/runtime/app/features/agent/Panel/index.vue.d.ts +7 -0
- package/dist/modules/agent/runtime/app/features/agent/index.vue +29 -0
- package/dist/modules/agent/runtime/app/features/agent/types.d.ts +16 -0
- package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/Component.vue +3 -1
- package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/index.d.ts +2 -0
- package/dist/modules/agent/runtime/app/tools/delegate_text_rewrite/index.js +8 -1
- package/dist/modules/charts/index.d.mts +1 -1
- package/dist/modules/charts/index.mjs +2 -3
- package/dist/modules/charts/runtime/features/charts/Editor/ChartTypePicker/index.vue +1 -1
- package/dist/modules/charts/runtime/features/charts/Editor/ColorDropdown/index.vue +1 -1
- package/dist/modules/drupal/graphql/base/fragment.paragraphsBlokkliEditState.graphql +16 -0
- package/dist/modules/drupal/graphql/base/query.pbConfig.graphql +9 -0
- package/dist/modules/drupal/graphql/features/agent.graphql +20 -0
- package/dist/modules/drupal/graphql/features/publishNew.graphql +14 -0
- package/dist/modules/drupal/graphql/features/referenced-entities.graphql +21 -0
- package/dist/modules/drupal/graphql/features/textFieldValues.graphql +20 -0
- package/dist/modules/drupal/graphql/features/workspace.graphql +23 -0
- package/dist/modules/drupal/graphql/mutations/bulk_translate_field_values.graphql +19 -0
- package/dist/modules/drupal/graphql/mutations/clear_outdated_translation.graphql +15 -0
- package/dist/modules/drupal/graphql/mutations/ignore_analyze.graphql +15 -0
- package/dist/modules/drupal/graphql/mutations/request_translation.graphql +10 -0
- package/dist/modules/drupal/graphql/mutations/unignore_analyze.graphql +15 -0
- package/dist/modules/drupal/index.d.mts +1 -1
- package/dist/modules/drupal/index.mjs +16 -0
- package/dist/modules/drupal/runtime/adapter/index.js +180 -11
- package/dist/modules/iframes/index.d.mts +31 -0
- package/dist/modules/iframes/index.mjs +52 -0
- package/dist/modules/iframes/runtime/components/BlokkliIframe/index.d.vue.ts +18 -0
- package/dist/modules/iframes/runtime/components/BlokkliIframe/index.vue +61 -0
- package/dist/modules/iframes/runtime/components/BlokkliIframe/index.vue.d.ts +18 -0
- package/dist/modules/iframes/runtime/components/index.d.ts +1 -0
- package/dist/modules/iframes/runtime/components/index.js +1 -0
- package/dist/modules/iframes/runtime/features/iframes/Editor/index.d.vue.ts +12 -0
- package/dist/modules/iframes/runtime/features/iframes/Editor/index.vue +220 -0
- package/dist/modules/iframes/runtime/features/iframes/Editor/index.vue.d.ts +12 -0
- package/dist/modules/iframes/runtime/types.d.ts +10 -0
- package/dist/modules/index.d.mts +1 -1
- package/dist/modules/table-of-contents/index.d.mts +1 -1
- package/dist/runtime/components/Blocks/NotImplemented/index.vue +57 -0
- package/dist/runtime/components/BlokkliEditable.vue +1 -1
- package/dist/runtime/editor/adapter/index.d.ts +8 -1
- package/dist/runtime/editor/components/Actions/Interactions/index.vue +77 -17
- package/dist/runtime/editor/components/Actions/{ItemDropdown.vue → ItemDropdown/index.vue} +9 -10
- package/dist/runtime/editor/components/Actions/index.vue +586 -23
- package/dist/runtime/editor/components/AnimationCanvas/index.vue +1 -0
- package/dist/runtime/editor/components/AppMenu/MenuButton.vue +185 -1
- package/dist/runtime/editor/components/AppMenu/index.vue +24 -10
- package/dist/runtime/editor/components/ArtboardTooltip/index.d.vue.ts +6 -2
- package/dist/runtime/editor/components/ArtboardTooltip/index.vue +223 -3
- package/dist/runtime/editor/components/ArtboardTooltip/index.vue.d.ts +6 -2
- package/dist/runtime/editor/components/AutoHeight/index.vue +23 -0
- package/dist/runtime/editor/components/Banner/Inner.d.vue.ts +30 -0
- package/dist/runtime/editor/components/Banner/Inner.vue +32 -0
- package/dist/runtime/editor/components/Banner/Inner.vue.d.ts +30 -0
- package/dist/runtime/editor/components/Banner/index.d.vue.ts +3 -13
- package/dist/runtime/editor/components/Banner/index.vue +2 -14
- package/dist/runtime/editor/components/Banner/index.vue.d.ts +3 -13
- package/dist/runtime/editor/components/BetaIndicator/index.d.vue.ts +6 -0
- package/dist/runtime/editor/components/BetaIndicator/index.vue +16 -0
- package/dist/runtime/editor/components/BetaIndicator/index.vue.d.ts +6 -0
- package/dist/runtime/editor/components/BlockPreviewItem/index.vue +51 -1
- package/dist/runtime/editor/components/BlockPreviewRenderer/index.vue +27 -1
- package/dist/runtime/editor/components/BlockProxy/index.vue +148 -1
- package/dist/runtime/editor/components/BlokkliRootErrorBoundary.vue +59 -0
- package/dist/runtime/editor/components/BundleSelector/index.vue +170 -20
- package/dist/runtime/editor/components/Dialog/index.d.vue.ts +2 -0
- package/dist/runtime/editor/components/Dialog/index.vue +341 -0
- package/dist/runtime/editor/components/Dialog/index.vue.d.ts +2 -0
- package/dist/runtime/editor/components/DiffApproval/Highlight/index.vue +117 -0
- package/dist/runtime/editor/components/DiffApproval/Toolbar/index.vue +224 -28
- package/dist/runtime/editor/components/DiffViewer/DiffValue.d.vue.ts +1 -0
- package/dist/runtime/editor/components/DiffViewer/DiffValue.vue +5 -1
- package/dist/runtime/editor/components/DiffViewer/DiffValue.vue.d.ts +1 -0
- package/dist/runtime/editor/components/DiffViewer/State.vue +319 -0
- package/dist/runtime/editor/components/DraggableList.vue +103 -0
- package/dist/runtime/editor/components/Dropdown/index.vue +84 -0
- package/dist/runtime/editor/components/EditProvider.vue +72 -15
- package/dist/runtime/editor/components/FileDropHandler/index.d.vue.ts +23 -0
- package/dist/runtime/editor/components/FileDropHandler/index.vue +108 -0
- package/dist/runtime/editor/components/FileDropHandler/index.vue.d.ts +23 -0
- package/dist/runtime/editor/components/FlexTextarea/index.vue +4 -2
- package/dist/runtime/editor/components/Form/Datepicker/index.vue +149 -0
- package/dist/runtime/editor/components/Form/Toggle/index.vue +205 -1
- package/dist/runtime/editor/components/FormOverlay/index.vue +90 -0
- package/dist/runtime/editor/components/Icon/index.vue +6 -0
- package/dist/runtime/editor/components/Indicators/index.vue +161 -0
- package/dist/runtime/editor/components/InfoBox/index.vue +65 -0
- package/dist/runtime/editor/components/Konami/index.vue +119 -0
- package/dist/runtime/editor/components/Loading/index.d.vue.ts +6 -3
- package/dist/runtime/editor/components/Loading/index.vue +10 -5
- package/dist/runtime/editor/components/Loading/index.vue.d.ts +6 -3
- package/dist/runtime/editor/components/Messages/index.vue +131 -0
- package/dist/runtime/editor/components/NestedEditorOverlay/index.d.vue.ts +1 -0
- package/dist/runtime/editor/components/NestedEditorOverlay/index.vue +246 -12
- package/dist/runtime/editor/components/NestedEditorOverlay/index.vue.d.ts +1 -0
- package/dist/runtime/editor/components/NotEditStateInfo/index.d.vue.ts +3 -0
- package/dist/runtime/editor/components/NotEditStateInfo/index.vue +19 -0
- package/dist/runtime/editor/components/NotEditStateInfo/index.vue.d.ts +3 -0
- package/dist/runtime/editor/components/Overlay/index.vue +84 -0
- package/dist/runtime/editor/components/Pagination/index.vue +41 -0
- package/dist/runtime/editor/components/PluginConfigForm/index.vue +23 -0
- package/dist/runtime/editor/components/PluginConfigFormInline/FilterSelect/index.vue +429 -0
- package/dist/runtime/editor/components/PluginConfigFormInline/index.d.vue.ts +22 -0
- package/dist/runtime/editor/components/PluginConfigFormInline/index.vue +150 -0
- package/dist/runtime/editor/components/PluginConfigFormInline/index.vue.d.ts +22 -0
- package/dist/runtime/editor/components/Popup/index.vue +77 -2
- package/dist/runtime/editor/components/PreviewProvider.vue +7 -0
- package/dist/runtime/editor/components/Resizable/index.vue +90 -1
- package/dist/runtime/editor/components/ScaleToFit/index.vue +30 -1
- package/dist/runtime/editor/components/SearchOverlay/index.d.vue.ts +43 -0
- package/dist/runtime/editor/components/SearchOverlay/index.vue +264 -0
- package/dist/runtime/editor/components/SearchOverlay/index.vue.d.ts +43 -0
- package/dist/runtime/editor/components/StatusIcon/index.vue +104 -0
- package/dist/runtime/editor/components/StatusIndicator/index.d.vue.ts +9 -0
- package/dist/runtime/editor/components/StatusIndicator/index.vue +16 -0
- package/dist/runtime/editor/components/StatusIndicator/index.vue.d.ts +9 -0
- package/dist/runtime/editor/components/SystemRequirements/index.vue +57 -0
- package/dist/runtime/editor/components/Tabs/index.d.vue.ts +30 -0
- package/dist/runtime/editor/components/Tabs/index.vue +32 -0
- package/dist/runtime/editor/components/Tabs/index.vue.d.ts +30 -0
- package/dist/runtime/editor/components/Toolbar/index.vue +214 -3
- package/dist/runtime/editor/components/Tooltip/Context.d.vue.ts +7 -0
- package/dist/runtime/editor/components/Tooltip/Context.vue +13 -0
- package/dist/runtime/editor/components/Tooltip/Context.vue.d.ts +7 -0
- package/dist/runtime/editor/components/Tooltip/Status.d.vue.ts +8 -0
- package/dist/runtime/editor/components/Tooltip/Status.vue +27 -0
- package/dist/runtime/editor/components/Tooltip/Status.vue.d.ts +8 -0
- package/dist/runtime/editor/components/Tooltip/index.d.vue.ts +27 -0
- package/dist/runtime/editor/components/Tooltip/index.vue +40 -0
- package/dist/runtime/editor/components/Tooltip/index.vue.d.ts +27 -0
- package/dist/runtime/editor/components/index.d.ts +59 -49
- package/dist/runtime/editor/components/index.js +59 -98
- package/dist/runtime/editor/composables/defineHighlight.d.ts +2 -0
- package/dist/runtime/editor/composables/defineHighlight.js +10 -0
- package/dist/runtime/editor/composables/index.d.ts +1 -0
- package/dist/runtime/editor/composables/index.js +1 -0
- package/dist/runtime/editor/composables/useBlockRegistration.js +8 -0
- package/dist/runtime/editor/composables/useStickyToolbar.d.ts +1 -0
- package/dist/runtime/editor/composables/useStickyToolbar.js +16 -0
- package/dist/runtime/editor/css/output.css +1 -1
- package/dist/runtime/editor/events/index.d.ts +10 -0
- package/dist/runtime/editor/features/add-list/Help/index.vue +193 -0
- package/dist/runtime/editor/features/add-list/index.vue +441 -0
- package/dist/runtime/editor/features/analyze/Ignored/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/analyze/Ignored/index.vue +35 -0
- package/dist/runtime/editor/features/analyze/Ignored/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/analyze/Main.vue +148 -24
- package/dist/runtime/editor/features/analyze/Results/Results.d.vue.ts +1 -9
- package/dist/runtime/editor/features/analyze/Results/Results.vue +0 -2
- package/dist/runtime/editor/features/analyze/Results/Results.vue.d.ts +1 -9
- package/dist/runtime/editor/features/analyze/Results/ResultsItem.d.vue.ts +1 -9
- package/dist/runtime/editor/features/analyze/Results/ResultsItem.vue +1 -2
- package/dist/runtime/editor/features/analyze/Results/ResultsItem.vue.d.ts +1 -9
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.d.vue.ts +1 -9
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.vue +11 -8
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodes.vue.d.ts +1 -9
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.d.vue.ts +3 -10
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.vue +63 -25
- package/dist/runtime/editor/features/analyze/Results/ResultsItemNodesTarget.vue.d.ts +3 -10
- package/dist/runtime/editor/features/analyze/analyzers/altText.js +2 -0
- package/dist/runtime/editor/features/analyze/analyzers/headingStructure.js +3 -0
- package/dist/runtime/editor/features/analyze/analyzers/helpers/hashString.d.ts +7 -0
- package/dist/runtime/editor/features/analyze/analyzers/helpers/hashString.js +8 -0
- package/dist/runtime/editor/features/analyze/analyzers/readability.js +6 -12
- package/dist/runtime/editor/features/analyze/analyzers/types.d.ts +20 -0
- package/dist/runtime/editor/features/analyze/index.vue +458 -0
- package/dist/runtime/editor/features/analyze/types.d.ts +12 -0
- package/dist/runtime/editor/features/artboard/Overview/index.vue +37 -4
- package/dist/runtime/editor/features/artboard/Renderer.vue +79 -9
- package/dist/runtime/editor/features/artboard/Scrollbar/index.vue +84 -0
- package/dist/runtime/editor/features/block-scheduler/Dialog/index.vue +1 -1
- package/dist/runtime/editor/features/block-scheduler/index.vue +114 -0
- package/dist/runtime/editor/features/breadcrumbs/index.vue +150 -0
- package/dist/runtime/editor/features/changelog/Dialog/index.vue +62 -7
- package/dist/runtime/editor/features/changelog/changelog.json +9 -1
- package/dist/runtime/editor/features/clipboard/index.vue +153 -1
- package/dist/runtime/editor/features/command-palette/Palette/Item/index.vue +39 -16
- package/dist/runtime/editor/features/command-palette/Palette/index.vue +24 -130
- package/dist/runtime/editor/features/comments/index.vue +235 -0
- package/dist/runtime/editor/features/complex-options/index.vue +4 -1
- package/dist/runtime/editor/features/debug/Main.vue +1 -1
- package/dist/runtime/editor/features/debug/Section/Features.vue +2 -4
- package/dist/runtime/editor/features/debug/index.vue +168 -0
- package/dist/runtime/editor/features/dev-mode/index.vue +92 -27
- package/dist/runtime/editor/features/dragging-overlay/Renderer/index.vue +1 -1
- package/dist/runtime/editor/features/dragging-overlay/index.vue +330 -0
- package/dist/runtime/editor/features/edit/index.vue +15 -17
- package/dist/runtime/editor/features/edit-form/Frame/index.vue +21 -4
- package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.d.vue.ts +9 -1
- package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue +32 -3
- package/dist/runtime/editor/features/editable-field/Overlay/Frame/index.vue.d.ts +9 -1
- package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/ChunkOverlay.vue +77 -0
- package/dist/runtime/editor/features/editable-field/Overlay/ReadabilityIndicator/index.vue +55 -56
- package/dist/runtime/editor/features/editable-field/Overlay/index.vue +416 -8
- package/dist/runtime/editor/features/editable-mask/index.vue +9 -0
- package/dist/runtime/editor/features/entity-title/index.vue +40 -56
- package/dist/runtime/editor/features/fragments/Dialog/index.vue +90 -0
- package/dist/runtime/editor/features/help/Shortcuts/index.vue +71 -0
- package/dist/runtime/editor/features/help/index.vue +17 -0
- package/dist/runtime/editor/features/highlights/Renderer/fragment.glsl +89 -0
- package/dist/runtime/editor/features/highlights/Renderer/index.vue +408 -0
- package/dist/runtime/editor/features/highlights/Renderer/vertex.glsl +87 -0
- package/dist/runtime/editor/features/highlights/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/highlights/index.vue +20 -0
- package/dist/runtime/editor/features/highlights/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/history/List/index.vue +209 -0
- package/dist/runtime/editor/features/history/index.vue +0 -1
- package/dist/runtime/editor/features/hover/Renderer/index.vue +1 -1
- package/dist/runtime/editor/features/hover/Renderer/vertex.glsl +1 -1
- package/dist/runtime/editor/features/import-existing/Dialog/index.vue +18 -0
- package/dist/runtime/editor/features/media-library/Library/index.vue +10 -30
- package/dist/runtime/editor/features/media-library/index.vue +331 -0
- package/dist/runtime/editor/features/options/Form/Checkbox/index.vue +1 -1
- package/dist/runtime/editor/features/options/Form/Checkboxes/index.vue +1 -1
- package/dist/runtime/editor/features/options/Form/ComplexType/index.vue +6 -2
- package/dist/runtime/editor/features/options/Form/Item.vue +21 -18
- package/dist/runtime/editor/features/options/Form/Radios/index.d.vue.ts +6 -0
- package/dist/runtime/editor/features/options/Form/Radios/index.vue +25 -6
- package/dist/runtime/editor/features/options/Form/Radios/index.vue.d.ts +6 -0
- package/dist/runtime/editor/features/options/Form/index.vue +1 -4
- package/dist/runtime/editor/features/options/index.vue +729 -0
- package/dist/runtime/editor/features/ownership/Banner/index.vue +9 -8
- package/dist/runtime/editor/features/ownership/index.vue +1 -1
- package/dist/runtime/editor/features/preview-grant/QrCode/index.vue +8 -3
- package/dist/runtime/editor/features/publish/Dialog/Item.vue +18 -20
- package/dist/runtime/editor/features/publish/Dialog/index.vue +5 -1
- package/dist/runtime/editor/features/publish/index.vue +835 -0
- package/dist/runtime/editor/features/publish/types.d.ts +5 -1
- package/dist/runtime/editor/features/referenced-entities/List/Item/index.d.vue.ts +4 -0
- package/dist/runtime/editor/features/referenced-entities/List/Item/index.vue +81 -0
- package/dist/runtime/editor/features/referenced-entities/List/Item/index.vue.d.ts +4 -0
- package/dist/runtime/editor/features/referenced-entities/List/index.d.vue.ts +11 -0
- package/dist/runtime/editor/features/referenced-entities/List/index.vue +78 -0
- package/dist/runtime/editor/features/referenced-entities/List/index.vue.d.ts +11 -0
- package/dist/runtime/editor/features/referenced-entities/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/referenced-entities/index.vue +36 -0
- package/dist/runtime/editor/features/referenced-entities/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/referenced-entities/types.d.ts +13 -0
- package/dist/runtime/editor/features/responsive-preview/Frame/index.vue +188 -0
- package/dist/runtime/editor/features/search/Overlay/Results/Page/index.vue +1 -1
- package/dist/runtime/editor/features/search/index.vue +511 -0
- package/dist/runtime/editor/features/selection/AddButtons/Renderer/index.vue +58 -0
- package/dist/runtime/editor/features/selection/index.vue +47 -15
- package/dist/runtime/editor/features/settings/Dialog/FeatureSetting/index.vue +23 -0
- package/dist/runtime/editor/features/settings/Dialog/index.vue +5 -2
- package/dist/runtime/editor/features/settings/index.vue +152 -0
- package/dist/runtime/editor/features/structure/List/Item/index.vue +7 -0
- package/dist/runtime/editor/features/structure/index.vue +178 -0
- package/dist/runtime/editor/features/templates/ManageDialog/Item.vue +3 -3
- package/dist/runtime/editor/features/templates/ManageDialog/index.vue +24 -3
- package/dist/runtime/editor/features/theme/index.vue +94 -0
- package/dist/runtime/editor/features/touch-action-bar/Bar/index.vue +34 -0
- package/dist/runtime/editor/features/tour/Overlay/index.vue +243 -13
- package/dist/runtime/editor/features/transform/Dialog/index.vue +132 -1
- package/dist/runtime/editor/features/translations/Banner/index.d.vue.ts +14 -1
- package/dist/runtime/editor/features/translations/Banner/index.vue +139 -12
- package/dist/runtime/editor/features/translations/Banner/index.vue.d.ts +14 -1
- package/dist/runtime/editor/features/translations/CsvDialog/Export/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/translations/CsvDialog/Export/index.vue +272 -0
- package/dist/runtime/editor/features/translations/CsvDialog/Export/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/translations/CsvDialog/Import/index.d.vue.ts +10 -0
- package/dist/runtime/editor/features/translations/CsvDialog/Import/index.vue +382 -0
- package/dist/runtime/editor/features/translations/CsvDialog/Import/index.vue.d.ts +10 -0
- package/dist/runtime/editor/features/translations/CsvDialog/csv.d.ts +22 -0
- package/dist/runtime/editor/features/translations/CsvDialog/csv.js +50 -0
- package/dist/runtime/editor/features/translations/CsvDialog/index.d.vue.ts +10 -0
- package/dist/runtime/editor/features/translations/CsvDialog/index.vue +37 -0
- package/dist/runtime/editor/features/translations/CsvDialog/index.vue.d.ts +10 -0
- package/dist/runtime/editor/features/translations/CsvDialog/po.d.ts +7 -0
- package/dist/runtime/editor/features/translations/CsvDialog/po.js +36 -0
- package/dist/runtime/editor/features/translations/SelectionTable/index.d.vue.ts +37 -0
- package/dist/runtime/editor/features/translations/SelectionTable/index.vue +102 -0
- package/dist/runtime/editor/features/translations/SelectionTable/index.vue.d.ts +37 -0
- package/dist/runtime/editor/features/translations/TranslateDialog/index.d.vue.ts +7 -0
- package/dist/runtime/editor/features/translations/TranslateDialog/index.vue +294 -0
- package/dist/runtime/editor/features/translations/TranslateDialog/index.vue.d.ts +7 -0
- package/dist/runtime/editor/features/translations/index.vue +276 -6
- package/dist/runtime/editor/features/translations/types.d.ts +47 -0
- package/dist/runtime/editor/features/validations/Overlay/index.vue +130 -0
- package/dist/runtime/editor/features/validations/index.vue +41 -0
- package/dist/runtime/editor/features/{assistant → workspace}/Overlay/index.d.vue.ts +2 -4
- package/dist/runtime/editor/features/workspace/Overlay/index.vue +177 -0
- package/dist/runtime/editor/features/{assistant → workspace}/Overlay/index.vue.d.ts +2 -4
- package/dist/runtime/editor/features/workspace/index.d.vue.ts +3 -0
- package/dist/runtime/editor/features/workspace/index.vue +46 -0
- package/dist/runtime/editor/features/workspace/index.vue.d.ts +3 -0
- package/dist/runtime/editor/features/workspace/types.d.ts +59 -0
- package/dist/runtime/editor/features/workspace/types.js +0 -0
- package/dist/runtime/editor/icons/svg/spinner.svg +2 -2
- package/dist/runtime/editor/plugins/ContextMenu/Menu/index.vue +21 -7
- package/dist/runtime/editor/plugins/ContextMenu/index.vue +4 -0
- package/dist/runtime/editor/plugins/ItemAction/index.d.vue.ts +9 -2
- package/dist/runtime/editor/plugins/ItemAction/index.vue +26 -16
- package/dist/runtime/editor/plugins/ItemAction/index.vue.d.ts +9 -2
- package/dist/runtime/editor/plugins/Sidebar/Detached/index.vue +24 -26
- package/dist/runtime/editor/plugins/Sidebar/index.vue +612 -27
- package/dist/runtime/editor/plugins/ToolbarButton/index.d.vue.ts +13 -84
- package/dist/runtime/editor/plugins/ToolbarButton/index.vue +36 -22
- package/dist/runtime/editor/plugins/ToolbarButton/index.vue.d.ts +13 -84
- package/dist/runtime/editor/plugins/ViewOption/index.vue +13 -14
- package/dist/runtime/editor/providers/blocks.js +1 -0
- package/dist/runtime/editor/providers/cache.d.ts +23 -0
- package/dist/runtime/editor/providers/cache.js +29 -0
- package/dist/runtime/editor/providers/directive.d.ts +25 -0
- package/dist/runtime/editor/providers/directive.js +20 -0
- package/dist/runtime/editor/providers/fieldValue.d.ts +5 -5
- package/dist/runtime/editor/providers/fieldValue.js +8 -7
- package/dist/runtime/editor/providers/plugin.d.ts +14 -0
- package/dist/runtime/editor/providers/plugin.js +9 -0
- package/dist/runtime/editor/providers/readability.js +1 -1
- package/dist/runtime/editor/providers/selection.js +1 -1
- package/dist/runtime/editor/providers/state.d.ts +1 -0
- package/dist/runtime/editor/providers/state.js +1 -0
- package/dist/runtime/editor/providers/texts.js +11 -1
- package/dist/runtime/editor/providers/ui.d.ts +11 -0
- package/dist/runtime/editor/providers/ui.js +5 -1
- package/dist/runtime/editor/translations/de.json +316 -56
- package/dist/runtime/editor/translations/fr.json +310 -50
- package/dist/runtime/editor/translations/gsw_CH.json +311 -51
- package/dist/runtime/editor/translations/it.json +310 -50
- package/dist/runtime/editor/types/app.d.ts +2 -0
- package/dist/runtime/editor/types/definitions.d.ts +8 -0
- package/dist/runtime/editor/types/field.d.ts +1 -0
- package/dist/runtime/editor/types/state.d.ts +10 -0
- package/dist/runtime/editor/types/ui.d.ts +3 -1
- package/dist/runtime/helpers/tw.d.ts +15 -0
- package/dist/runtime/helpers/tw.js +3 -0
- package/dist/runtime/types/field.d.ts +1 -0
- package/dist/shared/{editor.DsGJIlGn.d.mts → editor.BTOBvmaz.d.mts} +20 -3
- package/dist/types.d.mts +1 -1
- package/package.json +16 -3
- package/dist/runtime/editor/features/analyze/Renderer/fragment.glsl +0 -74
- package/dist/runtime/editor/features/analyze/Renderer/index.d.vue.ts +0 -24
- package/dist/runtime/editor/features/analyze/Renderer/index.vue +0 -330
- package/dist/runtime/editor/features/analyze/Renderer/index.vue.d.ts +0 -24
- package/dist/runtime/editor/features/analyze/Renderer/vertex.glsl +0 -94
- package/dist/runtime/editor/features/assistant/Overlay/ResultMarkup/index.d.vue.ts +0 -7
- package/dist/runtime/editor/features/assistant/Overlay/ResultMarkup/index.vue +0 -17
- package/dist/runtime/editor/features/assistant/Overlay/ResultMarkup/index.vue.d.ts +0 -7
- package/dist/runtime/editor/features/assistant/Overlay/index.vue +0 -108
- package/dist/runtime/editor/features/assistant/docs.md +0 -7
- package/dist/runtime/editor/features/assistant/index.vue +0 -66
- package/dist/runtime/editor/features/assistant/types.d.ts +0 -37
- package/dist/runtime/editor/features/media-library/Library/FilterSelect/index.vue +0 -168
- package/dist/runtime/editor/providers/fieldValueAdapterTypes.d.ts +0 -13
- /package/dist/{runtime/editor/features/assistant → modules/iframes/runtime}/types.js +0 -0
- /package/dist/runtime/editor/components/Actions/{ItemDropdown.d.vue.ts → ItemDropdown/index.d.vue.ts} +0 -0
- /package/dist/runtime/editor/components/Actions/{ItemDropdown.vue.d.ts → ItemDropdown/index.vue.d.ts} +0 -0
- /package/dist/runtime/editor/{features/media-library/Library → components/PluginConfigFormInline}/FilterSelect/index.d.vue.ts +0 -0
- /package/dist/runtime/editor/{features/media-library/Library → components/PluginConfigFormInline}/FilterSelect/index.vue.d.ts +0 -0
- /package/dist/runtime/editor/features/{assistant → highlights/Renderer}/index.d.vue.ts +0 -0
- /package/dist/runtime/editor/features/{assistant → highlights/Renderer}/index.vue.d.ts +0 -0
- /package/dist/runtime/editor/{providers/fieldValueAdapterTypes.js → features/referenced-entities/types.js} +0 -0
|
@@ -7,6 +7,7 @@ import type { PublishOptions } from '../features/publish/types.js';
|
|
|
7
7
|
import type { EditEntity, EditMode, MappedState, MutatedField, MutatedItemProps, MutatedOptions, MutateWithLoadingStateFunction, MutationItem, TranslationState, Validation } from '../types/state.js';
|
|
8
8
|
import type { EditPermission } from '#blokkli/types/provider';
|
|
9
9
|
export type BlokkliOwner = {
|
|
10
|
+
id: string | undefined;
|
|
10
11
|
name: string | undefined;
|
|
11
12
|
currentUserIsOwner: boolean;
|
|
12
13
|
};
|
|
@@ -143,6 +143,7 @@ export default async function(eventBus, adapter, context, $t, providerKey, permi
|
|
|
143
143
|
const currentIndex = context2?.currentIndex;
|
|
144
144
|
currentMutationIndex.value = currentIndex === void 0 ? -1 : currentIndex;
|
|
145
145
|
owner.value = {
|
|
146
|
+
id: context2?.ownerId,
|
|
146
147
|
name: context2?.ownerName,
|
|
147
148
|
currentUserIsOwner: !!context2?.currentUserIsOwner
|
|
148
149
|
};
|
|
@@ -38,6 +38,16 @@ export default function(context) {
|
|
|
38
38
|
return allTranslations.value[language.value] || {};
|
|
39
39
|
});
|
|
40
40
|
return (key, defaultValue) => {
|
|
41
|
-
|
|
41
|
+
const existingForCurrent = currentTranslations.value[key];
|
|
42
|
+
if (existingForCurrent) {
|
|
43
|
+
return existingForCurrent;
|
|
44
|
+
}
|
|
45
|
+
if (language.value === "gsw_CH") {
|
|
46
|
+
const fallback = translations.de[key];
|
|
47
|
+
if (fallback) {
|
|
48
|
+
return fallback;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
return defaultValue || key;
|
|
42
52
|
};
|
|
43
53
|
}
|
|
@@ -415,5 +415,16 @@ export type UiProvider = {
|
|
|
415
415
|
* only locks toolbar position.
|
|
416
416
|
*/
|
|
417
417
|
isChangingOptions: Ref<boolean>;
|
|
418
|
+
/**
|
|
419
|
+
* ID of the currently active (focused) highlight, or empty string.
|
|
420
|
+
*
|
|
421
|
+
* Shared between the analyze sidebar and the highlights canvas renderer
|
|
422
|
+
* so both can show a visual "active" state for the same highlight.
|
|
423
|
+
*/
|
|
424
|
+
activeHighlightId: Ref<string>;
|
|
425
|
+
/**
|
|
426
|
+
* Whether the item actions are open.
|
|
427
|
+
*/
|
|
428
|
+
itemActionsOpen: Ref<boolean>;
|
|
418
429
|
};
|
|
419
430
|
export default function (eventBus: BlokkliEventBus, providerElement: HTMLElement, storage: StorageProvider, context: ComputedRef<AdapterContext>, element: ElementProvider, mainLayoutElement: Readonly<ShallowRef<HTMLDivElement | null>>, visibleViewportElement: Readonly<ShallowRef<HTMLDivElement | null>>): UiProvider;
|
|
@@ -44,6 +44,7 @@ export default function(eventBus, providerElement, storage, context, element, ma
|
|
|
44
44
|
const visibleViewportX = ref(0);
|
|
45
45
|
const visibleViewportY = ref(0);
|
|
46
46
|
const canvasFocused = ref(false);
|
|
47
|
+
const itemActionsOpen = ref(false);
|
|
47
48
|
function setCanvasFocused(isFocused) {
|
|
48
49
|
canvasFocused.value = isFocused;
|
|
49
50
|
}
|
|
@@ -54,6 +55,7 @@ export default function(eventBus, providerElement, storage, context, element, ma
|
|
|
54
55
|
const isApproving = ref(false);
|
|
55
56
|
const actionsToolbarLocked = ref(false);
|
|
56
57
|
const isChangingOptions = ref(false);
|
|
58
|
+
const activeHighlightId = ref("");
|
|
57
59
|
const currentDialog = ref(null);
|
|
58
60
|
const openTooltip = ref("");
|
|
59
61
|
const hasTransformOverlayOpen = ref(false);
|
|
@@ -456,6 +458,8 @@ export default function(eventBus, providerElement, storage, context, element, ma
|
|
|
456
458
|
isApproving: readonly(isApproving),
|
|
457
459
|
setIsApproving,
|
|
458
460
|
actionsToolbarLocked,
|
|
459
|
-
isChangingOptions
|
|
461
|
+
isChangingOptions,
|
|
462
|
+
activeHighlightId,
|
|
463
|
+
itemActionsOpen
|
|
460
464
|
};
|
|
461
465
|
}
|
|
@@ -411,6 +411,34 @@
|
|
|
411
411
|
"source": "Show more",
|
|
412
412
|
"translation": "Mehr anzeigen"
|
|
413
413
|
},
|
|
414
|
+
"aiAgentFeedbackBad": {
|
|
415
|
+
"source": "Bad",
|
|
416
|
+
"translation": "Schlecht"
|
|
417
|
+
},
|
|
418
|
+
"aiAgentFeedbackFine": {
|
|
419
|
+
"source": "Fine",
|
|
420
|
+
"translation": "Okay"
|
|
421
|
+
},
|
|
422
|
+
"aiAgentFeedbackGood": {
|
|
423
|
+
"source": "Good",
|
|
424
|
+
"translation": "Gut"
|
|
425
|
+
},
|
|
426
|
+
"aiAgentFeedbackPlaceholder": {
|
|
427
|
+
"source": "Tell us more (optional)...",
|
|
428
|
+
"translation": "Erzählen Sie uns mehr (optional)..."
|
|
429
|
+
},
|
|
430
|
+
"aiAgentFeedbackPrompt": {
|
|
431
|
+
"source": "How was this response?",
|
|
432
|
+
"translation": "Wie war diese Antwort?"
|
|
433
|
+
},
|
|
434
|
+
"aiAgentFeedbackSubmit": {
|
|
435
|
+
"source": "Submit",
|
|
436
|
+
"translation": "Absenden"
|
|
437
|
+
},
|
|
438
|
+
"aiAgentFeedbackThanks": {
|
|
439
|
+
"source": "Thanks for your feedback!",
|
|
440
|
+
"translation": "Danke für Ihr Feedback!"
|
|
441
|
+
},
|
|
414
442
|
"aiAgentFindBlocksDone": {
|
|
415
443
|
"source": "Found @count blocks",
|
|
416
444
|
"translation": "@count Blöcke gefunden"
|
|
@@ -911,6 +939,14 @@
|
|
|
911
939
|
"source": "Heading Structure",
|
|
912
940
|
"translation": "Titelstruktur"
|
|
913
941
|
},
|
|
942
|
+
"analyzeIgnore": {
|
|
943
|
+
"source": "Ignore",
|
|
944
|
+
"translation": "Ignorieren"
|
|
945
|
+
},
|
|
946
|
+
"analyzeIgnoredResults": {
|
|
947
|
+
"source": "Ignored",
|
|
948
|
+
"translation": "Ignoriert"
|
|
949
|
+
},
|
|
914
950
|
"analyzeKeepVisible": {
|
|
915
951
|
"source": "Keep results visible",
|
|
916
952
|
"translation": "Ergebnisse sichtbar halten"
|
|
@@ -935,6 +971,10 @@
|
|
|
935
971
|
"source": "Results are outdated. Click the button to update.",
|
|
936
972
|
"translation": "Resultate sind veraltet. Klicken Sie auf den Button um zu aktualisieren."
|
|
937
973
|
},
|
|
974
|
+
"analyzeShowDetails": {
|
|
975
|
+
"source": "Show details",
|
|
976
|
+
"translation": "Details anzeigen"
|
|
977
|
+
},
|
|
938
978
|
"analyzeSidebarTitle": {
|
|
939
979
|
"source": "Analyze",
|
|
940
980
|
"translation": "Analysieren"
|
|
@@ -955,10 +995,6 @@
|
|
|
955
995
|
"source": "Stale",
|
|
956
996
|
"translation": "Veraltet"
|
|
957
997
|
},
|
|
958
|
-
"analyzeStatusUpToDate": {
|
|
959
|
-
"source": "Up-to-date",
|
|
960
|
-
"translation": "Aktuell"
|
|
961
|
-
},
|
|
962
998
|
"analyzeStatusViolation": {
|
|
963
999
|
"source": "Violation",
|
|
964
1000
|
"translation": "Fehler"
|
|
@@ -967,6 +1003,10 @@
|
|
|
967
1003
|
"source": "Analyze the content of your page",
|
|
968
1004
|
"translation": "Inhalte auf dieser Seite analysieren."
|
|
969
1005
|
},
|
|
1006
|
+
"analyzeUnignore": {
|
|
1007
|
+
"source": "Restore",
|
|
1008
|
+
"translation": "Wiederherstellen"
|
|
1009
|
+
},
|
|
970
1010
|
"analyzerReadabiliyCouldBeSimpler": {
|
|
971
1011
|
"source": "Could be simpler (@lang).",
|
|
972
1012
|
"translation": "Könnte einfacher sein (@lang)."
|
|
@@ -1007,6 +1047,14 @@
|
|
|
1007
1047
|
"source": "Toggle anchor links",
|
|
1008
1048
|
"translation": "Anzeige von Anker-Links umschalten"
|
|
1009
1049
|
},
|
|
1050
|
+
"arrowLeft": {
|
|
1051
|
+
"source": "Arrow Left",
|
|
1052
|
+
"translation": "Pfeil links"
|
|
1053
|
+
},
|
|
1054
|
+
"arrowRight": {
|
|
1055
|
+
"source": "Arrow Right",
|
|
1056
|
+
"translation": "Pfeil rechts"
|
|
1057
|
+
},
|
|
1010
1058
|
"artboard": {
|
|
1011
1059
|
"source": "Artboard",
|
|
1012
1060
|
"translation": "Vorschau"
|
|
@@ -1063,38 +1111,6 @@
|
|
|
1063
1111
|
"source": "Shows the current zoom factor. Click on it to reset the zoom back to 100%.",
|
|
1064
1112
|
"translation": "Zeigt den aktuellen Zoom-Wert. Klicken Sie auf den Button um den Zoom auf 100% zurückzusetzen."
|
|
1065
1113
|
},
|
|
1066
|
-
"assistantAddAction": {
|
|
1067
|
-
"source": "Add with AI Assistant",
|
|
1068
|
-
"translation": "Mit KI-Assistent hinzufügen"
|
|
1069
|
-
},
|
|
1070
|
-
"assistantAddActionDescription": {
|
|
1071
|
-
"source": "Add content using an AI assistant.",
|
|
1072
|
-
"translation": "Fügen Sie Inhalte mit dem KI-Assistenten hinzu."
|
|
1073
|
-
},
|
|
1074
|
-
"assistantAddResultError": {
|
|
1075
|
-
"source": "Failed to add block from assistant.",
|
|
1076
|
-
"translation": "Fehler beim hinzufügen mit KI."
|
|
1077
|
-
},
|
|
1078
|
-
"assistantDialogLead": {
|
|
1079
|
-
"source": "Please enter what you'd like the assistant to generate.",
|
|
1080
|
-
"translation": "Geben Sie ein was der KI-Assistent generieren soll."
|
|
1081
|
-
},
|
|
1082
|
-
"assistantDialogSubmit": {
|
|
1083
|
-
"source": "Create blocks",
|
|
1084
|
-
"translation": "Blöcke erstellen"
|
|
1085
|
-
},
|
|
1086
|
-
"assistantDialogTitle": {
|
|
1087
|
-
"source": "Generate content with AI assistant",
|
|
1088
|
-
"translation": "Inhalt mit KI generieren"
|
|
1089
|
-
},
|
|
1090
|
-
"assistantPromptLabel": {
|
|
1091
|
-
"source": "Prompt",
|
|
1092
|
-
"translation": "Anweisung"
|
|
1093
|
-
},
|
|
1094
|
-
"assistantPromptPlaceholder": {
|
|
1095
|
-
"source": "Generate content for a page about how taxes work in Switzerland",
|
|
1096
|
-
"translation": "Schreibe Text zum Thema Steuern in der Schweiz"
|
|
1097
|
-
},
|
|
1098
1114
|
"availableBlocks": {
|
|
1099
1115
|
"source": "Available blocks",
|
|
1100
1116
|
"translation": "Verfügbare Blöcke"
|
|
@@ -1263,11 +1279,7 @@
|
|
|
1263
1279
|
"source": "Show total",
|
|
1264
1280
|
"translation": "Total anzeigen"
|
|
1265
1281
|
},
|
|
1266
|
-
"
|
|
1267
|
-
"source": "Edit chart...",
|
|
1268
|
-
"translation": "Diagramm bearbeiten..."
|
|
1269
|
-
},
|
|
1270
|
-
"chartsEditorTitle": {
|
|
1282
|
+
"chartsEditTitle": {
|
|
1271
1283
|
"source": "Edit chart",
|
|
1272
1284
|
"translation": "Diagramm bearbeiten"
|
|
1273
1285
|
},
|
|
@@ -1491,6 +1503,10 @@
|
|
|
1491
1503
|
"source": "Open Command Palette",
|
|
1492
1504
|
"translation": "Befehle öffnen"
|
|
1493
1505
|
},
|
|
1506
|
+
"commandPaletteTitle": {
|
|
1507
|
+
"source": "Command Palette",
|
|
1508
|
+
"translation": "Befehlspalette"
|
|
1509
|
+
},
|
|
1494
1510
|
"commandPaletteTourText": {
|
|
1495
1511
|
"source": "Easily perform actions using your keyboard by launching the command palette. Most of the features available using clicks is also available in the command palette.",
|
|
1496
1512
|
"translation": "Führen Sie Aktionen ganz einfach mit Ihrer Tastatur aus, indem Sie «Befehle» öffnen. Fast alle Funktionen sind auch über «Befehle» ausführbar."
|
|
@@ -1521,7 +1537,7 @@
|
|
|
1521
1537
|
},
|
|
1522
1538
|
"complexOptionsSaveError": {
|
|
1523
1539
|
"source": "The data could not be saved.",
|
|
1524
|
-
"translation": ""
|
|
1540
|
+
"translation": "Die Daten konnten nicht gespeichert werden."
|
|
1525
1541
|
},
|
|
1526
1542
|
"conversionsConvertTo": {
|
|
1527
1543
|
"source": "Convert to: @bundle",
|
|
@@ -1607,10 +1623,18 @@
|
|
|
1607
1623
|
"source": "Unchanged",
|
|
1608
1624
|
"translation": "Keine Änderung"
|
|
1609
1625
|
},
|
|
1626
|
+
"download": {
|
|
1627
|
+
"source": "Download",
|
|
1628
|
+
"translation": "Herunterladen"
|
|
1629
|
+
},
|
|
1610
1630
|
"downloadLogsButton": {
|
|
1611
1631
|
"source": "Download Logs",
|
|
1612
1632
|
"translation": "Fehlerprotokoll herunterladen"
|
|
1613
1633
|
},
|
|
1634
|
+
"downloadWithLabel": {
|
|
1635
|
+
"source": "Download @label",
|
|
1636
|
+
"translation": "@label herunterladen"
|
|
1637
|
+
},
|
|
1614
1638
|
"draggingOverlaySelectBundle": {
|
|
1615
1639
|
"source": "Select block type to create",
|
|
1616
1640
|
"translation": "Block-Typ zum Erstellen auswählen"
|
|
@@ -1695,10 +1719,30 @@
|
|
|
1695
1719
|
"source": "Edit field \"@name\"",
|
|
1696
1720
|
"translation": "Feld «@name» bearbeiten"
|
|
1697
1721
|
},
|
|
1722
|
+
"editableFieldCharCountMax": {
|
|
1723
|
+
"source": "@count of @max characters used",
|
|
1724
|
+
"translation": "@count von @max Zeichen verwendet"
|
|
1725
|
+
},
|
|
1698
1726
|
"editableFieldDiscard": {
|
|
1699
1727
|
"source": "Discard",
|
|
1700
1728
|
"translation": "Verwerfen"
|
|
1701
1729
|
},
|
|
1730
|
+
"editableFieldExitFullscreen": {
|
|
1731
|
+
"source": "Exit Fullscreen",
|
|
1732
|
+
"translation": "Vollbild beenden"
|
|
1733
|
+
},
|
|
1734
|
+
"editableFieldFullscreen": {
|
|
1735
|
+
"source": "Fullscreen",
|
|
1736
|
+
"translation": "Vollbild"
|
|
1737
|
+
},
|
|
1738
|
+
"editableFieldTranslate": {
|
|
1739
|
+
"source": "Translate",
|
|
1740
|
+
"translation": "Übersetzen"
|
|
1741
|
+
},
|
|
1742
|
+
"editableFieldTranslateTooltip": {
|
|
1743
|
+
"source": "Automatically translate the current text.",
|
|
1744
|
+
"translation": "Den aktuellen Text automatisch übersetzen."
|
|
1745
|
+
},
|
|
1702
1746
|
"entityTitleTourText": {
|
|
1703
1747
|
"source": "<p>Shows the title and status of the current page.</p><p>Click on the title to open the page edit form.</p>",
|
|
1704
1748
|
"translation": "<p>Zeigt den Titel und Status der aktuellen Seite an.</p><p>Klicken Sie auf den Titel um das Bearbeitungsformular anzuzeigen.</p>"
|
|
@@ -1819,14 +1863,6 @@
|
|
|
1819
1863
|
"source": "Artboard scroll speed",
|
|
1820
1864
|
"translation": "Scrollgeschwindigkeit der Vorschau"
|
|
1821
1865
|
},
|
|
1822
|
-
"feature_assistant_description": {
|
|
1823
|
-
"source": "Provides a dynamic add block action to add one or more blocks generated by an AI assistant.",
|
|
1824
|
-
"translation": "Stellt eine dynamische Aktion bereit, um einen oder mehrere Blöcke hinzuzufügen, die von einem KI-Assistenten generiert wurden."
|
|
1825
|
-
},
|
|
1826
|
-
"feature_assistant_label": {
|
|
1827
|
-
"source": "Assistant",
|
|
1828
|
-
"translation": "Assistent"
|
|
1829
|
-
},
|
|
1830
1866
|
"feature_block-scheduler_description": {
|
|
1831
1867
|
"source": "Adds support for scheduling blocks.",
|
|
1832
1868
|
"translation": "Ermöglicht das zeitgesteuerte Veröffentlichen von Blöcken."
|
|
@@ -1877,11 +1913,11 @@
|
|
|
1877
1913
|
},
|
|
1878
1914
|
"feature_complex-options_description": {
|
|
1879
1915
|
"source": "Edit complex option types such as charts.",
|
|
1880
|
-
"translation": ""
|
|
1916
|
+
"translation": "Ermöglicht die Bearbeitung komplexer Optionstypen wie z. B. Diagramme."
|
|
1881
1917
|
},
|
|
1882
1918
|
"feature_complex-options_label": {
|
|
1883
1919
|
"source": "Complex Options",
|
|
1884
|
-
"translation": ""
|
|
1920
|
+
"translation": "Komplexe Optionen"
|
|
1885
1921
|
},
|
|
1886
1922
|
"feature_conversions_description": {
|
|
1887
1923
|
"source": "Provides block actions to convert one or more blocks to a different bundle.",
|
|
@@ -2011,6 +2047,14 @@
|
|
|
2011
2047
|
"source": "Help",
|
|
2012
2048
|
"translation": "Hilfe"
|
|
2013
2049
|
},
|
|
2050
|
+
"feature_highlights_description": {
|
|
2051
|
+
"source": "Renders persistent highlights for blocks with issues or outdated translations.",
|
|
2052
|
+
"translation": "Zeigt dauerhafte Markierungen für Blöcke mit Problemen oder veralteten Übersetzungen an."
|
|
2053
|
+
},
|
|
2054
|
+
"feature_highlights_label": {
|
|
2055
|
+
"source": "Highlights",
|
|
2056
|
+
"translation": "Markierungen"
|
|
2057
|
+
},
|
|
2014
2058
|
"feature_history_description": {
|
|
2015
2059
|
"source": "Implements support for history features (undo, redo, list of mutations).",
|
|
2016
2060
|
"translation": "Implementiert Unterstützung für Verlaufsfunktionen (Rückgängig, Wiederherstellen, Liste der Änderungen)."
|
|
@@ -2131,6 +2175,14 @@
|
|
|
2131
2175
|
"source": "Close editor after publishing",
|
|
2132
2176
|
"translation": "Nach «Veröffentlichen» den Editor schliessen"
|
|
2133
2177
|
},
|
|
2178
|
+
"feature_referenced-entities_description": {
|
|
2179
|
+
"source": "Renders referenced entities of blocks.",
|
|
2180
|
+
"translation": "Zeigt referenzierte Entitäten von Blöcken an."
|
|
2181
|
+
},
|
|
2182
|
+
"feature_referenced-entities_label": {
|
|
2183
|
+
"source": "Referenced Entities",
|
|
2184
|
+
"translation": "Referenzierte Entitäten"
|
|
2185
|
+
},
|
|
2134
2186
|
"feature_responsive-preview_description": {
|
|
2135
2187
|
"source": "Provides a responsive preview of the current edit state in an iframe.",
|
|
2136
2188
|
"translation": "Stellt eine responsive Vorschau des aktuellen Bearbeitungszustands in einem iFrame bereit."
|
|
@@ -2201,11 +2253,11 @@
|
|
|
2201
2253
|
},
|
|
2202
2254
|
"feature_swap_description": {
|
|
2203
2255
|
"source": "Provides an action to swap two selected blocks.",
|
|
2204
|
-
"translation": ""
|
|
2256
|
+
"translation": "Stellt eine Aktion zum Vertauschen von zwei ausgewählten Blöcken bereit."
|
|
2205
2257
|
},
|
|
2206
2258
|
"feature_swap_label": {
|
|
2207
2259
|
"source": "Swap",
|
|
2208
|
-
"translation": ""
|
|
2260
|
+
"translation": "Tauschen"
|
|
2209
2261
|
},
|
|
2210
2262
|
"feature_templates_description": {
|
|
2211
2263
|
"source": "Add blocks from templates.",
|
|
@@ -2263,6 +2315,14 @@
|
|
|
2263
2315
|
"source": "Validations",
|
|
2264
2316
|
"translation": "Validierungen"
|
|
2265
2317
|
},
|
|
2318
|
+
"feature_workspace_description": {
|
|
2319
|
+
"source": "Allows users to switch between edit states.",
|
|
2320
|
+
"translation": "Ermöglicht das Wechseln zwischen Bearbeitungszuständen."
|
|
2321
|
+
},
|
|
2322
|
+
"feature_workspace_label": {
|
|
2323
|
+
"source": "Workspace",
|
|
2324
|
+
"translation": "Arbeitsbereich"
|
|
2325
|
+
},
|
|
2266
2326
|
"fieldIsRequired": {
|
|
2267
2327
|
"source": "This field is required",
|
|
2268
2328
|
"translation": "Feld darf nicht leer sein"
|
|
@@ -2275,6 +2335,10 @@
|
|
|
2275
2335
|
"source": "Search...",
|
|
2276
2336
|
"translation": "Suchen..."
|
|
2277
2337
|
},
|
|
2338
|
+
"formSaveNotEditStateInfo": {
|
|
2339
|
+
"source": "Saving this form applies changes immediately — they take effect without publishing the current blökkli page.",
|
|
2340
|
+
"translation": "Änderungen in diesem Formular werden sofort übernommen — ohne Veröffentlichung der aktuellen blökkli-Seite."
|
|
2341
|
+
},
|
|
2278
2342
|
"fragmentsAddFragmentAction": {
|
|
2279
2343
|
"source": "Fragment",
|
|
2280
2344
|
"translation": "Fragment"
|
|
@@ -2359,6 +2423,10 @@
|
|
|
2359
2423
|
"source": "Undo the last change.",
|
|
2360
2424
|
"translation": "Letzte Änderung rückgängig machen."
|
|
2361
2425
|
},
|
|
2426
|
+
"iframesEditTitle": {
|
|
2427
|
+
"source": "Edit iframe size",
|
|
2428
|
+
"translation": "Iframe-Grösse bearbeiten"
|
|
2429
|
+
},
|
|
2362
2430
|
"importExistingDescription": {
|
|
2363
2431
|
"source": "Import from an existing page",
|
|
2364
2432
|
"translation": "Von einer bestehenden Seite importieren"
|
|
@@ -2479,6 +2547,10 @@
|
|
|
2479
2547
|
"source": "Save and go back to \"@label\"",
|
|
2480
2548
|
"translation": "Speichern und zurück zu «@label»"
|
|
2481
2549
|
},
|
|
2550
|
+
"libraryItemEditOverlayBackWithPageNoSave": {
|
|
2551
|
+
"source": "Go back to \"@label\"",
|
|
2552
|
+
"translation": "Zurück zu «@label»"
|
|
2553
|
+
},
|
|
2482
2554
|
"libraryItemEditOverlayTitle": {
|
|
2483
2555
|
"source": "Edit reusable block",
|
|
2484
2556
|
"translation": "Wiederverwendbaren Block bearbeiten"
|
|
@@ -2503,6 +2575,10 @@
|
|
|
2503
2575
|
"source": "Preview",
|
|
2504
2576
|
"translation": "Vorschau"
|
|
2505
2577
|
},
|
|
2578
|
+
"loading": {
|
|
2579
|
+
"source": "Loading...",
|
|
2580
|
+
"translation": "Wird geladen…"
|
|
2581
|
+
},
|
|
2506
2582
|
"manageSchedule": {
|
|
2507
2583
|
"source": "Manage schedule...",
|
|
2508
2584
|
"translation": "Planung verwalten..."
|
|
@@ -2579,10 +2655,22 @@
|
|
|
2579
2655
|
"source": "Unselect \"@value\" in \"@option\"",
|
|
2580
2656
|
"translation": "«@value» in «@option» abwählen"
|
|
2581
2657
|
},
|
|
2658
|
+
"outdatedTranslation": {
|
|
2659
|
+
"source": "Outdated translation",
|
|
2660
|
+
"translation": "Veraltete Übersetzung"
|
|
2661
|
+
},
|
|
2662
|
+
"outdatedTranslationDescription": {
|
|
2663
|
+
"source": "Mark translation as up-to-date",
|
|
2664
|
+
"translation": "Übersetzung als aktuell markieren"
|
|
2665
|
+
},
|
|
2582
2666
|
"overlayDoubleClickInfo": {
|
|
2583
2667
|
"source": "<strong>Double click</strong> to close overlay",
|
|
2584
2668
|
"translation": "<strong>Doppelklicken</strong> um Dialog zu schliessen"
|
|
2585
2669
|
},
|
|
2670
|
+
"owner": {
|
|
2671
|
+
"source": "Owner",
|
|
2672
|
+
"translation": "Besitzer"
|
|
2673
|
+
},
|
|
2586
2674
|
"ownershipError": {
|
|
2587
2675
|
"source": "Error in assigning",
|
|
2588
2676
|
"translation": "Fehler beim Zuweisen"
|
|
@@ -2883,6 +2971,22 @@
|
|
|
2883
2971
|
"source": "@label measures how easy the text is to read.",
|
|
2884
2972
|
"translation": "@label misst, wie leicht der Text zu lesen ist."
|
|
2885
2973
|
},
|
|
2974
|
+
"referencedEntitiesEditorOverlayTitle": {
|
|
2975
|
+
"source": "Edit \"@label\"",
|
|
2976
|
+
"translation": "«@label» bearbeiten"
|
|
2977
|
+
},
|
|
2978
|
+
"relatedContent": {
|
|
2979
|
+
"source": "Related Content",
|
|
2980
|
+
"translation": "Verwandte Inhalte"
|
|
2981
|
+
},
|
|
2982
|
+
"relatedContentNoEntitiesFound": {
|
|
2983
|
+
"source": "No related content found",
|
|
2984
|
+
"translation": "Keine verwandten Inhalte gefunden"
|
|
2985
|
+
},
|
|
2986
|
+
"relatedContentTooltip": {
|
|
2987
|
+
"source": "Content like pages or images referenced or linked by this block.",
|
|
2988
|
+
"translation": "Inhalte wie Seiten oder Bilder, die von diesem Block referenziert oder verlinkt werden."
|
|
2989
|
+
},
|
|
2886
2990
|
"responsivePreviewCustomViewport": {
|
|
2887
2991
|
"source": "Custom",
|
|
2888
2992
|
"translation": "Benutzerdefiniert"
|
|
@@ -2931,6 +3035,10 @@
|
|
|
2931
3035
|
"source": "All changes have been discarded.",
|
|
2932
3036
|
"translation": "Alle Änderungen wurden verworfen."
|
|
2933
3037
|
},
|
|
3038
|
+
"save": {
|
|
3039
|
+
"source": "Save",
|
|
3040
|
+
"translation": "Speichern"
|
|
3041
|
+
},
|
|
2934
3042
|
"scheduledFor": {
|
|
2935
3043
|
"source": "The changes will be published on this date.",
|
|
2936
3044
|
"translation": "Die Änderungen werden an diesem Datum publiziert."
|
|
@@ -2959,6 +3067,10 @@
|
|
|
2959
3067
|
"source": "Failed to replace content.",
|
|
2960
3068
|
"translation": "Inhalt konnte nicht ersetzt werden."
|
|
2961
3069
|
},
|
|
3070
|
+
"searchOverlayNoResults": {
|
|
3071
|
+
"source": "No results found.",
|
|
3072
|
+
"translation": "Keine Ergebnisse gefunden."
|
|
3073
|
+
},
|
|
2962
3074
|
"searchToolbarLabel": {
|
|
2963
3075
|
"source": "Search content",
|
|
2964
3076
|
"translation": "Inhalte suchen"
|
|
@@ -2979,6 +3091,10 @@
|
|
|
2979
3091
|
"source": "New",
|
|
2980
3092
|
"translation": "Neu"
|
|
2981
3093
|
},
|
|
3094
|
+
"selectedTranslationIsOutdated": {
|
|
3095
|
+
"source": "Outdated",
|
|
3096
|
+
"translation": "Veraltet"
|
|
3097
|
+
},
|
|
2982
3098
|
"settingsAdvanced": {
|
|
2983
3099
|
"source": "Advanced",
|
|
2984
3100
|
"translation": "Erweitert"
|
|
@@ -3295,13 +3411,53 @@
|
|
|
3295
3411
|
"source": "This block type is not translatable.",
|
|
3296
3412
|
"translation": "Dieser Blocktyp ist nicht übersetzbar."
|
|
3297
3413
|
},
|
|
3414
|
+
"translationOutdatedHint": {
|
|
3415
|
+
"source": "The translation is marked as outdated.",
|
|
3416
|
+
"translation": "Die Übersetzung ist als veraltet markiert."
|
|
3417
|
+
},
|
|
3418
|
+
"translationsAddFiles": {
|
|
3419
|
+
"source": "Add files...",
|
|
3420
|
+
"translation": "Dateien hinzufügen..."
|
|
3421
|
+
},
|
|
3422
|
+
"translationsAutoTranslate": {
|
|
3423
|
+
"source": "Auto-translate",
|
|
3424
|
+
"translation": "Automatisch übersetzen"
|
|
3425
|
+
},
|
|
3426
|
+
"translationsAutoTranslateButton": {
|
|
3427
|
+
"source": "Auto-translate...",
|
|
3428
|
+
"translation": "Automatisch übersetzen..."
|
|
3429
|
+
},
|
|
3430
|
+
"translationsAutoTranslateTooltip": {
|
|
3431
|
+
"source": "Automatically translate all texts using a translation service",
|
|
3432
|
+
"translation": "Alle Texte automatisch mit einem Übersetzungsdienst übersetzen"
|
|
3433
|
+
},
|
|
3298
3434
|
"translationsBannerButton": {
|
|
3299
3435
|
"source": "Edit source language instead",
|
|
3300
3436
|
"translation": "Originalsprache bearbeiten"
|
|
3301
3437
|
},
|
|
3438
|
+
"translationsBannerMarkAllAsUpToDate": {
|
|
3439
|
+
"source": "Mark all as up-to-date",
|
|
3440
|
+
"translation": "Alle als aktuell markieren"
|
|
3441
|
+
},
|
|
3442
|
+
"translationsBannerNext": {
|
|
3443
|
+
"source": "Next block",
|
|
3444
|
+
"translation": "Nächster Block"
|
|
3445
|
+
},
|
|
3446
|
+
"translationsBannerOutdatedCount": {
|
|
3447
|
+
"source": "@count blocks have <strong>outdated translations</strong>.",
|
|
3448
|
+
"translation": "@count Blöcke haben <strong>veraltete Übersetzungen</strong>."
|
|
3449
|
+
},
|
|
3450
|
+
"translationsBannerOutdatedSingular": {
|
|
3451
|
+
"source": "@count block has an <strong>outdated translation</strong>.",
|
|
3452
|
+
"translation": "@count Block hat eine <strong>veraltete Übersetzung</strong>."
|
|
3453
|
+
},
|
|
3454
|
+
"translationsBannerPrev": {
|
|
3455
|
+
"source": "Previous block",
|
|
3456
|
+
"translation": "Vorheriger Block"
|
|
3457
|
+
},
|
|
3302
3458
|
"translationsBannerText": {
|
|
3303
|
-
"source": "You are currently editing the <strong>@language</strong> translation.
|
|
3304
|
-
"translation": "Sie bearbeiten die Übersetzung <strong>«@language»</strong>.
|
|
3459
|
+
"source": "You are currently editing the <strong>@language</strong> translation.",
|
|
3460
|
+
"translation": "Sie bearbeiten die Übersetzung <strong>«@language»</strong>."
|
|
3305
3461
|
},
|
|
3306
3462
|
"translationsBatchTranslateMenuDescription": {
|
|
3307
3463
|
"source": "Translate all blocks",
|
|
@@ -3311,10 +3467,74 @@
|
|
|
3311
3467
|
"source": "Translate...",
|
|
3312
3468
|
"translation": "Übersetzen..."
|
|
3313
3469
|
},
|
|
3470
|
+
"translationsCsvApply": {
|
|
3471
|
+
"source": "Import @count translations",
|
|
3472
|
+
"translation": "@count Übersetzungen importieren"
|
|
3473
|
+
},
|
|
3474
|
+
"translationsCsvChangesLabel": {
|
|
3475
|
+
"source": "fields will be updated",
|
|
3476
|
+
"translation": "Felder werden aktualisiert"
|
|
3477
|
+
},
|
|
3478
|
+
"translationsCsvDialogTitle": {
|
|
3479
|
+
"source": "Import/Export Translations",
|
|
3480
|
+
"translation": "Übersetzungen importieren/exportieren"
|
|
3481
|
+
},
|
|
3482
|
+
"translationsCsvDiff": {
|
|
3483
|
+
"source": "Changes",
|
|
3484
|
+
"translation": "Änderungen"
|
|
3485
|
+
},
|
|
3486
|
+
"translationsCsvExport": {
|
|
3487
|
+
"source": "Export",
|
|
3488
|
+
"translation": "Export"
|
|
3489
|
+
},
|
|
3490
|
+
"translationsCsvImport": {
|
|
3491
|
+
"source": "Import",
|
|
3492
|
+
"translation": "Import"
|
|
3493
|
+
},
|
|
3494
|
+
"translationsCsvLanguages": {
|
|
3495
|
+
"source": "Languages",
|
|
3496
|
+
"translation": "Sprachen"
|
|
3497
|
+
},
|
|
3498
|
+
"translationsCsvMenuTitle": {
|
|
3499
|
+
"source": "Import/export...",
|
|
3500
|
+
"translation": "Import/Export..."
|
|
3501
|
+
},
|
|
3502
|
+
"translationsCsvNoChanges": {
|
|
3503
|
+
"source": "No changes found",
|
|
3504
|
+
"translation": "Keine Änderungen gefunden"
|
|
3505
|
+
},
|
|
3506
|
+
"translationsCsvOnlyMissing": {
|
|
3507
|
+
"source": "Only missing translations",
|
|
3508
|
+
"translation": "Nur fehlende Übersetzungen"
|
|
3509
|
+
},
|
|
3510
|
+
"translationsCsvOnlyOutdated": {
|
|
3511
|
+
"source": "Only outdated translations",
|
|
3512
|
+
"translation": "Nur veraltete Übersetzungen"
|
|
3513
|
+
},
|
|
3514
|
+
"translationsCsvTooltip": {
|
|
3515
|
+
"source": "Import or export translations as CSV or PO files",
|
|
3516
|
+
"translation": "Übersetzungen als CSV- oder PO-Dateien importieren oder exportieren"
|
|
3517
|
+
},
|
|
3518
|
+
"translationsDropToImport": {
|
|
3519
|
+
"source": "Drop CSV or PO file to import",
|
|
3520
|
+
"translation": "CSV- oder PO-Datei zum Importieren ablegen"
|
|
3521
|
+
},
|
|
3314
3522
|
"translationsItemAction": {
|
|
3315
3523
|
"source": "Translate",
|
|
3316
3524
|
"translation": "Übersetzen"
|
|
3317
3525
|
},
|
|
3526
|
+
"translationsMarkUpToDate": {
|
|
3527
|
+
"source": "Mark translations as up to date",
|
|
3528
|
+
"translation": "Übersetzung als aktuell markieren"
|
|
3529
|
+
},
|
|
3530
|
+
"translationsMarkUpToDateDisabled": {
|
|
3531
|
+
"source": "No selected blocks have an outdated translation.",
|
|
3532
|
+
"translation": "Keiner der ausgewählten Blöcke hat eine veraltete Übersetzung."
|
|
3533
|
+
},
|
|
3534
|
+
"translationsSelectImportFile": {
|
|
3535
|
+
"source": "Select CSV or PO file",
|
|
3536
|
+
"translation": "CSV- oder PO-Datei auswählen"
|
|
3537
|
+
},
|
|
3318
3538
|
"translationsTourText": {
|
|
3319
3539
|
"source": "Quickly switch between available translations. A greyed out language indicates the content is not yet translated. Clicking on it opens the form to create a new translation for this language.",
|
|
3320
3540
|
"translation": "Wechseln Sie schnell zwischen verfügbaren Übersetzungen. Eine graue Sprache zeigt an, dass der Inhalt noch nicht übersetzt wurde. Ein Klick darauf öffnet das Formular, um eine neue Übersetzung für diese Sprache zu erstellen."
|
|
@@ -3323,6 +3543,34 @@
|
|
|
3323
3543
|
"source": "Translations",
|
|
3324
3544
|
"translation": "Übersetzungen"
|
|
3325
3545
|
},
|
|
3546
|
+
"translationsTranslateApply": {
|
|
3547
|
+
"source": "Apply @count translations",
|
|
3548
|
+
"translation": "@count Übersetzungen anwenden"
|
|
3549
|
+
},
|
|
3550
|
+
"translationsTranslateButton": {
|
|
3551
|
+
"source": "Request @count translations",
|
|
3552
|
+
"translation": "@count Übersetzungen anfordern"
|
|
3553
|
+
},
|
|
3554
|
+
"translationsTranslateCurrentColumn": {
|
|
3555
|
+
"source": "Current translation (@language)",
|
|
3556
|
+
"translation": "Aktuelle Übersetzung (@language)"
|
|
3557
|
+
},
|
|
3558
|
+
"translationsTranslateDialogTitle": {
|
|
3559
|
+
"source": "Automatic Translation",
|
|
3560
|
+
"translation": "Automatische Übersetzung"
|
|
3561
|
+
},
|
|
3562
|
+
"translationsTranslateFieldsLabel": {
|
|
3563
|
+
"source": "fields selected",
|
|
3564
|
+
"translation": "Felder ausgewählt"
|
|
3565
|
+
},
|
|
3566
|
+
"translationsTranslateLoading": {
|
|
3567
|
+
"source": "Translating...",
|
|
3568
|
+
"translation": "Wird übersetzt..."
|
|
3569
|
+
},
|
|
3570
|
+
"translationsTranslateNoTexts": {
|
|
3571
|
+
"source": "No translatable texts found on this page.",
|
|
3572
|
+
"translation": "Keine übersetzbaren Texte auf dieser Seite gefunden."
|
|
3573
|
+
},
|
|
3326
3574
|
"unexpectedMutationError": {
|
|
3327
3575
|
"source": "An unexpected error happened.",
|
|
3328
3576
|
"translation": "Ein unerwarteter Fehler ist aufgetreten"
|
|
@@ -3354,5 +3602,17 @@
|
|
|
3354
3602
|
"viewBannerViewTitle": {
|
|
3355
3603
|
"source": "You are in view-only mode.",
|
|
3356
3604
|
"translation": "Sie befinden sich im Ansichtsmodus."
|
|
3605
|
+
},
|
|
3606
|
+
"workspaceOpen": {
|
|
3607
|
+
"source": "Switch page",
|
|
3608
|
+
"translation": "Seite wechseln"
|
|
3609
|
+
},
|
|
3610
|
+
"workspaceSearchPlaceholder": {
|
|
3611
|
+
"source": "Search pages...",
|
|
3612
|
+
"translation": "Seiten durchsuchen..."
|
|
3613
|
+
},
|
|
3614
|
+
"workspaceTitle": {
|
|
3615
|
+
"source": "Switch page",
|
|
3616
|
+
"translation": "Seite wechseln"
|
|
3357
3617
|
}
|
|
3358
3618
|
}
|