pageflow 16.0.0 → 16.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (145) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +210 -33
  3. data/README.md +0 -1
  4. data/Rakefile +1 -1
  5. data/admins/pageflow/entry.rb +0 -1
  6. data/admins/pageflow/sites.rb +3 -0
  7. data/app/assets/javascripts/pageflow/dist/ui.js +298 -72
  8. data/app/assets/stylesheets/pageflow/admin/permalink_input.scss +10 -0
  9. data/app/assets/stylesheets/pageflow/editor/drop_down_button.scss +6 -1
  10. data/app/assets/stylesheets/pageflow/editor/file_thumbnails.scss +4 -0
  11. data/app/assets/stylesheets/pageflow/editor/help.scss +3 -3
  12. data/app/assets/stylesheets/pageflow/editor/info_box.scss +7 -0
  13. data/app/assets/stylesheets/pageflow/editor/inputs/file_input.scss +0 -5
  14. data/app/assets/stylesheets/pageflow/ui/forms.scss +1 -1
  15. data/app/controllers/pageflow/chapters_controller.rb +2 -2
  16. data/app/controllers/pageflow/editor/files_controller.rb +1 -1
  17. data/app/controllers/pageflow/entries_controller.rb +10 -0
  18. data/app/controllers/pageflow/feeds_controller.rb +18 -0
  19. data/app/controllers/pageflow/pages_controller.rb +2 -2
  20. data/app/controllers/pageflow/sitemaps_controller.rb +15 -0
  21. data/app/controllers/pageflow/storylines_controller.rb +2 -2
  22. data/app/helpers/pageflow/entries_helper.rb +2 -1
  23. data/app/helpers/pageflow/feeds_helper.rb +66 -0
  24. data/app/helpers/pageflow/page_types_helper.rb +9 -9
  25. data/app/inputs/pageflow_permalink_input.rb +15 -3
  26. data/app/models/concerns/pageflow/reusable_file.rb +3 -3
  27. data/app/models/pageflow/account.rb +8 -0
  28. data/app/models/pageflow/audio_file_url_templates.rb +2 -1
  29. data/app/models/pageflow/draft_entry.rb +1 -1
  30. data/app/models/pageflow/entries_feed.rb +32 -0
  31. data/app/models/pageflow/image_file.rb +14 -3
  32. data/app/models/pageflow/membership.rb +3 -2
  33. data/app/models/pageflow/other_file.rb +5 -0
  34. data/app/models/pageflow/other_file_url_templates.rb +16 -0
  35. data/app/models/pageflow/published_entry.rb +6 -0
  36. data/app/models/pageflow/revision.rb +4 -0
  37. data/app/models/pageflow/site.rb +8 -0
  38. data/app/models/pageflow/sitemaps.rb +13 -0
  39. data/app/models/pageflow/used_file.rb +2 -2
  40. data/app/models/pageflow/video_file_url_templates.rb +3 -1
  41. data/app/models/pageflow/widget.rb +9 -1
  42. data/app/views/admin/entries/_permalink_inputs.html.erb +1 -2
  43. data/app/views/admin/sites/_attributes_table.html.arb +3 -0
  44. data/app/views/admin/sites/_fields.html.erb +6 -0
  45. data/app/views/components/pageflow/admin/extensible_attributes_table.rb +8 -2
  46. data/app/views/components/pageflow/admin/sites_tab.rb +3 -0
  47. data/app/views/pageflow/editor/config/_seeds.json.jbuilder +1 -0
  48. data/app/views/pageflow/feeds/index.atom.builder +20 -0
  49. data/app/views/pageflow/sitemaps/index.xml.builder +9 -0
  50. data/config/initializers/features.rb +1 -0
  51. data/config/initializers/paperclip.rb +4 -0
  52. data/config/locales/de.yml +27 -6
  53. data/config/locales/en.yml +30 -4
  54. data/config/routes.rb +3 -0
  55. data/config/spring.rb +1 -1
  56. data/db/migrate/20230120092923_create_other_files.rb +23 -0
  57. data/db/migrate/20230323115745_add_feeds_enabled_to_sites.rb +5 -0
  58. data/db/migrate/20230323154323_add_sitemap_enabled_to_sites.rb +5 -0
  59. data/db/migrate/20230331103823_add_title_to_sites.rb +5 -0
  60. data/db/migrate/20230405103612_add_custom_feed_url_to_sites.rb +5 -0
  61. data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/editor.js +445 -109
  62. data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/frontend.js +26 -3
  63. data/entry_types/paged/app/controllers/pageflow_paged/editor/entries_controller.rb +0 -2
  64. data/entry_types/paged/app/controllers/pageflow_paged/entries_controller.rb +1 -0
  65. data/entry_types/paged/app/views/pageflow_paged/entries/show.html.erb +1 -0
  66. data/entry_types/paged/config/initializers/features.rb +0 -1
  67. data/entry_types/paged/lib/pageflow_paged/engine.rb +17 -1
  68. data/entry_types/scrolled/app/controllers/pageflow_scrolled/editor/chapters_controller.rb +2 -2
  69. data/entry_types/scrolled/app/controllers/pageflow_scrolled/editor/content_elements_controller.rb +3 -4
  70. data/entry_types/scrolled/app/controllers/pageflow_scrolled/editor/sections_controller.rb +13 -6
  71. data/entry_types/scrolled/app/controllers/pageflow_scrolled/entries_controller.rb +2 -0
  72. data/entry_types/scrolled/app/helpers/pageflow_scrolled/cache_helper.rb +11 -0
  73. data/entry_types/scrolled/app/helpers/pageflow_scrolled/editor/entry_json_seed_helper.rb +42 -0
  74. data/entry_types/scrolled/app/helpers/pageflow_scrolled/editor/seed_html_helper.rb +3 -0
  75. data/entry_types/scrolled/app/helpers/pageflow_scrolled/packs_helper.rb +31 -10
  76. data/entry_types/scrolled/app/helpers/pageflow_scrolled/react_server_side_rendering_helper.rb +9 -1
  77. data/entry_types/scrolled/app/helpers/pageflow_scrolled/themes_helper.rb +3 -1
  78. data/entry_types/scrolled/app/models/pageflow_scrolled/chapter.rb +23 -0
  79. data/entry_types/scrolled/app/views/pageflow_scrolled/editor/entries/_head.html.erb +6 -1
  80. data/entry_types/scrolled/app/views/pageflow_scrolled/editor/entries/_seed.json.jbuilder +1 -5
  81. data/entry_types/scrolled/app/views/pageflow_scrolled/editor/sections/_section_with_content_elements.json.jbuilder +10 -0
  82. data/entry_types/scrolled/app/views/pageflow_scrolled/entries/show.html.erb +44 -41
  83. data/entry_types/scrolled/app/views/pageflow_scrolled/entry_json_seed/_consent_vendors.json.jbuilder +16 -0
  84. data/entry_types/scrolled/app/views/pageflow_scrolled/entry_json_seed/_entry.json.jbuilder +3 -0
  85. data/entry_types/scrolled/config/initializers/features.rb +5 -0
  86. data/entry_types/scrolled/config/locales/consent_widget.de.yml +4 -0
  87. data/entry_types/scrolled/config/locales/consent_widget.en.yml +4 -0
  88. data/entry_types/scrolled/config/locales/de.yml +189 -8
  89. data/entry_types/scrolled/config/locales/en.yml +207 -2
  90. data/entry_types/scrolled/config/routes.rb +4 -0
  91. data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/install_generator.rb +97 -5
  92. data/entry_types/scrolled/lib/pageflow_scrolled/additional_seed_data.rb +1 -1
  93. data/entry_types/scrolled/lib/pageflow_scrolled/configuration.rb +96 -0
  94. data/entry_types/scrolled/lib/pageflow_scrolled/content_element_consent_vendors.rb +38 -0
  95. data/entry_types/scrolled/lib/pageflow_scrolled/engine.rb +17 -1
  96. data/entry_types/scrolled/lib/pageflow_scrolled/plugin.rb +24 -0
  97. data/entry_types/scrolled/lib/pageflow_scrolled/react_widget_type.rb +6 -1
  98. data/entry_types/scrolled/lib/tasks/pageflow_scrolled/storybook.rake +1 -2
  99. data/entry_types/scrolled/package/contentElements-editor.js +307 -22
  100. data/entry_types/scrolled/package/contentElements-frontend.css +1 -1
  101. data/entry_types/scrolled/package/contentElements-frontend.js +690 -71
  102. data/entry_types/scrolled/package/editor.js +616 -220
  103. data/entry_types/scrolled/package/frontend/{EditableInlineText.module-14c7b097.js → EditableInlineText.module-fa9e3aff.js} +1669 -1674
  104. data/entry_types/scrolled/package/frontend/PhonePlatformContext-10a1d600.js +32 -0
  105. data/entry_types/scrolled/package/frontend/ToggleFullscreenCornerButton-727cce0d.js +107 -0
  106. data/entry_types/scrolled/package/frontend/Viewer-169e14ca.js +154 -0
  107. data/entry_types/scrolled/package/frontend/{Viewer-b6becc57.js → Viewer-ee1aa590.js} +32 -161
  108. data/entry_types/scrolled/package/frontend/arrowRight-92a34ccc.js +77 -0
  109. data/entry_types/scrolled/package/frontend/{components-b3160dd7.js → components-4a09bfa3.js} +185 -45
  110. data/entry_types/scrolled/package/frontend/{PhonePlatformContext-f6093cc6.js → i18n-ddd92820.js} +149 -107
  111. data/entry_types/scrolled/package/frontend/index-02378634.js +118 -0
  112. data/entry_types/scrolled/package/frontend/index.css +1 -1
  113. data/entry_types/scrolled/package/frontend/index.js +206 -54
  114. data/entry_types/scrolled/package/frontend/useContentElementEditorState-63045393.js +52 -0
  115. data/entry_types/scrolled/package/package.json +2 -1
  116. data/entry_types/scrolled/package/testHelpers.js +9 -2
  117. data/entry_types/scrolled/package/values/colors.module.css +15 -0
  118. data/entry_types/scrolled/package/widgets/consentBar.css +1 -0
  119. data/entry_types/scrolled/package/widgets/consentBar.js +426 -0
  120. data/entry_types/scrolled/package/widgets/defaultNavigation.css +1 -1
  121. data/lib/generators/pageflow/resque/resque_generator.rb +1 -1
  122. data/lib/pageflow/ability_mixin.rb +5 -5
  123. data/lib/pageflow/active_admin_can_can_fix.rb +2 -2
  124. data/lib/pageflow/built_in_file_type.rb +7 -0
  125. data/lib/pageflow/configuration.rb +21 -0
  126. data/lib/pageflow/engine.rb +60 -39
  127. data/lib/pageflow/entry_export_import/revision_serialization.rb +1 -1
  128. data/lib/pageflow/file_type.rb +2 -2
  129. data/lib/pageflow/global_config_api.rb +2 -2
  130. data/lib/pageflow/nested_revision_component.rb +23 -5
  131. data/lib/pageflow/rails_version.rb +19 -0
  132. data/lib/pageflow/seeds.rb +10 -7
  133. data/lib/pageflow/version.rb +1 -1
  134. data/lib/pageflow/widget_types.rb +4 -0
  135. data/package/config/webpack5.js +14 -0
  136. data/package/editor.js +141 -30
  137. data/package/frontend.js +26 -2
  138. data/package/testHelpers.js +1 -1
  139. data/package/ui.js +296 -71
  140. data/spec/factories/entries.rb +17 -3
  141. data/spec/factories/sites.rb +3 -0
  142. data/vendor/assets/javascripts/iscroll.js +4 -7
  143. metadata +65 -49
  144. data/app/helpers/pageflow/admin/permalinks_helper.rb +0 -15
  145. data/entry_types/scrolled/package/frontend/arrowRight-78a7cee4.js +0 -42
@@ -5,6 +5,23 @@ de:
5
5
  defaultNavigation:
6
6
  widget_type_name: Standard Navigation
7
7
  editor:
8
+ file_types:
9
+ audio_files:
10
+ name:
11
+ one: Audio
12
+ other: Audios
13
+ image_files:
14
+ name:
15
+ one: Bild
16
+ other: Bilder
17
+ other_files:
18
+ name:
19
+ one: Andere
20
+ other: Andere
21
+ video_files:
22
+ name:
23
+ one: Video
24
+ other: Videos
8
25
  widgets:
9
26
  attributes:
10
27
  defaultNavigation:
@@ -22,8 +39,12 @@ de:
22
39
  label: "'Ton aktivieren'-Button ausblenden"
23
40
  frontend_v2:
24
41
  feature_name: Frontend v2
42
+ hls_instead_of_dash:
43
+ feature_name: HLS statt DASH für Videos verwenden
25
44
  iframe_embed_content_element:
26
45
  feature_name: iframe-Embed Inhaltselement
46
+ scrolled_entry_fragment_caching:
47
+ feature_name: Pageflow-Next-Fragment-Caching
27
48
  ui:
28
49
  configuration_editor:
29
50
  tabs:
@@ -61,8 +82,22 @@ de:
61
82
  caption:
62
83
  inline_help: Die Beschriftung des Elements wird direkt unterhalb des Elements angezeigt.
63
84
  label: Beschriftung
85
+ palette_color:
86
+ blank: "(Automatisch)"
64
87
  position:
65
- inline_help: 'Mit dieser Einstellung kannst du die Position des Elements im Zusammenspiel mit Fließtext steuern: Das Element kann prominent für sich alleine stehen ("Volle Breite"), im Text verankert werden ("Im Textfluss") oder auch beim Scrollen begleitend neben dem Text stehenbleiben ("Sticky"). Sticky-Elemente bleiben statisch in der Mitte des Viewports neben dem Text stehen, bis entweder der Abschnitt aus dem Viewport gescrollt wird oder sie vom nächsten Sticky-Element des Abschnitts verdrängt werden. In Mobil-Darstellung werden Sticky Elemente automatisch im Text verankert. Sticky-Elemente funktionieren besonders gut bei Desktop-Darstellung in Kombination mit langen Textpassagen.'
88
+ inline_help: |-
89
+ Mit dieser Einstellung kannst du die Position des Elements
90
+ im Zusammenspiel mit Fließtext steuern: Das Element kann
91
+ im Text verankert werden ("Im Textfluss") oder beim
92
+ Scrollen begleitend neben dem Text stehenbleiben
93
+ ("Sticky"). Sticky-Elemente bleiben statisch in der Mitte
94
+ des Viewports neben dem Text stehen, bis entweder der
95
+ Abschnitt aus dem Viewport gescrollt wird oder sie vom
96
+ nächsten Sticky-Element des Abschnitts verdrängt
97
+ werden. In Mobil-Darstellung werden Sticky Elemente
98
+ automatisch im Text verankert. Sticky-Elemente
99
+ funktionieren besonders gut bei Desktop-Darstellung in
100
+ Kombination mit langen Textpassagen.
66
101
  label: Position
67
102
  values:
68
103
  full: Volle Breite
@@ -77,6 +112,12 @@ de:
77
112
  variant:
78
113
  blank: "(Standard)"
79
114
  label: Variante
115
+ width:
116
+ inline_help: |-
117
+ Ziehe den Schieberegler, um die Breite des Elements
118
+ anzupassen. Breitere Elemente unterbrechen den Textfluss
119
+ und stehen prominent für sich alleine.
120
+ label: Breite
80
121
  content_element_categories:
81
122
  basic:
82
123
  name: Basic
@@ -89,6 +130,58 @@ de:
89
130
  media:
90
131
  name: Media
91
132
  content_elements:
133
+ counter:
134
+ attributes:
135
+ countingSpeed:
136
+ inline_help: Lege fest, wie schnell die Zählanimation ablaufen soll.
137
+ label: Zählanimation
138
+ values:
139
+ fast: Schnell
140
+ medium: Mittel
141
+ none: "(Keine)"
142
+ slow: Langsam
143
+ decimalPlaces:
144
+ inline_help: Bestimme, wie wieviele Nachkommastellen gezeigt werden sollen.
145
+ label: Nachkommastellen
146
+ entranceAnimation:
147
+ inline_help: Lege die Animation fest, mit der die Zahl eingeblendet werden soll, wenn das Element die Mitte des Viewports erreicht.
148
+ label: Eingangsanimation
149
+ values:
150
+ fadeIn: Einblenden
151
+ fadeInFromAbove: Von oben einblenden
152
+ fadeInFromBelow: Von unten einblenden
153
+ fadeInScaleDown: Einblenden und verkleinern
154
+ fadeInScaleUp: Einblenden und vergrößern
155
+ none: "(Keine)"
156
+ numberColor:
157
+ label: Farbe
158
+ startValue:
159
+ inline_help: Bei diesem Wert beginnt die Zählanimation.
160
+ label: Startwert
161
+ targetValue:
162
+ inline_help: Zahlenwert, der angezeigt werden soll. Die Zählanimation endet bei diesem Wert.
163
+ label: Zielwert
164
+ textSize:
165
+ inline_help: Bestimme die Textgröße der Zahl.
166
+ label: Schriftgröße
167
+ values:
168
+ large: Groß
169
+ medium: Mittel
170
+ small: Klein
171
+ verySmall: Sehr klein
172
+ unit:
173
+ inline_help: Text der vor oder hinter der Zahl gezeigt werden soll.
174
+ label: Einheit
175
+ unitPlacement:
176
+ inline_help: Bestimme, ob die Einheit vor oder hinter dem Betrag gezeigt werden soll.
177
+ label: Position der Einheit
178
+ values:
179
+ leading: Vor dem Betrag ($100)
180
+ trailing: Nach dem Betrag (100%)
181
+ description: Animierte Metriken
182
+ name: Counter
183
+ tabs:
184
+ general: Counter
92
185
  dataWrapperChart:
93
186
  attributes:
94
187
  backgroundColor:
@@ -137,6 +230,8 @@ de:
137
230
  attributes:
138
231
  children:
139
232
  label: Text
233
+ color:
234
+ label: Farbe
140
235
  hyphens:
141
236
  inline_help: |
142
237
  Bei manueller Silbentrennung werden Worte nur an
@@ -199,6 +294,12 @@ de:
199
294
  portrait: Portrait (9:16)
200
295
  square: Quadratisch (1:1)
201
296
  wide: Landscape (16:9)
297
+ requireConsent:
298
+ inline_help: |-
299
+ iframe erst laden, nachdem Besucher der
300
+ Datenverarbeitung durch die eingebettete Seite
301
+ zugestimmt hat.
302
+ label: Datenschutz-Einwilligung aktivieren
202
303
  scale:
203
304
  label: Skalieren
204
305
  values:
@@ -212,9 +313,30 @@ de:
212
313
  inline_help: Dieser Titel wird von Screenreadern verwendet, um das iframe als Ganzes zu beschreiben.
213
314
  label: Titel
214
315
  description: Einbindung einer extern gehosteten Website
316
+ help_texts:
317
+ missingConsentVendor: |-
318
+ Für den Anbieter der angegeben URL stehen keine
319
+ Datenschutzangaben zur Verfügung.
215
320
  name: iframe-Embed
216
321
  tabs:
217
322
  general: iframe-Embed
323
+ imageGallery:
324
+ attributes:
325
+ enableFullscreenOnDesktop:
326
+ inline_help: |-
327
+ Ermögliche, die Galerie auf Desktop-Browsern in den
328
+ Vollbildmodus zu schalten. Auf mobilen Browsern werden
329
+ die Bilder bereits standardmäßig so groß wie möglich
330
+ angezeigt.
331
+ inline_help_disabled: Steht nicht zur Verfügung, wenn Position "Volle Breite" ausgewählt wurde.
332
+ label: Vollbildmodus auf Desktop erlauben
333
+ description: Eine Serie von Bildern zum Durchblättern
334
+ items:
335
+ add: Hinzufügen
336
+ label: Einträge
337
+ name: Bildergalerie
338
+ tabs:
339
+ general: Bildergalerie
218
340
  inlineAudio:
219
341
  attributes:
220
342
  atmoDuringPlayback:
@@ -269,6 +391,10 @@ de:
269
391
  general: Vorher/Nachher
270
392
  inlineImage:
271
393
  attributes:
394
+ enableFullscreen:
395
+ inline_help: Bild per Klick bildschirmfüllend öffnen.
396
+ inline_help_disabled: Steht nicht zur Verfügung, wenn Position "Volle Breite" ausgewählt wurde.
397
+ label: Vollbildmodus erlauben
272
398
  id:
273
399
  label: Bild
274
400
  portraitId:
@@ -300,6 +426,17 @@ de:
300
426
  autoplay: Automatisch
301
427
  loop: Loop
302
428
  manual: Manuell
429
+ portraitId:
430
+ inline_help: |
431
+ Wird gezeigt, wenn der Browser-Viewport höher als
432
+ breit ist - zum Beispiel auf Smartphones oder Tablets
433
+ in Portrait-Ausrichtung. Kann als Alternative zu einem
434
+ querformatigen Video konfiguriert werden, um den
435
+ verfügbaren Platz besser zu nutzen.
436
+ label: Video (Hochkant)
437
+ portraitPosterId:
438
+ inline_help: Poster-Bild für das alternative Hochkant-Video.
439
+ label: Poster (Hochkant)
303
440
  posterId:
304
441
  label: Poster
305
442
  rewindOnUnmute:
@@ -324,12 +461,30 @@ de:
324
461
  name: Frage/Anwort
325
462
  tabs:
326
463
  general: Frage/Anwort
464
+ quote:
465
+ attributes:
466
+ color:
467
+ label: Farbe
468
+ textSize:
469
+ label: Schriftgröße
470
+ values:
471
+ large: Groß
472
+ medium: Mittel
473
+ small: Klein
474
+ verySmall: Sehr klein
475
+ description: Freigestelltes Zitat mit Zuschreibung
476
+ name: Zitat
477
+ tabs:
478
+ general: Zitat
327
479
  soundDisclaimer:
328
480
  description: Lass den Leser den Ton aktiveren
329
481
  name: Audio-Hinweis
330
482
  tabs:
331
483
  general: Audio-Hinweis
332
484
  textBlock:
485
+ attributes:
486
+ color:
487
+ label: Farbe
333
488
  description: Text mit Listen, Zitaten und Zwischenüberschriften
334
489
  help_texts:
335
490
  shortcuts: |
@@ -464,6 +619,9 @@ de:
464
619
  video: Video
465
620
  backdropVideo:
466
621
  label: Hintergrund-Video
622
+ backdropVideoMobile:
623
+ inline_help: Wird gezeigt, wenn der Browser-Viewport höher als breit ist - zum Beispiel auf Smartphones oder Tablets in Portrait-Ausrichtung. Kann als Alternative zu einem querformatigen Hintergrund-Video konfiguriert werden, von dem ansonsten wichtige Teile abgeschnitten würden.
624
+ label: Hintergrund-Video (Hochkant)
467
625
  dynamicShadowOpacity:
468
626
  inline_help: Intensität der Abblendung, die - gesteuert durch die Scrollposition - hinter dem Text eingeblendet wird, sobald sich Motivbereich und Inhalt des Abschnitts zu überschneiden beginnen, um einen ausreichnenden Kontrast zu gewährleisten. Beachte, dass diese Abblendung nur sichtbar ist, wenn Motivbereich und Inhalt nicht nebeneinander dargestellt werden können. Wechsle am besten in die Phone-Vorschau, wenn du den eingestellten Wert veränderst.
469
627
  inline_help_disabled: Aktiviere "Motivbereich freilegen" weiter oben, um diese Einstellung zu verwenden.
@@ -531,7 +689,17 @@ de:
531
689
  no_options: Keine Optionen verfügbar
532
690
  section_item:
533
691
  drag_hint: Ziehen, um den Abschnitt zu verschieben
692
+ duplicate: Duplizieren
693
+ insert_section_above: Abschnitt oberhalb einfügen
694
+ insert_section_below: Abschnitt unterhalb einfügen
534
695
  save_error: Beim Speichern des Abschnitts ist ein Fehler aufgetreten.
696
+ transitions:
697
+ beforeAfter: Statische Hintergründe
698
+ fade: Überblenden (inkl. Inhalt)
699
+ fadeBg: Überblenden
700
+ reveal: Freilegen
701
+ scroll: Aus-/Einscrollen
702
+ scrollOver: Überlagern
535
703
  select_link_destination:
536
704
  cancel: Abbrechen
537
705
  create: Erstellen
@@ -540,6 +708,9 @@ de:
540
708
  open_in_new_tab: In neuem Tab öffnen
541
709
  or: oder
542
710
  select_chapter_or_section: Wähle ein Kapitel oder einen Abschnitt als Ziel aus
711
+ select_file: Biete eine Datei zum Download an
712
+ select_file_description: Lasse Leser eine Datei herunterladen, wenn sie auf den Link klicken.
713
+ select_in_sidebar: Datei auswählen
543
714
  selectable_chapter_item:
544
715
  title: Kapitel auswählen
545
716
  selectable_section_item:
@@ -561,20 +732,24 @@ de:
561
732
  Durch einen Klick auf ein Inhaltselement wird diese
562
733
  ausgewählt. In der Seitenleiste erscheinen die verfügbaren
563
734
  Konfigurationsoptionen. Hier kann unter anderem die
564
- **Positionierung** der Inhaltselemente festgelegt und weitere
565
- Optionen wie **Autoplay** für Audios und Videos oder
566
- **Bildunterschriften** bearbeitet werden.
735
+ **Positionierung** und **Breite** der Inhaltselemente
736
+ festgelegt und weitere Optionen wie **Autoplay** für Audios
737
+ und Videos bearbeitet werden.
567
738
 
568
739
  Für die Darstellung auf breiten
569
740
  Bildschirm-Seitenverhältnissen (Desktop, Notebook, Tablet,
570
741
  Smartphone quer) können einzelne Inhaltselemente, wie
571
742
  Videos, Audios, Video Embeds, 360° Bilder auch als
572
- **Sticky** oder **Volle Breite** angeordnet werden.
743
+ **Sticky** angeordnet werden. Sticky-Elemente bleiben
744
+ statisch in der Mitte des Viewports neben dem Text stehen,
745
+ bis entweder der Abschnitt aus dem Viewport gescrollt wird
746
+ oder sie vom nächsten Sticky-Element des Abschnitts
747
+ verdrängt werden.
573
748
 
574
749
  Wenn ein Abschnitt mittig ausgerichtet ist, können
575
- Inhaltselemente zudem auch nach links oder rechts eingerückt
576
- werden. Dabei wird das Inhaltselement soweit verkleinert,
577
- dass der Text das Element umfließen kann.
750
+ Inhaltselemente zudem auch nach **links oder rechts
751
+ eingerückt** werden. Dabei wird das Inhaltselement soweit
752
+ verkleinert, dass der Text das Element umfließen kann.
578
753
  meta_data:
579
754
  menu_item: Titel und Optionen
580
755
  text: |
@@ -806,6 +981,7 @@ de:
806
981
  zur Verfügung, für die die Option **Volle Viewport-Höhe**
807
982
  aktiviert wurde.
808
983
  inline_editing:
984
+ add_caption: Beschriftung hinzufügen
809
985
  add_content_element: Neues Element hinzufügen
810
986
  cancel: Abbrechen
811
987
  drag_content_element: Ziehen, um Element zu verschieben
@@ -830,6 +1006,8 @@ de:
830
1006
  insert_link: Link einfügen
831
1007
  link_tooltip:
832
1008
  chapter_number: Kapitel %{number}
1009
+ deleted_chapter: Gelöschtes Kapitel
1010
+ deleted_file: Gelöschte Datei
833
1011
  opens_in_new_tab: Öffnet in neuem Tab
834
1012
  opens_in_same_tab: Öffnet außerhalb des Editors im selben Tab
835
1013
  visit_chapter: Gehe zu Kapitel
@@ -838,8 +1016,11 @@ de:
838
1016
  select_content_element: Element auswählen
839
1017
  select_section: Abschnitt auswählen
840
1018
  type_answer: Antworttext eingeben
1019
+ type_attribution: Namen eingeben
1020
+ type_description: Beschreibung eingeben
841
1021
  type_heading: Überschrift
842
1022
  type_question: Fragetext eingeben
1023
+ type_quote: Zitat eingeben
843
1024
  type_text: Text eingeben
844
1025
  type_title: Titel
845
1026
  url_placeholder: URL eingeben oder einfügen
@@ -5,6 +5,23 @@ en:
5
5
  defaultNavigation:
6
6
  widget_type_name: Default navigation
7
7
  editor:
8
+ file_types:
9
+ audio_files:
10
+ name:
11
+ one: Audio
12
+ other: Audios
13
+ image_files:
14
+ name:
15
+ one: Image
16
+ other: Images
17
+ other_files:
18
+ name:
19
+ one: Other
20
+ other: Other
21
+ video_files:
22
+ name:
23
+ one: Video
24
+ other: Videos
8
25
  widgets:
9
26
  attributes:
10
27
  defaultNavigation:
@@ -22,8 +39,12 @@ en:
22
39
  label: Hide unmute button
23
40
  frontend_v2:
24
41
  feature_name: Frontend v2
42
+ hls_instead_of_dash:
43
+ feature_name: Use HLS instead of DASH for videos
25
44
  iframe_embed_content_element:
26
45
  feature_name: iframe embed content element
46
+ scrolled_entry_fragment_caching:
47
+ feature_name: Pageflow Next Fragment Caching
27
48
  ui:
28
49
  configuration_editor:
29
50
  tabs:
@@ -61,8 +82,20 @@ en:
61
82
  caption:
62
83
  inline_help: The caption of the element will be displayed directly underneath the element.
63
84
  label: Caption
85
+ palette_color:
86
+ blank: "(Auto)"
64
87
  position:
65
- inline_help: 'This setting allows you to control the position of the element in relation to surrounding text blocks: the element can prominently stand alone ("Full Width"), it can be anchored within the text ("Inline") or it can be positioned adjacent to the text ("Sticky"). Sticky elements remain static in the middle of the viewport alongside the text until either the section is scrolled out of the viewport or until they get pushed upwards by the next sticky element of the section. On mobile devices sticky elements automatically get positioned inline. Sticky elements work particularly well on desktop devices in combination with long texts.'
88
+ inline_help: |-
89
+ This setting allows you to control the position of the
90
+ element in relation to surrounding text blocks: it can be
91
+ anchored within the text ("Inline") or positioned adjacent
92
+ to the text ("Sticky"). Sticky elements remain static in
93
+ the middle of the viewport alongside the text until either
94
+ the section is scrolled out of the viewport or they get
95
+ pushed upwards by the next sticky element of the
96
+ section. On mobile devices sticky elements automatically
97
+ get positioned inline. Sticky elements work particularly
98
+ well on desktop devices in combination with long texts.
66
99
  label: Position
67
100
  values:
68
101
  full: Full Width
@@ -77,6 +110,12 @@ en:
77
110
  variant:
78
111
  blank: "(Default)"
79
112
  label: Variant
113
+ width:
114
+ inline_help: |-
115
+ Drag the slider to change the width of the element. Wider
116
+ elements interrupt the text flow and stand prominently on
117
+ their own.
118
+ label: Width
80
119
  content_element_categories:
81
120
  basic:
82
121
  name: Basic
@@ -89,6 +128,58 @@ en:
89
128
  media:
90
129
  name: Media
91
130
  content_elements:
131
+ counter:
132
+ attributes:
133
+ countingSpeed:
134
+ inline_help: Determine the speed of the counting animation.
135
+ label: Counting animation
136
+ values:
137
+ fast: Fast
138
+ medium: Medium
139
+ none: "(None)"
140
+ slow: Slow
141
+ decimalPlaces:
142
+ inline_help: Determine how many decimal places shall be visible.
143
+ label: Decimal places
144
+ entranceAnimation:
145
+ inline_help: Determine how the number becomes visible once it reaches the center of the viewport
146
+ label: Entrance Animation
147
+ values:
148
+ fadeIn: Fade in
149
+ fadeInFromAbove: Fade in from above
150
+ fadeInFromBelow: Fade in from below
151
+ fadeInScaleDown: Fade in and scale down
152
+ fadeInScaleUp: Fade in and scale up
153
+ none: "(None)"
154
+ numberColor:
155
+ label: Color
156
+ startValue:
157
+ inline_help: The counting animation starts with this value
158
+ label: Start value
159
+ targetValue:
160
+ inline_help: Value to display. Final value for counting animation.
161
+ label: Target value
162
+ textSize:
163
+ inline_help: Determine the font size of the number.
164
+ label: Text size
165
+ values:
166
+ large: Large
167
+ medium: Medium
168
+ small: Small
169
+ verySmall: Very small
170
+ unit:
171
+ inline_help: Display a text before or after the number.
172
+ label: Unit
173
+ unitPlacement:
174
+ inline_help: Place the unit before or after the text.
175
+ label: Unit placement
176
+ values:
177
+ leading: Leading ($100)
178
+ trailing: Trailing (100%)
179
+ description: Animated metrics
180
+ name: Counter
181
+ tabs:
182
+ general: Counter
92
183
  dataWrapperChart:
93
184
  attributes:
94
185
  backgroundColor:
@@ -137,6 +228,8 @@ en:
137
228
  attributes:
138
229
  children:
139
230
  label: Text
231
+ color:
232
+ label: Color
140
233
  hyphens:
141
234
  inline_help: |
142
235
  With manual hyphenation, words are only ever separated
@@ -198,6 +291,11 @@ en:
198
291
  portrait: Portrait (9:16)
199
292
  square: Square (1:1)
200
293
  wide: Landscape (16:9)
294
+ requireConsent:
295
+ inline_help: |
296
+ Only load iframe after the visitor has given
297
+ consent to the data processing by the embedded page.
298
+ label: Display privacy opt-in
201
299
  scale:
202
300
  label: Scale
203
301
  values:
@@ -211,9 +309,29 @@ en:
211
309
  inline_help: Used by screen readers to describe the chart as a whole.
212
310
  label: Title
213
311
  description: Embed externally hosted websites
312
+ help_texts:
313
+ missingConsentVendor: |-
314
+ No privacy policy information available for the provider
315
+ of the given URL.
214
316
  name: iframe Embed
215
317
  tabs:
216
318
  general: iframe Embed
319
+ imageGallery:
320
+ attributes:
321
+ enableFullscreenOnDesktop:
322
+ inline_help: |-
323
+ Allow expanding the gallery to fullscreen mode on
324
+ desktop browsers. On mobile devices images are already
325
+ displayed as large as possible by default.
326
+ inline_help_disabled: Not available if position "Full width" has been selected.
327
+ label: Enable fullscreen on desktop
328
+ description: A series of images to flip through
329
+ items:
330
+ add: Add
331
+ label: Items
332
+ name: Image Gallery
333
+ tabs:
334
+ general: Image Gallery
217
335
  inlineAudio:
218
336
  attributes:
219
337
  atmoDuringPlayback:
@@ -268,6 +386,10 @@ en:
268
386
  general: Before/After
269
387
  inlineImage:
270
388
  attributes:
389
+ enableFullscreen:
390
+ inline_help: Enlarge image on click
391
+ inline_help_disabled: Not available if position "Full width" has been selected.
392
+ label: Enable Fullscreen
271
393
  id:
272
394
  label: Image
273
395
  portraitId:
@@ -299,6 +421,17 @@ en:
299
421
  autoplay: Autoplay
300
422
  loop: Loop
301
423
  manual: Manual
424
+ portraitId:
425
+ inline_help: |
426
+ Displayed when the browser viewport is taller than
427
+ wide, for example on phones or tablets in portrait
428
+ orientation. Can be used to supply an alternative to a
429
+ landscape video that makes better use of the available
430
+ space.
431
+ label: Video (Portrait)
432
+ portraitPosterId:
433
+ inline_help: Poster image displayed for the alternative portrait video.
434
+ label: Poster (Portrait)
302
435
  posterId:
303
436
  label: Poster
304
437
  rewindOnUnmute:
@@ -323,12 +456,30 @@ en:
323
456
  name: Question/Answer
324
457
  tabs:
325
458
  general: Question/Answer
459
+ quote:
460
+ attributes:
461
+ color:
462
+ label: Color
463
+ textSize:
464
+ label: Text size
465
+ values:
466
+ large: Large
467
+ medium: Medium
468
+ small: Small
469
+ verySmall: Very Small
470
+ description: Stand-alone quote with attribution
471
+ name: Quote
472
+ tabs:
473
+ general: Quote
326
474
  soundDisclaimer:
327
475
  description: Make sure users unmute before continuing
328
476
  name: Audio Notice
329
477
  tabs:
330
478
  general: Audio Notice
331
479
  textBlock:
480
+ attributes:
481
+ color:
482
+ label: Color
332
483
  description: Text with lists, block quotes and sub-headings
333
484
  help_texts:
334
485
  shortcuts: |
@@ -463,6 +614,9 @@ en:
463
614
  video: Video
464
615
  backdropVideo:
465
616
  label: Background-Video
617
+ backdropVideoMobile:
618
+ inline_help: Displayed when the browser viewport is taller than wide, for example on phones or tablets in portrait orientation. Can be used to supply an alternative to a landscape background video that would otherwise have important parts cropped off.
619
+ label: Background-Video (Portrait)
466
620
  dynamicShadowOpacity:
467
621
  inline_help: Intensity of the shadow which is faded in behind the text to ensure contrast when content is scrolled to intersect with the motif area. Note that this shadow is only visible if motif area and section content do not fit side by side. It's best to switch to phone preview when adjusting this value.
468
622
  inline_help_disabled: Activate "Expose motif area" above to use this setting.
@@ -530,7 +684,17 @@ en:
530
684
  no_options: No options available
531
685
  section_item:
532
686
  drag_hint: Drag to move section
687
+ duplicate: Duplicate
688
+ insert_section_above: Insert section above
689
+ insert_section_below: Insert section below
533
690
  save_error: There was an error while saving this section.
691
+ transitions:
692
+ beforeAfter: Static Backgrounds
693
+ fade: Cross fade (incl. content)
694
+ fadeBg: Cross fade
695
+ reveal: Reveal
696
+ scroll: Scroll
697
+ scrollOver: Scroll over
534
698
  select_link_destination:
535
699
  cancel: Cancel
536
700
  create: Create
@@ -539,6 +703,9 @@ en:
539
703
  open_in_new_tab: Open in new tab
540
704
  or: or
541
705
  select_chapter_or_section: Select chapter or section as destination
706
+ select_file: Provide file download
707
+ select_file_description: Let readers download a file when they click the link.
708
+ select_in_sidebar: Select file
542
709
  selectable_chapter_item:
543
710
  title: Select chapter
544
711
  selectable_section_item:
@@ -546,7 +713,39 @@ en:
546
713
  help_entries:
547
714
  content_elements:
548
715
  menu_item: Content Elements
549
- text: "# Content Elements\nIn each section, any number of content elements can be inserted and positioned against a background. The position of the content elements on wide screen aspect ratios is determined by the foreground **positioning of the section** (left, right, centre). In portrait mode on smartphones (upright) the content elements are always displayed one below the other for space reasons.\n\n## Insert elements\nTo add a new content element, click on the **plus button** above or below an existing one and then insert text blocks, media, embeds or external links. \n\nBy clicking on the selected content element, a dialog box for **positioning the content elements** and other options, such as activating **autoplay for audio and video** or entering a caption, appears on the right-hand editing bar. \n\nFor display on wide screen aspect ratios (desktop, notebook, tablet, smartphone landscape), individual content elements such as videos, audios, video embeds, 360° images can also be arranged separately from the positioning in the text flow as **sticky** or **full width**. \n\nIf a section is aligned centrally, content elements can also be **indented to the left or right**. In this case, the content element is reduced in size so that the text can be displayed next to, instead of above the content element."
716
+ text: |
717
+ # Content Elements
718
+
719
+ In each section, any number of content elements can be
720
+ inserted and positioned against a background. The position
721
+ of the content elements on wide screen aspect ratios is
722
+ determined by the foreground **positioning of the section**
723
+ (left, right, center). In portrait mode on smartphones
724
+ (upright) the content elements are always displayed one
725
+ below the other for space reasons.
726
+
727
+ To add a new content element, click on the **plus button**
728
+ above or below an existing one and then insert text blocks,
729
+ media, embeds or external links.
730
+
731
+ Click on a content element to select it. The sidebar then
732
+ displays options for **positioning the content element** and
733
+ other options, such as activating **autoplay for audio and
734
+ video**.
735
+
736
+ For display on wide screen aspect ratios (desktop, notebook,
737
+ tablet, smartphone landscape), individual content elements
738
+ such as videos, audios, video embeds, 360° images can also
739
+ be arranged separately from the text flow as **sticky**
740
+ elements. Sticky elements remain static in the middle of the
741
+ viewport alongside the text until either the section is
742
+ scrolled out of the viewport or they get pushed upwards by
743
+ the next sticky element of the section.
744
+
745
+ If a section is aligned centrally, content elements can also
746
+ be **indented to the left or right**. In this case, the
747
+ content element is reduced in size so that the text can be
748
+ displayed next to, instead of below the content element."
550
749
  meta_data:
551
750
  menu_item: Title and Options
552
751
  text: |
@@ -624,6 +823,7 @@ en:
624
823
  menu_item: Section Options
625
824
  text: "# Section Options\n\nA click in an empty area of a section will display a selection rectangle around the section. On the right side of the selection rectangle you will find a button with a pencil icon that allows you to edit the options of the section in the sidebar.\n\n## Layout\n\nThe **Foreground Positioning** option allows you to select how the contents of the section should be arranged horizontally. For example, if the background of the section is on the right side, text and content elements can be positioned on the left side and vice versa. For backgrounds in the total or a centred motif, the content elements can be positioned in the middle.\n\nBy selecting a **gradient function**, a sufficient contrast between text and background can be ensured. With the **shadow**, the background is darkened or lightened with a colour gradient. With the **Card** setting, the content elements are displayed on a surface with rounded corners.\n\n## Background\n\nEither an **image**, a **colour** or a **video loop** can be displayed in the background of the section. For background images and video, the important (to be emphasised, essential) part of the image can be marked. This motif area is then initially not covered by the scrolling foreground in both desktop and mobile device displays. Further information about the \"motif areas\" here.\n\nThe **Background image (portrait)** option can be used to optionally specify an alternative image to be used if the screen aspect ratio of a terminal device is higher than wide, for example on smartphones and tablets in portrait mode. The image can be configured as an alternative to the background image in landscape mode, from which otherwise important parts might be cut off.\n\n## Atmo Audio\n\nWith the **\"Atmo\"**, each section can play sound in the background, regardless of the content element. It can be determined whether a sound can only be heard in one section or continues over several sections without interruption. Simply select the same audio file for the following sections under **Options** as Atmo. In this way chapters can be acoustically separated from each other and coherent pages can be interwoven more strongly.\n\nWhen playing audio and video, you can also select whether the background sound should continue to play normally or more quietly during media playback, or whether it should fade out completely. The setting of the ambience sounds can be accessed on each page via the **Options** tab. If the atmosphere disturbs you while editing your entry in the editor, you can temporarily mute it with the key combination **Alt + a**. To reactivate the Atmo, simply press **Alt + a** again.\n\n\n## Transitions\n\nA **transition effect** can be selected between every two sections. \nClick in the background of a section to select it. On the right side \nof the selection rectangle, buttons with two interlocking arrows as \nsymbols appear at the borders of the neighbouring sections. \n\nClick on one of the buttons to select the transition effect for the section \nborder in the sidebar.\n\nThe **Fade** effect is only available between sections for which the \n**Full Viewport Height** option has been activated.\n"
626
825
  inline_editing:
826
+ add_caption: Add caption
627
827
  add_content_element: Add new element
628
828
  cancel: Cancel
629
829
  drag_content_element: Drag to move element
@@ -648,6 +848,8 @@ en:
648
848
  insert_link: Insert link
649
849
  link_tooltip:
650
850
  chapter_number: Chapter %{number}
851
+ deleted_chapter: Deleted chapter
852
+ deleted_file: Deleted file
651
853
  opens_in_new_tab: Opens in new tab
652
854
  opens_in_same_tab: Outside editor, will open in same tab
653
855
  visit_chapter: Go to chapter
@@ -656,8 +858,11 @@ en:
656
858
  select_content_element: Select element
657
859
  select_section: Select section
658
860
  type_answer: Type answer text
861
+ type_attribution: Type a name
862
+ type_description: Type description
659
863
  type_heading: Heading
660
864
  type_question: Type question text
865
+ type_quote: Type quote text
661
866
  type_text: Type some text
662
867
  type_title: Title
663
868
  url_placeholder: Type or paste URL