@kitconcept/volto-light-theme 7.0.0-alpha.9 → 7.0.0-beta.1

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 (88) hide show
  1. package/.changelog.draft +6 -5
  2. package/CHANGELOG.md +205 -0
  3. package/locales/de/LC_MESSAGES/volto.po +197 -0
  4. package/locales/en/LC_MESSAGES/volto.po +197 -0
  5. package/locales/es/LC_MESSAGES/volto.po +233 -35
  6. package/locales/eu/LC_MESSAGES/volto.po +197 -0
  7. package/locales/pt_BR/{volto.po → LC_MESSAGES/volto.po} +198 -1
  8. package/locales/volto.pot +198 -1
  9. package/package.json +18 -11
  10. package/src/components/Anontools/Anontools.tsx +59 -0
  11. package/src/components/Blocks/Block/Edit.jsx +463 -0
  12. package/src/components/Blocks/Block/EditBlockWrapper.jsx +163 -0
  13. package/src/components/Blocks/EventCalendar/Search/SearchBlockEdit.jsx +106 -0
  14. package/src/components/Blocks/EventCalendar/Search/SearchBlockView.jsx +116 -0
  15. package/src/components/Blocks/EventCalendar/Search/components/DateRangePicker.tsx +83 -0
  16. package/src/components/Blocks/EventCalendar/Search/components/EventTemplate.tsx +75 -0
  17. package/src/components/Blocks/EventCalendar/Search/components/SearchInput.jsx +57 -0
  18. package/src/components/Blocks/EventCalendar/Search/components/SortOn.jsx +151 -0
  19. package/src/components/Blocks/EventCalendar/Search/components/index.js +2 -0
  20. package/src/components/Blocks/EventCalendar/Search/hocs/index.js +1 -0
  21. package/src/components/Blocks/EventCalendar/Search/hocs/withSearch.jsx +515 -0
  22. package/src/components/Blocks/EventCalendar/Search/layout/TopSideFacets.jsx +189 -0
  23. package/src/components/Blocks/EventCalendar/Search/schema.js +288 -0
  24. package/src/components/Blocks/EventCalendar/Search/utils.js +16 -0
  25. package/src/components/Blocks/Image/Edit.jsx +5 -1
  26. package/src/components/Blocks/Listing/DefaultTemplate.jsx +5 -4
  27. package/src/components/Blocks/Listing/GridTemplate.jsx +20 -16
  28. package/src/components/Blocks/Listing/SummaryTemplate.jsx +13 -9
  29. package/src/components/Blocks/Slider/SliderVariants.jsx +152 -0
  30. package/src/components/Blocks/Slider/View.jsx +179 -0
  31. package/src/components/Blocks/Teaser/DefaultBody.tsx +1 -0
  32. package/src/components/Blocks/Teaser/schema.js +4 -0
  33. package/src/components/Footer/slots/CoreFooter.tsx +2 -1
  34. package/src/components/Footer/slots/FollowUsLogoAndLinks.tsx +9 -9
  35. package/src/components/Header/Header.tsx +2 -0
  36. package/src/components/Logo/Logo.tsx +15 -3
  37. package/src/components/LogosContainer/LogosContainer.tsx +6 -1
  38. package/src/components/StickyMenu/StickyMenu.tsx +2 -0
  39. package/src/components/Summary/EventSummary.tsx +2 -2
  40. package/src/components/Summary/FileSummary.tsx +2 -2
  41. package/src/components/Summary/NewsItemSummary.tsx +2 -2
  42. package/src/components/Summary/PersonSummary.tsx +1 -1
  43. package/src/components/Theme/EventView.jsx +6 -4
  44. package/src/components/Theme/FileView.jsx +9 -1
  45. package/src/components/Theme/NewsItemView.jsx +4 -4
  46. package/src/components/Theme/RenderBlocks.jsx +136 -0
  47. package/src/components/Theme/RenderBlocksV2.jsx +146 -0
  48. package/src/components/Theme/StyleWrapperV3.jsx +68 -0
  49. package/src/components/Widgets/ModalJSONEditor.tsx +58 -0
  50. package/src/config/blocks.tsx +60 -0
  51. package/src/config/settings.ts +2 -0
  52. package/src/config/slots.ts +7 -0
  53. package/src/config/widgets.ts +5 -0
  54. package/src/customizations/@kitconcept/volto-slider-block/components/View.jsx +11 -0
  55. package/src/customizations/volto/components/manage/Blocks/Block/Edit.jsx +10 -0
  56. package/src/customizations/volto/components/manage/Blocks/Block/EditBlockWrapper.jsx +9 -0
  57. package/src/customizations/volto/components/theme/View/RenderBlocks.jsx +3 -181
  58. package/src/{customizations/volto/components/theme/View/RenderBlocks.test.jsx → helpers/grouping.test.jsx} +1 -1
  59. package/src/helpers/grouping.ts +32 -0
  60. package/src/index.ts +1 -1
  61. package/src/primitives/Card/Card.tsx +6 -2
  62. package/src/primitives/IconLinkList.tsx +6 -1
  63. package/src/stories/grid.teaser.stories.tsx +232 -16
  64. package/src/stories/listing.stories.tsx +138 -18
  65. package/src/stories/mocks.ts +85 -2
  66. package/src/stories/teaser.stories.tsx +106 -2
  67. package/src/theme/_bgcolor-blocks-layout.scss +342 -3
  68. package/src/theme/_content.scss +36 -14
  69. package/src/theme/_footer.scss +29 -7
  70. package/src/theme/_header.scss +11 -3
  71. package/src/theme/_layout.scss +6 -1
  72. package/src/theme/_typo-custom.scss +13 -1
  73. package/src/theme/_widgets.scss +67 -0
  74. package/src/theme/blocks/_accordion.scss +6 -3
  75. package/src/theme/blocks/_eventSearch.scss +434 -0
  76. package/src/theme/blocks/_grid.scss +81 -0
  77. package/src/theme/blocks/_image.scss +3 -0
  78. package/src/theme/blocks/_listing.scss +76 -45
  79. package/src/theme/blocks/_rss.scss +17 -0
  80. package/src/theme/blocks/_search.scss +6 -0
  81. package/src/theme/blocks/_slate.scss +6 -0
  82. package/src/theme/blocks/_slider.scss +145 -15
  83. package/src/theme/main.scss +2 -0
  84. package/src/theme/person.scss +187 -32
  85. package/src/theme/sticky-menu.scss +29 -2
  86. package/src/types.d.ts +2 -1
  87. package/vitest.config.mjs +16 -0
  88. package/src/components/Anontools/Anontools.jsx +0 -53
package/.changelog.draft CHANGED
@@ -1,11 +1,12 @@
1
- ## 7.0.0-alpha.9 (2025-06-09)
1
+ ## 7.0.0-beta.1 (2025-09-10)
2
2
 
3
- ### Bugfix
3
+ ### Feature
4
4
 
5
- - Fixed Teaser styling @sneridagh [#573](https://github.com/kitconcept/volto-light-theme/pull/573)
5
+ - Update pt_BR translations. @ericof
6
6
 
7
- ### Internal
7
+ ### Bugfix
8
8
 
9
- - Fix aspect ratio for images in file teaser block @iRohitSingh
9
+ - Fix stickyMenu visibility so that it is hidden on non-content routes. @Tishasoumya-02 [#642](https://github.com/kitconcept/volto-light-theme/pull/642)
10
+ - Fix person description text overflow in grid listing and teaser blocks @iRohitSingh [#645](https://github.com/kitconcept/volto-light-theme/pull/645)
10
11
 
11
12
 
package/CHANGELOG.md CHANGED
@@ -8,6 +8,211 @@
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 7.0.0-beta.1 (2025-09-10)
12
+
13
+ ### Feature
14
+
15
+ - Update pt_BR translations. @ericof
16
+
17
+ ### Bugfix
18
+
19
+ - Fix stickyMenu visibility so that it is hidden on non-content routes. @Tishasoumya-02 [#642](https://github.com/kitconcept/volto-light-theme/pull/642)
20
+ - Fix person description text overflow in grid listing and teaser blocks @iRohitSingh [#645](https://github.com/kitconcept/volto-light-theme/pull/645)
21
+
22
+ ## 7.0.0-alpha.28 (2025-09-08)
23
+
24
+ ### Bugfix
25
+
26
+ - Change the icon for eventCalendar block from description to calendar svg. @iFlameing
27
+ - Fix alignment bug in simple slider variant @Tishasoumya-02
28
+
29
+ ## 7.0.0-alpha.27 (2025-09-04)
30
+
31
+ ### Bugfix
32
+
33
+ - Fix grid listing pagination for grid columns 3 & 4. @iRohitSingh [#640](https://github.com/kitconcept/volto-light-theme/pull/640)
34
+ - Fixed grid person teaser in edit mode. @sneridagh
35
+
36
+ ## 7.0.0-alpha.26 (2025-09-03)
37
+
38
+ ### Bugfix
39
+
40
+ - Fix css for cross button on hover @Tishasoumya-02
41
+ - Remove arrows and fix the background and text colors for slider simple variant @Tishasoumya-02
42
+
43
+ ## 7.0.0-alpha.25 (2025-09-01)
44
+
45
+ ### Feature
46
+
47
+ - Fixed missing person grid listing with correct styles. @sneridagh
48
+
49
+ ### Bugfix
50
+
51
+ - Fix teaser regression in accordion due to semantic UI title classname leak @iRohitSingh [#634](https://github.com/kitconcept/volto-light-theme/pull/634)
52
+ - Fix Grid listing variant List with Image not showing columns 3 & 4 properly @iRohitSingh [#636](https://github.com/kitconcept/volto-light-theme/pull/636)
53
+ - Fix download link on File content-type if the file has no filename. [@jnptk]
54
+ - Fixed bug in person teaser standalone centering. @sneridagh
55
+ - fix the margin-bottom and arrows for simple slider in mobile view @Tishasoumya-02
56
+
57
+ ## 7.0.0-alpha.24 (2025-08-26)
58
+
59
+ ### Breaking
60
+
61
+ - Move the `ConfigInjector` code to k.intranet. @sneridagh [#629](https://github.com/kitconcept/volto-light-theme/pull/629)
62
+
63
+ ### Bugfix
64
+
65
+ - Fixed squared/rounded person image in search block. @sneridagh
66
+
67
+ ## 7.0.0-alpha.23 (2025-08-25)
68
+
69
+ ### Breaking
70
+
71
+ - By default, the Person images for teasers and listings are rounded (1:1).
72
+ Added a body tag classname to change them to be squared and 4/5 aspect ratio. @sneridagh
73
+
74
+ ### Feature
75
+
76
+ - Added Simple Side Slider Variation @Tishasoumya-02 [#sliderVariation](https://github.com/kitconcept/volto-light-theme/pull/sliderVariation)
77
+
78
+ ### Bugfix
79
+
80
+ - Fix navigation menu misalignment in Intranet mobile view @iRohitSingh [#627](https://github.com/kitconcept/volto-light-theme/pull/627)
81
+
82
+ ## 7.0.0-alpha.22 (2025-08-15)
83
+
84
+ ### Feature
85
+
86
+ - Add styles for RSS block (note: full functionality requires RSS addon and templates available in kitconcept.intranet). @danalvrz
87
+
88
+ ### Internal
89
+
90
+ - Fix Logos SVG size issue. @Tishasoumya-02
91
+
92
+ ## 7.0.0-alpha.21 (2025-07-31)
93
+
94
+ ### Internal
95
+
96
+ - Revert the new slider variation. @iFlameing [#623](https://github.com/kitconcept/volto-light-theme/pull/623)
97
+
98
+ ## 7.0.0-alpha.20 (2025-07-29)
99
+
100
+ ### Feature
101
+
102
+ - Added Slider Variations @Tishasoumya-02
103
+
104
+ ### Bugfix
105
+
106
+ - Fix alt tag fallback in IconLinkList @iRohitSingh [#621](https://github.com/kitconcept/volto-light-theme/pull/621)
107
+
108
+ ## 7.0.0-alpha.19 (2025-07-25)
109
+
110
+ ### Bugfix
111
+
112
+ - Fix the listing body width in grid listing variation. @iFlameing [#618](https://github.com/kitconcept/volto-light-theme/pull/618)
113
+
114
+ ### Internal
115
+
116
+ - Add cypress test for sort_on, sort_order for eventCalendar block. @iFlameing [#619](https://github.com/kitconcept/volto-light-theme/pull/619)
117
+ - Fix alt tag fallback to title if srcAlt is missing in IconLinkList @iRohitSingh [#620](https://github.com/kitconcept/volto-light-theme/pull/620)
118
+ - Use volto-dsgvo-banner 2.5.1 @sneridagh
119
+
120
+ ## 7.0.0-alpha.18 (2025-07-23)
121
+
122
+ ### Internal
123
+
124
+ - Update to latests versions of supported add-ons (as peerDeps). @sneridagh
125
+
126
+ ## 7.0.0-alpha.17 (2025-07-23)
127
+
128
+ ## 7.0.0-alpha.16 (2025-07-23)
129
+
130
+ ### Feature
131
+
132
+ - Add query support in eventCalendar Block. @iFlameing [#609](https://github.com/kitconcept/volto-light-theme/pull/609)
133
+ - Added support for the blocks configuration TTW behavior. @sneridagh [#614](https://github.com/kitconcept/volto-light-theme/pull/614)
134
+ - Update carousel block version, example content and cypress @iRohitSingh [#616](https://github.com/kitconcept/volto-light-theme/pull/616)
135
+
136
+ ### Bugfix
137
+
138
+ - Fixed missing hide_description prop in the Summary component within
139
+ TeaserDefaultBodyTemplate and add cypress test for carousel block @iRohitSingh [#610](https://github.com/kitconcept/volto-light-theme/pull/610)
140
+ - Fix the layout of eventCalendar block. @iFlameing [#612](https://github.com/kitconcept/volto-light-theme/pull/612)
141
+ - Fix extra request in edit mode of event calendar block. @iFlameing [#613](https://github.com/kitconcept/volto-light-theme/pull/613)
142
+ - Fix extra request in view mode of event calendar block. @iFlameing [#615](https://github.com/kitconcept/volto-light-theme/pull/615)
143
+
144
+ ## 7.0.0-alpha.15 (2025-07-17)
145
+
146
+ ### Breaking
147
+
148
+ - We renamed this three fields in the `kitconcept.footer` behavior. @sneridagh
149
+ `footer_main_logo_inversed` => `footer_logo`
150
+ `footer_logo` => `post_footer_logo`
151
+ `footer_logo_link` => `post_footer_logo_link`
152
+
153
+ ### Feature
154
+
155
+ - Added block model v3 as opt-in. @sneridagh [#532](https://github.com/kitconcept/volto-light-theme/pull/532)
156
+ - Update Spanish translation [@macagua] [#596](https://github.com/kitconcept/volto-light-theme/pull/596)
157
+
158
+ ### Bugfix
159
+
160
+ - Fixed the use case where the sticky menu item is allowed to not have link. @sneridagh
161
+
162
+ ### Internal
163
+
164
+ - Improve listing template of Listing, Search and Grid block with Card Component. @iFlameing [#601](https://github.com/kitconcept/volto-light-theme/pull/601)
165
+
166
+ ## 7.0.0-alpha.14 (2025-07-10)
167
+
168
+ ### Feature
169
+
170
+ - Add Event calendar block @iFlameing. [#591](https://github.com/kitconcept/volto-light-theme/pull/591)
171
+ - Added `footer_main_logo_inversed` image field to kitconcept.footer behavior. This adds support for setting an inversed color main logo that will appear at the top of the footer address. @sneridagh [#600](https://github.com/kitconcept/volto-light-theme/pull/600)
172
+
173
+ ### Bugfix
174
+
175
+ - Fix margins for narrow centered image block on mobile. @danalvrz [#587](https://github.com/kitconcept/volto-light-theme/pull/587)
176
+ - Show date for news item on mobile and display kicker first. @danalvrz [#589](https://github.com/kitconcept/volto-light-theme/pull/589)
177
+ - Fix sticky menu background color problems @iRohitSingh [#594](https://github.com/kitconcept/volto-light-theme/pull/594)
178
+ - Fixed default `selectedItemAttrs` for Teaser to include Person specific attributes. @sneridagh
179
+
180
+ ### Internal
181
+
182
+ - Add acceptance test for Grid block(Image and Listing). @iFlameing [#595](https://github.com/kitconcept/volto-light-theme/pull/595)
183
+
184
+ ## 7.0.0-alpha.12 (2025-06-18)
185
+
186
+ ### Feature
187
+
188
+ - Reintroduce an improved `Anontools` using `portal_actions`. @sneridagh [#581](https://github.com/kitconcept/volto-light-theme/pull/581)
189
+
190
+ ### Bugfix
191
+
192
+ - Fix sticky menu precedence in z-index with the fat menu. @sneridagh [#582](https://github.com/kitconcept/volto-light-theme/pull/582)
193
+ - Fixed listing in grids variations to match the standalone ones (except Grid). @sneridagh [#582](https://github.com/kitconcept/volto-light-theme/pull/582)
194
+ - Fixed Person CSS in Search block. @sneridagh [#584](https://github.com/kitconcept/volto-light-theme/pull/584)
195
+
196
+ ## 7.0.0-alpha.11 (2025-06-12)
197
+
198
+ ### Bugfix
199
+
200
+ - Do not show sticky menu in add view. @sneridagh
201
+ - Fix aspect ratio for images in file grid teaser block @iRohitSingh
202
+ - Fixed position of sticky menu for small screens. @sneridagh
203
+
204
+ ### Internal
205
+
206
+ - Added visual regression tests for Storybook stories. @sneridagh [#576](https://github.com/kitconcept/volto-light-theme/pull/576)
207
+ - Upgrade to Volto 18.23.0 @sneridagh
208
+ - Use `vitest` for unit tests. @sneridagh
209
+
210
+ ## 7.0.0-alpha.10 (2025-06-10)
211
+
212
+ ### Bugfix
213
+
214
+ - Fixed Person Teaser top variant. Added Storybook. @sneridagh
215
+
11
216
  ## 7.0.0-alpha.9 (2025-06-09)
12
217
 
13
218
  ### Bugfix
@@ -47,6 +47,16 @@ msgstr ""
47
47
  msgid "Add logo"
48
48
  msgstr ""
49
49
 
50
+ #. Default: "Advanced facet?"
51
+ #: components/Blocks/EventCalendar/Search/schema
52
+ msgid "Advanced facet?"
53
+ msgstr ""
54
+
55
+ #. Default: "Advanced facets are initially hidden and displayed on demand"
56
+ #: components/Blocks/EventCalendar/Search/schema
57
+ msgid "Advanced facets are initially hidden and displayed on demand"
58
+ msgstr ""
59
+
50
60
  #. Default: "Alignment"
51
61
  #: components/Blocks/Button/schema
52
62
  #: components/Blocks/Separator/schema
@@ -59,6 +69,11 @@ msgstr ""
59
69
  msgid "Alt text"
60
70
  msgstr ""
61
71
 
72
+ #. Default: "Ascending"
73
+ #: components/Blocks/EventCalendar/Search/components/SortOn
74
+ msgid "Ascending"
75
+ msgstr ""
76
+
62
77
  #. Default: "Back"
63
78
  #: components/MobileNavigation/MobileNavigation
64
79
  msgid "Back"
@@ -69,6 +84,11 @@ msgstr "Zurück"
69
84
  msgid "Background color"
70
85
  msgstr "Hintergrundfarbe"
71
86
 
87
+ #. Default: "Base search query"
88
+ #: components/Blocks/EventCalendar/Search/schema
89
+ msgid "Base search query"
90
+ msgstr ""
91
+
72
92
  #. Default: "Block Width"
73
93
  #: components/Blocks/Button/schema
74
94
  #: components/Blocks/Image/schema
@@ -86,6 +106,11 @@ msgstr "Brotkrumen"
86
106
  msgid "Button text"
87
107
  msgstr "Button Text"
88
108
 
109
+ #. Default: "Cancel search"
110
+ #: components/Blocks/EventCalendar/Search/components/SearchInput
111
+ msgid "Cancel search"
112
+ msgstr ""
113
+
89
114
  #. Default: "Center"
90
115
  #: components/Widgets/BlockAlignment
91
116
  msgid "Center"
@@ -115,9 +140,15 @@ msgstr "Kontakt"
115
140
 
116
141
  #. Default: "Continue reading"
117
142
  #: components/Blocks/Slider/DefaultBody
143
+ #: components/Blocks/Slider/SliderVariants
118
144
  msgid "Continue reading"
119
145
  msgstr "Weiterlesen"
120
146
 
147
+ #. Default: "Controls"
148
+ #: components/Blocks/EventCalendar/Search/schema
149
+ msgid "Controls"
150
+ msgstr ""
151
+
121
152
  #. Default: "Copyright"
122
153
  #: components/Footer/slots/Copyright
123
154
  msgid "Copyright"
@@ -128,6 +159,11 @@ msgstr "Urheberrechte"
128
159
  msgid "Default"
129
160
  msgstr ""
130
161
 
162
+ #. Default: "Descending"
163
+ #: components/Blocks/EventCalendar/Search/components/SortOn
164
+ msgid "Descending"
165
+ msgstr ""
166
+
131
167
  #. Default: "Description"
132
168
  #: components/Blocks/Image/schema
133
169
  #: components/Widgets/schema/footerLogosSchema
@@ -140,6 +176,11 @@ msgstr "Beschreibung"
140
176
  msgid "Distributed under the {license}."
141
177
  msgstr "Vertrieben unter {license}"
142
178
 
179
+ #. Default: "Download file"
180
+ #: components/Theme/FileView
181
+ msgid "Download file"
182
+ msgstr "Datei herunterladen"
183
+
143
184
  #. Default: "Empty object list"
144
185
  #: components/Widgets/BlocksObject
145
186
  #: components/Widgets/ObjectList
@@ -151,6 +192,26 @@ msgstr ""
151
192
  msgid "End"
152
193
  msgstr "ende"
153
194
 
195
+ #. Default: "Facet"
196
+ #: components/Blocks/EventCalendar/Search/schema
197
+ msgid "Facet"
198
+ msgstr ""
199
+
200
+ #. Default: "Facet widget"
201
+ #: components/Blocks/EventCalendar/Search/schema
202
+ msgid "Facet widget"
203
+ msgstr ""
204
+
205
+ #. Default: "Facets"
206
+ #: components/Blocks/EventCalendar/Search/schema
207
+ msgid "Facets"
208
+ msgstr ""
209
+
210
+ #. Default: "Field"
211
+ #: components/Blocks/EventCalendar/Search/schema
212
+ msgid "Field"
213
+ msgstr ""
214
+
154
215
  #. Default: "Flag align"
155
216
  #: components/Blocks/Slider/schema
156
217
  msgid "Flag align"
@@ -172,11 +233,17 @@ msgid "GNU GPL license"
172
233
  msgstr "GNU GPL Lizenz"
173
234
 
174
235
  #. Default: "Headline"
236
+ #: components/Blocks/EventCalendar/Search/schema
175
237
  #: components/Widgets/schema/footerLogosSchema
176
238
  #: components/Widgets/schema/iconLinkListSchema
177
239
  msgid "Headline"
178
240
  msgstr ""
179
241
 
242
+ #. Default: "Hidden facets will still filter the results if proper parameters are passed in URLs"
243
+ #: components/Blocks/EventCalendar/Search/schema
244
+ msgid "Hidden facets will still filter the results if proper parameters are passed in URLs"
245
+ msgstr ""
246
+
180
247
  #. Default: "Hide Button"
181
248
  #: components/Blocks/Slider/schema
182
249
  msgid "Hide Button"
@@ -188,6 +255,11 @@ msgstr "keinen Button anzeigen"
188
255
  msgid "Hide description"
189
256
  msgstr ""
190
257
 
258
+ #. Default: "Hide facet?"
259
+ #: components/Blocks/EventCalendar/Search/schema
260
+ msgid "Hide facet?"
261
+ msgstr ""
262
+
191
263
  #. Default: "Home"
192
264
  #: components/Breadcrumbs/Breadcrumbs
193
265
  #: components/Logo/Logo
@@ -205,6 +277,12 @@ msgstr "ICS-Download"
205
277
  msgid "Image"
206
278
  msgstr "Bild"
207
279
 
280
+ #. Default: "Invalid block - Will be removed on saving"
281
+ #: components/Theme/RenderBlocks
282
+ #: components/Theme/RenderBlocksV2
283
+ msgid "Invalid Block"
284
+ msgstr ""
285
+
208
286
  #. Default: "Item"
209
287
  #: components/Widgets/schema/iconLinkListSchema
210
288
  msgid "Item"
@@ -215,6 +293,11 @@ msgstr ""
215
293
  msgid "Item icon"
216
294
  msgstr ""
217
295
 
296
+ #. Default: "Label"
297
+ #: components/Blocks/EventCalendar/Search/schema
298
+ msgid "Label"
299
+ msgstr ""
300
+
218
301
  #. Default: "Large"
219
302
  #: components/Widgets/Size
220
303
  msgid "Large"
@@ -255,6 +338,11 @@ msgstr "Veranstaltungsort"
255
338
  msgid "Log in"
256
339
  msgstr "Anmelden"
257
340
 
341
+ #. Default: "Log out"
342
+ #: components/Anontools/Anontools
343
+ msgid "Log out"
344
+ msgstr ""
345
+
258
346
  #. Default: "Logo"
259
347
  #: components/Widgets/schema/footerLogosSchema
260
348
  msgid "Logo"
@@ -275,6 +363,21 @@ msgstr ""
275
363
  msgid "Medium"
276
364
  msgstr ""
277
365
 
366
+ #. Default: "Move down"
367
+ #: components/Blocks/Block/Edit
368
+ msgid "Move down"
369
+ msgstr ""
370
+
371
+ #. Default: "Move up"
372
+ #: components/Blocks/Block/Edit
373
+ msgid "Move up"
374
+ msgstr ""
375
+
376
+ #. Default: "Multiple choices?"
377
+ #: components/Blocks/EventCalendar/Search/schema
378
+ msgid "Multiple choices?"
379
+ msgstr ""
380
+
278
381
  #. Default: "Narrow"
279
382
  #: components/Widgets/BlockWidth
280
383
  msgid "Narrow"
@@ -295,6 +398,11 @@ msgstr "Kein Bild ausgewählt"
295
398
  msgid "No items found in this container."
296
399
  msgstr "Keine Elemente im Ordner gefunden."
297
400
 
401
+ #. Default: "No selection"
402
+ #: components/Blocks/EventCalendar/Search/components/SortOn
403
+ msgid "No selection"
404
+ msgstr ""
405
+
298
406
  #. Default: "Open in a new tab"
299
407
  #: components/Widgets/schema/footerLinksSchema
300
408
  #: components/Widgets/schema/footerLogosSchema
@@ -322,6 +430,8 @@ msgstr "Telefon"
322
430
 
323
431
  #. Default: "Please choose an existing content as source for this element"
324
432
  #: components/Blocks/Slider/DefaultBody
433
+ #: components/Blocks/Slider/SliderVariants
434
+ #: components/Blocks/Slider/View
325
435
  #: components/Blocks/Teaser/Body
326
436
  msgid "Please choose an existing content as source for this element"
327
437
  msgstr "Bitte wählen sie einen bestehenden Inhalt als Quelle für dieses Element"
@@ -373,6 +483,8 @@ msgid "Room"
373
483
  msgstr ""
374
484
 
375
485
  #. Default: "Search"
486
+ #: components/Blocks/EventCalendar/Search/components/SearchInput
487
+ #: components/Blocks/EventCalendar/Search/schema
376
488
  #: components/Blocks/Search/components/SearchInput
377
489
  #: components/Blocks/Search/TopSideFacets
378
490
  #: components/MobileNavigation/MobileNavigation
@@ -387,11 +499,26 @@ msgstr "Suche"
387
499
  msgid "Search Site"
388
500
  msgstr "Seite durchsuchen"
389
501
 
502
+ #. Default: "Search block"
503
+ #: components/Blocks/EventCalendar/Search/schema
504
+ msgid "Search block"
505
+ msgstr ""
506
+
507
+ #. Default: "Search button label"
508
+ #: components/Blocks/EventCalendar/Search/schema
509
+ msgid "Search button label"
510
+ msgstr ""
511
+
390
512
  #. Default: "Search for People, E-Mail Address, Phone Number, ..."
391
513
  #: components/SearchWidget/IntranetSearchWidget
392
514
  msgid "Search for People, E-Mail Address, Phone Number, ..."
393
515
  msgstr ""
394
516
 
517
+ #. Default: "Search input label"
518
+ #: components/Blocks/EventCalendar/Search/schema
519
+ msgid "Search input label"
520
+ msgstr ""
521
+
395
522
  #. Default: "Search results"
396
523
  #: components/Blocks/Search/components/SearchDetails
397
524
  msgid "Search results"
@@ -402,6 +529,11 @@ msgstr "Ergebnisse"
402
529
  msgid "Searched for"
403
530
  msgstr "Gesucht für"
404
531
 
532
+ #. Default: "Section title"
533
+ #: components/Blocks/EventCalendar/Search/schema
534
+ msgid "Section title"
535
+ msgstr ""
536
+
405
537
  #. Default: "Settings"
406
538
  #: components/Widgets/schema/footerLogosSchema
407
539
  #: components/Widgets/schema/iconLinkListSchema
@@ -419,6 +551,26 @@ msgstr ""
419
551
  msgid "Show item"
420
552
  msgstr ""
421
553
 
554
+ #. Default: "Show search button?"
555
+ #: components/Blocks/EventCalendar/Search/schema
556
+ msgid "Show search button?"
557
+ msgstr ""
558
+
559
+ #. Default: "Show search input?"
560
+ #: components/Blocks/EventCalendar/Search/schema
561
+ msgid "Show search input?"
562
+ msgstr ""
563
+
564
+ #. Default: "Show sorting?"
565
+ #: components/Blocks/EventCalendar/Search/schema
566
+ msgid "Show sorting?"
567
+ msgstr ""
568
+
569
+ #. Default: "Show total results"
570
+ #: components/Blocks/EventCalendar/Search/schema
571
+ msgid "Show total results"
572
+ msgstr ""
573
+
422
574
  #. Default: "Sitemap"
423
575
  #: index
424
576
  msgid "Sitemap"
@@ -429,6 +581,21 @@ msgstr "Übersicht"
429
581
  msgid "Small"
430
582
  msgstr ""
431
583
 
584
+ #. Default: "Sort on"
585
+ #: components/Blocks/EventCalendar/Search/components/SortOn
586
+ msgid "Sort on"
587
+ msgstr ""
588
+
589
+ #. Default: "Sort on options"
590
+ #: components/Blocks/EventCalendar/Search/schema
591
+ msgid "Sort on options"
592
+ msgstr ""
593
+
594
+ #. Default: "Sorted on"
595
+ #: components/Blocks/EventCalendar/Search/components/SortOn
596
+ msgid "Sorted on"
597
+ msgstr ""
598
+
432
599
  #. Default: "Sorting"
433
600
  #: components/Blocks/Search/TopSideFacets
434
601
  msgid "Sorting"
@@ -436,6 +603,7 @@ msgstr "Sortierung"
436
603
 
437
604
  #. Default: "Source"
438
605
  #: components/Blocks/Slider/DefaultBody
606
+ #: components/Blocks/Slider/SliderVariants
439
607
  msgid "Source"
440
608
  msgstr "Quelle"
441
609
 
@@ -462,6 +630,11 @@ msgstr ""
462
630
  msgid "Target"
463
631
  msgstr ""
464
632
 
633
+ #. Default: "The button presence disables the live search, the query is issued when you press ENTER"
634
+ #: components/Blocks/EventCalendar/Search/schema
635
+ msgid "The button presence disables the live search, the query is issued when you press ENTER"
636
+ msgstr ""
637
+
465
638
  #. Default: "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends."
466
639
  #: components/Footer/slots/Copyright
467
640
  msgid "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends."
@@ -476,11 +649,29 @@ msgstr ""
476
649
  msgid "Title"
477
650
  msgstr "Titel"
478
651
 
652
+ #. Default: "Unknown Block {block}"
653
+ #: components/Blocks/Block/Edit
654
+ #: components/Theme/RenderBlocks
655
+ #: components/Theme/RenderBlocksV2
656
+ msgid "Unknown Block"
657
+ msgstr ""
658
+
479
659
  #. Default: "Website"
480
660
  #: components/Blocks/EventMetadata/View
481
661
  msgid "Website"
482
662
  msgstr "Webseite"
483
663
 
664
+ #. Default: "Available views"
665
+ #: components/Blocks/EventCalendar/Search/schema
666
+ msgid "availableViews"
667
+ msgstr ""
668
+
669
+ #. Default: "Delete"
670
+ #: components/Blocks/Block/Edit
671
+ #: components/Blocks/Block/EditBlockWrapper
672
+ msgid "delete"
673
+ msgstr ""
674
+
484
675
  #. Default: "eMail"
485
676
  #: components/Summary/PersonSummary
486
677
  msgid "eMail"
@@ -503,6 +694,7 @@ msgstr "laden"
503
694
 
504
695
  #. Default: "More info"
505
696
  #: components/Blocks/Slider/DefaultBody
697
+ #: components/Blocks/Slider/SliderVariants
506
698
  msgid "moreInfo"
507
699
  msgstr "Mehr Informationen"
508
700
 
@@ -510,3 +702,8 @@ msgstr "Mehr Informationen"
510
702
  #: components/Blocks/Listing/ListingBody
511
703
  msgid "of"
512
704
  msgstr "von"
705
+
706
+ #. Default: "Views"
707
+ #: components/Blocks/EventCalendar/Search/schema
708
+ msgid "views"
709
+ msgstr ""