@blokkli/editor 2.0.0-alpha.15 → 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.
- package/dist/module.json +1 -1
- package/dist/module.mjs +330 -93
- package/dist/modules/drupal/graphql/base/fragment.blokkliProps.graphql +1 -1
- package/dist/modules/drupal/graphql/features/comments.graphql +11 -8
- package/dist/modules/drupal/runtime/adapter/index.js +2 -2
- package/dist/runtime/blokkliPlugins/ItemAction/index.vue +1 -3
- package/dist/runtime/components/Blocks/FromLibrary/index.vue +4 -2
- package/dist/runtime/components/BlokkliEditable.vue +22 -4
- package/dist/runtime/components/BlokkliProvider.vue +29 -20
- package/dist/runtime/components/BlokkliProvider.vue.d.ts +2 -1
- package/dist/runtime/components/Edit/Actions/index.vue +9 -4
- package/dist/runtime/components/Edit/AnimationCanvas/index.vue +420 -25
- package/dist/runtime/components/Edit/ArtboardTooltip/index.vue +80 -0
- package/dist/runtime/components/Edit/ArtboardTooltip/index.vue.d.ts +32 -0
- package/dist/runtime/components/Edit/Banner/index.vue +51 -0
- package/dist/runtime/components/Edit/Banner/index.vue.d.ts +18 -0
- package/dist/runtime/components/Edit/Dialog/index.vue +3 -0
- package/dist/runtime/components/Edit/Dialog/index.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/EditIndicator.vue +118 -44
- package/dist/runtime/components/Edit/EditIndicator.vue.d.ts +3 -0
- package/dist/runtime/components/Edit/EditProvider.vue +79 -22
- package/dist/runtime/components/Edit/EditProvider.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/Analyze/Overlay/index.vue +19 -20
- package/dist/runtime/components/Edit/Features/BlockAddList/index.vue +1 -1
- package/dist/runtime/components/Edit/Features/CommandPalette/index.vue +2 -0
- package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue +35 -20
- package/dist/runtime/components/Edit/Features/Comments/AddForm/index.vue.d.ts +5 -3
- package/dist/runtime/components/Edit/Features/Comments/CommentInput/index.vue +29 -0
- package/dist/runtime/components/Edit/Features/Comments/CommentInput/index.vue.d.ts +13 -0
- package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue +22 -16
- package/dist/runtime/components/Edit/Features/Comments/Overlay/Item/index.vue.d.ts +1 -0
- package/dist/runtime/components/Edit/Features/Comments/Overlay/index.vue +15 -6
- package/dist/runtime/components/Edit/Features/Comments/index.vue +20 -8
- package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue +26 -35
- package/dist/runtime/components/Edit/Features/Debug/Renderer.vue +240 -0
- package/dist/runtime/components/Edit/Features/Debug/Renderer.vue.d.ts +6 -0
- package/dist/runtime/components/Edit/Features/Debug/index.vue +4 -165
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue +1 -1
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/fragment.glsl +7 -1
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/index.vue +62 -39
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/vertex.glsl +1 -0
- package/dist/runtime/components/Edit/Features/Edit/index.vue +1 -1
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue +63 -3
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Plaintext/index.vue +13 -9
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue +17 -76
- package/dist/runtime/components/Edit/Features/EditableField/index.vue +1 -1
- package/dist/runtime/components/Edit/Features/History/index.vue +5 -2
- package/dist/runtime/components/Edit/Features/Hover/Overlay/fragment.glsl +139 -0
- package/dist/runtime/components/Edit/Features/Hover/Overlay/index.vue +270 -0
- package/dist/runtime/components/Edit/Features/Hover/Overlay/index.vue.d.ts +6 -0
- package/dist/runtime/components/Edit/Features/Hover/Overlay/vertex.glsl +117 -0
- package/dist/runtime/components/Edit/Features/Hover/index.vue +25 -0
- package/dist/runtime/components/Edit/Features/Library/LibraryDialog/index.vue +19 -27
- package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue +27 -23
- package/dist/runtime/components/Edit/Features/Library/index.vue +2 -1
- package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/index.vue +34 -27
- package/dist/runtime/components/Edit/Features/MultiSelect/index.vue +2 -4
- package/dist/runtime/components/Edit/Features/Options/Form/Item.vue +6 -1
- package/dist/runtime/components/Edit/Features/Options/Form/index.vue +1 -0
- package/dist/runtime/components/Edit/Features/Ownership/Renderer.vue +35 -0
- package/dist/runtime/components/Edit/Features/Ownership/Renderer.vue.d.ts +6 -0
- package/dist/runtime/components/Edit/Features/Ownership/index.vue +7 -25
- package/dist/runtime/components/Edit/Features/ProxyView/index.vue +5 -1
- package/dist/runtime/components/Edit/Features/Publish/Dialog/Summary.vue +2 -2
- package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue +17 -7
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue +39 -74
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue.d.ts +4 -2
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/fragment.glsl +106 -0
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/index.vue +417 -0
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/index.vue.d.ts +32 -0
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/vertex.glsl +102 -0
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/index.vue +33 -106
- package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue +88 -29
- package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/Selection/Overlay/vertex.glsl +11 -2
- package/dist/runtime/components/Edit/Features/Selection/index.vue +26 -19
- package/dist/runtime/components/Edit/Features/Translations/Banner/index.vue +17 -11
- package/dist/runtime/components/Edit/Features/Translations/index.vue +13 -16
- package/dist/runtime/components/Edit/Form/Text/index.vue +2 -1
- package/dist/runtime/components/Edit/Form/Text/index.vue.d.ts +1 -0
- package/dist/runtime/components/Edit/Indicators/index.vue +1 -1
- package/dist/runtime/components/Edit/Konami/Game/index.vue +5 -5
- package/dist/runtime/components/Edit/index.d.ts +5 -3
- package/dist/runtime/components/Edit/index.js +8 -4
- package/dist/runtime/composables/defineBlokkli.js +5 -3
- package/dist/runtime/css/output.css +1 -1
- package/dist/runtime/helpers/animationProvider.d.ts +34 -1
- package/dist/runtime/helpers/animationProvider.js +175 -48
- package/dist/runtime/helpers/composables/defineRenderer.d.ts +8 -0
- package/dist/runtime/helpers/composables/defineRenderer.js +8 -0
- package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.d.ts +1 -1
- package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.js +3 -2
- package/dist/runtime/helpers/composables/useStickyToolbar.d.ts +4 -1
- package/dist/runtime/helpers/composables/useStickyToolbar.js +53 -35
- package/dist/runtime/helpers/dom/index.d.ts +1 -0
- package/dist/runtime/helpers/domProvider.d.ts +46 -0
- package/dist/runtime/helpers/domProvider.js +101 -7
- package/dist/runtime/helpers/editableProvider.d.ts +14 -0
- package/dist/runtime/helpers/editableProvider.js +144 -0
- package/dist/runtime/helpers/stateProvider.d.ts +6 -2
- package/dist/runtime/helpers/stateProvider.js +66 -3
- package/dist/runtime/helpers/storageProvider.d.ts +3 -2
- package/dist/runtime/helpers/storageProvider.js +6 -2
- package/dist/runtime/helpers/symbols.d.ts +1 -0
- package/dist/runtime/helpers/symbols.js +1 -0
- package/dist/runtime/helpers/uiProvider.d.ts +8 -1
- package/dist/runtime/helpers/uiProvider.js +34 -2
- package/dist/runtime/helpers/webgl/index.d.ts +11 -2
- package/dist/runtime/helpers/webgl/index.js +162 -7
- package/dist/runtime/plugins/blokkliEditable.js +74 -3
- package/dist/runtime/types/index.d.ts +13 -1
- package/package.json +1 -1
- package/dist/runtime/components/Edit/DragInteractions/index.vue +0 -401
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/AddButtonsField.vue +0 -54
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/AddButtonsField.vue.d.ts +0 -14
- /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.
|
|
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: "
|
|
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.",
|
|
@@ -2301,7 +2325,7 @@ const publishRemoveSchedule$3 = {
|
|
|
2301
2325
|
};
|
|
2302
2326
|
const publishResultPublishChangesNowPublished$3 = {
|
|
2303
2327
|
source: "Changes are published, page is now published",
|
|
2304
|
-
translation: "Änderungen
|
|
2328
|
+
translation: "Änderungen und Seite sind publiziert"
|
|
2305
2329
|
};
|
|
2306
2330
|
const publishResultPublishChangesRemainPublished$3 = {
|
|
2307
2331
|
source: "Changes are published, page remains published",
|
|
@@ -2315,9 +2339,13 @@ const publishResultScheduledChanges$3 = {
|
|
|
2315
2339
|
source: "Changes will be published on @date",
|
|
2316
2340
|
translation: "Änderungen werden am @date publiziert"
|
|
2317
2341
|
};
|
|
2342
|
+
const publishResultScheduledPage$3 = {
|
|
2343
|
+
source: "Page will be published on @date",
|
|
2344
|
+
translation: "Seite wird am @date publiziert"
|
|
2345
|
+
};
|
|
2318
2346
|
const publishRevisionLogMessage$3 = {
|
|
2319
|
-
source: "
|
|
2320
|
-
translation: "
|
|
2347
|
+
source: "Change description",
|
|
2348
|
+
translation: "Beschreibung der Änderungen"
|
|
2321
2349
|
};
|
|
2322
2350
|
const publishRevisionLogMessageDescription$3 = {
|
|
2323
2351
|
source: "Briefly describe the changes made",
|
|
@@ -2335,7 +2363,7 @@ const publishScheduleDate$3 = {
|
|
|
2335
2363
|
source: "Publication date",
|
|
2336
2364
|
translation: "Veröffentlichungsdatum"
|
|
2337
2365
|
};
|
|
2338
|
-
const publishScheduleDateTooSoon = {
|
|
2366
|
+
const publishScheduleDateTooSoon$3 = {
|
|
2339
2367
|
source: "The scheduled date must be at least 2 minutes in the future",
|
|
2340
2368
|
translation: "Das geplante Datum muss mindestens 2 Minuten in der Zukunft liegen"
|
|
2341
2369
|
};
|
|
@@ -2435,10 +2463,6 @@ const revertSuccess$3 = {
|
|
|
2435
2463
|
source: "All changes have been discarded.",
|
|
2436
2464
|
translation: "Alle Änderungen wurden verworfen."
|
|
2437
2465
|
};
|
|
2438
|
-
const save$3 = {
|
|
2439
|
-
source: "Save",
|
|
2440
|
-
translation: "Speichern"
|
|
2441
|
-
};
|
|
2442
2466
|
const scheduledFor$3 = {
|
|
2443
2467
|
source: "The changes will be published on this date.",
|
|
2444
2468
|
translation: "Die Änderungen werden an diesem Datum publiziert."
|
|
@@ -2463,6 +2487,10 @@ const searchTourText$3 = {
|
|
|
2463
2487
|
source: "Quickly find blocks on the current page or existing content to drag and drop as blocks into the page.",
|
|
2464
2488
|
translation: "Finden Sie Blöcke auf der aktuellen Seite oder andere bestehende Inhalte wie Bilder oder Dokumente, um sie als Blöcke auf der Seite hinzuzufügen."
|
|
2465
2489
|
};
|
|
2490
|
+
const selectAllBlocks$3 = {
|
|
2491
|
+
source: "Select all blocks",
|
|
2492
|
+
translation: "Alle Blöcke auswählen"
|
|
2493
|
+
};
|
|
2466
2494
|
const selectAllOfBundle$3 = {
|
|
2467
2495
|
source: "Select all \"@bundle\" blocks",
|
|
2468
2496
|
translation: "Alle «@bundle» Blöcke auswählen"
|
|
@@ -2651,6 +2679,22 @@ const validationsTourText$3 = {
|
|
|
2651
2679
|
source: "See validation errors for content or structure on the current page.",
|
|
2652
2680
|
translation: "Zeigt Validierungsfehler für Inhalte auf der aktuellen Seite an."
|
|
2653
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
|
+
};
|
|
2654
2698
|
const de = {
|
|
2655
2699
|
actionsDropdownToolip: actionsDropdownToolip$3,
|
|
2656
2700
|
"addBlockCommand.appendInField": {
|
|
@@ -2671,6 +2715,7 @@ const de = {
|
|
|
2671
2715
|
addButtonBundleBefore: addButtonBundleBefore$3,
|
|
2672
2716
|
addButtonBundleInsideField: addButtonBundleInsideField$3,
|
|
2673
2717
|
addButtonInsideField: addButtonInsideField$3,
|
|
2718
|
+
addCommentHeader: addCommentHeader$3,
|
|
2674
2719
|
addCommentToItem: addCommentToItem$3,
|
|
2675
2720
|
addListInputPlaceholder: addListInputPlaceholder$3,
|
|
2676
2721
|
addListItemFavoriteAdd: addListItemFavoriteAdd$3,
|
|
@@ -2725,9 +2770,10 @@ const de = {
|
|
|
2725
2770
|
assistantPromptPlaceholder: assistantPromptPlaceholder$3,
|
|
2726
2771
|
blockAddListTourText: blockAddListTourText$3,
|
|
2727
2772
|
blockAddListTourTitle: blockAddListTourTitle$3,
|
|
2773
|
+
blockOption_bkHiddenGlobally_description: blockOption_bkHiddenGlobally_description$3,
|
|
2728
2774
|
blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label$3,
|
|
2775
|
+
blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description$3,
|
|
2729
2776
|
blockOption_bkVisibleLanguages_label: blockOption_bkVisibleLanguages_label$3,
|
|
2730
|
-
cancel: cancel$3,
|
|
2731
2777
|
cancelSelection: cancelSelection$3,
|
|
2732
2778
|
clipboard: clipboard$3,
|
|
2733
2779
|
clipboardCopyShortcutHelp: clipboardCopyShortcutHelp$3,
|
|
@@ -2770,7 +2816,6 @@ const de = {
|
|
|
2770
2816
|
commandPaletteOpen: commandPaletteOpen$3,
|
|
2771
2817
|
commandPaletteTourText: commandPaletteTourText$3,
|
|
2772
2818
|
commentAdd: commentAdd$3,
|
|
2773
|
-
commentBody: commentBody$3,
|
|
2774
2819
|
commentBodyPlaceholder: commentBodyPlaceholder$3,
|
|
2775
2820
|
commentSave: commentSave$3,
|
|
2776
2821
|
comments: comments$3,
|
|
@@ -2804,7 +2849,10 @@ const de = {
|
|
|
2804
2849
|
editFormEntityEdit: editFormEntityEdit$3,
|
|
2805
2850
|
editFormEntityTranslate: editFormEntityTranslate$3,
|
|
2806
2851
|
editIndicatorLabel: editIndicatorLabel$3,
|
|
2852
|
+
editIndicatorLabelReview: editIndicatorLabelReview$3,
|
|
2853
|
+
editIndicatorLabelView: editIndicatorLabelView$3,
|
|
2807
2854
|
editableCommandEdit: editableCommandEdit$3,
|
|
2855
|
+
editableFieldDiscard: editableFieldDiscard$3,
|
|
2808
2856
|
entityTitleTourText: entityTitleTourText$3,
|
|
2809
2857
|
entityTitleTourTitle: entityTitleTourTitle$3,
|
|
2810
2858
|
exitDescription: exitDescription$3,
|
|
@@ -2947,6 +2995,8 @@ const de = {
|
|
|
2947
2995
|
feature_history_label: feature_history_label$3,
|
|
2948
2996
|
feature_history_setting_useMouseButtons_description: feature_history_setting_useMouseButtons_description$3,
|
|
2949
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,
|
|
2950
3000
|
"feature_import-existing_description": {
|
|
2951
3001
|
source: "Implements a menu action that renders a dialog to import blocks from another entity.",
|
|
2952
3002
|
translation: "Implementiert eine Menü-Aktion, die einen Dialog zum Importieren von Blöcken aus einer anderen Entität anzeigt."
|
|
@@ -3168,12 +3218,13 @@ const de = {
|
|
|
3168
3218
|
publishResultPublishChangesRemainPublished: publishResultPublishChangesRemainPublished$3,
|
|
3169
3219
|
publishResultSaveChanges: publishResultSaveChanges$3,
|
|
3170
3220
|
publishResultScheduledChanges: publishResultScheduledChanges$3,
|
|
3221
|
+
publishResultScheduledPage: publishResultScheduledPage$3,
|
|
3171
3222
|
publishRevisionLogMessage: publishRevisionLogMessage$3,
|
|
3172
3223
|
publishRevisionLogMessageDescription: publishRevisionLogMessageDescription$3,
|
|
3173
3224
|
publishSaveContent: publishSaveContent$3,
|
|
3174
3225
|
publishSaveContents: publishSaveContents$3,
|
|
3175
3226
|
publishScheduleDate: publishScheduleDate$3,
|
|
3176
|
-
publishScheduleDateTooSoon: publishScheduleDateTooSoon,
|
|
3227
|
+
publishScheduleDateTooSoon: publishScheduleDateTooSoon$3,
|
|
3177
3228
|
publishScheduleInSevenDays: publishScheduleInSevenDays$3,
|
|
3178
3229
|
publishScheduleNextMonday: publishScheduleNextMonday$3,
|
|
3179
3230
|
publishSchedulePublication: publishSchedulePublication$3,
|
|
@@ -3198,13 +3249,13 @@ const de = {
|
|
|
3198
3249
|
revertMenuDescription: revertMenuDescription$3,
|
|
3199
3250
|
revertMenuTitle: revertMenuTitle$3,
|
|
3200
3251
|
revertSuccess: revertSuccess$3,
|
|
3201
|
-
save: save$3,
|
|
3202
3252
|
scheduledFor: scheduledFor$3,
|
|
3203
3253
|
searchBoxNoResultsFound: searchBoxNoResultsFound$3,
|
|
3204
3254
|
searchBoxOnThisPage: searchBoxOnThisPage$3,
|
|
3205
3255
|
searchBoxPlaceholder: searchBoxPlaceholder$3,
|
|
3206
3256
|
searchToolbarLabel: searchToolbarLabel$3,
|
|
3207
3257
|
searchTourText: searchTourText$3,
|
|
3258
|
+
selectAllBlocks: selectAllBlocks$3,
|
|
3208
3259
|
selectAllOfBundle: selectAllOfBundle$3,
|
|
3209
3260
|
selectionActionGroupTitle: selectionActionGroupTitle$3,
|
|
3210
3261
|
settingsAdvanced: settingsAdvanced$3,
|
|
@@ -3259,7 +3310,11 @@ const de = {
|
|
|
3259
3310
|
unexpectedMutationError: unexpectedMutationError$3,
|
|
3260
3311
|
validationsNoneFound: validationsNoneFound$3,
|
|
3261
3312
|
validationsToolbarLabel: validationsToolbarLabel$3,
|
|
3262
|
-
validationsTourText: validationsTourText$3
|
|
3313
|
+
validationsTourText: validationsTourText$3,
|
|
3314
|
+
viewBannerReviewText: viewBannerReviewText$3,
|
|
3315
|
+
viewBannerReviewTitle: viewBannerReviewTitle$3,
|
|
3316
|
+
viewBannerViewText: viewBannerViewText$3,
|
|
3317
|
+
viewBannerViewTitle: viewBannerViewTitle$3
|
|
3263
3318
|
};
|
|
3264
3319
|
|
|
3265
3320
|
const actionsDropdownToolip$2 = {
|
|
@@ -3290,8 +3345,12 @@ const addButtonInsideField$2 = {
|
|
|
3290
3345
|
source: "Add inside @parentBundle » @fieldLabel...",
|
|
3291
3346
|
translation: "Ajouter dans @parentBundle » @fieldLabel..."
|
|
3292
3347
|
};
|
|
3348
|
+
const addCommentHeader$2 = {
|
|
3349
|
+
source: "Add Comment",
|
|
3350
|
+
translation: ""
|
|
3351
|
+
};
|
|
3293
3352
|
const addCommentToItem$2 = {
|
|
3294
|
-
source: "Comment",
|
|
3353
|
+
source: "Add Comment...",
|
|
3295
3354
|
translation: "Commenter"
|
|
3296
3355
|
};
|
|
3297
3356
|
const addListInputPlaceholder$2 = {
|
|
@@ -3506,18 +3565,22 @@ const blockAddListTourTitle$2 = {
|
|
|
3506
3565
|
source: "Favorite blocks",
|
|
3507
3566
|
translation: ""
|
|
3508
3567
|
};
|
|
3568
|
+
const blockOption_bkHiddenGlobally_description$2 = {
|
|
3569
|
+
source: "Always hides the block.",
|
|
3570
|
+
translation: ""
|
|
3571
|
+
};
|
|
3509
3572
|
const blockOption_bkHiddenGlobally_label$2 = {
|
|
3510
3573
|
source: "Hide globally",
|
|
3511
3574
|
translation: ""
|
|
3512
3575
|
};
|
|
3576
|
+
const blockOption_bkVisibleLanguages_description$2 = {
|
|
3577
|
+
source: "Only show on specific languages.",
|
|
3578
|
+
translation: ""
|
|
3579
|
+
};
|
|
3513
3580
|
const blockOption_bkVisibleLanguages_label$2 = {
|
|
3514
3581
|
source: "Visible languages",
|
|
3515
3582
|
translation: ""
|
|
3516
3583
|
};
|
|
3517
|
-
const cancel$2 = {
|
|
3518
|
-
source: "Cancel",
|
|
3519
|
-
translation: "Annuler"
|
|
3520
|
-
};
|
|
3521
3584
|
const cancelSelection$2 = {
|
|
3522
3585
|
source: "Cancel selection",
|
|
3523
3586
|
translation: ""
|
|
@@ -3590,10 +3653,6 @@ const commentAdd$2 = {
|
|
|
3590
3653
|
source: "Add comment",
|
|
3591
3654
|
translation: ""
|
|
3592
3655
|
};
|
|
3593
|
-
const commentBody$2 = {
|
|
3594
|
-
source: "Comment",
|
|
3595
|
-
translation: "Commentaire"
|
|
3596
|
-
};
|
|
3597
3656
|
const commentBodyPlaceholder$2 = {
|
|
3598
3657
|
source: "Add reply",
|
|
3599
3658
|
translation: ""
|
|
@@ -3726,10 +3785,22 @@ const editIndicatorLabel$2 = {
|
|
|
3726
3785
|
source: "Edit blocks",
|
|
3727
3786
|
translation: "Modifier les éléments"
|
|
3728
3787
|
};
|
|
3788
|
+
const editIndicatorLabelReview$2 = {
|
|
3789
|
+
source: "Review changes",
|
|
3790
|
+
translation: ""
|
|
3791
|
+
};
|
|
3792
|
+
const editIndicatorLabelView$2 = {
|
|
3793
|
+
source: "View changes",
|
|
3794
|
+
translation: ""
|
|
3795
|
+
};
|
|
3729
3796
|
const editableCommandEdit$2 = {
|
|
3730
3797
|
source: "Edit field \"@name\"",
|
|
3731
3798
|
translation: ""
|
|
3732
3799
|
};
|
|
3800
|
+
const editableFieldDiscard$2 = {
|
|
3801
|
+
source: "Discard",
|
|
3802
|
+
translation: ""
|
|
3803
|
+
};
|
|
3733
3804
|
const entityTitleTourText$2 = {
|
|
3734
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>",
|
|
3735
3806
|
translation: ""
|
|
@@ -3946,6 +4017,14 @@ const feature_history_setting_useMouseButtons_label$2 = {
|
|
|
3946
4017
|
source: "Use mouse buttons for undo/redo",
|
|
3947
4018
|
translation: "Utiliser les boutons de la souris pour annuler/rétablir"
|
|
3948
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
|
+
};
|
|
3949
4028
|
const feature_library_description$2 = {
|
|
3950
4029
|
source: "Implements support for a block library to manage reusable blocks.",
|
|
3951
4030
|
translation: "Implémente le support d'une bibliothèque de blocs pour gérer les blocs réutilisables."
|
|
@@ -4235,7 +4314,7 @@ const importExistingTitle$2 = {
|
|
|
4235
4314
|
translation: "Importer..."
|
|
4236
4315
|
};
|
|
4237
4316
|
const libraryAdd$2 = {
|
|
4238
|
-
source: "Add to library",
|
|
4317
|
+
source: "Add to library...",
|
|
4239
4318
|
translation: "Ajouter à la bibliothèque"
|
|
4240
4319
|
};
|
|
4241
4320
|
const libraryAddDescription$2 = {
|
|
@@ -4558,10 +4637,14 @@ const publishResultScheduledChanges$2 = {
|
|
|
4558
4637
|
source: "Changes will be published on @date",
|
|
4559
4638
|
translation: ""
|
|
4560
4639
|
};
|
|
4561
|
-
const
|
|
4562
|
-
source: "
|
|
4640
|
+
const publishResultScheduledPage$2 = {
|
|
4641
|
+
source: "Page will be published on @date",
|
|
4563
4642
|
translation: ""
|
|
4564
4643
|
};
|
|
4644
|
+
const publishRevisionLogMessage$2 = {
|
|
4645
|
+
source: "Change description",
|
|
4646
|
+
translation: "Description des modifications"
|
|
4647
|
+
};
|
|
4565
4648
|
const publishRevisionLogMessageDescription$2 = {
|
|
4566
4649
|
source: "Briefly describe the changes made",
|
|
4567
4650
|
translation: ""
|
|
@@ -4578,6 +4661,10 @@ const publishScheduleDate$2 = {
|
|
|
4578
4661
|
source: "Publication date",
|
|
4579
4662
|
translation: ""
|
|
4580
4663
|
};
|
|
4664
|
+
const publishScheduleDateTooSoon$2 = {
|
|
4665
|
+
source: "The scheduled date must be at least 2 minutes in the future",
|
|
4666
|
+
translation: ""
|
|
4667
|
+
};
|
|
4581
4668
|
const publishScheduleInSevenDays$2 = {
|
|
4582
4669
|
source: "In 7 days",
|
|
4583
4670
|
translation: ""
|
|
@@ -4674,10 +4761,6 @@ const revertSuccess$2 = {
|
|
|
4674
4761
|
source: "All changes have been discarded.",
|
|
4675
4762
|
translation: "Toutes les modifications ont été annulées."
|
|
4676
4763
|
};
|
|
4677
|
-
const save$2 = {
|
|
4678
|
-
source: "Save",
|
|
4679
|
-
translation: "Save"
|
|
4680
|
-
};
|
|
4681
4764
|
const scheduledFor$2 = {
|
|
4682
4765
|
source: "The changes will be published on this date.",
|
|
4683
4766
|
translation: ""
|
|
@@ -4702,6 +4785,10 @@ const searchTourText$2 = {
|
|
|
4702
4785
|
source: "Quickly find blocks on the current page or existing content to drag and drop as blocks into the page.",
|
|
4703
4786
|
translation: ""
|
|
4704
4787
|
};
|
|
4788
|
+
const selectAllBlocks$2 = {
|
|
4789
|
+
source: "Select all blocks",
|
|
4790
|
+
translation: ""
|
|
4791
|
+
};
|
|
4705
4792
|
const selectAllOfBundle$2 = {
|
|
4706
4793
|
source: "Select all \"@bundle\" blocks",
|
|
4707
4794
|
translation: ""
|
|
@@ -4890,6 +4977,22 @@ const validationsTourText$2 = {
|
|
|
4890
4977
|
source: "See validation errors for content or structure on the current page.",
|
|
4891
4978
|
translation: ""
|
|
4892
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
|
+
};
|
|
4893
4996
|
const fr = {
|
|
4894
4997
|
actionsDropdownToolip: actionsDropdownToolip$2,
|
|
4895
4998
|
"addBlockCommand.appendInField": {
|
|
@@ -4910,6 +5013,7 @@ const fr = {
|
|
|
4910
5013
|
addButtonBundleBefore: addButtonBundleBefore$2,
|
|
4911
5014
|
addButtonBundleInsideField: addButtonBundleInsideField$2,
|
|
4912
5015
|
addButtonInsideField: addButtonInsideField$2,
|
|
5016
|
+
addCommentHeader: addCommentHeader$2,
|
|
4913
5017
|
addCommentToItem: addCommentToItem$2,
|
|
4914
5018
|
addListInputPlaceholder: addListInputPlaceholder$2,
|
|
4915
5019
|
addListItemFavoriteAdd: addListItemFavoriteAdd$2,
|
|
@@ -4964,9 +5068,10 @@ const fr = {
|
|
|
4964
5068
|
assistantPromptPlaceholder: assistantPromptPlaceholder$2,
|
|
4965
5069
|
blockAddListTourText: blockAddListTourText$2,
|
|
4966
5070
|
blockAddListTourTitle: blockAddListTourTitle$2,
|
|
5071
|
+
blockOption_bkHiddenGlobally_description: blockOption_bkHiddenGlobally_description$2,
|
|
4967
5072
|
blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label$2,
|
|
5073
|
+
blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description$2,
|
|
4968
5074
|
blockOption_bkVisibleLanguages_label: blockOption_bkVisibleLanguages_label$2,
|
|
4969
|
-
cancel: cancel$2,
|
|
4970
5075
|
cancelSelection: cancelSelection$2,
|
|
4971
5076
|
clipboard: clipboard$2,
|
|
4972
5077
|
clipboardCopyShortcutHelp: clipboardCopyShortcutHelp$2,
|
|
@@ -5009,7 +5114,6 @@ const fr = {
|
|
|
5009
5114
|
commandPaletteOpen: commandPaletteOpen$2,
|
|
5010
5115
|
commandPaletteTourText: commandPaletteTourText$2,
|
|
5011
5116
|
commentAdd: commentAdd$2,
|
|
5012
|
-
commentBody: commentBody$2,
|
|
5013
5117
|
commentBodyPlaceholder: commentBodyPlaceholder$2,
|
|
5014
5118
|
commentSave: commentSave$2,
|
|
5015
5119
|
comments: comments$2,
|
|
@@ -5043,7 +5147,10 @@ const fr = {
|
|
|
5043
5147
|
editFormEntityEdit: editFormEntityEdit$2,
|
|
5044
5148
|
editFormEntityTranslate: editFormEntityTranslate$2,
|
|
5045
5149
|
editIndicatorLabel: editIndicatorLabel$2,
|
|
5150
|
+
editIndicatorLabelReview: editIndicatorLabelReview$2,
|
|
5151
|
+
editIndicatorLabelView: editIndicatorLabelView$2,
|
|
5046
5152
|
editableCommandEdit: editableCommandEdit$2,
|
|
5153
|
+
editableFieldDiscard: editableFieldDiscard$2,
|
|
5047
5154
|
entityTitleTourText: entityTitleTourText$2,
|
|
5048
5155
|
entityTitleTourTitle: entityTitleTourTitle$2,
|
|
5049
5156
|
exitDescription: exitDescription$2,
|
|
@@ -5186,6 +5293,8 @@ const fr = {
|
|
|
5186
5293
|
feature_history_label: feature_history_label$2,
|
|
5187
5294
|
feature_history_setting_useMouseButtons_description: feature_history_setting_useMouseButtons_description$2,
|
|
5188
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,
|
|
5189
5298
|
"feature_import-existing_description": {
|
|
5190
5299
|
source: "Implements a menu action that renders a dialog to import blocks from another entity.",
|
|
5191
5300
|
translation: "Implémente une action de menu qui affiche une boîte de dialogue pour importer des blocs depuis une autre entité."
|
|
@@ -5407,11 +5516,13 @@ const fr = {
|
|
|
5407
5516
|
publishResultPublishChangesRemainPublished: publishResultPublishChangesRemainPublished$2,
|
|
5408
5517
|
publishResultSaveChanges: publishResultSaveChanges$2,
|
|
5409
5518
|
publishResultScheduledChanges: publishResultScheduledChanges$2,
|
|
5519
|
+
publishResultScheduledPage: publishResultScheduledPage$2,
|
|
5410
5520
|
publishRevisionLogMessage: publishRevisionLogMessage$2,
|
|
5411
5521
|
publishRevisionLogMessageDescription: publishRevisionLogMessageDescription$2,
|
|
5412
5522
|
publishSaveContent: publishSaveContent$2,
|
|
5413
5523
|
publishSaveContents: publishSaveContents$2,
|
|
5414
5524
|
publishScheduleDate: publishScheduleDate$2,
|
|
5525
|
+
publishScheduleDateTooSoon: publishScheduleDateTooSoon$2,
|
|
5415
5526
|
publishScheduleInSevenDays: publishScheduleInSevenDays$2,
|
|
5416
5527
|
publishScheduleNextMonday: publishScheduleNextMonday$2,
|
|
5417
5528
|
publishSchedulePublication: publishSchedulePublication$2,
|
|
@@ -5436,13 +5547,13 @@ const fr = {
|
|
|
5436
5547
|
revertMenuDescription: revertMenuDescription$2,
|
|
5437
5548
|
revertMenuTitle: revertMenuTitle$2,
|
|
5438
5549
|
revertSuccess: revertSuccess$2,
|
|
5439
|
-
save: save$2,
|
|
5440
5550
|
scheduledFor: scheduledFor$2,
|
|
5441
5551
|
searchBoxNoResultsFound: searchBoxNoResultsFound$2,
|
|
5442
5552
|
searchBoxOnThisPage: searchBoxOnThisPage$2,
|
|
5443
5553
|
searchBoxPlaceholder: searchBoxPlaceholder$2,
|
|
5444
5554
|
searchToolbarLabel: searchToolbarLabel$2,
|
|
5445
5555
|
searchTourText: searchTourText$2,
|
|
5556
|
+
selectAllBlocks: selectAllBlocks$2,
|
|
5446
5557
|
selectAllOfBundle: selectAllOfBundle$2,
|
|
5447
5558
|
selectionActionGroupTitle: selectionActionGroupTitle$2,
|
|
5448
5559
|
settingsAdvanced: settingsAdvanced$2,
|
|
@@ -5497,7 +5608,11 @@ const fr = {
|
|
|
5497
5608
|
unexpectedMutationError: unexpectedMutationError$2,
|
|
5498
5609
|
validationsNoneFound: validationsNoneFound$2,
|
|
5499
5610
|
validationsToolbarLabel: validationsToolbarLabel$2,
|
|
5500
|
-
validationsTourText: validationsTourText$2
|
|
5611
|
+
validationsTourText: validationsTourText$2,
|
|
5612
|
+
viewBannerReviewText: viewBannerReviewText$2,
|
|
5613
|
+
viewBannerReviewTitle: viewBannerReviewTitle$2,
|
|
5614
|
+
viewBannerViewText: viewBannerViewText$2,
|
|
5615
|
+
viewBannerViewTitle: viewBannerViewTitle$2
|
|
5501
5616
|
};
|
|
5502
5617
|
|
|
5503
5618
|
const actionsDropdownToolip$1 = {
|
|
@@ -5528,8 +5643,12 @@ const addButtonInsideField$1 = {
|
|
|
5528
5643
|
source: "Add inside @parentBundle » @fieldLabel...",
|
|
5529
5644
|
translation: "Aggiungi in @parentBundle » @fieldLabel..."
|
|
5530
5645
|
};
|
|
5646
|
+
const addCommentHeader$1 = {
|
|
5647
|
+
source: "Add Comment",
|
|
5648
|
+
translation: ""
|
|
5649
|
+
};
|
|
5531
5650
|
const addCommentToItem$1 = {
|
|
5532
|
-
source: "Comment",
|
|
5651
|
+
source: "Add Comment...",
|
|
5533
5652
|
translation: "Commenta"
|
|
5534
5653
|
};
|
|
5535
5654
|
const addListInputPlaceholder$1 = {
|
|
@@ -5744,18 +5863,22 @@ const blockAddListTourTitle$1 = {
|
|
|
5744
5863
|
source: "Favorite blocks",
|
|
5745
5864
|
translation: ""
|
|
5746
5865
|
};
|
|
5866
|
+
const blockOption_bkHiddenGlobally_description$1 = {
|
|
5867
|
+
source: "Always hides the block.",
|
|
5868
|
+
translation: ""
|
|
5869
|
+
};
|
|
5747
5870
|
const blockOption_bkHiddenGlobally_label$1 = {
|
|
5748
5871
|
source: "Hide globally",
|
|
5749
5872
|
translation: ""
|
|
5750
5873
|
};
|
|
5874
|
+
const blockOption_bkVisibleLanguages_description$1 = {
|
|
5875
|
+
source: "Only show on specific languages.",
|
|
5876
|
+
translation: ""
|
|
5877
|
+
};
|
|
5751
5878
|
const blockOption_bkVisibleLanguages_label$1 = {
|
|
5752
5879
|
source: "Visible languages",
|
|
5753
5880
|
translation: ""
|
|
5754
5881
|
};
|
|
5755
|
-
const cancel$1 = {
|
|
5756
|
-
source: "Cancel",
|
|
5757
|
-
translation: "Annulla"
|
|
5758
|
-
};
|
|
5759
5882
|
const cancelSelection$1 = {
|
|
5760
5883
|
source: "Cancel selection",
|
|
5761
5884
|
translation: ""
|
|
@@ -5828,10 +5951,6 @@ const commentAdd$1 = {
|
|
|
5828
5951
|
source: "Add comment",
|
|
5829
5952
|
translation: ""
|
|
5830
5953
|
};
|
|
5831
|
-
const commentBody$1 = {
|
|
5832
|
-
source: "Comment",
|
|
5833
|
-
translation: "Commento"
|
|
5834
|
-
};
|
|
5835
5954
|
const commentBodyPlaceholder$1 = {
|
|
5836
5955
|
source: "Add reply",
|
|
5837
5956
|
translation: ""
|
|
@@ -5964,10 +6083,22 @@ const editIndicatorLabel$1 = {
|
|
|
5964
6083
|
source: "Edit blocks",
|
|
5965
6084
|
translation: "Modifica elementi"
|
|
5966
6085
|
};
|
|
6086
|
+
const editIndicatorLabelReview$1 = {
|
|
6087
|
+
source: "Review changes",
|
|
6088
|
+
translation: ""
|
|
6089
|
+
};
|
|
6090
|
+
const editIndicatorLabelView$1 = {
|
|
6091
|
+
source: "View changes",
|
|
6092
|
+
translation: ""
|
|
6093
|
+
};
|
|
5967
6094
|
const editableCommandEdit$1 = {
|
|
5968
6095
|
source: "Edit field \"@name\"",
|
|
5969
6096
|
translation: ""
|
|
5970
6097
|
};
|
|
6098
|
+
const editableFieldDiscard$1 = {
|
|
6099
|
+
source: "Discard",
|
|
6100
|
+
translation: ""
|
|
6101
|
+
};
|
|
5971
6102
|
const entityTitleTourText$1 = {
|
|
5972
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>",
|
|
5973
6104
|
translation: ""
|
|
@@ -6184,6 +6315,14 @@ const feature_history_setting_useMouseButtons_label$1 = {
|
|
|
6184
6315
|
source: "Use mouse buttons for undo/redo",
|
|
6185
6316
|
translation: "Usa i pulsanti del mouse per annulla/ripeti"
|
|
6186
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
|
+
};
|
|
6187
6326
|
const feature_library_description$1 = {
|
|
6188
6327
|
source: "Implements support for a block library to manage reusable blocks.",
|
|
6189
6328
|
translation: "Implementa il supporto per una biblioteca di blocchi per gestire blocchi riutilizzabili."
|
|
@@ -6473,7 +6612,7 @@ const importExistingTitle$1 = {
|
|
|
6473
6612
|
translation: "Importa..."
|
|
6474
6613
|
};
|
|
6475
6614
|
const libraryAdd$1 = {
|
|
6476
|
-
source: "Add to library",
|
|
6615
|
+
source: "Add to library...",
|
|
6477
6616
|
translation: "Aggiungi alla biblioteca"
|
|
6478
6617
|
};
|
|
6479
6618
|
const libraryAddDescription$1 = {
|
|
@@ -6796,10 +6935,14 @@ const publishResultScheduledChanges$1 = {
|
|
|
6796
6935
|
source: "Changes will be published on @date",
|
|
6797
6936
|
translation: ""
|
|
6798
6937
|
};
|
|
6799
|
-
const
|
|
6800
|
-
source: "
|
|
6938
|
+
const publishResultScheduledPage$1 = {
|
|
6939
|
+
source: "Page will be published on @date",
|
|
6801
6940
|
translation: ""
|
|
6802
6941
|
};
|
|
6942
|
+
const publishRevisionLogMessage$1 = {
|
|
6943
|
+
source: "Change description",
|
|
6944
|
+
translation: "Descrizione delle modifiche"
|
|
6945
|
+
};
|
|
6803
6946
|
const publishRevisionLogMessageDescription$1 = {
|
|
6804
6947
|
source: "Briefly describe the changes made",
|
|
6805
6948
|
translation: ""
|
|
@@ -6816,6 +6959,10 @@ const publishScheduleDate$1 = {
|
|
|
6816
6959
|
source: "Publication date",
|
|
6817
6960
|
translation: ""
|
|
6818
6961
|
};
|
|
6962
|
+
const publishScheduleDateTooSoon$1 = {
|
|
6963
|
+
source: "The scheduled date must be at least 2 minutes in the future",
|
|
6964
|
+
translation: ""
|
|
6965
|
+
};
|
|
6819
6966
|
const publishScheduleInSevenDays$1 = {
|
|
6820
6967
|
source: "In 7 days",
|
|
6821
6968
|
translation: ""
|
|
@@ -6912,10 +7059,6 @@ const revertSuccess$1 = {
|
|
|
6912
7059
|
source: "All changes have been discarded.",
|
|
6913
7060
|
translation: "Tutte le modifiche sono state scartate."
|
|
6914
7061
|
};
|
|
6915
|
-
const save$1 = {
|
|
6916
|
-
source: "Save",
|
|
6917
|
-
translation: "Save"
|
|
6918
|
-
};
|
|
6919
7062
|
const scheduledFor$1 = {
|
|
6920
7063
|
source: "The changes will be published on this date.",
|
|
6921
7064
|
translation: ""
|
|
@@ -6940,6 +7083,10 @@ const searchTourText$1 = {
|
|
|
6940
7083
|
source: "Quickly find blocks on the current page or existing content to drag and drop as blocks into the page.",
|
|
6941
7084
|
translation: ""
|
|
6942
7085
|
};
|
|
7086
|
+
const selectAllBlocks$1 = {
|
|
7087
|
+
source: "Select all blocks",
|
|
7088
|
+
translation: ""
|
|
7089
|
+
};
|
|
6943
7090
|
const selectAllOfBundle$1 = {
|
|
6944
7091
|
source: "Select all \"@bundle\" blocks",
|
|
6945
7092
|
translation: ""
|
|
@@ -7128,6 +7275,22 @@ const validationsTourText$1 = {
|
|
|
7128
7275
|
source: "See validation errors for content or structure on the current page.",
|
|
7129
7276
|
translation: ""
|
|
7130
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
|
+
};
|
|
7131
7294
|
const it = {
|
|
7132
7295
|
actionsDropdownToolip: actionsDropdownToolip$1,
|
|
7133
7296
|
"addBlockCommand.appendInField": {
|
|
@@ -7148,6 +7311,7 @@ const it = {
|
|
|
7148
7311
|
addButtonBundleBefore: addButtonBundleBefore$1,
|
|
7149
7312
|
addButtonBundleInsideField: addButtonBundleInsideField$1,
|
|
7150
7313
|
addButtonInsideField: addButtonInsideField$1,
|
|
7314
|
+
addCommentHeader: addCommentHeader$1,
|
|
7151
7315
|
addCommentToItem: addCommentToItem$1,
|
|
7152
7316
|
addListInputPlaceholder: addListInputPlaceholder$1,
|
|
7153
7317
|
addListItemFavoriteAdd: addListItemFavoriteAdd$1,
|
|
@@ -7202,9 +7366,10 @@ const it = {
|
|
|
7202
7366
|
assistantPromptPlaceholder: assistantPromptPlaceholder$1,
|
|
7203
7367
|
blockAddListTourText: blockAddListTourText$1,
|
|
7204
7368
|
blockAddListTourTitle: blockAddListTourTitle$1,
|
|
7369
|
+
blockOption_bkHiddenGlobally_description: blockOption_bkHiddenGlobally_description$1,
|
|
7205
7370
|
blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label$1,
|
|
7371
|
+
blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description$1,
|
|
7206
7372
|
blockOption_bkVisibleLanguages_label: blockOption_bkVisibleLanguages_label$1,
|
|
7207
|
-
cancel: cancel$1,
|
|
7208
7373
|
cancelSelection: cancelSelection$1,
|
|
7209
7374
|
clipboard: clipboard$1,
|
|
7210
7375
|
clipboardCopyShortcutHelp: clipboardCopyShortcutHelp$1,
|
|
@@ -7247,7 +7412,6 @@ const it = {
|
|
|
7247
7412
|
commandPaletteOpen: commandPaletteOpen$1,
|
|
7248
7413
|
commandPaletteTourText: commandPaletteTourText$1,
|
|
7249
7414
|
commentAdd: commentAdd$1,
|
|
7250
|
-
commentBody: commentBody$1,
|
|
7251
7415
|
commentBodyPlaceholder: commentBodyPlaceholder$1,
|
|
7252
7416
|
commentSave: commentSave$1,
|
|
7253
7417
|
comments: comments$1,
|
|
@@ -7281,7 +7445,10 @@ const it = {
|
|
|
7281
7445
|
editFormEntityEdit: editFormEntityEdit$1,
|
|
7282
7446
|
editFormEntityTranslate: editFormEntityTranslate$1,
|
|
7283
7447
|
editIndicatorLabel: editIndicatorLabel$1,
|
|
7448
|
+
editIndicatorLabelReview: editIndicatorLabelReview$1,
|
|
7449
|
+
editIndicatorLabelView: editIndicatorLabelView$1,
|
|
7284
7450
|
editableCommandEdit: editableCommandEdit$1,
|
|
7451
|
+
editableFieldDiscard: editableFieldDiscard$1,
|
|
7285
7452
|
entityTitleTourText: entityTitleTourText$1,
|
|
7286
7453
|
entityTitleTourTitle: entityTitleTourTitle$1,
|
|
7287
7454
|
exitDescription: exitDescription$1,
|
|
@@ -7424,6 +7591,8 @@ const it = {
|
|
|
7424
7591
|
feature_history_label: feature_history_label$1,
|
|
7425
7592
|
feature_history_setting_useMouseButtons_description: feature_history_setting_useMouseButtons_description$1,
|
|
7426
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,
|
|
7427
7596
|
"feature_import-existing_description": {
|
|
7428
7597
|
source: "Implements a menu action that renders a dialog to import blocks from another entity.",
|
|
7429
7598
|
translation: "Implementa un'azione di menu che visualizza una finestra di dialogo per importare blocchi da un'altra entità."
|
|
@@ -7645,11 +7814,13 @@ const it = {
|
|
|
7645
7814
|
publishResultPublishChangesRemainPublished: publishResultPublishChangesRemainPublished$1,
|
|
7646
7815
|
publishResultSaveChanges: publishResultSaveChanges$1,
|
|
7647
7816
|
publishResultScheduledChanges: publishResultScheduledChanges$1,
|
|
7817
|
+
publishResultScheduledPage: publishResultScheduledPage$1,
|
|
7648
7818
|
publishRevisionLogMessage: publishRevisionLogMessage$1,
|
|
7649
7819
|
publishRevisionLogMessageDescription: publishRevisionLogMessageDescription$1,
|
|
7650
7820
|
publishSaveContent: publishSaveContent$1,
|
|
7651
7821
|
publishSaveContents: publishSaveContents$1,
|
|
7652
7822
|
publishScheduleDate: publishScheduleDate$1,
|
|
7823
|
+
publishScheduleDateTooSoon: publishScheduleDateTooSoon$1,
|
|
7653
7824
|
publishScheduleInSevenDays: publishScheduleInSevenDays$1,
|
|
7654
7825
|
publishScheduleNextMonday: publishScheduleNextMonday$1,
|
|
7655
7826
|
publishSchedulePublication: publishSchedulePublication$1,
|
|
@@ -7674,13 +7845,13 @@ const it = {
|
|
|
7674
7845
|
revertMenuDescription: revertMenuDescription$1,
|
|
7675
7846
|
revertMenuTitle: revertMenuTitle$1,
|
|
7676
7847
|
revertSuccess: revertSuccess$1,
|
|
7677
|
-
save: save$1,
|
|
7678
7848
|
scheduledFor: scheduledFor$1,
|
|
7679
7849
|
searchBoxNoResultsFound: searchBoxNoResultsFound$1,
|
|
7680
7850
|
searchBoxOnThisPage: searchBoxOnThisPage$1,
|
|
7681
7851
|
searchBoxPlaceholder: searchBoxPlaceholder$1,
|
|
7682
7852
|
searchToolbarLabel: searchToolbarLabel$1,
|
|
7683
7853
|
searchTourText: searchTourText$1,
|
|
7854
|
+
selectAllBlocks: selectAllBlocks$1,
|
|
7684
7855
|
selectAllOfBundle: selectAllOfBundle$1,
|
|
7685
7856
|
selectionActionGroupTitle: selectionActionGroupTitle$1,
|
|
7686
7857
|
settingsAdvanced: settingsAdvanced$1,
|
|
@@ -7735,7 +7906,11 @@ const it = {
|
|
|
7735
7906
|
unexpectedMutationError: unexpectedMutationError$1,
|
|
7736
7907
|
validationsNoneFound: validationsNoneFound$1,
|
|
7737
7908
|
validationsToolbarLabel: validationsToolbarLabel$1,
|
|
7738
|
-
validationsTourText: validationsTourText$1
|
|
7909
|
+
validationsTourText: validationsTourText$1,
|
|
7910
|
+
viewBannerReviewText: viewBannerReviewText$1,
|
|
7911
|
+
viewBannerReviewTitle: viewBannerReviewTitle$1,
|
|
7912
|
+
viewBannerViewText: viewBannerViewText$1,
|
|
7913
|
+
viewBannerViewTitle: viewBannerViewTitle$1
|
|
7739
7914
|
};
|
|
7740
7915
|
|
|
7741
7916
|
const actionsDropdownToolip = {
|
|
@@ -7766,8 +7941,12 @@ const addButtonInsideField = {
|
|
|
7766
7941
|
source: "Add inside @parentBundle » @fieldLabel...",
|
|
7767
7942
|
translation: "In @parentBundle » @fieldLabel drzuefüege..."
|
|
7768
7943
|
};
|
|
7944
|
+
const addCommentHeader = {
|
|
7945
|
+
source: "Add Comment",
|
|
7946
|
+
translation: ""
|
|
7947
|
+
};
|
|
7769
7948
|
const addCommentToItem = {
|
|
7770
|
-
source: "Comment",
|
|
7949
|
+
source: "Add Comment...",
|
|
7771
7950
|
translation: "Kommentiere"
|
|
7772
7951
|
};
|
|
7773
7952
|
const addListInputPlaceholder = {
|
|
@@ -7982,18 +8161,22 @@ const blockAddListTourTitle = {
|
|
|
7982
8161
|
source: "Favorite blocks",
|
|
7983
8162
|
translation: "Lieblingsblöck"
|
|
7984
8163
|
};
|
|
8164
|
+
const blockOption_bkHiddenGlobally_description = {
|
|
8165
|
+
source: "Always hides the block.",
|
|
8166
|
+
translation: ""
|
|
8167
|
+
};
|
|
7985
8168
|
const blockOption_bkHiddenGlobally_label = {
|
|
7986
8169
|
source: "Hide globally",
|
|
7987
8170
|
translation: "Global verstecke"
|
|
7988
8171
|
};
|
|
8172
|
+
const blockOption_bkVisibleLanguages_description = {
|
|
8173
|
+
source: "Only show on specific languages.",
|
|
8174
|
+
translation: ""
|
|
8175
|
+
};
|
|
7989
8176
|
const blockOption_bkVisibleLanguages_label = {
|
|
7990
8177
|
source: "Visible languages",
|
|
7991
8178
|
translation: "Sichtbari Sproche"
|
|
7992
8179
|
};
|
|
7993
|
-
const cancel = {
|
|
7994
|
-
source: "Cancel",
|
|
7995
|
-
translation: "Abbräche"
|
|
7996
|
-
};
|
|
7997
8180
|
const cancelSelection = {
|
|
7998
8181
|
source: "Cancel selection",
|
|
7999
8182
|
translation: "Uswahl abbräche"
|
|
@@ -8066,10 +8249,6 @@ const commentAdd = {
|
|
|
8066
8249
|
source: "Add comment",
|
|
8067
8250
|
translation: "Kommentar drzuefüege"
|
|
8068
8251
|
};
|
|
8069
|
-
const commentBody = {
|
|
8070
|
-
source: "Comment",
|
|
8071
|
-
translation: "Kommentar"
|
|
8072
|
-
};
|
|
8073
8252
|
const commentBodyPlaceholder = {
|
|
8074
8253
|
source: "Add reply",
|
|
8075
8254
|
translation: "Antwort drzuefüege"
|
|
@@ -8202,10 +8381,22 @@ const editIndicatorLabel = {
|
|
|
8202
8381
|
source: "Edit blocks",
|
|
8203
8382
|
translation: "Elemänt bearbeite"
|
|
8204
8383
|
};
|
|
8384
|
+
const editIndicatorLabelReview = {
|
|
8385
|
+
source: "Review changes",
|
|
8386
|
+
translation: ""
|
|
8387
|
+
};
|
|
8388
|
+
const editIndicatorLabelView = {
|
|
8389
|
+
source: "View changes",
|
|
8390
|
+
translation: ""
|
|
8391
|
+
};
|
|
8205
8392
|
const editableCommandEdit = {
|
|
8206
8393
|
source: "Edit field \"@name\"",
|
|
8207
8394
|
translation: "Fäld «@name» bearbeite"
|
|
8208
8395
|
};
|
|
8396
|
+
const editableFieldDiscard = {
|
|
8397
|
+
source: "Discard",
|
|
8398
|
+
translation: ""
|
|
8399
|
+
};
|
|
8209
8400
|
const entityTitleTourText = {
|
|
8210
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>",
|
|
8211
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>"
|
|
@@ -8422,6 +8613,14 @@ const feature_history_setting_useMouseButtons_label = {
|
|
|
8422
8613
|
source: "Use mouse buttons for undo/redo",
|
|
8423
8614
|
translation: "Muustaschte für Rückgängig/Wiederhärstelle bruche"
|
|
8424
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
|
+
};
|
|
8425
8624
|
const feature_library_description = {
|
|
8426
8625
|
source: "Implements support for a block library to manage reusable blocks.",
|
|
8427
8626
|
translation: "Implementiert Understützig für e Block-Bibliothek zum wiederverwändbare Blöck z'verwallte."
|
|
@@ -8711,7 +8910,7 @@ const importExistingTitle = {
|
|
|
8711
8910
|
translation: "Importiere..."
|
|
8712
8911
|
};
|
|
8713
8912
|
const libraryAdd = {
|
|
8714
|
-
source: "Add to library",
|
|
8913
|
+
source: "Add to library...",
|
|
8715
8914
|
translation: "Zur Bibliothek drzuefüege"
|
|
8716
8915
|
};
|
|
8717
8916
|
const libraryAddDescription = {
|
|
@@ -9034,8 +9233,12 @@ const publishResultScheduledChanges = {
|
|
|
9034
9233
|
source: "Changes will be published on @date",
|
|
9035
9234
|
translation: ""
|
|
9036
9235
|
};
|
|
9236
|
+
const publishResultScheduledPage = {
|
|
9237
|
+
source: "Page will be published on @date",
|
|
9238
|
+
translation: ""
|
|
9239
|
+
};
|
|
9037
9240
|
const publishRevisionLogMessage = {
|
|
9038
|
-
source: "
|
|
9241
|
+
source: "Change description",
|
|
9039
9242
|
translation: ""
|
|
9040
9243
|
};
|
|
9041
9244
|
const publishRevisionLogMessageDescription = {
|
|
@@ -9054,6 +9257,10 @@ const publishScheduleDate = {
|
|
|
9054
9257
|
source: "Publication date",
|
|
9055
9258
|
translation: ""
|
|
9056
9259
|
};
|
|
9260
|
+
const publishScheduleDateTooSoon = {
|
|
9261
|
+
source: "The scheduled date must be at least 2 minutes in the future",
|
|
9262
|
+
translation: ""
|
|
9263
|
+
};
|
|
9057
9264
|
const publishScheduleInSevenDays = {
|
|
9058
9265
|
source: "In 7 days",
|
|
9059
9266
|
translation: ""
|
|
@@ -9150,10 +9357,6 @@ const revertSuccess = {
|
|
|
9150
9357
|
source: "All changes have been discarded.",
|
|
9151
9358
|
translation: "Alli Änderige sin glöcht worde."
|
|
9152
9359
|
};
|
|
9153
|
-
const save = {
|
|
9154
|
-
source: "Save",
|
|
9155
|
-
translation: "Speichere"
|
|
9156
|
-
};
|
|
9157
9360
|
const scheduledFor = {
|
|
9158
9361
|
source: "The changes will be published on this date.",
|
|
9159
9362
|
translation: ""
|
|
@@ -9178,6 +9381,10 @@ const searchTourText = {
|
|
|
9178
9381
|
source: "Quickly find blocks on the current page or existing content to drag and drop as blocks into the page.",
|
|
9179
9382
|
translation: "Find schnäll Blöck uf dr aktuälle Sitte oder bestehendi Inhält zum si als Blöck in d'Sitte z'zieh."
|
|
9180
9383
|
};
|
|
9384
|
+
const selectAllBlocks = {
|
|
9385
|
+
source: "Select all blocks",
|
|
9386
|
+
translation: ""
|
|
9387
|
+
};
|
|
9181
9388
|
const selectAllOfBundle = {
|
|
9182
9389
|
source: "Select all \"@bundle\" blocks",
|
|
9183
9390
|
translation: "Alli «@bundle»-Blöck uswähle"
|
|
@@ -9366,6 +9573,22 @@ const validationsTourText = {
|
|
|
9366
9573
|
source: "See validation errors for content or structure on the current page.",
|
|
9367
9574
|
translation: "Lueg Validierigsfähler für Inhalt oder Struktur uf dr aktuälle Sitte aa."
|
|
9368
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
|
+
};
|
|
9369
9592
|
const gsw_CH = {
|
|
9370
9593
|
actionsDropdownToolip: actionsDropdownToolip,
|
|
9371
9594
|
"addBlockCommand.appendInField": {
|
|
@@ -9386,6 +9609,7 @@ const gsw_CH = {
|
|
|
9386
9609
|
addButtonBundleBefore: addButtonBundleBefore,
|
|
9387
9610
|
addButtonBundleInsideField: addButtonBundleInsideField,
|
|
9388
9611
|
addButtonInsideField: addButtonInsideField,
|
|
9612
|
+
addCommentHeader: addCommentHeader,
|
|
9389
9613
|
addCommentToItem: addCommentToItem,
|
|
9390
9614
|
addListInputPlaceholder: addListInputPlaceholder,
|
|
9391
9615
|
addListItemFavoriteAdd: addListItemFavoriteAdd,
|
|
@@ -9440,9 +9664,10 @@ const gsw_CH = {
|
|
|
9440
9664
|
assistantPromptPlaceholder: assistantPromptPlaceholder,
|
|
9441
9665
|
blockAddListTourText: blockAddListTourText,
|
|
9442
9666
|
blockAddListTourTitle: blockAddListTourTitle,
|
|
9667
|
+
blockOption_bkHiddenGlobally_description: blockOption_bkHiddenGlobally_description,
|
|
9443
9668
|
blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label,
|
|
9669
|
+
blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description,
|
|
9444
9670
|
blockOption_bkVisibleLanguages_label: blockOption_bkVisibleLanguages_label,
|
|
9445
|
-
cancel: cancel,
|
|
9446
9671
|
cancelSelection: cancelSelection,
|
|
9447
9672
|
clipboard: clipboard,
|
|
9448
9673
|
clipboardCopyShortcutHelp: clipboardCopyShortcutHelp,
|
|
@@ -9485,7 +9710,6 @@ const gsw_CH = {
|
|
|
9485
9710
|
commandPaletteOpen: commandPaletteOpen,
|
|
9486
9711
|
commandPaletteTourText: commandPaletteTourText,
|
|
9487
9712
|
commentAdd: commentAdd,
|
|
9488
|
-
commentBody: commentBody,
|
|
9489
9713
|
commentBodyPlaceholder: commentBodyPlaceholder,
|
|
9490
9714
|
commentSave: commentSave,
|
|
9491
9715
|
comments: comments,
|
|
@@ -9519,7 +9743,10 @@ const gsw_CH = {
|
|
|
9519
9743
|
editFormEntityEdit: editFormEntityEdit,
|
|
9520
9744
|
editFormEntityTranslate: editFormEntityTranslate,
|
|
9521
9745
|
editIndicatorLabel: editIndicatorLabel,
|
|
9746
|
+
editIndicatorLabelReview: editIndicatorLabelReview,
|
|
9747
|
+
editIndicatorLabelView: editIndicatorLabelView,
|
|
9522
9748
|
editableCommandEdit: editableCommandEdit,
|
|
9749
|
+
editableFieldDiscard: editableFieldDiscard,
|
|
9523
9750
|
entityTitleTourText: entityTitleTourText,
|
|
9524
9751
|
entityTitleTourTitle: entityTitleTourTitle,
|
|
9525
9752
|
exitDescription: exitDescription,
|
|
@@ -9662,6 +9889,8 @@ const gsw_CH = {
|
|
|
9662
9889
|
feature_history_label: feature_history_label,
|
|
9663
9890
|
feature_history_setting_useMouseButtons_description: feature_history_setting_useMouseButtons_description,
|
|
9664
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,
|
|
9665
9894
|
"feature_import-existing_description": {
|
|
9666
9895
|
source: "Implements a menu action that renders a dialog to import blocks from another entity.",
|
|
9667
9896
|
translation: "Implementiert e Menü-Aktion wo e Dialog renderet zum Blöck vonere andere Entität z'importiere."
|
|
@@ -9883,11 +10112,13 @@ const gsw_CH = {
|
|
|
9883
10112
|
publishResultPublishChangesRemainPublished: publishResultPublishChangesRemainPublished,
|
|
9884
10113
|
publishResultSaveChanges: publishResultSaveChanges,
|
|
9885
10114
|
publishResultScheduledChanges: publishResultScheduledChanges,
|
|
10115
|
+
publishResultScheduledPage: publishResultScheduledPage,
|
|
9886
10116
|
publishRevisionLogMessage: publishRevisionLogMessage,
|
|
9887
10117
|
publishRevisionLogMessageDescription: publishRevisionLogMessageDescription,
|
|
9888
10118
|
publishSaveContent: publishSaveContent,
|
|
9889
10119
|
publishSaveContents: publishSaveContents,
|
|
9890
10120
|
publishScheduleDate: publishScheduleDate,
|
|
10121
|
+
publishScheduleDateTooSoon: publishScheduleDateTooSoon,
|
|
9891
10122
|
publishScheduleInSevenDays: publishScheduleInSevenDays,
|
|
9892
10123
|
publishScheduleNextMonday: publishScheduleNextMonday,
|
|
9893
10124
|
publishSchedulePublication: publishSchedulePublication,
|
|
@@ -9912,13 +10143,13 @@ const gsw_CH = {
|
|
|
9912
10143
|
revertMenuDescription: revertMenuDescription,
|
|
9913
10144
|
revertMenuTitle: revertMenuTitle,
|
|
9914
10145
|
revertSuccess: revertSuccess,
|
|
9915
|
-
save: save,
|
|
9916
10146
|
scheduledFor: scheduledFor,
|
|
9917
10147
|
searchBoxNoResultsFound: searchBoxNoResultsFound,
|
|
9918
10148
|
searchBoxOnThisPage: searchBoxOnThisPage,
|
|
9919
10149
|
searchBoxPlaceholder: searchBoxPlaceholder,
|
|
9920
10150
|
searchToolbarLabel: searchToolbarLabel,
|
|
9921
10151
|
searchTourText: searchTourText,
|
|
10152
|
+
selectAllBlocks: selectAllBlocks,
|
|
9922
10153
|
selectAllOfBundle: selectAllOfBundle,
|
|
9923
10154
|
selectionActionGroupTitle: selectionActionGroupTitle,
|
|
9924
10155
|
settingsAdvanced: settingsAdvanced,
|
|
@@ -9973,7 +10204,11 @@ const gsw_CH = {
|
|
|
9973
10204
|
unexpectedMutationError: unexpectedMutationError,
|
|
9974
10205
|
validationsNoneFound: validationsNoneFound,
|
|
9975
10206
|
validationsToolbarLabel: validationsToolbarLabel,
|
|
9976
|
-
validationsTourText: validationsTourText
|
|
10207
|
+
validationsTourText: validationsTourText,
|
|
10208
|
+
viewBannerReviewText: viewBannerReviewText,
|
|
10209
|
+
viewBannerReviewTitle: viewBannerReviewTitle,
|
|
10210
|
+
viewBannerViewText: viewBannerViewText,
|
|
10211
|
+
viewBannerViewTitle: viewBannerViewTitle
|
|
9977
10212
|
};
|
|
9978
10213
|
|
|
9979
10214
|
const translations$1 = {
|
|
@@ -10229,14 +10464,14 @@ const lime$3 = {
|
|
|
10229
10464
|
203
|
|
10230
10465
|
],
|
|
10231
10466
|
normal: [
|
|
10232
|
-
|
|
10233
|
-
|
|
10234
|
-
|
|
10467
|
+
122,
|
|
10468
|
+
196,
|
|
10469
|
+
18
|
|
10235
10470
|
],
|
|
10236
10471
|
dark: [
|
|
10237
|
-
|
|
10238
|
-
|
|
10239
|
-
|
|
10472
|
+
81,
|
|
10473
|
+
129,
|
|
10474
|
+
19
|
|
10240
10475
|
]
|
|
10241
10476
|
};
|
|
10242
10477
|
const arctic = {
|
|
@@ -11778,12 +12013,14 @@ const module = defineNuxtModule({
|
|
|
11778
12013
|
[BK_VISIBLE_LANGUAGES]: {
|
|
11779
12014
|
type: "checkboxes",
|
|
11780
12015
|
label: "Visible languages",
|
|
12016
|
+
description: "Only show on specific languages.",
|
|
11781
12017
|
options: {},
|
|
11782
12018
|
default: []
|
|
11783
12019
|
},
|
|
11784
12020
|
[BK_HIDDEN_GLOBALLY]: {
|
|
11785
12021
|
type: "checkbox",
|
|
11786
12022
|
label: "Hide globally",
|
|
12023
|
+
description: "Always hides the block.",
|
|
11787
12024
|
default: false
|
|
11788
12025
|
}
|
|
11789
12026
|
},
|