@blokkli/editor 2.0.0-alpha.21 → 2.0.0-alpha.23
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/module.json +1 -1
- package/dist/module.mjs +97 -169
- package/dist/runtime/blokkliPlugins/MenuButton/index.vue +3 -1
- package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue +20 -14
- package/dist/runtime/blokkliPlugins/Sidebar/Detached/index.vue.d.ts +8 -4
- package/dist/runtime/blokkliPlugins/Sidebar/index.vue +55 -25
- package/dist/runtime/blokkliPlugins/Sidebar/index.vue.d.ts +4 -3
- package/dist/runtime/blokkliPlugins/ToolbarButton/index.vue +4 -1
- package/dist/runtime/blokkliPlugins/ViewOption/index.vue +3 -1
- package/dist/runtime/blokkliPlugins/index.d.ts +1 -3
- package/dist/runtime/blokkliPlugins/index.js +0 -4
- package/dist/runtime/components/Blocks/FromLibrary/index.vue +0 -5
- package/dist/runtime/components/BlokkliEditable.vue +6 -1
- package/dist/runtime/components/BlokkliField.vue +1 -1
- package/dist/runtime/components/BlokkliProvider.vue +4 -4
- package/dist/runtime/components/Edit/Actions/ItemDropdown.vue +66 -0
- package/dist/runtime/components/Edit/Actions/ItemDropdown.vue.d.ts +6 -0
- package/dist/runtime/components/Edit/Actions/index.vue +7 -49
- package/dist/runtime/components/Edit/AnimationCanvas/index.vue +23 -68
- package/dist/runtime/components/Edit/BlockProxy/index.vue +2 -8
- package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue +33 -49
- package/dist/runtime/components/Edit/BlokkliErrorBoundary.vue.d.ts +14 -1
- package/dist/runtime/components/Edit/BlokkliRootErrorBoundary.vue +93 -0
- package/dist/runtime/components/Edit/BlokkliRootErrorBoundary.vue.d.ts +12 -0
- package/dist/runtime/components/Edit/DraggableList.vue +5 -25
- package/dist/runtime/components/Edit/EditProvider.vue +24 -11
- package/dist/runtime/components/Edit/Features/{BlockAddList → AddList/Blocks}/index.vue +26 -62
- package/dist/runtime/components/Edit/Features/{Hover/Overlay → AddList/Blocks}/index.vue.d.ts +2 -2
- package/dist/runtime/components/Edit/Features/AddList/index.vue +29 -8
- package/dist/runtime/components/Edit/Features/Analyze/{Renderer.vue → Main.vue} +4 -8
- package/dist/runtime/components/Edit/Features/Analyze/{Overlay → Renderer}/fragment.glsl +10 -6
- package/dist/runtime/components/Edit/Features/Analyze/{Overlay → Renderer}/index.vue +43 -15
- package/dist/runtime/components/Edit/Features/Analyze/{Overlay → Renderer}/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Analyze/{Overlay → Renderer}/vertex.glsl +11 -9
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodesTarget.vue +15 -3
- package/dist/runtime/components/Edit/Features/Analyze/analyzers/helpers/collectTextElements.js +3 -0
- package/dist/runtime/components/Edit/Features/Analyze/index.vue +7 -3
- package/dist/runtime/components/Edit/Features/Anchors/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/Clipboard/List/index.vue +21 -10
- package/dist/runtime/components/Edit/Features/Clipboard/index.vue +18 -11
- package/dist/runtime/components/Edit/Features/Conversions/index.vue +16 -9
- package/dist/runtime/components/Edit/Features/Debug/DebugSection.vue +24 -0
- package/dist/runtime/components/Edit/Features/Debug/DebugSection.vue.d.ts +16 -0
- package/dist/runtime/components/Edit/Features/Debug/Main.vue +80 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Features.vue +34 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Icons.vue +15 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Icons.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Keyboard.vue +17 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Keyboard.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Logging.vue +66 -0
- package/dist/runtime/components/Edit/Features/{Selection/OverlayFallback/index.vue.d.ts → Debug/Section/Logging.vue.d.ts} +2 -1
- package/dist/runtime/components/Edit/Features/Debug/Section/Rendering.vue +96 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Rendering.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Selection.vue +25 -0
- package/dist/runtime/components/Edit/Features/Debug/Section/Selection.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/Debug/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue +20 -27
- package/dist/runtime/components/Edit/Features/DraggingOverlay/Renderer/fragment.glsl +80 -0
- package/dist/runtime/components/Edit/Features/DraggingOverlay/{DropTargets → Renderer}/index.vue +100 -87
- package/dist/runtime/components/Edit/Features/DraggingOverlay/{DropTargets → Renderer}/vertex.glsl +51 -8
- package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue +3 -3
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue +0 -6
- package/dist/runtime/components/Edit/Features/EditableField/index.vue +6 -2
- package/dist/runtime/components/Edit/Features/Fragments/Dialog/Item/index.vue +1 -5
- package/dist/runtime/components/Edit/Features/Hover/Renderer/fragment.glsl +141 -0
- package/dist/runtime/components/Edit/Features/Hover/{Overlay → Renderer}/index.vue +225 -38
- package/dist/runtime/components/Edit/Features/Hover/Renderer/index.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/Hover/{Overlay → Renderer}/vertex.glsl +49 -11
- package/dist/runtime/components/Edit/Features/Hover/index.vue +9 -6
- package/dist/runtime/components/Edit/Features/Library/LibraryDialog/Item/index.vue +1 -5
- package/dist/runtime/components/Edit/Features/Library/index.vue +24 -12
- package/dist/runtime/components/Edit/Features/MediaLibrary/Library/Item.vue +1 -1
- package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue +26 -13
- package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue.d.ts +0 -1
- package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue +3 -47
- package/dist/runtime/components/Edit/Features/MultiSelect/{Overlay → Renderer}/fragment.glsl +13 -26
- package/dist/runtime/components/Edit/Features/MultiSelect/{Overlay → Renderer}/index.vue +130 -72
- package/dist/runtime/components/Edit/Features/MultiSelect/{Overlay → Renderer}/index.vue.d.ts +0 -1
- package/dist/runtime/components/Edit/Features/MultiSelect/{Overlay → Renderer}/vertex.glsl +27 -2
- package/dist/runtime/components/Edit/Features/MultiSelect/index.vue +25 -12
- package/dist/runtime/components/Edit/Features/Ownership/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/ResponsivePreview/index.vue +1 -1
- package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Content/index.vue +23 -6
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue.d.ts +2 -2
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/fragment.glsl +19 -17
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/index.vue +242 -131
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/vertex.glsl +29 -12
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/index.vue +12 -4
- package/dist/runtime/components/Edit/Features/Selection/{Overlay → Renderer}/fragment.glsl +23 -14
- package/dist/runtime/components/Edit/Features/Selection/{Overlay → Renderer}/index.vue +121 -28
- package/dist/runtime/components/Edit/Features/Selection/{Overlay → Renderer}/index.vue.d.ts +0 -2
- package/dist/runtime/components/Edit/Features/Selection/{Overlay → Renderer}/vertex.glsl +23 -14
- package/dist/runtime/components/Edit/Features/Selection/index.vue +46 -59
- package/dist/runtime/components/Edit/Features/Transform/Dialog/index.vue +5 -5
- package/dist/runtime/components/Edit/Features/Transform/index.vue +29 -22
- package/dist/runtime/components/Edit/Form/Checkboxes/index.vue +43 -0
- package/dist/runtime/components/Edit/Form/Checkboxes/index.vue.d.ts +20 -0
- package/dist/runtime/components/Edit/Messages/Item/index.vue.d.ts +1 -1
- package/dist/runtime/components/Edit/PreviewProvider.vue +1 -1
- package/dist/runtime/components/Edit/Sortli/index.vue +5 -8
- package/dist/runtime/components/Edit/Sortli/index.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Toolbar/index.vue +1 -4
- package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue +9 -2
- package/dist/runtime/components/Edit/ViewportBlockingRect/index.vue.d.ts +4 -1
- package/dist/runtime/components/Edit/index.d.ts +6 -4
- package/dist/runtime/components/Edit/index.js +11 -7
- package/dist/runtime/css/output.css +1 -1
- package/dist/runtime/helpers/animationProvider.d.ts +58 -9
- package/dist/runtime/helpers/animationProvider.js +318 -75
- package/dist/runtime/helpers/composables/defineItemDropdownAction.d.ts +2 -0
- package/dist/runtime/helpers/composables/defineItemDropdownAction.js +10 -0
- package/dist/runtime/helpers/composables/defineRenderer.d.ts +5 -2
- package/dist/runtime/helpers/composables/defineRenderer.js +3 -2
- package/dist/runtime/helpers/composables/useGlobalBlokkliObject.d.ts +16 -0
- package/dist/runtime/helpers/composables/useGlobalBlokkliObject.js +36 -0
- package/dist/runtime/helpers/debugProvider.d.ts +13 -3
- package/dist/runtime/helpers/debugProvider.js +80 -12
- package/dist/runtime/helpers/domProvider.js +46 -32
- package/dist/runtime/helpers/dropTargets/index.js +1 -1
- package/dist/runtime/helpers/eventBus.d.ts +1 -1
- package/dist/runtime/helpers/index.d.ts +1 -6
- package/dist/runtime/helpers/index.js +0 -81
- package/dist/runtime/helpers/pluginProvider.d.ts +16 -0
- package/dist/runtime/helpers/pluginProvider.js +30 -1
- package/dist/runtime/helpers/providers/directive.d.ts +4 -1
- package/dist/runtime/helpers/providers/directive.js +9 -2
- package/dist/runtime/helpers/stateProvider.js +1 -0
- package/dist/runtime/helpers/uiProvider.d.ts +5 -1
- package/dist/runtime/helpers/uiProvider.js +41 -7
- package/dist/runtime/helpers/webgl/index.d.ts +2 -3
- package/dist/runtime/helpers/webgl/index.js +9 -14
- package/dist/runtime/icons/dock-left.svg +1 -0
- package/dist/runtime/icons/dock-right.svg +1 -0
- package/dist/runtime/icons/dock-window.svg +1 -0
- package/dist/runtime/plugins/blokkliDirectives.js +1 -1
- package/dist/runtime/types/index.d.ts +4 -21
- package/package.json +1 -1
- package/dist/runtime/blokkliPlugins/DroppableEdit/index.vue +0 -56
- package/dist/runtime/blokkliPlugins/DroppableEdit/index.vue.d.ts +0 -24
- package/dist/runtime/blokkliPlugins/ItemDropdown/index.vue +0 -76
- package/dist/runtime/blokkliPlugins/ItemDropdown/index.vue.d.ts +0 -31
- package/dist/runtime/components/Edit/Features/BlockAddList/docs.md +0 -15
- package/dist/runtime/components/Edit/Features/Debug/Renderer.vue +0 -240
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/fragment.glsl +0 -96
- package/dist/runtime/components/Edit/Features/Hover/Overlay/fragment.glsl +0 -139
- package/dist/runtime/components/Edit/Features/Selection/OverlayFallback/index.vue +0 -42
- /package/dist/runtime/components/Edit/Features/Analyze/{Renderer.vue.d.ts → Main.vue.d.ts} +0 -0
- /package/dist/runtime/components/Edit/Features/Anchors/{Renderer.vue → Overlay/index.vue} +0 -0
- /package/dist/runtime/components/Edit/Features/{BlockAddList → Anchors/Overlay}/index.vue.d.ts +0 -0
- /package/dist/runtime/components/Edit/Features/Debug/{Renderer.vue.d.ts → Main.vue.d.ts} +0 -0
- /package/dist/runtime/components/Edit/Features/{Anchors/Renderer.vue.d.ts → Debug/Section/Features.vue.d.ts} +0 -0
- /package/dist/runtime/components/Edit/Features/DraggingOverlay/{DropTargets → Renderer}/index.vue.d.ts +0 -0
- /package/dist/runtime/components/Edit/Features/Ownership/{Renderer.vue → Banner/index.vue} +0 -0
- /package/dist/runtime/components/Edit/Features/Ownership/{Renderer.vue.d.ts → Banner/index.vue.d.ts} +0 -0
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -15,7 +15,7 @@ import fs from 'node:fs';
|
|
|
15
15
|
import { defu, createDefu } from 'defu';
|
|
16
16
|
|
|
17
17
|
const name = "@blokkli/editor";
|
|
18
|
-
const version = "2.0.0-alpha.
|
|
18
|
+
const version = "2.0.0-alpha.23";
|
|
19
19
|
|
|
20
20
|
function sortObjectKeys(obj) {
|
|
21
21
|
if (Array.isArray(obj)) {
|
|
@@ -1055,10 +1055,6 @@ const addCommentToItem$3 = {
|
|
|
1055
1055
|
source: "Add Comment...",
|
|
1056
1056
|
translation: "Kommentar hinzufügen..."
|
|
1057
1057
|
};
|
|
1058
|
-
const addListInputPlaceholder$3 = {
|
|
1059
|
-
source: "Search available blocks",
|
|
1060
|
-
translation: "Blöcke durchsuchen"
|
|
1061
|
-
};
|
|
1062
1058
|
const addListItemFavoriteAdd$3 = {
|
|
1063
1059
|
source: "Add to favorites",
|
|
1064
1060
|
translation: "Zu Favoriten hinzufügen"
|
|
@@ -1423,10 +1419,6 @@ const conversionsConvertTo$3 = {
|
|
|
1423
1419
|
source: "Convert to: @bundle",
|
|
1424
1420
|
translation: "Konvertieren zu: @bundle"
|
|
1425
1421
|
};
|
|
1426
|
-
const convertTo$3 = {
|
|
1427
|
-
source: "Convert to...",
|
|
1428
|
-
translation: "Konvertieren..."
|
|
1429
|
-
};
|
|
1430
1422
|
const copiedToClipboardMessage$3 = {
|
|
1431
1423
|
source: "\"@text\" has been copied to your clipboard",
|
|
1432
1424
|
translation: "«@text» wurde in die Zwischenablage kopiert"
|
|
@@ -1491,9 +1483,9 @@ const diffStatusUnchanged$3 = {
|
|
|
1491
1483
|
source: "Unchanged",
|
|
1492
1484
|
translation: "Keine Änderung"
|
|
1493
1485
|
};
|
|
1494
|
-
const
|
|
1495
|
-
source: "
|
|
1496
|
-
translation: "
|
|
1486
|
+
const downloadLogsButton$3 = {
|
|
1487
|
+
source: "Download Logs",
|
|
1488
|
+
translation: "Fehlerprotokoll herunterladen"
|
|
1497
1489
|
};
|
|
1498
1490
|
const duplicate$3 = {
|
|
1499
1491
|
source: "Duplicate",
|
|
@@ -1555,6 +1547,14 @@ const entityTitleTourTitle$3 = {
|
|
|
1555
1547
|
source: "Page",
|
|
1556
1548
|
translation: "Seite"
|
|
1557
1549
|
};
|
|
1550
|
+
const errorCapturedMessage$3 = {
|
|
1551
|
+
source: "Error in \"@label\": @errorMessage",
|
|
1552
|
+
translation: ""
|
|
1553
|
+
};
|
|
1554
|
+
const errorCapturedMessageDisabled$3 = {
|
|
1555
|
+
source: "\"@label\" has errored more than 3 times. The feature will be disabled.",
|
|
1556
|
+
translation: ""
|
|
1557
|
+
};
|
|
1558
1558
|
const exitDescription$3 = {
|
|
1559
1559
|
source: "Close editor without publishing",
|
|
1560
1560
|
translation: "Editor schliessen ohne veröffentlichen"
|
|
@@ -2551,10 +2551,6 @@ const selectedIsNew$3 = {
|
|
|
2551
2551
|
source: "New",
|
|
2552
2552
|
translation: "Neu"
|
|
2553
2553
|
};
|
|
2554
|
-
const selectionActionGroupTitle$3 = {
|
|
2555
|
-
source: "Selection",
|
|
2556
|
-
translation: "Auswahl"
|
|
2557
|
-
};
|
|
2558
2554
|
const settingsAdvanced$3 = {
|
|
2559
2555
|
source: "Advanced",
|
|
2560
2556
|
translation: "Erweitert"
|
|
@@ -2680,16 +2676,12 @@ const tourStartButton$3 = {
|
|
|
2680
2676
|
translation: "Tour starten"
|
|
2681
2677
|
};
|
|
2682
2678
|
const transformDialogButtonApply$3 = {
|
|
2683
|
-
source: "Apply",
|
|
2684
|
-
translation: "
|
|
2679
|
+
source: "Apply changes",
|
|
2680
|
+
translation: "Änderungen annehmen"
|
|
2685
2681
|
};
|
|
2686
2682
|
const transformDialogButtonPreview$3 = {
|
|
2687
|
-
source: "
|
|
2688
|
-
translation: "
|
|
2689
|
-
};
|
|
2690
|
-
const transformTo$3 = {
|
|
2691
|
-
source: "Actions",
|
|
2692
|
-
translation: "Weitere Aktionen"
|
|
2683
|
+
source: "New suggestion",
|
|
2684
|
+
translation: "Neuer Vorschlag"
|
|
2693
2685
|
};
|
|
2694
2686
|
const translationsBannerButton$3 = {
|
|
2695
2687
|
source: "Edit source language instead",
|
|
@@ -2773,7 +2765,6 @@ const de = {
|
|
|
2773
2765
|
addButtonInsideField: addButtonInsideField$3,
|
|
2774
2766
|
addCommentHeader: addCommentHeader$3,
|
|
2775
2767
|
addCommentToItem: addCommentToItem$3,
|
|
2776
|
-
addListInputPlaceholder: addListInputPlaceholder$3,
|
|
2777
2768
|
addListItemFavoriteAdd: addListItemFavoriteAdd$3,
|
|
2778
2769
|
addListItemFavoriteRemove: addListItemFavoriteRemove$3,
|
|
2779
2770
|
addListSidebarTitle: addListSidebarTitle$3,
|
|
@@ -2889,7 +2880,6 @@ const de = {
|
|
|
2889
2880
|
commentsMarkAsResolved: commentsMarkAsResolved$3,
|
|
2890
2881
|
commentsTourText: commentsTourText$3,
|
|
2891
2882
|
conversionsConvertTo: conversionsConvertTo$3,
|
|
2892
|
-
convertTo: convertTo$3,
|
|
2893
2883
|
copiedToClipboardMessage: copiedToClipboardMessage$3,
|
|
2894
2884
|
copy: copy$3,
|
|
2895
2885
|
deleteButton: deleteButton$3,
|
|
@@ -2906,7 +2896,7 @@ const de = {
|
|
|
2906
2896
|
diffStatusDeleted: diffStatusDeleted$3,
|
|
2907
2897
|
diffStatusEdited: diffStatusEdited$3,
|
|
2908
2898
|
diffStatusUnchanged: diffStatusUnchanged$3,
|
|
2909
|
-
|
|
2899
|
+
downloadLogsButton: downloadLogsButton$3,
|
|
2910
2900
|
duplicate: duplicate$3,
|
|
2911
2901
|
duplicateError: duplicateError$3,
|
|
2912
2902
|
edit: edit$3,
|
|
@@ -2922,6 +2912,8 @@ const de = {
|
|
|
2922
2912
|
editableFieldDiscard: editableFieldDiscard$3,
|
|
2923
2913
|
entityTitleTourText: entityTitleTourText$3,
|
|
2924
2914
|
entityTitleTourTitle: entityTitleTourTitle$3,
|
|
2915
|
+
errorCapturedMessage: errorCapturedMessage$3,
|
|
2916
|
+
errorCapturedMessageDisabled: errorCapturedMessageDisabled$3,
|
|
2925
2917
|
exitDescription: exitDescription$3,
|
|
2926
2918
|
exitTitle: exitTitle$3,
|
|
2927
2919
|
failedToConvert: failedToConvert$3,
|
|
@@ -2938,6 +2930,14 @@ const de = {
|
|
|
2938
2930
|
"feature_add-list_label": {
|
|
2939
2931
|
source: "Add List",
|
|
2940
2932
|
translation: "Hinzufügen-Liste"
|
|
2933
|
+
},
|
|
2934
|
+
"feature_add-list_setting_hideDisabledBlocks_description": {
|
|
2935
|
+
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
2936
|
+
translation: ""
|
|
2937
|
+
},
|
|
2938
|
+
"feature_add-list_setting_hideDisabledBlocks_label": {
|
|
2939
|
+
source: "Hide blocks that can't be added",
|
|
2940
|
+
translation: ""
|
|
2941
2941
|
},
|
|
2942
2942
|
"feature_add-list_setting_orientation_label": {
|
|
2943
2943
|
source: "Add List",
|
|
@@ -2968,22 +2968,6 @@ const de = {
|
|
|
2968
2968
|
feature_artboard_setting_scrollSpeed_label: feature_artboard_setting_scrollSpeed_label$3,
|
|
2969
2969
|
feature_assistant_description: feature_assistant_description$3,
|
|
2970
2970
|
feature_assistant_label: feature_assistant_label$3,
|
|
2971
|
-
"feature_block-add-list_description": {
|
|
2972
|
-
source: "Renders a list of block bundles that can be added to the current page.",
|
|
2973
|
-
translation: "Zeigt eine Liste von Block-Typen an, die zur aktuellen Seite hinzugefügt werden können."
|
|
2974
|
-
},
|
|
2975
|
-
"feature_block-add-list_label": {
|
|
2976
|
-
source: "Block Add List",
|
|
2977
|
-
translation: "Block-Hinzufügen-Liste"
|
|
2978
|
-
},
|
|
2979
|
-
"feature_block-add-list_setting_hideDisabledBlocks_description": {
|
|
2980
|
-
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
2981
|
-
translation: "Versteckt Blöcke aus der «Hinzufügen-Liste» die nicht hinzugefügt werden können."
|
|
2982
|
-
},
|
|
2983
|
-
"feature_block-add-list_setting_hideDisabledBlocks_label": {
|
|
2984
|
-
source: "Hide blocks that can't be added",
|
|
2985
|
-
translation: "Blöcke ausblenden, die nicht hinzugefügt werden können"
|
|
2986
|
-
},
|
|
2987
2971
|
"feature_block-scheduler_description": {
|
|
2988
2972
|
source: "Adds support for scheduling blocks.",
|
|
2989
2973
|
translation: ""
|
|
@@ -3335,7 +3319,6 @@ const de = {
|
|
|
3335
3319
|
selectAllBlocks: selectAllBlocks$3,
|
|
3336
3320
|
selectAllOfBundle: selectAllOfBundle$3,
|
|
3337
3321
|
selectedIsNew: selectedIsNew$3,
|
|
3338
|
-
selectionActionGroupTitle: selectionActionGroupTitle$3,
|
|
3339
3322
|
settingsAdvanced: settingsAdvanced$3,
|
|
3340
3323
|
settingsAppearance: settingsAppearance$3,
|
|
3341
3324
|
settingsArtboard: settingsArtboard$3,
|
|
@@ -3377,7 +3360,6 @@ const de = {
|
|
|
3377
3360
|
tourStartButton: tourStartButton$3,
|
|
3378
3361
|
transformDialogButtonApply: transformDialogButtonApply$3,
|
|
3379
3362
|
transformDialogButtonPreview: transformDialogButtonPreview$3,
|
|
3380
|
-
transformTo: transformTo$3,
|
|
3381
3363
|
translationsBannerButton: translationsBannerButton$3,
|
|
3382
3364
|
translationsBannerText: translationsBannerText$3,
|
|
3383
3365
|
translationsBatchTranslateMenuDescription: translationsBatchTranslateMenuDescription$3,
|
|
@@ -3431,10 +3413,6 @@ const addCommentToItem$2 = {
|
|
|
3431
3413
|
source: "Add Comment...",
|
|
3432
3414
|
translation: "Commenter"
|
|
3433
3415
|
};
|
|
3434
|
-
const addListInputPlaceholder$2 = {
|
|
3435
|
-
source: "Search available blocks",
|
|
3436
|
-
translation: "Rechercher des blocs"
|
|
3437
|
-
};
|
|
3438
3416
|
const addListItemFavoriteAdd$2 = {
|
|
3439
3417
|
source: "Add to favorites",
|
|
3440
3418
|
translation: "Ajouter aux favoris"
|
|
@@ -3799,10 +3777,6 @@ const conversionsConvertTo$2 = {
|
|
|
3799
3777
|
source: "Convert to: @bundle",
|
|
3800
3778
|
translation: ""
|
|
3801
3779
|
};
|
|
3802
|
-
const convertTo$2 = {
|
|
3803
|
-
source: "Convert to...",
|
|
3804
|
-
translation: "Convertir en..."
|
|
3805
|
-
};
|
|
3806
3780
|
const copiedToClipboardMessage$2 = {
|
|
3807
3781
|
source: "\"@text\" has been copied to your clipboard",
|
|
3808
3782
|
translation: ""
|
|
@@ -3867,8 +3841,8 @@ const diffStatusUnchanged$2 = {
|
|
|
3867
3841
|
source: "Unchanged",
|
|
3868
3842
|
translation: ""
|
|
3869
3843
|
};
|
|
3870
|
-
const
|
|
3871
|
-
source: "
|
|
3844
|
+
const downloadLogsButton$2 = {
|
|
3845
|
+
source: "Download Logs",
|
|
3872
3846
|
translation: ""
|
|
3873
3847
|
};
|
|
3874
3848
|
const duplicate$2 = {
|
|
@@ -3931,6 +3905,14 @@ const entityTitleTourTitle$2 = {
|
|
|
3931
3905
|
source: "Page",
|
|
3932
3906
|
translation: ""
|
|
3933
3907
|
};
|
|
3908
|
+
const errorCapturedMessage$2 = {
|
|
3909
|
+
source: "Error in \"@label\": @errorMessage",
|
|
3910
|
+
translation: ""
|
|
3911
|
+
};
|
|
3912
|
+
const errorCapturedMessageDisabled$2 = {
|
|
3913
|
+
source: "\"@label\" has errored more than 3 times. The feature will be disabled.",
|
|
3914
|
+
translation: ""
|
|
3915
|
+
};
|
|
3934
3916
|
const exitDescription$2 = {
|
|
3935
3917
|
source: "Close editor without publishing",
|
|
3936
3918
|
translation: "Fermer l’éditeur sans publier"
|
|
@@ -4927,10 +4909,6 @@ const selectedIsNew$2 = {
|
|
|
4927
4909
|
source: "New",
|
|
4928
4910
|
translation: ""
|
|
4929
4911
|
};
|
|
4930
|
-
const selectionActionGroupTitle$2 = {
|
|
4931
|
-
source: "Selection",
|
|
4932
|
-
translation: ""
|
|
4933
|
-
};
|
|
4934
4912
|
const settingsAdvanced$2 = {
|
|
4935
4913
|
source: "Advanced",
|
|
4936
4914
|
translation: ""
|
|
@@ -5056,17 +5034,13 @@ const tourStartButton$2 = {
|
|
|
5056
5034
|
translation: ""
|
|
5057
5035
|
};
|
|
5058
5036
|
const transformDialogButtonApply$2 = {
|
|
5059
|
-
source: "Apply",
|
|
5037
|
+
source: "Apply changes",
|
|
5060
5038
|
translation: ""
|
|
5061
5039
|
};
|
|
5062
5040
|
const transformDialogButtonPreview$2 = {
|
|
5063
|
-
source: "
|
|
5041
|
+
source: "New suggestion",
|
|
5064
5042
|
translation: ""
|
|
5065
5043
|
};
|
|
5066
|
-
const transformTo$2 = {
|
|
5067
|
-
source: "Actions",
|
|
5068
|
-
translation: "Other actions"
|
|
5069
|
-
};
|
|
5070
5044
|
const translationsBannerButton$2 = {
|
|
5071
5045
|
source: "Edit source language instead",
|
|
5072
5046
|
translation: ""
|
|
@@ -5149,7 +5123,6 @@ const fr = {
|
|
|
5149
5123
|
addButtonInsideField: addButtonInsideField$2,
|
|
5150
5124
|
addCommentHeader: addCommentHeader$2,
|
|
5151
5125
|
addCommentToItem: addCommentToItem$2,
|
|
5152
|
-
addListInputPlaceholder: addListInputPlaceholder$2,
|
|
5153
5126
|
addListItemFavoriteAdd: addListItemFavoriteAdd$2,
|
|
5154
5127
|
addListItemFavoriteRemove: addListItemFavoriteRemove$2,
|
|
5155
5128
|
addListSidebarTitle: addListSidebarTitle$2,
|
|
@@ -5265,7 +5238,6 @@ const fr = {
|
|
|
5265
5238
|
commentsMarkAsResolved: commentsMarkAsResolved$2,
|
|
5266
5239
|
commentsTourText: commentsTourText$2,
|
|
5267
5240
|
conversionsConvertTo: conversionsConvertTo$2,
|
|
5268
|
-
convertTo: convertTo$2,
|
|
5269
5241
|
copiedToClipboardMessage: copiedToClipboardMessage$2,
|
|
5270
5242
|
copy: copy$2,
|
|
5271
5243
|
deleteButton: deleteButton$2,
|
|
@@ -5282,7 +5254,7 @@ const fr = {
|
|
|
5282
5254
|
diffStatusDeleted: diffStatusDeleted$2,
|
|
5283
5255
|
diffStatusEdited: diffStatusEdited$2,
|
|
5284
5256
|
diffStatusUnchanged: diffStatusUnchanged$2,
|
|
5285
|
-
|
|
5257
|
+
downloadLogsButton: downloadLogsButton$2,
|
|
5286
5258
|
duplicate: duplicate$2,
|
|
5287
5259
|
duplicateError: duplicateError$2,
|
|
5288
5260
|
edit: edit$2,
|
|
@@ -5298,6 +5270,8 @@ const fr = {
|
|
|
5298
5270
|
editableFieldDiscard: editableFieldDiscard$2,
|
|
5299
5271
|
entityTitleTourText: entityTitleTourText$2,
|
|
5300
5272
|
entityTitleTourTitle: entityTitleTourTitle$2,
|
|
5273
|
+
errorCapturedMessage: errorCapturedMessage$2,
|
|
5274
|
+
errorCapturedMessageDisabled: errorCapturedMessageDisabled$2,
|
|
5301
5275
|
exitDescription: exitDescription$2,
|
|
5302
5276
|
exitTitle: exitTitle$2,
|
|
5303
5277
|
failedToConvert: failedToConvert$2,
|
|
@@ -5314,6 +5288,14 @@ const fr = {
|
|
|
5314
5288
|
"feature_add-list_label": {
|
|
5315
5289
|
source: "Add List",
|
|
5316
5290
|
translation: "Liste d'ajout"
|
|
5291
|
+
},
|
|
5292
|
+
"feature_add-list_setting_hideDisabledBlocks_description": {
|
|
5293
|
+
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
5294
|
+
translation: ""
|
|
5295
|
+
},
|
|
5296
|
+
"feature_add-list_setting_hideDisabledBlocks_label": {
|
|
5297
|
+
source: "Hide blocks that can't be added",
|
|
5298
|
+
translation: ""
|
|
5317
5299
|
},
|
|
5318
5300
|
"feature_add-list_setting_orientation_label": {
|
|
5319
5301
|
source: "Add List",
|
|
@@ -5344,22 +5326,6 @@ const fr = {
|
|
|
5344
5326
|
feature_artboard_setting_scrollSpeed_label: feature_artboard_setting_scrollSpeed_label$2,
|
|
5345
5327
|
feature_assistant_description: feature_assistant_description$2,
|
|
5346
5328
|
feature_assistant_label: feature_assistant_label$2,
|
|
5347
|
-
"feature_block-add-list_description": {
|
|
5348
|
-
source: "Renders a list of block bundles that can be added to the current page.",
|
|
5349
|
-
translation: "Affiche une liste de types de blocs qui peuvent être ajoutés à la page actuelle."
|
|
5350
|
-
},
|
|
5351
|
-
"feature_block-add-list_label": {
|
|
5352
|
-
source: "Block Add List",
|
|
5353
|
-
translation: "Liste d'ajout de blocs"
|
|
5354
|
-
},
|
|
5355
|
-
"feature_block-add-list_setting_hideDisabledBlocks_description": {
|
|
5356
|
-
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
5357
|
-
translation: "Masque les blocs de la «Liste d'ajout» s'ils ne peuvent être ajoutés nulle part."
|
|
5358
|
-
},
|
|
5359
|
-
"feature_block-add-list_setting_hideDisabledBlocks_label": {
|
|
5360
|
-
source: "Hide blocks that can't be added",
|
|
5361
|
-
translation: "Masquer les blocs qui ne peuvent pas être ajoutés"
|
|
5362
|
-
},
|
|
5363
5329
|
"feature_block-scheduler_description": {
|
|
5364
5330
|
source: "Adds support for scheduling blocks.",
|
|
5365
5331
|
translation: ""
|
|
@@ -5711,7 +5677,6 @@ const fr = {
|
|
|
5711
5677
|
selectAllBlocks: selectAllBlocks$2,
|
|
5712
5678
|
selectAllOfBundle: selectAllOfBundle$2,
|
|
5713
5679
|
selectedIsNew: selectedIsNew$2,
|
|
5714
|
-
selectionActionGroupTitle: selectionActionGroupTitle$2,
|
|
5715
5680
|
settingsAdvanced: settingsAdvanced$2,
|
|
5716
5681
|
settingsAppearance: settingsAppearance$2,
|
|
5717
5682
|
settingsArtboard: settingsArtboard$2,
|
|
@@ -5753,7 +5718,6 @@ const fr = {
|
|
|
5753
5718
|
tourStartButton: tourStartButton$2,
|
|
5754
5719
|
transformDialogButtonApply: transformDialogButtonApply$2,
|
|
5755
5720
|
transformDialogButtonPreview: transformDialogButtonPreview$2,
|
|
5756
|
-
transformTo: transformTo$2,
|
|
5757
5721
|
translationsBannerButton: translationsBannerButton$2,
|
|
5758
5722
|
translationsBannerText: translationsBannerText$2,
|
|
5759
5723
|
translationsBatchTranslateMenuDescription: translationsBatchTranslateMenuDescription$2,
|
|
@@ -5807,10 +5771,6 @@ const addCommentToItem$1 = {
|
|
|
5807
5771
|
source: "Add Comment...",
|
|
5808
5772
|
translation: "Commenta"
|
|
5809
5773
|
};
|
|
5810
|
-
const addListInputPlaceholder$1 = {
|
|
5811
|
-
source: "Search available blocks",
|
|
5812
|
-
translation: "Cerca blocchi"
|
|
5813
|
-
};
|
|
5814
5774
|
const addListItemFavoriteAdd$1 = {
|
|
5815
5775
|
source: "Add to favorites",
|
|
5816
5776
|
translation: "Aggiungi ai preferiti"
|
|
@@ -6175,10 +6135,6 @@ const conversionsConvertTo$1 = {
|
|
|
6175
6135
|
source: "Convert to: @bundle",
|
|
6176
6136
|
translation: ""
|
|
6177
6137
|
};
|
|
6178
|
-
const convertTo$1 = {
|
|
6179
|
-
source: "Convert to...",
|
|
6180
|
-
translation: "Converti in..."
|
|
6181
|
-
};
|
|
6182
6138
|
const copiedToClipboardMessage$1 = {
|
|
6183
6139
|
source: "\"@text\" has been copied to your clipboard",
|
|
6184
6140
|
translation: ""
|
|
@@ -6243,8 +6199,8 @@ const diffStatusUnchanged$1 = {
|
|
|
6243
6199
|
source: "Unchanged",
|
|
6244
6200
|
translation: ""
|
|
6245
6201
|
};
|
|
6246
|
-
const
|
|
6247
|
-
source: "
|
|
6202
|
+
const downloadLogsButton$1 = {
|
|
6203
|
+
source: "Download Logs",
|
|
6248
6204
|
translation: ""
|
|
6249
6205
|
};
|
|
6250
6206
|
const duplicate$1 = {
|
|
@@ -6307,6 +6263,14 @@ const entityTitleTourTitle$1 = {
|
|
|
6307
6263
|
source: "Page",
|
|
6308
6264
|
translation: ""
|
|
6309
6265
|
};
|
|
6266
|
+
const errorCapturedMessage$1 = {
|
|
6267
|
+
source: "Error in \"@label\": @errorMessage",
|
|
6268
|
+
translation: ""
|
|
6269
|
+
};
|
|
6270
|
+
const errorCapturedMessageDisabled$1 = {
|
|
6271
|
+
source: "\"@label\" has errored more than 3 times. The feature will be disabled.",
|
|
6272
|
+
translation: ""
|
|
6273
|
+
};
|
|
6310
6274
|
const exitDescription$1 = {
|
|
6311
6275
|
source: "Close editor without publishing",
|
|
6312
6276
|
translation: "Chiudi l'editor senza pubblicare"
|
|
@@ -7303,10 +7267,6 @@ const selectedIsNew$1 = {
|
|
|
7303
7267
|
source: "New",
|
|
7304
7268
|
translation: ""
|
|
7305
7269
|
};
|
|
7306
|
-
const selectionActionGroupTitle$1 = {
|
|
7307
|
-
source: "Selection",
|
|
7308
|
-
translation: ""
|
|
7309
|
-
};
|
|
7310
7270
|
const settingsAdvanced$1 = {
|
|
7311
7271
|
source: "Advanced",
|
|
7312
7272
|
translation: ""
|
|
@@ -7432,17 +7392,13 @@ const tourStartButton$1 = {
|
|
|
7432
7392
|
translation: ""
|
|
7433
7393
|
};
|
|
7434
7394
|
const transformDialogButtonApply$1 = {
|
|
7435
|
-
source: "Apply",
|
|
7395
|
+
source: "Apply changes",
|
|
7436
7396
|
translation: ""
|
|
7437
7397
|
};
|
|
7438
7398
|
const transformDialogButtonPreview$1 = {
|
|
7439
|
-
source: "
|
|
7399
|
+
source: "New suggestion",
|
|
7440
7400
|
translation: ""
|
|
7441
7401
|
};
|
|
7442
|
-
const transformTo$1 = {
|
|
7443
|
-
source: "Actions",
|
|
7444
|
-
translation: "Other actions"
|
|
7445
|
-
};
|
|
7446
7402
|
const translationsBannerButton$1 = {
|
|
7447
7403
|
source: "Edit source language instead",
|
|
7448
7404
|
translation: ""
|
|
@@ -7525,7 +7481,6 @@ const it = {
|
|
|
7525
7481
|
addButtonInsideField: addButtonInsideField$1,
|
|
7526
7482
|
addCommentHeader: addCommentHeader$1,
|
|
7527
7483
|
addCommentToItem: addCommentToItem$1,
|
|
7528
|
-
addListInputPlaceholder: addListInputPlaceholder$1,
|
|
7529
7484
|
addListItemFavoriteAdd: addListItemFavoriteAdd$1,
|
|
7530
7485
|
addListItemFavoriteRemove: addListItemFavoriteRemove$1,
|
|
7531
7486
|
addListSidebarTitle: addListSidebarTitle$1,
|
|
@@ -7641,7 +7596,6 @@ const it = {
|
|
|
7641
7596
|
commentsMarkAsResolved: commentsMarkAsResolved$1,
|
|
7642
7597
|
commentsTourText: commentsTourText$1,
|
|
7643
7598
|
conversionsConvertTo: conversionsConvertTo$1,
|
|
7644
|
-
convertTo: convertTo$1,
|
|
7645
7599
|
copiedToClipboardMessage: copiedToClipboardMessage$1,
|
|
7646
7600
|
copy: copy$1,
|
|
7647
7601
|
deleteButton: deleteButton$1,
|
|
@@ -7658,7 +7612,7 @@ const it = {
|
|
|
7658
7612
|
diffStatusDeleted: diffStatusDeleted$1,
|
|
7659
7613
|
diffStatusEdited: diffStatusEdited$1,
|
|
7660
7614
|
diffStatusUnchanged: diffStatusUnchanged$1,
|
|
7661
|
-
|
|
7615
|
+
downloadLogsButton: downloadLogsButton$1,
|
|
7662
7616
|
duplicate: duplicate$1,
|
|
7663
7617
|
duplicateError: duplicateError$1,
|
|
7664
7618
|
edit: edit$1,
|
|
@@ -7674,6 +7628,8 @@ const it = {
|
|
|
7674
7628
|
editableFieldDiscard: editableFieldDiscard$1,
|
|
7675
7629
|
entityTitleTourText: entityTitleTourText$1,
|
|
7676
7630
|
entityTitleTourTitle: entityTitleTourTitle$1,
|
|
7631
|
+
errorCapturedMessage: errorCapturedMessage$1,
|
|
7632
|
+
errorCapturedMessageDisabled: errorCapturedMessageDisabled$1,
|
|
7677
7633
|
exitDescription: exitDescription$1,
|
|
7678
7634
|
exitTitle: exitTitle$1,
|
|
7679
7635
|
failedToConvert: failedToConvert$1,
|
|
@@ -7690,6 +7646,14 @@ const it = {
|
|
|
7690
7646
|
"feature_add-list_label": {
|
|
7691
7647
|
source: "Add List",
|
|
7692
7648
|
translation: "Elenco di aggiunta"
|
|
7649
|
+
},
|
|
7650
|
+
"feature_add-list_setting_hideDisabledBlocks_description": {
|
|
7651
|
+
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
7652
|
+
translation: ""
|
|
7653
|
+
},
|
|
7654
|
+
"feature_add-list_setting_hideDisabledBlocks_label": {
|
|
7655
|
+
source: "Hide blocks that can't be added",
|
|
7656
|
+
translation: ""
|
|
7693
7657
|
},
|
|
7694
7658
|
"feature_add-list_setting_orientation_label": {
|
|
7695
7659
|
source: "Add List",
|
|
@@ -7720,22 +7684,6 @@ const it = {
|
|
|
7720
7684
|
feature_artboard_setting_scrollSpeed_label: feature_artboard_setting_scrollSpeed_label$1,
|
|
7721
7685
|
feature_assistant_description: feature_assistant_description$1,
|
|
7722
7686
|
feature_assistant_label: feature_assistant_label$1,
|
|
7723
|
-
"feature_block-add-list_description": {
|
|
7724
|
-
source: "Renders a list of block bundles that can be added to the current page.",
|
|
7725
|
-
translation: "Visualizza un elenco di tipi di blocco che possono essere aggiunti alla pagina corrente."
|
|
7726
|
-
},
|
|
7727
|
-
"feature_block-add-list_label": {
|
|
7728
|
-
source: "Block Add List",
|
|
7729
|
-
translation: "Elenco di aggiunta blocchi"
|
|
7730
|
-
},
|
|
7731
|
-
"feature_block-add-list_setting_hideDisabledBlocks_description": {
|
|
7732
|
-
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
7733
|
-
translation: "Nasconde i blocchi dall'«Elenco di aggiunta» se non possono essere aggiunti da nessuna parte."
|
|
7734
|
-
},
|
|
7735
|
-
"feature_block-add-list_setting_hideDisabledBlocks_label": {
|
|
7736
|
-
source: "Hide blocks that can't be added",
|
|
7737
|
-
translation: "Nascondi blocchi che non possono essere aggiunti"
|
|
7738
|
-
},
|
|
7739
7687
|
"feature_block-scheduler_description": {
|
|
7740
7688
|
source: "Adds support for scheduling blocks.",
|
|
7741
7689
|
translation: ""
|
|
@@ -8087,7 +8035,6 @@ const it = {
|
|
|
8087
8035
|
selectAllBlocks: selectAllBlocks$1,
|
|
8088
8036
|
selectAllOfBundle: selectAllOfBundle$1,
|
|
8089
8037
|
selectedIsNew: selectedIsNew$1,
|
|
8090
|
-
selectionActionGroupTitle: selectionActionGroupTitle$1,
|
|
8091
8038
|
settingsAdvanced: settingsAdvanced$1,
|
|
8092
8039
|
settingsAppearance: settingsAppearance$1,
|
|
8093
8040
|
settingsArtboard: settingsArtboard$1,
|
|
@@ -8129,7 +8076,6 @@ const it = {
|
|
|
8129
8076
|
tourStartButton: tourStartButton$1,
|
|
8130
8077
|
transformDialogButtonApply: transformDialogButtonApply$1,
|
|
8131
8078
|
transformDialogButtonPreview: transformDialogButtonPreview$1,
|
|
8132
|
-
transformTo: transformTo$1,
|
|
8133
8079
|
translationsBannerButton: translationsBannerButton$1,
|
|
8134
8080
|
translationsBannerText: translationsBannerText$1,
|
|
8135
8081
|
translationsBatchTranslateMenuDescription: translationsBatchTranslateMenuDescription$1,
|
|
@@ -8183,10 +8129,6 @@ const addCommentToItem = {
|
|
|
8183
8129
|
source: "Add Comment...",
|
|
8184
8130
|
translation: "Kommentiere"
|
|
8185
8131
|
};
|
|
8186
|
-
const addListInputPlaceholder = {
|
|
8187
|
-
source: "Search available blocks",
|
|
8188
|
-
translation: "Blöck durchsueche"
|
|
8189
|
-
};
|
|
8190
8132
|
const addListItemFavoriteAdd = {
|
|
8191
8133
|
source: "Add to favorites",
|
|
8192
8134
|
translation: "Zu de Favorite drzuefüege"
|
|
@@ -8551,10 +8493,6 @@ const conversionsConvertTo = {
|
|
|
8551
8493
|
source: "Convert to: @bundle",
|
|
8552
8494
|
translation: "Konvertiere zu: @bundle"
|
|
8553
8495
|
};
|
|
8554
|
-
const convertTo = {
|
|
8555
|
-
source: "Convert to...",
|
|
8556
|
-
translation: "Konvertiere"
|
|
8557
|
-
};
|
|
8558
8496
|
const copiedToClipboardMessage = {
|
|
8559
8497
|
source: "\"@text\" has been copied to your clipboard",
|
|
8560
8498
|
translation: "«@text» isch in dini Zwüscheablag kopiert worde"
|
|
@@ -8619,9 +8557,9 @@ const diffStatusUnchanged = {
|
|
|
8619
8557
|
source: "Unchanged",
|
|
8620
8558
|
translation: "Unveränderet"
|
|
8621
8559
|
};
|
|
8622
|
-
const
|
|
8623
|
-
source: "
|
|
8624
|
-
translation: "
|
|
8560
|
+
const downloadLogsButton = {
|
|
8561
|
+
source: "Download Logs",
|
|
8562
|
+
translation: ""
|
|
8625
8563
|
};
|
|
8626
8564
|
const duplicate = {
|
|
8627
8565
|
source: "Duplicate",
|
|
@@ -8683,6 +8621,14 @@ const entityTitleTourTitle = {
|
|
|
8683
8621
|
source: "Page",
|
|
8684
8622
|
translation: "Sitte"
|
|
8685
8623
|
};
|
|
8624
|
+
const errorCapturedMessage = {
|
|
8625
|
+
source: "Error in \"@label\": @errorMessage",
|
|
8626
|
+
translation: ""
|
|
8627
|
+
};
|
|
8628
|
+
const errorCapturedMessageDisabled = {
|
|
8629
|
+
source: "\"@label\" has errored more than 3 times. The feature will be disabled.",
|
|
8630
|
+
translation: ""
|
|
8631
|
+
};
|
|
8686
8632
|
const exitDescription = {
|
|
8687
8633
|
source: "Close editor without publishing",
|
|
8688
8634
|
translation: "Dr Editor zuemache ohni z'veröffentliche"
|
|
@@ -9679,10 +9625,6 @@ const selectedIsNew = {
|
|
|
9679
9625
|
source: "New",
|
|
9680
9626
|
translation: ""
|
|
9681
9627
|
};
|
|
9682
|
-
const selectionActionGroupTitle = {
|
|
9683
|
-
source: "Selection",
|
|
9684
|
-
translation: "Uswahl"
|
|
9685
|
-
};
|
|
9686
9628
|
const settingsAdvanced = {
|
|
9687
9629
|
source: "Advanced",
|
|
9688
9630
|
translation: "Erwitteret"
|
|
@@ -9808,17 +9750,13 @@ const tourStartButton = {
|
|
|
9808
9750
|
translation: "Tour starte"
|
|
9809
9751
|
};
|
|
9810
9752
|
const transformDialogButtonApply = {
|
|
9811
|
-
source: "Apply",
|
|
9753
|
+
source: "Apply changes",
|
|
9812
9754
|
translation: "Aawände"
|
|
9813
9755
|
};
|
|
9814
9756
|
const transformDialogButtonPreview = {
|
|
9815
|
-
source: "
|
|
9757
|
+
source: "New suggestion",
|
|
9816
9758
|
translation: "Vorschau"
|
|
9817
9759
|
};
|
|
9818
|
-
const transformTo = {
|
|
9819
|
-
source: "Actions",
|
|
9820
|
-
translation: "Anderi Aktione"
|
|
9821
|
-
};
|
|
9822
9760
|
const translationsBannerButton = {
|
|
9823
9761
|
source: "Edit source language instead",
|
|
9824
9762
|
translation: "Stattdässe Quellsproch bearbeite"
|
|
@@ -9901,7 +9839,6 @@ const gsw_CH = {
|
|
|
9901
9839
|
addButtonInsideField: addButtonInsideField,
|
|
9902
9840
|
addCommentHeader: addCommentHeader,
|
|
9903
9841
|
addCommentToItem: addCommentToItem,
|
|
9904
|
-
addListInputPlaceholder: addListInputPlaceholder,
|
|
9905
9842
|
addListItemFavoriteAdd: addListItemFavoriteAdd,
|
|
9906
9843
|
addListItemFavoriteRemove: addListItemFavoriteRemove,
|
|
9907
9844
|
addListSidebarTitle: addListSidebarTitle,
|
|
@@ -10017,7 +9954,6 @@ const gsw_CH = {
|
|
|
10017
9954
|
commentsMarkAsResolved: commentsMarkAsResolved,
|
|
10018
9955
|
commentsTourText: commentsTourText,
|
|
10019
9956
|
conversionsConvertTo: conversionsConvertTo,
|
|
10020
|
-
convertTo: convertTo,
|
|
10021
9957
|
copiedToClipboardMessage: copiedToClipboardMessage,
|
|
10022
9958
|
copy: copy,
|
|
10023
9959
|
deleteButton: deleteButton,
|
|
@@ -10034,7 +9970,7 @@ const gsw_CH = {
|
|
|
10034
9970
|
diffStatusDeleted: diffStatusDeleted,
|
|
10035
9971
|
diffStatusEdited: diffStatusEdited,
|
|
10036
9972
|
diffStatusUnchanged: diffStatusUnchanged,
|
|
10037
|
-
|
|
9973
|
+
downloadLogsButton: downloadLogsButton,
|
|
10038
9974
|
duplicate: duplicate,
|
|
10039
9975
|
duplicateError: duplicateError,
|
|
10040
9976
|
edit: edit,
|
|
@@ -10050,6 +9986,8 @@ const gsw_CH = {
|
|
|
10050
9986
|
editableFieldDiscard: editableFieldDiscard,
|
|
10051
9987
|
entityTitleTourText: entityTitleTourText,
|
|
10052
9988
|
entityTitleTourTitle: entityTitleTourTitle,
|
|
9989
|
+
errorCapturedMessage: errorCapturedMessage,
|
|
9990
|
+
errorCapturedMessageDisabled: errorCapturedMessageDisabled,
|
|
10053
9991
|
exitDescription: exitDescription,
|
|
10054
9992
|
exitTitle: exitTitle,
|
|
10055
9993
|
failedToConvert: failedToConvert,
|
|
@@ -10066,6 +10004,14 @@ const gsw_CH = {
|
|
|
10066
10004
|
"feature_add-list_label": {
|
|
10067
10005
|
source: "Add List",
|
|
10068
10006
|
translation: "Drzuefüeg-Lischt"
|
|
10007
|
+
},
|
|
10008
|
+
"feature_add-list_setting_hideDisabledBlocks_description": {
|
|
10009
|
+
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
10010
|
+
translation: ""
|
|
10011
|
+
},
|
|
10012
|
+
"feature_add-list_setting_hideDisabledBlocks_label": {
|
|
10013
|
+
source: "Hide blocks that can't be added",
|
|
10014
|
+
translation: ""
|
|
10069
10015
|
},
|
|
10070
10016
|
"feature_add-list_setting_orientation_label": {
|
|
10071
10017
|
source: "Add List",
|
|
@@ -10096,22 +10042,6 @@ const gsw_CH = {
|
|
|
10096
10042
|
feature_artboard_setting_scrollSpeed_label: feature_artboard_setting_scrollSpeed_label,
|
|
10097
10043
|
feature_assistant_description: feature_assistant_description,
|
|
10098
10044
|
feature_assistant_label: feature_assistant_label,
|
|
10099
|
-
"feature_block-add-list_description": {
|
|
10100
|
-
source: "Renders a list of block bundles that can be added to the current page.",
|
|
10101
|
-
translation: "Renderet e Lischt vo Block-Bundles wo zur aktuälle Sitte chönne drzuegfüegt wärde."
|
|
10102
|
-
},
|
|
10103
|
-
"feature_block-add-list_label": {
|
|
10104
|
-
source: "Block Add List",
|
|
10105
|
-
translation: "Block-Drzuefüeg-Lischt"
|
|
10106
|
-
},
|
|
10107
|
-
"feature_block-add-list_setting_hideDisabledBlocks_description": {
|
|
10108
|
-
source: "Hides blocks from the \"Add List\" if they can't be added to anywhere.",
|
|
10109
|
-
translation: "Versteckt Blöck us dr «Drzuefüeg-Lischt» wo nirgends chönne drzuegfüegt wärde."
|
|
10110
|
-
},
|
|
10111
|
-
"feature_block-add-list_setting_hideDisabledBlocks_label": {
|
|
10112
|
-
source: "Hide blocks that can't be added",
|
|
10113
|
-
translation: "Blöck wo nid chönne drzuegfüegt wärde verstecke"
|
|
10114
|
-
},
|
|
10115
10045
|
"feature_block-scheduler_description": {
|
|
10116
10046
|
source: "Adds support for scheduling blocks.",
|
|
10117
10047
|
translation: ""
|
|
@@ -10463,7 +10393,6 @@ const gsw_CH = {
|
|
|
10463
10393
|
selectAllBlocks: selectAllBlocks,
|
|
10464
10394
|
selectAllOfBundle: selectAllOfBundle,
|
|
10465
10395
|
selectedIsNew: selectedIsNew,
|
|
10466
|
-
selectionActionGroupTitle: selectionActionGroupTitle,
|
|
10467
10396
|
settingsAdvanced: settingsAdvanced,
|
|
10468
10397
|
settingsAppearance: settingsAppearance,
|
|
10469
10398
|
settingsArtboard: settingsArtboard,
|
|
@@ -10505,7 +10434,6 @@ const gsw_CH = {
|
|
|
10505
10434
|
tourStartButton: tourStartButton,
|
|
10506
10435
|
transformDialogButtonApply: transformDialogButtonApply,
|
|
10507
10436
|
transformDialogButtonPreview: transformDialogButtonPreview,
|
|
10508
|
-
transformTo: transformTo,
|
|
10509
10437
|
translationsBannerButton: translationsBannerButton,
|
|
10510
10438
|
translationsBannerText: translationsBannerText,
|
|
10511
10439
|
translationsBatchTranslateMenuDescription: translationsBatchTranslateMenuDescription,
|
|
@@ -34,12 +34,14 @@ const props = defineProps({
|
|
|
34
34
|
secondary: { type: Boolean, required: false }
|
|
35
35
|
});
|
|
36
36
|
const emit = defineEmits(["click"]);
|
|
37
|
-
const { ui } = useBlokkli();
|
|
37
|
+
const { ui, debug } = useBlokkli();
|
|
38
|
+
const logger = debug.createLogger("PluginMenuButton");
|
|
38
39
|
const to = computed(
|
|
39
40
|
() => `#bk-menu-${props.secondary ? "secondary" : "primary"}`
|
|
40
41
|
);
|
|
41
42
|
function onClick() {
|
|
42
43
|
ui.menu.close();
|
|
44
|
+
logger.log("Click " + props.id);
|
|
43
45
|
emit("click");
|
|
44
46
|
}
|
|
45
47
|
const commandCallback = () => {
|