@blokkli/editor 2.0.0-alpha.17 → 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.
- package/dist/module.json +1 -1
- package/dist/module.mjs +380 -59
- package/dist/modules/drupal/graphql/base/fragment.paragraphsFieldItem.graphql +3 -1
- package/dist/modules/drupal/graphql/base/query.pbConfig.graphql +1 -10
- package/dist/modules/drupal/graphql/mutations/set_paragraph_schedule.graphql +15 -0
- package/dist/modules/drupal/index.mjs +33 -0
- package/dist/modules/drupal/runtime/adapter/index.js +10 -2
- package/dist/runtime/adapter/index.d.ts +21 -0
- package/dist/runtime/blokkliPlugins/ContextMenu/Menu/index.vue +3 -0
- package/dist/runtime/blokkliPlugins/ItemAction/index.vue +23 -13
- package/dist/runtime/blokkliPlugins/ItemAction/index.vue.d.ts +20 -44
- package/dist/runtime/blokkliPlugins/TourItem/index.vue +10 -5
- package/dist/runtime/components/BlokkliEditable.vue +13 -13
- package/dist/runtime/components/BlokkliField.vue +3 -0
- package/dist/runtime/components/BlokkliField.vue.d.ts +3 -3
- package/dist/runtime/components/BlokkliItem.vue +1 -1
- package/dist/runtime/components/BlokkliItem.vue.d.ts +4 -2
- package/dist/runtime/components/BlokkliProvider.vue +12 -8
- package/dist/runtime/components/Edit/Actions/index.vue +27 -16
- package/dist/runtime/components/Edit/AnimationCanvas/index.vue +26 -10
- package/dist/runtime/components/Edit/ArtboardTooltip/index.vue +3 -0
- package/dist/runtime/components/Edit/Dialog/index.vue +6 -4
- package/dist/runtime/components/Edit/DraggableList.vue +15 -7
- package/dist/runtime/components/Edit/DraggableList.vue.d.ts +5 -5
- package/dist/runtime/components/Edit/EditProvider.vue +29 -16
- package/dist/runtime/components/Edit/EditProvider.vue.d.ts +1 -0
- package/dist/runtime/components/Edit/Features/AddList/index.vue +9 -11
- package/dist/runtime/components/Edit/Features/Analyze/Overlay/index.vue +9 -6
- package/dist/runtime/components/Edit/Features/Analyze/Renderer.vue +1 -1
- package/dist/runtime/components/Edit/Features/Analyze/Results/ResultsItemNodesTarget.vue +15 -11
- package/dist/runtime/components/Edit/Features/Anchors/Renderer.vue +19 -102
- package/dist/runtime/components/Edit/Features/Artboard/Renderer.vue +3 -0
- package/dist/runtime/components/Edit/Features/BlockAddList/index.vue +28 -52
- package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/ScheduleSection.vue +154 -0
- package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/ScheduleSection.vue.d.ts +27 -0
- package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/index.vue +222 -0
- package/dist/runtime/components/Edit/Features/BlockScheduler/Dialog/index.vue.d.ts +11 -0
- package/dist/runtime/components/Edit/Features/BlockScheduler/index.vue +96 -0
- package/dist/runtime/components/Edit/Features/BlockScheduler/index.vue.d.ts +2 -0
- package/dist/runtime/components/Edit/Features/Clipboard/index.vue +15 -16
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Item/index.vue +51 -0
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/{Group → Item}/index.vue.d.ts +9 -13
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/index.vue +46 -66
- package/dist/runtime/components/Edit/Features/Comments/index.vue +1 -1
- package/dist/runtime/components/Edit/Features/Conversions/index.vue +4 -7
- package/dist/runtime/components/Edit/Features/Debug/Rects/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/Debug/index.vue +4 -1
- package/dist/runtime/components/Edit/Features/Delete/index.vue +1 -1
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DragItems/index.vue +13 -5
- package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/index.vue +14 -11
- package/dist/runtime/components/Edit/Features/DraggingOverlay/index.vue +30 -18
- package/dist/runtime/components/Edit/Features/Duplicate/index.vue +6 -8
- package/dist/runtime/components/Edit/Features/Edit/index.vue +15 -21
- package/dist/runtime/components/Edit/Features/EditForm/index.vue +7 -6
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue +8 -3
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/Frame/index.vue.d.ts +2 -2
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue +29 -12
- package/dist/runtime/components/Edit/Features/EditableField/Overlay/index.vue.d.ts +2 -2
- package/dist/runtime/components/Edit/Features/EditableField/index.vue +40 -42
- package/dist/runtime/components/Edit/Features/Fragments/Dialog/index.vue +11 -9
- package/dist/runtime/components/Edit/Features/Fragments/index.vue +3 -3
- package/dist/runtime/components/Edit/Features/Hover/Overlay/index.vue +16 -25
- package/dist/runtime/components/Edit/Features/Library/EditReusable/index.vue +5 -7
- package/dist/runtime/components/Edit/Features/Library/ReusableDialog/index.vue +5 -5
- package/dist/runtime/components/Edit/Features/Library/index.vue +27 -23
- package/dist/runtime/components/Edit/Features/MediaLibrary/Library/index.vue +6 -3
- package/dist/runtime/components/Edit/Features/MediaLibrary/index.vue +15 -12
- package/dist/runtime/components/Edit/Features/MultiSelect/Overlay/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/Options/Form/index.vue +7 -6
- package/dist/runtime/components/Edit/Features/Options/index.vue +6 -6
- package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue +68 -15
- package/dist/runtime/components/Edit/Features/Search/Overlay/Results/Page/index.vue +15 -15
- package/dist/runtime/components/Edit/Features/Search/index.vue +4 -1
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Overlay/index.vue.d.ts +3 -3
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/Renderer/index.vue +34 -11
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/index.vue +21 -20
- package/dist/runtime/components/Edit/Features/Selection/AddButtons/index.vue.d.ts +2 -2
- package/dist/runtime/components/Edit/Features/Selection/Overlay/index.vue.d.ts +3 -3
- package/dist/runtime/components/Edit/Features/Selection/OverlayFallback/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/Selection/index.vue +61 -27
- package/dist/runtime/components/Edit/Features/Structure/List/Field/index.vue +2 -2
- package/dist/runtime/components/Edit/Features/Structure/List/Item/index.vue +13 -6
- package/dist/runtime/components/Edit/Features/Tour/Overlay/index.vue +3 -0
- package/dist/runtime/components/Edit/Features/Transform/index.vue +2 -27
- package/dist/runtime/components/Edit/Features/Translations/index.vue +7 -7
- package/dist/runtime/components/Edit/Features/Validations/SidebarItem/index.vue +5 -5
- package/dist/runtime/components/Edit/Features/index.vue +17 -7
- package/dist/runtime/components/Edit/Form/Toggle/index.vue +4 -3
- package/dist/runtime/components/Edit/Form/Toggle/index.vue.d.ts +12 -2
- package/dist/runtime/components/Edit/InfoBox/index.vue +6 -2
- package/dist/runtime/components/Edit/InfoBox/index.vue.d.ts +12 -2
- package/dist/runtime/components/Edit/{Features/Publish/Dialog/ScheduleDate.vue → ScheduleDate/index.vue} +6 -58
- package/dist/runtime/components/Edit/{Features/Publish/Dialog/ScheduleDate.vue.d.ts → ScheduleDate/index.vue.d.ts} +11 -1
- package/dist/runtime/components/Edit/ShortcutIndicator/index.vue +3 -0
- package/dist/runtime/components/Edit/Transition/Height.vue +95 -0
- package/dist/runtime/components/Edit/Transition/Height.vue.d.ts +36 -0
- package/dist/runtime/components/Edit/index.d.ts +3 -1
- package/dist/runtime/components/Edit/index.js +5 -1
- package/dist/runtime/css/output.css +1 -1
- package/dist/runtime/helpers/animationProvider.d.ts +2 -1
- package/dist/runtime/helpers/animationProvider.js +6 -2
- package/dist/runtime/helpers/composables/useStateBasedCache.d.ts +4 -0
- package/dist/runtime/helpers/composables/useStateBasedCache.js +13 -0
- package/dist/runtime/helpers/definitionProvider.d.ts +1 -1
- package/dist/runtime/helpers/dom/index.d.ts +1 -1
- package/dist/runtime/helpers/domProvider.d.ts +10 -16
- package/dist/runtime/helpers/domProvider.js +80 -135
- package/dist/runtime/helpers/index.d.ts +1 -8
- package/dist/runtime/helpers/index.js +1 -84
- package/dist/runtime/helpers/providers/blocks.d.ts +10 -0
- package/dist/runtime/helpers/providers/blocks.js +91 -0
- package/dist/runtime/helpers/providers/directive.d.ts +24 -0
- package/dist/runtime/helpers/{editableProvider.js → providers/directive.js} +90 -29
- package/dist/runtime/helpers/providers/element.d.ts +6 -0
- package/dist/runtime/helpers/providers/element.js +35 -0
- package/dist/runtime/helpers/providers/fields.d.ts +8 -0
- package/dist/runtime/helpers/providers/fields.js +47 -0
- package/dist/runtime/helpers/selectionProvider.d.ts +11 -11
- package/dist/runtime/helpers/selectionProvider.js +38 -45
- package/dist/runtime/helpers/stateProvider.d.ts +1 -0
- package/dist/runtime/helpers/stateProvider.js +21 -15
- package/dist/runtime/helpers/themeProvider.d.ts +2 -1
- package/dist/runtime/helpers/themeProvider.js +24 -14
- package/dist/runtime/helpers/typesProvider.js +10 -26
- package/dist/runtime/helpers/uiProvider.d.ts +3 -2
- package/dist/runtime/helpers/uiProvider.js +11 -15
- package/dist/runtime/icons/calendar.svg +1 -0
- package/dist/runtime/icons/clock.svg +1 -0
- package/dist/runtime/icons/comment_add.svg +1 -5
- package/dist/runtime/icons/delete.svg +1 -8
- package/dist/runtime/icons/duplicate.svg +1 -12
- package/dist/runtime/icons/edit.svg +1 -8
- package/dist/runtime/icons/reusable.svg +1 -5
- package/dist/runtime/plugins/{blokkliEditable.js → blokkliDirectives.js} +14 -20
- package/dist/runtime/types/index.d.ts +55 -36
- package/package.json +1 -1
- package/dist/runtime/components/Edit/Features/CommandPalette/Palette/Group/index.vue +0 -63
- package/dist/runtime/helpers/editableProvider.d.ts +0 -14
- /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.
|
|
18
|
+
const version = "2.0.0-alpha.18";
|
|
19
19
|
|
|
20
20
|
function sortObjectKeys(obj) {
|
|
21
21
|
if (Array.isArray(obj)) {
|
|
@@ -1283,6 +1283,50 @@ const blockOption_bkVisibleLanguages_label$3 = {
|
|
|
1283
1283
|
source: "Visible languages",
|
|
1284
1284
|
translation: "Sichtbare Sprachen"
|
|
1285
1285
|
};
|
|
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"
|
|
1329
|
+
};
|
|
1286
1330
|
const cancelSelection$3 = {
|
|
1287
1331
|
source: "Cancel selection",
|
|
1288
1332
|
translation: "Auswahl abbrechen"
|
|
@@ -1460,7 +1504,7 @@ const duplicateError$3 = {
|
|
|
1460
1504
|
translation: "Die Elemente konnten nicht dupliziert werden."
|
|
1461
1505
|
};
|
|
1462
1506
|
const edit$3 = {
|
|
1463
|
-
source: "Edit",
|
|
1507
|
+
source: "Edit...",
|
|
1464
1508
|
translation: "Bearbeiten..."
|
|
1465
1509
|
};
|
|
1466
1510
|
const editFormBlockAdd$3 = {
|
|
@@ -2095,6 +2139,10 @@ const libraryPreviewLabel$3 = {
|
|
|
2095
2139
|
source: "Preview",
|
|
2096
2140
|
translation: "Vorschau"
|
|
2097
2141
|
};
|
|
2142
|
+
const manageSchedule$3 = {
|
|
2143
|
+
source: "Manage schedule...",
|
|
2144
|
+
translation: "Planung verwalten..."
|
|
2145
|
+
};
|
|
2098
2146
|
const maskHide$3 = {
|
|
2099
2147
|
source: "Hide non-editable areas",
|
|
2100
2148
|
translation: "Nicht-editierbare Bereiche verstecken"
|
|
@@ -2131,6 +2179,14 @@ const multipleItemsLabel$3 = {
|
|
|
2131
2179
|
source: "Items",
|
|
2132
2180
|
translation: "Elemente"
|
|
2133
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
|
+
};
|
|
2134
2190
|
const optionBkVisibleLanguagesAll$3 = {
|
|
2135
2191
|
source: "All languages",
|
|
2136
2192
|
translation: "Alle Sprachen"
|
|
@@ -2367,14 +2423,6 @@ const publishScheduleDateTooSoon$3 = {
|
|
|
2367
2423
|
source: "The scheduled date must be at least 2 minutes in the future",
|
|
2368
2424
|
translation: "Das geplante Datum muss mindestens 2 Minuten in der Zukunft liegen"
|
|
2369
2425
|
};
|
|
2370
|
-
const publishScheduleInSevenDays$3 = {
|
|
2371
|
-
source: "In 7 days",
|
|
2372
|
-
translation: "In 7 Tagen"
|
|
2373
|
-
};
|
|
2374
|
-
const publishScheduleNextMonday$3 = {
|
|
2375
|
-
source: "Next Monday",
|
|
2376
|
-
translation: "Nächster Montag"
|
|
2377
|
-
};
|
|
2378
2426
|
const publishSchedulePublication$3 = {
|
|
2379
2427
|
source: "Schedule publication",
|
|
2380
2428
|
translation: "Veröffentlichung planen"
|
|
@@ -2387,9 +2435,13 @@ const publishScheduleSuccess$3 = {
|
|
|
2387
2435
|
source: "Publication scheduled for @date",
|
|
2388
2436
|
translation: "Veröffentlichung für @date geplant"
|
|
2389
2437
|
};
|
|
2390
|
-
const
|
|
2391
|
-
source: "
|
|
2392
|
-
translation: "
|
|
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"
|
|
2393
2445
|
};
|
|
2394
2446
|
const publishScheduledInfo$3 = {
|
|
2395
2447
|
source: "You can still make changes until the scheduled publication date.",
|
|
@@ -2495,6 +2547,10 @@ const selectAllOfBundle$3 = {
|
|
|
2495
2547
|
source: "Select all \"@bundle\" blocks",
|
|
2496
2548
|
translation: "Alle «@bundle» Blöcke auswählen"
|
|
2497
2549
|
};
|
|
2550
|
+
const selectedIsNew$3 = {
|
|
2551
|
+
source: "New",
|
|
2552
|
+
translation: "Neu"
|
|
2553
|
+
};
|
|
2498
2554
|
const selectionActionGroupTitle$3 = {
|
|
2499
2555
|
source: "Selection",
|
|
2500
2556
|
translation: "Auswahl"
|
|
@@ -2774,6 +2830,17 @@ const de = {
|
|
|
2774
2830
|
blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label$3,
|
|
2775
2831
|
blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description$3,
|
|
2776
2832
|
blockOption_bkVisibleLanguages_label: blockOption_bkVisibleLanguages_label$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,
|
|
2777
2844
|
cancelSelection: cancelSelection$3,
|
|
2778
2845
|
clipboard: clipboard$3,
|
|
2779
2846
|
clipboardCopyShortcutHelp: clipboardCopyShortcutHelp$3,
|
|
@@ -2916,6 +2983,14 @@ const de = {
|
|
|
2916
2983
|
"feature_block-add-list_setting_hideDisabledBlocks_label": {
|
|
2917
2984
|
source: "Hide blocks that can't be added",
|
|
2918
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: ""
|
|
2919
2994
|
},
|
|
2920
2995
|
feature_clipboard_description: feature_clipboard_description$3,
|
|
2921
2996
|
feature_clipboard_label: feature_clipboard_label$3,
|
|
@@ -3145,6 +3220,7 @@ const de = {
|
|
|
3145
3220
|
libraryPlaceSearchInputPlaceholder: libraryPlaceSearchInputPlaceholder$3,
|
|
3146
3221
|
libraryPlaceSearchLabel: libraryPlaceSearchLabel$3,
|
|
3147
3222
|
libraryPreviewLabel: libraryPreviewLabel$3,
|
|
3223
|
+
manageSchedule: manageSchedule$3,
|
|
3148
3224
|
maskHide: maskHide$3,
|
|
3149
3225
|
maskShow: maskShow$3,
|
|
3150
3226
|
maskToggle: maskToggle$3,
|
|
@@ -3154,6 +3230,8 @@ const de = {
|
|
|
3154
3230
|
mediaLibraryReplaceMedia: mediaLibraryReplaceMedia$3,
|
|
3155
3231
|
mediaLibraryTourText: mediaLibraryTourText$3,
|
|
3156
3232
|
multipleItemsLabel: multipleItemsLabel$3,
|
|
3233
|
+
notSet: notSet$3,
|
|
3234
|
+
notSupported: notSupported$3,
|
|
3157
3235
|
optionBkVisibleLanguagesAll: optionBkVisibleLanguagesAll$3,
|
|
3158
3236
|
"optionsCommand.selectCheckboxValue": {
|
|
3159
3237
|
source: "Select \"@value\" in \"@option\"",
|
|
@@ -3225,12 +3303,11 @@ const de = {
|
|
|
3225
3303
|
publishSaveContents: publishSaveContents$3,
|
|
3226
3304
|
publishScheduleDate: publishScheduleDate$3,
|
|
3227
3305
|
publishScheduleDateTooSoon: publishScheduleDateTooSoon$3,
|
|
3228
|
-
publishScheduleInSevenDays: publishScheduleInSevenDays$3,
|
|
3229
|
-
publishScheduleNextMonday: publishScheduleNextMonday$3,
|
|
3230
3306
|
publishSchedulePublication: publishSchedulePublication$3,
|
|
3231
3307
|
publishSchedulePublications: publishSchedulePublications$3,
|
|
3232
3308
|
publishScheduleSuccess: publishScheduleSuccess$3,
|
|
3233
|
-
|
|
3309
|
+
publishScheduledBlockPlural: publishScheduledBlockPlural$3,
|
|
3310
|
+
publishScheduledBlockSingular: publishScheduledBlockSingular$3,
|
|
3234
3311
|
publishScheduledInfo: publishScheduledInfo$3,
|
|
3235
3312
|
publishStatus: publishStatus$3,
|
|
3236
3313
|
publishSuccess: publishSuccess$3,
|
|
@@ -3257,6 +3334,7 @@ const de = {
|
|
|
3257
3334
|
searchTourText: searchTourText$3,
|
|
3258
3335
|
selectAllBlocks: selectAllBlocks$3,
|
|
3259
3336
|
selectAllOfBundle: selectAllOfBundle$3,
|
|
3337
|
+
selectedIsNew: selectedIsNew$3,
|
|
3260
3338
|
selectionActionGroupTitle: selectionActionGroupTitle$3,
|
|
3261
3339
|
settingsAdvanced: settingsAdvanced$3,
|
|
3262
3340
|
settingsAppearance: settingsAppearance$3,
|
|
@@ -3581,6 +3659,50 @@ const blockOption_bkVisibleLanguages_label$2 = {
|
|
|
3581
3659
|
source: "Visible languages",
|
|
3582
3660
|
translation: ""
|
|
3583
3661
|
};
|
|
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: ""
|
|
3705
|
+
};
|
|
3584
3706
|
const cancelSelection$2 = {
|
|
3585
3707
|
source: "Cancel selection",
|
|
3586
3708
|
translation: ""
|
|
@@ -3758,7 +3880,7 @@ const duplicateError$2 = {
|
|
|
3758
3880
|
translation: "Les éléments n'ont pas pu être dupliqués."
|
|
3759
3881
|
};
|
|
3760
3882
|
const edit$2 = {
|
|
3761
|
-
source: "Edit",
|
|
3883
|
+
source: "Edit...",
|
|
3762
3884
|
translation: "Modifier"
|
|
3763
3885
|
};
|
|
3764
3886
|
const editFormBlockAdd$2 = {
|
|
@@ -4393,6 +4515,10 @@ const libraryPreviewLabel$2 = {
|
|
|
4393
4515
|
source: "Preview",
|
|
4394
4516
|
translation: "Aperçu"
|
|
4395
4517
|
};
|
|
4518
|
+
const manageSchedule$2 = {
|
|
4519
|
+
source: "Manage schedule...",
|
|
4520
|
+
translation: ""
|
|
4521
|
+
};
|
|
4396
4522
|
const maskHide$2 = {
|
|
4397
4523
|
source: "Hide non-editable areas",
|
|
4398
4524
|
translation: "Masquer les champs de contenu"
|
|
@@ -4429,6 +4555,14 @@ const multipleItemsLabel$2 = {
|
|
|
4429
4555
|
source: "Items",
|
|
4430
4556
|
translation: "Éléments"
|
|
4431
4557
|
};
|
|
4558
|
+
const notSet$2 = {
|
|
4559
|
+
source: "Not set",
|
|
4560
|
+
translation: ""
|
|
4561
|
+
};
|
|
4562
|
+
const notSupported$2 = {
|
|
4563
|
+
source: "Not supported",
|
|
4564
|
+
translation: ""
|
|
4565
|
+
};
|
|
4432
4566
|
const optionBkVisibleLanguagesAll$2 = {
|
|
4433
4567
|
source: "All languages",
|
|
4434
4568
|
translation: ""
|
|
@@ -4665,14 +4799,6 @@ const publishScheduleDateTooSoon$2 = {
|
|
|
4665
4799
|
source: "The scheduled date must be at least 2 minutes in the future",
|
|
4666
4800
|
translation: ""
|
|
4667
4801
|
};
|
|
4668
|
-
const publishScheduleInSevenDays$2 = {
|
|
4669
|
-
source: "In 7 days",
|
|
4670
|
-
translation: ""
|
|
4671
|
-
};
|
|
4672
|
-
const publishScheduleNextMonday$2 = {
|
|
4673
|
-
source: "Next Monday",
|
|
4674
|
-
translation: ""
|
|
4675
|
-
};
|
|
4676
4802
|
const publishSchedulePublication$2 = {
|
|
4677
4803
|
source: "Schedule publication",
|
|
4678
4804
|
translation: ""
|
|
@@ -4685,8 +4811,12 @@ const publishScheduleSuccess$2 = {
|
|
|
4685
4811
|
source: "Publication scheduled for @date",
|
|
4686
4812
|
translation: ""
|
|
4687
4813
|
};
|
|
4688
|
-
const
|
|
4689
|
-
source: "
|
|
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",
|
|
4690
4820
|
translation: ""
|
|
4691
4821
|
};
|
|
4692
4822
|
const publishScheduledInfo$2 = {
|
|
@@ -4793,6 +4923,10 @@ const selectAllOfBundle$2 = {
|
|
|
4793
4923
|
source: "Select all \"@bundle\" blocks",
|
|
4794
4924
|
translation: ""
|
|
4795
4925
|
};
|
|
4926
|
+
const selectedIsNew$2 = {
|
|
4927
|
+
source: "New",
|
|
4928
|
+
translation: ""
|
|
4929
|
+
};
|
|
4796
4930
|
const selectionActionGroupTitle$2 = {
|
|
4797
4931
|
source: "Selection",
|
|
4798
4932
|
translation: ""
|
|
@@ -5072,6 +5206,17 @@ const fr = {
|
|
|
5072
5206
|
blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label$2,
|
|
5073
5207
|
blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description$2,
|
|
5074
5208
|
blockOption_bkVisibleLanguages_label: blockOption_bkVisibleLanguages_label$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,
|
|
5075
5220
|
cancelSelection: cancelSelection$2,
|
|
5076
5221
|
clipboard: clipboard$2,
|
|
5077
5222
|
clipboardCopyShortcutHelp: clipboardCopyShortcutHelp$2,
|
|
@@ -5214,6 +5359,14 @@ const fr = {
|
|
|
5214
5359
|
"feature_block-add-list_setting_hideDisabledBlocks_label": {
|
|
5215
5360
|
source: "Hide blocks that can't be added",
|
|
5216
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: ""
|
|
5217
5370
|
},
|
|
5218
5371
|
feature_clipboard_description: feature_clipboard_description$2,
|
|
5219
5372
|
feature_clipboard_label: feature_clipboard_label$2,
|
|
@@ -5443,6 +5596,7 @@ const fr = {
|
|
|
5443
5596
|
libraryPlaceSearchInputPlaceholder: libraryPlaceSearchInputPlaceholder$2,
|
|
5444
5597
|
libraryPlaceSearchLabel: libraryPlaceSearchLabel$2,
|
|
5445
5598
|
libraryPreviewLabel: libraryPreviewLabel$2,
|
|
5599
|
+
manageSchedule: manageSchedule$2,
|
|
5446
5600
|
maskHide: maskHide$2,
|
|
5447
5601
|
maskShow: maskShow$2,
|
|
5448
5602
|
maskToggle: maskToggle$2,
|
|
@@ -5452,6 +5606,8 @@ const fr = {
|
|
|
5452
5606
|
mediaLibraryReplaceMedia: mediaLibraryReplaceMedia$2,
|
|
5453
5607
|
mediaLibraryTourText: mediaLibraryTourText$2,
|
|
5454
5608
|
multipleItemsLabel: multipleItemsLabel$2,
|
|
5609
|
+
notSet: notSet$2,
|
|
5610
|
+
notSupported: notSupported$2,
|
|
5455
5611
|
optionBkVisibleLanguagesAll: optionBkVisibleLanguagesAll$2,
|
|
5456
5612
|
"optionsCommand.selectCheckboxValue": {
|
|
5457
5613
|
source: "Select \"@value\" in \"@option\"",
|
|
@@ -5523,12 +5679,11 @@ const fr = {
|
|
|
5523
5679
|
publishSaveContents: publishSaveContents$2,
|
|
5524
5680
|
publishScheduleDate: publishScheduleDate$2,
|
|
5525
5681
|
publishScheduleDateTooSoon: publishScheduleDateTooSoon$2,
|
|
5526
|
-
publishScheduleInSevenDays: publishScheduleInSevenDays$2,
|
|
5527
|
-
publishScheduleNextMonday: publishScheduleNextMonday$2,
|
|
5528
5682
|
publishSchedulePublication: publishSchedulePublication$2,
|
|
5529
5683
|
publishSchedulePublications: publishSchedulePublications$2,
|
|
5530
5684
|
publishScheduleSuccess: publishScheduleSuccess$2,
|
|
5531
|
-
|
|
5685
|
+
publishScheduledBlockPlural: publishScheduledBlockPlural$2,
|
|
5686
|
+
publishScheduledBlockSingular: publishScheduledBlockSingular$2,
|
|
5532
5687
|
publishScheduledInfo: publishScheduledInfo$2,
|
|
5533
5688
|
publishStatus: publishStatus$2,
|
|
5534
5689
|
publishSuccess: publishSuccess$2,
|
|
@@ -5555,6 +5710,7 @@ const fr = {
|
|
|
5555
5710
|
searchTourText: searchTourText$2,
|
|
5556
5711
|
selectAllBlocks: selectAllBlocks$2,
|
|
5557
5712
|
selectAllOfBundle: selectAllOfBundle$2,
|
|
5713
|
+
selectedIsNew: selectedIsNew$2,
|
|
5558
5714
|
selectionActionGroupTitle: selectionActionGroupTitle$2,
|
|
5559
5715
|
settingsAdvanced: settingsAdvanced$2,
|
|
5560
5716
|
settingsAppearance: settingsAppearance$2,
|
|
@@ -5879,6 +6035,50 @@ const blockOption_bkVisibleLanguages_label$1 = {
|
|
|
5879
6035
|
source: "Visible languages",
|
|
5880
6036
|
translation: ""
|
|
5881
6037
|
};
|
|
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: ""
|
|
6081
|
+
};
|
|
5882
6082
|
const cancelSelection$1 = {
|
|
5883
6083
|
source: "Cancel selection",
|
|
5884
6084
|
translation: ""
|
|
@@ -6056,7 +6256,7 @@ const duplicateError$1 = {
|
|
|
6056
6256
|
translation: "Gli elementi non possono essere duplicati."
|
|
6057
6257
|
};
|
|
6058
6258
|
const edit$1 = {
|
|
6059
|
-
source: "Edit",
|
|
6259
|
+
source: "Edit...",
|
|
6060
6260
|
translation: "Modifica"
|
|
6061
6261
|
};
|
|
6062
6262
|
const editFormBlockAdd$1 = {
|
|
@@ -6691,6 +6891,10 @@ const libraryPreviewLabel$1 = {
|
|
|
6691
6891
|
source: "Preview",
|
|
6692
6892
|
translation: "Anteprima"
|
|
6693
6893
|
};
|
|
6894
|
+
const manageSchedule$1 = {
|
|
6895
|
+
source: "Manage schedule...",
|
|
6896
|
+
translation: ""
|
|
6897
|
+
};
|
|
6694
6898
|
const maskHide$1 = {
|
|
6695
6899
|
source: "Hide non-editable areas",
|
|
6696
6900
|
translation: "Nascondi campi di contenuto"
|
|
@@ -6727,6 +6931,14 @@ const multipleItemsLabel$1 = {
|
|
|
6727
6931
|
source: "Items",
|
|
6728
6932
|
translation: "Elementi"
|
|
6729
6933
|
};
|
|
6934
|
+
const notSet$1 = {
|
|
6935
|
+
source: "Not set",
|
|
6936
|
+
translation: ""
|
|
6937
|
+
};
|
|
6938
|
+
const notSupported$1 = {
|
|
6939
|
+
source: "Not supported",
|
|
6940
|
+
translation: ""
|
|
6941
|
+
};
|
|
6730
6942
|
const optionBkVisibleLanguagesAll$1 = {
|
|
6731
6943
|
source: "All languages",
|
|
6732
6944
|
translation: ""
|
|
@@ -6963,14 +7175,6 @@ const publishScheduleDateTooSoon$1 = {
|
|
|
6963
7175
|
source: "The scheduled date must be at least 2 minutes in the future",
|
|
6964
7176
|
translation: ""
|
|
6965
7177
|
};
|
|
6966
|
-
const publishScheduleInSevenDays$1 = {
|
|
6967
|
-
source: "In 7 days",
|
|
6968
|
-
translation: ""
|
|
6969
|
-
};
|
|
6970
|
-
const publishScheduleNextMonday$1 = {
|
|
6971
|
-
source: "Next Monday",
|
|
6972
|
-
translation: ""
|
|
6973
|
-
};
|
|
6974
7178
|
const publishSchedulePublication$1 = {
|
|
6975
7179
|
source: "Schedule publication",
|
|
6976
7180
|
translation: ""
|
|
@@ -6983,8 +7187,12 @@ const publishScheduleSuccess$1 = {
|
|
|
6983
7187
|
source: "Publication scheduled for @date",
|
|
6984
7188
|
translation: ""
|
|
6985
7189
|
};
|
|
6986
|
-
const
|
|
6987
|
-
source: "
|
|
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",
|
|
6988
7196
|
translation: ""
|
|
6989
7197
|
};
|
|
6990
7198
|
const publishScheduledInfo$1 = {
|
|
@@ -7091,6 +7299,10 @@ const selectAllOfBundle$1 = {
|
|
|
7091
7299
|
source: "Select all \"@bundle\" blocks",
|
|
7092
7300
|
translation: ""
|
|
7093
7301
|
};
|
|
7302
|
+
const selectedIsNew$1 = {
|
|
7303
|
+
source: "New",
|
|
7304
|
+
translation: ""
|
|
7305
|
+
};
|
|
7094
7306
|
const selectionActionGroupTitle$1 = {
|
|
7095
7307
|
source: "Selection",
|
|
7096
7308
|
translation: ""
|
|
@@ -7370,6 +7582,17 @@ const it = {
|
|
|
7370
7582
|
blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label$1,
|
|
7371
7583
|
blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description$1,
|
|
7372
7584
|
blockOption_bkVisibleLanguages_label: blockOption_bkVisibleLanguages_label$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,
|
|
7373
7596
|
cancelSelection: cancelSelection$1,
|
|
7374
7597
|
clipboard: clipboard$1,
|
|
7375
7598
|
clipboardCopyShortcutHelp: clipboardCopyShortcutHelp$1,
|
|
@@ -7512,6 +7735,14 @@ const it = {
|
|
|
7512
7735
|
"feature_block-add-list_setting_hideDisabledBlocks_label": {
|
|
7513
7736
|
source: "Hide blocks that can't be added",
|
|
7514
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: ""
|
|
7515
7746
|
},
|
|
7516
7747
|
feature_clipboard_description: feature_clipboard_description$1,
|
|
7517
7748
|
feature_clipboard_label: feature_clipboard_label$1,
|
|
@@ -7741,6 +7972,7 @@ const it = {
|
|
|
7741
7972
|
libraryPlaceSearchInputPlaceholder: libraryPlaceSearchInputPlaceholder$1,
|
|
7742
7973
|
libraryPlaceSearchLabel: libraryPlaceSearchLabel$1,
|
|
7743
7974
|
libraryPreviewLabel: libraryPreviewLabel$1,
|
|
7975
|
+
manageSchedule: manageSchedule$1,
|
|
7744
7976
|
maskHide: maskHide$1,
|
|
7745
7977
|
maskShow: maskShow$1,
|
|
7746
7978
|
maskToggle: maskToggle$1,
|
|
@@ -7750,6 +7982,8 @@ const it = {
|
|
|
7750
7982
|
mediaLibraryReplaceMedia: mediaLibraryReplaceMedia$1,
|
|
7751
7983
|
mediaLibraryTourText: mediaLibraryTourText$1,
|
|
7752
7984
|
multipleItemsLabel: multipleItemsLabel$1,
|
|
7985
|
+
notSet: notSet$1,
|
|
7986
|
+
notSupported: notSupported$1,
|
|
7753
7987
|
optionBkVisibleLanguagesAll: optionBkVisibleLanguagesAll$1,
|
|
7754
7988
|
"optionsCommand.selectCheckboxValue": {
|
|
7755
7989
|
source: "Select \"@value\" in \"@option\"",
|
|
@@ -7821,12 +8055,11 @@ const it = {
|
|
|
7821
8055
|
publishSaveContents: publishSaveContents$1,
|
|
7822
8056
|
publishScheduleDate: publishScheduleDate$1,
|
|
7823
8057
|
publishScheduleDateTooSoon: publishScheduleDateTooSoon$1,
|
|
7824
|
-
publishScheduleInSevenDays: publishScheduleInSevenDays$1,
|
|
7825
|
-
publishScheduleNextMonday: publishScheduleNextMonday$1,
|
|
7826
8058
|
publishSchedulePublication: publishSchedulePublication$1,
|
|
7827
8059
|
publishSchedulePublications: publishSchedulePublications$1,
|
|
7828
8060
|
publishScheduleSuccess: publishScheduleSuccess$1,
|
|
7829
|
-
|
|
8061
|
+
publishScheduledBlockPlural: publishScheduledBlockPlural$1,
|
|
8062
|
+
publishScheduledBlockSingular: publishScheduledBlockSingular$1,
|
|
7830
8063
|
publishScheduledInfo: publishScheduledInfo$1,
|
|
7831
8064
|
publishStatus: publishStatus$1,
|
|
7832
8065
|
publishSuccess: publishSuccess$1,
|
|
@@ -7853,6 +8086,7 @@ const it = {
|
|
|
7853
8086
|
searchTourText: searchTourText$1,
|
|
7854
8087
|
selectAllBlocks: selectAllBlocks$1,
|
|
7855
8088
|
selectAllOfBundle: selectAllOfBundle$1,
|
|
8089
|
+
selectedIsNew: selectedIsNew$1,
|
|
7856
8090
|
selectionActionGroupTitle: selectionActionGroupTitle$1,
|
|
7857
8091
|
settingsAdvanced: settingsAdvanced$1,
|
|
7858
8092
|
settingsAppearance: settingsAppearance$1,
|
|
@@ -8177,6 +8411,50 @@ const blockOption_bkVisibleLanguages_label = {
|
|
|
8177
8411
|
source: "Visible languages",
|
|
8178
8412
|
translation: "Sichtbari Sproche"
|
|
8179
8413
|
};
|
|
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: ""
|
|
8457
|
+
};
|
|
8180
8458
|
const cancelSelection = {
|
|
8181
8459
|
source: "Cancel selection",
|
|
8182
8460
|
translation: "Uswahl abbräche"
|
|
@@ -8354,7 +8632,7 @@ const duplicateError = {
|
|
|
8354
8632
|
translation: "D'Elemänt hän nid chönne dupliziert wärde. "
|
|
8355
8633
|
};
|
|
8356
8634
|
const edit = {
|
|
8357
|
-
source: "Edit",
|
|
8635
|
+
source: "Edit...",
|
|
8358
8636
|
translation: "Bearbeite"
|
|
8359
8637
|
};
|
|
8360
8638
|
const editFormBlockAdd = {
|
|
@@ -8989,6 +9267,10 @@ const libraryPreviewLabel = {
|
|
|
8989
9267
|
source: "Preview",
|
|
8990
9268
|
translation: "Vorschau"
|
|
8991
9269
|
};
|
|
9270
|
+
const manageSchedule = {
|
|
9271
|
+
source: "Manage schedule...",
|
|
9272
|
+
translation: ""
|
|
9273
|
+
};
|
|
8992
9274
|
const maskHide = {
|
|
8993
9275
|
source: "Hide non-editable areas",
|
|
8994
9276
|
translation: "Inhaltsfälder verstecke"
|
|
@@ -9025,6 +9307,14 @@ const multipleItemsLabel = {
|
|
|
9025
9307
|
source: "Items",
|
|
9026
9308
|
translation: "Elemänt"
|
|
9027
9309
|
};
|
|
9310
|
+
const notSet = {
|
|
9311
|
+
source: "Not set",
|
|
9312
|
+
translation: ""
|
|
9313
|
+
};
|
|
9314
|
+
const notSupported = {
|
|
9315
|
+
source: "Not supported",
|
|
9316
|
+
translation: ""
|
|
9317
|
+
};
|
|
9028
9318
|
const optionBkVisibleLanguagesAll = {
|
|
9029
9319
|
source: "All languages",
|
|
9030
9320
|
translation: "Alli Sproche"
|
|
@@ -9261,14 +9551,6 @@ const publishScheduleDateTooSoon = {
|
|
|
9261
9551
|
source: "The scheduled date must be at least 2 minutes in the future",
|
|
9262
9552
|
translation: ""
|
|
9263
9553
|
};
|
|
9264
|
-
const publishScheduleInSevenDays = {
|
|
9265
|
-
source: "In 7 days",
|
|
9266
|
-
translation: ""
|
|
9267
|
-
};
|
|
9268
|
-
const publishScheduleNextMonday = {
|
|
9269
|
-
source: "Next Monday",
|
|
9270
|
-
translation: ""
|
|
9271
|
-
};
|
|
9272
9554
|
const publishSchedulePublication = {
|
|
9273
9555
|
source: "Schedule publication",
|
|
9274
9556
|
translation: ""
|
|
@@ -9281,8 +9563,12 @@ const publishScheduleSuccess = {
|
|
|
9281
9563
|
source: "Publication scheduled for @date",
|
|
9282
9564
|
translation: ""
|
|
9283
9565
|
};
|
|
9284
|
-
const
|
|
9285
|
-
source: "
|
|
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",
|
|
9286
9572
|
translation: ""
|
|
9287
9573
|
};
|
|
9288
9574
|
const publishScheduledInfo = {
|
|
@@ -9389,6 +9675,10 @@ const selectAllOfBundle = {
|
|
|
9389
9675
|
source: "Select all \"@bundle\" blocks",
|
|
9390
9676
|
translation: "Alli «@bundle»-Blöck uswähle"
|
|
9391
9677
|
};
|
|
9678
|
+
const selectedIsNew = {
|
|
9679
|
+
source: "New",
|
|
9680
|
+
translation: ""
|
|
9681
|
+
};
|
|
9392
9682
|
const selectionActionGroupTitle = {
|
|
9393
9683
|
source: "Selection",
|
|
9394
9684
|
translation: "Uswahl"
|
|
@@ -9668,6 +9958,17 @@ const gsw_CH = {
|
|
|
9668
9958
|
blockOption_bkHiddenGlobally_label: blockOption_bkHiddenGlobally_label,
|
|
9669
9959
|
blockOption_bkVisibleLanguages_description: blockOption_bkVisibleLanguages_description,
|
|
9670
9960
|
blockOption_bkVisibleLanguages_label: blockOption_bkVisibleLanguages_label,
|
|
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,
|
|
9671
9972
|
cancelSelection: cancelSelection,
|
|
9672
9973
|
clipboard: clipboard,
|
|
9673
9974
|
clipboardCopyShortcutHelp: clipboardCopyShortcutHelp,
|
|
@@ -9810,6 +10111,14 @@ const gsw_CH = {
|
|
|
9810
10111
|
"feature_block-add-list_setting_hideDisabledBlocks_label": {
|
|
9811
10112
|
source: "Hide blocks that can't be added",
|
|
9812
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: ""
|
|
9813
10122
|
},
|
|
9814
10123
|
feature_clipboard_description: feature_clipboard_description,
|
|
9815
10124
|
feature_clipboard_label: feature_clipboard_label,
|
|
@@ -10039,6 +10348,7 @@ const gsw_CH = {
|
|
|
10039
10348
|
libraryPlaceSearchInputPlaceholder: libraryPlaceSearchInputPlaceholder,
|
|
10040
10349
|
libraryPlaceSearchLabel: libraryPlaceSearchLabel,
|
|
10041
10350
|
libraryPreviewLabel: libraryPreviewLabel,
|
|
10351
|
+
manageSchedule: manageSchedule,
|
|
10042
10352
|
maskHide: maskHide,
|
|
10043
10353
|
maskShow: maskShow,
|
|
10044
10354
|
maskToggle: maskToggle,
|
|
@@ -10048,6 +10358,8 @@ const gsw_CH = {
|
|
|
10048
10358
|
mediaLibraryReplaceMedia: mediaLibraryReplaceMedia,
|
|
10049
10359
|
mediaLibraryTourText: mediaLibraryTourText,
|
|
10050
10360
|
multipleItemsLabel: multipleItemsLabel,
|
|
10361
|
+
notSet: notSet,
|
|
10362
|
+
notSupported: notSupported,
|
|
10051
10363
|
optionBkVisibleLanguagesAll: optionBkVisibleLanguagesAll,
|
|
10052
10364
|
"optionsCommand.selectCheckboxValue": {
|
|
10053
10365
|
source: "Select \"@value\" in \"@option\"",
|
|
@@ -10119,12 +10431,11 @@ const gsw_CH = {
|
|
|
10119
10431
|
publishSaveContents: publishSaveContents,
|
|
10120
10432
|
publishScheduleDate: publishScheduleDate,
|
|
10121
10433
|
publishScheduleDateTooSoon: publishScheduleDateTooSoon,
|
|
10122
|
-
publishScheduleInSevenDays: publishScheduleInSevenDays,
|
|
10123
|
-
publishScheduleNextMonday: publishScheduleNextMonday,
|
|
10124
10434
|
publishSchedulePublication: publishSchedulePublication,
|
|
10125
10435
|
publishSchedulePublications: publishSchedulePublications,
|
|
10126
10436
|
publishScheduleSuccess: publishScheduleSuccess,
|
|
10127
|
-
|
|
10437
|
+
publishScheduledBlockPlural: publishScheduledBlockPlural,
|
|
10438
|
+
publishScheduledBlockSingular: publishScheduledBlockSingular,
|
|
10128
10439
|
publishScheduledInfo: publishScheduledInfo,
|
|
10129
10440
|
publishStatus: publishStatus,
|
|
10130
10441
|
publishSuccess: publishSuccess,
|
|
@@ -10151,6 +10462,7 @@ const gsw_CH = {
|
|
|
10151
10462
|
searchTourText: searchTourText,
|
|
10152
10463
|
selectAllBlocks: selectAllBlocks,
|
|
10153
10464
|
selectAllOfBundle: selectAllOfBundle,
|
|
10465
|
+
selectedIsNew: selectedIsNew,
|
|
10154
10466
|
selectionActionGroupTitle: selectionActionGroupTitle,
|
|
10155
10467
|
settingsAdvanced: settingsAdvanced,
|
|
10156
10468
|
settingsAppearance: settingsAppearance,
|
|
@@ -11103,6 +11415,10 @@ export const defaultLanguage = ${JSON.stringify(
|
|
|
11103
11415
|
export const forceDefaultLanguage = ${JSON.stringify(
|
|
11104
11416
|
!!ctx.helper.options.forceDefaultLanguage
|
|
11105
11417
|
)}
|
|
11418
|
+
|
|
11419
|
+
export const itemEntityType = ${JSON.stringify(
|
|
11420
|
+
ctx.helper.options.itemEntityType || "block"
|
|
11421
|
+
)}
|
|
11106
11422
|
`;
|
|
11107
11423
|
},
|
|
11108
11424
|
(ctx) => {
|
|
@@ -11149,6 +11465,11 @@ export declare const defaultLanguage: string
|
|
|
11149
11465
|
* Whether to always force the default language, even on translation pages.
|
|
11150
11466
|
*/
|
|
11151
11467
|
export declare const forceDefaultLanguage: boolean
|
|
11468
|
+
|
|
11469
|
+
/**
|
|
11470
|
+
* The block item entity type.
|
|
11471
|
+
*/
|
|
11472
|
+
export declare const itemEntityType: string
|
|
11152
11473
|
`;
|
|
11153
11474
|
}
|
|
11154
11475
|
);
|
|
@@ -12119,7 +12440,7 @@ const module = defineNuxtModule({
|
|
|
12119
12440
|
});
|
|
12120
12441
|
});
|
|
12121
12442
|
addPlugin({
|
|
12122
|
-
src: resolver.resolve("runtime/plugins/
|
|
12443
|
+
src: resolver.resolve("runtime/plugins/blokkliDirectives")
|
|
12123
12444
|
});
|
|
12124
12445
|
addBuildPlugin(RuntimeDefinitionPlugin(nuxt, "defineBlokkli"));
|
|
12125
12446
|
addBuildPlugin(RuntimeDefinitionPlugin(nuxt, "defineBlokkliFragment"));
|