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

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 (35) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +867 -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/Features/EntityTitle/index.vue +33 -1
  11. package/dist/runtime/components/Edit/Features/Publish/Dialog/Item.vue +41 -14
  12. package/dist/runtime/components/Edit/Features/Publish/Dialog/Item.vue.d.ts +2 -0
  13. package/dist/runtime/components/Edit/Features/Publish/Dialog/PublishOption.vue +47 -0
  14. package/dist/runtime/components/Edit/Features/Publish/Dialog/PublishOption.vue.d.ts +19 -0
  15. package/dist/runtime/components/Edit/Features/Publish/Dialog/ScheduleDate.vue +183 -0
  16. package/dist/runtime/components/Edit/Features/Publish/Dialog/ScheduleDate.vue.d.ts +13 -0
  17. package/dist/runtime/components/Edit/Features/Publish/Dialog/Summary.vue +83 -0
  18. package/dist/runtime/components/Edit/Features/Publish/Dialog/Summary.vue.d.ts +9 -0
  19. package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue +381 -129
  20. package/dist/runtime/components/Edit/Features/Publish/Dialog/index.vue.d.ts +3 -14
  21. package/dist/runtime/components/Edit/Features/Publish/index.vue +34 -20
  22. package/dist/runtime/components/Edit/Form/Datepicker/index.vue +198 -0
  23. package/dist/runtime/components/Edit/Form/Datepicker/index.vue.d.ts +15 -0
  24. package/dist/runtime/components/Edit/Konami/Game/index.vue +8 -1
  25. package/dist/runtime/components/Edit/index.d.ts +2 -1
  26. package/dist/runtime/components/Edit/index.js +2 -0
  27. package/dist/runtime/css/output.css +1 -1
  28. package/dist/runtime/helpers/stateProvider.d.ts +2 -1
  29. package/dist/runtime/helpers/stateProvider.js +31 -0
  30. package/dist/runtime/helpers/uiProvider.d.ts +2 -0
  31. package/dist/runtime/helpers/uiProvider.js +23 -0
  32. package/dist/runtime/icons/calendar-clock.svg +1 -0
  33. package/dist/runtime/icons/eye-off.svg +1 -0
  34. package/dist/runtime/types/index.d.ts +9 -1
  35. 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.15";
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,162 @@ 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 sind publiziert, Seite ist jetzt 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 publishRevisionLogMessage$3 = {
2319
+ source: "Revision log message",
2320
+ translation: "Protokollnachricht der Revision"
2321
+ };
2322
+ const publishRevisionLogMessageDescription$3 = {
2323
+ source: "Briefly describe the changes made",
2324
+ translation: "Beschreiben Sie kurz die vorgenommenen Änderungen"
2325
+ };
2326
+ const publishSaveContent$3 = {
2327
+ source: "Save content",
2328
+ translation: "Inhalt speichern"
2329
+ };
2330
+ const publishSaveContents$3 = {
2331
+ source: "Save @count contents",
2332
+ translation: "@count Inhalte speichern"
2333
+ };
2334
+ const publishScheduleDate$3 = {
2335
+ source: "Publication date",
2336
+ translation: "Veröffentlichungsdatum"
2337
+ };
2338
+ const publishScheduleDateTooSoon = {
2339
+ source: "The scheduled date must be at least 2 minutes in the future",
2340
+ translation: "Das geplante Datum muss mindestens 2 Minuten in der Zukunft liegen"
2341
+ };
2342
+ const publishScheduleInSevenDays$3 = {
2343
+ source: "In 7 days",
2344
+ translation: "In 7 Tagen"
2345
+ };
2346
+ const publishScheduleNextMonday$3 = {
2347
+ source: "Next Monday",
2348
+ translation: "Nächster Montag"
2349
+ };
2350
+ const publishSchedulePublication$3 = {
2351
+ source: "Schedule publication",
2352
+ translation: "Veröffentlichung planen"
2353
+ };
2354
+ const publishSchedulePublications$3 = {
2355
+ source: "Schedule @count publications",
2356
+ translation: "@count Veröffentlichungen planen"
2357
+ };
2358
+ const publishScheduleSuccess$3 = {
2359
+ source: "Publication scheduled for @date",
2360
+ translation: "Veröffentlichung für @date geplant"
2361
+ };
2362
+ const publishScheduleTomorrow$3 = {
2363
+ source: "Tomorrow",
2364
+ translation: "Morgen"
2365
+ };
2366
+ const publishScheduledInfo$3 = {
2367
+ source: "You can still make changes until the scheduled publication date.",
2368
+ translation: "Sie können bis zum geplanten Veröffentlichungsdatum noch Änderungen vornehmen."
2369
+ };
2370
+ const publishStatus$3 = {
2371
+ source: "Status",
2372
+ translation: "Status"
2373
+ };
2222
2374
  const publishSuccess$3 = {
2223
2375
  source: "Changes published successfully.",
2224
2376
  translation: "Änderungen erfolgreich publiziert."
2225
2377
  };
2378
+ const publishSuccessfullyPublished$3 = {
2379
+ source: "Successfully published",
2380
+ translation: "Erfolgreich veröffentlicht"
2381
+ };
2382
+ const publishSuccessfullySaved$3 = {
2383
+ source: "Successfully saved",
2384
+ translation: "Erfolgreich gespeichert"
2385
+ };
2386
+ const publishSummary$3 = {
2387
+ source: "Summary",
2388
+ translation: "Zusammenfassung"
2389
+ };
2390
+ const publishWillBePublished$3 = {
2391
+ source: "Will be published",
2392
+ translation: "Wird publiziert"
2393
+ };
2394
+ const publishWillBeScheduled$3 = {
2395
+ source: "Will be scheduled",
2396
+ translation: "Wird geplant"
2397
+ };
2226
2398
  const responsivePreviewCustomViewport$3 = {
2227
2399
  source: "Custom",
2228
2400
  translation: "Benutzerdefiniert"
@@ -2267,6 +2439,10 @@ const save$3 = {
2267
2439
  source: "Save",
2268
2440
  translation: "Speichern"
2269
2441
  };
2442
+ const scheduledFor$3 = {
2443
+ source: "The changes will be published on this date.",
2444
+ translation: "Die Änderungen werden an diesem Datum publiziert."
2445
+ };
2270
2446
  const searchBoxNoResultsFound$3 = {
2271
2447
  source: "No results found",
2272
2448
  translation: "Keine Resultate gefunden"
@@ -2960,15 +3136,58 @@ const de = {
2960
3136
  proxyViewShow: proxyViewShow$3,
2961
3137
  proxyViewToggle: proxyViewToggle$3,
2962
3138
  proxyViewTourText: proxyViewTourText$3,
3139
+ publishAlreadyScheduledDescription: publishAlreadyScheduledDescription$3,
2963
3140
  publishAndCloseLabel: publishAndCloseLabel$3,
2964
3141
  publishAndCloseLabelUnpublished: publishAndCloseLabelUnpublished$3,
3142
+ publishCurrentPage: publishCurrentPage$3,
3143
+ publishCurrentlyPublished: publishCurrentlyPublished$3,
3144
+ publishCurrentlyUnpublished: publishCurrentlyUnpublished$3,
2965
3145
  publishDescription: publishDescription$3,
3146
+ publishDescriptionScheduled: publishDescriptionScheduled$3,
2966
3147
  publishDescriptionUnpublished: publishDescriptionUnpublished$3,
2967
3148
  publishDialogTitle: publishDialogTitle$3,
2968
3149
  publishError: publishError$3,
2969
3150
  publishLabel: publishLabel$3,
2970
3151
  publishLabelUnpublished: publishLabelUnpublished$3,
3152
+ publishManageSchedule: publishManageSchedule$3,
3153
+ publishMode: publishMode$3,
3154
+ publishModeImmediateDescription: publishModeImmediateDescription$3,
3155
+ publishModeImmediateTitle: publishModeImmediateTitle$3,
3156
+ publishModeSaveDescription: publishModeSaveDescription$3,
3157
+ publishModeSaveTitle: publishModeSaveTitle$3,
3158
+ publishModeScheduledDescription: publishModeScheduledDescription$3,
3159
+ publishModeScheduledTitle: publishModeScheduledTitle$3,
3160
+ publishName: publishName$3,
3161
+ publishPublicationScheduled: publishPublicationScheduled$3,
3162
+ publishPublishContent: publishPublishContent$3,
3163
+ publishPublishContents: publishPublishContents$3,
3164
+ publishRemainsPublished: publishRemainsPublished$3,
3165
+ publishRemainsUnpublished: publishRemainsUnpublished$3,
3166
+ publishRemoveSchedule: publishRemoveSchedule$3,
3167
+ publishResultPublishChangesNowPublished: publishResultPublishChangesNowPublished$3,
3168
+ publishResultPublishChangesRemainPublished: publishResultPublishChangesRemainPublished$3,
3169
+ publishResultSaveChanges: publishResultSaveChanges$3,
3170
+ publishResultScheduledChanges: publishResultScheduledChanges$3,
3171
+ publishRevisionLogMessage: publishRevisionLogMessage$3,
3172
+ publishRevisionLogMessageDescription: publishRevisionLogMessageDescription$3,
3173
+ publishSaveContent: publishSaveContent$3,
3174
+ publishSaveContents: publishSaveContents$3,
3175
+ publishScheduleDate: publishScheduleDate$3,
3176
+ publishScheduleDateTooSoon: publishScheduleDateTooSoon,
3177
+ publishScheduleInSevenDays: publishScheduleInSevenDays$3,
3178
+ publishScheduleNextMonday: publishScheduleNextMonday$3,
3179
+ publishSchedulePublication: publishSchedulePublication$3,
3180
+ publishSchedulePublications: publishSchedulePublications$3,
3181
+ publishScheduleSuccess: publishScheduleSuccess$3,
3182
+ publishScheduleTomorrow: publishScheduleTomorrow$3,
3183
+ publishScheduledInfo: publishScheduledInfo$3,
3184
+ publishStatus: publishStatus$3,
2971
3185
  publishSuccess: publishSuccess$3,
3186
+ publishSuccessfullyPublished: publishSuccessfullyPublished$3,
3187
+ publishSuccessfullySaved: publishSuccessfullySaved$3,
3188
+ publishSummary: publishSummary$3,
3189
+ publishWillBePublished: publishWillBePublished$3,
3190
+ publishWillBeScheduled: publishWillBeScheduled$3,
2972
3191
  responsivePreviewCustomViewport: responsivePreviewCustomViewport$3,
2973
3192
  responsivePreviewTitle: responsivePreviewTitle$3,
2974
3193
  responsivePreviewTourText: responsivePreviewTourText$3,
@@ -2980,6 +3199,7 @@ const de = {
2980
3199
  revertMenuTitle: revertMenuTitle$3,
2981
3200
  revertSuccess: revertSuccess$3,
2982
3201
  save: save$3,
3202
+ scheduledFor: scheduledFor$3,
2983
3203
  searchBoxNoResultsFound: searchBoxNoResultsFound$3,
2984
3204
  searchBoxOnThisPage: searchBoxOnThisPage$3,
2985
3205
  searchBoxPlaceholder: searchBoxPlaceholder$3,
@@ -4210,6 +4430,10 @@ const proxyViewTourText$2 = {
4210
4430
  source: "Displays the content blocks as a structured view.",
4211
4431
  translation: ""
4212
4432
  };
4433
+ const publishAlreadyScheduledDescription$2 = {
4434
+ source: "This page is already scheduled for publishing",
4435
+ translation: ""
4436
+ };
4213
4437
  const publishAndCloseLabel$2 = {
4214
4438
  source: "Publish & Close",
4215
4439
  translation: ""
@@ -4218,10 +4442,26 @@ const publishAndCloseLabelUnpublished$2 = {
4218
4442
  source: "Save & Close",
4219
4443
  translation: ""
4220
4444
  };
4445
+ const publishCurrentPage$2 = {
4446
+ source: "Current page",
4447
+ translation: ""
4448
+ };
4449
+ const publishCurrentlyPublished$2 = {
4450
+ source: "Page is published",
4451
+ translation: ""
4452
+ };
4453
+ const publishCurrentlyUnpublished$2 = {
4454
+ source: "Page is unpublished",
4455
+ translation: ""
4456
+ };
4221
4457
  const publishDescription$2 = {
4222
4458
  source: "Publish all changes.",
4223
4459
  translation: "Rendre toutes les modifications publiques"
4224
4460
  };
4461
+ const publishDescriptionScheduled$2 = {
4462
+ source: "View or change the scheduled publication",
4463
+ translation: ""
4464
+ };
4225
4465
  const publishDescriptionUnpublished$2 = {
4226
4466
  source: "Save all changes while keeping page unpublished",
4227
4467
  translation: ""
@@ -4242,10 +4482,158 @@ const publishLabelUnpublished$2 = {
4242
4482
  source: "Save",
4243
4483
  translation: ""
4244
4484
  };
4485
+ const publishManageSchedule$2 = {
4486
+ source: "Manage scheduling",
4487
+ translation: ""
4488
+ };
4489
+ const publishMode$2 = {
4490
+ source: "Publish mode",
4491
+ translation: ""
4492
+ };
4493
+ const publishModeImmediateDescription$2 = {
4494
+ source: "Publish changes immediately",
4495
+ translation: ""
4496
+ };
4497
+ const publishModeImmediateTitle$2 = {
4498
+ source: "Publish",
4499
+ translation: ""
4500
+ };
4501
+ const publishModeSaveDescription$2 = {
4502
+ source: "Save changes without publishing",
4503
+ translation: ""
4504
+ };
4505
+ const publishModeSaveTitle$2 = {
4506
+ source: "Save",
4507
+ translation: ""
4508
+ };
4509
+ const publishModeScheduledDescription$2 = {
4510
+ source: "Schedule changes for publishing",
4511
+ translation: ""
4512
+ };
4513
+ const publishModeScheduledTitle$2 = {
4514
+ source: "Schedule",
4515
+ translation: ""
4516
+ };
4517
+ const publishName$2 = {
4518
+ source: "Name",
4519
+ translation: ""
4520
+ };
4521
+ const publishPublicationScheduled$2 = {
4522
+ source: "Publication scheduled",
4523
+ translation: ""
4524
+ };
4525
+ const publishPublishContent$2 = {
4526
+ source: "Publish content",
4527
+ translation: ""
4528
+ };
4529
+ const publishPublishContents$2 = {
4530
+ source: "Publish @count contents",
4531
+ translation: ""
4532
+ };
4533
+ const publishRemainsPublished$2 = {
4534
+ source: "Remains published",
4535
+ translation: ""
4536
+ };
4537
+ const publishRemainsUnpublished$2 = {
4538
+ source: "Remains unpublished",
4539
+ translation: ""
4540
+ };
4541
+ const publishRemoveSchedule$2 = {
4542
+ source: "Remove schedule",
4543
+ translation: ""
4544
+ };
4545
+ const publishResultPublishChangesNowPublished$2 = {
4546
+ source: "Changes are published, page is now published",
4547
+ translation: ""
4548
+ };
4549
+ const publishResultPublishChangesRemainPublished$2 = {
4550
+ source: "Changes are published, page remains published",
4551
+ translation: ""
4552
+ };
4553
+ const publishResultSaveChanges$2 = {
4554
+ source: "Changes are saved, page remains unpublished",
4555
+ translation: ""
4556
+ };
4557
+ const publishResultScheduledChanges$2 = {
4558
+ source: "Changes will be published on @date",
4559
+ translation: ""
4560
+ };
4561
+ const publishRevisionLogMessage$2 = {
4562
+ source: "Revision log message",
4563
+ translation: ""
4564
+ };
4565
+ const publishRevisionLogMessageDescription$2 = {
4566
+ source: "Briefly describe the changes made",
4567
+ translation: ""
4568
+ };
4569
+ const publishSaveContent$2 = {
4570
+ source: "Save content",
4571
+ translation: ""
4572
+ };
4573
+ const publishSaveContents$2 = {
4574
+ source: "Save @count contents",
4575
+ translation: ""
4576
+ };
4577
+ const publishScheduleDate$2 = {
4578
+ source: "Publication date",
4579
+ translation: ""
4580
+ };
4581
+ const publishScheduleInSevenDays$2 = {
4582
+ source: "In 7 days",
4583
+ translation: ""
4584
+ };
4585
+ const publishScheduleNextMonday$2 = {
4586
+ source: "Next Monday",
4587
+ translation: ""
4588
+ };
4589
+ const publishSchedulePublication$2 = {
4590
+ source: "Schedule publication",
4591
+ translation: ""
4592
+ };
4593
+ const publishSchedulePublications$2 = {
4594
+ source: "Schedule @count publications",
4595
+ translation: ""
4596
+ };
4597
+ const publishScheduleSuccess$2 = {
4598
+ source: "Publication scheduled for @date",
4599
+ translation: ""
4600
+ };
4601
+ const publishScheduleTomorrow$2 = {
4602
+ source: "Tomorrow",
4603
+ translation: ""
4604
+ };
4605
+ const publishScheduledInfo$2 = {
4606
+ source: "You can still make changes until the scheduled publication date.",
4607
+ translation: ""
4608
+ };
4609
+ const publishStatus$2 = {
4610
+ source: "Status",
4611
+ translation: ""
4612
+ };
4245
4613
  const publishSuccess$2 = {
4246
4614
  source: "Changes published successfully.",
4247
4615
  translation: "Modifications publiées avec succès."
4248
4616
  };
4617
+ const publishSuccessfullyPublished$2 = {
4618
+ source: "Successfully published",
4619
+ translation: ""
4620
+ };
4621
+ const publishSuccessfullySaved$2 = {
4622
+ source: "Successfully saved",
4623
+ translation: ""
4624
+ };
4625
+ const publishSummary$2 = {
4626
+ source: "Summary",
4627
+ translation: ""
4628
+ };
4629
+ const publishWillBePublished$2 = {
4630
+ source: "Will be published",
4631
+ translation: ""
4632
+ };
4633
+ const publishWillBeScheduled$2 = {
4634
+ source: "Will be scheduled",
4635
+ translation: ""
4636
+ };
4249
4637
  const responsivePreviewCustomViewport$2 = {
4250
4638
  source: "Custom",
4251
4639
  translation: ""
@@ -4290,6 +4678,10 @@ const save$2 = {
4290
4678
  source: "Save",
4291
4679
  translation: "Save"
4292
4680
  };
4681
+ const scheduledFor$2 = {
4682
+ source: "The changes will be published on this date.",
4683
+ translation: ""
4684
+ };
4293
4685
  const searchBoxNoResultsFound$2 = {
4294
4686
  source: "No results found",
4295
4687
  translation: "Aucun résultat trouvé"
@@ -4983,15 +5375,57 @@ const fr = {
4983
5375
  proxyViewShow: proxyViewShow$2,
4984
5376
  proxyViewToggle: proxyViewToggle$2,
4985
5377
  proxyViewTourText: proxyViewTourText$2,
5378
+ publishAlreadyScheduledDescription: publishAlreadyScheduledDescription$2,
4986
5379
  publishAndCloseLabel: publishAndCloseLabel$2,
4987
5380
  publishAndCloseLabelUnpublished: publishAndCloseLabelUnpublished$2,
5381
+ publishCurrentPage: publishCurrentPage$2,
5382
+ publishCurrentlyPublished: publishCurrentlyPublished$2,
5383
+ publishCurrentlyUnpublished: publishCurrentlyUnpublished$2,
4988
5384
  publishDescription: publishDescription$2,
5385
+ publishDescriptionScheduled: publishDescriptionScheduled$2,
4989
5386
  publishDescriptionUnpublished: publishDescriptionUnpublished$2,
4990
5387
  publishDialogTitle: publishDialogTitle$2,
4991
5388
  publishError: publishError$2,
4992
5389
  publishLabel: publishLabel$2,
4993
5390
  publishLabelUnpublished: publishLabelUnpublished$2,
5391
+ publishManageSchedule: publishManageSchedule$2,
5392
+ publishMode: publishMode$2,
5393
+ publishModeImmediateDescription: publishModeImmediateDescription$2,
5394
+ publishModeImmediateTitle: publishModeImmediateTitle$2,
5395
+ publishModeSaveDescription: publishModeSaveDescription$2,
5396
+ publishModeSaveTitle: publishModeSaveTitle$2,
5397
+ publishModeScheduledDescription: publishModeScheduledDescription$2,
5398
+ publishModeScheduledTitle: publishModeScheduledTitle$2,
5399
+ publishName: publishName$2,
5400
+ publishPublicationScheduled: publishPublicationScheduled$2,
5401
+ publishPublishContent: publishPublishContent$2,
5402
+ publishPublishContents: publishPublishContents$2,
5403
+ publishRemainsPublished: publishRemainsPublished$2,
5404
+ publishRemainsUnpublished: publishRemainsUnpublished$2,
5405
+ publishRemoveSchedule: publishRemoveSchedule$2,
5406
+ publishResultPublishChangesNowPublished: publishResultPublishChangesNowPublished$2,
5407
+ publishResultPublishChangesRemainPublished: publishResultPublishChangesRemainPublished$2,
5408
+ publishResultSaveChanges: publishResultSaveChanges$2,
5409
+ publishResultScheduledChanges: publishResultScheduledChanges$2,
5410
+ publishRevisionLogMessage: publishRevisionLogMessage$2,
5411
+ publishRevisionLogMessageDescription: publishRevisionLogMessageDescription$2,
5412
+ publishSaveContent: publishSaveContent$2,
5413
+ publishSaveContents: publishSaveContents$2,
5414
+ publishScheduleDate: publishScheduleDate$2,
5415
+ publishScheduleInSevenDays: publishScheduleInSevenDays$2,
5416
+ publishScheduleNextMonday: publishScheduleNextMonday$2,
5417
+ publishSchedulePublication: publishSchedulePublication$2,
5418
+ publishSchedulePublications: publishSchedulePublications$2,
5419
+ publishScheduleSuccess: publishScheduleSuccess$2,
5420
+ publishScheduleTomorrow: publishScheduleTomorrow$2,
5421
+ publishScheduledInfo: publishScheduledInfo$2,
5422
+ publishStatus: publishStatus$2,
4994
5423
  publishSuccess: publishSuccess$2,
5424
+ publishSuccessfullyPublished: publishSuccessfullyPublished$2,
5425
+ publishSuccessfullySaved: publishSuccessfullySaved$2,
5426
+ publishSummary: publishSummary$2,
5427
+ publishWillBePublished: publishWillBePublished$2,
5428
+ publishWillBeScheduled: publishWillBeScheduled$2,
4995
5429
  responsivePreviewCustomViewport: responsivePreviewCustomViewport$2,
4996
5430
  responsivePreviewTitle: responsivePreviewTitle$2,
4997
5431
  responsivePreviewTourText: responsivePreviewTourText$2,
@@ -5003,6 +5437,7 @@ const fr = {
5003
5437
  revertMenuTitle: revertMenuTitle$2,
5004
5438
  revertSuccess: revertSuccess$2,
5005
5439
  save: save$2,
5440
+ scheduledFor: scheduledFor$2,
5006
5441
  searchBoxNoResultsFound: searchBoxNoResultsFound$2,
5007
5442
  searchBoxOnThisPage: searchBoxOnThisPage$2,
5008
5443
  searchBoxPlaceholder: searchBoxPlaceholder$2,
@@ -6233,6 +6668,10 @@ const proxyViewTourText$1 = {
6233
6668
  source: "Displays the content blocks as a structured view.",
6234
6669
  translation: ""
6235
6670
  };
6671
+ const publishAlreadyScheduledDescription$1 = {
6672
+ source: "This page is already scheduled for publishing",
6673
+ translation: ""
6674
+ };
6236
6675
  const publishAndCloseLabel$1 = {
6237
6676
  source: "Publish & Close",
6238
6677
  translation: ""
@@ -6241,10 +6680,26 @@ const publishAndCloseLabelUnpublished$1 = {
6241
6680
  source: "Save & Close",
6242
6681
  translation: ""
6243
6682
  };
6683
+ const publishCurrentPage$1 = {
6684
+ source: "Current page",
6685
+ translation: ""
6686
+ };
6687
+ const publishCurrentlyPublished$1 = {
6688
+ source: "Page is published",
6689
+ translation: ""
6690
+ };
6691
+ const publishCurrentlyUnpublished$1 = {
6692
+ source: "Page is unpublished",
6693
+ translation: ""
6694
+ };
6244
6695
  const publishDescription$1 = {
6245
6696
  source: "Publish all changes.",
6246
6697
  translation: "Rendi pubbliche tutte le modifiche"
6247
6698
  };
6699
+ const publishDescriptionScheduled$1 = {
6700
+ source: "View or change the scheduled publication",
6701
+ translation: ""
6702
+ };
6248
6703
  const publishDescriptionUnpublished$1 = {
6249
6704
  source: "Save all changes while keeping page unpublished",
6250
6705
  translation: ""
@@ -6265,10 +6720,158 @@ const publishLabelUnpublished$1 = {
6265
6720
  source: "Save",
6266
6721
  translation: ""
6267
6722
  };
6723
+ const publishManageSchedule$1 = {
6724
+ source: "Manage scheduling",
6725
+ translation: ""
6726
+ };
6727
+ const publishMode$1 = {
6728
+ source: "Publish mode",
6729
+ translation: ""
6730
+ };
6731
+ const publishModeImmediateDescription$1 = {
6732
+ source: "Publish changes immediately",
6733
+ translation: ""
6734
+ };
6735
+ const publishModeImmediateTitle$1 = {
6736
+ source: "Publish",
6737
+ translation: ""
6738
+ };
6739
+ const publishModeSaveDescription$1 = {
6740
+ source: "Save changes without publishing",
6741
+ translation: ""
6742
+ };
6743
+ const publishModeSaveTitle$1 = {
6744
+ source: "Save",
6745
+ translation: ""
6746
+ };
6747
+ const publishModeScheduledDescription$1 = {
6748
+ source: "Schedule changes for publishing",
6749
+ translation: ""
6750
+ };
6751
+ const publishModeScheduledTitle$1 = {
6752
+ source: "Schedule",
6753
+ translation: ""
6754
+ };
6755
+ const publishName$1 = {
6756
+ source: "Name",
6757
+ translation: ""
6758
+ };
6759
+ const publishPublicationScheduled$1 = {
6760
+ source: "Publication scheduled",
6761
+ translation: ""
6762
+ };
6763
+ const publishPublishContent$1 = {
6764
+ source: "Publish content",
6765
+ translation: ""
6766
+ };
6767
+ const publishPublishContents$1 = {
6768
+ source: "Publish @count contents",
6769
+ translation: ""
6770
+ };
6771
+ const publishRemainsPublished$1 = {
6772
+ source: "Remains published",
6773
+ translation: ""
6774
+ };
6775
+ const publishRemainsUnpublished$1 = {
6776
+ source: "Remains unpublished",
6777
+ translation: ""
6778
+ };
6779
+ const publishRemoveSchedule$1 = {
6780
+ source: "Remove schedule",
6781
+ translation: ""
6782
+ };
6783
+ const publishResultPublishChangesNowPublished$1 = {
6784
+ source: "Changes are published, page is now published",
6785
+ translation: ""
6786
+ };
6787
+ const publishResultPublishChangesRemainPublished$1 = {
6788
+ source: "Changes are published, page remains published",
6789
+ translation: ""
6790
+ };
6791
+ const publishResultSaveChanges$1 = {
6792
+ source: "Changes are saved, page remains unpublished",
6793
+ translation: ""
6794
+ };
6795
+ const publishResultScheduledChanges$1 = {
6796
+ source: "Changes will be published on @date",
6797
+ translation: ""
6798
+ };
6799
+ const publishRevisionLogMessage$1 = {
6800
+ source: "Revision log message",
6801
+ translation: ""
6802
+ };
6803
+ const publishRevisionLogMessageDescription$1 = {
6804
+ source: "Briefly describe the changes made",
6805
+ translation: ""
6806
+ };
6807
+ const publishSaveContent$1 = {
6808
+ source: "Save content",
6809
+ translation: ""
6810
+ };
6811
+ const publishSaveContents$1 = {
6812
+ source: "Save @count contents",
6813
+ translation: ""
6814
+ };
6815
+ const publishScheduleDate$1 = {
6816
+ source: "Publication date",
6817
+ translation: ""
6818
+ };
6819
+ const publishScheduleInSevenDays$1 = {
6820
+ source: "In 7 days",
6821
+ translation: ""
6822
+ };
6823
+ const publishScheduleNextMonday$1 = {
6824
+ source: "Next Monday",
6825
+ translation: ""
6826
+ };
6827
+ const publishSchedulePublication$1 = {
6828
+ source: "Schedule publication",
6829
+ translation: ""
6830
+ };
6831
+ const publishSchedulePublications$1 = {
6832
+ source: "Schedule @count publications",
6833
+ translation: ""
6834
+ };
6835
+ const publishScheduleSuccess$1 = {
6836
+ source: "Publication scheduled for @date",
6837
+ translation: ""
6838
+ };
6839
+ const publishScheduleTomorrow$1 = {
6840
+ source: "Tomorrow",
6841
+ translation: ""
6842
+ };
6843
+ const publishScheduledInfo$1 = {
6844
+ source: "You can still make changes until the scheduled publication date.",
6845
+ translation: ""
6846
+ };
6847
+ const publishStatus$1 = {
6848
+ source: "Status",
6849
+ translation: ""
6850
+ };
6268
6851
  const publishSuccess$1 = {
6269
6852
  source: "Changes published successfully.",
6270
6853
  translation: "Modifiche pubblicate con successo."
6271
6854
  };
6855
+ const publishSuccessfullyPublished$1 = {
6856
+ source: "Successfully published",
6857
+ translation: ""
6858
+ };
6859
+ const publishSuccessfullySaved$1 = {
6860
+ source: "Successfully saved",
6861
+ translation: ""
6862
+ };
6863
+ const publishSummary$1 = {
6864
+ source: "Summary",
6865
+ translation: ""
6866
+ };
6867
+ const publishWillBePublished$1 = {
6868
+ source: "Will be published",
6869
+ translation: ""
6870
+ };
6871
+ const publishWillBeScheduled$1 = {
6872
+ source: "Will be scheduled",
6873
+ translation: ""
6874
+ };
6272
6875
  const responsivePreviewCustomViewport$1 = {
6273
6876
  source: "Custom",
6274
6877
  translation: ""
@@ -6313,6 +6916,10 @@ const save$1 = {
6313
6916
  source: "Save",
6314
6917
  translation: "Save"
6315
6918
  };
6919
+ const scheduledFor$1 = {
6920
+ source: "The changes will be published on this date.",
6921
+ translation: ""
6922
+ };
6316
6923
  const searchBoxNoResultsFound$1 = {
6317
6924
  source: "No results found",
6318
6925
  translation: "Nessun risultato trovato"
@@ -7006,15 +7613,57 @@ const it = {
7006
7613
  proxyViewShow: proxyViewShow$1,
7007
7614
  proxyViewToggle: proxyViewToggle$1,
7008
7615
  proxyViewTourText: proxyViewTourText$1,
7616
+ publishAlreadyScheduledDescription: publishAlreadyScheduledDescription$1,
7009
7617
  publishAndCloseLabel: publishAndCloseLabel$1,
7010
7618
  publishAndCloseLabelUnpublished: publishAndCloseLabelUnpublished$1,
7619
+ publishCurrentPage: publishCurrentPage$1,
7620
+ publishCurrentlyPublished: publishCurrentlyPublished$1,
7621
+ publishCurrentlyUnpublished: publishCurrentlyUnpublished$1,
7011
7622
  publishDescription: publishDescription$1,
7623
+ publishDescriptionScheduled: publishDescriptionScheduled$1,
7012
7624
  publishDescriptionUnpublished: publishDescriptionUnpublished$1,
7013
7625
  publishDialogTitle: publishDialogTitle$1,
7014
7626
  publishError: publishError$1,
7015
7627
  publishLabel: publishLabel$1,
7016
7628
  publishLabelUnpublished: publishLabelUnpublished$1,
7629
+ publishManageSchedule: publishManageSchedule$1,
7630
+ publishMode: publishMode$1,
7631
+ publishModeImmediateDescription: publishModeImmediateDescription$1,
7632
+ publishModeImmediateTitle: publishModeImmediateTitle$1,
7633
+ publishModeSaveDescription: publishModeSaveDescription$1,
7634
+ publishModeSaveTitle: publishModeSaveTitle$1,
7635
+ publishModeScheduledDescription: publishModeScheduledDescription$1,
7636
+ publishModeScheduledTitle: publishModeScheduledTitle$1,
7637
+ publishName: publishName$1,
7638
+ publishPublicationScheduled: publishPublicationScheduled$1,
7639
+ publishPublishContent: publishPublishContent$1,
7640
+ publishPublishContents: publishPublishContents$1,
7641
+ publishRemainsPublished: publishRemainsPublished$1,
7642
+ publishRemainsUnpublished: publishRemainsUnpublished$1,
7643
+ publishRemoveSchedule: publishRemoveSchedule$1,
7644
+ publishResultPublishChangesNowPublished: publishResultPublishChangesNowPublished$1,
7645
+ publishResultPublishChangesRemainPublished: publishResultPublishChangesRemainPublished$1,
7646
+ publishResultSaveChanges: publishResultSaveChanges$1,
7647
+ publishResultScheduledChanges: publishResultScheduledChanges$1,
7648
+ publishRevisionLogMessage: publishRevisionLogMessage$1,
7649
+ publishRevisionLogMessageDescription: publishRevisionLogMessageDescription$1,
7650
+ publishSaveContent: publishSaveContent$1,
7651
+ publishSaveContents: publishSaveContents$1,
7652
+ publishScheduleDate: publishScheduleDate$1,
7653
+ publishScheduleInSevenDays: publishScheduleInSevenDays$1,
7654
+ publishScheduleNextMonday: publishScheduleNextMonday$1,
7655
+ publishSchedulePublication: publishSchedulePublication$1,
7656
+ publishSchedulePublications: publishSchedulePublications$1,
7657
+ publishScheduleSuccess: publishScheduleSuccess$1,
7658
+ publishScheduleTomorrow: publishScheduleTomorrow$1,
7659
+ publishScheduledInfo: publishScheduledInfo$1,
7660
+ publishStatus: publishStatus$1,
7017
7661
  publishSuccess: publishSuccess$1,
7662
+ publishSuccessfullyPublished: publishSuccessfullyPublished$1,
7663
+ publishSuccessfullySaved: publishSuccessfullySaved$1,
7664
+ publishSummary: publishSummary$1,
7665
+ publishWillBePublished: publishWillBePublished$1,
7666
+ publishWillBeScheduled: publishWillBeScheduled$1,
7018
7667
  responsivePreviewCustomViewport: responsivePreviewCustomViewport$1,
7019
7668
  responsivePreviewTitle: responsivePreviewTitle$1,
7020
7669
  responsivePreviewTourText: responsivePreviewTourText$1,
@@ -7026,6 +7675,7 @@ const it = {
7026
7675
  revertMenuTitle: revertMenuTitle$1,
7027
7676
  revertSuccess: revertSuccess$1,
7028
7677
  save: save$1,
7678
+ scheduledFor: scheduledFor$1,
7029
7679
  searchBoxNoResultsFound: searchBoxNoResultsFound$1,
7030
7680
  searchBoxOnThisPage: searchBoxOnThisPage$1,
7031
7681
  searchBoxPlaceholder: searchBoxPlaceholder$1,
@@ -8256,6 +8906,10 @@ const proxyViewTourText = {
8256
8906
  source: "Displays the content blocks as a structured view.",
8257
8907
  translation: "Zeigt d'Inhaltblöck als strukturierti Aasicht aa."
8258
8908
  };
8909
+ const publishAlreadyScheduledDescription = {
8910
+ source: "This page is already scheduled for publishing",
8911
+ translation: ""
8912
+ };
8259
8913
  const publishAndCloseLabel = {
8260
8914
  source: "Publish & Close",
8261
8915
  translation: "Publiziere & Zuemache"
@@ -8264,10 +8918,26 @@ const publishAndCloseLabelUnpublished = {
8264
8918
  source: "Save & Close",
8265
8919
  translation: "Speichere & Zuemache"
8266
8920
  };
8921
+ const publishCurrentPage = {
8922
+ source: "Current page",
8923
+ translation: ""
8924
+ };
8925
+ const publishCurrentlyPublished = {
8926
+ source: "Page is published",
8927
+ translation: ""
8928
+ };
8929
+ const publishCurrentlyUnpublished = {
8930
+ source: "Page is unpublished",
8931
+ translation: ""
8932
+ };
8267
8933
  const publishDescription = {
8268
8934
  source: "Publish all changes.",
8269
8935
  translation: "Alli änderige öffentlich mache."
8270
8936
  };
8937
+ const publishDescriptionScheduled = {
8938
+ source: "View or change the scheduled publication",
8939
+ translation: ""
8940
+ };
8271
8941
  const publishDescriptionUnpublished = {
8272
8942
  source: "Save all changes while keeping page unpublished",
8273
8943
  translation: "Alli Änderige speichere ohni d'Sitte z'publiziere"
@@ -8288,10 +8958,158 @@ const publishLabelUnpublished = {
8288
8958
  source: "Save",
8289
8959
  translation: "Speichere"
8290
8960
  };
8961
+ const publishManageSchedule = {
8962
+ source: "Manage scheduling",
8963
+ translation: ""
8964
+ };
8965
+ const publishMode = {
8966
+ source: "Publish mode",
8967
+ translation: ""
8968
+ };
8969
+ const publishModeImmediateDescription = {
8970
+ source: "Publish changes immediately",
8971
+ translation: ""
8972
+ };
8973
+ const publishModeImmediateTitle = {
8974
+ source: "Publish",
8975
+ translation: ""
8976
+ };
8977
+ const publishModeSaveDescription = {
8978
+ source: "Save changes without publishing",
8979
+ translation: ""
8980
+ };
8981
+ const publishModeSaveTitle = {
8982
+ source: "Save",
8983
+ translation: ""
8984
+ };
8985
+ const publishModeScheduledDescription = {
8986
+ source: "Schedule changes for publishing",
8987
+ translation: ""
8988
+ };
8989
+ const publishModeScheduledTitle = {
8990
+ source: "Schedule",
8991
+ translation: ""
8992
+ };
8993
+ const publishName = {
8994
+ source: "Name",
8995
+ translation: ""
8996
+ };
8997
+ const publishPublicationScheduled = {
8998
+ source: "Publication scheduled",
8999
+ translation: ""
9000
+ };
9001
+ const publishPublishContent = {
9002
+ source: "Publish content",
9003
+ translation: ""
9004
+ };
9005
+ const publishPublishContents = {
9006
+ source: "Publish @count contents",
9007
+ translation: ""
9008
+ };
9009
+ const publishRemainsPublished = {
9010
+ source: "Remains published",
9011
+ translation: ""
9012
+ };
9013
+ const publishRemainsUnpublished = {
9014
+ source: "Remains unpublished",
9015
+ translation: ""
9016
+ };
9017
+ const publishRemoveSchedule = {
9018
+ source: "Remove schedule",
9019
+ translation: ""
9020
+ };
9021
+ const publishResultPublishChangesNowPublished = {
9022
+ source: "Changes are published, page is now published",
9023
+ translation: ""
9024
+ };
9025
+ const publishResultPublishChangesRemainPublished = {
9026
+ source: "Changes are published, page remains published",
9027
+ translation: ""
9028
+ };
9029
+ const publishResultSaveChanges = {
9030
+ source: "Changes are saved, page remains unpublished",
9031
+ translation: ""
9032
+ };
9033
+ const publishResultScheduledChanges = {
9034
+ source: "Changes will be published on @date",
9035
+ translation: ""
9036
+ };
9037
+ const publishRevisionLogMessage = {
9038
+ source: "Revision log message",
9039
+ translation: ""
9040
+ };
9041
+ const publishRevisionLogMessageDescription = {
9042
+ source: "Briefly describe the changes made",
9043
+ translation: ""
9044
+ };
9045
+ const publishSaveContent = {
9046
+ source: "Save content",
9047
+ translation: ""
9048
+ };
9049
+ const publishSaveContents = {
9050
+ source: "Save @count contents",
9051
+ translation: ""
9052
+ };
9053
+ const publishScheduleDate = {
9054
+ source: "Publication date",
9055
+ translation: ""
9056
+ };
9057
+ const publishScheduleInSevenDays = {
9058
+ source: "In 7 days",
9059
+ translation: ""
9060
+ };
9061
+ const publishScheduleNextMonday = {
9062
+ source: "Next Monday",
9063
+ translation: ""
9064
+ };
9065
+ const publishSchedulePublication = {
9066
+ source: "Schedule publication",
9067
+ translation: ""
9068
+ };
9069
+ const publishSchedulePublications = {
9070
+ source: "Schedule @count publications",
9071
+ translation: ""
9072
+ };
9073
+ const publishScheduleSuccess = {
9074
+ source: "Publication scheduled for @date",
9075
+ translation: ""
9076
+ };
9077
+ const publishScheduleTomorrow = {
9078
+ source: "Tomorrow",
9079
+ translation: ""
9080
+ };
9081
+ const publishScheduledInfo = {
9082
+ source: "You can still make changes until the scheduled publication date.",
9083
+ translation: ""
9084
+ };
9085
+ const publishStatus = {
9086
+ source: "Status",
9087
+ translation: ""
9088
+ };
8291
9089
  const publishSuccess = {
8292
9090
  source: "Changes published successfully.",
8293
9091
  translation: "Änderige erfolgriich publiziert."
8294
9092
  };
9093
+ const publishSuccessfullyPublished = {
9094
+ source: "Successfully published",
9095
+ translation: ""
9096
+ };
9097
+ const publishSuccessfullySaved = {
9098
+ source: "Successfully saved",
9099
+ translation: ""
9100
+ };
9101
+ const publishSummary = {
9102
+ source: "Summary",
9103
+ translation: ""
9104
+ };
9105
+ const publishWillBePublished = {
9106
+ source: "Will be published",
9107
+ translation: ""
9108
+ };
9109
+ const publishWillBeScheduled = {
9110
+ source: "Will be scheduled",
9111
+ translation: ""
9112
+ };
8295
9113
  const responsivePreviewCustomViewport = {
8296
9114
  source: "Custom",
8297
9115
  translation: "Benutzerdefiniert"
@@ -8336,6 +9154,10 @@ const save = {
8336
9154
  source: "Save",
8337
9155
  translation: "Speichere"
8338
9156
  };
9157
+ const scheduledFor = {
9158
+ source: "The changes will be published on this date.",
9159
+ translation: ""
9160
+ };
8339
9161
  const searchBoxNoResultsFound = {
8340
9162
  source: "No results found",
8341
9163
  translation: "Keini Resultat gfunde"
@@ -9029,15 +9851,57 @@ const gsw_CH = {
9029
9851
  proxyViewShow: proxyViewShow,
9030
9852
  proxyViewToggle: proxyViewToggle,
9031
9853
  proxyViewTourText: proxyViewTourText,
9854
+ publishAlreadyScheduledDescription: publishAlreadyScheduledDescription,
9032
9855
  publishAndCloseLabel: publishAndCloseLabel,
9033
9856
  publishAndCloseLabelUnpublished: publishAndCloseLabelUnpublished,
9857
+ publishCurrentPage: publishCurrentPage,
9858
+ publishCurrentlyPublished: publishCurrentlyPublished,
9859
+ publishCurrentlyUnpublished: publishCurrentlyUnpublished,
9034
9860
  publishDescription: publishDescription,
9861
+ publishDescriptionScheduled: publishDescriptionScheduled,
9035
9862
  publishDescriptionUnpublished: publishDescriptionUnpublished,
9036
9863
  publishDialogTitle: publishDialogTitle,
9037
9864
  publishError: publishError,
9038
9865
  publishLabel: publishLabel,
9039
9866
  publishLabelUnpublished: publishLabelUnpublished,
9867
+ publishManageSchedule: publishManageSchedule,
9868
+ publishMode: publishMode,
9869
+ publishModeImmediateDescription: publishModeImmediateDescription,
9870
+ publishModeImmediateTitle: publishModeImmediateTitle,
9871
+ publishModeSaveDescription: publishModeSaveDescription,
9872
+ publishModeSaveTitle: publishModeSaveTitle,
9873
+ publishModeScheduledDescription: publishModeScheduledDescription,
9874
+ publishModeScheduledTitle: publishModeScheduledTitle,
9875
+ publishName: publishName,
9876
+ publishPublicationScheduled: publishPublicationScheduled,
9877
+ publishPublishContent: publishPublishContent,
9878
+ publishPublishContents: publishPublishContents,
9879
+ publishRemainsPublished: publishRemainsPublished,
9880
+ publishRemainsUnpublished: publishRemainsUnpublished,
9881
+ publishRemoveSchedule: publishRemoveSchedule,
9882
+ publishResultPublishChangesNowPublished: publishResultPublishChangesNowPublished,
9883
+ publishResultPublishChangesRemainPublished: publishResultPublishChangesRemainPublished,
9884
+ publishResultSaveChanges: publishResultSaveChanges,
9885
+ publishResultScheduledChanges: publishResultScheduledChanges,
9886
+ publishRevisionLogMessage: publishRevisionLogMessage,
9887
+ publishRevisionLogMessageDescription: publishRevisionLogMessageDescription,
9888
+ publishSaveContent: publishSaveContent,
9889
+ publishSaveContents: publishSaveContents,
9890
+ publishScheduleDate: publishScheduleDate,
9891
+ publishScheduleInSevenDays: publishScheduleInSevenDays,
9892
+ publishScheduleNextMonday: publishScheduleNextMonday,
9893
+ publishSchedulePublication: publishSchedulePublication,
9894
+ publishSchedulePublications: publishSchedulePublications,
9895
+ publishScheduleSuccess: publishScheduleSuccess,
9896
+ publishScheduleTomorrow: publishScheduleTomorrow,
9897
+ publishScheduledInfo: publishScheduledInfo,
9898
+ publishStatus: publishStatus,
9040
9899
  publishSuccess: publishSuccess,
9900
+ publishSuccessfullyPublished: publishSuccessfullyPublished,
9901
+ publishSuccessfullySaved: publishSuccessfullySaved,
9902
+ publishSummary: publishSummary,
9903
+ publishWillBePublished: publishWillBePublished,
9904
+ publishWillBeScheduled: publishWillBeScheduled,
9041
9905
  responsivePreviewCustomViewport: responsivePreviewCustomViewport,
9042
9906
  responsivePreviewTitle: responsivePreviewTitle,
9043
9907
  responsivePreviewTourText: responsivePreviewTourText,
@@ -9049,6 +9913,7 @@ const gsw_CH = {
9049
9913
  revertMenuTitle: revertMenuTitle,
9050
9914
  revertSuccess: revertSuccess,
9051
9915
  save: save,
9916
+ scheduledFor: scheduledFor,
9052
9917
  searchBoxNoResultsFound: searchBoxNoResultsFound,
9053
9918
  searchBoxOnThisPage: searchBoxOnThisPage,
9054
9919
  searchBoxPlaceholder: searchBoxPlaceholder,