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

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 (101) hide show
  1. package/.changelog.draft +3 -4
  2. package/CHANGELOG.md +232 -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 +7 -4
  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/internalChecks.test.ts +94 -0
  64. package/src/primitives/Card/Card.stories.tsx +4 -1
  65. package/src/primitives/Card/Card.test.tsx +11 -33
  66. package/src/primitives/Card/Card.tsx +33 -43
  67. package/src/primitives/IconLinkList.tsx +53 -52
  68. package/src/theme/_bgcolor-blocks-layout.scss +43 -45
  69. package/src/theme/_content.scss +12 -13
  70. package/src/theme/_export_import.scss +94 -0
  71. package/src/theme/_footer.scss +64 -19
  72. package/src/theme/_header.scss +21 -4
  73. package/src/theme/_insets.scss +1 -1
  74. package/src/theme/_layout.scss +34 -15
  75. package/src/theme/_mobile-sticky-menu.scss +92 -0
  76. package/src/theme/_search-page.scss +249 -0
  77. package/src/theme/_typo-custom.scss +16 -5
  78. package/src/theme/_variables.scss +19 -4
  79. package/src/theme/_widgets.scss +15 -27
  80. package/src/theme/blocks/_accordion.scss +11 -4
  81. package/src/theme/blocks/_grid.scss +9 -77
  82. package/src/theme/blocks/_listing.scss +60 -126
  83. package/src/theme/blocks/_search.scss +3 -4
  84. package/src/theme/blocks/_table.scss +1 -0
  85. package/src/theme/blocks/_teaser.scss +7 -117
  86. package/src/theme/blocks/error-boundary.scss +11 -0
  87. package/src/theme/card.scss +107 -70
  88. package/src/theme/main.scss +5 -0
  89. package/src/theme/notfound.scss +27 -0
  90. package/src/theme/person.scss +28 -12
  91. package/src/theme/sticky-menu.scss +7 -5
  92. package/src/types.d.ts +1 -0
  93. package/vitest.config.mjs +4 -0
  94. package/razzle.extend.js +0 -38
  95. package/src/components/Blocks/schema.js +0 -44
  96. package/src/components/Breadcrumbs/Breadcrumbs.jsx +0 -118
  97. package/src/components/Widgets/AlignWidget.tsx +0 -84
  98. package/src/components/Widgets/BlockAlignment.tsx +0 -88
  99. package/src/components/Widgets/BlockWidth.tsx +0 -101
  100. package/src/components/Widgets/Buttons.tsx +0 -144
  101. 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.21 (2026-04-22)
2
2
 
3
- ### Feature
3
+ ### Internal
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
+ - Re-release of 8a20. @sneridagh
7
6
 
8
7
 
package/CHANGELOG.md CHANGED
@@ -8,6 +8,238 @@
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 8.0.0-alpha.21 (2026-04-22)
12
+
13
+ ### Internal
14
+
15
+ - Re-release of 8a20. @sneridagh
16
+
17
+ ## 8.0.0-alpha.20 (2026-04-21)
18
+
19
+ ### Bugfix
20
+
21
+ - Allow address in Footer to take all available space based on number of links columns. @danalvrz
22
+
23
+ ## 8.0.0-alpha.19 (2026-04-17)
24
+
25
+ ### Breaking
26
+
27
+ - 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
28
+
29
+ ### Bugfix
30
+
31
+ - 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)
32
+ - + display footer links with an underline, remove gap between seperate lines in footer colophon text and fixed richtext-editor combinations to work together. @TimoBroeskamp
33
+ - Fix navigation text color not loading on hard reload. @iFlameing
34
+ - Fix spacings for navigation items when using the Intranet header. @danlavrz
35
+ - Fix styles for text in colophon. @danalvrz
36
+
37
+ ## 8.0.0-alpha.18 (2026-03-14)
38
+
39
+ ### Feature
40
+
41
+ - Improve layout for full-width blocks when in Edit mode. @danalvrz
42
+
43
+ ### Bugfix
44
+
45
+ - Fix font size for control panel view headers. @danalvrz [#fixControlPanelFontSize](https://github.com/kitconcept/volto-light-theme/pull/fixControlPanelFontSize)
46
+ - Fix css of External link icon indicator for teaser and grid-teaser @iRohitSingh [#797](https://github.com/kitconcept/volto-light-theme/pull/797)
47
+ - Fix undefined error when pressing enter in footer site colophon input. @iFlameing
48
+ - Improve styles for Export Import control panel & several color fixes. @danalvrz
49
+
50
+ ## 8.0.0-alpha.17 (2026-03-03)
51
+
52
+ ### Feature
53
+
54
+ - Improve styles for search results page. @danalvrz
55
+ - Updated several add-ons, for more information:
56
+
57
+ https://github.com/kitconcept/volto-calendar-block/releases/tag/1.0.0-alpha.7
58
+ https://github.com/kitconcept/volto-button-block/releases/tag/5.0.0-alpha.1
59
+ https://github.com/kitconcept/volto-logos-block/releases/tag/4.0.0-alpha.1
60
+ https://github.com/kitconcept/volto-iframe-block/releases/tag/2.4.0
61
+ https://github.com/kitconcept/volto-introduction-block/releases/tag/1.4.0
62
+ https://github.com/kitconcept/volto-carousel-block/releases/tag/3.0.0-alpha.1
63
+ https://github.com/kitconcept/volto-slider-block/releases/tag/7.0.0-alpha.1
64
+
65
+ ### Bugfix
66
+
67
+ - Fix color in language selector, and remove extra margin between Teaser and Button blocks. @danalvrz
68
+ - Fix hydration errors in mobile navigation. @Tishasoumya-02
69
+ - Fix image size grid-block in editmode. @TimoBroeskamp
70
+ - Fix mobile sticky menu not showing from 768 to 620px. @iFlameing
71
+
72
+ ### Internal
73
+
74
+ - Add missing pt_br translations. @humanaice [#804](https://github.com/kitconcept/volto-light-theme/pull/804)
75
+ - Update translation. @iFlameing
76
+
77
+ ## 8.0.0-alpha.16 (2026-02-16)
78
+
79
+ ### Feature
80
+
81
+ - 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)
82
+
83
+ ### Bugfix
84
+
85
+ - See https://github.com/plone/volto/releases/tag/19.0.0-alpha.24
86
+ https://github.com/plone/volto/releases/tag/19.0.0-alpha.25 @sneridagh [#volto19a24](https://github.com/kitconcept/volto-light-theme/pull/volto19a24)
87
+ - Fix social icons color in post-footer. @danalvrz
88
+ - Move the head title after the date in NewsView and EventView, making it consistent with the listing view. @iFlameing
89
+
90
+ ### Internal
91
+
92
+ - Remove space after banner block when bg color is not white @Tishasoumya-02 [#761](https://github.com/kitconcept/volto-light-theme/pull/761)
93
+
94
+ ## 8.0.0-alpha.15 (2026-02-06)
95
+
96
+ ### Bugfix
97
+
98
+ - 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)
99
+
100
+ ## 8.0.0-alpha.14 (2026-02-05)
101
+
102
+ ### Feature
103
+
104
+ - Create Introduction block on pressing Enter instead of default text block @iRohitSingh [#780](https://github.com/kitconcept/volto-light-theme/pull/780)
105
+ - Add sticky menu in mobile view. @iFlameing
106
+
107
+ ### Bugfix
108
+
109
+ - Fix mail icon appearing near share icon in engagement-section @Tishasoumya-02 [#777](https://github.com/kitconcept/volto-light-theme/pull/777)
110
+ - Fix actions menu going undefined on intranet header @Tishasoumya-02 [#778](https://github.com/kitconcept/volto-light-theme/pull/778)
111
+ - Fixed defaults in `Button` widgets. @iFlameing
112
+ - Update `volto-calendar-block` to 1.0.6. @sneridagh
113
+
114
+ ## 8.0.0-alpha.13 (2026-01-26)
115
+
116
+ ### Feature
117
+
118
+ - Remove the black overlay when no caption for images in grid @Tishasoumya-02 [#767](https://github.com/kitconcept/volto-light-theme/pull/767)
119
+ - Add mail-icon next to mailto links @Tishasoumya-02 [#774](https://github.com/kitconcept/volto-light-theme/pull/774)
120
+ - Add slot for listing disclaimers in ListingBody component. @danalvrz
121
+ - Add soft_max_length warnings for text/textarea widget @Tishasoumya-02
122
+ - Hide profile links based on intranet controlpanel settings. @iFlameing
123
+
124
+ ### Bugfix
125
+
126
+ - Fix header_actions results into undefined when deleting the target @Tishasoumya-02 [#775](https://github.com/kitconcept/volto-light-theme/pull/775)
127
+ - Change footer colophon widget from Input to Richtext. @iFlameing
128
+ - Fixed accordion does not work with the "Order" tab. Use `@eea/volto-accordion-block` 12.0.0. @sneridagh
129
+ - Fixed issue with navigation items custom color not changing without the fat menu enabled. @TimoBroeskamp
130
+
131
+ ### Internal
132
+
133
+ - New visual regression tests. @sneridagh
134
+
135
+ ## 8.0.0-alpha.12 (2026-01-15)
136
+
137
+ ### Bugfix
138
+
139
+ - - fix bug where markdown inline links in descriptions are rendered as a separate paragraph [#751](https://github.com/kitconcept/volto-light-theme/pull/751)
140
+ - Use the CSS prop --breadcrumbs-foregound for breadcrumbs links as default, with --link-foreground-color as fallback. @danalvrz
141
+
142
+ ## 8.0.0-alpha.11 (2026-01-14)
143
+
144
+ ### Internal
145
+
146
+ - Sync RAC VLT version to use the Volto 19a21 one (1.14.1) @sneridagh
147
+
148
+ ## 8.0.0-alpha.10 (2026-01-14)
149
+
150
+ ### Bugfix
151
+
152
+ - Fix sticky menu cut off at the bottom on smaller screens @iRohitSingh
153
+ - Fixed double navigation in cards that contains inner links in its body. @sneridagh
154
+ - Fixed rearrangement of files in drag-and-drop of folderish content. @Tishasoumya-02
155
+
156
+ ### Internal
157
+
158
+ - Add Cypress tests for Enter key behavior on focused blocks @iRohitSingh
159
+
160
+ ## 8.0.0-alpha.9 (2025-12-08)
161
+
162
+ ### Feature
163
+
164
+ - Add volto-calendar-block @iRohitSingh
165
+ - Added cross language support for blocks chooser search @Tishasoumya-02 [#7657](https://github.com/plone/volto/issues/7657)
166
+ 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)
167
+ Added feature of drag and drop files in folder contents. @Tishasoumya-02
168
+ (Update to Volto 19a9) @sneridagh
169
+
170
+ ### Bugfix
171
+
172
+ - Fixed highlight block ENTER, create a new block consistently. Update highlight block to 4.5.1. @sneridagh
173
+ - Fixed introduction block error on pressing ENTER. Update add-on to 1.2.0. @sneridagh
174
+
175
+ ## 8.0.0-alpha.8 (2025-12-01)
176
+
177
+ ### Bugfix
178
+
179
+ - Improve block model 3 support across views. Fixed nasty BDandD console error. @sneridagh [#740](https://github.com/kitconcept/volto-light-theme/pull/740)
180
+ - Fixed problem with the description not showing in rendering if the description was undefined. @sneridagh
181
+ - Hide complementary logo in mobile devices @Tishasoumya-02
182
+
183
+ ## 8.0.0-alpha.7 (2025-11-24)
184
+
185
+ ### Bugfix
186
+
187
+ - Fix css of unauthorized Page @iRohitSingh [#unauthorizedpageCss](https://github.com/kitconcept/volto-light-theme/pull/unauthorizedpageCss)
188
+ - Fixed Accordion arrow/buttons no longer shrink when the title text becomes too long. @jnptk
189
+
190
+ ### Internal
191
+
192
+ - Refactoring to TS some components. @sneridagh [#731](https://github.com/kitconcept/volto-light-theme/pull/731)
193
+ - Update to latest RAC to match the @plone/components one. @sneridagh
194
+ - Use forked Razzle. Update to use Volto 19a14. @sneridagh
195
+
196
+ ## 8.0.0-alpha.6 (2025-11-13)
197
+
198
+ ### Bugfix
199
+
200
+ - Missing @kitconcept/volto-bm3-compat as dep. @sneridagh [#726](https://github.com/kitconcept/volto-light-theme/pull/726)
201
+
202
+ ## 8.0.0-alpha.5 (2025-11-11)
203
+
204
+ ### Feature
205
+
206
+ - Registry color definitions support for ColorSwatch widget. @sneridagh [#723](https://github.com/kitconcept/volto-light-theme/pull/723)
207
+
208
+ ### Bugfix
209
+
210
+ - 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)
211
+ - Identify intranet header with a className in `header header-intranet` div. @sneridagh
212
+
213
+ ### Internal
214
+
215
+ - Normalize all remaining add-ons to be "alpha" versions exclusively for vlt8. @sneridagh
216
+
217
+ ## 8.0.0-alpha.4 (2025-11-05)
218
+
219
+ ### Bugfix
220
+
221
+ - Fixed slider config, in case slider is not present. @sneridagh
222
+
223
+ ### Internal
224
+
225
+ - Updated volto-dsgvo-banner baseline to latest (3.x series). @sneridagh
226
+
227
+ ## 8.0.0-alpha.3 (2025-11-04)
228
+
229
+ ### Feature
230
+
231
+ - Recoverable Block Error Boundaries. @sneridagh [#708](https://github.com/kitconcept/volto-light-theme/pull/708)
232
+ - Update `Buttons` widget to the one proposed for the Volto PR: #7555 @sneridagh
233
+
234
+ ### Bugfix
235
+
236
+ - [#705](https://github.com/kitconcept/volto-light-theme/pull/705)
237
+ - Fix Teaser Blocks for Person type email spacing in 4 columns gridBlock @Tishasoumya-02
238
+
239
+ ### Internal
240
+
241
+ - Add css for NotFound Page @Tishasoumya-02
242
+
11
243
  ## 8.0.0-alpha.2 (2025-10-29)
12
244
 
13
245
  ### 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"