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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +922 -2
  3. package/dist/modules/drupal/graphql/base/fragment.paragraphsBlokkliEditState.graphql +4 -0
  4. package/dist/modules/drupal/graphql/features/publishNew.graphql +1 -4
  5. package/dist/modules/drupal/graphql/features/scheduler.graphql +31 -0
  6. package/dist/modules/drupal/index.mjs +17 -0
  7. package/dist/modules/drupal/runtime/adapter/index.js +31 -1
  8. package/dist/runtime/adapter/index.d.ts +36 -0
  9. package/dist/runtime/blokkliPlugins/MenuButton/index.vue.d.ts +2 -2
  10. package/dist/runtime/components/Edit/Dialog/index.vue +3 -0
  11. package/dist/runtime/components/Edit/Dialog/index.vue.d.ts +2 -0
  12. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/fragment.glsl +7 -1
  13. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/index.vue +22 -3
  14. package/dist/runtime/components/Edit/Features/DraggingOverlay/DropTargets/vertex.glsl +1 -0
  15. package/dist/runtime/components/Edit/Features/EntityTitle/index.vue +33 -1
  16. package/dist/runtime/components/Edit/Features/Publish/Dialog/Item.vue +41 -14
  17. package/dist/runtime/components/Edit/Features/Publish/Dialog/Item.vue.d.ts +2 -0
  18. package/dist/runtime/components/Edit/Features/Publish/Dialog/PublishOption.vue +47 -0
  19. package/dist/runtime/components/Edit/Features/Publish/Dialog/PublishOption.vue.d.ts +19 -0
  20. package/dist/runtime/components/Edit/Features/Publish/Dialog/ScheduleDate.vue +183 -0
  21. package/dist/runtime/components/Edit/Features/Publish/Dialog/ScheduleDate.vue.d.ts +13 -0
  22. package/dist/runtime/components/Edit/Features/Publish/Dialog/Summary.vue +83 -0
  23. package/dist/runtime/components/Edit/Features/Publish/Dialog/Summary.vue.d.ts +9 -0
  24. package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue +391 -129
  25. package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue.d.ts +3 -14
  26. package/dist/runtime/components/Edit/Features/Publish/index.vue +34 -20
  27. package/dist/runtime/components/Edit/Features/Selection/index.vue +21 -7
  28. package/dist/runtime/components/Edit/Form/Datepicker/index.vue +198 -0
  29. package/dist/runtime/components/Edit/Form/Datepicker/index.vue.d.ts +15 -0
  30. package/dist/runtime/components/Edit/Konami/Game/index.vue +8 -1
  31. package/dist/runtime/components/Edit/index.d.ts +2 -1
  32. package/dist/runtime/components/Edit/index.js +2 -0
  33. package/dist/runtime/composables/defineBlokkli.js +1 -1
  34. package/dist/runtime/css/output.css +1 -1
  35. package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.d.ts +1 -1
  36. package/dist/runtime/helpers/composables/useDelayedIntersectionObserver.js +3 -2
  37. package/dist/runtime/helpers/domProvider.js +6 -1
  38. package/dist/runtime/helpers/stateProvider.d.ts +2 -1
  39. package/dist/runtime/helpers/stateProvider.js +31 -0
  40. package/dist/runtime/helpers/uiProvider.d.ts +2 -0
  41. package/dist/runtime/helpers/uiProvider.js +23 -0
  42. package/dist/runtime/helpers/webgl/index.d.ts +11 -2
  43. package/dist/runtime/helpers/webgl/index.js +162 -7
  44. package/dist/runtime/icons/calendar-clock.svg +1 -0
  45. package/dist/runtime/icons/eye-off.svg +1 -0
  46. package/dist/runtime/types/index.d.ts +9 -1
  47. package/package.json +1 -1
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.14";
18
+ const version = "2.0.0-alpha.16";
19
19
 
20
20
  function sortObjectKeys(obj) {
21
21
  if (Array.isArray(obj)) {
@@ -1721,7 +1721,7 @@ const feature_options_label$3 = {
1721
1721
  };
1722
1722
  const feature_ownership_description$3 = {
1723
1723
  source: "Renders a large button to take ownership of the current edit state.",
1724
- translation: "Zeigt einen großen Button an, um die Besitzrechte des aktuellen Bearbeitungsstatus zu übernehmen."
1724
+ translation: "Zeigt einen grossen Button an, um die Besitzrechte des aktuellen Bearbeitungsstatus zu übernehmen."
1725
1725
  };
1726
1726
  const feature_ownership_label$3 = {
1727
1727
  source: "Ownership",
@@ -2187,6 +2187,10 @@ const proxyViewTourText$3 = {
2187
2187
  source: "Displays the content blocks as a structured view.",
2188
2188
  translation: "Stellt die Inhaltsblöcke in strukturierter Form dar."
2189
2189
  };
2190
+ const publishAlreadyScheduledDescription$3 = {
2191
+ source: "This page is already scheduled for publishing",
2192
+ translation: "Diese Seite ist bereits zur Veröffentlichung geplant"
2193
+ };
2190
2194
  const publishAndCloseLabel$3 = {
2191
2195
  source: "Publish & Close",
2192
2196
  translation: "Veröffentlichen & Schliessen"
@@ -2195,10 +2199,26 @@ const publishAndCloseLabelUnpublished$3 = {
2195
2199
  source: "Save & Close",
2196
2200
  translation: "Speichern & Schliessen"
2197
2201
  };
2202
+ const publishCurrentPage$3 = {
2203
+ source: "Current page",
2204
+ translation: "Aktuelle Seite"
2205
+ };
2206
+ const publishCurrentlyPublished$3 = {
2207
+ source: "Page is published",
2208
+ translation: "Seite ist publiziert"
2209
+ };
2210
+ const publishCurrentlyUnpublished$3 = {
2211
+ source: "Page is unpublished",
2212
+ translation: "Seite ist nicht publiziert"
2213
+ };
2198
2214
  const publishDescription$3 = {
2199
2215
  source: "Publish all changes.",
2200
2216
  translation: "Alle Änderungen veröffentlichen"
2201
2217
  };
2218
+ const publishDescriptionScheduled$3 = {
2219
+ source: "View or change the scheduled publication",
2220
+ translation: "Geplante Veröffentlichung ansehen oder ändern"
2221
+ };
2202
2222
  const publishDescriptionUnpublished$3 = {
2203
2223
  source: "Save all changes while keeping page unpublished",
2204
2224
  translation: "Alle Änderungen speichern ohne die Seite zu publizieren"
@@ -2219,10 +2239,166 @@ const publishLabelUnpublished$3 = {
2219
2239
  source: "Save",
2220
2240
  translation: "Speichern"
2221
2241
  };
2242
+ const publishManageSchedule$3 = {
2243
+ source: "Manage scheduling",
2244
+ translation: "Planung verwalten"
2245
+ };
2246
+ const publishMode$3 = {
2247
+ source: "Publish mode",
2248
+ translation: "Veröffentlichungsmodus"
2249
+ };
2250
+ const publishModeImmediateDescription$3 = {
2251
+ source: "Publish changes immediately",
2252
+ translation: "Änderungen sofort veröffentlichen"
2253
+ };
2254
+ const publishModeImmediateTitle$3 = {
2255
+ source: "Publish",
2256
+ translation: "Veröffentlichen"
2257
+ };
2258
+ const publishModeSaveDescription$3 = {
2259
+ source: "Save changes without publishing",
2260
+ translation: "Änderungen speichern ohne veröffentlichen"
2261
+ };
2262
+ const publishModeSaveTitle$3 = {
2263
+ source: "Save",
2264
+ translation: "Speichern"
2265
+ };
2266
+ const publishModeScheduledDescription$3 = {
2267
+ source: "Schedule changes for publishing",
2268
+ translation: "Änderungen geplant veröffentlichen"
2269
+ };
2270
+ const publishModeScheduledTitle$3 = {
2271
+ source: "Schedule",
2272
+ translation: "Planen"
2273
+ };
2274
+ const publishName$3 = {
2275
+ source: "Name",
2276
+ translation: "Name"
2277
+ };
2278
+ const publishPublicationScheduled$3 = {
2279
+ source: "Publication scheduled",
2280
+ translation: "Veröffentlichung geplant"
2281
+ };
2282
+ const publishPublishContent$3 = {
2283
+ source: "Publish content",
2284
+ translation: "Inhalt veröffentlichen"
2285
+ };
2286
+ const publishPublishContents$3 = {
2287
+ source: "Publish @count contents",
2288
+ translation: "@count Inhalte veröffentlichen"
2289
+ };
2290
+ const publishRemainsPublished$3 = {
2291
+ source: "Remains published",
2292
+ translation: "Bleibt publiziert"
2293
+ };
2294
+ const publishRemainsUnpublished$3 = {
2295
+ source: "Remains unpublished",
2296
+ translation: "Bleibt nicht publiziert"
2297
+ };
2298
+ const publishRemoveSchedule$3 = {
2299
+ source: "Remove schedule",
2300
+ translation: "Planung entfernen"
2301
+ };
2302
+ const publishResultPublishChangesNowPublished$3 = {
2303
+ source: "Changes are published, page is now published",
2304
+ translation: "Änderungen und Seite sind publiziert"
2305
+ };
2306
+ const publishResultPublishChangesRemainPublished$3 = {
2307
+ source: "Changes are published, page remains published",
2308
+ translation: "Änderungen sind publiziert, Seite bleibt publiziert"
2309
+ };
2310
+ const publishResultSaveChanges$3 = {
2311
+ source: "Changes are saved, page remains unpublished",
2312
+ translation: "Änderungen sind gespeichert, Seite bleibt unpubliziert"
2313
+ };
2314
+ const publishResultScheduledChanges$3 = {
2315
+ source: "Changes will be published on @date",
2316
+ translation: "Änderungen werden am @date publiziert"
2317
+ };
2318
+ const publishResultScheduledPage$3 = {
2319
+ source: "Page will be published on @date",
2320
+ translation: "Seite wird am @date publiziert"
2321
+ };
2322
+ const publishRevisionLogMessage$3 = {
2323
+ source: "Change description",
2324
+ translation: "Beschreibung der Änderungen"
2325
+ };
2326
+ const publishRevisionLogMessageDescription$3 = {
2327
+ source: "Briefly describe the changes made",
2328
+ translation: "Beschreiben Sie kurz die vorgenommenen Änderungen"
2329
+ };
2330
+ const publishSaveContent$3 = {
2331
+ source: "Save content",
2332
+ translation: "Inhalt speichern"
2333
+ };
2334
+ const publishSaveContents$3 = {
2335
+ source: "Save @count contents",
2336
+ translation: "@count Inhalte speichern"
2337
+ };
2338
+ const publishScheduleDate$3 = {
2339
+ source: "Publication date",
2340
+ translation: "Veröffentlichungsdatum"
2341
+ };
2342
+ const publishScheduleDateTooSoon$3 = {
2343
+ source: "The scheduled date must be at least 2 minutes in the future",
2344
+ translation: "Das geplante Datum muss mindestens 2 Minuten in der Zukunft liegen"
2345
+ };
2346
+ const publishScheduleInSevenDays$3 = {
2347
+ source: "In 7 days",
2348
+ translation: "In 7 Tagen"
2349
+ };
2350
+ const publishScheduleNextMonday$3 = {
2351
+ source: "Next Monday",
2352
+ translation: "Nächster Montag"
2353
+ };
2354
+ const publishSchedulePublication$3 = {
2355
+ source: "Schedule publication",
2356
+ translation: "Veröffentlichung planen"
2357
+ };
2358
+ const publishSchedulePublications$3 = {
2359
+ source: "Schedule @count publications",
2360
+ translation: "@count Veröffentlichungen planen"
2361
+ };
2362
+ const publishScheduleSuccess$3 = {
2363
+ source: "Publication scheduled for @date",
2364
+ translation: "Veröffentlichung für @date geplant"
2365
+ };
2366
+ const publishScheduleTomorrow$3 = {
2367
+ source: "Tomorrow",
2368
+ translation: "Morgen"
2369
+ };
2370
+ const publishScheduledInfo$3 = {
2371
+ source: "You can still make changes until the scheduled publication date.",
2372
+ translation: "Sie können bis zum geplanten Veröffentlichungsdatum noch Änderungen vornehmen."
2373
+ };
2374
+ const publishStatus$3 = {
2375
+ source: "Status",
2376
+ translation: "Status"
2377
+ };
2222
2378
  const publishSuccess$3 = {
2223
2379
  source: "Changes published successfully.",
2224
2380
  translation: "Änderungen erfolgreich publiziert."
2225
2381
  };
2382
+ const publishSuccessfullyPublished$3 = {
2383
+ source: "Successfully published",
2384
+ translation: "Erfolgreich veröffentlicht"
2385
+ };
2386
+ const publishSuccessfullySaved$3 = {
2387
+ source: "Successfully saved",
2388
+ translation: "Erfolgreich gespeichert"
2389
+ };
2390
+ const publishSummary$3 = {
2391
+ source: "Summary",
2392
+ translation: "Zusammenfassung"
2393
+ };
2394
+ const publishWillBePublished$3 = {
2395
+ source: "Will be published",
2396
+ translation: "Wird publiziert"
2397
+ };
2398
+ const publishWillBeScheduled$3 = {
2399
+ source: "Will be scheduled",
2400
+ translation: "Wird geplant"
2401
+ };
2226
2402
  const responsivePreviewCustomViewport$3 = {
2227
2403
  source: "Custom",
2228
2404
  translation: "Benutzerdefiniert"
@@ -2267,6 +2443,10 @@ const save$3 = {
2267
2443
  source: "Save",
2268
2444
  translation: "Speichern"
2269
2445
  };
2446
+ const scheduledFor$3 = {
2447
+ source: "The changes will be published on this date.",
2448
+ translation: "Die Änderungen werden an diesem Datum publiziert."
2449
+ };
2270
2450
  const searchBoxNoResultsFound$3 = {
2271
2451
  source: "No results found",
2272
2452
  translation: "Keine Resultate gefunden"
@@ -2287,6 +2467,10 @@ const searchTourText$3 = {
2287
2467
  source: "Quickly find blocks on the current page or existing content to drag and drop as blocks into the page.",
2288
2468
  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."
2289
2469
  };
2470
+ const selectAllBlocks$3 = {
2471
+ source: "Select all blocks",
2472
+ translation: "Alle Blöcke auswählen"
2473
+ };
2290
2474
  const selectAllOfBundle$3 = {
2291
2475
  source: "Select all \"@bundle\" blocks",
2292
2476
  translation: "Alle «@bundle» Blöcke auswählen"
@@ -2960,15 +3144,59 @@ const de = {
2960
3144
  proxyViewShow: proxyViewShow$3,
2961
3145
  proxyViewToggle: proxyViewToggle$3,
2962
3146
  proxyViewTourText: proxyViewTourText$3,
3147
+ publishAlreadyScheduledDescription: publishAlreadyScheduledDescription$3,
2963
3148
  publishAndCloseLabel: publishAndCloseLabel$3,
2964
3149
  publishAndCloseLabelUnpublished: publishAndCloseLabelUnpublished$3,
3150
+ publishCurrentPage: publishCurrentPage$3,
3151
+ publishCurrentlyPublished: publishCurrentlyPublished$3,
3152
+ publishCurrentlyUnpublished: publishCurrentlyUnpublished$3,
2965
3153
  publishDescription: publishDescription$3,
3154
+ publishDescriptionScheduled: publishDescriptionScheduled$3,
2966
3155
  publishDescriptionUnpublished: publishDescriptionUnpublished$3,
2967
3156
  publishDialogTitle: publishDialogTitle$3,
2968
3157
  publishError: publishError$3,
2969
3158
  publishLabel: publishLabel$3,
2970
3159
  publishLabelUnpublished: publishLabelUnpublished$3,
3160
+ publishManageSchedule: publishManageSchedule$3,
3161
+ publishMode: publishMode$3,
3162
+ publishModeImmediateDescription: publishModeImmediateDescription$3,
3163
+ publishModeImmediateTitle: publishModeImmediateTitle$3,
3164
+ publishModeSaveDescription: publishModeSaveDescription$3,
3165
+ publishModeSaveTitle: publishModeSaveTitle$3,
3166
+ publishModeScheduledDescription: publishModeScheduledDescription$3,
3167
+ publishModeScheduledTitle: publishModeScheduledTitle$3,
3168
+ publishName: publishName$3,
3169
+ publishPublicationScheduled: publishPublicationScheduled$3,
3170
+ publishPublishContent: publishPublishContent$3,
3171
+ publishPublishContents: publishPublishContents$3,
3172
+ publishRemainsPublished: publishRemainsPublished$3,
3173
+ publishRemainsUnpublished: publishRemainsUnpublished$3,
3174
+ publishRemoveSchedule: publishRemoveSchedule$3,
3175
+ publishResultPublishChangesNowPublished: publishResultPublishChangesNowPublished$3,
3176
+ publishResultPublishChangesRemainPublished: publishResultPublishChangesRemainPublished$3,
3177
+ publishResultSaveChanges: publishResultSaveChanges$3,
3178
+ publishResultScheduledChanges: publishResultScheduledChanges$3,
3179
+ publishResultScheduledPage: publishResultScheduledPage$3,
3180
+ publishRevisionLogMessage: publishRevisionLogMessage$3,
3181
+ publishRevisionLogMessageDescription: publishRevisionLogMessageDescription$3,
3182
+ publishSaveContent: publishSaveContent$3,
3183
+ publishSaveContents: publishSaveContents$3,
3184
+ publishScheduleDate: publishScheduleDate$3,
3185
+ publishScheduleDateTooSoon: publishScheduleDateTooSoon$3,
3186
+ publishScheduleInSevenDays: publishScheduleInSevenDays$3,
3187
+ publishScheduleNextMonday: publishScheduleNextMonday$3,
3188
+ publishSchedulePublication: publishSchedulePublication$3,
3189
+ publishSchedulePublications: publishSchedulePublications$3,
3190
+ publishScheduleSuccess: publishScheduleSuccess$3,
3191
+ publishScheduleTomorrow: publishScheduleTomorrow$3,
3192
+ publishScheduledInfo: publishScheduledInfo$3,
3193
+ publishStatus: publishStatus$3,
2971
3194
  publishSuccess: publishSuccess$3,
3195
+ publishSuccessfullyPublished: publishSuccessfullyPublished$3,
3196
+ publishSuccessfullySaved: publishSuccessfullySaved$3,
3197
+ publishSummary: publishSummary$3,
3198
+ publishWillBePublished: publishWillBePublished$3,
3199
+ publishWillBeScheduled: publishWillBeScheduled$3,
2972
3200
  responsivePreviewCustomViewport: responsivePreviewCustomViewport$3,
2973
3201
  responsivePreviewTitle: responsivePreviewTitle$3,
2974
3202
  responsivePreviewTourText: responsivePreviewTourText$3,
@@ -2980,11 +3208,13 @@ const de = {
2980
3208
  revertMenuTitle: revertMenuTitle$3,
2981
3209
  revertSuccess: revertSuccess$3,
2982
3210
  save: save$3,
3211
+ scheduledFor: scheduledFor$3,
2983
3212
  searchBoxNoResultsFound: searchBoxNoResultsFound$3,
2984
3213
  searchBoxOnThisPage: searchBoxOnThisPage$3,
2985
3214
  searchBoxPlaceholder: searchBoxPlaceholder$3,
2986
3215
  searchToolbarLabel: searchToolbarLabel$3,
2987
3216
  searchTourText: searchTourText$3,
3217
+ selectAllBlocks: selectAllBlocks$3,
2988
3218
  selectAllOfBundle: selectAllOfBundle$3,
2989
3219
  selectionActionGroupTitle: selectionActionGroupTitle$3,
2990
3220
  settingsAdvanced: settingsAdvanced$3,
@@ -4210,6 +4440,10 @@ const proxyViewTourText$2 = {
4210
4440
  source: "Displays the content blocks as a structured view.",
4211
4441
  translation: ""
4212
4442
  };
4443
+ const publishAlreadyScheduledDescription$2 = {
4444
+ source: "This page is already scheduled for publishing",
4445
+ translation: ""
4446
+ };
4213
4447
  const publishAndCloseLabel$2 = {
4214
4448
  source: "Publish & Close",
4215
4449
  translation: ""
@@ -4218,10 +4452,26 @@ const publishAndCloseLabelUnpublished$2 = {
4218
4452
  source: "Save & Close",
4219
4453
  translation: ""
4220
4454
  };
4455
+ const publishCurrentPage$2 = {
4456
+ source: "Current page",
4457
+ translation: ""
4458
+ };
4459
+ const publishCurrentlyPublished$2 = {
4460
+ source: "Page is published",
4461
+ translation: ""
4462
+ };
4463
+ const publishCurrentlyUnpublished$2 = {
4464
+ source: "Page is unpublished",
4465
+ translation: ""
4466
+ };
4221
4467
  const publishDescription$2 = {
4222
4468
  source: "Publish all changes.",
4223
4469
  translation: "Rendre toutes les modifications publiques"
4224
4470
  };
4471
+ const publishDescriptionScheduled$2 = {
4472
+ source: "View or change the scheduled publication",
4473
+ translation: ""
4474
+ };
4225
4475
  const publishDescriptionUnpublished$2 = {
4226
4476
  source: "Save all changes while keeping page unpublished",
4227
4477
  translation: ""
@@ -4242,10 +4492,166 @@ const publishLabelUnpublished$2 = {
4242
4492
  source: "Save",
4243
4493
  translation: ""
4244
4494
  };
4495
+ const publishManageSchedule$2 = {
4496
+ source: "Manage scheduling",
4497
+ translation: ""
4498
+ };
4499
+ const publishMode$2 = {
4500
+ source: "Publish mode",
4501
+ translation: ""
4502
+ };
4503
+ const publishModeImmediateDescription$2 = {
4504
+ source: "Publish changes immediately",
4505
+ translation: ""
4506
+ };
4507
+ const publishModeImmediateTitle$2 = {
4508
+ source: "Publish",
4509
+ translation: ""
4510
+ };
4511
+ const publishModeSaveDescription$2 = {
4512
+ source: "Save changes without publishing",
4513
+ translation: ""
4514
+ };
4515
+ const publishModeSaveTitle$2 = {
4516
+ source: "Save",
4517
+ translation: ""
4518
+ };
4519
+ const publishModeScheduledDescription$2 = {
4520
+ source: "Schedule changes for publishing",
4521
+ translation: ""
4522
+ };
4523
+ const publishModeScheduledTitle$2 = {
4524
+ source: "Schedule",
4525
+ translation: ""
4526
+ };
4527
+ const publishName$2 = {
4528
+ source: "Name",
4529
+ translation: ""
4530
+ };
4531
+ const publishPublicationScheduled$2 = {
4532
+ source: "Publication scheduled",
4533
+ translation: ""
4534
+ };
4535
+ const publishPublishContent$2 = {
4536
+ source: "Publish content",
4537
+ translation: ""
4538
+ };
4539
+ const publishPublishContents$2 = {
4540
+ source: "Publish @count contents",
4541
+ translation: ""
4542
+ };
4543
+ const publishRemainsPublished$2 = {
4544
+ source: "Remains published",
4545
+ translation: ""
4546
+ };
4547
+ const publishRemainsUnpublished$2 = {
4548
+ source: "Remains unpublished",
4549
+ translation: ""
4550
+ };
4551
+ const publishRemoveSchedule$2 = {
4552
+ source: "Remove schedule",
4553
+ translation: ""
4554
+ };
4555
+ const publishResultPublishChangesNowPublished$2 = {
4556
+ source: "Changes are published, page is now published",
4557
+ translation: ""
4558
+ };
4559
+ const publishResultPublishChangesRemainPublished$2 = {
4560
+ source: "Changes are published, page remains published",
4561
+ translation: ""
4562
+ };
4563
+ const publishResultSaveChanges$2 = {
4564
+ source: "Changes are saved, page remains unpublished",
4565
+ translation: ""
4566
+ };
4567
+ const publishResultScheduledChanges$2 = {
4568
+ source: "Changes will be published on @date",
4569
+ translation: ""
4570
+ };
4571
+ const publishResultScheduledPage$2 = {
4572
+ source: "Page will be published on @date",
4573
+ translation: ""
4574
+ };
4575
+ const publishRevisionLogMessage$2 = {
4576
+ source: "Change description",
4577
+ translation: "Description des modifications"
4578
+ };
4579
+ const publishRevisionLogMessageDescription$2 = {
4580
+ source: "Briefly describe the changes made",
4581
+ translation: ""
4582
+ };
4583
+ const publishSaveContent$2 = {
4584
+ source: "Save content",
4585
+ translation: ""
4586
+ };
4587
+ const publishSaveContents$2 = {
4588
+ source: "Save @count contents",
4589
+ translation: ""
4590
+ };
4591
+ const publishScheduleDate$2 = {
4592
+ source: "Publication date",
4593
+ translation: ""
4594
+ };
4595
+ const publishScheduleDateTooSoon$2 = {
4596
+ source: "The scheduled date must be at least 2 minutes in the future",
4597
+ translation: ""
4598
+ };
4599
+ const publishScheduleInSevenDays$2 = {
4600
+ source: "In 7 days",
4601
+ translation: ""
4602
+ };
4603
+ const publishScheduleNextMonday$2 = {
4604
+ source: "Next Monday",
4605
+ translation: ""
4606
+ };
4607
+ const publishSchedulePublication$2 = {
4608
+ source: "Schedule publication",
4609
+ translation: ""
4610
+ };
4611
+ const publishSchedulePublications$2 = {
4612
+ source: "Schedule @count publications",
4613
+ translation: ""
4614
+ };
4615
+ const publishScheduleSuccess$2 = {
4616
+ source: "Publication scheduled for @date",
4617
+ translation: ""
4618
+ };
4619
+ const publishScheduleTomorrow$2 = {
4620
+ source: "Tomorrow",
4621
+ translation: ""
4622
+ };
4623
+ const publishScheduledInfo$2 = {
4624
+ source: "You can still make changes until the scheduled publication date.",
4625
+ translation: ""
4626
+ };
4627
+ const publishStatus$2 = {
4628
+ source: "Status",
4629
+ translation: ""
4630
+ };
4245
4631
  const publishSuccess$2 = {
4246
4632
  source: "Changes published successfully.",
4247
4633
  translation: "Modifications publiées avec succès."
4248
4634
  };
4635
+ const publishSuccessfullyPublished$2 = {
4636
+ source: "Successfully published",
4637
+ translation: ""
4638
+ };
4639
+ const publishSuccessfullySaved$2 = {
4640
+ source: "Successfully saved",
4641
+ translation: ""
4642
+ };
4643
+ const publishSummary$2 = {
4644
+ source: "Summary",
4645
+ translation: ""
4646
+ };
4647
+ const publishWillBePublished$2 = {
4648
+ source: "Will be published",
4649
+ translation: ""
4650
+ };
4651
+ const publishWillBeScheduled$2 = {
4652
+ source: "Will be scheduled",
4653
+ translation: ""
4654
+ };
4249
4655
  const responsivePreviewCustomViewport$2 = {
4250
4656
  source: "Custom",
4251
4657
  translation: ""
@@ -4290,6 +4696,10 @@ const save$2 = {
4290
4696
  source: "Save",
4291
4697
  translation: "Save"
4292
4698
  };
4699
+ const scheduledFor$2 = {
4700
+ source: "The changes will be published on this date.",
4701
+ translation: ""
4702
+ };
4293
4703
  const searchBoxNoResultsFound$2 = {
4294
4704
  source: "No results found",
4295
4705
  translation: "Aucun résultat trouvé"
@@ -4310,6 +4720,10 @@ const searchTourText$2 = {
4310
4720
  source: "Quickly find blocks on the current page or existing content to drag and drop as blocks into the page.",
4311
4721
  translation: ""
4312
4722
  };
4723
+ const selectAllBlocks$2 = {
4724
+ source: "Select all blocks",
4725
+ translation: ""
4726
+ };
4313
4727
  const selectAllOfBundle$2 = {
4314
4728
  source: "Select all \"@bundle\" blocks",
4315
4729
  translation: ""
@@ -4983,15 +5397,59 @@ const fr = {
4983
5397
  proxyViewShow: proxyViewShow$2,
4984
5398
  proxyViewToggle: proxyViewToggle$2,
4985
5399
  proxyViewTourText: proxyViewTourText$2,
5400
+ publishAlreadyScheduledDescription: publishAlreadyScheduledDescription$2,
4986
5401
  publishAndCloseLabel: publishAndCloseLabel$2,
4987
5402
  publishAndCloseLabelUnpublished: publishAndCloseLabelUnpublished$2,
5403
+ publishCurrentPage: publishCurrentPage$2,
5404
+ publishCurrentlyPublished: publishCurrentlyPublished$2,
5405
+ publishCurrentlyUnpublished: publishCurrentlyUnpublished$2,
4988
5406
  publishDescription: publishDescription$2,
5407
+ publishDescriptionScheduled: publishDescriptionScheduled$2,
4989
5408
  publishDescriptionUnpublished: publishDescriptionUnpublished$2,
4990
5409
  publishDialogTitle: publishDialogTitle$2,
4991
5410
  publishError: publishError$2,
4992
5411
  publishLabel: publishLabel$2,
4993
5412
  publishLabelUnpublished: publishLabelUnpublished$2,
5413
+ publishManageSchedule: publishManageSchedule$2,
5414
+ publishMode: publishMode$2,
5415
+ publishModeImmediateDescription: publishModeImmediateDescription$2,
5416
+ publishModeImmediateTitle: publishModeImmediateTitle$2,
5417
+ publishModeSaveDescription: publishModeSaveDescription$2,
5418
+ publishModeSaveTitle: publishModeSaveTitle$2,
5419
+ publishModeScheduledDescription: publishModeScheduledDescription$2,
5420
+ publishModeScheduledTitle: publishModeScheduledTitle$2,
5421
+ publishName: publishName$2,
5422
+ publishPublicationScheduled: publishPublicationScheduled$2,
5423
+ publishPublishContent: publishPublishContent$2,
5424
+ publishPublishContents: publishPublishContents$2,
5425
+ publishRemainsPublished: publishRemainsPublished$2,
5426
+ publishRemainsUnpublished: publishRemainsUnpublished$2,
5427
+ publishRemoveSchedule: publishRemoveSchedule$2,
5428
+ publishResultPublishChangesNowPublished: publishResultPublishChangesNowPublished$2,
5429
+ publishResultPublishChangesRemainPublished: publishResultPublishChangesRemainPublished$2,
5430
+ publishResultSaveChanges: publishResultSaveChanges$2,
5431
+ publishResultScheduledChanges: publishResultScheduledChanges$2,
5432
+ publishResultScheduledPage: publishResultScheduledPage$2,
5433
+ publishRevisionLogMessage: publishRevisionLogMessage$2,
5434
+ publishRevisionLogMessageDescription: publishRevisionLogMessageDescription$2,
5435
+ publishSaveContent: publishSaveContent$2,
5436
+ publishSaveContents: publishSaveContents$2,
5437
+ publishScheduleDate: publishScheduleDate$2,
5438
+ publishScheduleDateTooSoon: publishScheduleDateTooSoon$2,
5439
+ publishScheduleInSevenDays: publishScheduleInSevenDays$2,
5440
+ publishScheduleNextMonday: publishScheduleNextMonday$2,
5441
+ publishSchedulePublication: publishSchedulePublication$2,
5442
+ publishSchedulePublications: publishSchedulePublications$2,
5443
+ publishScheduleSuccess: publishScheduleSuccess$2,
5444
+ publishScheduleTomorrow: publishScheduleTomorrow$2,
5445
+ publishScheduledInfo: publishScheduledInfo$2,
5446
+ publishStatus: publishStatus$2,
4994
5447
  publishSuccess: publishSuccess$2,
5448
+ publishSuccessfullyPublished: publishSuccessfullyPublished$2,
5449
+ publishSuccessfullySaved: publishSuccessfullySaved$2,
5450
+ publishSummary: publishSummary$2,
5451
+ publishWillBePublished: publishWillBePublished$2,
5452
+ publishWillBeScheduled: publishWillBeScheduled$2,
4995
5453
  responsivePreviewCustomViewport: responsivePreviewCustomViewport$2,
4996
5454
  responsivePreviewTitle: responsivePreviewTitle$2,
4997
5455
  responsivePreviewTourText: responsivePreviewTourText$2,
@@ -5003,11 +5461,13 @@ const fr = {
5003
5461
  revertMenuTitle: revertMenuTitle$2,
5004
5462
  revertSuccess: revertSuccess$2,
5005
5463
  save: save$2,
5464
+ scheduledFor: scheduledFor$2,
5006
5465
  searchBoxNoResultsFound: searchBoxNoResultsFound$2,
5007
5466
  searchBoxOnThisPage: searchBoxOnThisPage$2,
5008
5467
  searchBoxPlaceholder: searchBoxPlaceholder$2,
5009
5468
  searchToolbarLabel: searchToolbarLabel$2,
5010
5469
  searchTourText: searchTourText$2,
5470
+ selectAllBlocks: selectAllBlocks$2,
5011
5471
  selectAllOfBundle: selectAllOfBundle$2,
5012
5472
  selectionActionGroupTitle: selectionActionGroupTitle$2,
5013
5473
  settingsAdvanced: settingsAdvanced$2,
@@ -6233,6 +6693,10 @@ const proxyViewTourText$1 = {
6233
6693
  source: "Displays the content blocks as a structured view.",
6234
6694
  translation: ""
6235
6695
  };
6696
+ const publishAlreadyScheduledDescription$1 = {
6697
+ source: "This page is already scheduled for publishing",
6698
+ translation: ""
6699
+ };
6236
6700
  const publishAndCloseLabel$1 = {
6237
6701
  source: "Publish & Close",
6238
6702
  translation: ""
@@ -6241,10 +6705,26 @@ const publishAndCloseLabelUnpublished$1 = {
6241
6705
  source: "Save & Close",
6242
6706
  translation: ""
6243
6707
  };
6708
+ const publishCurrentPage$1 = {
6709
+ source: "Current page",
6710
+ translation: ""
6711
+ };
6712
+ const publishCurrentlyPublished$1 = {
6713
+ source: "Page is published",
6714
+ translation: ""
6715
+ };
6716
+ const publishCurrentlyUnpublished$1 = {
6717
+ source: "Page is unpublished",
6718
+ translation: ""
6719
+ };
6244
6720
  const publishDescription$1 = {
6245
6721
  source: "Publish all changes.",
6246
6722
  translation: "Rendi pubbliche tutte le modifiche"
6247
6723
  };
6724
+ const publishDescriptionScheduled$1 = {
6725
+ source: "View or change the scheduled publication",
6726
+ translation: ""
6727
+ };
6248
6728
  const publishDescriptionUnpublished$1 = {
6249
6729
  source: "Save all changes while keeping page unpublished",
6250
6730
  translation: ""
@@ -6265,10 +6745,166 @@ const publishLabelUnpublished$1 = {
6265
6745
  source: "Save",
6266
6746
  translation: ""
6267
6747
  };
6748
+ const publishManageSchedule$1 = {
6749
+ source: "Manage scheduling",
6750
+ translation: ""
6751
+ };
6752
+ const publishMode$1 = {
6753
+ source: "Publish mode",
6754
+ translation: ""
6755
+ };
6756
+ const publishModeImmediateDescription$1 = {
6757
+ source: "Publish changes immediately",
6758
+ translation: ""
6759
+ };
6760
+ const publishModeImmediateTitle$1 = {
6761
+ source: "Publish",
6762
+ translation: ""
6763
+ };
6764
+ const publishModeSaveDescription$1 = {
6765
+ source: "Save changes without publishing",
6766
+ translation: ""
6767
+ };
6768
+ const publishModeSaveTitle$1 = {
6769
+ source: "Save",
6770
+ translation: ""
6771
+ };
6772
+ const publishModeScheduledDescription$1 = {
6773
+ source: "Schedule changes for publishing",
6774
+ translation: ""
6775
+ };
6776
+ const publishModeScheduledTitle$1 = {
6777
+ source: "Schedule",
6778
+ translation: ""
6779
+ };
6780
+ const publishName$1 = {
6781
+ source: "Name",
6782
+ translation: ""
6783
+ };
6784
+ const publishPublicationScheduled$1 = {
6785
+ source: "Publication scheduled",
6786
+ translation: ""
6787
+ };
6788
+ const publishPublishContent$1 = {
6789
+ source: "Publish content",
6790
+ translation: ""
6791
+ };
6792
+ const publishPublishContents$1 = {
6793
+ source: "Publish @count contents",
6794
+ translation: ""
6795
+ };
6796
+ const publishRemainsPublished$1 = {
6797
+ source: "Remains published",
6798
+ translation: ""
6799
+ };
6800
+ const publishRemainsUnpublished$1 = {
6801
+ source: "Remains unpublished",
6802
+ translation: ""
6803
+ };
6804
+ const publishRemoveSchedule$1 = {
6805
+ source: "Remove schedule",
6806
+ translation: ""
6807
+ };
6808
+ const publishResultPublishChangesNowPublished$1 = {
6809
+ source: "Changes are published, page is now published",
6810
+ translation: ""
6811
+ };
6812
+ const publishResultPublishChangesRemainPublished$1 = {
6813
+ source: "Changes are published, page remains published",
6814
+ translation: ""
6815
+ };
6816
+ const publishResultSaveChanges$1 = {
6817
+ source: "Changes are saved, page remains unpublished",
6818
+ translation: ""
6819
+ };
6820
+ const publishResultScheduledChanges$1 = {
6821
+ source: "Changes will be published on @date",
6822
+ translation: ""
6823
+ };
6824
+ const publishResultScheduledPage$1 = {
6825
+ source: "Page will be published on @date",
6826
+ translation: ""
6827
+ };
6828
+ const publishRevisionLogMessage$1 = {
6829
+ source: "Change description",
6830
+ translation: "Descrizione delle modifiche"
6831
+ };
6832
+ const publishRevisionLogMessageDescription$1 = {
6833
+ source: "Briefly describe the changes made",
6834
+ translation: ""
6835
+ };
6836
+ const publishSaveContent$1 = {
6837
+ source: "Save content",
6838
+ translation: ""
6839
+ };
6840
+ const publishSaveContents$1 = {
6841
+ source: "Save @count contents",
6842
+ translation: ""
6843
+ };
6844
+ const publishScheduleDate$1 = {
6845
+ source: "Publication date",
6846
+ translation: ""
6847
+ };
6848
+ const publishScheduleDateTooSoon$1 = {
6849
+ source: "The scheduled date must be at least 2 minutes in the future",
6850
+ translation: ""
6851
+ };
6852
+ const publishScheduleInSevenDays$1 = {
6853
+ source: "In 7 days",
6854
+ translation: ""
6855
+ };
6856
+ const publishScheduleNextMonday$1 = {
6857
+ source: "Next Monday",
6858
+ translation: ""
6859
+ };
6860
+ const publishSchedulePublication$1 = {
6861
+ source: "Schedule publication",
6862
+ translation: ""
6863
+ };
6864
+ const publishSchedulePublications$1 = {
6865
+ source: "Schedule @count publications",
6866
+ translation: ""
6867
+ };
6868
+ const publishScheduleSuccess$1 = {
6869
+ source: "Publication scheduled for @date",
6870
+ translation: ""
6871
+ };
6872
+ const publishScheduleTomorrow$1 = {
6873
+ source: "Tomorrow",
6874
+ translation: ""
6875
+ };
6876
+ const publishScheduledInfo$1 = {
6877
+ source: "You can still make changes until the scheduled publication date.",
6878
+ translation: ""
6879
+ };
6880
+ const publishStatus$1 = {
6881
+ source: "Status",
6882
+ translation: ""
6883
+ };
6268
6884
  const publishSuccess$1 = {
6269
6885
  source: "Changes published successfully.",
6270
6886
  translation: "Modifiche pubblicate con successo."
6271
6887
  };
6888
+ const publishSuccessfullyPublished$1 = {
6889
+ source: "Successfully published",
6890
+ translation: ""
6891
+ };
6892
+ const publishSuccessfullySaved$1 = {
6893
+ source: "Successfully saved",
6894
+ translation: ""
6895
+ };
6896
+ const publishSummary$1 = {
6897
+ source: "Summary",
6898
+ translation: ""
6899
+ };
6900
+ const publishWillBePublished$1 = {
6901
+ source: "Will be published",
6902
+ translation: ""
6903
+ };
6904
+ const publishWillBeScheduled$1 = {
6905
+ source: "Will be scheduled",
6906
+ translation: ""
6907
+ };
6272
6908
  const responsivePreviewCustomViewport$1 = {
6273
6909
  source: "Custom",
6274
6910
  translation: ""
@@ -6313,6 +6949,10 @@ const save$1 = {
6313
6949
  source: "Save",
6314
6950
  translation: "Save"
6315
6951
  };
6952
+ const scheduledFor$1 = {
6953
+ source: "The changes will be published on this date.",
6954
+ translation: ""
6955
+ };
6316
6956
  const searchBoxNoResultsFound$1 = {
6317
6957
  source: "No results found",
6318
6958
  translation: "Nessun risultato trovato"
@@ -6333,6 +6973,10 @@ const searchTourText$1 = {
6333
6973
  source: "Quickly find blocks on the current page or existing content to drag and drop as blocks into the page.",
6334
6974
  translation: ""
6335
6975
  };
6976
+ const selectAllBlocks$1 = {
6977
+ source: "Select all blocks",
6978
+ translation: ""
6979
+ };
6336
6980
  const selectAllOfBundle$1 = {
6337
6981
  source: "Select all \"@bundle\" blocks",
6338
6982
  translation: ""
@@ -7006,15 +7650,59 @@ const it = {
7006
7650
  proxyViewShow: proxyViewShow$1,
7007
7651
  proxyViewToggle: proxyViewToggle$1,
7008
7652
  proxyViewTourText: proxyViewTourText$1,
7653
+ publishAlreadyScheduledDescription: publishAlreadyScheduledDescription$1,
7009
7654
  publishAndCloseLabel: publishAndCloseLabel$1,
7010
7655
  publishAndCloseLabelUnpublished: publishAndCloseLabelUnpublished$1,
7656
+ publishCurrentPage: publishCurrentPage$1,
7657
+ publishCurrentlyPublished: publishCurrentlyPublished$1,
7658
+ publishCurrentlyUnpublished: publishCurrentlyUnpublished$1,
7011
7659
  publishDescription: publishDescription$1,
7660
+ publishDescriptionScheduled: publishDescriptionScheduled$1,
7012
7661
  publishDescriptionUnpublished: publishDescriptionUnpublished$1,
7013
7662
  publishDialogTitle: publishDialogTitle$1,
7014
7663
  publishError: publishError$1,
7015
7664
  publishLabel: publishLabel$1,
7016
7665
  publishLabelUnpublished: publishLabelUnpublished$1,
7666
+ publishManageSchedule: publishManageSchedule$1,
7667
+ publishMode: publishMode$1,
7668
+ publishModeImmediateDescription: publishModeImmediateDescription$1,
7669
+ publishModeImmediateTitle: publishModeImmediateTitle$1,
7670
+ publishModeSaveDescription: publishModeSaveDescription$1,
7671
+ publishModeSaveTitle: publishModeSaveTitle$1,
7672
+ publishModeScheduledDescription: publishModeScheduledDescription$1,
7673
+ publishModeScheduledTitle: publishModeScheduledTitle$1,
7674
+ publishName: publishName$1,
7675
+ publishPublicationScheduled: publishPublicationScheduled$1,
7676
+ publishPublishContent: publishPublishContent$1,
7677
+ publishPublishContents: publishPublishContents$1,
7678
+ publishRemainsPublished: publishRemainsPublished$1,
7679
+ publishRemainsUnpublished: publishRemainsUnpublished$1,
7680
+ publishRemoveSchedule: publishRemoveSchedule$1,
7681
+ publishResultPublishChangesNowPublished: publishResultPublishChangesNowPublished$1,
7682
+ publishResultPublishChangesRemainPublished: publishResultPublishChangesRemainPublished$1,
7683
+ publishResultSaveChanges: publishResultSaveChanges$1,
7684
+ publishResultScheduledChanges: publishResultScheduledChanges$1,
7685
+ publishResultScheduledPage: publishResultScheduledPage$1,
7686
+ publishRevisionLogMessage: publishRevisionLogMessage$1,
7687
+ publishRevisionLogMessageDescription: publishRevisionLogMessageDescription$1,
7688
+ publishSaveContent: publishSaveContent$1,
7689
+ publishSaveContents: publishSaveContents$1,
7690
+ publishScheduleDate: publishScheduleDate$1,
7691
+ publishScheduleDateTooSoon: publishScheduleDateTooSoon$1,
7692
+ publishScheduleInSevenDays: publishScheduleInSevenDays$1,
7693
+ publishScheduleNextMonday: publishScheduleNextMonday$1,
7694
+ publishSchedulePublication: publishSchedulePublication$1,
7695
+ publishSchedulePublications: publishSchedulePublications$1,
7696
+ publishScheduleSuccess: publishScheduleSuccess$1,
7697
+ publishScheduleTomorrow: publishScheduleTomorrow$1,
7698
+ publishScheduledInfo: publishScheduledInfo$1,
7699
+ publishStatus: publishStatus$1,
7017
7700
  publishSuccess: publishSuccess$1,
7701
+ publishSuccessfullyPublished: publishSuccessfullyPublished$1,
7702
+ publishSuccessfullySaved: publishSuccessfullySaved$1,
7703
+ publishSummary: publishSummary$1,
7704
+ publishWillBePublished: publishWillBePublished$1,
7705
+ publishWillBeScheduled: publishWillBeScheduled$1,
7018
7706
  responsivePreviewCustomViewport: responsivePreviewCustomViewport$1,
7019
7707
  responsivePreviewTitle: responsivePreviewTitle$1,
7020
7708
  responsivePreviewTourText: responsivePreviewTourText$1,
@@ -7026,11 +7714,13 @@ const it = {
7026
7714
  revertMenuTitle: revertMenuTitle$1,
7027
7715
  revertSuccess: revertSuccess$1,
7028
7716
  save: save$1,
7717
+ scheduledFor: scheduledFor$1,
7029
7718
  searchBoxNoResultsFound: searchBoxNoResultsFound$1,
7030
7719
  searchBoxOnThisPage: searchBoxOnThisPage$1,
7031
7720
  searchBoxPlaceholder: searchBoxPlaceholder$1,
7032
7721
  searchToolbarLabel: searchToolbarLabel$1,
7033
7722
  searchTourText: searchTourText$1,
7723
+ selectAllBlocks: selectAllBlocks$1,
7034
7724
  selectAllOfBundle: selectAllOfBundle$1,
7035
7725
  selectionActionGroupTitle: selectionActionGroupTitle$1,
7036
7726
  settingsAdvanced: settingsAdvanced$1,
@@ -8256,6 +8946,10 @@ const proxyViewTourText = {
8256
8946
  source: "Displays the content blocks as a structured view.",
8257
8947
  translation: "Zeigt d'Inhaltblöck als strukturierti Aasicht aa."
8258
8948
  };
8949
+ const publishAlreadyScheduledDescription = {
8950
+ source: "This page is already scheduled for publishing",
8951
+ translation: ""
8952
+ };
8259
8953
  const publishAndCloseLabel = {
8260
8954
  source: "Publish & Close",
8261
8955
  translation: "Publiziere & Zuemache"
@@ -8264,10 +8958,26 @@ const publishAndCloseLabelUnpublished = {
8264
8958
  source: "Save & Close",
8265
8959
  translation: "Speichere & Zuemache"
8266
8960
  };
8961
+ const publishCurrentPage = {
8962
+ source: "Current page",
8963
+ translation: ""
8964
+ };
8965
+ const publishCurrentlyPublished = {
8966
+ source: "Page is published",
8967
+ translation: ""
8968
+ };
8969
+ const publishCurrentlyUnpublished = {
8970
+ source: "Page is unpublished",
8971
+ translation: ""
8972
+ };
8267
8973
  const publishDescription = {
8268
8974
  source: "Publish all changes.",
8269
8975
  translation: "Alli änderige öffentlich mache."
8270
8976
  };
8977
+ const publishDescriptionScheduled = {
8978
+ source: "View or change the scheduled publication",
8979
+ translation: ""
8980
+ };
8271
8981
  const publishDescriptionUnpublished = {
8272
8982
  source: "Save all changes while keeping page unpublished",
8273
8983
  translation: "Alli Änderige speichere ohni d'Sitte z'publiziere"
@@ -8288,10 +8998,166 @@ const publishLabelUnpublished = {
8288
8998
  source: "Save",
8289
8999
  translation: "Speichere"
8290
9000
  };
9001
+ const publishManageSchedule = {
9002
+ source: "Manage scheduling",
9003
+ translation: ""
9004
+ };
9005
+ const publishMode = {
9006
+ source: "Publish mode",
9007
+ translation: ""
9008
+ };
9009
+ const publishModeImmediateDescription = {
9010
+ source: "Publish changes immediately",
9011
+ translation: ""
9012
+ };
9013
+ const publishModeImmediateTitle = {
9014
+ source: "Publish",
9015
+ translation: ""
9016
+ };
9017
+ const publishModeSaveDescription = {
9018
+ source: "Save changes without publishing",
9019
+ translation: ""
9020
+ };
9021
+ const publishModeSaveTitle = {
9022
+ source: "Save",
9023
+ translation: ""
9024
+ };
9025
+ const publishModeScheduledDescription = {
9026
+ source: "Schedule changes for publishing",
9027
+ translation: ""
9028
+ };
9029
+ const publishModeScheduledTitle = {
9030
+ source: "Schedule",
9031
+ translation: ""
9032
+ };
9033
+ const publishName = {
9034
+ source: "Name",
9035
+ translation: ""
9036
+ };
9037
+ const publishPublicationScheduled = {
9038
+ source: "Publication scheduled",
9039
+ translation: ""
9040
+ };
9041
+ const publishPublishContent = {
9042
+ source: "Publish content",
9043
+ translation: ""
9044
+ };
9045
+ const publishPublishContents = {
9046
+ source: "Publish @count contents",
9047
+ translation: ""
9048
+ };
9049
+ const publishRemainsPublished = {
9050
+ source: "Remains published",
9051
+ translation: ""
9052
+ };
9053
+ const publishRemainsUnpublished = {
9054
+ source: "Remains unpublished",
9055
+ translation: ""
9056
+ };
9057
+ const publishRemoveSchedule = {
9058
+ source: "Remove schedule",
9059
+ translation: ""
9060
+ };
9061
+ const publishResultPublishChangesNowPublished = {
9062
+ source: "Changes are published, page is now published",
9063
+ translation: ""
9064
+ };
9065
+ const publishResultPublishChangesRemainPublished = {
9066
+ source: "Changes are published, page remains published",
9067
+ translation: ""
9068
+ };
9069
+ const publishResultSaveChanges = {
9070
+ source: "Changes are saved, page remains unpublished",
9071
+ translation: ""
9072
+ };
9073
+ const publishResultScheduledChanges = {
9074
+ source: "Changes will be published on @date",
9075
+ translation: ""
9076
+ };
9077
+ const publishResultScheduledPage = {
9078
+ source: "Page will be published on @date",
9079
+ translation: ""
9080
+ };
9081
+ const publishRevisionLogMessage = {
9082
+ source: "Change description",
9083
+ translation: ""
9084
+ };
9085
+ const publishRevisionLogMessageDescription = {
9086
+ source: "Briefly describe the changes made",
9087
+ translation: ""
9088
+ };
9089
+ const publishSaveContent = {
9090
+ source: "Save content",
9091
+ translation: ""
9092
+ };
9093
+ const publishSaveContents = {
9094
+ source: "Save @count contents",
9095
+ translation: ""
9096
+ };
9097
+ const publishScheduleDate = {
9098
+ source: "Publication date",
9099
+ translation: ""
9100
+ };
9101
+ const publishScheduleDateTooSoon = {
9102
+ source: "The scheduled date must be at least 2 minutes in the future",
9103
+ translation: ""
9104
+ };
9105
+ const publishScheduleInSevenDays = {
9106
+ source: "In 7 days",
9107
+ translation: ""
9108
+ };
9109
+ const publishScheduleNextMonday = {
9110
+ source: "Next Monday",
9111
+ translation: ""
9112
+ };
9113
+ const publishSchedulePublication = {
9114
+ source: "Schedule publication",
9115
+ translation: ""
9116
+ };
9117
+ const publishSchedulePublications = {
9118
+ source: "Schedule @count publications",
9119
+ translation: ""
9120
+ };
9121
+ const publishScheduleSuccess = {
9122
+ source: "Publication scheduled for @date",
9123
+ translation: ""
9124
+ };
9125
+ const publishScheduleTomorrow = {
9126
+ source: "Tomorrow",
9127
+ translation: ""
9128
+ };
9129
+ const publishScheduledInfo = {
9130
+ source: "You can still make changes until the scheduled publication date.",
9131
+ translation: ""
9132
+ };
9133
+ const publishStatus = {
9134
+ source: "Status",
9135
+ translation: ""
9136
+ };
8291
9137
  const publishSuccess = {
8292
9138
  source: "Changes published successfully.",
8293
9139
  translation: "Änderige erfolgriich publiziert."
8294
9140
  };
9141
+ const publishSuccessfullyPublished = {
9142
+ source: "Successfully published",
9143
+ translation: ""
9144
+ };
9145
+ const publishSuccessfullySaved = {
9146
+ source: "Successfully saved",
9147
+ translation: ""
9148
+ };
9149
+ const publishSummary = {
9150
+ source: "Summary",
9151
+ translation: ""
9152
+ };
9153
+ const publishWillBePublished = {
9154
+ source: "Will be published",
9155
+ translation: ""
9156
+ };
9157
+ const publishWillBeScheduled = {
9158
+ source: "Will be scheduled",
9159
+ translation: ""
9160
+ };
8295
9161
  const responsivePreviewCustomViewport = {
8296
9162
  source: "Custom",
8297
9163
  translation: "Benutzerdefiniert"
@@ -8336,6 +9202,10 @@ const save = {
8336
9202
  source: "Save",
8337
9203
  translation: "Speichere"
8338
9204
  };
9205
+ const scheduledFor = {
9206
+ source: "The changes will be published on this date.",
9207
+ translation: ""
9208
+ };
8339
9209
  const searchBoxNoResultsFound = {
8340
9210
  source: "No results found",
8341
9211
  translation: "Keini Resultat gfunde"
@@ -8356,6 +9226,10 @@ const searchTourText = {
8356
9226
  source: "Quickly find blocks on the current page or existing content to drag and drop as blocks into the page.",
8357
9227
  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."
8358
9228
  };
9229
+ const selectAllBlocks = {
9230
+ source: "Select all blocks",
9231
+ translation: ""
9232
+ };
8359
9233
  const selectAllOfBundle = {
8360
9234
  source: "Select all \"@bundle\" blocks",
8361
9235
  translation: "Alli «@bundle»-Blöck uswähle"
@@ -9029,15 +9903,59 @@ const gsw_CH = {
9029
9903
  proxyViewShow: proxyViewShow,
9030
9904
  proxyViewToggle: proxyViewToggle,
9031
9905
  proxyViewTourText: proxyViewTourText,
9906
+ publishAlreadyScheduledDescription: publishAlreadyScheduledDescription,
9032
9907
  publishAndCloseLabel: publishAndCloseLabel,
9033
9908
  publishAndCloseLabelUnpublished: publishAndCloseLabelUnpublished,
9909
+ publishCurrentPage: publishCurrentPage,
9910
+ publishCurrentlyPublished: publishCurrentlyPublished,
9911
+ publishCurrentlyUnpublished: publishCurrentlyUnpublished,
9034
9912
  publishDescription: publishDescription,
9913
+ publishDescriptionScheduled: publishDescriptionScheduled,
9035
9914
  publishDescriptionUnpublished: publishDescriptionUnpublished,
9036
9915
  publishDialogTitle: publishDialogTitle,
9037
9916
  publishError: publishError,
9038
9917
  publishLabel: publishLabel,
9039
9918
  publishLabelUnpublished: publishLabelUnpublished,
9919
+ publishManageSchedule: publishManageSchedule,
9920
+ publishMode: publishMode,
9921
+ publishModeImmediateDescription: publishModeImmediateDescription,
9922
+ publishModeImmediateTitle: publishModeImmediateTitle,
9923
+ publishModeSaveDescription: publishModeSaveDescription,
9924
+ publishModeSaveTitle: publishModeSaveTitle,
9925
+ publishModeScheduledDescription: publishModeScheduledDescription,
9926
+ publishModeScheduledTitle: publishModeScheduledTitle,
9927
+ publishName: publishName,
9928
+ publishPublicationScheduled: publishPublicationScheduled,
9929
+ publishPublishContent: publishPublishContent,
9930
+ publishPublishContents: publishPublishContents,
9931
+ publishRemainsPublished: publishRemainsPublished,
9932
+ publishRemainsUnpublished: publishRemainsUnpublished,
9933
+ publishRemoveSchedule: publishRemoveSchedule,
9934
+ publishResultPublishChangesNowPublished: publishResultPublishChangesNowPublished,
9935
+ publishResultPublishChangesRemainPublished: publishResultPublishChangesRemainPublished,
9936
+ publishResultSaveChanges: publishResultSaveChanges,
9937
+ publishResultScheduledChanges: publishResultScheduledChanges,
9938
+ publishResultScheduledPage: publishResultScheduledPage,
9939
+ publishRevisionLogMessage: publishRevisionLogMessage,
9940
+ publishRevisionLogMessageDescription: publishRevisionLogMessageDescription,
9941
+ publishSaveContent: publishSaveContent,
9942
+ publishSaveContents: publishSaveContents,
9943
+ publishScheduleDate: publishScheduleDate,
9944
+ publishScheduleDateTooSoon: publishScheduleDateTooSoon,
9945
+ publishScheduleInSevenDays: publishScheduleInSevenDays,
9946
+ publishScheduleNextMonday: publishScheduleNextMonday,
9947
+ publishSchedulePublication: publishSchedulePublication,
9948
+ publishSchedulePublications: publishSchedulePublications,
9949
+ publishScheduleSuccess: publishScheduleSuccess,
9950
+ publishScheduleTomorrow: publishScheduleTomorrow,
9951
+ publishScheduledInfo: publishScheduledInfo,
9952
+ publishStatus: publishStatus,
9040
9953
  publishSuccess: publishSuccess,
9954
+ publishSuccessfullyPublished: publishSuccessfullyPublished,
9955
+ publishSuccessfullySaved: publishSuccessfullySaved,
9956
+ publishSummary: publishSummary,
9957
+ publishWillBePublished: publishWillBePublished,
9958
+ publishWillBeScheduled: publishWillBeScheduled,
9041
9959
  responsivePreviewCustomViewport: responsivePreviewCustomViewport,
9042
9960
  responsivePreviewTitle: responsivePreviewTitle,
9043
9961
  responsivePreviewTourText: responsivePreviewTourText,
@@ -9049,11 +9967,13 @@ const gsw_CH = {
9049
9967
  revertMenuTitle: revertMenuTitle,
9050
9968
  revertSuccess: revertSuccess,
9051
9969
  save: save,
9970
+ scheduledFor: scheduledFor,
9052
9971
  searchBoxNoResultsFound: searchBoxNoResultsFound,
9053
9972
  searchBoxOnThisPage: searchBoxOnThisPage,
9054
9973
  searchBoxPlaceholder: searchBoxPlaceholder,
9055
9974
  searchToolbarLabel: searchToolbarLabel,
9056
9975
  searchTourText: searchTourText,
9976
+ selectAllBlocks: selectAllBlocks,
9057
9977
  selectAllOfBundle: selectAllOfBundle,
9058
9978
  selectionActionGroupTitle: selectionActionGroupTitle,
9059
9979
  settingsAdvanced: settingsAdvanced,