@kitconcept/volto-light-theme 6.0.0-alpha.8 → 6.0.0
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.
- package/.changelog.draft +1 -5
- package/CHANGELOG.md +226 -0
- package/README.md +6 -5
- package/locales/de/LC_MESSAGES/volto.po +171 -38
- package/locales/en/LC_MESSAGES/volto.po +170 -37
- package/locales/es/LC_MESSAGES/volto.po +171 -38
- package/locales/eu/LC_MESSAGES/volto.po +171 -38
- package/locales/pt_BR/volto.po +171 -38
- package/locales/volto.pot +171 -38
- package/package.json +15 -6
- package/src/components/Blocks/EventMetadata/View.jsx +32 -26
- package/src/components/Blocks/Listing/DefaultTemplate.jsx +19 -14
- package/src/components/Blocks/Listing/GridTemplate.jsx +9 -12
- package/src/components/Blocks/Listing/SummaryTemplate.jsx +9 -7
- package/src/components/Blocks/Teaser/DefaultBody.jsx +93 -0
- package/src/components/Blocks/Teaser/schema.js +1 -7
- package/src/components/Footer/ColumnLinks.tsx +35 -0
- package/src/components/Footer/Footer.tsx +32 -0
- package/src/components/Footer/slots/Colophon.tsx +24 -0
- package/src/components/Footer/slots/Copyright.tsx +65 -0
- package/src/components/Footer/slots/CoreFooter.tsx +82 -0
- package/src/components/Footer/slots/FollowUsLogoAndLinks.tsx +80 -0
- package/src/components/Footer/slots/FooterLogos.tsx +44 -0
- package/src/components/Header/Header.tsx +257 -0
- package/src/components/Logo/Logo.tsx +85 -0
- package/src/components/{Footer/FooterLogos.tsx → LogosContainer/LogosContainer.tsx} +24 -25
- package/src/components/MobileNavigation/MobileNavigation.jsx +53 -18
- package/src/components/Navigation/Navigation.jsx +14 -3
- package/src/components/SearchWidget/IntranetSearchWidget.jsx +32 -5
- package/src/components/SearchWidget/SearchWidget.jsx +1 -1
- package/src/components/StickyMenu/StickyMenu.tsx +36 -0
- package/src/components/Summary/DefaultSummary.jsx +16 -0
- package/src/components/Summary/EventSummary.jsx +38 -0
- package/src/components/Summary/FileSummary.jsx +24 -0
- package/src/components/Summary/NewsItemSummary.jsx +40 -0
- package/src/components/Tags/Tags.jsx +46 -0
- package/src/components/Theme/EventView.jsx +19 -25
- package/src/components/Theme/NewsItemView.jsx +13 -9
- package/src/components/Theming/Theming.tsx +20 -17
- package/src/components/Widgets/{BlockAlignmentWidget.tsx → BlockAlignment.tsx} +9 -2
- package/src/components/Widgets/{BlockWidthWidget.tsx → BlockWidth.tsx} +10 -3
- package/src/components/Widgets/BlocksObject.tsx +353 -0
- package/src/components/Widgets/Buttons.tsx +117 -0
- package/src/components/Widgets/ColorContrastChecker.tsx +117 -0
- package/src/components/Widgets/ColorPicker.tsx +59 -0
- package/src/components/Widgets/{ColorPickerWidget.tsx → ColorSwatch.tsx} +5 -5
- package/src/components/Widgets/ObjectList.tsx +342 -0
- package/src/components/Widgets/{ThemingColorPicker.tsx → RACThemingColorPicker.tsx} +4 -0
- package/src/components/Widgets/Size.tsx +75 -0
- package/src/components/Widgets/ThemeColorSwatch.tsx +17 -0
- package/src/components/Widgets/schema/footerLinksSchema.ts +64 -0
- package/src/components/Widgets/schema/footerLogosSchema.ts +98 -0
- package/src/components/Widgets/schema/headerActionsSchema.ts +64 -0
- package/src/components/Widgets/schema/iconLinkListSchema.ts +98 -0
- package/src/config/blocks.tsx +39 -20
- package/src/config/settings.ts +54 -12
- package/src/config/slots.ts +36 -1
- package/src/config/summary.ts +24 -0
- package/src/config/widgets.ts +57 -20
- package/src/customizations/volto/components/manage/Blocks/Teaser/DefaultBody.jsx +8 -0
- package/src/customizations/volto/components/theme/Tags/Tags.jsx +11 -0
- package/src/customizations/volto/components/theme/View/RenderBlocks.jsx +2 -1
- package/src/helpers/DndSortableList.tsx +138 -0
- package/src/helpers/dates.js +22 -0
- package/src/helpers/doesNodeContainClick.js +64 -0
- package/src/helpers/useLiveData.ts +29 -0
- package/src/index.ts +33 -2
- package/src/primitives/IconLinkList.tsx +69 -0
- package/src/primitives/LinkList.tsx +35 -0
- package/src/theme/_bgcolor-blocks-layout.scss +50 -12
- package/src/theme/_container.scss +4 -0
- package/src/theme/_content.scss +6 -0
- package/src/theme/_footer.scss +295 -43
- package/src/theme/_header.scss +132 -19
- package/src/theme/_layout.scss +11 -1
- package/src/theme/_sitemap.scss +4 -0
- package/src/theme/_utils.scss +14 -1
- package/src/theme/_variables.scss +12 -3
- package/src/theme/_widgets.scss +102 -10
- package/src/theme/blocks/_eventMetadata.scss +5 -2
- package/src/theme/blocks/_grid.scss +3 -3
- package/src/theme/blocks/_highlight.scss +17 -44
- package/src/theme/blocks/_listing.scss +25 -16
- package/src/theme/blocks/_maps.scss +3 -3
- package/src/theme/blocks/_slider.scss +5 -1
- package/src/theme/main.scss +1 -0
- package/src/theme/sticky-menu.scss +50 -0
- package/src/types.d.ts +102 -0
- package/tsconfig.json +1 -1
- package/src/components/Footer/Footer.jsx +0 -115
- package/src/components/Footer/FooterLinks.tsx +0 -57
- package/src/components/Header/Header.jsx +0 -161
- package/src/components/Logo/Logo.jsx +0 -51
- package/src/components/Widgets/AlignWidget.jsx +0 -80
- package/src/components/Widgets/BackgroundColorWidget.tsx +0 -17
- package/src/components/Widgets/BlocksObjectWidget.tsx +0 -333
- package/src/components/Widgets/ButtonsWidget.tsx +0 -68
- package/src/components/Widgets/FooterLinksWidget.tsx +0 -106
- package/src/components/Widgets/FooterLogosWidget.tsx +0 -120
- package/src/static/container-query-polyfill.modern.js +0 -1
- package/src/types/index.d.ts +0 -1
package/.changelog.draft
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,232 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 6.0.0 (2025-05-14)
|
|
12
|
+
|
|
13
|
+
## 6.0.0-alpha.25 (2025-05-14)
|
|
14
|
+
|
|
15
|
+
### Feature
|
|
16
|
+
|
|
17
|
+
- Add --image-aspect-ratio docs & make Slider use the CSS prop. @danalvrz [#535](https://github.com/kitconcept/volto-light-theme/pull/535)
|
|
18
|
+
- Integration with the intranet control panel settings for the intranet header. @sneridagh [#542](https://github.com/kitconcept/volto-light-theme/pull/542)
|
|
19
|
+
|
|
20
|
+
### Bugfix
|
|
21
|
+
|
|
22
|
+
- Fixed props for Summary component in Teaser view. @sneridagh [#536](https://github.com/kitconcept/volto-light-theme/pull/536)
|
|
23
|
+
- Color fixes for Footer & metadata block. @danalvrz [#544](https://github.com/kitconcept/volto-light-theme/pull/544)
|
|
24
|
+
|
|
25
|
+
## 6.0.0-alpha.24 (2025-05-06)
|
|
26
|
+
|
|
27
|
+
### Feature
|
|
28
|
+
|
|
29
|
+
- Added `sticky_menu` slot. @sneridagh [#523](https://github.com/kitconcept/volto-light-theme/pull/523)
|
|
30
|
+
- Better naming for the specific kitconcept's behaviors for distributions. @sneridagh [#530](https://github.com/kitconcept/volto-light-theme/pull/530)
|
|
31
|
+
- Use `--image-aspect-ratio` for all images. @danalvrz [#533](https://github.com/kitconcept/volto-light-theme/pull/533)
|
|
32
|
+
|
|
33
|
+
## 6.0.0-alpha.23 (2025-04-30)
|
|
34
|
+
|
|
35
|
+
### Bugfix
|
|
36
|
+
|
|
37
|
+
- Do not use the color contrast checker if the field is not in the color map settings config. @sneridagh [#529](https://github.com/kitconcept/volto-light-theme/pull/529)
|
|
38
|
+
- Adjustments to the footer, conditional "Follow us" text and footer_links container. @sneridagh [#529](https://github.com/kitconcept/volto-light-theme/pull/529)
|
|
39
|
+
|
|
40
|
+
## 6.0.0-alpha.22 (2025-04-29)
|
|
41
|
+
|
|
42
|
+
### Breaking
|
|
43
|
+
|
|
44
|
+
- Remove `Anontools` from the headers.
|
|
45
|
+
If you want to add them, you can use the `header_actions` field in the site customization behaviors. @sneridagh [#522](https://github.com/kitconcept/volto-light-theme/pull/522)
|
|
46
|
+
- Updated the footer structure and look and feel:
|
|
47
|
+
- Follow us, powered by `@plonegovbr/volto-social-media`
|
|
48
|
+
- Footer links
|
|
49
|
+
- Colophon
|
|
50
|
+
|
|
51
|
+
All of them are powered by their slots, so they are customizable.
|
|
52
|
+
|
|
53
|
+
@sneridagh [#525](https://github.com/kitconcept/volto-light-theme/pull/525)
|
|
54
|
+
|
|
55
|
+
### Feature
|
|
56
|
+
|
|
57
|
+
- Allow `intranet_flag` in both headers. @sneridagh [#524](https://github.com/kitconcept/volto-light-theme/pull/524)
|
|
58
|
+
- Added distribution core footer, only active if the `kitconcept.distributions.footer` is installed. @sneridagh [#525](https://github.com/kitconcept/volto-light-theme/pull/525)
|
|
59
|
+
|
|
60
|
+
### Bugfix
|
|
61
|
+
|
|
62
|
+
- Minor typo fix in color contrast check message. @danalvrz [#526](https://github.com/kitconcept/volto-light-theme/pull/526)
|
|
63
|
+
- Fix customized object list widget when data doesn't contain a value yet. @davisagli [#527](https://github.com/kitconcept/volto-light-theme/pull/527)
|
|
64
|
+
|
|
65
|
+
## 6.0.0-alpha.21 (2025-04-02)
|
|
66
|
+
|
|
67
|
+
### Bugfix
|
|
68
|
+
|
|
69
|
+
- Fixed `Tags` component container. @sneridagh [#517](https://github.com/kitconcept/volto-light-theme/pull/517)
|
|
70
|
+
- Improve position of the intranet flag in responsive viewports. @sneridagh [#518](https://github.com/kitconcept/volto-light-theme/pull/518)
|
|
71
|
+
|
|
72
|
+
## 6.0.0-alpha.20 (2025-04-01)
|
|
73
|
+
|
|
74
|
+
### Breaking
|
|
75
|
+
|
|
76
|
+
- Remove feature flags, move to site customizations. @sneridagh [#516](https://github.com/kitconcept/volto-light-theme/pull/516)
|
|
77
|
+
- Remove Plone portal actions from headers. @sneridagh [#516](https://github.com/kitconcept/volto-light-theme/pull/516)
|
|
78
|
+
|
|
79
|
+
### Bugfix
|
|
80
|
+
|
|
81
|
+
- Minor CSS fixes and add docs on colors. @danalvrz [#509](https://github.com/kitconcept/volto-light-theme/pull/509)
|
|
82
|
+
|
|
83
|
+
## 6.0.0-alpha.19 (2025-03-25)
|
|
84
|
+
|
|
85
|
+
### Bugfix
|
|
86
|
+
|
|
87
|
+
- Fix grid creation, improve the blockConfig check. @sneridagh [#510](https://github.com/kitconcept/volto-light-theme/pull/510)
|
|
88
|
+
|
|
89
|
+
## 6.0.0-alpha.18 (2025-03-21)
|
|
90
|
+
|
|
91
|
+
### Feature
|
|
92
|
+
|
|
93
|
+
- Add Color Contrast Checker component @danalvrz [#463](https://github.com/kitconcept/volto-light-theme/pull/463)
|
|
94
|
+
- Add docs for ColorContrastChecker. @danalvrz [#507](https://github.com/kitconcept/volto-light-theme/pull/507)
|
|
95
|
+
|
|
96
|
+
### Bugfix
|
|
97
|
+
|
|
98
|
+
- Make the `footer_links` and `footer_logos` loops more resilient. @sneridagh [#508](https://github.com/kitconcept/volto-light-theme/pull/508)
|
|
99
|
+
|
|
100
|
+
## 6.0.0-alpha.17 (2025-03-20)
|
|
101
|
+
|
|
102
|
+
### Breaking
|
|
103
|
+
|
|
104
|
+
- Renamed widget: `ThemeColorPicker` -> `ColorPicker`. @sneridagh [#486](https://github.com/kitconcept/volto-light-theme/pull/486)
|
|
105
|
+
- Renamed widget: `BackgroundColorWidget` -> `themeColorSwatch`. @sneridagh [#486](https://github.com/kitconcept/volto-light-theme/pull/486)
|
|
106
|
+
- Renamed widget: `sizeWidget` -> `size`. @sneridagh [#486](https://github.com/kitconcept/volto-light-theme/pull/486)
|
|
107
|
+
|
|
108
|
+
### Feature
|
|
109
|
+
|
|
110
|
+
- New widget: `colorPicker`. @sneridagh [#486](https://github.com/kitconcept/volto-light-theme/pull/486)
|
|
111
|
+
- New widget: `themeColorSwatch`. @sneridagh [#486](https://github.com/kitconcept/volto-light-theme/pull/486)
|
|
112
|
+
- Add `@kitconcept/volto-banner-block` to the recommended VLT add-ons. @sneridagh [#487](https://github.com/kitconcept/volto-light-theme/pull/487)
|
|
113
|
+
- New widget: `object_list`. @sneridagh [#491](https://github.com/kitconcept/volto-light-theme/pull/491)
|
|
114
|
+
- Use the `@inherit` endpoint. @sneridagh [#494](https://github.com/kitconcept/volto-light-theme/pull/494)
|
|
115
|
+
- Update volto-highlight-block to 4.1.0 @sneridagh [#498](https://github.com/kitconcept/volto-light-theme/pull/498)
|
|
116
|
+
|
|
117
|
+
### Bugfix
|
|
118
|
+
|
|
119
|
+
- Remove title attribute from the logo. @davisagli [#336](https://github.com/kitconcept/volto-light-theme/pull/336)
|
|
120
|
+
- Color fixes for description, links and buttons for Slider & Highlight blocks. @danalvrz [#476](https://github.com/kitconcept/volto-light-theme/pull/476)
|
|
121
|
+
- Fixed nested blocks theme: when the theme is not set, inherit from parent instead of getting the default one for the current nested block. @sneridagh [#489](https://github.com/kitconcept/volto-light-theme/pull/489)
|
|
122
|
+
- Fix workflow: acceptance always runs, even if one of the dependencies are skipped. @sneridagh [#492](https://github.com/kitconcept/volto-light-theme/pull/492)
|
|
123
|
+
- Add actions to header + Fix hydration problem in /edit + Sitemap container. @sneridagh [#492](https://github.com/kitconcept/volto-light-theme/pull/492)
|
|
124
|
+
- Specify desktop flex direction starting at 768px screen width. @danalvrz [#496](https://github.com/kitconcept/volto-light-theme/pull/496)
|
|
125
|
+
|
|
126
|
+
### Internal
|
|
127
|
+
|
|
128
|
+
- Added deployment workflow. @ericof [#495](https://github.com/kitconcept/volto-light-theme/pull/495)
|
|
129
|
+
|
|
130
|
+
### Documentation
|
|
131
|
+
|
|
132
|
+
- Update requirements for plone.restapi in docs. @sneridagh [#498](https://github.com/kitconcept/volto-light-theme/pull/498)
|
|
133
|
+
|
|
134
|
+
## 6.0.0-alpha.16 (2025-03-03)
|
|
135
|
+
|
|
136
|
+
### Bugfix
|
|
137
|
+
|
|
138
|
+
- Fix last edge case in the intranet header in edit mode with the `complementary_logo`. @sneridagh [#483](https://github.com/kitconcept/volto-light-theme/pull/483)
|
|
139
|
+
|
|
140
|
+
## 6.0.0-alpha.15 (2025-03-03)
|
|
141
|
+
|
|
142
|
+
### Bugfix
|
|
143
|
+
|
|
144
|
+
- Added missing header guards for `intranet_flag` and `complementary_logo`. @sneridagh [#482](https://github.com/kitconcept/volto-light-theme/pull/482)
|
|
145
|
+
|
|
146
|
+
## 6.0.0-alpha.14 (2025-03-03)
|
|
147
|
+
|
|
148
|
+
### Breaking
|
|
149
|
+
|
|
150
|
+
- Remove title from required blocks. @sneridagh [#478](https://github.com/kitconcept/volto-light-theme/pull/478)
|
|
151
|
+
- Remove `AlignmentWidget`. @sneridagh [#481](https://github.com/kitconcept/volto-light-theme/pull/481)
|
|
152
|
+
|
|
153
|
+
### Feature
|
|
154
|
+
|
|
155
|
+
- Add complementary logo for Intranet (sitecustomization behavior needed). @sneridagh [#478](https://github.com/kitconcept/volto-light-theme/pull/478)
|
|
156
|
+
- Wire the intranet flag with the site customization behavior. @sneridagh [#478](https://github.com/kitconcept/volto-light-theme/pull/478)
|
|
157
|
+
|
|
158
|
+
### Bugfix
|
|
159
|
+
|
|
160
|
+
- Fix RenderBlocks to handle empty blocks more robustly @teekuningas [#475](https://github.com/kitconcept/volto-light-theme/pull/475)
|
|
161
|
+
- Header adjustments for intranet. @sneridagh [#477](https://github.com/kitconcept/volto-light-theme/pull/477)
|
|
162
|
+
- Fix complementary logo sizes. @sneridagh [#479](https://github.com/kitconcept/volto-light-theme/pull/479)
|
|
163
|
+
|
|
164
|
+
### Internal
|
|
165
|
+
|
|
166
|
+
- import fixes and other cleanups. @sneridagh [#481](https://github.com/kitconcept/volto-light-theme/pull/481)
|
|
167
|
+
|
|
168
|
+
## 6.0.0-alpha.13 (2025-02-11)
|
|
169
|
+
|
|
170
|
+
### Feature
|
|
171
|
+
|
|
172
|
+
- Add a `Summary` component used to render a content type for listings and teasers. @davisagli [#462](https://github.com/kitconcept/volto-light-theme/pull/462)
|
|
173
|
+
- Re-label the "Default" listing variation to "List" and the "Summary" variation to "List with images".
|
|
174
|
+
(The internal names remain unchanged.) @davisagli [#462](https://github.com/kitconcept/volto-light-theme/pull/462)
|
|
175
|
+
- Add summary components to render the date for news items and events and the file type and size for files. @davisagli [#462](https://github.com/kitconcept/volto-light-theme/pull/462)
|
|
176
|
+
|
|
177
|
+
### Bugfix
|
|
178
|
+
|
|
179
|
+
- Improve rendering of whole-day and open-ended event dates. @davisagli [#462](https://github.com/kitconcept/volto-light-theme/pull/462)
|
|
180
|
+
|
|
181
|
+
### Internal
|
|
182
|
+
|
|
183
|
+
- Update to use 18.8.1 @sneridagh [#473](https://github.com/kitconcept/volto-light-theme/pull/473)
|
|
184
|
+
|
|
185
|
+
### Documentation
|
|
186
|
+
|
|
187
|
+
- Update the order of the addon list so that the override order is correct. @kittauri [#470](https://github.com/kitconcept/volto-light-theme/pull/470)
|
|
188
|
+
|
|
189
|
+
## 6.0.0-alpha.12 (2025-02-04)
|
|
190
|
+
|
|
191
|
+
### Bugfix
|
|
192
|
+
|
|
193
|
+
- Constrain logo proportions to 200x80. @kittauri [#467](https://github.com/kitconcept/volto-light-theme/pull/467)
|
|
194
|
+
- Improve the CSS around the logo. @sneridagh [#469](https://github.com/kitconcept/volto-light-theme/pull/469)
|
|
195
|
+
|
|
196
|
+
### Internal
|
|
197
|
+
|
|
198
|
+
- Fix the `corepack`-armageddon of the last weekend. @sneridagh [#469](https://github.com/kitconcept/volto-light-theme/pull/469)
|
|
199
|
+
|
|
200
|
+
### Documentation
|
|
201
|
+
|
|
202
|
+
- Add missing addons to the addons list in install.md @kittauri [#465](https://github.com/kitconcept/volto-light-theme/pull/465)
|
|
203
|
+
|
|
204
|
+
## 6.0.0-alpha.11 (2025-01-31)
|
|
205
|
+
|
|
206
|
+
### Feature
|
|
207
|
+
|
|
208
|
+
- Added inner and outter logo container width and constraints. @sneridagh [#458](https://github.com/kitconcept/volto-light-theme/pull/458)
|
|
209
|
+
- Constrain logo proportions to 200x80. @sneridagh [#461](https://github.com/kitconcept/volto-light-theme/pull/461)
|
|
210
|
+
|
|
211
|
+
## 6.0.0-alpha.10 (2025-01-07)
|
|
212
|
+
|
|
213
|
+
### Breaking
|
|
214
|
+
|
|
215
|
+
- Rename the name of the widget from `themingColorPicker` to `themeColorPicker`. @sneridagh [#455](https://github.com/kitconcept/volto-light-theme/pull/455)
|
|
216
|
+
|
|
217
|
+
### Bugfix
|
|
218
|
+
|
|
219
|
+
- Removed the non-breaking space from the external URL icon, removing the strange underline. @Tishasoumya-02 [#438](https://github.com/kitconcept/volto-light-theme/pull/438)
|
|
220
|
+
- Improve usability of the theme color picker widget. Fix error when removing a logo. @sneridagh [#455](https://github.com/kitconcept/volto-light-theme/pull/455)
|
|
221
|
+
|
|
222
|
+
### Internal
|
|
223
|
+
|
|
224
|
+
- Update to latest Volto 18.4.0. @sneridagh [#455](https://github.com/kitconcept/volto-light-theme/pull/455)
|
|
225
|
+
|
|
226
|
+
## 6.0.0-alpha.9 (2024-12-17)
|
|
227
|
+
|
|
228
|
+
### Feature
|
|
229
|
+
|
|
230
|
+
- Added logos footer handlers for logo size and logos container size. Overall improvements for look and feel. @sneridagh [#451](https://github.com/kitconcept/volto-light-theme/pull/451)
|
|
231
|
+
|
|
232
|
+
### Bugfix
|
|
233
|
+
|
|
234
|
+
- Remove teaser styling tab inside grids since it's empty. @sneridagh [#449](https://github.com/kitconcept/volto-light-theme/pull/449)
|
|
235
|
+
- Remove the last dangling `aspect-ratio` handler from image block. @sneridagh [#450](https://github.com/kitconcept/volto-light-theme/pull/450)
|
|
236
|
+
|
|
11
237
|
## 6.0.0-alpha.8 (2024-12-13)
|
|
12
238
|
|
|
13
239
|
### Bugfix
|
package/README.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# Volto Light Theme by kitconcept
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@kitconcept/volto-light-theme)
|
|
4
|
-
[](https://github.com/kitconcept/volto-light-theme/actions)
|
|
6
|
-
[](https://github.com/kitconcept/volto-light-theme/actions)
|
|
4
|
+
[](https://github.com/kitconcept/volto-light-theme/actions)
|
|
7
5
|
|
|
8
|
-
|
|
6
|
+
<picture>
|
|
7
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://kitconcept.com/kitconcept-white.svg">
|
|
8
|
+
<img width="300" alt="kitconcept, GmbH" src="https://kitconcept.com/kitconcept-black.svg">
|
|
9
|
+
</picture>
|
|
9
10
|
|
|
10
11
|
## Vision
|
|
11
12
|
|
|
@@ -13,7 +14,7 @@ The main vision of the Volto Light Theme (VLT) is to serve as a foundation for k
|
|
|
13
14
|
It incorporates feedback from the company's clients and Plone community from the last few years of projects and the success stories in the UI/UX side.
|
|
14
15
|
It aims to be future-proof, keeping it aligned with the upcoming Volto and Plone 7 vision in terms of theming strategy decided by the Plone community.
|
|
15
16
|
|
|
16
|
-

|
|
17
|
+

|
|
17
18
|
|
|
18
19
|
## Documentation
|
|
19
20
|
|
|
@@ -16,16 +16,48 @@ msgstr ""
|
|
|
16
16
|
"Preferred-Encodings: utf-8 latin1\n"
|
|
17
17
|
"X-Is-Fallback-For: de-at de-li de-lu de-ch de-de\n"
|
|
18
18
|
|
|
19
|
+
#. Default: "Action"
|
|
20
|
+
#: components/Widgets/schema/headerActionsSchema
|
|
21
|
+
msgid "Action"
|
|
22
|
+
msgstr ""
|
|
23
|
+
|
|
24
|
+
#. Default: "Add"
|
|
25
|
+
#: components/Widgets/BlocksObject
|
|
26
|
+
#: components/Widgets/ObjectList
|
|
27
|
+
msgid "Add (object list)"
|
|
28
|
+
msgstr ""
|
|
29
|
+
|
|
30
|
+
#. Default: "Add action"
|
|
31
|
+
#: components/Widgets/schema/headerActionsSchema
|
|
32
|
+
msgid "Add action"
|
|
33
|
+
msgstr ""
|
|
34
|
+
|
|
35
|
+
#. Default: "Add link"
|
|
36
|
+
#: components/Widgets/schema/footerLinksSchema
|
|
37
|
+
msgid "Add link"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
40
|
+
#. Default: "Add logo"
|
|
41
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
42
|
+
msgid "Add logo"
|
|
43
|
+
msgstr ""
|
|
44
|
+
|
|
45
|
+
#. Default: "Alignment"
|
|
46
|
+
#: components/Blocks/Button/schema
|
|
47
|
+
#: components/Blocks/Separator/schema
|
|
48
|
+
msgid "Alignment"
|
|
49
|
+
msgstr ""
|
|
50
|
+
|
|
51
|
+
#. Default: "Alt text"
|
|
52
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
53
|
+
msgid "Alt text"
|
|
54
|
+
msgstr ""
|
|
55
|
+
|
|
19
56
|
#. Default: "Back"
|
|
20
57
|
#: components/MobileNavigation/MobileNavigation
|
|
21
58
|
msgid "Back"
|
|
22
59
|
msgstr "Zurück"
|
|
23
60
|
|
|
24
|
-
#. Default: "Back to homepage"
|
|
25
|
-
#: components/Logo/Logo
|
|
26
|
-
msgid "Back to homepage"
|
|
27
|
-
msgstr "Zurück zur Startseite"
|
|
28
|
-
|
|
29
61
|
#. Default: "Background color"
|
|
30
62
|
#: components/Blocks/schema
|
|
31
63
|
msgid "Background color"
|
|
@@ -33,6 +65,8 @@ msgstr "Hintergrundfarbe"
|
|
|
33
65
|
|
|
34
66
|
#. Default: "Block Width"
|
|
35
67
|
#: components/Blocks/Button/schema
|
|
68
|
+
#: components/Blocks/Image/schema
|
|
69
|
+
#: components/Blocks/Separator/schema
|
|
36
70
|
msgid "Block Width"
|
|
37
71
|
msgstr "Block Breite"
|
|
38
72
|
|
|
@@ -41,18 +75,13 @@ msgstr "Block Breite"
|
|
|
41
75
|
msgid "Breadcrumbs"
|
|
42
76
|
msgstr "Brotkrumen"
|
|
43
77
|
|
|
44
|
-
#. Default: "Browse the site, drop an image, or type an URL"
|
|
45
|
-
#: components/Blocks/Image/Edit
|
|
46
|
-
msgid "Browse the site, drop an image, or type an URL"
|
|
47
|
-
msgstr "Bild auswählen, hochladen oder URL angeben"
|
|
48
|
-
|
|
49
78
|
#. Default: "Button text"
|
|
50
79
|
#: components/Blocks/Slider/schema
|
|
51
80
|
msgid "Button text"
|
|
52
81
|
msgstr "Button Text"
|
|
53
82
|
|
|
54
83
|
#. Default: "Center"
|
|
55
|
-
#: components/Widgets/
|
|
84
|
+
#: components/Widgets/BlockAlignment
|
|
56
85
|
msgid "Center"
|
|
57
86
|
msgstr "Mittig"
|
|
58
87
|
|
|
@@ -62,6 +91,17 @@ msgstr "Mittig"
|
|
|
62
91
|
msgid "Close menu"
|
|
63
92
|
msgstr "Menü schließen"
|
|
64
93
|
|
|
94
|
+
#. Default: "Collapse item"
|
|
95
|
+
#: components/Widgets/BlocksObject
|
|
96
|
+
#: components/Widgets/ObjectList
|
|
97
|
+
msgid "Collapse item"
|
|
98
|
+
msgstr ""
|
|
99
|
+
|
|
100
|
+
#. Default: "The color contrast ratio {contrastRatio}:1 might not be accessible for all. WCAG Level: {complianceLevel}"
|
|
101
|
+
#: components/Widgets/ColorContrastChecker
|
|
102
|
+
msgid "ColorContrastCheckerMessage"
|
|
103
|
+
msgstr ""
|
|
104
|
+
|
|
65
105
|
#. Default: "Contact"
|
|
66
106
|
#: components/Blocks/EventMetadata/View
|
|
67
107
|
msgid "Contact"
|
|
@@ -77,8 +117,14 @@ msgstr "Weiterlesen"
|
|
|
77
117
|
msgid "Copyright"
|
|
78
118
|
msgstr "Urheberrechte"
|
|
79
119
|
|
|
120
|
+
#. Default: "Default"
|
|
121
|
+
#: components/Widgets/BlockWidth
|
|
122
|
+
msgid "Default"
|
|
123
|
+
msgstr ""
|
|
124
|
+
|
|
80
125
|
#. Default: "Description"
|
|
81
126
|
#: components/Blocks/Image/schema
|
|
127
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
82
128
|
msgid "Description"
|
|
83
129
|
msgstr "Beschreibung"
|
|
84
130
|
|
|
@@ -87,6 +133,12 @@ msgstr "Beschreibung"
|
|
|
87
133
|
msgid "Distributed under the {license}."
|
|
88
134
|
msgstr "Vertrieben unter {license}"
|
|
89
135
|
|
|
136
|
+
#. Default: "Empty object list"
|
|
137
|
+
#: components/Widgets/BlocksObject
|
|
138
|
+
#: components/Widgets/ObjectList
|
|
139
|
+
msgid "Empty object list"
|
|
140
|
+
msgstr ""
|
|
141
|
+
|
|
90
142
|
#. Default: "End"
|
|
91
143
|
#: components/Blocks/EventMetadata/View
|
|
92
144
|
msgid "End"
|
|
@@ -98,7 +150,7 @@ msgid "Flag align"
|
|
|
98
150
|
msgstr ""
|
|
99
151
|
|
|
100
152
|
#. Default: "Full"
|
|
101
|
-
#: components/Widgets/
|
|
153
|
+
#: components/Widgets/BlockWidth
|
|
102
154
|
msgid "Full"
|
|
103
155
|
msgstr "Volle Breite"
|
|
104
156
|
|
|
@@ -107,13 +159,24 @@ msgstr "Volle Breite"
|
|
|
107
159
|
msgid "GNU GPL license"
|
|
108
160
|
msgstr "GNU GPL Lizenz"
|
|
109
161
|
|
|
162
|
+
#. Default: "Headline"
|
|
163
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
164
|
+
msgid "Headline"
|
|
165
|
+
msgstr ""
|
|
166
|
+
|
|
110
167
|
#. Default: "Hide Button"
|
|
111
168
|
#: components/Blocks/Slider/schema
|
|
112
169
|
msgid "Hide Button"
|
|
113
170
|
msgstr "keinen Button anzeigen"
|
|
114
171
|
|
|
172
|
+
#. Default: "Hide description"
|
|
173
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
174
|
+
msgid "Hide description"
|
|
175
|
+
msgstr ""
|
|
176
|
+
|
|
115
177
|
#. Default: "Home"
|
|
116
178
|
#: components/Breadcrumbs/Breadcrumbs
|
|
179
|
+
#: components/Logo/Logo
|
|
117
180
|
#: components/MobileNavigation/MobileNavigation
|
|
118
181
|
msgid "Home"
|
|
119
182
|
msgstr "Startseite"
|
|
@@ -128,11 +191,36 @@ msgstr "ICS-Download"
|
|
|
128
191
|
msgid "Image"
|
|
129
192
|
msgstr "Bild"
|
|
130
193
|
|
|
194
|
+
#. Default: "Large"
|
|
195
|
+
#: components/Widgets/Size
|
|
196
|
+
msgid "Large"
|
|
197
|
+
msgstr ""
|
|
198
|
+
|
|
199
|
+
#. Default: "Layout"
|
|
200
|
+
#: components/Widgets/BlockWidth
|
|
201
|
+
msgid "Layout"
|
|
202
|
+
msgstr ""
|
|
203
|
+
|
|
131
204
|
#. Default: "Left"
|
|
132
|
-
#: components/Widgets/
|
|
205
|
+
#: components/Widgets/BlockAlignment
|
|
133
206
|
msgid "Left"
|
|
134
207
|
msgstr "Links"
|
|
135
208
|
|
|
209
|
+
#. Default: "Link"
|
|
210
|
+
#: components/Widgets/schema/footerLinksSchema
|
|
211
|
+
msgid "Link"
|
|
212
|
+
msgstr ""
|
|
213
|
+
|
|
214
|
+
#. Default: "List"
|
|
215
|
+
#: index
|
|
216
|
+
msgid "List"
|
|
217
|
+
msgstr "Liste"
|
|
218
|
+
|
|
219
|
+
#. Default: "List with images"
|
|
220
|
+
#: index
|
|
221
|
+
msgid "List with images"
|
|
222
|
+
msgstr "Liste mit Bildern"
|
|
223
|
+
|
|
136
224
|
#. Default: "Location"
|
|
137
225
|
#: components/Blocks/EventMetadata/View
|
|
138
226
|
msgid "Location"
|
|
@@ -143,16 +231,36 @@ msgstr "Veranstaltungsort"
|
|
|
143
231
|
msgid "Log in"
|
|
144
232
|
msgstr "Anmelden"
|
|
145
233
|
|
|
234
|
+
#. Default: "Logo"
|
|
235
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
236
|
+
msgid "Logo"
|
|
237
|
+
msgstr ""
|
|
238
|
+
|
|
239
|
+
#. Default: "Logo image"
|
|
240
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
241
|
+
msgid "Logo image"
|
|
242
|
+
msgstr ""
|
|
243
|
+
|
|
244
|
+
#. Default: "Logo of"
|
|
245
|
+
#: components/Logo/Logo
|
|
246
|
+
msgid "Logo of"
|
|
247
|
+
msgstr ""
|
|
248
|
+
|
|
249
|
+
#. Default: "Medium"
|
|
250
|
+
#: components/Widgets/Size
|
|
251
|
+
msgid "Medium"
|
|
252
|
+
msgstr ""
|
|
253
|
+
|
|
254
|
+
#. Default: "Narrow"
|
|
255
|
+
#: components/Widgets/BlockWidth
|
|
256
|
+
msgid "Narrow"
|
|
257
|
+
msgstr ""
|
|
258
|
+
|
|
146
259
|
#. Default: "Next Page"
|
|
147
260
|
#: components/Blocks/Listing/ListingBody
|
|
148
261
|
msgid "Next Page"
|
|
149
262
|
msgstr "Nächste Seite"
|
|
150
263
|
|
|
151
|
-
#. Default: "No date"
|
|
152
|
-
#: components/Theme/EventView
|
|
153
|
-
msgid "No date"
|
|
154
|
-
msgstr "Kein Datum"
|
|
155
|
-
|
|
156
264
|
#. Default: "No image selected"
|
|
157
265
|
#: components/Blocks/Image/ImageSidebar
|
|
158
266
|
msgid "No image selected"
|
|
@@ -163,6 +271,13 @@ msgstr "Kein Bild ausgewählt"
|
|
|
163
271
|
msgid "No items found in this container."
|
|
164
272
|
msgstr "Keine Elemente im Ordner gefunden."
|
|
165
273
|
|
|
274
|
+
#. Default: "Open in a new tab"
|
|
275
|
+
#: components/Widgets/schema/footerLinksSchema
|
|
276
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
277
|
+
#: components/Widgets/schema/headerActionsSchema
|
|
278
|
+
msgid "Open in a new tab"
|
|
279
|
+
msgstr ""
|
|
280
|
+
|
|
166
281
|
#. Default: "Open menu"
|
|
167
282
|
#: components/MobileNavigation/MobileNavigation
|
|
168
283
|
#: components/Navigation/Navigation
|
|
@@ -181,6 +296,7 @@ msgstr "Telefon"
|
|
|
181
296
|
|
|
182
297
|
#. Default: "Please choose an existing content as source for this element"
|
|
183
298
|
#: components/Blocks/Slider/DefaultBody
|
|
299
|
+
#: components/Blocks/Teaser/DefaultBody
|
|
184
300
|
msgid "Please choose an existing content as source for this element"
|
|
185
301
|
msgstr "Bitte wählen sie einen bestehenden Inhalt als Quelle für dieses Element"
|
|
186
302
|
|
|
@@ -214,13 +330,19 @@ msgstr "Vorherige Seite"
|
|
|
214
330
|
msgid "Register"
|
|
215
331
|
msgstr "Registrieren"
|
|
216
332
|
|
|
333
|
+
#. Default: "Remove item"
|
|
334
|
+
#: components/Widgets/BlocksObject
|
|
335
|
+
#: components/Widgets/ObjectList
|
|
336
|
+
msgid "Remove item"
|
|
337
|
+
msgstr ""
|
|
338
|
+
|
|
217
339
|
#. Default: "Result"
|
|
218
340
|
#: components/Blocks/Listing/ListingBody
|
|
219
341
|
msgid "Result"
|
|
220
342
|
msgstr "Ergebnis"
|
|
221
343
|
|
|
222
344
|
#. Default: "Right"
|
|
223
|
-
#: components/Widgets/
|
|
345
|
+
#: components/Widgets/BlockAlignment
|
|
224
346
|
msgid "Right"
|
|
225
347
|
msgstr "Rechts"
|
|
226
348
|
|
|
@@ -254,16 +376,32 @@ msgstr "Ergebnisse"
|
|
|
254
376
|
msgid "Searched for"
|
|
255
377
|
msgstr "Gesucht für"
|
|
256
378
|
|
|
257
|
-
#. Default: "
|
|
258
|
-
#: components/
|
|
259
|
-
msgid "
|
|
260
|
-
msgstr "
|
|
379
|
+
#. Default: "Settings"
|
|
380
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
381
|
+
msgid "Settings"
|
|
382
|
+
msgstr ""
|
|
383
|
+
|
|
384
|
+
#. Default: "Short line"
|
|
385
|
+
#: components/Blocks/Separator/schema
|
|
386
|
+
msgid "Short line"
|
|
387
|
+
msgstr ""
|
|
388
|
+
|
|
389
|
+
#. Default: "Show item"
|
|
390
|
+
#: components/Widgets/BlocksObject
|
|
391
|
+
#: components/Widgets/ObjectList
|
|
392
|
+
msgid "Show item"
|
|
393
|
+
msgstr ""
|
|
261
394
|
|
|
262
395
|
#. Default: "Sitemap"
|
|
263
396
|
#: index
|
|
264
397
|
msgid "Sitemap"
|
|
265
398
|
msgstr "Übersicht"
|
|
266
399
|
|
|
400
|
+
#. Default: "Small"
|
|
401
|
+
#: components/Widgets/Size
|
|
402
|
+
msgid "Small"
|
|
403
|
+
msgstr ""
|
|
404
|
+
|
|
267
405
|
#. Default: "Sorting"
|
|
268
406
|
#: components/Blocks/Search/TopSideFacets
|
|
269
407
|
msgid "Sorting"
|
|
@@ -284,6 +422,13 @@ msgstr "Anfang"
|
|
|
284
422
|
msgid "Switch to"
|
|
285
423
|
msgstr ""
|
|
286
424
|
|
|
425
|
+
#. Default: "Target"
|
|
426
|
+
#: components/Widgets/schema/footerLinksSchema
|
|
427
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
428
|
+
#: components/Widgets/schema/headerActionsSchema
|
|
429
|
+
msgid "Target"
|
|
430
|
+
msgstr ""
|
|
431
|
+
|
|
287
432
|
#. Default: "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends."
|
|
288
433
|
#: components/Footer/Footer
|
|
289
434
|
msgid "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends."
|
|
@@ -291,24 +436,17 @@ msgstr ""
|
|
|
291
436
|
|
|
292
437
|
#. Default: "Title"
|
|
293
438
|
#: components/Blocks/Image/schema
|
|
439
|
+
#: components/Widgets/schema/footerLinksSchema
|
|
440
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
441
|
+
#: components/Widgets/schema/headerActionsSchema
|
|
294
442
|
msgid "Title"
|
|
295
443
|
msgstr "Titel"
|
|
296
444
|
|
|
297
|
-
#. Default: "Uploading image"
|
|
298
|
-
#: components/Blocks/Image/Edit
|
|
299
|
-
msgid "Uploading image"
|
|
300
|
-
msgstr "Bild hochladen"
|
|
301
|
-
|
|
302
445
|
#. Default: "Website"
|
|
303
446
|
#: components/Blocks/EventMetadata/View
|
|
304
447
|
msgid "Website"
|
|
305
448
|
msgstr "Webseite"
|
|
306
449
|
|
|
307
|
-
#. Default: "Wide"
|
|
308
|
-
#: components/Widgets/AlignWidget
|
|
309
|
-
msgid "Wide"
|
|
310
|
-
msgstr "Breit"
|
|
311
|
-
|
|
312
450
|
#. Default: "Clear image"
|
|
313
451
|
#: components/Blocks/Image/ImageSidebar
|
|
314
452
|
msgid "image_block_clear"
|
|
@@ -333,8 +471,3 @@ msgstr "Mehr Informationen"
|
|
|
333
471
|
#: components/Blocks/Listing/ListingBody
|
|
334
472
|
msgid "of"
|
|
335
473
|
msgstr "von"
|
|
336
|
-
|
|
337
|
-
#. Default: ""
|
|
338
|
-
#: components/Header/Header
|
|
339
|
-
msgid "siteLabel"
|
|
340
|
-
msgstr ""
|