@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
|
@@ -411,6 +411,34 @@
|
|
|
411
411
|
"source": "Show more",
|
|
412
412
|
"translation": "Meh aazeige"
|
|
413
413
|
},
|
|
414
|
+
"aiAgentFeedbackBad": {
|
|
415
|
+
"source": "Bad",
|
|
416
|
+
"translation": ""
|
|
417
|
+
},
|
|
418
|
+
"aiAgentFeedbackFine": {
|
|
419
|
+
"source": "Fine",
|
|
420
|
+
"translation": ""
|
|
421
|
+
},
|
|
422
|
+
"aiAgentFeedbackGood": {
|
|
423
|
+
"source": "Good",
|
|
424
|
+
"translation": ""
|
|
425
|
+
},
|
|
426
|
+
"aiAgentFeedbackPlaceholder": {
|
|
427
|
+
"source": "Tell us more (optional)...",
|
|
428
|
+
"translation": ""
|
|
429
|
+
},
|
|
430
|
+
"aiAgentFeedbackPrompt": {
|
|
431
|
+
"source": "How was this response?",
|
|
432
|
+
"translation": ""
|
|
433
|
+
},
|
|
434
|
+
"aiAgentFeedbackSubmit": {
|
|
435
|
+
"source": "Submit",
|
|
436
|
+
"translation": ""
|
|
437
|
+
},
|
|
438
|
+
"aiAgentFeedbackThanks": {
|
|
439
|
+
"source": "Thanks for your feedback!",
|
|
440
|
+
"translation": ""
|
|
441
|
+
},
|
|
414
442
|
"aiAgentFindBlocksDone": {
|
|
415
443
|
"source": "Found @count blocks",
|
|
416
444
|
"translation": "@count Blöck gfunde"
|
|
@@ -911,6 +939,14 @@
|
|
|
911
939
|
"source": "Heading Structure",
|
|
912
940
|
"translation": "Überschrifte-Struktur"
|
|
913
941
|
},
|
|
942
|
+
"analyzeIgnore": {
|
|
943
|
+
"source": "Ignore",
|
|
944
|
+
"translation": ""
|
|
945
|
+
},
|
|
946
|
+
"analyzeIgnoredResults": {
|
|
947
|
+
"source": "Ignored",
|
|
948
|
+
"translation": ""
|
|
949
|
+
},
|
|
914
950
|
"analyzeKeepVisible": {
|
|
915
951
|
"source": "Keep results visible",
|
|
916
952
|
"translation": "Ergebnis sichtbar bhalte"
|
|
@@ -935,6 +971,10 @@
|
|
|
935
971
|
"source": "Results are outdated. Click the button to update.",
|
|
936
972
|
"translation": "D'Ergebnis sin veraltet. Klick uf de Button zum Aktualisiere."
|
|
937
973
|
},
|
|
974
|
+
"analyzeShowDetails": {
|
|
975
|
+
"source": "Show details",
|
|
976
|
+
"translation": ""
|
|
977
|
+
},
|
|
938
978
|
"analyzeSidebarTitle": {
|
|
939
979
|
"source": "Analyze",
|
|
940
980
|
"translation": "Analysiere"
|
|
@@ -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": "Verstoss"
|
|
@@ -967,6 +1003,10 @@
|
|
|
967
1003
|
"source": "Analyze the content of your page",
|
|
968
1004
|
"translation": "Dr Inhalt vo dinere Sitte analysiere"
|
|
969
1005
|
},
|
|
1006
|
+
"analyzeUnignore": {
|
|
1007
|
+
"source": "Restore",
|
|
1008
|
+
"translation": ""
|
|
1009
|
+
},
|
|
970
1010
|
"analyzerReadabiliyCouldBeSimpler": {
|
|
971
1011
|
"source": "Could be simpler (@lang).",
|
|
972
1012
|
"translation": "Chönnt eifacher si (@lang)."
|
|
@@ -1007,6 +1047,14 @@
|
|
|
1007
1047
|
"source": "Toggle anchor links",
|
|
1008
1048
|
"translation": "Anker-Links umschalte"
|
|
1009
1049
|
},
|
|
1050
|
+
"arrowLeft": {
|
|
1051
|
+
"source": "Arrow Left",
|
|
1052
|
+
"translation": ""
|
|
1053
|
+
},
|
|
1054
|
+
"arrowRight": {
|
|
1055
|
+
"source": "Arrow Right",
|
|
1056
|
+
"translation": ""
|
|
1057
|
+
},
|
|
1010
1058
|
"artboard": {
|
|
1011
1059
|
"source": "Artboard",
|
|
1012
1060
|
"translation": "Zeichenflächi"
|
|
@@ -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 dr aktuäll Zoom-Faktor aa. Klick druf zum dr Zoom uf 100% zruggzsetze."
|
|
1065
1113
|
},
|
|
1066
|
-
"assistantAddAction": {
|
|
1067
|
-
"source": "Add with AI Assistant",
|
|
1068
|
-
"translation": "Mitem KI-Assischtänt drzuefüege"
|
|
1069
|
-
},
|
|
1070
|
-
"assistantAddActionDescription": {
|
|
1071
|
-
"source": "Add content using an AI assistant.",
|
|
1072
|
-
"translation": "Inhält mitemne KI-Assischtänt drzuefüege."
|
|
1073
|
-
},
|
|
1074
|
-
"assistantAddResultError": {
|
|
1075
|
-
"source": "Failed to add block from assistant.",
|
|
1076
|
-
"translation": "Es het e Fähler gäh bim drzuefüege mitem KI Assischtänt"
|
|
1077
|
-
},
|
|
1078
|
-
"assistantDialogLead": {
|
|
1079
|
-
"source": "Please enter what you'd like the assistant to generate.",
|
|
1080
|
-
"translation": "Bitte git iih, was dr KI-Assischtänt söll generiere. "
|
|
1081
|
-
},
|
|
1082
|
-
"assistantDialogSubmit": {
|
|
1083
|
-
"source": "Create blocks",
|
|
1084
|
-
"translation": "Blöck erstelle"
|
|
1085
|
-
},
|
|
1086
|
-
"assistantDialogTitle": {
|
|
1087
|
-
"source": "Generate content with AI assistant",
|
|
1088
|
-
"translation": "Inhalt mit KI generiere"
|
|
1089
|
-
},
|
|
1090
|
-
"assistantPromptLabel": {
|
|
1091
|
-
"source": "Prompt",
|
|
1092
|
-
"translation": "Aawiisig"
|
|
1093
|
-
},
|
|
1094
|
-
"assistantPromptPlaceholder": {
|
|
1095
|
-
"source": "Generate content for a page about how taxes work in Switzerland",
|
|
1096
|
-
"translation": "Schrib e Teggscht zum Thema Stüüre in dr Schwiz"
|
|
1097
|
-
},
|
|
1098
1114
|
"availableBlocks": {
|
|
1099
1115
|
"source": "Available blocks",
|
|
1100
1116
|
"translation": "Verfüegbari Blöck"
|
|
@@ -1263,13 +1279,9 @@
|
|
|
1263
1279
|
"source": "Show total",
|
|
1264
1280
|
"translation": "Total aazeige"
|
|
1265
1281
|
},
|
|
1266
|
-
"
|
|
1267
|
-
"source": "Edit chart...",
|
|
1268
|
-
"translation": "Diagramm bearbeite..."
|
|
1269
|
-
},
|
|
1270
|
-
"chartsEditorTitle": {
|
|
1282
|
+
"chartsEditTitle": {
|
|
1271
1283
|
"source": "Edit chart",
|
|
1272
|
-
"translation": "
|
|
1284
|
+
"translation": ""
|
|
1273
1285
|
},
|
|
1274
1286
|
"chartsFootnotes": {
|
|
1275
1287
|
"source": "Footnotes",
|
|
@@ -1491,6 +1503,10 @@
|
|
|
1491
1503
|
"source": "Open Command Palette",
|
|
1492
1504
|
"translation": "Befehlspalette ufmache"
|
|
1493
1505
|
},
|
|
1506
|
+
"commandPaletteTitle": {
|
|
1507
|
+
"source": "Command Palette",
|
|
1508
|
+
"translation": ""
|
|
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üehr Aktione eifach mit dinere Tastatuur uus, indem d'Befehlspalette ufmachsch. Di meischte Funktione wo mit Klicks verfüegbar sin, gits au in dr Befehlspalette."
|
|
@@ -1607,10 +1623,18 @@
|
|
|
1607
1623
|
"source": "Unchanged",
|
|
1608
1624
|
"translation": "Unveränderet"
|
|
1609
1625
|
},
|
|
1626
|
+
"download": {
|
|
1627
|
+
"source": "Download",
|
|
1628
|
+
"translation": ""
|
|
1629
|
+
},
|
|
1610
1630
|
"downloadLogsButton": {
|
|
1611
1631
|
"source": "Download Logs",
|
|
1612
1632
|
"translation": "Fählerprotokoll abelade"
|
|
1613
1633
|
},
|
|
1634
|
+
"downloadWithLabel": {
|
|
1635
|
+
"source": "Download @label",
|
|
1636
|
+
"translation": ""
|
|
1637
|
+
},
|
|
1614
1638
|
"draggingOverlaySelectBundle": {
|
|
1615
1639
|
"source": "Select block type to create",
|
|
1616
1640
|
"translation": "Blocktyp zum Erstelle uswähle"
|
|
@@ -1695,10 +1719,30 @@
|
|
|
1695
1719
|
"source": "Edit field \"@name\"",
|
|
1696
1720
|
"translation": "Fäld «@name» bearbeite"
|
|
1697
1721
|
},
|
|
1722
|
+
"editableFieldCharCountMax": {
|
|
1723
|
+
"source": "@count of @max characters used",
|
|
1724
|
+
"translation": ""
|
|
1725
|
+
},
|
|
1698
1726
|
"editableFieldDiscard": {
|
|
1699
1727
|
"source": "Discard",
|
|
1700
1728
|
"translation": "Verwärfe"
|
|
1701
1729
|
},
|
|
1730
|
+
"editableFieldExitFullscreen": {
|
|
1731
|
+
"source": "Exit Fullscreen",
|
|
1732
|
+
"translation": ""
|
|
1733
|
+
},
|
|
1734
|
+
"editableFieldFullscreen": {
|
|
1735
|
+
"source": "Fullscreen",
|
|
1736
|
+
"translation": ""
|
|
1737
|
+
},
|
|
1738
|
+
"editableFieldTranslate": {
|
|
1739
|
+
"source": "Translate",
|
|
1740
|
+
"translation": ""
|
|
1741
|
+
},
|
|
1742
|
+
"editableFieldTranslateTooltip": {
|
|
1743
|
+
"source": "Automatically translate the current text.",
|
|
1744
|
+
"translation": ""
|
|
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 dr Titel und Status vo dr aktuälle Sitte aa.</p><p>Klick uf dr Titel zum s'Sitte-Bearbeitsformular z'öffne.</p>"
|
|
@@ -1819,14 +1863,6 @@
|
|
|
1819
1863
|
"source": "Artboard scroll speed",
|
|
1820
1864
|
"translation": "Scrollgschwindigkeit vo dr Zeicheflächi"
|
|
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 e dynamischi Aktion bereit zum ei oder mehreri Blöck vom KI-Assischtänt z'generiere."
|
|
1825
|
-
},
|
|
1826
|
-
"feature_assistant_label": {
|
|
1827
|
-
"source": "Assistant",
|
|
1828
|
-
"translation": "Assischtänt"
|
|
1829
|
-
},
|
|
1830
1866
|
"feature_block-scheduler_description": {
|
|
1831
1867
|
"source": "Adds support for scheduling blocks.",
|
|
1832
1868
|
"translation": "Ermöglicht s'zitgstüürti Veröffentliche vo Blöck."
|
|
@@ -2011,6 +2047,14 @@
|
|
|
2011
2047
|
"source": "Help",
|
|
2012
2048
|
"translation": "Hilf"
|
|
2013
2049
|
},
|
|
2050
|
+
"feature_highlights_description": {
|
|
2051
|
+
"source": "Renders persistent highlights for blocks with issues or outdated translations.",
|
|
2052
|
+
"translation": ""
|
|
2053
|
+
},
|
|
2054
|
+
"feature_highlights_label": {
|
|
2055
|
+
"source": "Highlights",
|
|
2056
|
+
"translation": ""
|
|
2057
|
+
},
|
|
2014
2058
|
"feature_history_description": {
|
|
2015
2059
|
"source": "Implements support for history features (undo, redo, list of mutations).",
|
|
2016
2060
|
"translation": "Implementiert Understützig für Verlaufs-Funktione (Rückgängig, Widerhärstelle, Lischt vo Änderige)."
|
|
@@ -2131,6 +2175,14 @@
|
|
|
2131
2175
|
"source": "Close editor after publishing",
|
|
2132
2176
|
"translation": "Editor noch em Publiziere schliesse"
|
|
2133
2177
|
},
|
|
2178
|
+
"feature_referenced-entities_description": {
|
|
2179
|
+
"source": "Renders referenced entities of blocks.",
|
|
2180
|
+
"translation": ""
|
|
2181
|
+
},
|
|
2182
|
+
"feature_referenced-entities_label": {
|
|
2183
|
+
"source": "Referenced Entities",
|
|
2184
|
+
"translation": ""
|
|
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 e responsivi Vorschau vom aktuälle Bearbeitszuestand in emne iframe bereit."
|
|
@@ -2263,6 +2315,14 @@
|
|
|
2263
2315
|
"source": "Validations",
|
|
2264
2316
|
"translation": "Validierige"
|
|
2265
2317
|
},
|
|
2318
|
+
"feature_workspace_description": {
|
|
2319
|
+
"source": "Allows users to switch between edit states.",
|
|
2320
|
+
"translation": ""
|
|
2321
|
+
},
|
|
2322
|
+
"feature_workspace_label": {
|
|
2323
|
+
"source": "Workspace",
|
|
2324
|
+
"translation": ""
|
|
2325
|
+
},
|
|
2266
2326
|
"fieldIsRequired": {
|
|
2267
2327
|
"source": "This field is required",
|
|
2268
2328
|
"translation": "Das Fäld dörf nid leer sii"
|
|
@@ -2275,6 +2335,10 @@
|
|
|
2275
2335
|
"source": "Search...",
|
|
2276
2336
|
"translation": "Sueche..."
|
|
2277
2337
|
},
|
|
2338
|
+
"formSaveNotEditStateInfo": {
|
|
2339
|
+
"source": "Saving this form applies changes immediately — they take effect without publishing the current blökkli page.",
|
|
2340
|
+
"translation": ""
|
|
2341
|
+
},
|
|
2278
2342
|
"fragmentsAddFragmentAction": {
|
|
2279
2343
|
"source": "Fragment",
|
|
2280
2344
|
"translation": "Fragmänt drzuefüege"
|
|
@@ -2359,6 +2423,10 @@
|
|
|
2359
2423
|
"source": "Undo the last change.",
|
|
2360
2424
|
"translation": "Di letscht Änderig rückgängig mache."
|
|
2361
2425
|
},
|
|
2426
|
+
"iframesEditTitle": {
|
|
2427
|
+
"source": "Edit iframe size",
|
|
2428
|
+
"translation": ""
|
|
2429
|
+
},
|
|
2362
2430
|
"importExistingDescription": {
|
|
2363
2431
|
"source": "Import from an existing page",
|
|
2364
2432
|
"translation": "Vonere bestehende Sitte importiere"
|
|
@@ -2479,6 +2547,10 @@
|
|
|
2479
2547
|
"source": "Save and go back to \"@label\"",
|
|
2480
2548
|
"translation": "Zrugg zu «@label»"
|
|
2481
2549
|
},
|
|
2550
|
+
"libraryItemEditOverlayBackWithPageNoSave": {
|
|
2551
|
+
"source": "Go back to \"@label\"",
|
|
2552
|
+
"translation": ""
|
|
2553
|
+
},
|
|
2482
2554
|
"libraryItemEditOverlayTitle": {
|
|
2483
2555
|
"source": "Edit reusable block",
|
|
2484
2556
|
"translation": "Wiederverwändbare Block bearbeite"
|
|
@@ -2503,6 +2575,10 @@
|
|
|
2503
2575
|
"source": "Preview",
|
|
2504
2576
|
"translation": "Vorschau"
|
|
2505
2577
|
},
|
|
2578
|
+
"loading": {
|
|
2579
|
+
"source": "Loading...",
|
|
2580
|
+
"translation": ""
|
|
2581
|
+
},
|
|
2506
2582
|
"manageSchedule": {
|
|
2507
2583
|
"source": "Manage schedule...",
|
|
2508
2584
|
"translation": "Planung verwalte..."
|
|
@@ -2579,10 +2655,22 @@
|
|
|
2579
2655
|
"source": "Unselect \"@value\" in \"@option\"",
|
|
2580
2656
|
"translation": "«@value» in «@option» abwähle"
|
|
2581
2657
|
},
|
|
2658
|
+
"outdatedTranslation": {
|
|
2659
|
+
"source": "Outdated translation",
|
|
2660
|
+
"translation": ""
|
|
2661
|
+
},
|
|
2662
|
+
"outdatedTranslationDescription": {
|
|
2663
|
+
"source": "Mark translation as up-to-date",
|
|
2664
|
+
"translation": ""
|
|
2665
|
+
},
|
|
2582
2666
|
"overlayDoubleClickInfo": {
|
|
2583
2667
|
"source": "<strong>Double click</strong> to close overlay",
|
|
2584
2668
|
"translation": "<strong>Doppelklick</strong> zum Overlay zuemache"
|
|
2585
2669
|
},
|
|
2670
|
+
"owner": {
|
|
2671
|
+
"source": "Owner",
|
|
2672
|
+
"translation": ""
|
|
2673
|
+
},
|
|
2586
2674
|
"ownershipError": {
|
|
2587
2675
|
"source": "Error in assigning",
|
|
2588
2676
|
"translation": "Fähler bim Zuewiise"
|
|
@@ -2883,6 +2971,22 @@
|
|
|
2883
2971
|
"source": "@label measures how easy the text is to read.",
|
|
2884
2972
|
"translation": "@label misst, wie eifach dr Teggscht z'läse isch."
|
|
2885
2973
|
},
|
|
2974
|
+
"referencedEntitiesEditorOverlayTitle": {
|
|
2975
|
+
"source": "Edit \"@label\"",
|
|
2976
|
+
"translation": ""
|
|
2977
|
+
},
|
|
2978
|
+
"relatedContent": {
|
|
2979
|
+
"source": "Related Content",
|
|
2980
|
+
"translation": ""
|
|
2981
|
+
},
|
|
2982
|
+
"relatedContentNoEntitiesFound": {
|
|
2983
|
+
"source": "No related content found",
|
|
2984
|
+
"translation": ""
|
|
2985
|
+
},
|
|
2986
|
+
"relatedContentTooltip": {
|
|
2987
|
+
"source": "Content like pages or images referenced or linked by this block.",
|
|
2988
|
+
"translation": ""
|
|
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": "Alli Änderige sin glöscht worde."
|
|
2933
3037
|
},
|
|
3038
|
+
"save": {
|
|
3039
|
+
"source": "Save",
|
|
3040
|
+
"translation": ""
|
|
3041
|
+
},
|
|
2934
3042
|
"scheduledFor": {
|
|
2935
3043
|
"source": "The changes will be published on this date.",
|
|
2936
3044
|
"translation": "D'Änderige wärde a dem Datum publiziert."
|
|
@@ -2959,6 +3067,10 @@
|
|
|
2959
3067
|
"source": "Failed to replace content.",
|
|
2960
3068
|
"translation": "Inhalt het nid chönne ersetzt wärde."
|
|
2961
3069
|
},
|
|
3070
|
+
"searchOverlayNoResults": {
|
|
3071
|
+
"source": "No results found.",
|
|
3072
|
+
"translation": ""
|
|
3073
|
+
},
|
|
2962
3074
|
"searchToolbarLabel": {
|
|
2963
3075
|
"source": "Search content",
|
|
2964
3076
|
"translation": "Inhält sueche"
|
|
@@ -2979,6 +3091,10 @@
|
|
|
2979
3091
|
"source": "New",
|
|
2980
3092
|
"translation": "Nöi"
|
|
2981
3093
|
},
|
|
3094
|
+
"selectedTranslationIsOutdated": {
|
|
3095
|
+
"source": "Outdated",
|
|
3096
|
+
"translation": ""
|
|
3097
|
+
},
|
|
2982
3098
|
"settingsAdvanced": {
|
|
2983
3099
|
"source": "Advanced",
|
|
2984
3100
|
"translation": "Erwiiteret"
|
|
@@ -3295,12 +3411,52 @@
|
|
|
3295
3411
|
"source": "This block type is not translatable.",
|
|
3296
3412
|
"translation": "Dr Blocktyp isch nid übersetzbar."
|
|
3297
3413
|
},
|
|
3414
|
+
"translationOutdatedHint": {
|
|
3415
|
+
"source": "The translation is marked as outdated.",
|
|
3416
|
+
"translation": ""
|
|
3417
|
+
},
|
|
3418
|
+
"translationsAddFiles": {
|
|
3419
|
+
"source": "Add files...",
|
|
3420
|
+
"translation": ""
|
|
3421
|
+
},
|
|
3422
|
+
"translationsAutoTranslate": {
|
|
3423
|
+
"source": "Auto-translate",
|
|
3424
|
+
"translation": ""
|
|
3425
|
+
},
|
|
3426
|
+
"translationsAutoTranslateButton": {
|
|
3427
|
+
"source": "Auto-translate...",
|
|
3428
|
+
"translation": ""
|
|
3429
|
+
},
|
|
3430
|
+
"translationsAutoTranslateTooltip": {
|
|
3431
|
+
"source": "Automatically translate all texts using a translation service",
|
|
3432
|
+
"translation": ""
|
|
3433
|
+
},
|
|
3298
3434
|
"translationsBannerButton": {
|
|
3299
3435
|
"source": "Edit source language instead",
|
|
3300
3436
|
"translation": "Stattdässe Quellsproch bearbeite"
|
|
3301
3437
|
},
|
|
3438
|
+
"translationsBannerMarkAllAsUpToDate": {
|
|
3439
|
+
"source": "Mark all as up-to-date",
|
|
3440
|
+
"translation": ""
|
|
3441
|
+
},
|
|
3442
|
+
"translationsBannerNext": {
|
|
3443
|
+
"source": "Next block",
|
|
3444
|
+
"translation": ""
|
|
3445
|
+
},
|
|
3446
|
+
"translationsBannerOutdatedCount": {
|
|
3447
|
+
"source": "@count blocks have <strong>outdated translations</strong>.",
|
|
3448
|
+
"translation": ""
|
|
3449
|
+
},
|
|
3450
|
+
"translationsBannerOutdatedSingular": {
|
|
3451
|
+
"source": "@count block has an <strong>outdated translation</strong>.",
|
|
3452
|
+
"translation": ""
|
|
3453
|
+
},
|
|
3454
|
+
"translationsBannerPrev": {
|
|
3455
|
+
"source": "Previous block",
|
|
3456
|
+
"translation": ""
|
|
3457
|
+
},
|
|
3302
3458
|
"translationsBannerText": {
|
|
3303
|
-
"source": "You are currently editing the <strong>@language</strong> translation.
|
|
3459
|
+
"source": "You are currently editing the <strong>@language</strong> translation.",
|
|
3304
3460
|
"translation": "Du bearbeitisch grad d'<strong>@language</strong>-Übersetztig. Gwüssi Funktione wie Drzuefüege, Verschiebe oder Lösche vo Blöck sin nid verfüegbar."
|
|
3305
3461
|
},
|
|
3306
3462
|
"translationsBatchTranslateMenuDescription": {
|
|
@@ -3311,10 +3467,74 @@
|
|
|
3311
3467
|
"source": "Translate...",
|
|
3312
3468
|
"translation": "Übersetze..."
|
|
3313
3469
|
},
|
|
3470
|
+
"translationsCsvApply": {
|
|
3471
|
+
"source": "Import @count translations",
|
|
3472
|
+
"translation": ""
|
|
3473
|
+
},
|
|
3474
|
+
"translationsCsvChangesLabel": {
|
|
3475
|
+
"source": "fields will be updated",
|
|
3476
|
+
"translation": ""
|
|
3477
|
+
},
|
|
3478
|
+
"translationsCsvDialogTitle": {
|
|
3479
|
+
"source": "Import/Export Translations",
|
|
3480
|
+
"translation": ""
|
|
3481
|
+
},
|
|
3482
|
+
"translationsCsvDiff": {
|
|
3483
|
+
"source": "Changes",
|
|
3484
|
+
"translation": ""
|
|
3485
|
+
},
|
|
3486
|
+
"translationsCsvExport": {
|
|
3487
|
+
"source": "Export",
|
|
3488
|
+
"translation": ""
|
|
3489
|
+
},
|
|
3490
|
+
"translationsCsvImport": {
|
|
3491
|
+
"source": "Import",
|
|
3492
|
+
"translation": ""
|
|
3493
|
+
},
|
|
3494
|
+
"translationsCsvLanguages": {
|
|
3495
|
+
"source": "Languages",
|
|
3496
|
+
"translation": ""
|
|
3497
|
+
},
|
|
3498
|
+
"translationsCsvMenuTitle": {
|
|
3499
|
+
"source": "Import/export...",
|
|
3500
|
+
"translation": ""
|
|
3501
|
+
},
|
|
3502
|
+
"translationsCsvNoChanges": {
|
|
3503
|
+
"source": "No changes found",
|
|
3504
|
+
"translation": ""
|
|
3505
|
+
},
|
|
3506
|
+
"translationsCsvOnlyMissing": {
|
|
3507
|
+
"source": "Only missing translations",
|
|
3508
|
+
"translation": ""
|
|
3509
|
+
},
|
|
3510
|
+
"translationsCsvOnlyOutdated": {
|
|
3511
|
+
"source": "Only outdated translations",
|
|
3512
|
+
"translation": ""
|
|
3513
|
+
},
|
|
3514
|
+
"translationsCsvTooltip": {
|
|
3515
|
+
"source": "Import or export translations as CSV or PO files",
|
|
3516
|
+
"translation": ""
|
|
3517
|
+
},
|
|
3518
|
+
"translationsDropToImport": {
|
|
3519
|
+
"source": "Drop CSV or PO file to import",
|
|
3520
|
+
"translation": ""
|
|
3521
|
+
},
|
|
3314
3522
|
"translationsItemAction": {
|
|
3315
3523
|
"source": "Translate",
|
|
3316
3524
|
"translation": "Übersetze..."
|
|
3317
3525
|
},
|
|
3526
|
+
"translationsMarkUpToDate": {
|
|
3527
|
+
"source": "Mark translations as up to date",
|
|
3528
|
+
"translation": ""
|
|
3529
|
+
},
|
|
3530
|
+
"translationsMarkUpToDateDisabled": {
|
|
3531
|
+
"source": "No selected blocks have an outdated translation.",
|
|
3532
|
+
"translation": ""
|
|
3533
|
+
},
|
|
3534
|
+
"translationsSelectImportFile": {
|
|
3535
|
+
"source": "Select CSV or PO file",
|
|
3536
|
+
"translation": ""
|
|
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": "Wächsle schnäll zwüsche verfüegbare Übersetzige. E uusgrueti Sproch zeigt aa, dass dr Inhalt no nid übersetzt worde isch. E Klick druf macht s'Formular uf zum e neui Übersetztig für die Sproch z'erstelle."
|
|
@@ -3323,6 +3543,34 @@
|
|
|
3323
3543
|
"source": "Translations",
|
|
3324
3544
|
"translation": "Übersetzige"
|
|
3325
3545
|
},
|
|
3546
|
+
"translationsTranslateApply": {
|
|
3547
|
+
"source": "Apply @count translations",
|
|
3548
|
+
"translation": ""
|
|
3549
|
+
},
|
|
3550
|
+
"translationsTranslateButton": {
|
|
3551
|
+
"source": "Request @count translations",
|
|
3552
|
+
"translation": ""
|
|
3553
|
+
},
|
|
3554
|
+
"translationsTranslateCurrentColumn": {
|
|
3555
|
+
"source": "Current translation (@language)",
|
|
3556
|
+
"translation": ""
|
|
3557
|
+
},
|
|
3558
|
+
"translationsTranslateDialogTitle": {
|
|
3559
|
+
"source": "Automatic Translation",
|
|
3560
|
+
"translation": ""
|
|
3561
|
+
},
|
|
3562
|
+
"translationsTranslateFieldsLabel": {
|
|
3563
|
+
"source": "fields selected",
|
|
3564
|
+
"translation": ""
|
|
3565
|
+
},
|
|
3566
|
+
"translationsTranslateLoading": {
|
|
3567
|
+
"source": "Translating...",
|
|
3568
|
+
"translation": ""
|
|
3569
|
+
},
|
|
3570
|
+
"translationsTranslateNoTexts": {
|
|
3571
|
+
"source": "No translatable texts found on this page.",
|
|
3572
|
+
"translation": ""
|
|
3573
|
+
},
|
|
3326
3574
|
"unexpectedMutationError": {
|
|
3327
3575
|
"source": "An unexpected error happened.",
|
|
3328
3576
|
"translation": "Es isch e unerwartete Fähler ufträte."
|
|
@@ -3354,5 +3602,17 @@
|
|
|
3354
3602
|
"viewBannerViewTitle": {
|
|
3355
3603
|
"source": "You are in view-only mode.",
|
|
3356
3604
|
"translation": "Du bisch im Aaluege-Modus."
|
|
3605
|
+
},
|
|
3606
|
+
"workspaceOpen": {
|
|
3607
|
+
"source": "Switch page",
|
|
3608
|
+
"translation": ""
|
|
3609
|
+
},
|
|
3610
|
+
"workspaceSearchPlaceholder": {
|
|
3611
|
+
"source": "Search pages...",
|
|
3612
|
+
"translation": ""
|
|
3613
|
+
},
|
|
3614
|
+
"workspaceTitle": {
|
|
3615
|
+
"source": "Switch page",
|
|
3616
|
+
"translation": ""
|
|
3357
3617
|
}
|
|
3358
3618
|
}
|