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

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 (194) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +640 -137
  3. package/dist/modules/drupal/graphql/base/fragment.blokkliProps.graphql +1 -1
  4. package/dist/modules/drupal/graphql/base/fragment.paragraphsFieldItem.graphql +3 -1
  5. package/dist/modules/drupal/graphql/base/query.pbConfig.graphql +1 -10
  6. package/dist/modules/drupal/graphql/features/comments.graphql +11 -8
  7. package/dist/modules/drupal/graphql/mutations/set_paragraph_schedule.graphql +15 -0
  8. package/dist/modules/drupal/index.mjs +33 -0
  9. package/dist/modules/drupal/runtime/adapter/index.js +12 -4
  10. package/dist/runtime/adapter/index.d.ts +21 -0
  11. package/dist/runtime/blokkliPlugins/ContextMenu/Menu/index.vue +3 -0
  12. package/dist/runtime/blokkliPlugins/ItemAction/index.vue +23 -15
  13. package/dist/runtime/blokkliPlugins/ItemAction/index.vue.d.ts +20 -44
  14. package/dist/runtime/blokkliPlugins/TourItem/index.vue +10 -5
  15. package/dist/runtime/components/Blocks/FromLibrary/index.vue +4 -2
  16. package/dist/runtime/components/BlokkliEditable.vue +32 -14
  17. package/dist/runtime/components/BlokkliField.vue +3 -0
  18. package/dist/runtime/components/BlokkliField.vue.d.ts +3 -3
  19. package/dist/runtime/components/BlokkliItem.vue +1 -1
  20. package/dist/runtime/components/BlokkliItem.vue.d.ts +4 -2
  21. package/dist/runtime/components/BlokkliProvider.vue +41 -28
  22. package/dist/runtime/components/BlokkliProvider.vue.d.ts +2 -1
  23. package/dist/runtime/components/Edit/Actions/index.vue +36 -20
  24. package/dist/runtime/components/Edit/AnimationCanvas/index.vue +436 -25
  25. package/dist/runtime/components/Edit/ArtboardTooltip/index.vue +83 -0
  26. package/dist/runtime/components/Edit/ArtboardTooltip/index.vue.d.ts +32 -0
  27. package/dist/runtime/components/Edit/Banner/index.vue +51 -0
  28. package/dist/runtime/components/Edit/Banner/index.vue.d.ts +18 -0
  29. package/dist/runtime/components/Edit/Dialog/index.vue +6 -4
  30. package/dist/runtime/components/Edit/DraggableList.vue +15 -7
  31. package/dist/runtime/components/Edit/DraggableList.vue.d.ts +5 -5
  32. package/dist/runtime/components/Edit/EditIndicator.vue +118 -44
  33. package/dist/runtime/components/Edit/EditIndicator.vue.d.ts +3 -0
  34. package/dist/runtime/components/Edit/EditProvider.vue +101 -31
  35. package/dist/runtime/components/Edit/EditProvider.vue.d.ts +3 -0
  36. package/dist/runtime/components/Edit/Features/AddList/index.vue +9 -11
  37. package/dist/runtime/components/Edit/Features/Analyze/Overlay/index.vue +28 -26
  38. package/dist/runtime/components/Edit/Features/Analyze/Renderer.vue +1 -1
  39. package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodesTarget.vue +15 -11
  40. package/dist/runtime/components/Edit/Features/Anchors/Renderer.vue +19 -102
  41. package/dist/runtime/components/Edit/Features/Artboard/Renderer.vue +3 -0
  42. package/dist/runtime/components/Edit/Features/BlockAddList/index.vue +29 -53
  43. package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/ScheduleSection.vue +154 -0
  44. package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/ScheduleSection.vue.d.ts +27 -0
  45. package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/index.vue +222 -0
  46. package/dist/runtime/components/Edit/Features/{Selection/AddButtons/AddButtonsField.vue.d.ts → BlockScheduler/Dialog/index.vue.d.ts} +6 -9
  47. package/dist/runtime/components/Edit/Features/BlockScheduler/index.vue +96 -0
  48. package/dist/runtime/components/Edit/Features/Clipboard/index.vue +15 -16
  49. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Item/index.vue +51 -0
  50. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/{Group → Item}/index.vue.d.ts +9 -13
  51. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue +46 -66
  52. package/dist/runtime/components/Edit/Features/CommandPalette/index.vue +2 -0
  53. package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue +35 -20
  54. package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue.d.ts +5 -3
  55. package/dist/runtime/components/Edit/Features/Comments/CommentInput/index.vue +29 -0
  56. package/dist/runtime/components/Edit/Features/{Publish/Dialog/ScheduleDate.vue.d.ts → Comments/CommentInput/index.vue.d.ts} +2 -2
  57. package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue +22 -16
  58. package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue.d.ts +1 -0
  59. package/dist/runtime/components/Edit/Features/Comments/Overlay/index.vue +15 -6
  60. package/dist/runtime/components/Edit/Features/Comments/index.vue +21 -9
  61. package/dist/runtime/components/Edit/Features/Conversions/index.vue +4 -7
  62. package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue +26 -35
  63. package/dist/runtime/components/Edit/Features/Debug/Renderer.vue +240 -0
  64. package/dist/runtime/components/Edit/Features/Debug/Renderer.vue.d.ts +6 -0
  65. package/dist/runtime/components/Edit/Features/Debug/index.vue +7 -165
  66. package/dist/runtime/components/Edit/Features/Delete/index.vue +1 -1
  67. package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue +14 -6
  68. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/index.vue +55 -48
  69. package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue +30 -18
  70. package/dist/runtime/components/Edit/Features/Duplicate/index.vue +6 -8
  71. package/dist/runtime/components/Edit/Features/Edit/index.vue +16 -22
  72. package/dist/runtime/components/Edit/Features/EditForm/index.vue +7 -6
  73. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue +69 -4
  74. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue.d.ts +2 -2
  75. package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue +13 -9
  76. package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue +45 -87
  77. package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue.d.ts +2 -2
  78. package/dist/runtime/components/Edit/Features/EditableField/index.vue +41 -43
  79. package/dist/runtime/components/Edit/Features/Fragments/Dialog/index.vue +11 -9
  80. package/dist/runtime/components/Edit/Features/Fragments/index.vue +3 -3
  81. package/dist/runtime/components/Edit/Features/History/index.vue +5 -2
  82. package/dist/runtime/components/Edit/Features/Hover/Overlay/fragment.glsl +139 -0
  83. package/dist/runtime/components/Edit/Features/Hover/Overlay/index.vue +261 -0
  84. package/dist/runtime/components/Edit/Features/Hover/Overlay/index.vue.d.ts +6 -0
  85. package/dist/runtime/components/Edit/Features/Hover/Overlay/vertex.glsl +117 -0
  86. package/dist/runtime/components/Edit/Features/Hover/index.vue +25 -0
  87. package/dist/runtime/components/Edit/Features/Hover/index.vue.d.ts +2 -0
  88. package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue +5 -7
  89. package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue +19 -27
  90. package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue +32 -28
  91. package/dist/runtime/components/Edit/Features/Library/index.vue +28 -23
  92. package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue +6 -3
  93. package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue +15 -12
  94. package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/index.vue +36 -29
  95. package/dist/runtime/components/Edit/Features/MultiSelect/index.vue +2 -4
  96. package/dist/runtime/components/Edit/Features/Options/Form/Item.vue +6 -1
  97. package/dist/runtime/components/Edit/Features/Options/Form/index.vue +8 -6
  98. package/dist/runtime/components/Edit/Features/Options/index.vue +6 -6
  99. package/dist/runtime/components/Edit/Features/Ownership/Renderer.vue +35 -0
  100. package/dist/runtime/components/Edit/Features/Ownership/Renderer.vue.d.ts +6 -0
  101. package/dist/runtime/components/Edit/Features/Ownership/index.vue +7 -25
  102. package/dist/runtime/components/Edit/Features/ProxyView/index.vue +5 -1
  103. package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue +68 -15
  104. package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Page/index.vue +15 -15
  105. package/dist/runtime/components/Edit/Features/Search/index.vue +4 -1
  106. package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue +39 -74
  107. package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue.d.ts +7 -5
  108. package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/fragment.glsl +106 -0
  109. package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/index.vue +440 -0
  110. package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/index.vue.d.ts +32 -0
  111. package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/vertex.glsl +102 -0
  112. package/dist/runtime/components/Edit/Features/Selection/AddButtons/index.vue +53 -125
  113. package/dist/runtime/components/Edit/Features/Selection/AddButtons/index.vue.d.ts +2 -2
  114. package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue +88 -29
  115. package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue.d.ts +5 -3
  116. package/dist/runtime/components/Edit/Features/Selection/Overlay/vertex.glsl +11 -2
  117. package/dist/runtime/components/Edit/Features/Selection/OverlayFallback/index.vue +2 -2
  118. package/dist/runtime/components/Edit/Features/Selection/index.vue +66 -39
  119. package/dist/runtime/components/Edit/Features/Structure/List/Field/index.vue +2 -2
  120. package/dist/runtime/components/Edit/Features/Structure/List/Item/index.vue +13 -6
  121. package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue +3 -0
  122. package/dist/runtime/components/Edit/Features/Transform/index.vue +2 -27
  123. package/dist/runtime/components/Edit/Features/Translations/Banner/index.vue +17 -11
  124. package/dist/runtime/components/Edit/Features/Translations/index.vue +20 -23
  125. package/dist/runtime/components/Edit/Features/Validations/SidebarItem/index.vue +5 -5
  126. package/dist/runtime/components/Edit/Features/index.vue +17 -7
  127. package/dist/runtime/components/Edit/Form/Text/index.vue +2 -1
  128. package/dist/runtime/components/Edit/Form/Text/index.vue.d.ts +1 -0
  129. package/dist/runtime/components/Edit/Form/Toggle/index.vue +4 -3
  130. package/dist/runtime/components/Edit/Form/Toggle/index.vue.d.ts +12 -2
  131. package/dist/runtime/components/Edit/Indicators/index.vue +1 -1
  132. package/dist/runtime/components/Edit/InfoBox/index.vue +6 -2
  133. package/dist/runtime/components/Edit/InfoBox/index.vue.d.ts +12 -2
  134. package/dist/runtime/components/Edit/Konami/Game/index.vue +5 -5
  135. package/dist/runtime/components/Edit/{Features/Publish/Dialog/ScheduleDate.vue → ScheduleDate/index.vue} +6 -58
  136. package/dist/runtime/components/Edit/ScheduleDate/index.vue.d.ts +23 -0
  137. package/dist/runtime/components/Edit/ShortcutIndicator/index.vue +3 -0
  138. package/dist/runtime/components/Edit/Transition/Height.vue +95 -0
  139. package/dist/runtime/components/Edit/Transition/Height.vue.d.ts +36 -0
  140. package/dist/runtime/components/Edit/index.d.ts +7 -3
  141. package/dist/runtime/components/Edit/index.js +12 -4
  142. package/dist/runtime/composables/defineBlokkli.js +4 -2
  143. package/dist/runtime/css/output.css +1 -1
  144. package/dist/runtime/helpers/animationProvider.d.ts +35 -1
  145. package/dist/runtime/helpers/animationProvider.js +179 -48
  146. package/dist/runtime/helpers/composables/defineRenderer.d.ts +8 -0
  147. package/dist/runtime/helpers/composables/defineRenderer.js +8 -0
  148. package/dist/runtime/helpers/composables/useStateBasedCache.d.ts +4 -0
  149. package/dist/runtime/helpers/composables/useStateBasedCache.js +13 -0
  150. package/dist/runtime/helpers/composables/useStickyToolbar.d.ts +4 -1
  151. package/dist/runtime/helpers/composables/useStickyToolbar.js +53 -35
  152. package/dist/runtime/helpers/definitionProvider.d.ts +1 -1
  153. package/dist/runtime/helpers/dom/index.d.ts +1 -0
  154. package/dist/runtime/helpers/domProvider.d.ts +54 -14
  155. package/dist/runtime/helpers/domProvider.js +168 -134
  156. package/dist/runtime/helpers/index.d.ts +1 -8
  157. package/dist/runtime/helpers/index.js +1 -84
  158. package/dist/runtime/helpers/providers/blocks.d.ts +10 -0
  159. package/dist/runtime/helpers/providers/blocks.js +91 -0
  160. package/dist/runtime/helpers/providers/directive.d.ts +24 -0
  161. package/dist/runtime/helpers/providers/directive.js +205 -0
  162. package/dist/runtime/helpers/providers/element.d.ts +6 -0
  163. package/dist/runtime/helpers/providers/element.js +35 -0
  164. package/dist/runtime/helpers/providers/fields.d.ts +8 -0
  165. package/dist/runtime/helpers/providers/fields.js +47 -0
  166. package/dist/runtime/helpers/selectionProvider.d.ts +11 -11
  167. package/dist/runtime/helpers/selectionProvider.js +38 -45
  168. package/dist/runtime/helpers/stateProvider.d.ts +7 -2
  169. package/dist/runtime/helpers/stateProvider.js +83 -14
  170. package/dist/runtime/helpers/storageProvider.d.ts +3 -2
  171. package/dist/runtime/helpers/storageProvider.js +6 -2
  172. package/dist/runtime/helpers/symbols.d.ts +1 -0
  173. package/dist/runtime/helpers/symbols.js +1 -0
  174. package/dist/runtime/helpers/themeProvider.d.ts +2 -1
  175. package/dist/runtime/helpers/themeProvider.js +24 -14
  176. package/dist/runtime/helpers/typesProvider.js +10 -26
  177. package/dist/runtime/helpers/uiProvider.d.ts +11 -3
  178. package/dist/runtime/helpers/uiProvider.js +45 -17
  179. package/dist/runtime/icons/calendar.svg +1 -0
  180. package/dist/runtime/icons/clock.svg +1 -0
  181. package/dist/runtime/icons/comment_add.svg +1 -5
  182. package/dist/runtime/icons/delete.svg +1 -8
  183. package/dist/runtime/icons/duplicate.svg +1 -12
  184. package/dist/runtime/icons/edit.svg +1 -8
  185. package/dist/runtime/icons/reusable.svg +1 -5
  186. package/dist/runtime/plugins/blokkliDirectives.js +96 -0
  187. package/dist/runtime/types/index.d.ts +66 -35
  188. package/package.json +1 -1
  189. package/dist/runtime/components/Edit/DragInteractions/index.vue +0 -401
  190. package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Group/index.vue +0 -63
  191. package/dist/runtime/components/Edit/Features/Selection/AddButtons/AddButtonsField.vue +0 -54
  192. package/dist/runtime/plugins/blokkliEditable.js +0 -31
  193. /package/dist/runtime/components/Edit/{DragInteractions → Features/BlockScheduler}/index.vue.d.ts +0 -0
  194. /package/dist/runtime/plugins/{blokkliEditable.d.ts → blokkliDirectives.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.18";
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,17 +1267,65 @@ 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"
1286
+ const blockSchedulerChangesPreview$3 = {
1287
+ source: "Changes to be applied",
1288
+ translation: "Anzuwendende Änderungen"
1289
+ };
1290
+ const blockSchedulerDialogLead$3 = {
1291
+ source: "Schedule automatic publishing and unpublishing dates for the selected blocks.",
1292
+ translation: "Planen Sie automatische Veröffentlichungs- und Depublikationsdaten für die ausgewählten Blöcke."
1293
+ };
1294
+ const blockSchedulerDialogPublishOn$3 = {
1295
+ source: "Publish on",
1296
+ translation: "Veröffentlichen am"
1297
+ };
1298
+ const blockSchedulerDialogSubmit$3 = {
1299
+ source: "Save schedule",
1300
+ translation: "Planung speichern"
1301
+ };
1302
+ const blockSchedulerDialogTitle$3 = {
1303
+ source: "Manage scheduling",
1304
+ translation: "Planung verwalten"
1305
+ };
1306
+ const blockSchedulerDialogUnpublishOn$3 = {
1307
+ source: "Unpublish on",
1308
+ translation: "Depublizieren am"
1309
+ };
1310
+ const blockSchedulerMixedDates$3 = {
1311
+ source: "Selected blocks have different dates: @dates",
1312
+ translation: "Ausgewählte Blöcke haben unterschiedliche Daten: @dates"
1313
+ };
1314
+ const blockSchedulerNoChanges$3 = {
1315
+ source: "No changes to be applied.",
1316
+ translation: "Keine Änderungen vorhanden."
1317
+ };
1318
+ const blockSchedulerOverride$3 = {
1319
+ source: "Set date for all",
1320
+ translation: "Datum für alle setzen"
1321
+ };
1322
+ const blockSchedulerSuccessMessage$3 = {
1323
+ source: "Successfully updated schedule dates.",
1324
+ translation: "Planungsdaten erfolgreich aktualisiert."
1325
+ };
1326
+ const bundle$3 = {
1327
+ source: "Bundle",
1328
+ translation: "Typ"
1277
1329
  };
1278
1330
  const cancelSelection$3 = {
1279
1331
  source: "Cancel selection",
@@ -1347,10 +1399,6 @@ const commentAdd$3 = {
1347
1399
  source: "Add comment",
1348
1400
  translation: "Kommentar hinzufügen"
1349
1401
  };
1350
- const commentBody$3 = {
1351
- source: "Comment",
1352
- translation: "Kommentar"
1353
- };
1354
1402
  const commentBodyPlaceholder$3 = {
1355
1403
  source: "Add reply",
1356
1404
  translation: "Antwort hinzufügen"
@@ -1377,7 +1425,7 @@ const conversionsConvertTo$3 = {
1377
1425
  };
1378
1426
  const convertTo$3 = {
1379
1427
  source: "Convert to...",
1380
- translation: "Konvertieren"
1428
+ translation: "Konvertieren..."
1381
1429
  };
1382
1430
  const copiedToClipboardMessage$3 = {
1383
1431
  source: "\"@text\" has been copied to your clipboard",
@@ -1456,8 +1504,8 @@ const duplicateError$3 = {
1456
1504
  translation: "Die Elemente konnten nicht dupliziert werden."
1457
1505
  };
1458
1506
  const edit$3 = {
1459
- source: "Edit",
1460
- translation: "Bearbeiten"
1507
+ source: "Edit...",
1508
+ translation: "Bearbeiten..."
1461
1509
  };
1462
1510
  const editFormBlockAdd$3 = {
1463
1511
  source: "Add @label",
@@ -1483,10 +1531,22 @@ const editIndicatorLabel$3 = {
1483
1531
  source: "Edit blocks",
1484
1532
  translation: "Elemente bearbeiten"
1485
1533
  };
1534
+ const editIndicatorLabelReview$3 = {
1535
+ source: "Review changes",
1536
+ translation: "Änderungen überprüfen"
1537
+ };
1538
+ const editIndicatorLabelView$3 = {
1539
+ source: "View changes",
1540
+ translation: "Änderungen ansehen"
1541
+ };
1486
1542
  const editableCommandEdit$3 = {
1487
1543
  source: "Edit field \"@name\"",
1488
1544
  translation: "Feld «@name» bearbeiten"
1489
1545
  };
1546
+ const editableFieldDiscard$3 = {
1547
+ source: "Discard",
1548
+ translation: "Verwerfen"
1549
+ };
1490
1550
  const entityTitleTourText$3 = {
1491
1551
  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
1552
  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 +1763,14 @@ const feature_history_setting_useMouseButtons_label$3 = {
1703
1763
  source: "Use mouse buttons for undo/redo",
1704
1764
  translation: "Maustasten für Rückgängig/Wiederherstellen verwenden"
1705
1765
  };
1766
+ const feature_hover_description$3 = {
1767
+ source: "Renders a border around blocks that are currently being hovered.",
1768
+ translation: ""
1769
+ };
1770
+ const feature_hover_label$3 = {
1771
+ source: "Hover",
1772
+ translation: ""
1773
+ };
1706
1774
  const feature_library_description$3 = {
1707
1775
  source: "Implements support for a block library to manage reusable blocks.",
1708
1776
  translation: "Implementiert Unterstützung für eine Block-Bibliothek zur Verwaltung wiederverwendbarer Blöcke."
@@ -1992,8 +2060,8 @@ const importExistingTitle$3 = {
1992
2060
  translation: "Importieren..."
1993
2061
  };
1994
2062
  const libraryAdd$3 = {
1995
- source: "Add to library",
1996
- translation: "Zur Bibliothek hinzufügen"
2063
+ source: "Add to library...",
2064
+ translation: "Zur Bibliothek hinzufügen..."
1997
2065
  };
1998
2066
  const libraryAddDescription$3 = {
1999
2067
  source: "Add a reusable block from the block library.",
@@ -2071,6 +2139,10 @@ const libraryPreviewLabel$3 = {
2071
2139
  source: "Preview",
2072
2140
  translation: "Vorschau"
2073
2141
  };
2142
+ const manageSchedule$3 = {
2143
+ source: "Manage schedule...",
2144
+ translation: "Planung verwalten..."
2145
+ };
2074
2146
  const maskHide$3 = {
2075
2147
  source: "Hide non-editable areas",
2076
2148
  translation: "Nicht-editierbare Bereiche verstecken"
@@ -2107,6 +2179,14 @@ const multipleItemsLabel$3 = {
2107
2179
  source: "Items",
2108
2180
  translation: "Elemente"
2109
2181
  };
2182
+ const notSet$3 = {
2183
+ source: "Not set",
2184
+ translation: "Nicht gesetzt"
2185
+ };
2186
+ const notSupported$3 = {
2187
+ source: "Not supported",
2188
+ translation: "Nicht unterstützt"
2189
+ };
2110
2190
  const optionBkVisibleLanguagesAll$3 = {
2111
2191
  source: "All languages",
2112
2192
  translation: "Alle Sprachen"
@@ -2343,14 +2423,6 @@ const publishScheduleDateTooSoon$3 = {
2343
2423
  source: "The scheduled date must be at least 2 minutes in the future",
2344
2424
  translation: "Das geplante Datum muss mindestens 2 Minuten in der Zukunft liegen"
2345
2425
  };
2346
- const publishScheduleInSevenDays$3 = {
2347
- source: "In 7 days",
2348
- translation: "In 7 Tagen"
2349
- };
2350
- const publishScheduleNextMonday$3 = {
2351
- source: "Next Monday",
2352
- translation: "Nächster Montag"
2353
- };
2354
2426
  const publishSchedulePublication$3 = {
2355
2427
  source: "Schedule publication",
2356
2428
  translation: "Veröffentlichung planen"
@@ -2363,9 +2435,13 @@ const publishScheduleSuccess$3 = {
2363
2435
  source: "Publication scheduled for @date",
2364
2436
  translation: "Veröffentlichung für @date geplant"
2365
2437
  };
2366
- const publishScheduleTomorrow$3 = {
2367
- source: "Tomorrow",
2368
- translation: "Morgen"
2438
+ const publishScheduledBlockPlural$3 = {
2439
+ source: "@count blocks are scheduled to be published on @date",
2440
+ translation: "@count Blöcke sind zur Veröffentlichung am @date geplant"
2441
+ };
2442
+ const publishScheduledBlockSingular$3 = {
2443
+ source: "1 block is scheduled to be published on @date",
2444
+ translation: "1 Block ist zur Veröffentlichung am @date geplant"
2369
2445
  };
2370
2446
  const publishScheduledInfo$3 = {
2371
2447
  source: "You can still make changes until the scheduled publication date.",
@@ -2439,10 +2515,6 @@ const revertSuccess$3 = {
2439
2515
  source: "All changes have been discarded.",
2440
2516
  translation: "Alle Änderungen wurden verworfen."
2441
2517
  };
2442
- const save$3 = {
2443
- source: "Save",
2444
- translation: "Speichern"
2445
- };
2446
2518
  const scheduledFor$3 = {
2447
2519
  source: "The changes will be published on this date.",
2448
2520
  translation: "Die Änderungen werden an diesem Datum publiziert."
@@ -2475,6 +2547,10 @@ const selectAllOfBundle$3 = {
2475
2547
  source: "Select all \"@bundle\" blocks",
2476
2548
  translation: "Alle «@bundle» Blöcke auswählen"
2477
2549
  };
2550
+ const selectedIsNew$3 = {
2551
+ source: "New",
2552
+ translation: "Neu"
2553
+ };
2478
2554
  const selectionActionGroupTitle$3 = {
2479
2555
  source: "Selection",
2480
2556
  translation: "Auswahl"
@@ -2659,6 +2735,22 @@ const validationsTourText$3 = {
2659
2735
  source: "See validation errors for content or structure on the current page.",
2660
2736
  translation: "Zeigt Validierungsfehler für Inhalte auf der aktuellen Seite an."
2661
2737
  };
2738
+ const viewBannerReviewText$3 = {
2739
+ source: "You can view and add comments but cannot edit content.",
2740
+ translation: "Sie können Kommentare ansehen und hinzufügen, aber keine Inhalte bearbeiten."
2741
+ };
2742
+ const viewBannerReviewTitle$3 = {
2743
+ source: "You are in review mode.",
2744
+ translation: "Sie befinden sich im Review-Modus."
2745
+ };
2746
+ const viewBannerViewText$3 = {
2747
+ source: "You can view comments but cannot edit content.",
2748
+ translation: "Sie können Kommentare ansehen, aber keine Inhalte bearbeiten."
2749
+ };
2750
+ const viewBannerViewTitle$3 = {
2751
+ source: "You are in view-only mode.",
2752
+ translation: "Sie befinden sich im Ansichtsmodus."
2753
+ };
2662
2754
  const de = {
2663
2755
  actionsDropdownToolip: actionsDropdownToolip$3,
2664
2756
  "addBlockCommand.appendInField": {
@@ -2679,6 +2771,7 @@ const de = {
2679
2771
  addButtonBundleBefore: addButtonBundleBefore$3,
2680
2772
  addButtonBundleInsideField: addButtonBundleInsideField$3,
2681
2773
  addButtonInsideField: addButtonInsideField$3,
2774
+ addCommentHeader: addCommentHeader$3,
2682
2775
  addCommentToItem: addCommentToItem$3,
2683
2776
  addListInputPlaceholder: addListInputPlaceholder$3,
2684
2777
  addListItemFavoriteAdd: addListItemFavoriteAdd$3,
@@ -2733,9 +2826,21 @@ const de = {
2733
2826
  assistantPromptPlaceholder: assistantPromptPlaceholder$3,
2734
2827
  blockAddListTourText: blockAddListTourText$3,
2735
2828
  blockAddListTourTitle: blockAddListTourTitle$3,
2829
+ blockOption_bkHiddenGlobally_description: blockOption_bkHiddenGlobally_description$3,
2736
2830
  blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label$3,
2831
+ blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description$3,
2737
2832
  blockOption_bkVisibleLanguages_label: blockOption_bkVisibleLanguages_label$3,
2738
- cancel: cancel$3,
2833
+ blockSchedulerChangesPreview: blockSchedulerChangesPreview$3,
2834
+ blockSchedulerDialogLead: blockSchedulerDialogLead$3,
2835
+ blockSchedulerDialogPublishOn: blockSchedulerDialogPublishOn$3,
2836
+ blockSchedulerDialogSubmit: blockSchedulerDialogSubmit$3,
2837
+ blockSchedulerDialogTitle: blockSchedulerDialogTitle$3,
2838
+ blockSchedulerDialogUnpublishOn: blockSchedulerDialogUnpublishOn$3,
2839
+ blockSchedulerMixedDates: blockSchedulerMixedDates$3,
2840
+ blockSchedulerNoChanges: blockSchedulerNoChanges$3,
2841
+ blockSchedulerOverride: blockSchedulerOverride$3,
2842
+ blockSchedulerSuccessMessage: blockSchedulerSuccessMessage$3,
2843
+ bundle: bundle$3,
2739
2844
  cancelSelection: cancelSelection$3,
2740
2845
  clipboard: clipboard$3,
2741
2846
  clipboardCopyShortcutHelp: clipboardCopyShortcutHelp$3,
@@ -2778,7 +2883,6 @@ const de = {
2778
2883
  commandPaletteOpen: commandPaletteOpen$3,
2779
2884
  commandPaletteTourText: commandPaletteTourText$3,
2780
2885
  commentAdd: commentAdd$3,
2781
- commentBody: commentBody$3,
2782
2886
  commentBodyPlaceholder: commentBodyPlaceholder$3,
2783
2887
  commentSave: commentSave$3,
2784
2888
  comments: comments$3,
@@ -2812,7 +2916,10 @@ const de = {
2812
2916
  editFormEntityEdit: editFormEntityEdit$3,
2813
2917
  editFormEntityTranslate: editFormEntityTranslate$3,
2814
2918
  editIndicatorLabel: editIndicatorLabel$3,
2919
+ editIndicatorLabelReview: editIndicatorLabelReview$3,
2920
+ editIndicatorLabelView: editIndicatorLabelView$3,
2815
2921
  editableCommandEdit: editableCommandEdit$3,
2922
+ editableFieldDiscard: editableFieldDiscard$3,
2816
2923
  entityTitleTourText: entityTitleTourText$3,
2817
2924
  entityTitleTourTitle: entityTitleTourTitle$3,
2818
2925
  exitDescription: exitDescription$3,
@@ -2876,6 +2983,14 @@ const de = {
2876
2983
  "feature_block-add-list_setting_hideDisabledBlocks_label": {
2877
2984
  source: "Hide blocks that can't be added",
2878
2985
  translation: "Blöcke ausblenden, die nicht hinzugefügt werden können"
2986
+ },
2987
+ "feature_block-scheduler_description": {
2988
+ source: "Adds support for scheduling blocks.",
2989
+ translation: ""
2990
+ },
2991
+ "feature_block-scheduler_label": {
2992
+ source: "Block Scheduler",
2993
+ translation: ""
2879
2994
  },
2880
2995
  feature_clipboard_description: feature_clipboard_description$3,
2881
2996
  feature_clipboard_label: feature_clipboard_label$3,
@@ -2955,6 +3070,8 @@ const de = {
2955
3070
  feature_history_label: feature_history_label$3,
2956
3071
  feature_history_setting_useMouseButtons_description: feature_history_setting_useMouseButtons_description$3,
2957
3072
  feature_history_setting_useMouseButtons_label: feature_history_setting_useMouseButtons_label$3,
3073
+ feature_hover_description: feature_hover_description$3,
3074
+ feature_hover_label: feature_hover_label$3,
2958
3075
  "feature_import-existing_description": {
2959
3076
  source: "Implements a menu action that renders a dialog to import blocks from another entity.",
2960
3077
  translation: "Implementiert eine Menü-Aktion, die einen Dialog zum Importieren von Blöcken aus einer anderen Entität anzeigt."
@@ -3103,6 +3220,7 @@ const de = {
3103
3220
  libraryPlaceSearchInputPlaceholder: libraryPlaceSearchInputPlaceholder$3,
3104
3221
  libraryPlaceSearchLabel: libraryPlaceSearchLabel$3,
3105
3222
  libraryPreviewLabel: libraryPreviewLabel$3,
3223
+ manageSchedule: manageSchedule$3,
3106
3224
  maskHide: maskHide$3,
3107
3225
  maskShow: maskShow$3,
3108
3226
  maskToggle: maskToggle$3,
@@ -3112,6 +3230,8 @@ const de = {
3112
3230
  mediaLibraryReplaceMedia: mediaLibraryReplaceMedia$3,
3113
3231
  mediaLibraryTourText: mediaLibraryTourText$3,
3114
3232
  multipleItemsLabel: multipleItemsLabel$3,
3233
+ notSet: notSet$3,
3234
+ notSupported: notSupported$3,
3115
3235
  optionBkVisibleLanguagesAll: optionBkVisibleLanguagesAll$3,
3116
3236
  "optionsCommand.selectCheckboxValue": {
3117
3237
  source: "Select \"@value\" in \"@option\"",
@@ -3183,12 +3303,11 @@ const de = {
3183
3303
  publishSaveContents: publishSaveContents$3,
3184
3304
  publishScheduleDate: publishScheduleDate$3,
3185
3305
  publishScheduleDateTooSoon: publishScheduleDateTooSoon$3,
3186
- publishScheduleInSevenDays: publishScheduleInSevenDays$3,
3187
- publishScheduleNextMonday: publishScheduleNextMonday$3,
3188
3306
  publishSchedulePublication: publishSchedulePublication$3,
3189
3307
  publishSchedulePublications: publishSchedulePublications$3,
3190
3308
  publishScheduleSuccess: publishScheduleSuccess$3,
3191
- publishScheduleTomorrow: publishScheduleTomorrow$3,
3309
+ publishScheduledBlockPlural: publishScheduledBlockPlural$3,
3310
+ publishScheduledBlockSingular: publishScheduledBlockSingular$3,
3192
3311
  publishScheduledInfo: publishScheduledInfo$3,
3193
3312
  publishStatus: publishStatus$3,
3194
3313
  publishSuccess: publishSuccess$3,
@@ -3207,7 +3326,6 @@ const de = {
3207
3326
  revertMenuDescription: revertMenuDescription$3,
3208
3327
  revertMenuTitle: revertMenuTitle$3,
3209
3328
  revertSuccess: revertSuccess$3,
3210
- save: save$3,
3211
3329
  scheduledFor: scheduledFor$3,
3212
3330
  searchBoxNoResultsFound: searchBoxNoResultsFound$3,
3213
3331
  searchBoxOnThisPage: searchBoxOnThisPage$3,
@@ -3216,6 +3334,7 @@ const de = {
3216
3334
  searchTourText: searchTourText$3,
3217
3335
  selectAllBlocks: selectAllBlocks$3,
3218
3336
  selectAllOfBundle: selectAllOfBundle$3,
3337
+ selectedIsNew: selectedIsNew$3,
3219
3338
  selectionActionGroupTitle: selectionActionGroupTitle$3,
3220
3339
  settingsAdvanced: settingsAdvanced$3,
3221
3340
  settingsAppearance: settingsAppearance$3,
@@ -3269,7 +3388,11 @@ const de = {
3269
3388
  unexpectedMutationError: unexpectedMutationError$3,
3270
3389
  validationsNoneFound: validationsNoneFound$3,
3271
3390
  validationsToolbarLabel: validationsToolbarLabel$3,
3272
- validationsTourText: validationsTourText$3
3391
+ validationsTourText: validationsTourText$3,
3392
+ viewBannerReviewText: viewBannerReviewText$3,
3393
+ viewBannerReviewTitle: viewBannerReviewTitle$3,
3394
+ viewBannerViewText: viewBannerViewText$3,
3395
+ viewBannerViewTitle: viewBannerViewTitle$3
3273
3396
  };
3274
3397
 
3275
3398
  const actionsDropdownToolip$2 = {
@@ -3300,8 +3423,12 @@ const addButtonInsideField$2 = {
3300
3423
  source: "Add inside @parentBundle » @fieldLabel...",
3301
3424
  translation: "Ajouter dans @parentBundle » @fieldLabel..."
3302
3425
  };
3426
+ const addCommentHeader$2 = {
3427
+ source: "Add Comment",
3428
+ translation: ""
3429
+ };
3303
3430
  const addCommentToItem$2 = {
3304
- source: "Comment",
3431
+ source: "Add Comment...",
3305
3432
  translation: "Commenter"
3306
3433
  };
3307
3434
  const addListInputPlaceholder$2 = {
@@ -3516,17 +3643,65 @@ const blockAddListTourTitle$2 = {
3516
3643
  source: "Favorite blocks",
3517
3644
  translation: ""
3518
3645
  };
3646
+ const blockOption_bkHiddenGlobally_description$2 = {
3647
+ source: "Always hides the block.",
3648
+ translation: ""
3649
+ };
3519
3650
  const blockOption_bkHiddenGlobally_label$2 = {
3520
3651
  source: "Hide globally",
3521
3652
  translation: ""
3522
3653
  };
3654
+ const blockOption_bkVisibleLanguages_description$2 = {
3655
+ source: "Only show on specific languages.",
3656
+ translation: ""
3657
+ };
3523
3658
  const blockOption_bkVisibleLanguages_label$2 = {
3524
3659
  source: "Visible languages",
3525
3660
  translation: ""
3526
3661
  };
3527
- const cancel$2 = {
3528
- source: "Cancel",
3529
- translation: "Annuler"
3662
+ const blockSchedulerChangesPreview$2 = {
3663
+ source: "Changes to be applied",
3664
+ translation: ""
3665
+ };
3666
+ const blockSchedulerDialogLead$2 = {
3667
+ source: "Schedule automatic publishing and unpublishing dates for the selected blocks.",
3668
+ translation: ""
3669
+ };
3670
+ const blockSchedulerDialogPublishOn$2 = {
3671
+ source: "Publish on",
3672
+ translation: ""
3673
+ };
3674
+ const blockSchedulerDialogSubmit$2 = {
3675
+ source: "Save schedule",
3676
+ translation: ""
3677
+ };
3678
+ const blockSchedulerDialogTitle$2 = {
3679
+ source: "Manage scheduling",
3680
+ translation: ""
3681
+ };
3682
+ const blockSchedulerDialogUnpublishOn$2 = {
3683
+ source: "Unpublish on",
3684
+ translation: ""
3685
+ };
3686
+ const blockSchedulerMixedDates$2 = {
3687
+ source: "Selected blocks have different dates: @dates",
3688
+ translation: ""
3689
+ };
3690
+ const blockSchedulerNoChanges$2 = {
3691
+ source: "No changes to be applied.",
3692
+ translation: ""
3693
+ };
3694
+ const blockSchedulerOverride$2 = {
3695
+ source: "Set date for all",
3696
+ translation: ""
3697
+ };
3698
+ const blockSchedulerSuccessMessage$2 = {
3699
+ source: "Successfully updated schedule dates.",
3700
+ translation: ""
3701
+ };
3702
+ const bundle$2 = {
3703
+ source: "Bundle",
3704
+ translation: ""
3530
3705
  };
3531
3706
  const cancelSelection$2 = {
3532
3707
  source: "Cancel selection",
@@ -3600,10 +3775,6 @@ const commentAdd$2 = {
3600
3775
  source: "Add comment",
3601
3776
  translation: ""
3602
3777
  };
3603
- const commentBody$2 = {
3604
- source: "Comment",
3605
- translation: "Commentaire"
3606
- };
3607
3778
  const commentBodyPlaceholder$2 = {
3608
3779
  source: "Add reply",
3609
3780
  translation: ""
@@ -3709,7 +3880,7 @@ const duplicateError$2 = {
3709
3880
  translation: "Les éléments n'ont pas pu être dupliqués."
3710
3881
  };
3711
3882
  const edit$2 = {
3712
- source: "Edit",
3883
+ source: "Edit...",
3713
3884
  translation: "Modifier"
3714
3885
  };
3715
3886
  const editFormBlockAdd$2 = {
@@ -3736,10 +3907,22 @@ const editIndicatorLabel$2 = {
3736
3907
  source: "Edit blocks",
3737
3908
  translation: "Modifier les éléments"
3738
3909
  };
3910
+ const editIndicatorLabelReview$2 = {
3911
+ source: "Review changes",
3912
+ translation: ""
3913
+ };
3914
+ const editIndicatorLabelView$2 = {
3915
+ source: "View changes",
3916
+ translation: ""
3917
+ };
3739
3918
  const editableCommandEdit$2 = {
3740
3919
  source: "Edit field \"@name\"",
3741
3920
  translation: ""
3742
3921
  };
3922
+ const editableFieldDiscard$2 = {
3923
+ source: "Discard",
3924
+ translation: ""
3925
+ };
3743
3926
  const entityTitleTourText$2 = {
3744
3927
  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
3928
  translation: ""
@@ -3956,6 +4139,14 @@ const feature_history_setting_useMouseButtons_label$2 = {
3956
4139
  source: "Use mouse buttons for undo/redo",
3957
4140
  translation: "Utiliser les boutons de la souris pour annuler/rétablir"
3958
4141
  };
4142
+ const feature_hover_description$2 = {
4143
+ source: "Renders a border around blocks that are currently being hovered.",
4144
+ translation: ""
4145
+ };
4146
+ const feature_hover_label$2 = {
4147
+ source: "Hover",
4148
+ translation: ""
4149
+ };
3959
4150
  const feature_library_description$2 = {
3960
4151
  source: "Implements support for a block library to manage reusable blocks.",
3961
4152
  translation: "Implémente le support d'une bibliothèque de blocs pour gérer les blocs réutilisables."
@@ -4245,7 +4436,7 @@ const importExistingTitle$2 = {
4245
4436
  translation: "Importer..."
4246
4437
  };
4247
4438
  const libraryAdd$2 = {
4248
- source: "Add to library",
4439
+ source: "Add to library...",
4249
4440
  translation: "Ajouter à la bibliothèque"
4250
4441
  };
4251
4442
  const libraryAddDescription$2 = {
@@ -4324,6 +4515,10 @@ const libraryPreviewLabel$2 = {
4324
4515
  source: "Preview",
4325
4516
  translation: "Aperçu"
4326
4517
  };
4518
+ const manageSchedule$2 = {
4519
+ source: "Manage schedule...",
4520
+ translation: ""
4521
+ };
4327
4522
  const maskHide$2 = {
4328
4523
  source: "Hide non-editable areas",
4329
4524
  translation: "Masquer les champs de contenu"
@@ -4360,6 +4555,14 @@ const multipleItemsLabel$2 = {
4360
4555
  source: "Items",
4361
4556
  translation: "Éléments"
4362
4557
  };
4558
+ const notSet$2 = {
4559
+ source: "Not set",
4560
+ translation: ""
4561
+ };
4562
+ const notSupported$2 = {
4563
+ source: "Not supported",
4564
+ translation: ""
4565
+ };
4363
4566
  const optionBkVisibleLanguagesAll$2 = {
4364
4567
  source: "All languages",
4365
4568
  translation: ""
@@ -4596,14 +4799,6 @@ const publishScheduleDateTooSoon$2 = {
4596
4799
  source: "The scheduled date must be at least 2 minutes in the future",
4597
4800
  translation: ""
4598
4801
  };
4599
- const publishScheduleInSevenDays$2 = {
4600
- source: "In 7 days",
4601
- translation: ""
4602
- };
4603
- const publishScheduleNextMonday$2 = {
4604
- source: "Next Monday",
4605
- translation: ""
4606
- };
4607
4802
  const publishSchedulePublication$2 = {
4608
4803
  source: "Schedule publication",
4609
4804
  translation: ""
@@ -4616,8 +4811,12 @@ const publishScheduleSuccess$2 = {
4616
4811
  source: "Publication scheduled for @date",
4617
4812
  translation: ""
4618
4813
  };
4619
- const publishScheduleTomorrow$2 = {
4620
- source: "Tomorrow",
4814
+ const publishScheduledBlockPlural$2 = {
4815
+ source: "@count blocks are scheduled to be published on @date",
4816
+ translation: ""
4817
+ };
4818
+ const publishScheduledBlockSingular$2 = {
4819
+ source: "1 block is scheduled to be published on @date",
4621
4820
  translation: ""
4622
4821
  };
4623
4822
  const publishScheduledInfo$2 = {
@@ -4692,10 +4891,6 @@ const revertSuccess$2 = {
4692
4891
  source: "All changes have been discarded.",
4693
4892
  translation: "Toutes les modifications ont été annulées."
4694
4893
  };
4695
- const save$2 = {
4696
- source: "Save",
4697
- translation: "Save"
4698
- };
4699
4894
  const scheduledFor$2 = {
4700
4895
  source: "The changes will be published on this date.",
4701
4896
  translation: ""
@@ -4728,6 +4923,10 @@ const selectAllOfBundle$2 = {
4728
4923
  source: "Select all \"@bundle\" blocks",
4729
4924
  translation: ""
4730
4925
  };
4926
+ const selectedIsNew$2 = {
4927
+ source: "New",
4928
+ translation: ""
4929
+ };
4731
4930
  const selectionActionGroupTitle$2 = {
4732
4931
  source: "Selection",
4733
4932
  translation: ""
@@ -4912,6 +5111,22 @@ const validationsTourText$2 = {
4912
5111
  source: "See validation errors for content or structure on the current page.",
4913
5112
  translation: ""
4914
5113
  };
5114
+ const viewBannerReviewText$2 = {
5115
+ source: "You can view and add comments but cannot edit content.",
5116
+ translation: ""
5117
+ };
5118
+ const viewBannerReviewTitle$2 = {
5119
+ source: "You are in review mode.",
5120
+ translation: ""
5121
+ };
5122
+ const viewBannerViewText$2 = {
5123
+ source: "You can view comments but cannot edit content.",
5124
+ translation: ""
5125
+ };
5126
+ const viewBannerViewTitle$2 = {
5127
+ source: "You are in view-only mode.",
5128
+ translation: ""
5129
+ };
4915
5130
  const fr = {
4916
5131
  actionsDropdownToolip: actionsDropdownToolip$2,
4917
5132
  "addBlockCommand.appendInField": {
@@ -4932,6 +5147,7 @@ const fr = {
4932
5147
  addButtonBundleBefore: addButtonBundleBefore$2,
4933
5148
  addButtonBundleInsideField: addButtonBundleInsideField$2,
4934
5149
  addButtonInsideField: addButtonInsideField$2,
5150
+ addCommentHeader: addCommentHeader$2,
4935
5151
  addCommentToItem: addCommentToItem$2,
4936
5152
  addListInputPlaceholder: addListInputPlaceholder$2,
4937
5153
  addListItemFavoriteAdd: addListItemFavoriteAdd$2,
@@ -4986,9 +5202,21 @@ const fr = {
4986
5202
  assistantPromptPlaceholder: assistantPromptPlaceholder$2,
4987
5203
  blockAddListTourText: blockAddListTourText$2,
4988
5204
  blockAddListTourTitle: blockAddListTourTitle$2,
5205
+ blockOption_bkHiddenGlobally_description: blockOption_bkHiddenGlobally_description$2,
4989
5206
  blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label$2,
5207
+ blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description$2,
4990
5208
  blockOption_bkVisibleLanguages_label: blockOption_bkVisibleLanguages_label$2,
4991
- cancel: cancel$2,
5209
+ blockSchedulerChangesPreview: blockSchedulerChangesPreview$2,
5210
+ blockSchedulerDialogLead: blockSchedulerDialogLead$2,
5211
+ blockSchedulerDialogPublishOn: blockSchedulerDialogPublishOn$2,
5212
+ blockSchedulerDialogSubmit: blockSchedulerDialogSubmit$2,
5213
+ blockSchedulerDialogTitle: blockSchedulerDialogTitle$2,
5214
+ blockSchedulerDialogUnpublishOn: blockSchedulerDialogUnpublishOn$2,
5215
+ blockSchedulerMixedDates: blockSchedulerMixedDates$2,
5216
+ blockSchedulerNoChanges: blockSchedulerNoChanges$2,
5217
+ blockSchedulerOverride: blockSchedulerOverride$2,
5218
+ blockSchedulerSuccessMessage: blockSchedulerSuccessMessage$2,
5219
+ bundle: bundle$2,
4992
5220
  cancelSelection: cancelSelection$2,
4993
5221
  clipboard: clipboard$2,
4994
5222
  clipboardCopyShortcutHelp: clipboardCopyShortcutHelp$2,
@@ -5031,7 +5259,6 @@ const fr = {
5031
5259
  commandPaletteOpen: commandPaletteOpen$2,
5032
5260
  commandPaletteTourText: commandPaletteTourText$2,
5033
5261
  commentAdd: commentAdd$2,
5034
- commentBody: commentBody$2,
5035
5262
  commentBodyPlaceholder: commentBodyPlaceholder$2,
5036
5263
  commentSave: commentSave$2,
5037
5264
  comments: comments$2,
@@ -5065,7 +5292,10 @@ const fr = {
5065
5292
  editFormEntityEdit: editFormEntityEdit$2,
5066
5293
  editFormEntityTranslate: editFormEntityTranslate$2,
5067
5294
  editIndicatorLabel: editIndicatorLabel$2,
5295
+ editIndicatorLabelReview: editIndicatorLabelReview$2,
5296
+ editIndicatorLabelView: editIndicatorLabelView$2,
5068
5297
  editableCommandEdit: editableCommandEdit$2,
5298
+ editableFieldDiscard: editableFieldDiscard$2,
5069
5299
  entityTitleTourText: entityTitleTourText$2,
5070
5300
  entityTitleTourTitle: entityTitleTourTitle$2,
5071
5301
  exitDescription: exitDescription$2,
@@ -5129,6 +5359,14 @@ const fr = {
5129
5359
  "feature_block-add-list_setting_hideDisabledBlocks_label": {
5130
5360
  source: "Hide blocks that can't be added",
5131
5361
  translation: "Masquer les blocs qui ne peuvent pas être ajoutés"
5362
+ },
5363
+ "feature_block-scheduler_description": {
5364
+ source: "Adds support for scheduling blocks.",
5365
+ translation: ""
5366
+ },
5367
+ "feature_block-scheduler_label": {
5368
+ source: "Block Scheduler",
5369
+ translation: ""
5132
5370
  },
5133
5371
  feature_clipboard_description: feature_clipboard_description$2,
5134
5372
  feature_clipboard_label: feature_clipboard_label$2,
@@ -5208,6 +5446,8 @@ const fr = {
5208
5446
  feature_history_label: feature_history_label$2,
5209
5447
  feature_history_setting_useMouseButtons_description: feature_history_setting_useMouseButtons_description$2,
5210
5448
  feature_history_setting_useMouseButtons_label: feature_history_setting_useMouseButtons_label$2,
5449
+ feature_hover_description: feature_hover_description$2,
5450
+ feature_hover_label: feature_hover_label$2,
5211
5451
  "feature_import-existing_description": {
5212
5452
  source: "Implements a menu action that renders a dialog to import blocks from another entity.",
5213
5453
  translation: "Implémente une action de menu qui affiche une boîte de dialogue pour importer des blocs depuis une autre entité."
@@ -5356,6 +5596,7 @@ const fr = {
5356
5596
  libraryPlaceSearchInputPlaceholder: libraryPlaceSearchInputPlaceholder$2,
5357
5597
  libraryPlaceSearchLabel: libraryPlaceSearchLabel$2,
5358
5598
  libraryPreviewLabel: libraryPreviewLabel$2,
5599
+ manageSchedule: manageSchedule$2,
5359
5600
  maskHide: maskHide$2,
5360
5601
  maskShow: maskShow$2,
5361
5602
  maskToggle: maskToggle$2,
@@ -5365,6 +5606,8 @@ const fr = {
5365
5606
  mediaLibraryReplaceMedia: mediaLibraryReplaceMedia$2,
5366
5607
  mediaLibraryTourText: mediaLibraryTourText$2,
5367
5608
  multipleItemsLabel: multipleItemsLabel$2,
5609
+ notSet: notSet$2,
5610
+ notSupported: notSupported$2,
5368
5611
  optionBkVisibleLanguagesAll: optionBkVisibleLanguagesAll$2,
5369
5612
  "optionsCommand.selectCheckboxValue": {
5370
5613
  source: "Select \"@value\" in \"@option\"",
@@ -5436,12 +5679,11 @@ const fr = {
5436
5679
  publishSaveContents: publishSaveContents$2,
5437
5680
  publishScheduleDate: publishScheduleDate$2,
5438
5681
  publishScheduleDateTooSoon: publishScheduleDateTooSoon$2,
5439
- publishScheduleInSevenDays: publishScheduleInSevenDays$2,
5440
- publishScheduleNextMonday: publishScheduleNextMonday$2,
5441
5682
  publishSchedulePublication: publishSchedulePublication$2,
5442
5683
  publishSchedulePublications: publishSchedulePublications$2,
5443
5684
  publishScheduleSuccess: publishScheduleSuccess$2,
5444
- publishScheduleTomorrow: publishScheduleTomorrow$2,
5685
+ publishScheduledBlockPlural: publishScheduledBlockPlural$2,
5686
+ publishScheduledBlockSingular: publishScheduledBlockSingular$2,
5445
5687
  publishScheduledInfo: publishScheduledInfo$2,
5446
5688
  publishStatus: publishStatus$2,
5447
5689
  publishSuccess: publishSuccess$2,
@@ -5460,7 +5702,6 @@ const fr = {
5460
5702
  revertMenuDescription: revertMenuDescription$2,
5461
5703
  revertMenuTitle: revertMenuTitle$2,
5462
5704
  revertSuccess: revertSuccess$2,
5463
- save: save$2,
5464
5705
  scheduledFor: scheduledFor$2,
5465
5706
  searchBoxNoResultsFound: searchBoxNoResultsFound$2,
5466
5707
  searchBoxOnThisPage: searchBoxOnThisPage$2,
@@ -5469,6 +5710,7 @@ const fr = {
5469
5710
  searchTourText: searchTourText$2,
5470
5711
  selectAllBlocks: selectAllBlocks$2,
5471
5712
  selectAllOfBundle: selectAllOfBundle$2,
5713
+ selectedIsNew: selectedIsNew$2,
5472
5714
  selectionActionGroupTitle: selectionActionGroupTitle$2,
5473
5715
  settingsAdvanced: settingsAdvanced$2,
5474
5716
  settingsAppearance: settingsAppearance$2,
@@ -5522,7 +5764,11 @@ const fr = {
5522
5764
  unexpectedMutationError: unexpectedMutationError$2,
5523
5765
  validationsNoneFound: validationsNoneFound$2,
5524
5766
  validationsToolbarLabel: validationsToolbarLabel$2,
5525
- validationsTourText: validationsTourText$2
5767
+ validationsTourText: validationsTourText$2,
5768
+ viewBannerReviewText: viewBannerReviewText$2,
5769
+ viewBannerReviewTitle: viewBannerReviewTitle$2,
5770
+ viewBannerViewText: viewBannerViewText$2,
5771
+ viewBannerViewTitle: viewBannerViewTitle$2
5526
5772
  };
5527
5773
 
5528
5774
  const actionsDropdownToolip$1 = {
@@ -5553,8 +5799,12 @@ const addButtonInsideField$1 = {
5553
5799
  source: "Add inside @parentBundle » @fieldLabel...",
5554
5800
  translation: "Aggiungi in @parentBundle » @fieldLabel..."
5555
5801
  };
5802
+ const addCommentHeader$1 = {
5803
+ source: "Add Comment",
5804
+ translation: ""
5805
+ };
5556
5806
  const addCommentToItem$1 = {
5557
- source: "Comment",
5807
+ source: "Add Comment...",
5558
5808
  translation: "Commenta"
5559
5809
  };
5560
5810
  const addListInputPlaceholder$1 = {
@@ -5769,17 +6019,65 @@ const blockAddListTourTitle$1 = {
5769
6019
  source: "Favorite blocks",
5770
6020
  translation: ""
5771
6021
  };
6022
+ const blockOption_bkHiddenGlobally_description$1 = {
6023
+ source: "Always hides the block.",
6024
+ translation: ""
6025
+ };
5772
6026
  const blockOption_bkHiddenGlobally_label$1 = {
5773
6027
  source: "Hide globally",
5774
6028
  translation: ""
5775
6029
  };
6030
+ const blockOption_bkVisibleLanguages_description$1 = {
6031
+ source: "Only show on specific languages.",
6032
+ translation: ""
6033
+ };
5776
6034
  const blockOption_bkVisibleLanguages_label$1 = {
5777
6035
  source: "Visible languages",
5778
6036
  translation: ""
5779
6037
  };
5780
- const cancel$1 = {
5781
- source: "Cancel",
5782
- translation: "Annulla"
6038
+ const blockSchedulerChangesPreview$1 = {
6039
+ source: "Changes to be applied",
6040
+ translation: ""
6041
+ };
6042
+ const blockSchedulerDialogLead$1 = {
6043
+ source: "Schedule automatic publishing and unpublishing dates for the selected blocks.",
6044
+ translation: ""
6045
+ };
6046
+ const blockSchedulerDialogPublishOn$1 = {
6047
+ source: "Publish on",
6048
+ translation: ""
6049
+ };
6050
+ const blockSchedulerDialogSubmit$1 = {
6051
+ source: "Save schedule",
6052
+ translation: ""
6053
+ };
6054
+ const blockSchedulerDialogTitle$1 = {
6055
+ source: "Manage scheduling",
6056
+ translation: ""
6057
+ };
6058
+ const blockSchedulerDialogUnpublishOn$1 = {
6059
+ source: "Unpublish on",
6060
+ translation: ""
6061
+ };
6062
+ const blockSchedulerMixedDates$1 = {
6063
+ source: "Selected blocks have different dates: @dates",
6064
+ translation: ""
6065
+ };
6066
+ const blockSchedulerNoChanges$1 = {
6067
+ source: "No changes to be applied.",
6068
+ translation: ""
6069
+ };
6070
+ const blockSchedulerOverride$1 = {
6071
+ source: "Set date for all",
6072
+ translation: ""
6073
+ };
6074
+ const blockSchedulerSuccessMessage$1 = {
6075
+ source: "Successfully updated schedule dates.",
6076
+ translation: ""
6077
+ };
6078
+ const bundle$1 = {
6079
+ source: "Bundle",
6080
+ translation: ""
5783
6081
  };
5784
6082
  const cancelSelection$1 = {
5785
6083
  source: "Cancel selection",
@@ -5853,10 +6151,6 @@ const commentAdd$1 = {
5853
6151
  source: "Add comment",
5854
6152
  translation: ""
5855
6153
  };
5856
- const commentBody$1 = {
5857
- source: "Comment",
5858
- translation: "Commento"
5859
- };
5860
6154
  const commentBodyPlaceholder$1 = {
5861
6155
  source: "Add reply",
5862
6156
  translation: ""
@@ -5962,7 +6256,7 @@ const duplicateError$1 = {
5962
6256
  translation: "Gli elementi non possono essere duplicati."
5963
6257
  };
5964
6258
  const edit$1 = {
5965
- source: "Edit",
6259
+ source: "Edit...",
5966
6260
  translation: "Modifica"
5967
6261
  };
5968
6262
  const editFormBlockAdd$1 = {
@@ -5989,10 +6283,22 @@ const editIndicatorLabel$1 = {
5989
6283
  source: "Edit blocks",
5990
6284
  translation: "Modifica elementi"
5991
6285
  };
6286
+ const editIndicatorLabelReview$1 = {
6287
+ source: "Review changes",
6288
+ translation: ""
6289
+ };
6290
+ const editIndicatorLabelView$1 = {
6291
+ source: "View changes",
6292
+ translation: ""
6293
+ };
5992
6294
  const editableCommandEdit$1 = {
5993
6295
  source: "Edit field \"@name\"",
5994
6296
  translation: ""
5995
6297
  };
6298
+ const editableFieldDiscard$1 = {
6299
+ source: "Discard",
6300
+ translation: ""
6301
+ };
5996
6302
  const entityTitleTourText$1 = {
5997
6303
  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
6304
  translation: ""
@@ -6209,6 +6515,14 @@ const feature_history_setting_useMouseButtons_label$1 = {
6209
6515
  source: "Use mouse buttons for undo/redo",
6210
6516
  translation: "Usa i pulsanti del mouse per annulla/ripeti"
6211
6517
  };
6518
+ const feature_hover_description$1 = {
6519
+ source: "Renders a border around blocks that are currently being hovered.",
6520
+ translation: ""
6521
+ };
6522
+ const feature_hover_label$1 = {
6523
+ source: "Hover",
6524
+ translation: ""
6525
+ };
6212
6526
  const feature_library_description$1 = {
6213
6527
  source: "Implements support for a block library to manage reusable blocks.",
6214
6528
  translation: "Implementa il supporto per una biblioteca di blocchi per gestire blocchi riutilizzabili."
@@ -6498,7 +6812,7 @@ const importExistingTitle$1 = {
6498
6812
  translation: "Importa..."
6499
6813
  };
6500
6814
  const libraryAdd$1 = {
6501
- source: "Add to library",
6815
+ source: "Add to library...",
6502
6816
  translation: "Aggiungi alla biblioteca"
6503
6817
  };
6504
6818
  const libraryAddDescription$1 = {
@@ -6577,6 +6891,10 @@ const libraryPreviewLabel$1 = {
6577
6891
  source: "Preview",
6578
6892
  translation: "Anteprima"
6579
6893
  };
6894
+ const manageSchedule$1 = {
6895
+ source: "Manage schedule...",
6896
+ translation: ""
6897
+ };
6580
6898
  const maskHide$1 = {
6581
6899
  source: "Hide non-editable areas",
6582
6900
  translation: "Nascondi campi di contenuto"
@@ -6613,6 +6931,14 @@ const multipleItemsLabel$1 = {
6613
6931
  source: "Items",
6614
6932
  translation: "Elementi"
6615
6933
  };
6934
+ const notSet$1 = {
6935
+ source: "Not set",
6936
+ translation: ""
6937
+ };
6938
+ const notSupported$1 = {
6939
+ source: "Not supported",
6940
+ translation: ""
6941
+ };
6616
6942
  const optionBkVisibleLanguagesAll$1 = {
6617
6943
  source: "All languages",
6618
6944
  translation: ""
@@ -6849,14 +7175,6 @@ const publishScheduleDateTooSoon$1 = {
6849
7175
  source: "The scheduled date must be at least 2 minutes in the future",
6850
7176
  translation: ""
6851
7177
  };
6852
- const publishScheduleInSevenDays$1 = {
6853
- source: "In 7 days",
6854
- translation: ""
6855
- };
6856
- const publishScheduleNextMonday$1 = {
6857
- source: "Next Monday",
6858
- translation: ""
6859
- };
6860
7178
  const publishSchedulePublication$1 = {
6861
7179
  source: "Schedule publication",
6862
7180
  translation: ""
@@ -6869,8 +7187,12 @@ const publishScheduleSuccess$1 = {
6869
7187
  source: "Publication scheduled for @date",
6870
7188
  translation: ""
6871
7189
  };
6872
- const publishScheduleTomorrow$1 = {
6873
- source: "Tomorrow",
7190
+ const publishScheduledBlockPlural$1 = {
7191
+ source: "@count blocks are scheduled to be published on @date",
7192
+ translation: ""
7193
+ };
7194
+ const publishScheduledBlockSingular$1 = {
7195
+ source: "1 block is scheduled to be published on @date",
6874
7196
  translation: ""
6875
7197
  };
6876
7198
  const publishScheduledInfo$1 = {
@@ -6945,10 +7267,6 @@ const revertSuccess$1 = {
6945
7267
  source: "All changes have been discarded.",
6946
7268
  translation: "Tutte le modifiche sono state scartate."
6947
7269
  };
6948
- const save$1 = {
6949
- source: "Save",
6950
- translation: "Save"
6951
- };
6952
7270
  const scheduledFor$1 = {
6953
7271
  source: "The changes will be published on this date.",
6954
7272
  translation: ""
@@ -6981,6 +7299,10 @@ const selectAllOfBundle$1 = {
6981
7299
  source: "Select all \"@bundle\" blocks",
6982
7300
  translation: ""
6983
7301
  };
7302
+ const selectedIsNew$1 = {
7303
+ source: "New",
7304
+ translation: ""
7305
+ };
6984
7306
  const selectionActionGroupTitle$1 = {
6985
7307
  source: "Selection",
6986
7308
  translation: ""
@@ -7165,6 +7487,22 @@ const validationsTourText$1 = {
7165
7487
  source: "See validation errors for content or structure on the current page.",
7166
7488
  translation: ""
7167
7489
  };
7490
+ const viewBannerReviewText$1 = {
7491
+ source: "You can view and add comments but cannot edit content.",
7492
+ translation: ""
7493
+ };
7494
+ const viewBannerReviewTitle$1 = {
7495
+ source: "You are in review mode.",
7496
+ translation: ""
7497
+ };
7498
+ const viewBannerViewText$1 = {
7499
+ source: "You can view comments but cannot edit content.",
7500
+ translation: ""
7501
+ };
7502
+ const viewBannerViewTitle$1 = {
7503
+ source: "You are in view-only mode.",
7504
+ translation: ""
7505
+ };
7168
7506
  const it = {
7169
7507
  actionsDropdownToolip: actionsDropdownToolip$1,
7170
7508
  "addBlockCommand.appendInField": {
@@ -7185,6 +7523,7 @@ const it = {
7185
7523
  addButtonBundleBefore: addButtonBundleBefore$1,
7186
7524
  addButtonBundleInsideField: addButtonBundleInsideField$1,
7187
7525
  addButtonInsideField: addButtonInsideField$1,
7526
+ addCommentHeader: addCommentHeader$1,
7188
7527
  addCommentToItem: addCommentToItem$1,
7189
7528
  addListInputPlaceholder: addListInputPlaceholder$1,
7190
7529
  addListItemFavoriteAdd: addListItemFavoriteAdd$1,
@@ -7239,9 +7578,21 @@ const it = {
7239
7578
  assistantPromptPlaceholder: assistantPromptPlaceholder$1,
7240
7579
  blockAddListTourText: blockAddListTourText$1,
7241
7580
  blockAddListTourTitle: blockAddListTourTitle$1,
7581
+ blockOption_bkHiddenGlobally_description: blockOption_bkHiddenGlobally_description$1,
7242
7582
  blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label$1,
7583
+ blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description$1,
7243
7584
  blockOption_bkVisibleLanguages_label: blockOption_bkVisibleLanguages_label$1,
7244
- cancel: cancel$1,
7585
+ blockSchedulerChangesPreview: blockSchedulerChangesPreview$1,
7586
+ blockSchedulerDialogLead: blockSchedulerDialogLead$1,
7587
+ blockSchedulerDialogPublishOn: blockSchedulerDialogPublishOn$1,
7588
+ blockSchedulerDialogSubmit: blockSchedulerDialogSubmit$1,
7589
+ blockSchedulerDialogTitle: blockSchedulerDialogTitle$1,
7590
+ blockSchedulerDialogUnpublishOn: blockSchedulerDialogUnpublishOn$1,
7591
+ blockSchedulerMixedDates: blockSchedulerMixedDates$1,
7592
+ blockSchedulerNoChanges: blockSchedulerNoChanges$1,
7593
+ blockSchedulerOverride: blockSchedulerOverride$1,
7594
+ blockSchedulerSuccessMessage: blockSchedulerSuccessMessage$1,
7595
+ bundle: bundle$1,
7245
7596
  cancelSelection: cancelSelection$1,
7246
7597
  clipboard: clipboard$1,
7247
7598
  clipboardCopyShortcutHelp: clipboardCopyShortcutHelp$1,
@@ -7284,7 +7635,6 @@ const it = {
7284
7635
  commandPaletteOpen: commandPaletteOpen$1,
7285
7636
  commandPaletteTourText: commandPaletteTourText$1,
7286
7637
  commentAdd: commentAdd$1,
7287
- commentBody: commentBody$1,
7288
7638
  commentBodyPlaceholder: commentBodyPlaceholder$1,
7289
7639
  commentSave: commentSave$1,
7290
7640
  comments: comments$1,
@@ -7318,7 +7668,10 @@ const it = {
7318
7668
  editFormEntityEdit: editFormEntityEdit$1,
7319
7669
  editFormEntityTranslate: editFormEntityTranslate$1,
7320
7670
  editIndicatorLabel: editIndicatorLabel$1,
7671
+ editIndicatorLabelReview: editIndicatorLabelReview$1,
7672
+ editIndicatorLabelView: editIndicatorLabelView$1,
7321
7673
  editableCommandEdit: editableCommandEdit$1,
7674
+ editableFieldDiscard: editableFieldDiscard$1,
7322
7675
  entityTitleTourText: entityTitleTourText$1,
7323
7676
  entityTitleTourTitle: entityTitleTourTitle$1,
7324
7677
  exitDescription: exitDescription$1,
@@ -7382,6 +7735,14 @@ const it = {
7382
7735
  "feature_block-add-list_setting_hideDisabledBlocks_label": {
7383
7736
  source: "Hide blocks that can't be added",
7384
7737
  translation: "Nascondi blocchi che non possono essere aggiunti"
7738
+ },
7739
+ "feature_block-scheduler_description": {
7740
+ source: "Adds support for scheduling blocks.",
7741
+ translation: ""
7742
+ },
7743
+ "feature_block-scheduler_label": {
7744
+ source: "Block Scheduler",
7745
+ translation: ""
7385
7746
  },
7386
7747
  feature_clipboard_description: feature_clipboard_description$1,
7387
7748
  feature_clipboard_label: feature_clipboard_label$1,
@@ -7461,6 +7822,8 @@ const it = {
7461
7822
  feature_history_label: feature_history_label$1,
7462
7823
  feature_history_setting_useMouseButtons_description: feature_history_setting_useMouseButtons_description$1,
7463
7824
  feature_history_setting_useMouseButtons_label: feature_history_setting_useMouseButtons_label$1,
7825
+ feature_hover_description: feature_hover_description$1,
7826
+ feature_hover_label: feature_hover_label$1,
7464
7827
  "feature_import-existing_description": {
7465
7828
  source: "Implements a menu action that renders a dialog to import blocks from another entity.",
7466
7829
  translation: "Implementa un'azione di menu che visualizza una finestra di dialogo per importare blocchi da un'altra entità."
@@ -7609,6 +7972,7 @@ const it = {
7609
7972
  libraryPlaceSearchInputPlaceholder: libraryPlaceSearchInputPlaceholder$1,
7610
7973
  libraryPlaceSearchLabel: libraryPlaceSearchLabel$1,
7611
7974
  libraryPreviewLabel: libraryPreviewLabel$1,
7975
+ manageSchedule: manageSchedule$1,
7612
7976
  maskHide: maskHide$1,
7613
7977
  maskShow: maskShow$1,
7614
7978
  maskToggle: maskToggle$1,
@@ -7618,6 +7982,8 @@ const it = {
7618
7982
  mediaLibraryReplaceMedia: mediaLibraryReplaceMedia$1,
7619
7983
  mediaLibraryTourText: mediaLibraryTourText$1,
7620
7984
  multipleItemsLabel: multipleItemsLabel$1,
7985
+ notSet: notSet$1,
7986
+ notSupported: notSupported$1,
7621
7987
  optionBkVisibleLanguagesAll: optionBkVisibleLanguagesAll$1,
7622
7988
  "optionsCommand.selectCheckboxValue": {
7623
7989
  source: "Select \"@value\" in \"@option\"",
@@ -7689,12 +8055,11 @@ const it = {
7689
8055
  publishSaveContents: publishSaveContents$1,
7690
8056
  publishScheduleDate: publishScheduleDate$1,
7691
8057
  publishScheduleDateTooSoon: publishScheduleDateTooSoon$1,
7692
- publishScheduleInSevenDays: publishScheduleInSevenDays$1,
7693
- publishScheduleNextMonday: publishScheduleNextMonday$1,
7694
8058
  publishSchedulePublication: publishSchedulePublication$1,
7695
8059
  publishSchedulePublications: publishSchedulePublications$1,
7696
8060
  publishScheduleSuccess: publishScheduleSuccess$1,
7697
- publishScheduleTomorrow: publishScheduleTomorrow$1,
8061
+ publishScheduledBlockPlural: publishScheduledBlockPlural$1,
8062
+ publishScheduledBlockSingular: publishScheduledBlockSingular$1,
7698
8063
  publishScheduledInfo: publishScheduledInfo$1,
7699
8064
  publishStatus: publishStatus$1,
7700
8065
  publishSuccess: publishSuccess$1,
@@ -7713,7 +8078,6 @@ const it = {
7713
8078
  revertMenuDescription: revertMenuDescription$1,
7714
8079
  revertMenuTitle: revertMenuTitle$1,
7715
8080
  revertSuccess: revertSuccess$1,
7716
- save: save$1,
7717
8081
  scheduledFor: scheduledFor$1,
7718
8082
  searchBoxNoResultsFound: searchBoxNoResultsFound$1,
7719
8083
  searchBoxOnThisPage: searchBoxOnThisPage$1,
@@ -7722,6 +8086,7 @@ const it = {
7722
8086
  searchTourText: searchTourText$1,
7723
8087
  selectAllBlocks: selectAllBlocks$1,
7724
8088
  selectAllOfBundle: selectAllOfBundle$1,
8089
+ selectedIsNew: selectedIsNew$1,
7725
8090
  selectionActionGroupTitle: selectionActionGroupTitle$1,
7726
8091
  settingsAdvanced: settingsAdvanced$1,
7727
8092
  settingsAppearance: settingsAppearance$1,
@@ -7775,7 +8140,11 @@ const it = {
7775
8140
  unexpectedMutationError: unexpectedMutationError$1,
7776
8141
  validationsNoneFound: validationsNoneFound$1,
7777
8142
  validationsToolbarLabel: validationsToolbarLabel$1,
7778
- validationsTourText: validationsTourText$1
8143
+ validationsTourText: validationsTourText$1,
8144
+ viewBannerReviewText: viewBannerReviewText$1,
8145
+ viewBannerReviewTitle: viewBannerReviewTitle$1,
8146
+ viewBannerViewText: viewBannerViewText$1,
8147
+ viewBannerViewTitle: viewBannerViewTitle$1
7779
8148
  };
7780
8149
 
7781
8150
  const actionsDropdownToolip = {
@@ -7806,8 +8175,12 @@ const addButtonInsideField = {
7806
8175
  source: "Add inside @parentBundle » @fieldLabel...",
7807
8176
  translation: "In @parentBundle » @fieldLabel drzuefüege..."
7808
8177
  };
8178
+ const addCommentHeader = {
8179
+ source: "Add Comment",
8180
+ translation: ""
8181
+ };
7809
8182
  const addCommentToItem = {
7810
- source: "Comment",
8183
+ source: "Add Comment...",
7811
8184
  translation: "Kommentiere"
7812
8185
  };
7813
8186
  const addListInputPlaceholder = {
@@ -8022,17 +8395,65 @@ const blockAddListTourTitle = {
8022
8395
  source: "Favorite blocks",
8023
8396
  translation: "Lieblingsblöck"
8024
8397
  };
8398
+ const blockOption_bkHiddenGlobally_description = {
8399
+ source: "Always hides the block.",
8400
+ translation: ""
8401
+ };
8025
8402
  const blockOption_bkHiddenGlobally_label = {
8026
8403
  source: "Hide globally",
8027
8404
  translation: "Global verstecke"
8028
8405
  };
8406
+ const blockOption_bkVisibleLanguages_description = {
8407
+ source: "Only show on specific languages.",
8408
+ translation: ""
8409
+ };
8029
8410
  const blockOption_bkVisibleLanguages_label = {
8030
8411
  source: "Visible languages",
8031
8412
  translation: "Sichtbari Sproche"
8032
8413
  };
8033
- const cancel = {
8034
- source: "Cancel",
8035
- translation: "Abbräche"
8414
+ const blockSchedulerChangesPreview = {
8415
+ source: "Changes to be applied",
8416
+ translation: ""
8417
+ };
8418
+ const blockSchedulerDialogLead = {
8419
+ source: "Schedule automatic publishing and unpublishing dates for the selected blocks.",
8420
+ translation: ""
8421
+ };
8422
+ const blockSchedulerDialogPublishOn = {
8423
+ source: "Publish on",
8424
+ translation: ""
8425
+ };
8426
+ const blockSchedulerDialogSubmit = {
8427
+ source: "Save schedule",
8428
+ translation: ""
8429
+ };
8430
+ const blockSchedulerDialogTitle = {
8431
+ source: "Manage scheduling",
8432
+ translation: ""
8433
+ };
8434
+ const blockSchedulerDialogUnpublishOn = {
8435
+ source: "Unpublish on",
8436
+ translation: ""
8437
+ };
8438
+ const blockSchedulerMixedDates = {
8439
+ source: "Selected blocks have different dates: @dates",
8440
+ translation: ""
8441
+ };
8442
+ const blockSchedulerNoChanges = {
8443
+ source: "No changes to be applied.",
8444
+ translation: ""
8445
+ };
8446
+ const blockSchedulerOverride = {
8447
+ source: "Set date for all",
8448
+ translation: ""
8449
+ };
8450
+ const blockSchedulerSuccessMessage = {
8451
+ source: "Successfully updated schedule dates.",
8452
+ translation: ""
8453
+ };
8454
+ const bundle = {
8455
+ source: "Bundle",
8456
+ translation: ""
8036
8457
  };
8037
8458
  const cancelSelection = {
8038
8459
  source: "Cancel selection",
@@ -8106,10 +8527,6 @@ const commentAdd = {
8106
8527
  source: "Add comment",
8107
8528
  translation: "Kommentar drzuefüege"
8108
8529
  };
8109
- const commentBody = {
8110
- source: "Comment",
8111
- translation: "Kommentar"
8112
- };
8113
8530
  const commentBodyPlaceholder = {
8114
8531
  source: "Add reply",
8115
8532
  translation: "Antwort drzuefüege"
@@ -8215,7 +8632,7 @@ const duplicateError = {
8215
8632
  translation: "D'Elemänt hän nid chönne dupliziert wärde. "
8216
8633
  };
8217
8634
  const edit = {
8218
- source: "Edit",
8635
+ source: "Edit...",
8219
8636
  translation: "Bearbeite"
8220
8637
  };
8221
8638
  const editFormBlockAdd = {
@@ -8242,10 +8659,22 @@ const editIndicatorLabel = {
8242
8659
  source: "Edit blocks",
8243
8660
  translation: "Elemänt bearbeite"
8244
8661
  };
8662
+ const editIndicatorLabelReview = {
8663
+ source: "Review changes",
8664
+ translation: ""
8665
+ };
8666
+ const editIndicatorLabelView = {
8667
+ source: "View changes",
8668
+ translation: ""
8669
+ };
8245
8670
  const editableCommandEdit = {
8246
8671
  source: "Edit field \"@name\"",
8247
8672
  translation: "Fäld «@name» bearbeite"
8248
8673
  };
8674
+ const editableFieldDiscard = {
8675
+ source: "Discard",
8676
+ translation: ""
8677
+ };
8249
8678
  const entityTitleTourText = {
8250
8679
  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
8680
  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 +8891,14 @@ const feature_history_setting_useMouseButtons_label = {
8462
8891
  source: "Use mouse buttons for undo/redo",
8463
8892
  translation: "Muustaschte für Rückgängig/Wiederhärstelle bruche"
8464
8893
  };
8894
+ const feature_hover_description = {
8895
+ source: "Renders a border around blocks that are currently being hovered.",
8896
+ translation: ""
8897
+ };
8898
+ const feature_hover_label = {
8899
+ source: "Hover",
8900
+ translation: ""
8901
+ };
8465
8902
  const feature_library_description = {
8466
8903
  source: "Implements support for a block library to manage reusable blocks.",
8467
8904
  translation: "Implementiert Understützig für e Block-Bibliothek zum wiederverwändbare Blöck z'verwallte."
@@ -8751,7 +9188,7 @@ const importExistingTitle = {
8751
9188
  translation: "Importiere..."
8752
9189
  };
8753
9190
  const libraryAdd = {
8754
- source: "Add to library",
9191
+ source: "Add to library...",
8755
9192
  translation: "Zur Bibliothek drzuefüege"
8756
9193
  };
8757
9194
  const libraryAddDescription = {
@@ -8830,6 +9267,10 @@ const libraryPreviewLabel = {
8830
9267
  source: "Preview",
8831
9268
  translation: "Vorschau"
8832
9269
  };
9270
+ const manageSchedule = {
9271
+ source: "Manage schedule...",
9272
+ translation: ""
9273
+ };
8833
9274
  const maskHide = {
8834
9275
  source: "Hide non-editable areas",
8835
9276
  translation: "Inhaltsfälder verstecke"
@@ -8866,6 +9307,14 @@ const multipleItemsLabel = {
8866
9307
  source: "Items",
8867
9308
  translation: "Elemänt"
8868
9309
  };
9310
+ const notSet = {
9311
+ source: "Not set",
9312
+ translation: ""
9313
+ };
9314
+ const notSupported = {
9315
+ source: "Not supported",
9316
+ translation: ""
9317
+ };
8869
9318
  const optionBkVisibleLanguagesAll = {
8870
9319
  source: "All languages",
8871
9320
  translation: "Alli Sproche"
@@ -9102,14 +9551,6 @@ const publishScheduleDateTooSoon = {
9102
9551
  source: "The scheduled date must be at least 2 minutes in the future",
9103
9552
  translation: ""
9104
9553
  };
9105
- const publishScheduleInSevenDays = {
9106
- source: "In 7 days",
9107
- translation: ""
9108
- };
9109
- const publishScheduleNextMonday = {
9110
- source: "Next Monday",
9111
- translation: ""
9112
- };
9113
9554
  const publishSchedulePublication = {
9114
9555
  source: "Schedule publication",
9115
9556
  translation: ""
@@ -9122,8 +9563,12 @@ const publishScheduleSuccess = {
9122
9563
  source: "Publication scheduled for @date",
9123
9564
  translation: ""
9124
9565
  };
9125
- const publishScheduleTomorrow = {
9126
- source: "Tomorrow",
9566
+ const publishScheduledBlockPlural = {
9567
+ source: "@count blocks are scheduled to be published on @date",
9568
+ translation: ""
9569
+ };
9570
+ const publishScheduledBlockSingular = {
9571
+ source: "1 block is scheduled to be published on @date",
9127
9572
  translation: ""
9128
9573
  };
9129
9574
  const publishScheduledInfo = {
@@ -9198,10 +9643,6 @@ const revertSuccess = {
9198
9643
  source: "All changes have been discarded.",
9199
9644
  translation: "Alli Änderige sin glöcht worde."
9200
9645
  };
9201
- const save = {
9202
- source: "Save",
9203
- translation: "Speichere"
9204
- };
9205
9646
  const scheduledFor = {
9206
9647
  source: "The changes will be published on this date.",
9207
9648
  translation: ""
@@ -9234,6 +9675,10 @@ const selectAllOfBundle = {
9234
9675
  source: "Select all \"@bundle\" blocks",
9235
9676
  translation: "Alli «@bundle»-Blöck uswähle"
9236
9677
  };
9678
+ const selectedIsNew = {
9679
+ source: "New",
9680
+ translation: ""
9681
+ };
9237
9682
  const selectionActionGroupTitle = {
9238
9683
  source: "Selection",
9239
9684
  translation: "Uswahl"
@@ -9418,6 +9863,22 @@ const validationsTourText = {
9418
9863
  source: "See validation errors for content or structure on the current page.",
9419
9864
  translation: "Lueg Validierigsfähler für Inhalt oder Struktur uf dr aktuälle Sitte aa."
9420
9865
  };
9866
+ const viewBannerReviewText = {
9867
+ source: "You can view and add comments but cannot edit content.",
9868
+ translation: ""
9869
+ };
9870
+ const viewBannerReviewTitle = {
9871
+ source: "You are in review mode.",
9872
+ translation: ""
9873
+ };
9874
+ const viewBannerViewText = {
9875
+ source: "You can view comments but cannot edit content.",
9876
+ translation: ""
9877
+ };
9878
+ const viewBannerViewTitle = {
9879
+ source: "You are in view-only mode.",
9880
+ translation: ""
9881
+ };
9421
9882
  const gsw_CH = {
9422
9883
  actionsDropdownToolip: actionsDropdownToolip,
9423
9884
  "addBlockCommand.appendInField": {
@@ -9438,6 +9899,7 @@ const gsw_CH = {
9438
9899
  addButtonBundleBefore: addButtonBundleBefore,
9439
9900
  addButtonBundleInsideField: addButtonBundleInsideField,
9440
9901
  addButtonInsideField: addButtonInsideField,
9902
+ addCommentHeader: addCommentHeader,
9441
9903
  addCommentToItem: addCommentToItem,
9442
9904
  addListInputPlaceholder: addListInputPlaceholder,
9443
9905
  addListItemFavoriteAdd: addListItemFavoriteAdd,
@@ -9492,9 +9954,21 @@ const gsw_CH = {
9492
9954
  assistantPromptPlaceholder: assistantPromptPlaceholder,
9493
9955
  blockAddListTourText: blockAddListTourText,
9494
9956
  blockAddListTourTitle: blockAddListTourTitle,
9957
+ blockOption_bkHiddenGlobally_description: blockOption_bkHiddenGlobally_description,
9495
9958
  blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label,
9959
+ blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description,
9496
9960
  blockOption_bkVisibleLanguages_label: blockOption_bkVisibleLanguages_label,
9497
- cancel: cancel,
9961
+ blockSchedulerChangesPreview: blockSchedulerChangesPreview,
9962
+ blockSchedulerDialogLead: blockSchedulerDialogLead,
9963
+ blockSchedulerDialogPublishOn: blockSchedulerDialogPublishOn,
9964
+ blockSchedulerDialogSubmit: blockSchedulerDialogSubmit,
9965
+ blockSchedulerDialogTitle: blockSchedulerDialogTitle,
9966
+ blockSchedulerDialogUnpublishOn: blockSchedulerDialogUnpublishOn,
9967
+ blockSchedulerMixedDates: blockSchedulerMixedDates,
9968
+ blockSchedulerNoChanges: blockSchedulerNoChanges,
9969
+ blockSchedulerOverride: blockSchedulerOverride,
9970
+ blockSchedulerSuccessMessage: blockSchedulerSuccessMessage,
9971
+ bundle: bundle,
9498
9972
  cancelSelection: cancelSelection,
9499
9973
  clipboard: clipboard,
9500
9974
  clipboardCopyShortcutHelp: clipboardCopyShortcutHelp,
@@ -9537,7 +10011,6 @@ const gsw_CH = {
9537
10011
  commandPaletteOpen: commandPaletteOpen,
9538
10012
  commandPaletteTourText: commandPaletteTourText,
9539
10013
  commentAdd: commentAdd,
9540
- commentBody: commentBody,
9541
10014
  commentBodyPlaceholder: commentBodyPlaceholder,
9542
10015
  commentSave: commentSave,
9543
10016
  comments: comments,
@@ -9571,7 +10044,10 @@ const gsw_CH = {
9571
10044
  editFormEntityEdit: editFormEntityEdit,
9572
10045
  editFormEntityTranslate: editFormEntityTranslate,
9573
10046
  editIndicatorLabel: editIndicatorLabel,
10047
+ editIndicatorLabelReview: editIndicatorLabelReview,
10048
+ editIndicatorLabelView: editIndicatorLabelView,
9574
10049
  editableCommandEdit: editableCommandEdit,
10050
+ editableFieldDiscard: editableFieldDiscard,
9575
10051
  entityTitleTourText: entityTitleTourText,
9576
10052
  entityTitleTourTitle: entityTitleTourTitle,
9577
10053
  exitDescription: exitDescription,
@@ -9635,6 +10111,14 @@ const gsw_CH = {
9635
10111
  "feature_block-add-list_setting_hideDisabledBlocks_label": {
9636
10112
  source: "Hide blocks that can't be added",
9637
10113
  translation: "Blöck wo nid chönne drzuegfüegt wärde verstecke"
10114
+ },
10115
+ "feature_block-scheduler_description": {
10116
+ source: "Adds support for scheduling blocks.",
10117
+ translation: ""
10118
+ },
10119
+ "feature_block-scheduler_label": {
10120
+ source: "Block Scheduler",
10121
+ translation: ""
9638
10122
  },
9639
10123
  feature_clipboard_description: feature_clipboard_description,
9640
10124
  feature_clipboard_label: feature_clipboard_label,
@@ -9714,6 +10198,8 @@ const gsw_CH = {
9714
10198
  feature_history_label: feature_history_label,
9715
10199
  feature_history_setting_useMouseButtons_description: feature_history_setting_useMouseButtons_description,
9716
10200
  feature_history_setting_useMouseButtons_label: feature_history_setting_useMouseButtons_label,
10201
+ feature_hover_description: feature_hover_description,
10202
+ feature_hover_label: feature_hover_label,
9717
10203
  "feature_import-existing_description": {
9718
10204
  source: "Implements a menu action that renders a dialog to import blocks from another entity.",
9719
10205
  translation: "Implementiert e Menü-Aktion wo e Dialog renderet zum Blöck vonere andere Entität z'importiere."
@@ -9862,6 +10348,7 @@ const gsw_CH = {
9862
10348
  libraryPlaceSearchInputPlaceholder: libraryPlaceSearchInputPlaceholder,
9863
10349
  libraryPlaceSearchLabel: libraryPlaceSearchLabel,
9864
10350
  libraryPreviewLabel: libraryPreviewLabel,
10351
+ manageSchedule: manageSchedule,
9865
10352
  maskHide: maskHide,
9866
10353
  maskShow: maskShow,
9867
10354
  maskToggle: maskToggle,
@@ -9871,6 +10358,8 @@ const gsw_CH = {
9871
10358
  mediaLibraryReplaceMedia: mediaLibraryReplaceMedia,
9872
10359
  mediaLibraryTourText: mediaLibraryTourText,
9873
10360
  multipleItemsLabel: multipleItemsLabel,
10361
+ notSet: notSet,
10362
+ notSupported: notSupported,
9874
10363
  optionBkVisibleLanguagesAll: optionBkVisibleLanguagesAll,
9875
10364
  "optionsCommand.selectCheckboxValue": {
9876
10365
  source: "Select \"@value\" in \"@option\"",
@@ -9942,12 +10431,11 @@ const gsw_CH = {
9942
10431
  publishSaveContents: publishSaveContents,
9943
10432
  publishScheduleDate: publishScheduleDate,
9944
10433
  publishScheduleDateTooSoon: publishScheduleDateTooSoon,
9945
- publishScheduleInSevenDays: publishScheduleInSevenDays,
9946
- publishScheduleNextMonday: publishScheduleNextMonday,
9947
10434
  publishSchedulePublication: publishSchedulePublication,
9948
10435
  publishSchedulePublications: publishSchedulePublications,
9949
10436
  publishScheduleSuccess: publishScheduleSuccess,
9950
- publishScheduleTomorrow: publishScheduleTomorrow,
10437
+ publishScheduledBlockPlural: publishScheduledBlockPlural,
10438
+ publishScheduledBlockSingular: publishScheduledBlockSingular,
9951
10439
  publishScheduledInfo: publishScheduledInfo,
9952
10440
  publishStatus: publishStatus,
9953
10441
  publishSuccess: publishSuccess,
@@ -9966,7 +10454,6 @@ const gsw_CH = {
9966
10454
  revertMenuDescription: revertMenuDescription,
9967
10455
  revertMenuTitle: revertMenuTitle,
9968
10456
  revertSuccess: revertSuccess,
9969
- save: save,
9970
10457
  scheduledFor: scheduledFor,
9971
10458
  searchBoxNoResultsFound: searchBoxNoResultsFound,
9972
10459
  searchBoxOnThisPage: searchBoxOnThisPage,
@@ -9975,6 +10462,7 @@ const gsw_CH = {
9975
10462
  searchTourText: searchTourText,
9976
10463
  selectAllBlocks: selectAllBlocks,
9977
10464
  selectAllOfBundle: selectAllOfBundle,
10465
+ selectedIsNew: selectedIsNew,
9978
10466
  selectionActionGroupTitle: selectionActionGroupTitle,
9979
10467
  settingsAdvanced: settingsAdvanced,
9980
10468
  settingsAppearance: settingsAppearance,
@@ -10028,7 +10516,11 @@ const gsw_CH = {
10028
10516
  unexpectedMutationError: unexpectedMutationError,
10029
10517
  validationsNoneFound: validationsNoneFound,
10030
10518
  validationsToolbarLabel: validationsToolbarLabel,
10031
- validationsTourText: validationsTourText
10519
+ validationsTourText: validationsTourText,
10520
+ viewBannerReviewText: viewBannerReviewText,
10521
+ viewBannerReviewTitle: viewBannerReviewTitle,
10522
+ viewBannerViewText: viewBannerViewText,
10523
+ viewBannerViewTitle: viewBannerViewTitle
10032
10524
  };
10033
10525
 
10034
10526
  const translations$1 = {
@@ -10284,14 +10776,14 @@ const lime$3 = {
10284
10776
  203
10285
10777
  ],
10286
10778
  normal: [
10287
- 101,
10288
- 163,
10289
- 13
10779
+ 122,
10780
+ 196,
10781
+ 18
10290
10782
  ],
10291
10783
  dark: [
10292
- 63,
10293
- 98,
10294
- 18
10784
+ 81,
10785
+ 129,
10786
+ 19
10295
10787
  ]
10296
10788
  };
10297
10789
  const arctic = {
@@ -10923,6 +11415,10 @@ export const defaultLanguage = ${JSON.stringify(
10923
11415
  export const forceDefaultLanguage = ${JSON.stringify(
10924
11416
  !!ctx.helper.options.forceDefaultLanguage
10925
11417
  )}
11418
+
11419
+ export const itemEntityType = ${JSON.stringify(
11420
+ ctx.helper.options.itemEntityType || "block"
11421
+ )}
10926
11422
  `;
10927
11423
  },
10928
11424
  (ctx) => {
@@ -10969,6 +11465,11 @@ export declare const defaultLanguage: string
10969
11465
  * Whether to always force the default language, even on translation pages.
10970
11466
  */
10971
11467
  export declare const forceDefaultLanguage: boolean
11468
+
11469
+ /**
11470
+ * The block item entity type.
11471
+ */
11472
+ export declare const itemEntityType: string
10972
11473
  `;
10973
11474
  }
10974
11475
  );
@@ -11833,12 +12334,14 @@ const module = defineNuxtModule({
11833
12334
  [BK_VISIBLE_LANGUAGES]: {
11834
12335
  type: "checkboxes",
11835
12336
  label: "Visible languages",
12337
+ description: "Only show on specific languages.",
11836
12338
  options: {},
11837
12339
  default: []
11838
12340
  },
11839
12341
  [BK_HIDDEN_GLOBALLY]: {
11840
12342
  type: "checkbox",
11841
12343
  label: "Hide globally",
12344
+ description: "Always hides the block.",
11842
12345
  default: false
11843
12346
  }
11844
12347
  },
@@ -11937,7 +12440,7 @@ const module = defineNuxtModule({
11937
12440
  });
11938
12441
  });
11939
12442
  addPlugin({
11940
- src: resolver.resolve("runtime/plugins/blokkliEditable")
12443
+ src: resolver.resolve("runtime/plugins/blokkliDirectives")
11941
12444
  });
11942
12445
  addBuildPlugin(RuntimeDefinitionPlugin(nuxt, "defineBlokkli"));
11943
12446
  addBuildPlugin(RuntimeDefinitionPlugin(nuxt, "defineBlokkliFragment"));