@blokkli/editor 2.0.0-alpha.16 → 2.0.0-alpha.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (106) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +265 -83
  3. package/dist/modules/drupal/graphql/base/fragment.blokkliProps.graphql +1 -1
  4. package/dist/modules/drupal/graphql/features/comments.graphql +11 -8
  5. package/dist/modules/drupal/runtime/adapter/index.js +2 -2
  6. package/dist/runtime/blokkliPlugins/ItemAction/index.vue +1 -3
  7. package/dist/runtime/components/Blocks/FromLibrary/index.vue +4 -2
  8. package/dist/runtime/components/BlokkliEditable.vue +22 -4
  9. package/dist/runtime/components/BlokkliProvider.vue +29 -20
  10. package/dist/runtime/components/BlokkliProvider.vue.d.ts +2 -1
  11. package/dist/runtime/components/Edit/Actions/index.vue +9 -4
  12. package/dist/runtime/components/Edit/AnimationCanvas/index.vue +420 -25
  13. package/dist/runtime/components/Edit/ArtboardTooltip/index.vue +80 -0
  14. package/dist/runtime/components/Edit/ArtboardTooltip/index.vue.d.ts +32 -0
  15. package/dist/runtime/components/Edit/Banner/index.vue +51 -0
  16. package/dist/runtime/components/Edit/Banner/index.vue.d.ts +18 -0
  17. package/dist/runtime/components/Edit/EditIndicator.vue +118 -44
  18. package/dist/runtime/components/Edit/EditIndicator.vue.d.ts +3 -0
  19. package/dist/runtime/components/Edit/EditProvider.vue +79 -22
  20. package/dist/runtime/components/Edit/EditProvider.vue.d.ts +2 -0
  21. package/dist/runtime/components/Edit/Features/Analyze/Overlay/index.vue +19 -20
  22. package/dist/runtime/components/Edit/Features/BlockAddList/index.vue +1 -1
  23. package/dist/runtime/components/Edit/Features/CommandPalette/index.vue +2 -0
  24. package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue +35 -20
  25. package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue.d.ts +5 -3
  26. package/dist/runtime/components/Edit/Features/Comments/CommentInput/index.vue +29 -0
  27. package/dist/runtime/components/Edit/Features/Comments/CommentInput/index.vue.d.ts +13 -0
  28. package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue +22 -16
  29. package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue.d.ts +1 -0
  30. package/dist/runtime/components/Edit/Features/Comments/Overlay/index.vue +15 -6
  31. package/dist/runtime/components/Edit/Features/Comments/index.vue +20 -8
  32. package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue +26 -35
  33. package/dist/runtime/components/Edit/Features/Debug/Renderer.vue +240 -0
  34. package/dist/runtime/components/Edit/Features/Debug/Renderer.vue.d.ts +6 -0
  35. package/dist/runtime/components/Edit/Features/Debug/index.vue +4 -165
  36. package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue +1 -1
  37. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/index.vue +41 -37
  38. package/dist/runtime/components/Edit/Features/Edit/index.vue +1 -1
  39. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue +63 -3
  40. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue +13 -9
  41. package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue +17 -76
  42. package/dist/runtime/components/Edit/Features/EditableField/index.vue +1 -1
  43. package/dist/runtime/components/Edit/Features/History/index.vue +5 -2
  44. package/dist/runtime/components/Edit/Features/Hover/Overlay/fragment.glsl +139 -0
  45. package/dist/runtime/components/Edit/Features/Hover/Overlay/index.vue +270 -0
  46. package/dist/runtime/components/Edit/Features/Hover/Overlay/index.vue.d.ts +6 -0
  47. package/dist/runtime/components/Edit/Features/Hover/Overlay/vertex.glsl +117 -0
  48. package/dist/runtime/components/Edit/Features/Hover/index.vue +25 -0
  49. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue +19 -27
  50. package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue +27 -23
  51. package/dist/runtime/components/Edit/Features/Library/index.vue +2 -1
  52. package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/index.vue +34 -27
  53. package/dist/runtime/components/Edit/Features/MultiSelect/index.vue +2 -4
  54. package/dist/runtime/components/Edit/Features/Options/Form/Item.vue +6 -1
  55. package/dist/runtime/components/Edit/Features/Options/Form/index.vue +1 -0
  56. package/dist/runtime/components/Edit/Features/Ownership/Renderer.vue +35 -0
  57. package/dist/runtime/components/Edit/Features/Ownership/Renderer.vue.d.ts +6 -0
  58. package/dist/runtime/components/Edit/Features/Ownership/index.vue +7 -25
  59. package/dist/runtime/components/Edit/Features/ProxyView/index.vue +5 -1
  60. package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue +39 -74
  61. package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue.d.ts +4 -2
  62. package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/fragment.glsl +106 -0
  63. package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/index.vue +417 -0
  64. package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/index.vue.d.ts +32 -0
  65. package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/vertex.glsl +102 -0
  66. package/dist/runtime/components/Edit/Features/Selection/AddButtons/index.vue +33 -106
  67. package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue +88 -29
  68. package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue.d.ts +2 -0
  69. package/dist/runtime/components/Edit/Features/Selection/Overlay/vertex.glsl +11 -2
  70. package/dist/runtime/components/Edit/Features/Selection/index.vue +5 -12
  71. package/dist/runtime/components/Edit/Features/Translations/Banner/index.vue +17 -11
  72. package/dist/runtime/components/Edit/Features/Translations/index.vue +13 -16
  73. package/dist/runtime/components/Edit/Form/Text/index.vue +2 -1
  74. package/dist/runtime/components/Edit/Form/Text/index.vue.d.ts +1 -0
  75. package/dist/runtime/components/Edit/Indicators/index.vue +1 -1
  76. package/dist/runtime/components/Edit/Konami/Game/index.vue +5 -5
  77. package/dist/runtime/components/Edit/index.d.ts +5 -3
  78. package/dist/runtime/components/Edit/index.js +8 -4
  79. package/dist/runtime/composables/defineBlokkli.js +4 -2
  80. package/dist/runtime/css/output.css +1 -1
  81. package/dist/runtime/helpers/animationProvider.d.ts +34 -1
  82. package/dist/runtime/helpers/animationProvider.js +175 -48
  83. package/dist/runtime/helpers/composables/defineRenderer.d.ts +8 -0
  84. package/dist/runtime/helpers/composables/defineRenderer.js +8 -0
  85. package/dist/runtime/helpers/composables/useStickyToolbar.d.ts +4 -1
  86. package/dist/runtime/helpers/composables/useStickyToolbar.js +53 -35
  87. package/dist/runtime/helpers/dom/index.d.ts +1 -0
  88. package/dist/runtime/helpers/domProvider.d.ts +46 -0
  89. package/dist/runtime/helpers/domProvider.js +95 -6
  90. package/dist/runtime/helpers/editableProvider.d.ts +14 -0
  91. package/dist/runtime/helpers/editableProvider.js +144 -0
  92. package/dist/runtime/helpers/stateProvider.d.ts +6 -2
  93. package/dist/runtime/helpers/stateProvider.js +66 -3
  94. package/dist/runtime/helpers/storageProvider.d.ts +3 -2
  95. package/dist/runtime/helpers/storageProvider.js +6 -2
  96. package/dist/runtime/helpers/symbols.d.ts +1 -0
  97. package/dist/runtime/helpers/symbols.js +1 -0
  98. package/dist/runtime/helpers/uiProvider.d.ts +8 -1
  99. package/dist/runtime/helpers/uiProvider.js +34 -2
  100. package/dist/runtime/plugins/blokkliEditable.js +74 -3
  101. package/dist/runtime/types/index.d.ts +13 -1
  102. package/package.json +1 -1
  103. package/dist/runtime/components/Edit/DragInteractions/index.vue +0 -401
  104. package/dist/runtime/components/Edit/Features/Selection/AddButtons/AddButtonsField.vue +0 -54
  105. package/dist/runtime/components/Edit/Features/Selection/AddButtons/AddButtonsField.vue.d.ts +0 -14
  106. /package/dist/runtime/components/Edit/{DragInteractions → Features/Hover}/index.vue.d.ts +0 -0
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.16";
18
+ const version = "2.0.0-alpha.17";
19
19
 
20
20
  function sortObjectKeys(obj) {
21
21
  if (Array.isArray(obj)) {
@@ -1047,9 +1047,13 @@ const addButtonInsideField$3 = {
1047
1047
  source: "Add inside @parentBundle » @fieldLabel...",
1048
1048
  translation: "In @parentBundle » @fieldLabel hinzufügen..."
1049
1049
  };
1050
+ const addCommentHeader$3 = {
1051
+ source: "Add Comment",
1052
+ translation: "Kommentar hinzufügen"
1053
+ };
1050
1054
  const addCommentToItem$3 = {
1051
- source: "Comment",
1052
- translation: "Kommentieren"
1055
+ source: "Add Comment...",
1056
+ translation: "Kommentar hinzufügen..."
1053
1057
  };
1054
1058
  const addListInputPlaceholder$3 = {
1055
1059
  source: "Search available blocks",
@@ -1263,18 +1267,22 @@ const blockAddListTourTitle$3 = {
1263
1267
  source: "Favorite blocks",
1264
1268
  translation: "Favoriten-Blöcke"
1265
1269
  };
1270
+ const blockOption_bkHiddenGlobally_description$3 = {
1271
+ source: "Always hides the block.",
1272
+ translation: "Den Block immer verstecken."
1273
+ };
1266
1274
  const blockOption_bkHiddenGlobally_label$3 = {
1267
1275
  source: "Hide globally",
1268
1276
  translation: "Global verstecken"
1269
1277
  };
1278
+ const blockOption_bkVisibleLanguages_description$3 = {
1279
+ source: "Only show on specific languages.",
1280
+ translation: "Nur auf bestimmten Sprachen anzeigen."
1281
+ };
1270
1282
  const blockOption_bkVisibleLanguages_label$3 = {
1271
1283
  source: "Visible languages",
1272
1284
  translation: "Sichtbare Sprachen"
1273
1285
  };
1274
- const cancel$3 = {
1275
- source: "Cancel",
1276
- translation: "Abbrechen"
1277
- };
1278
1286
  const cancelSelection$3 = {
1279
1287
  source: "Cancel selection",
1280
1288
  translation: "Auswahl abbrechen"
@@ -1347,10 +1355,6 @@ const commentAdd$3 = {
1347
1355
  source: "Add comment",
1348
1356
  translation: "Kommentar hinzufügen"
1349
1357
  };
1350
- const commentBody$3 = {
1351
- source: "Comment",
1352
- translation: "Kommentar"
1353
- };
1354
1358
  const commentBodyPlaceholder$3 = {
1355
1359
  source: "Add reply",
1356
1360
  translation: "Antwort hinzufügen"
@@ -1377,7 +1381,7 @@ const conversionsConvertTo$3 = {
1377
1381
  };
1378
1382
  const convertTo$3 = {
1379
1383
  source: "Convert to...",
1380
- translation: "Konvertieren"
1384
+ translation: "Konvertieren..."
1381
1385
  };
1382
1386
  const copiedToClipboardMessage$3 = {
1383
1387
  source: "\"@text\" has been copied to your clipboard",
@@ -1457,7 +1461,7 @@ const duplicateError$3 = {
1457
1461
  };
1458
1462
  const edit$3 = {
1459
1463
  source: "Edit",
1460
- translation: "Bearbeiten"
1464
+ translation: "Bearbeiten..."
1461
1465
  };
1462
1466
  const editFormBlockAdd$3 = {
1463
1467
  source: "Add @label",
@@ -1483,10 +1487,22 @@ const editIndicatorLabel$3 = {
1483
1487
  source: "Edit blocks",
1484
1488
  translation: "Elemente bearbeiten"
1485
1489
  };
1490
+ const editIndicatorLabelReview$3 = {
1491
+ source: "Review changes",
1492
+ translation: "Änderungen überprüfen"
1493
+ };
1494
+ const editIndicatorLabelView$3 = {
1495
+ source: "View changes",
1496
+ translation: "Änderungen ansehen"
1497
+ };
1486
1498
  const editableCommandEdit$3 = {
1487
1499
  source: "Edit field \"@name\"",
1488
1500
  translation: "Feld «@name» bearbeiten"
1489
1501
  };
1502
+ const editableFieldDiscard$3 = {
1503
+ source: "Discard",
1504
+ translation: "Verwerfen"
1505
+ };
1490
1506
  const entityTitleTourText$3 = {
1491
1507
  source: "<p>Shows the title and status of the current page.</p><p>Click on the title to open the page edit form.</p>",
1492
1508
  translation: "<p>Zeigt den Titel und Status der aktuellen Seite an.</p><p>Klicken Sie auf den Titel um das Bearbeitungsformular anzuzeigen.</p>"
@@ -1703,6 +1719,14 @@ const feature_history_setting_useMouseButtons_label$3 = {
1703
1719
  source: "Use mouse buttons for undo/redo",
1704
1720
  translation: "Maustasten für Rückgängig/Wiederherstellen verwenden"
1705
1721
  };
1722
+ const feature_hover_description$3 = {
1723
+ source: "Renders a border around blocks that are currently being hovered.",
1724
+ translation: ""
1725
+ };
1726
+ const feature_hover_label$3 = {
1727
+ source: "Hover",
1728
+ translation: ""
1729
+ };
1706
1730
  const feature_library_description$3 = {
1707
1731
  source: "Implements support for a block library to manage reusable blocks.",
1708
1732
  translation: "Implementiert Unterstützung für eine Block-Bibliothek zur Verwaltung wiederverwendbarer Blöcke."
@@ -1992,8 +2016,8 @@ const importExistingTitle$3 = {
1992
2016
  translation: "Importieren..."
1993
2017
  };
1994
2018
  const libraryAdd$3 = {
1995
- source: "Add to library",
1996
- translation: "Zur Bibliothek hinzufügen"
2019
+ source: "Add to library...",
2020
+ translation: "Zur Bibliothek hinzufügen..."
1997
2021
  };
1998
2022
  const libraryAddDescription$3 = {
1999
2023
  source: "Add a reusable block from the block library.",
@@ -2439,10 +2463,6 @@ const revertSuccess$3 = {
2439
2463
  source: "All changes have been discarded.",
2440
2464
  translation: "Alle Änderungen wurden verworfen."
2441
2465
  };
2442
- const save$3 = {
2443
- source: "Save",
2444
- translation: "Speichern"
2445
- };
2446
2466
  const scheduledFor$3 = {
2447
2467
  source: "The changes will be published on this date.",
2448
2468
  translation: "Die Änderungen werden an diesem Datum publiziert."
@@ -2659,6 +2679,22 @@ const validationsTourText$3 = {
2659
2679
  source: "See validation errors for content or structure on the current page.",
2660
2680
  translation: "Zeigt Validierungsfehler für Inhalte auf der aktuellen Seite an."
2661
2681
  };
2682
+ const viewBannerReviewText$3 = {
2683
+ source: "You can view and add comments but cannot edit content.",
2684
+ translation: "Sie können Kommentare ansehen und hinzufügen, aber keine Inhalte bearbeiten."
2685
+ };
2686
+ const viewBannerReviewTitle$3 = {
2687
+ source: "You are in review mode.",
2688
+ translation: "Sie befinden sich im Review-Modus."
2689
+ };
2690
+ const viewBannerViewText$3 = {
2691
+ source: "You can view comments but cannot edit content.",
2692
+ translation: "Sie können Kommentare ansehen, aber keine Inhalte bearbeiten."
2693
+ };
2694
+ const viewBannerViewTitle$3 = {
2695
+ source: "You are in view-only mode.",
2696
+ translation: "Sie befinden sich im Ansichtsmodus."
2697
+ };
2662
2698
  const de = {
2663
2699
  actionsDropdownToolip: actionsDropdownToolip$3,
2664
2700
  "addBlockCommand.appendInField": {
@@ -2679,6 +2715,7 @@ const de = {
2679
2715
  addButtonBundleBefore: addButtonBundleBefore$3,
2680
2716
  addButtonBundleInsideField: addButtonBundleInsideField$3,
2681
2717
  addButtonInsideField: addButtonInsideField$3,
2718
+ addCommentHeader: addCommentHeader$3,
2682
2719
  addCommentToItem: addCommentToItem$3,
2683
2720
  addListInputPlaceholder: addListInputPlaceholder$3,
2684
2721
  addListItemFavoriteAdd: addListItemFavoriteAdd$3,
@@ -2733,9 +2770,10 @@ const de = {
2733
2770
  assistantPromptPlaceholder: assistantPromptPlaceholder$3,
2734
2771
  blockAddListTourText: blockAddListTourText$3,
2735
2772
  blockAddListTourTitle: blockAddListTourTitle$3,
2773
+ blockOption_bkHiddenGlobally_description: blockOption_bkHiddenGlobally_description$3,
2736
2774
  blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label$3,
2775
+ blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description$3,
2737
2776
  blockOption_bkVisibleLanguages_label: blockOption_bkVisibleLanguages_label$3,
2738
- cancel: cancel$3,
2739
2777
  cancelSelection: cancelSelection$3,
2740
2778
  clipboard: clipboard$3,
2741
2779
  clipboardCopyShortcutHelp: clipboardCopyShortcutHelp$3,
@@ -2778,7 +2816,6 @@ const de = {
2778
2816
  commandPaletteOpen: commandPaletteOpen$3,
2779
2817
  commandPaletteTourText: commandPaletteTourText$3,
2780
2818
  commentAdd: commentAdd$3,
2781
- commentBody: commentBody$3,
2782
2819
  commentBodyPlaceholder: commentBodyPlaceholder$3,
2783
2820
  commentSave: commentSave$3,
2784
2821
  comments: comments$3,
@@ -2812,7 +2849,10 @@ const de = {
2812
2849
  editFormEntityEdit: editFormEntityEdit$3,
2813
2850
  editFormEntityTranslate: editFormEntityTranslate$3,
2814
2851
  editIndicatorLabel: editIndicatorLabel$3,
2852
+ editIndicatorLabelReview: editIndicatorLabelReview$3,
2853
+ editIndicatorLabelView: editIndicatorLabelView$3,
2815
2854
  editableCommandEdit: editableCommandEdit$3,
2855
+ editableFieldDiscard: editableFieldDiscard$3,
2816
2856
  entityTitleTourText: entityTitleTourText$3,
2817
2857
  entityTitleTourTitle: entityTitleTourTitle$3,
2818
2858
  exitDescription: exitDescription$3,
@@ -2955,6 +2995,8 @@ const de = {
2955
2995
  feature_history_label: feature_history_label$3,
2956
2996
  feature_history_setting_useMouseButtons_description: feature_history_setting_useMouseButtons_description$3,
2957
2997
  feature_history_setting_useMouseButtons_label: feature_history_setting_useMouseButtons_label$3,
2998
+ feature_hover_description: feature_hover_description$3,
2999
+ feature_hover_label: feature_hover_label$3,
2958
3000
  "feature_import-existing_description": {
2959
3001
  source: "Implements a menu action that renders a dialog to import blocks from another entity.",
2960
3002
  translation: "Implementiert eine Menü-Aktion, die einen Dialog zum Importieren von Blöcken aus einer anderen Entität anzeigt."
@@ -3207,7 +3249,6 @@ const de = {
3207
3249
  revertMenuDescription: revertMenuDescription$3,
3208
3250
  revertMenuTitle: revertMenuTitle$3,
3209
3251
  revertSuccess: revertSuccess$3,
3210
- save: save$3,
3211
3252
  scheduledFor: scheduledFor$3,
3212
3253
  searchBoxNoResultsFound: searchBoxNoResultsFound$3,
3213
3254
  searchBoxOnThisPage: searchBoxOnThisPage$3,
@@ -3269,7 +3310,11 @@ const de = {
3269
3310
  unexpectedMutationError: unexpectedMutationError$3,
3270
3311
  validationsNoneFound: validationsNoneFound$3,
3271
3312
  validationsToolbarLabel: validationsToolbarLabel$3,
3272
- validationsTourText: validationsTourText$3
3313
+ validationsTourText: validationsTourText$3,
3314
+ viewBannerReviewText: viewBannerReviewText$3,
3315
+ viewBannerReviewTitle: viewBannerReviewTitle$3,
3316
+ viewBannerViewText: viewBannerViewText$3,
3317
+ viewBannerViewTitle: viewBannerViewTitle$3
3273
3318
  };
3274
3319
 
3275
3320
  const actionsDropdownToolip$2 = {
@@ -3300,8 +3345,12 @@ const addButtonInsideField$2 = {
3300
3345
  source: "Add inside @parentBundle » @fieldLabel...",
3301
3346
  translation: "Ajouter dans @parentBundle » @fieldLabel..."
3302
3347
  };
3348
+ const addCommentHeader$2 = {
3349
+ source: "Add Comment",
3350
+ translation: ""
3351
+ };
3303
3352
  const addCommentToItem$2 = {
3304
- source: "Comment",
3353
+ source: "Add Comment...",
3305
3354
  translation: "Commenter"
3306
3355
  };
3307
3356
  const addListInputPlaceholder$2 = {
@@ -3516,18 +3565,22 @@ const blockAddListTourTitle$2 = {
3516
3565
  source: "Favorite blocks",
3517
3566
  translation: ""
3518
3567
  };
3568
+ const blockOption_bkHiddenGlobally_description$2 = {
3569
+ source: "Always hides the block.",
3570
+ translation: ""
3571
+ };
3519
3572
  const blockOption_bkHiddenGlobally_label$2 = {
3520
3573
  source: "Hide globally",
3521
3574
  translation: ""
3522
3575
  };
3576
+ const blockOption_bkVisibleLanguages_description$2 = {
3577
+ source: "Only show on specific languages.",
3578
+ translation: ""
3579
+ };
3523
3580
  const blockOption_bkVisibleLanguages_label$2 = {
3524
3581
  source: "Visible languages",
3525
3582
  translation: ""
3526
3583
  };
3527
- const cancel$2 = {
3528
- source: "Cancel",
3529
- translation: "Annuler"
3530
- };
3531
3584
  const cancelSelection$2 = {
3532
3585
  source: "Cancel selection",
3533
3586
  translation: ""
@@ -3600,10 +3653,6 @@ const commentAdd$2 = {
3600
3653
  source: "Add comment",
3601
3654
  translation: ""
3602
3655
  };
3603
- const commentBody$2 = {
3604
- source: "Comment",
3605
- translation: "Commentaire"
3606
- };
3607
3656
  const commentBodyPlaceholder$2 = {
3608
3657
  source: "Add reply",
3609
3658
  translation: ""
@@ -3736,10 +3785,22 @@ const editIndicatorLabel$2 = {
3736
3785
  source: "Edit blocks",
3737
3786
  translation: "Modifier les éléments"
3738
3787
  };
3788
+ const editIndicatorLabelReview$2 = {
3789
+ source: "Review changes",
3790
+ translation: ""
3791
+ };
3792
+ const editIndicatorLabelView$2 = {
3793
+ source: "View changes",
3794
+ translation: ""
3795
+ };
3739
3796
  const editableCommandEdit$2 = {
3740
3797
  source: "Edit field \"@name\"",
3741
3798
  translation: ""
3742
3799
  };
3800
+ const editableFieldDiscard$2 = {
3801
+ source: "Discard",
3802
+ translation: ""
3803
+ };
3743
3804
  const entityTitleTourText$2 = {
3744
3805
  source: "<p>Shows the title and status of the current page.</p><p>Click on the title to open the page edit form.</p>",
3745
3806
  translation: ""
@@ -3956,6 +4017,14 @@ const feature_history_setting_useMouseButtons_label$2 = {
3956
4017
  source: "Use mouse buttons for undo/redo",
3957
4018
  translation: "Utiliser les boutons de la souris pour annuler/rétablir"
3958
4019
  };
4020
+ const feature_hover_description$2 = {
4021
+ source: "Renders a border around blocks that are currently being hovered.",
4022
+ translation: ""
4023
+ };
4024
+ const feature_hover_label$2 = {
4025
+ source: "Hover",
4026
+ translation: ""
4027
+ };
3959
4028
  const feature_library_description$2 = {
3960
4029
  source: "Implements support for a block library to manage reusable blocks.",
3961
4030
  translation: "Implémente le support d'une bibliothèque de blocs pour gérer les blocs réutilisables."
@@ -4245,7 +4314,7 @@ const importExistingTitle$2 = {
4245
4314
  translation: "Importer..."
4246
4315
  };
4247
4316
  const libraryAdd$2 = {
4248
- source: "Add to library",
4317
+ source: "Add to library...",
4249
4318
  translation: "Ajouter à la bibliothèque"
4250
4319
  };
4251
4320
  const libraryAddDescription$2 = {
@@ -4692,10 +4761,6 @@ const revertSuccess$2 = {
4692
4761
  source: "All changes have been discarded.",
4693
4762
  translation: "Toutes les modifications ont été annulées."
4694
4763
  };
4695
- const save$2 = {
4696
- source: "Save",
4697
- translation: "Save"
4698
- };
4699
4764
  const scheduledFor$2 = {
4700
4765
  source: "The changes will be published on this date.",
4701
4766
  translation: ""
@@ -4912,6 +4977,22 @@ const validationsTourText$2 = {
4912
4977
  source: "See validation errors for content or structure on the current page.",
4913
4978
  translation: ""
4914
4979
  };
4980
+ const viewBannerReviewText$2 = {
4981
+ source: "You can view and add comments but cannot edit content.",
4982
+ translation: ""
4983
+ };
4984
+ const viewBannerReviewTitle$2 = {
4985
+ source: "You are in review mode.",
4986
+ translation: ""
4987
+ };
4988
+ const viewBannerViewText$2 = {
4989
+ source: "You can view comments but cannot edit content.",
4990
+ translation: ""
4991
+ };
4992
+ const viewBannerViewTitle$2 = {
4993
+ source: "You are in view-only mode.",
4994
+ translation: ""
4995
+ };
4915
4996
  const fr = {
4916
4997
  actionsDropdownToolip: actionsDropdownToolip$2,
4917
4998
  "addBlockCommand.appendInField": {
@@ -4932,6 +5013,7 @@ const fr = {
4932
5013
  addButtonBundleBefore: addButtonBundleBefore$2,
4933
5014
  addButtonBundleInsideField: addButtonBundleInsideField$2,
4934
5015
  addButtonInsideField: addButtonInsideField$2,
5016
+ addCommentHeader: addCommentHeader$2,
4935
5017
  addCommentToItem: addCommentToItem$2,
4936
5018
  addListInputPlaceholder: addListInputPlaceholder$2,
4937
5019
  addListItemFavoriteAdd: addListItemFavoriteAdd$2,
@@ -4986,9 +5068,10 @@ const fr = {
4986
5068
  assistantPromptPlaceholder: assistantPromptPlaceholder$2,
4987
5069
  blockAddListTourText: blockAddListTourText$2,
4988
5070
  blockAddListTourTitle: blockAddListTourTitle$2,
5071
+ blockOption_bkHiddenGlobally_description: blockOption_bkHiddenGlobally_description$2,
4989
5072
  blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label$2,
5073
+ blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description$2,
4990
5074
  blockOption_bkVisibleLanguages_label: blockOption_bkVisibleLanguages_label$2,
4991
- cancel: cancel$2,
4992
5075
  cancelSelection: cancelSelection$2,
4993
5076
  clipboard: clipboard$2,
4994
5077
  clipboardCopyShortcutHelp: clipboardCopyShortcutHelp$2,
@@ -5031,7 +5114,6 @@ const fr = {
5031
5114
  commandPaletteOpen: commandPaletteOpen$2,
5032
5115
  commandPaletteTourText: commandPaletteTourText$2,
5033
5116
  commentAdd: commentAdd$2,
5034
- commentBody: commentBody$2,
5035
5117
  commentBodyPlaceholder: commentBodyPlaceholder$2,
5036
5118
  commentSave: commentSave$2,
5037
5119
  comments: comments$2,
@@ -5065,7 +5147,10 @@ const fr = {
5065
5147
  editFormEntityEdit: editFormEntityEdit$2,
5066
5148
  editFormEntityTranslate: editFormEntityTranslate$2,
5067
5149
  editIndicatorLabel: editIndicatorLabel$2,
5150
+ editIndicatorLabelReview: editIndicatorLabelReview$2,
5151
+ editIndicatorLabelView: editIndicatorLabelView$2,
5068
5152
  editableCommandEdit: editableCommandEdit$2,
5153
+ editableFieldDiscard: editableFieldDiscard$2,
5069
5154
  entityTitleTourText: entityTitleTourText$2,
5070
5155
  entityTitleTourTitle: entityTitleTourTitle$2,
5071
5156
  exitDescription: exitDescription$2,
@@ -5208,6 +5293,8 @@ const fr = {
5208
5293
  feature_history_label: feature_history_label$2,
5209
5294
  feature_history_setting_useMouseButtons_description: feature_history_setting_useMouseButtons_description$2,
5210
5295
  feature_history_setting_useMouseButtons_label: feature_history_setting_useMouseButtons_label$2,
5296
+ feature_hover_description: feature_hover_description$2,
5297
+ feature_hover_label: feature_hover_label$2,
5211
5298
  "feature_import-existing_description": {
5212
5299
  source: "Implements a menu action that renders a dialog to import blocks from another entity.",
5213
5300
  translation: "Implémente une action de menu qui affiche une boîte de dialogue pour importer des blocs depuis une autre entité."
@@ -5460,7 +5547,6 @@ const fr = {
5460
5547
  revertMenuDescription: revertMenuDescription$2,
5461
5548
  revertMenuTitle: revertMenuTitle$2,
5462
5549
  revertSuccess: revertSuccess$2,
5463
- save: save$2,
5464
5550
  scheduledFor: scheduledFor$2,
5465
5551
  searchBoxNoResultsFound: searchBoxNoResultsFound$2,
5466
5552
  searchBoxOnThisPage: searchBoxOnThisPage$2,
@@ -5522,7 +5608,11 @@ const fr = {
5522
5608
  unexpectedMutationError: unexpectedMutationError$2,
5523
5609
  validationsNoneFound: validationsNoneFound$2,
5524
5610
  validationsToolbarLabel: validationsToolbarLabel$2,
5525
- validationsTourText: validationsTourText$2
5611
+ validationsTourText: validationsTourText$2,
5612
+ viewBannerReviewText: viewBannerReviewText$2,
5613
+ viewBannerReviewTitle: viewBannerReviewTitle$2,
5614
+ viewBannerViewText: viewBannerViewText$2,
5615
+ viewBannerViewTitle: viewBannerViewTitle$2
5526
5616
  };
5527
5617
 
5528
5618
  const actionsDropdownToolip$1 = {
@@ -5553,8 +5643,12 @@ const addButtonInsideField$1 = {
5553
5643
  source: "Add inside @parentBundle » @fieldLabel...",
5554
5644
  translation: "Aggiungi in @parentBundle » @fieldLabel..."
5555
5645
  };
5646
+ const addCommentHeader$1 = {
5647
+ source: "Add Comment",
5648
+ translation: ""
5649
+ };
5556
5650
  const addCommentToItem$1 = {
5557
- source: "Comment",
5651
+ source: "Add Comment...",
5558
5652
  translation: "Commenta"
5559
5653
  };
5560
5654
  const addListInputPlaceholder$1 = {
@@ -5769,18 +5863,22 @@ const blockAddListTourTitle$1 = {
5769
5863
  source: "Favorite blocks",
5770
5864
  translation: ""
5771
5865
  };
5866
+ const blockOption_bkHiddenGlobally_description$1 = {
5867
+ source: "Always hides the block.",
5868
+ translation: ""
5869
+ };
5772
5870
  const blockOption_bkHiddenGlobally_label$1 = {
5773
5871
  source: "Hide globally",
5774
5872
  translation: ""
5775
5873
  };
5874
+ const blockOption_bkVisibleLanguages_description$1 = {
5875
+ source: "Only show on specific languages.",
5876
+ translation: ""
5877
+ };
5776
5878
  const blockOption_bkVisibleLanguages_label$1 = {
5777
5879
  source: "Visible languages",
5778
5880
  translation: ""
5779
5881
  };
5780
- const cancel$1 = {
5781
- source: "Cancel",
5782
- translation: "Annulla"
5783
- };
5784
5882
  const cancelSelection$1 = {
5785
5883
  source: "Cancel selection",
5786
5884
  translation: ""
@@ -5853,10 +5951,6 @@ const commentAdd$1 = {
5853
5951
  source: "Add comment",
5854
5952
  translation: ""
5855
5953
  };
5856
- const commentBody$1 = {
5857
- source: "Comment",
5858
- translation: "Commento"
5859
- };
5860
5954
  const commentBodyPlaceholder$1 = {
5861
5955
  source: "Add reply",
5862
5956
  translation: ""
@@ -5989,10 +6083,22 @@ const editIndicatorLabel$1 = {
5989
6083
  source: "Edit blocks",
5990
6084
  translation: "Modifica elementi"
5991
6085
  };
6086
+ const editIndicatorLabelReview$1 = {
6087
+ source: "Review changes",
6088
+ translation: ""
6089
+ };
6090
+ const editIndicatorLabelView$1 = {
6091
+ source: "View changes",
6092
+ translation: ""
6093
+ };
5992
6094
  const editableCommandEdit$1 = {
5993
6095
  source: "Edit field \"@name\"",
5994
6096
  translation: ""
5995
6097
  };
6098
+ const editableFieldDiscard$1 = {
6099
+ source: "Discard",
6100
+ translation: ""
6101
+ };
5996
6102
  const entityTitleTourText$1 = {
5997
6103
  source: "<p>Shows the title and status of the current page.</p><p>Click on the title to open the page edit form.</p>",
5998
6104
  translation: ""
@@ -6209,6 +6315,14 @@ const feature_history_setting_useMouseButtons_label$1 = {
6209
6315
  source: "Use mouse buttons for undo/redo",
6210
6316
  translation: "Usa i pulsanti del mouse per annulla/ripeti"
6211
6317
  };
6318
+ const feature_hover_description$1 = {
6319
+ source: "Renders a border around blocks that are currently being hovered.",
6320
+ translation: ""
6321
+ };
6322
+ const feature_hover_label$1 = {
6323
+ source: "Hover",
6324
+ translation: ""
6325
+ };
6212
6326
  const feature_library_description$1 = {
6213
6327
  source: "Implements support for a block library to manage reusable blocks.",
6214
6328
  translation: "Implementa il supporto per una biblioteca di blocchi per gestire blocchi riutilizzabili."
@@ -6498,7 +6612,7 @@ const importExistingTitle$1 = {
6498
6612
  translation: "Importa..."
6499
6613
  };
6500
6614
  const libraryAdd$1 = {
6501
- source: "Add to library",
6615
+ source: "Add to library...",
6502
6616
  translation: "Aggiungi alla biblioteca"
6503
6617
  };
6504
6618
  const libraryAddDescription$1 = {
@@ -6945,10 +7059,6 @@ const revertSuccess$1 = {
6945
7059
  source: "All changes have been discarded.",
6946
7060
  translation: "Tutte le modifiche sono state scartate."
6947
7061
  };
6948
- const save$1 = {
6949
- source: "Save",
6950
- translation: "Save"
6951
- };
6952
7062
  const scheduledFor$1 = {
6953
7063
  source: "The changes will be published on this date.",
6954
7064
  translation: ""
@@ -7165,6 +7275,22 @@ const validationsTourText$1 = {
7165
7275
  source: "See validation errors for content or structure on the current page.",
7166
7276
  translation: ""
7167
7277
  };
7278
+ const viewBannerReviewText$1 = {
7279
+ source: "You can view and add comments but cannot edit content.",
7280
+ translation: ""
7281
+ };
7282
+ const viewBannerReviewTitle$1 = {
7283
+ source: "You are in review mode.",
7284
+ translation: ""
7285
+ };
7286
+ const viewBannerViewText$1 = {
7287
+ source: "You can view comments but cannot edit content.",
7288
+ translation: ""
7289
+ };
7290
+ const viewBannerViewTitle$1 = {
7291
+ source: "You are in view-only mode.",
7292
+ translation: ""
7293
+ };
7168
7294
  const it = {
7169
7295
  actionsDropdownToolip: actionsDropdownToolip$1,
7170
7296
  "addBlockCommand.appendInField": {
@@ -7185,6 +7311,7 @@ const it = {
7185
7311
  addButtonBundleBefore: addButtonBundleBefore$1,
7186
7312
  addButtonBundleInsideField: addButtonBundleInsideField$1,
7187
7313
  addButtonInsideField: addButtonInsideField$1,
7314
+ addCommentHeader: addCommentHeader$1,
7188
7315
  addCommentToItem: addCommentToItem$1,
7189
7316
  addListInputPlaceholder: addListInputPlaceholder$1,
7190
7317
  addListItemFavoriteAdd: addListItemFavoriteAdd$1,
@@ -7239,9 +7366,10 @@ const it = {
7239
7366
  assistantPromptPlaceholder: assistantPromptPlaceholder$1,
7240
7367
  blockAddListTourText: blockAddListTourText$1,
7241
7368
  blockAddListTourTitle: blockAddListTourTitle$1,
7369
+ blockOption_bkHiddenGlobally_description: blockOption_bkHiddenGlobally_description$1,
7242
7370
  blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label$1,
7371
+ blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description$1,
7243
7372
  blockOption_bkVisibleLanguages_label: blockOption_bkVisibleLanguages_label$1,
7244
- cancel: cancel$1,
7245
7373
  cancelSelection: cancelSelection$1,
7246
7374
  clipboard: clipboard$1,
7247
7375
  clipboardCopyShortcutHelp: clipboardCopyShortcutHelp$1,
@@ -7284,7 +7412,6 @@ const it = {
7284
7412
  commandPaletteOpen: commandPaletteOpen$1,
7285
7413
  commandPaletteTourText: commandPaletteTourText$1,
7286
7414
  commentAdd: commentAdd$1,
7287
- commentBody: commentBody$1,
7288
7415
  commentBodyPlaceholder: commentBodyPlaceholder$1,
7289
7416
  commentSave: commentSave$1,
7290
7417
  comments: comments$1,
@@ -7318,7 +7445,10 @@ const it = {
7318
7445
  editFormEntityEdit: editFormEntityEdit$1,
7319
7446
  editFormEntityTranslate: editFormEntityTranslate$1,
7320
7447
  editIndicatorLabel: editIndicatorLabel$1,
7448
+ editIndicatorLabelReview: editIndicatorLabelReview$1,
7449
+ editIndicatorLabelView: editIndicatorLabelView$1,
7321
7450
  editableCommandEdit: editableCommandEdit$1,
7451
+ editableFieldDiscard: editableFieldDiscard$1,
7322
7452
  entityTitleTourText: entityTitleTourText$1,
7323
7453
  entityTitleTourTitle: entityTitleTourTitle$1,
7324
7454
  exitDescription: exitDescription$1,
@@ -7461,6 +7591,8 @@ const it = {
7461
7591
  feature_history_label: feature_history_label$1,
7462
7592
  feature_history_setting_useMouseButtons_description: feature_history_setting_useMouseButtons_description$1,
7463
7593
  feature_history_setting_useMouseButtons_label: feature_history_setting_useMouseButtons_label$1,
7594
+ feature_hover_description: feature_hover_description$1,
7595
+ feature_hover_label: feature_hover_label$1,
7464
7596
  "feature_import-existing_description": {
7465
7597
  source: "Implements a menu action that renders a dialog to import blocks from another entity.",
7466
7598
  translation: "Implementa un'azione di menu che visualizza una finestra di dialogo per importare blocchi da un'altra entità."
@@ -7713,7 +7845,6 @@ const it = {
7713
7845
  revertMenuDescription: revertMenuDescription$1,
7714
7846
  revertMenuTitle: revertMenuTitle$1,
7715
7847
  revertSuccess: revertSuccess$1,
7716
- save: save$1,
7717
7848
  scheduledFor: scheduledFor$1,
7718
7849
  searchBoxNoResultsFound: searchBoxNoResultsFound$1,
7719
7850
  searchBoxOnThisPage: searchBoxOnThisPage$1,
@@ -7775,7 +7906,11 @@ const it = {
7775
7906
  unexpectedMutationError: unexpectedMutationError$1,
7776
7907
  validationsNoneFound: validationsNoneFound$1,
7777
7908
  validationsToolbarLabel: validationsToolbarLabel$1,
7778
- validationsTourText: validationsTourText$1
7909
+ validationsTourText: validationsTourText$1,
7910
+ viewBannerReviewText: viewBannerReviewText$1,
7911
+ viewBannerReviewTitle: viewBannerReviewTitle$1,
7912
+ viewBannerViewText: viewBannerViewText$1,
7913
+ viewBannerViewTitle: viewBannerViewTitle$1
7779
7914
  };
7780
7915
 
7781
7916
  const actionsDropdownToolip = {
@@ -7806,8 +7941,12 @@ const addButtonInsideField = {
7806
7941
  source: "Add inside @parentBundle » @fieldLabel...",
7807
7942
  translation: "In @parentBundle » @fieldLabel drzuefüege..."
7808
7943
  };
7944
+ const addCommentHeader = {
7945
+ source: "Add Comment",
7946
+ translation: ""
7947
+ };
7809
7948
  const addCommentToItem = {
7810
- source: "Comment",
7949
+ source: "Add Comment...",
7811
7950
  translation: "Kommentiere"
7812
7951
  };
7813
7952
  const addListInputPlaceholder = {
@@ -8022,18 +8161,22 @@ const blockAddListTourTitle = {
8022
8161
  source: "Favorite blocks",
8023
8162
  translation: "Lieblingsblöck"
8024
8163
  };
8164
+ const blockOption_bkHiddenGlobally_description = {
8165
+ source: "Always hides the block.",
8166
+ translation: ""
8167
+ };
8025
8168
  const blockOption_bkHiddenGlobally_label = {
8026
8169
  source: "Hide globally",
8027
8170
  translation: "Global verstecke"
8028
8171
  };
8172
+ const blockOption_bkVisibleLanguages_description = {
8173
+ source: "Only show on specific languages.",
8174
+ translation: ""
8175
+ };
8029
8176
  const blockOption_bkVisibleLanguages_label = {
8030
8177
  source: "Visible languages",
8031
8178
  translation: "Sichtbari Sproche"
8032
8179
  };
8033
- const cancel = {
8034
- source: "Cancel",
8035
- translation: "Abbräche"
8036
- };
8037
8180
  const cancelSelection = {
8038
8181
  source: "Cancel selection",
8039
8182
  translation: "Uswahl abbräche"
@@ -8106,10 +8249,6 @@ const commentAdd = {
8106
8249
  source: "Add comment",
8107
8250
  translation: "Kommentar drzuefüege"
8108
8251
  };
8109
- const commentBody = {
8110
- source: "Comment",
8111
- translation: "Kommentar"
8112
- };
8113
8252
  const commentBodyPlaceholder = {
8114
8253
  source: "Add reply",
8115
8254
  translation: "Antwort drzuefüege"
@@ -8242,10 +8381,22 @@ const editIndicatorLabel = {
8242
8381
  source: "Edit blocks",
8243
8382
  translation: "Elemänt bearbeite"
8244
8383
  };
8384
+ const editIndicatorLabelReview = {
8385
+ source: "Review changes",
8386
+ translation: ""
8387
+ };
8388
+ const editIndicatorLabelView = {
8389
+ source: "View changes",
8390
+ translation: ""
8391
+ };
8245
8392
  const editableCommandEdit = {
8246
8393
  source: "Edit field \"@name\"",
8247
8394
  translation: "Fäld «@name» bearbeite"
8248
8395
  };
8396
+ const editableFieldDiscard = {
8397
+ source: "Discard",
8398
+ translation: ""
8399
+ };
8249
8400
  const entityTitleTourText = {
8250
8401
  source: "<p>Shows the title and status of the current page.</p><p>Click on the title to open the page edit form.</p>",
8251
8402
  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>"
@@ -8462,6 +8613,14 @@ const feature_history_setting_useMouseButtons_label = {
8462
8613
  source: "Use mouse buttons for undo/redo",
8463
8614
  translation: "Muustaschte für Rückgängig/Wiederhärstelle bruche"
8464
8615
  };
8616
+ const feature_hover_description = {
8617
+ source: "Renders a border around blocks that are currently being hovered.",
8618
+ translation: ""
8619
+ };
8620
+ const feature_hover_label = {
8621
+ source: "Hover",
8622
+ translation: ""
8623
+ };
8465
8624
  const feature_library_description = {
8466
8625
  source: "Implements support for a block library to manage reusable blocks.",
8467
8626
  translation: "Implementiert Understützig für e Block-Bibliothek zum wiederverwändbare Blöck z'verwallte."
@@ -8751,7 +8910,7 @@ const importExistingTitle = {
8751
8910
  translation: "Importiere..."
8752
8911
  };
8753
8912
  const libraryAdd = {
8754
- source: "Add to library",
8913
+ source: "Add to library...",
8755
8914
  translation: "Zur Bibliothek drzuefüege"
8756
8915
  };
8757
8916
  const libraryAddDescription = {
@@ -9198,10 +9357,6 @@ const revertSuccess = {
9198
9357
  source: "All changes have been discarded.",
9199
9358
  translation: "Alli Änderige sin glöcht worde."
9200
9359
  };
9201
- const save = {
9202
- source: "Save",
9203
- translation: "Speichere"
9204
- };
9205
9360
  const scheduledFor = {
9206
9361
  source: "The changes will be published on this date.",
9207
9362
  translation: ""
@@ -9418,6 +9573,22 @@ const validationsTourText = {
9418
9573
  source: "See validation errors for content or structure on the current page.",
9419
9574
  translation: "Lueg Validierigsfähler für Inhalt oder Struktur uf dr aktuälle Sitte aa."
9420
9575
  };
9576
+ const viewBannerReviewText = {
9577
+ source: "You can view and add comments but cannot edit content.",
9578
+ translation: ""
9579
+ };
9580
+ const viewBannerReviewTitle = {
9581
+ source: "You are in review mode.",
9582
+ translation: ""
9583
+ };
9584
+ const viewBannerViewText = {
9585
+ source: "You can view comments but cannot edit content.",
9586
+ translation: ""
9587
+ };
9588
+ const viewBannerViewTitle = {
9589
+ source: "You are in view-only mode.",
9590
+ translation: ""
9591
+ };
9421
9592
  const gsw_CH = {
9422
9593
  actionsDropdownToolip: actionsDropdownToolip,
9423
9594
  "addBlockCommand.appendInField": {
@@ -9438,6 +9609,7 @@ const gsw_CH = {
9438
9609
  addButtonBundleBefore: addButtonBundleBefore,
9439
9610
  addButtonBundleInsideField: addButtonBundleInsideField,
9440
9611
  addButtonInsideField: addButtonInsideField,
9612
+ addCommentHeader: addCommentHeader,
9441
9613
  addCommentToItem: addCommentToItem,
9442
9614
  addListInputPlaceholder: addListInputPlaceholder,
9443
9615
  addListItemFavoriteAdd: addListItemFavoriteAdd,
@@ -9492,9 +9664,10 @@ const gsw_CH = {
9492
9664
  assistantPromptPlaceholder: assistantPromptPlaceholder,
9493
9665
  blockAddListTourText: blockAddListTourText,
9494
9666
  blockAddListTourTitle: blockAddListTourTitle,
9667
+ blockOption_bkHiddenGlobally_description: blockOption_bkHiddenGlobally_description,
9495
9668
  blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label,
9669
+ blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description,
9496
9670
  blockOption_bkVisibleLanguages_label: blockOption_bkVisibleLanguages_label,
9497
- cancel: cancel,
9498
9671
  cancelSelection: cancelSelection,
9499
9672
  clipboard: clipboard,
9500
9673
  clipboardCopyShortcutHelp: clipboardCopyShortcutHelp,
@@ -9537,7 +9710,6 @@ const gsw_CH = {
9537
9710
  commandPaletteOpen: commandPaletteOpen,
9538
9711
  commandPaletteTourText: commandPaletteTourText,
9539
9712
  commentAdd: commentAdd,
9540
- commentBody: commentBody,
9541
9713
  commentBodyPlaceholder: commentBodyPlaceholder,
9542
9714
  commentSave: commentSave,
9543
9715
  comments: comments,
@@ -9571,7 +9743,10 @@ const gsw_CH = {
9571
9743
  editFormEntityEdit: editFormEntityEdit,
9572
9744
  editFormEntityTranslate: editFormEntityTranslate,
9573
9745
  editIndicatorLabel: editIndicatorLabel,
9746
+ editIndicatorLabelReview: editIndicatorLabelReview,
9747
+ editIndicatorLabelView: editIndicatorLabelView,
9574
9748
  editableCommandEdit: editableCommandEdit,
9749
+ editableFieldDiscard: editableFieldDiscard,
9575
9750
  entityTitleTourText: entityTitleTourText,
9576
9751
  entityTitleTourTitle: entityTitleTourTitle,
9577
9752
  exitDescription: exitDescription,
@@ -9714,6 +9889,8 @@ const gsw_CH = {
9714
9889
  feature_history_label: feature_history_label,
9715
9890
  feature_history_setting_useMouseButtons_description: feature_history_setting_useMouseButtons_description,
9716
9891
  feature_history_setting_useMouseButtons_label: feature_history_setting_useMouseButtons_label,
9892
+ feature_hover_description: feature_hover_description,
9893
+ feature_hover_label: feature_hover_label,
9717
9894
  "feature_import-existing_description": {
9718
9895
  source: "Implements a menu action that renders a dialog to import blocks from another entity.",
9719
9896
  translation: "Implementiert e Menü-Aktion wo e Dialog renderet zum Blöck vonere andere Entität z'importiere."
@@ -9966,7 +10143,6 @@ const gsw_CH = {
9966
10143
  revertMenuDescription: revertMenuDescription,
9967
10144
  revertMenuTitle: revertMenuTitle,
9968
10145
  revertSuccess: revertSuccess,
9969
- save: save,
9970
10146
  scheduledFor: scheduledFor,
9971
10147
  searchBoxNoResultsFound: searchBoxNoResultsFound,
9972
10148
  searchBoxOnThisPage: searchBoxOnThisPage,
@@ -10028,7 +10204,11 @@ const gsw_CH = {
10028
10204
  unexpectedMutationError: unexpectedMutationError,
10029
10205
  validationsNoneFound: validationsNoneFound,
10030
10206
  validationsToolbarLabel: validationsToolbarLabel,
10031
- validationsTourText: validationsTourText
10207
+ validationsTourText: validationsTourText,
10208
+ viewBannerReviewText: viewBannerReviewText,
10209
+ viewBannerReviewTitle: viewBannerReviewTitle,
10210
+ viewBannerViewText: viewBannerViewText,
10211
+ viewBannerViewTitle: viewBannerViewTitle
10032
10212
  };
10033
10213
 
10034
10214
  const translations$1 = {
@@ -10284,14 +10464,14 @@ const lime$3 = {
10284
10464
  203
10285
10465
  ],
10286
10466
  normal: [
10287
- 101,
10288
- 163,
10289
- 13
10467
+ 122,
10468
+ 196,
10469
+ 18
10290
10470
  ],
10291
10471
  dark: [
10292
- 63,
10293
- 98,
10294
- 18
10472
+ 81,
10473
+ 129,
10474
+ 19
10295
10475
  ]
10296
10476
  };
10297
10477
  const arctic = {
@@ -11833,12 +12013,14 @@ const module = defineNuxtModule({
11833
12013
  [BK_VISIBLE_LANGUAGES]: {
11834
12014
  type: "checkboxes",
11835
12015
  label: "Visible languages",
12016
+ description: "Only show on specific languages.",
11836
12017
  options: {},
11837
12018
  default: []
11838
12019
  },
11839
12020
  [BK_HIDDEN_GLOBALLY]: {
11840
12021
  type: "checkbox",
11841
12022
  label: "Hide globally",
12023
+ description: "Always hides the block.",
11842
12024
  default: false
11843
12025
  }
11844
12026
  },