@kitconcept/volto-light-theme 8.0.0-alpha.2 → 8.0.0-alpha.20

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 (103) hide show
  1. package/.changelog.draft +3 -4
  2. package/CHANGELOG.md +226 -0
  3. package/locales/de/LC_MESSAGES/volto.po +30 -115
  4. package/locales/en/LC_MESSAGES/volto.po +30 -115
  5. package/locales/es/LC_MESSAGES/volto.po +31 -116
  6. package/locales/eu/LC_MESSAGES/volto.po +58 -124
  7. package/locales/pt_BR/LC_MESSAGES/volto.po +38 -123
  8. package/locales/volto.pot +31 -116
  9. package/package.json +18 -15
  10. package/src/__mocks__/semantic-ui-react.ts +31 -0
  11. package/src/components/Blocks/Block/Edit.jsx +14 -6
  12. package/src/components/Blocks/Block/EditBlockWrapper.jsx +9 -3
  13. package/src/components/Blocks/Block/ErrorBoundary.test.tsx +55 -0
  14. package/src/components/Blocks/Block/ErrorBoundary.tsx +92 -0
  15. package/src/components/Blocks/Block/ErrorBoundaryMessage.tsx +66 -0
  16. package/src/components/Blocks/EventCalendar/Search/components/EventTemplate.tsx +1 -1
  17. package/src/components/Blocks/Image/Edit.jsx +1 -0
  18. package/src/components/Blocks/Listing/DefaultTemplate.jsx +12 -6
  19. package/src/components/Blocks/Listing/GridTemplate.jsx +16 -7
  20. package/src/components/Blocks/Listing/ListingBody.jsx +4 -1
  21. package/src/components/Blocks/Listing/SummaryTemplate.jsx +16 -7
  22. package/src/components/Blocks/Teaser/DefaultBody.tsx +25 -5
  23. package/src/components/Blocks/schema.ts +69 -0
  24. package/src/components/Breadcrumbs/Breadcrumbs.test.tsx +128 -0
  25. package/src/components/Breadcrumbs/Breadcrumbs.tsx +117 -0
  26. package/src/components/Caption/Caption.test.tsx +31 -0
  27. package/src/components/Caption/{Caption.jsx → Caption.tsx} +14 -21
  28. package/src/components/Footer/ColumnLinks.tsx +2 -2
  29. package/src/components/Footer/slots/Colophon.tsx +13 -1
  30. package/src/components/Footer/slots/CoreFooter.tsx +4 -2
  31. package/src/components/Header/Header.tsx +3 -3
  32. package/src/components/LanguageSelector/LanguageSelector.tsx +91 -0
  33. package/src/components/MobileNavigation/MobileNavigation.jsx +11 -9
  34. package/src/components/Navigation/Navigation.test.tsx +176 -0
  35. package/src/components/Navigation/{Navigation.jsx → Navigation.tsx} +77 -37
  36. package/src/components/StickyMenu/MobileCarouselArrowButton.tsx +81 -0
  37. package/src/components/StickyMenu/MobileStickyMenu.tsx +76 -0
  38. package/src/components/Summary/DefaultSummary.tsx +10 -3
  39. package/src/components/Summary/EventSummary.tsx +10 -3
  40. package/src/components/Summary/FileSummary.tsx +10 -3
  41. package/src/components/Summary/NewsItemSummary.tsx +10 -3
  42. package/src/components/Summary/PersonSummary.tsx +10 -3
  43. package/src/components/Summary/Summary.stories.tsx +46 -30
  44. package/src/components/Tags/Tags.test.tsx +71 -0
  45. package/src/components/Tags/{Tags.jsx → Tags.tsx} +9 -25
  46. package/src/components/Theme/EventView.jsx +4 -4
  47. package/src/components/Theme/NewsItemView.jsx +4 -4
  48. package/src/components/Theme/RenderBlocks.jsx +45 -37
  49. package/src/components/Theme/RenderBlocksV2.jsx +51 -20
  50. package/src/components/Widgets/ColorSwatch.stories.tsx +197 -0
  51. package/src/components/Widgets/ColorSwatch.test.tsx +188 -0
  52. package/src/components/Widgets/ColorSwatch.tsx +77 -39
  53. package/src/components/Widgets/SoftTextWidget.tsx +129 -0
  54. package/src/components/Widgets/SoftTextareaWidget.tsx +118 -0
  55. package/src/components/Widgets/ThemeColorSwatch.tsx +5 -9
  56. package/src/config/blocks.tsx +21 -29
  57. package/src/config/slots.ts +7 -0
  58. package/src/config/widgets.ts +5 -9
  59. package/src/customizations/volto/components/manage/DragDropList/DragDropList.jsx +263 -0
  60. package/src/customizations/volto/components/theme/LanguageSelector/LanguageSelector.tsx +10 -0
  61. package/src/helpers/styleDefinitions.test.tsx +30 -0
  62. package/src/helpers/styleDefinitions.ts +49 -0
  63. package/src/icons/block_icn_accordion.svg +0 -0
  64. package/src/icons/block_icn_grid.svg +0 -0
  65. package/src/internalChecks.test.ts +94 -0
  66. package/src/primitives/Card/Card.stories.tsx +4 -1
  67. package/src/primitives/Card/Card.test.tsx +11 -33
  68. package/src/primitives/Card/Card.tsx +33 -43
  69. package/src/primitives/IconLinkList.tsx +53 -52
  70. package/src/theme/_bgcolor-blocks-layout.scss +43 -45
  71. package/src/theme/_content.scss +12 -13
  72. package/src/theme/_export_import.scss +94 -0
  73. package/src/theme/_footer.scss +64 -19
  74. package/src/theme/_header.scss +21 -4
  75. package/src/theme/_insets.scss +1 -1
  76. package/src/theme/_layout.scss +34 -15
  77. package/src/theme/_mobile-sticky-menu.scss +92 -0
  78. package/src/theme/_search-page.scss +249 -0
  79. package/src/theme/_typo-custom.scss +16 -5
  80. package/src/theme/_variables.scss +19 -4
  81. package/src/theme/_widgets.scss +15 -27
  82. package/src/theme/blocks/_accordion.scss +11 -4
  83. package/src/theme/blocks/_grid.scss +9 -77
  84. package/src/theme/blocks/_listing.scss +60 -126
  85. package/src/theme/blocks/_search.scss +3 -4
  86. package/src/theme/blocks/_table.scss +1 -0
  87. package/src/theme/blocks/_teaser.scss +7 -117
  88. package/src/theme/blocks/error-boundary.scss +11 -0
  89. package/src/theme/card.scss +107 -70
  90. package/src/theme/main.scss +5 -0
  91. package/src/theme/notfound.scss +27 -0
  92. package/src/theme/person.scss +28 -12
  93. package/src/theme/sticky-menu.scss +7 -5
  94. package/src/types.d.ts +1 -0
  95. package/vitest.config.mjs +4 -0
  96. package/razzle.extend.js +0 -38
  97. package/src/components/Blocks/schema.js +0 -44
  98. package/src/components/Breadcrumbs/Breadcrumbs.jsx +0 -118
  99. package/src/components/Widgets/AlignWidget.tsx +0 -84
  100. package/src/components/Widgets/BlockAlignment.tsx +0 -88
  101. package/src/components/Widgets/BlockWidth.tsx +0 -101
  102. package/src/components/Widgets/Buttons.tsx +0 -144
  103. package/src/components/Widgets/Size.tsx +0 -78
package/.changelog.draft CHANGED
@@ -1,8 +1,7 @@
1
- ## 8.0.0-alpha.2 (2025-10-29)
1
+ ## 8.0.0-alpha.20 (2026-04-21)
2
2
 
3
- ### Feature
3
+ ### Bugfix
4
4
 
5
- - Refactor `volto-button-block`, transfer all the customizations to the block. @sneridagh [#697](https://github.com/kitconcept/volto-light-theme/pull/697)
6
- - Refactor `volto-separator-block`, transfer all the customizations to the block. @sneridagh [#698](https://github.com/kitconcept/volto-light-theme/pull/698)
5
+ - Allow address in Footer to take all available space based on number of links columns. @danalvrz
7
6
 
8
7
 
package/CHANGELOG.md CHANGED
@@ -8,6 +8,232 @@
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 8.0.0-alpha.20 (2026-04-21)
12
+
13
+ ### Bugfix
14
+
15
+ - Allow address in Footer to take all available space based on number of links columns. @danalvrz
16
+
17
+ ## 8.0.0-alpha.19 (2026-04-17)
18
+
19
+ ### Breaking
20
+
21
+ - Improve Card component link handling by using a CSS stretched-link pattern & other minor style fixes for consistency. Breaking: custom `Summary` components must now accept and use the `LinkToItem` prop; category labels changed from heading tags to `<ul>` elements. See the upgrade guide for migration steps. @danalvrz
22
+
23
+ ### Bugfix
24
+
25
+ - Fixed the font-color in the table block with h2 or h3 font-size. @TimoBroeskamp [#820](https://github.com/kitconcept/volto-light-theme/pull/820)
26
+ - + display footer links with an underline, remove gap between seperate lines in footer colophon text and fixed richtext-editor combinations to work together. @TimoBroeskamp
27
+ - Fix navigation text color not loading on hard reload. @iFlameing
28
+ - Fix spacings for navigation items when using the Intranet header. @danlavrz
29
+ - Fix styles for text in colophon. @danalvrz
30
+
31
+ ## 8.0.0-alpha.18 (2026-03-14)
32
+
33
+ ### Feature
34
+
35
+ - Improve layout for full-width blocks when in Edit mode. @danalvrz
36
+
37
+ ### Bugfix
38
+
39
+ - Fix font size for control panel view headers. @danalvrz [#fixControlPanelFontSize](https://github.com/kitconcept/volto-light-theme/pull/fixControlPanelFontSize)
40
+ - Fix css of External link icon indicator for teaser and grid-teaser @iRohitSingh [#797](https://github.com/kitconcept/volto-light-theme/pull/797)
41
+ - Fix undefined error when pressing enter in footer site colophon input. @iFlameing
42
+ - Improve styles for Export Import control panel & several color fixes. @danalvrz
43
+
44
+ ## 8.0.0-alpha.17 (2026-03-03)
45
+
46
+ ### Feature
47
+
48
+ - Improve styles for search results page. @danalvrz
49
+ - Updated several add-ons, for more information:
50
+
51
+ https://github.com/kitconcept/volto-calendar-block/releases/tag/1.0.0-alpha.7
52
+ https://github.com/kitconcept/volto-button-block/releases/tag/5.0.0-alpha.1
53
+ https://github.com/kitconcept/volto-logos-block/releases/tag/4.0.0-alpha.1
54
+ https://github.com/kitconcept/volto-iframe-block/releases/tag/2.4.0
55
+ https://github.com/kitconcept/volto-introduction-block/releases/tag/1.4.0
56
+ https://github.com/kitconcept/volto-carousel-block/releases/tag/3.0.0-alpha.1
57
+ https://github.com/kitconcept/volto-slider-block/releases/tag/7.0.0-alpha.1
58
+
59
+ ### Bugfix
60
+
61
+ - Fix color in language selector, and remove extra margin between Teaser and Button blocks. @danalvrz
62
+ - Fix hydration errors in mobile navigation. @Tishasoumya-02
63
+ - Fix image size grid-block in editmode. @TimoBroeskamp
64
+ - Fix mobile sticky menu not showing from 768 to 620px. @iFlameing
65
+
66
+ ### Internal
67
+
68
+ - Add missing pt_br translations. @humanaice [#804](https://github.com/kitconcept/volto-light-theme/pull/804)
69
+ - Update translation. @iFlameing
70
+
71
+ ## 8.0.0-alpha.16 (2026-02-16)
72
+
73
+ ### Feature
74
+
75
+ - Show only two letters of the native language name @iRohitSingh [#785](https://github.com/kitconcept/volto-light-theme/pull/785), [#795](https://github.com/kitconcept/volto-light-theme/pull/795)
76
+
77
+ ### Bugfix
78
+
79
+ - See https://github.com/plone/volto/releases/tag/19.0.0-alpha.24
80
+ https://github.com/plone/volto/releases/tag/19.0.0-alpha.25 @sneridagh [#volto19a24](https://github.com/kitconcept/volto-light-theme/pull/volto19a24)
81
+ - Fix social icons color in post-footer. @danalvrz
82
+ - Move the head title after the date in NewsView and EventView, making it consistent with the listing view. @iFlameing
83
+
84
+ ### Internal
85
+
86
+ - Remove space after banner block when bg color is not white @Tishasoumya-02 [#761](https://github.com/kitconcept/volto-light-theme/pull/761)
87
+
88
+ ## 8.0.0-alpha.15 (2026-02-06)
89
+
90
+ ### Bugfix
91
+
92
+ - Make button anchor (a) (from a button if it's a navigation element for a11y purposes) has the same styling as a button. @sneridagh [#786](https://github.com/kitconcept/volto-light-theme/pull/786)
93
+
94
+ ## 8.0.0-alpha.14 (2026-02-05)
95
+
96
+ ### Feature
97
+
98
+ - Create Introduction block on pressing Enter instead of default text block @iRohitSingh [#780](https://github.com/kitconcept/volto-light-theme/pull/780)
99
+ - Add sticky menu in mobile view. @iFlameing
100
+
101
+ ### Bugfix
102
+
103
+ - Fix mail icon appearing near share icon in engagement-section @Tishasoumya-02 [#777](https://github.com/kitconcept/volto-light-theme/pull/777)
104
+ - Fix actions menu going undefined on intranet header @Tishasoumya-02 [#778](https://github.com/kitconcept/volto-light-theme/pull/778)
105
+ - Fixed defaults in `Button` widgets. @iFlameing
106
+ - Update `volto-calendar-block` to 1.0.6. @sneridagh
107
+
108
+ ## 8.0.0-alpha.13 (2026-01-26)
109
+
110
+ ### Feature
111
+
112
+ - Remove the black overlay when no caption for images in grid @Tishasoumya-02 [#767](https://github.com/kitconcept/volto-light-theme/pull/767)
113
+ - Add mail-icon next to mailto links @Tishasoumya-02 [#774](https://github.com/kitconcept/volto-light-theme/pull/774)
114
+ - Add slot for listing disclaimers in ListingBody component. @danalvrz
115
+ - Add soft_max_length warnings for text/textarea widget @Tishasoumya-02
116
+ - Hide profile links based on intranet controlpanel settings. @iFlameing
117
+
118
+ ### Bugfix
119
+
120
+ - Fix header_actions results into undefined when deleting the target @Tishasoumya-02 [#775](https://github.com/kitconcept/volto-light-theme/pull/775)
121
+ - Change footer colophon widget from Input to Richtext. @iFlameing
122
+ - Fixed accordion does not work with the "Order" tab. Use `@eea/volto-accordion-block` 12.0.0. @sneridagh
123
+ - Fixed issue with navigation items custom color not changing without the fat menu enabled. @TimoBroeskamp
124
+
125
+ ### Internal
126
+
127
+ - New visual regression tests. @sneridagh
128
+
129
+ ## 8.0.0-alpha.12 (2026-01-15)
130
+
131
+ ### Bugfix
132
+
133
+ - - fix bug where markdown inline links in descriptions are rendered as a separate paragraph [#751](https://github.com/kitconcept/volto-light-theme/pull/751)
134
+ - Use the CSS prop --breadcrumbs-foregound for breadcrumbs links as default, with --link-foreground-color as fallback. @danalvrz
135
+
136
+ ## 8.0.0-alpha.11 (2026-01-14)
137
+
138
+ ### Internal
139
+
140
+ - Sync RAC VLT version to use the Volto 19a21 one (1.14.1) @sneridagh
141
+
142
+ ## 8.0.0-alpha.10 (2026-01-14)
143
+
144
+ ### Bugfix
145
+
146
+ - Fix sticky menu cut off at the bottom on smaller screens @iRohitSingh
147
+ - Fixed double navigation in cards that contains inner links in its body. @sneridagh
148
+ - Fixed rearrangement of files in drag-and-drop of folderish content. @Tishasoumya-02
149
+
150
+ ### Internal
151
+
152
+ - Add Cypress tests for Enter key behavior on focused blocks @iRohitSingh
153
+
154
+ ## 8.0.0-alpha.9 (2025-12-08)
155
+
156
+ ### Feature
157
+
158
+ - Add volto-calendar-block @iRohitSingh
159
+ - Added cross language support for blocks chooser search @Tishasoumya-02 [#7657](https://github.com/plone/volto/issues/7657)
160
+ Added support for selecting Path and Depth in the Listing Block’s Location criteria using the ObjectBrowserWidget and NumberWidget. @iFlameing @giuliaghisini [#7661](https://github.com/plone/volto/issues/7661)
161
+ Added feature of drag and drop files in folder contents. @Tishasoumya-02
162
+ (Update to Volto 19a9) @sneridagh
163
+
164
+ ### Bugfix
165
+
166
+ - Fixed highlight block ENTER, create a new block consistently. Update highlight block to 4.5.1. @sneridagh
167
+ - Fixed introduction block error on pressing ENTER. Update add-on to 1.2.0. @sneridagh
168
+
169
+ ## 8.0.0-alpha.8 (2025-12-01)
170
+
171
+ ### Bugfix
172
+
173
+ - Improve block model 3 support across views. Fixed nasty BDandD console error. @sneridagh [#740](https://github.com/kitconcept/volto-light-theme/pull/740)
174
+ - Fixed problem with the description not showing in rendering if the description was undefined. @sneridagh
175
+ - Hide complementary logo in mobile devices @Tishasoumya-02
176
+
177
+ ## 8.0.0-alpha.7 (2025-11-24)
178
+
179
+ ### Bugfix
180
+
181
+ - Fix css of unauthorized Page @iRohitSingh [#unauthorizedpageCss](https://github.com/kitconcept/volto-light-theme/pull/unauthorizedpageCss)
182
+ - Fixed Accordion arrow/buttons no longer shrink when the title text becomes too long. @jnptk
183
+
184
+ ### Internal
185
+
186
+ - Refactoring to TS some components. @sneridagh [#731](https://github.com/kitconcept/volto-light-theme/pull/731)
187
+ - Update to latest RAC to match the @plone/components one. @sneridagh
188
+ - Use forked Razzle. Update to use Volto 19a14. @sneridagh
189
+
190
+ ## 8.0.0-alpha.6 (2025-11-13)
191
+
192
+ ### Bugfix
193
+
194
+ - Missing @kitconcept/volto-bm3-compat as dep. @sneridagh [#726](https://github.com/kitconcept/volto-light-theme/pull/726)
195
+
196
+ ## 8.0.0-alpha.5 (2025-11-11)
197
+
198
+ ### Feature
199
+
200
+ - Registry color definitions support for ColorSwatch widget. @sneridagh [#723](https://github.com/kitconcept/volto-light-theme/pull/723)
201
+
202
+ ### Bugfix
203
+
204
+ - Fixes text in the sticky menu if the text was long enough to wrap. @jnptk [#691](https://github.com/kitconcept/volto-light-theme/pull/691)
205
+ - Identify intranet header with a className in `header header-intranet` div. @sneridagh
206
+
207
+ ### Internal
208
+
209
+ - Normalize all remaining add-ons to be "alpha" versions exclusively for vlt8. @sneridagh
210
+
211
+ ## 8.0.0-alpha.4 (2025-11-05)
212
+
213
+ ### Bugfix
214
+
215
+ - Fixed slider config, in case slider is not present. @sneridagh
216
+
217
+ ### Internal
218
+
219
+ - Updated volto-dsgvo-banner baseline to latest (3.x series). @sneridagh
220
+
221
+ ## 8.0.0-alpha.3 (2025-11-04)
222
+
223
+ ### Feature
224
+
225
+ - Recoverable Block Error Boundaries. @sneridagh [#708](https://github.com/kitconcept/volto-light-theme/pull/708)
226
+ - Update `Buttons` widget to the one proposed for the Volto PR: #7555 @sneridagh
227
+
228
+ ### Bugfix
229
+
230
+ - [#705](https://github.com/kitconcept/volto-light-theme/pull/705)
231
+ - Fix Teaser Blocks for Person type email spacing in 4 columns gridBlock @Tishasoumya-02
232
+
233
+ ### Internal
234
+
235
+ - Add css for NotFound Page @Tishasoumya-02
236
+
11
237
  ## 8.0.0-alpha.2 (2025-10-29)
12
238
 
13
239
  ### Feature
@@ -57,12 +57,6 @@ msgstr ""
57
57
  msgid "Advanced facets are initially hidden and displayed on demand"
58
58
  msgstr ""
59
59
 
60
- #. Default: "Alignment"
61
- #: components/Blocks/Button/schema
62
- #: components/Blocks/Separator/schema
63
- msgid "Alignment"
64
- msgstr "Ausrichtung"
65
-
66
60
  #. Default: "Alt text"
67
61
  #: components/Widgets/schema/footerLogosSchema
68
62
  #: components/Widgets/schema/iconLinkListSchema
@@ -90,9 +84,7 @@ msgid "Base search query"
90
84
  msgstr ""
91
85
 
92
86
  #. Default: "Block Width"
93
- #: components/Blocks/Button/schema
94
87
  #: components/Blocks/Image/schema
95
- #: components/Blocks/Separator/schema
96
88
  msgid "Block Width"
97
89
  msgstr "Block Breite"
98
90
 
@@ -101,21 +93,11 @@ msgstr "Block Breite"
101
93
  msgid "Breadcrumbs"
102
94
  msgstr "Brotkrumen"
103
95
 
104
- #. Default: "Button text"
105
- #: components/Blocks/Slider/schema
106
- msgid "Button text"
107
- msgstr "Button Text"
108
-
109
96
  #. Default: "Cancel search"
110
97
  #: components/Blocks/EventCalendar/Search/components/SearchInput
111
98
  msgid "Cancel search"
112
99
  msgstr ""
113
100
 
114
- #. Default: "Center"
115
- #: components/Widgets/BlockAlignment
116
- msgid "Center"
117
- msgstr "Mittig"
118
-
119
101
  #. Default: "Close menu"
120
102
  #: components/MobileNavigation/MobileNavigation
121
103
  #: components/Navigation/Navigation
@@ -138,12 +120,6 @@ msgstr "Das Farbkontrastverhältnis {contrastRatio}:1 ist möglicherweise nicht
138
120
  msgid "Contact"
139
121
  msgstr "Kontakt"
140
122
 
141
- #. Default: "Continue reading"
142
- #: components/Blocks/Slider/DefaultBody
143
- #: components/Blocks/Slider/SliderVariants
144
- msgid "Continue reading"
145
- msgstr "Weiterlesen"
146
-
147
123
  #. Default: "Controls"
148
124
  #: components/Blocks/EventCalendar/Search/schema
149
125
  msgid "Controls"
@@ -154,11 +130,6 @@ msgstr ""
154
130
  msgid "Copyright"
155
131
  msgstr "Urheberrechte"
156
132
 
157
- #. Default: "Default"
158
- #: components/Widgets/BlockWidth
159
- msgid "Default"
160
- msgstr ""
161
-
162
133
  #. Default: "Descending"
163
134
  #: components/Blocks/EventCalendar/Search/components/SortOn
164
135
  msgid "Descending"
@@ -217,21 +188,11 @@ msgstr ""
217
188
  msgid "Field"
218
189
  msgstr ""
219
190
 
220
- #. Default: "Align"
221
- #: components/Blocks/Slider/schema
222
- msgid "Flag align"
223
- msgstr "Ausrichtung"
224
-
225
191
  #. Default: "Follow us:"
226
192
  #: components/Footer/slots/FollowUsLogoAndLinks
227
193
  msgid "Follow us:"
228
194
  msgstr ""
229
195
 
230
- #. Default: "Full"
231
- #: components/Widgets/BlockWidth
232
- msgid "Full"
233
- msgstr "Volle Breite"
234
-
235
196
  #. Default: "GNU GPL v2 license"
236
197
  #: components/Footer/slots/Copyright
237
198
  msgid "GNU GPL license"
@@ -247,11 +208,6 @@ msgstr "Überschrift"
247
208
  msgid "Hidden facets will still filter the results if proper parameters are passed in URLs"
248
209
  msgstr ""
249
210
 
250
- #. Default: "Hide Button"
251
- #: components/Blocks/Slider/schema
252
- msgid "Hide Button"
253
- msgstr "keinen Button anzeigen"
254
-
255
211
  #. Default: "Hide facet?"
256
212
  #: components/Blocks/EventCalendar/Search/schema
257
213
  msgid "Hide facet?"
@@ -285,11 +241,6 @@ msgstr "Bild"
285
241
  msgid "Invalid Block"
286
242
  msgstr ""
287
243
 
288
- #. Default: "Invalid Slider source"
289
- #: components/Blocks/Slider/Data
290
- msgid "Invalid Slider source"
291
- msgstr ""
292
-
293
244
  #. Default: "Item"
294
245
  #: components/Widgets/schema/iconLinkListSchema
295
246
  msgid "Item"
@@ -300,21 +251,6 @@ msgstr ""
300
251
  msgid "Label"
301
252
  msgstr ""
302
253
 
303
- #. Default: "Large"
304
- #: components/Widgets/Size
305
- msgid "Large"
306
- msgstr ""
307
-
308
- #. Default: "Layout"
309
- #: components/Widgets/BlockWidth
310
- msgid "Layout"
311
- msgstr ""
312
-
313
- #. Default: "Left"
314
- #: components/Widgets/BlockAlignment
315
- msgid "Left"
316
- msgstr "Links"
317
-
318
254
  #. Default: "Link"
319
255
  #: components/Widgets/schema/footerLinksSchema
320
256
  msgid "Link"
@@ -360,11 +296,6 @@ msgstr "Logo Bild"
360
296
  msgid "Logo of"
361
297
  msgstr "Logo von"
362
298
 
363
- #. Default: "Medium"
364
- #: components/Widgets/Size
365
- msgid "Medium"
366
- msgstr ""
367
-
368
299
  #. Default: "Move down"
369
300
  #: components/Blocks/Block/Edit
370
301
  msgid "Move down"
@@ -380,11 +311,6 @@ msgstr ""
380
311
  msgid "Multiple choices?"
381
312
  msgstr ""
382
313
 
383
- #. Default: "Narrow"
384
- #: components/Widgets/BlockWidth
385
- msgid "Narrow"
386
- msgstr ""
387
-
388
314
  #. Default: "Next Page"
389
315
  #: components/Blocks/Listing/ListingBody
390
316
  msgid "Next Page"
@@ -446,9 +372,6 @@ msgid "Phone"
446
372
  msgstr "Telefon"
447
373
 
448
374
  #. Default: "Please choose an existing content as source for this element"
449
- #: components/Blocks/Slider/DefaultBody
450
- #: components/Blocks/Slider/SliderVariants
451
- #: components/Blocks/Slider/View
452
375
  #: components/Blocks/Teaser/Body
453
376
  msgid "Please choose an existing content as source for this element"
454
377
  msgstr "Bitte wählen sie einen bestehenden Inhalt als Quelle für dieses Element"
@@ -473,11 +396,6 @@ msgstr "Presse"
473
396
  msgid "Previous Page"
474
397
  msgstr "Vorherige Seite"
475
398
 
476
- #. Default: "Refresh source content"
477
- #: components/Blocks/Slider/Data
478
- msgid "Refresh source content"
479
- msgstr ""
480
-
481
399
  #. Default: "Register"
482
400
  #: components/Anontools/Anontools
483
401
  msgid "Register"
@@ -489,21 +407,11 @@ msgstr "Registrieren"
489
407
  msgid "Remove item"
490
408
  msgstr ""
491
409
 
492
- #. Default: "Reset the block"
493
- #: components/Blocks/Slider/Data
494
- msgid "Reset the block"
495
- msgstr ""
496
-
497
410
  #. Default: "Result"
498
411
  #: components/Blocks/Listing/ListingBody
499
412
  msgid "Result"
500
413
  msgstr "Ergebnis"
501
414
 
502
- #. Default: "Right"
503
- #: components/Widgets/BlockAlignment
504
- msgid "Right"
505
- msgstr "Rechts"
506
-
507
415
  #. Default: "Room"
508
416
  #: components/Summary/PersonSummary
509
417
  msgid "Room"
@@ -561,11 +469,6 @@ msgstr "Gesucht für"
561
469
  msgid "Section title"
562
470
  msgstr ""
563
471
 
564
- #. Default: "Short line"
565
- #: components/Blocks/Separator/schema
566
- msgid "Short line"
567
- msgstr ""
568
-
569
472
  #. Default: "Show item"
570
473
  #: components/Widgets/BlocksObject
571
474
  #: components/Widgets/ObjectList
@@ -597,16 +500,16 @@ msgstr ""
597
500
  msgid "Simple"
598
501
  msgstr "Einfach"
599
502
 
503
+ #. Default: "Site Setup"
504
+ #: components/Breadcrumbs/Breadcrumbs
505
+ msgid "Site Setup"
506
+ msgstr ""
507
+
600
508
  #. Default: "Sitemap"
601
509
  #: index
602
510
  msgid "Sitemap"
603
511
  msgstr "Übersicht"
604
512
 
605
- #. Default: "Small"
606
- #: components/Widgets/Size
607
- msgid "Small"
608
- msgstr ""
609
-
610
513
  #. Default: "Sort on"
611
514
  #: components/Blocks/EventCalendar/Search/components/SortOn
612
515
  msgid "Sort on"
@@ -627,12 +530,6 @@ msgstr ""
627
530
  msgid "Sorting"
628
531
  msgstr "Sortierung"
629
532
 
630
- #. Default: "Source"
631
- #: components/Blocks/Slider/DefaultBody
632
- #: components/Blocks/Slider/SliderVariants
633
- msgid "Source"
634
- msgstr "Quelle"
635
-
636
533
  #. Default: "Sponsored by:"
637
534
  #: components/Footer/slots/FollowUsLogoAndLinks
638
535
  msgid "Sponsored by:"
@@ -692,12 +589,36 @@ msgstr "Webseite"
692
589
  msgid "availableViews"
693
590
  msgstr ""
694
591
 
592
+ #. Default: "The {type} block with the id {block} has encountered an error.{lineBreak}You can try to undo your changes (via the undo toolbar or pressing {shortcut}), or try to delete the block and recreate it again."
593
+ #: components/Blocks/Block/ErrorBoundaryMessage
594
+ msgid "blockErrorBoundaryDescription"
595
+ msgstr ""
596
+
597
+ #. Default: "Block error:"
598
+ #: components/Blocks/Block/ErrorBoundaryMessage
599
+ msgid "blockErrorBoundaryTitle"
600
+ msgstr ""
601
+
602
+ #. Default: "The {type} block with the id {block} errored and cannot be displayed.{lineBreak}Please contact the site administrator for further assistance."
603
+ #: components/Blocks/Block/ErrorBoundaryMessage
604
+ msgid "blockErrorBoundaryViewDescription"
605
+ msgstr ""
606
+
695
607
  #. Default: "Delete"
696
608
  #: components/Blocks/Block/Edit
697
- #: components/Blocks/Block/EditBlockWrapper
698
609
  msgid "delete"
699
610
  msgstr ""
700
611
 
612
+ #. Default: "delete {type} block"
613
+ #: components/Blocks/Block/EditBlockWrapper
614
+ msgid "delete_block"
615
+ msgstr ""
616
+
617
+ #. Default: "drag {type} block"
618
+ #: components/Blocks/Block/EditBlockWrapper
619
+ msgid "drag_block"
620
+ msgstr ""
621
+
701
622
  #. Default: "Clear image"
702
623
  #: components/Blocks/Image/ImageSidebar
703
624
  msgid "image_block_clear"
@@ -713,12 +634,6 @@ msgstr "Bild Vorschau"
713
634
  msgid "loading"
714
635
  msgstr "laden"
715
636
 
716
- #. Default: "More info"
717
- #: components/Blocks/Slider/DefaultBody
718
- #: components/Blocks/Slider/SliderVariants
719
- msgid "moreInfo"
720
- msgstr "Mehr Informationen"
721
-
722
637
  #. Default: "of"
723
638
  #: components/Blocks/Listing/ListingBody
724
639
  msgid "of"