@kitconcept/volto-light-theme 6.0.0-alpha.21 → 6.0.0-alpha.22
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 +21 -3
- package/CHANGELOG.md +25 -0
- package/locales/de/LC_MESSAGES/volto.po +62 -72
- package/locales/en/LC_MESSAGES/volto.po +62 -72
- package/locales/es/LC_MESSAGES/volto.po +62 -72
- package/locales/eu/LC_MESSAGES/volto.po +62 -72
- package/locales/pt_BR/volto.po +62 -72
- package/locales/volto.pot +63 -73
- package/package.json +3 -2
- package/src/components/Footer/{FooterLinks.tsx → ColumnLinks.tsx} +6 -6
- package/src/components/Footer/Footer.tsx +32 -0
- package/src/components/Footer/IconLinkList.tsx +69 -0
- package/src/components/Footer/LinkList.tsx +35 -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 +69 -0
- package/src/components/Footer/slots/FooterLogos.tsx +44 -0
- package/src/components/Header/Header.tsx +257 -0
- package/src/components/Logo/{Logo.jsx → Logo.tsx} +42 -11
- package/src/components/{Footer/FooterLogos.tsx → LogosContainer/LogosContainer.tsx} +12 -29
- package/src/components/Widgets/ColorContrastChecker.tsx +11 -2
- package/src/components/Widgets/ObjectList.tsx +13 -6
- package/src/components/Widgets/schema/iconLinkListSchema.ts +98 -0
- package/src/config/settings.ts +26 -4
- package/src/config/slots.ts +29 -1
- package/src/config/widgets.ts +7 -0
- package/src/helpers/useLiveData.ts +29 -0
- package/src/index.ts +2 -0
- package/src/theme/_footer.scss +281 -45
- package/src/theme/_widgets.scss +8 -0
- package/src/types.d.ts +34 -5
- package/tsconfig.json +1 -1
- package/src/components/Footer/Footer.jsx +0 -108
- package/src/components/Header/Header.jsx +0 -211
package/.changelog.draft
CHANGED
|
@@ -1,8 +1,26 @@
|
|
|
1
|
-
## 6.0.0-alpha.
|
|
1
|
+
## 6.0.0-alpha.22 (2025-04-29)
|
|
2
|
+
|
|
3
|
+
### Breaking
|
|
4
|
+
|
|
5
|
+
- Remove `Anontools` from the headers.
|
|
6
|
+
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)
|
|
7
|
+
- Updated the footer structure and look and feel:
|
|
8
|
+
- Follow us, powered by `@plonegovbr/volto-social-media`
|
|
9
|
+
- Footer links
|
|
10
|
+
- Colophon
|
|
11
|
+
|
|
12
|
+
All of them are powered by their slots, so they are customizable.
|
|
13
|
+
|
|
14
|
+
@sneridagh [#525](https://github.com/kitconcept/volto-light-theme/pull/525)
|
|
15
|
+
|
|
16
|
+
### Feature
|
|
17
|
+
|
|
18
|
+
- Allow `intranet_flag` in both headers. @sneridagh [#524](https://github.com/kitconcept/volto-light-theme/pull/524)
|
|
19
|
+
- Added distribution core footer, only active if the `kitconcept.distributions.footer` is installed. @sneridagh [#525](https://github.com/kitconcept/volto-light-theme/pull/525)
|
|
2
20
|
|
|
3
21
|
### Bugfix
|
|
4
22
|
|
|
5
|
-
-
|
|
6
|
-
-
|
|
23
|
+
- Minor typo fix in color contrast check message. @danalvrz [#526](https://github.com/kitconcept/volto-light-theme/pull/526)
|
|
24
|
+
- Fix customized object list widget when data doesn't contain a value yet. @davisagli [#527](https://github.com/kitconcept/volto-light-theme/pull/527)
|
|
7
25
|
|
|
8
26
|
|
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,31 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 6.0.0-alpha.22 (2025-04-29)
|
|
12
|
+
|
|
13
|
+
### Breaking
|
|
14
|
+
|
|
15
|
+
- Remove `Anontools` from the headers.
|
|
16
|
+
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)
|
|
17
|
+
- Updated the footer structure and look and feel:
|
|
18
|
+
- Follow us, powered by `@plonegovbr/volto-social-media`
|
|
19
|
+
- Footer links
|
|
20
|
+
- Colophon
|
|
21
|
+
|
|
22
|
+
All of them are powered by their slots, so they are customizable.
|
|
23
|
+
|
|
24
|
+
@sneridagh [#525](https://github.com/kitconcept/volto-light-theme/pull/525)
|
|
25
|
+
|
|
26
|
+
### Feature
|
|
27
|
+
|
|
28
|
+
- Allow `intranet_flag` in both headers. @sneridagh [#524](https://github.com/kitconcept/volto-light-theme/pull/524)
|
|
29
|
+
- Added distribution core footer, only active if the `kitconcept.distributions.footer` is installed. @sneridagh [#525](https://github.com/kitconcept/volto-light-theme/pull/525)
|
|
30
|
+
|
|
31
|
+
### Bugfix
|
|
32
|
+
|
|
33
|
+
- Minor typo fix in color contrast check message. @danalvrz [#526](https://github.com/kitconcept/volto-light-theme/pull/526)
|
|
34
|
+
- Fix customized object list widget when data doesn't contain a value yet. @davisagli [#527](https://github.com/kitconcept/volto-light-theme/pull/527)
|
|
35
|
+
|
|
11
36
|
## 6.0.0-alpha.21 (2025-04-02)
|
|
12
37
|
|
|
13
38
|
### Bugfix
|
|
@@ -16,18 +16,29 @@ 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
|
+
|
|
19
24
|
#. Default: "Add"
|
|
20
|
-
#: components/Widgets/
|
|
25
|
+
#: components/Widgets/BlocksObject
|
|
26
|
+
#: components/Widgets/ObjectList
|
|
21
27
|
msgid "Add (object list)"
|
|
22
28
|
msgstr ""
|
|
23
29
|
|
|
30
|
+
#. Default: "Add action"
|
|
31
|
+
#: components/Widgets/schema/headerActionsSchema
|
|
32
|
+
msgid "Add action"
|
|
33
|
+
msgstr ""
|
|
34
|
+
|
|
24
35
|
#. Default: "Add link"
|
|
25
|
-
#: components/Widgets/
|
|
36
|
+
#: components/Widgets/schema/footerLinksSchema
|
|
26
37
|
msgid "Add link"
|
|
27
38
|
msgstr ""
|
|
28
39
|
|
|
29
40
|
#. Default: "Add logo"
|
|
30
|
-
#: components/Widgets/
|
|
41
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
31
42
|
msgid "Add logo"
|
|
32
43
|
msgstr ""
|
|
33
44
|
|
|
@@ -38,7 +49,7 @@ msgid "Alignment"
|
|
|
38
49
|
msgstr ""
|
|
39
50
|
|
|
40
51
|
#. Default: "Alt text"
|
|
41
|
-
#: components/Widgets/
|
|
52
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
42
53
|
msgid "Alt text"
|
|
43
54
|
msgstr ""
|
|
44
55
|
|
|
@@ -70,8 +81,7 @@ msgid "Button text"
|
|
|
70
81
|
msgstr "Button Text"
|
|
71
82
|
|
|
72
83
|
#. Default: "Center"
|
|
73
|
-
#: components/Widgets/
|
|
74
|
-
#: components/Widgets/BlockAlignmentWidget
|
|
84
|
+
#: components/Widgets/BlockAlignment
|
|
75
85
|
msgid "Center"
|
|
76
86
|
msgstr "Mittig"
|
|
77
87
|
|
|
@@ -82,10 +92,16 @@ msgid "Close menu"
|
|
|
82
92
|
msgstr "Menü schließen"
|
|
83
93
|
|
|
84
94
|
#. Default: "Collapse item"
|
|
85
|
-
#: components/Widgets/
|
|
95
|
+
#: components/Widgets/BlocksObject
|
|
96
|
+
#: components/Widgets/ObjectList
|
|
86
97
|
msgid "Collapse item"
|
|
87
98
|
msgstr ""
|
|
88
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
|
+
|
|
89
105
|
#. Default: "Contact"
|
|
90
106
|
#: components/Blocks/EventMetadata/View
|
|
91
107
|
msgid "Contact"
|
|
@@ -102,14 +118,13 @@ msgid "Copyright"
|
|
|
102
118
|
msgstr "Urheberrechte"
|
|
103
119
|
|
|
104
120
|
#. Default: "Default"
|
|
105
|
-
#: components/Widgets/
|
|
121
|
+
#: components/Widgets/BlockWidth
|
|
106
122
|
msgid "Default"
|
|
107
123
|
msgstr ""
|
|
108
124
|
|
|
109
125
|
#. Default: "Description"
|
|
110
126
|
#: components/Blocks/Image/schema
|
|
111
|
-
#: components/Widgets/
|
|
112
|
-
#: components/Widgets/FooterLogosWidget
|
|
127
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
113
128
|
msgid "Description"
|
|
114
129
|
msgstr "Beschreibung"
|
|
115
130
|
|
|
@@ -119,7 +134,8 @@ msgid "Distributed under the {license}."
|
|
|
119
134
|
msgstr "Vertrieben unter {license}"
|
|
120
135
|
|
|
121
136
|
#. Default: "Empty object list"
|
|
122
|
-
#: components/Widgets/
|
|
137
|
+
#: components/Widgets/BlocksObject
|
|
138
|
+
#: components/Widgets/ObjectList
|
|
123
139
|
msgid "Empty object list"
|
|
124
140
|
msgstr ""
|
|
125
141
|
|
|
@@ -134,8 +150,7 @@ msgid "Flag align"
|
|
|
134
150
|
msgstr ""
|
|
135
151
|
|
|
136
152
|
#. Default: "Full"
|
|
137
|
-
#: components/Widgets/
|
|
138
|
-
#: components/Widgets/BlockWidthWidget
|
|
153
|
+
#: components/Widgets/BlockWidth
|
|
139
154
|
msgid "Full"
|
|
140
155
|
msgstr "Volle Breite"
|
|
141
156
|
|
|
@@ -145,8 +160,7 @@ msgid "GNU GPL license"
|
|
|
145
160
|
msgstr "GNU GPL Lizenz"
|
|
146
161
|
|
|
147
162
|
#. Default: "Headline"
|
|
148
|
-
#: components/Widgets/
|
|
149
|
-
#: components/Widgets/FooterLogosWidget
|
|
163
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
150
164
|
msgid "Headline"
|
|
151
165
|
msgstr ""
|
|
152
166
|
|
|
@@ -156,8 +170,7 @@ msgid "Hide Button"
|
|
|
156
170
|
msgstr "keinen Button anzeigen"
|
|
157
171
|
|
|
158
172
|
#. Default: "Hide description"
|
|
159
|
-
#: components/Widgets/
|
|
160
|
-
#: components/Widgets/FooterLogosWidget
|
|
173
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
161
174
|
msgid "Hide description"
|
|
162
175
|
msgstr ""
|
|
163
176
|
|
|
@@ -173,51 +186,31 @@ msgstr "Startseite"
|
|
|
173
186
|
msgid "ICS-Download"
|
|
174
187
|
msgstr "ICS-Download"
|
|
175
188
|
|
|
176
|
-
#. Default: "Icon"
|
|
177
|
-
#: components/Widgets/FooterLinksWidget
|
|
178
|
-
#: components/Widgets/FooterLogosWidget
|
|
179
|
-
msgid "Icon"
|
|
180
|
-
msgstr ""
|
|
181
|
-
|
|
182
189
|
#. Default: "Image"
|
|
183
190
|
#: components/Blocks/Image/ImageSidebar
|
|
184
191
|
msgid "Image"
|
|
185
192
|
msgstr "Bild"
|
|
186
193
|
|
|
187
|
-
#. Default: "Item"
|
|
188
|
-
#: components/Widgets/FooterLinksWidget
|
|
189
|
-
#: components/Widgets/FooterLogosWidget
|
|
190
|
-
msgid "Item"
|
|
191
|
-
msgstr ""
|
|
192
|
-
|
|
193
|
-
#. Default: "Items"
|
|
194
|
-
#: components/Widgets/FooterLinksWidget
|
|
195
|
-
#: components/Widgets/FooterLogosWidget
|
|
196
|
-
msgid "Items"
|
|
197
|
-
msgstr ""
|
|
198
|
-
|
|
199
|
-
#. Default: "Items to show"
|
|
200
|
-
#: components/Widgets/FooterLinksWidget
|
|
201
|
-
#: components/Widgets/FooterLogosWidget
|
|
202
|
-
msgid "Items to show"
|
|
203
|
-
msgstr ""
|
|
204
|
-
|
|
205
194
|
#. Default: "Large"
|
|
206
|
-
#: components/Widgets/
|
|
195
|
+
#: components/Widgets/Size
|
|
207
196
|
msgid "Large"
|
|
208
197
|
msgstr ""
|
|
209
198
|
|
|
210
199
|
#. Default: "Layout"
|
|
211
|
-
#: components/Widgets/
|
|
200
|
+
#: components/Widgets/BlockWidth
|
|
212
201
|
msgid "Layout"
|
|
213
202
|
msgstr ""
|
|
214
203
|
|
|
215
204
|
#. Default: "Left"
|
|
216
|
-
#: components/Widgets/
|
|
217
|
-
#: components/Widgets/BlockAlignmentWidget
|
|
205
|
+
#: components/Widgets/BlockAlignment
|
|
218
206
|
msgid "Left"
|
|
219
207
|
msgstr "Links"
|
|
220
208
|
|
|
209
|
+
#. Default: "Link"
|
|
210
|
+
#: components/Widgets/schema/footerLinksSchema
|
|
211
|
+
msgid "Link"
|
|
212
|
+
msgstr ""
|
|
213
|
+
|
|
221
214
|
#. Default: "List"
|
|
222
215
|
#: index
|
|
223
216
|
msgid "List"
|
|
@@ -238,9 +231,13 @@ msgstr "Veranstaltungsort"
|
|
|
238
231
|
msgid "Log in"
|
|
239
232
|
msgstr "Anmelden"
|
|
240
233
|
|
|
234
|
+
#. Default: "Logo"
|
|
235
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
236
|
+
msgid "Logo"
|
|
237
|
+
msgstr ""
|
|
238
|
+
|
|
241
239
|
#. Default: "Logo image"
|
|
242
|
-
#: components/Widgets/
|
|
243
|
-
#: components/Widgets/FooterLogosWidget
|
|
240
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
244
241
|
msgid "Logo image"
|
|
245
242
|
msgstr ""
|
|
246
243
|
|
|
@@ -250,12 +247,12 @@ msgid "Logo of"
|
|
|
250
247
|
msgstr ""
|
|
251
248
|
|
|
252
249
|
#. Default: "Medium"
|
|
253
|
-
#: components/Widgets/
|
|
250
|
+
#: components/Widgets/Size
|
|
254
251
|
msgid "Medium"
|
|
255
252
|
msgstr ""
|
|
256
253
|
|
|
257
254
|
#. Default: "Narrow"
|
|
258
|
-
#: components/Widgets/
|
|
255
|
+
#: components/Widgets/BlockWidth
|
|
259
256
|
msgid "Narrow"
|
|
260
257
|
msgstr ""
|
|
261
258
|
|
|
@@ -275,8 +272,9 @@ msgid "No items found in this container."
|
|
|
275
272
|
msgstr "Keine Elemente im Ordner gefunden."
|
|
276
273
|
|
|
277
274
|
#. Default: "Open in a new tab"
|
|
278
|
-
#: components/Widgets/
|
|
279
|
-
#: components/Widgets/
|
|
275
|
+
#: components/Widgets/schema/footerLinksSchema
|
|
276
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
277
|
+
#: components/Widgets/schema/headerActionsSchema
|
|
280
278
|
msgid "Open in a new tab"
|
|
281
279
|
msgstr ""
|
|
282
280
|
|
|
@@ -333,7 +331,8 @@ msgid "Register"
|
|
|
333
331
|
msgstr "Registrieren"
|
|
334
332
|
|
|
335
333
|
#. Default: "Remove item"
|
|
336
|
-
#: components/Widgets/
|
|
334
|
+
#: components/Widgets/BlocksObject
|
|
335
|
+
#: components/Widgets/ObjectList
|
|
337
336
|
msgid "Remove item"
|
|
338
337
|
msgstr ""
|
|
339
338
|
|
|
@@ -343,8 +342,7 @@ msgid "Result"
|
|
|
343
342
|
msgstr "Ergebnis"
|
|
344
343
|
|
|
345
344
|
#. Default: "Right"
|
|
346
|
-
#: components/Widgets/
|
|
347
|
-
#: components/Widgets/BlockAlignmentWidget
|
|
345
|
+
#: components/Widgets/BlockAlignment
|
|
348
346
|
msgid "Right"
|
|
349
347
|
msgstr "Rechts"
|
|
350
348
|
|
|
@@ -379,8 +377,7 @@ msgid "Searched for"
|
|
|
379
377
|
msgstr "Gesucht für"
|
|
380
378
|
|
|
381
379
|
#. Default: "Settings"
|
|
382
|
-
#: components/Widgets/
|
|
383
|
-
#: components/Widgets/FooterLogosWidget
|
|
380
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
384
381
|
msgid "Settings"
|
|
385
382
|
msgstr ""
|
|
386
383
|
|
|
@@ -390,7 +387,8 @@ msgid "Short line"
|
|
|
390
387
|
msgstr ""
|
|
391
388
|
|
|
392
389
|
#. Default: "Show item"
|
|
393
|
-
#: components/Widgets/
|
|
390
|
+
#: components/Widgets/BlocksObject
|
|
391
|
+
#: components/Widgets/ObjectList
|
|
394
392
|
msgid "Show item"
|
|
395
393
|
msgstr ""
|
|
396
394
|
|
|
@@ -400,7 +398,7 @@ msgid "Sitemap"
|
|
|
400
398
|
msgstr "Übersicht"
|
|
401
399
|
|
|
402
400
|
#. Default: "Small"
|
|
403
|
-
#: components/Widgets/
|
|
401
|
+
#: components/Widgets/Size
|
|
404
402
|
msgid "Small"
|
|
405
403
|
msgstr ""
|
|
406
404
|
|
|
@@ -425,8 +423,9 @@ msgid "Switch to"
|
|
|
425
423
|
msgstr ""
|
|
426
424
|
|
|
427
425
|
#. Default: "Target"
|
|
428
|
-
#: components/Widgets/
|
|
429
|
-
#: components/Widgets/
|
|
426
|
+
#: components/Widgets/schema/footerLinksSchema
|
|
427
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
428
|
+
#: components/Widgets/schema/headerActionsSchema
|
|
430
429
|
msgid "Target"
|
|
431
430
|
msgstr ""
|
|
432
431
|
|
|
@@ -437,8 +436,9 @@ msgstr ""
|
|
|
437
436
|
|
|
438
437
|
#. Default: "Title"
|
|
439
438
|
#: components/Blocks/Image/schema
|
|
440
|
-
#: components/Widgets/
|
|
441
|
-
#: components/Widgets/
|
|
439
|
+
#: components/Widgets/schema/footerLinksSchema
|
|
440
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
441
|
+
#: components/Widgets/schema/headerActionsSchema
|
|
442
442
|
msgid "Title"
|
|
443
443
|
msgstr "Titel"
|
|
444
444
|
|
|
@@ -447,11 +447,6 @@ msgstr "Titel"
|
|
|
447
447
|
msgid "Website"
|
|
448
448
|
msgstr "Webseite"
|
|
449
449
|
|
|
450
|
-
#. Default: "Wide"
|
|
451
|
-
#: components/Widgets/AlignWidget
|
|
452
|
-
msgid "Wide"
|
|
453
|
-
msgstr "Breit"
|
|
454
|
-
|
|
455
450
|
#. Default: "Clear image"
|
|
456
451
|
#: components/Blocks/Image/ImageSidebar
|
|
457
452
|
msgid "image_block_clear"
|
|
@@ -476,8 +471,3 @@ msgstr "Mehr Informationen"
|
|
|
476
471
|
#: components/Blocks/Listing/ListingBody
|
|
477
472
|
msgid "of"
|
|
478
473
|
msgstr "von"
|
|
479
|
-
|
|
480
|
-
#. Default: ""
|
|
481
|
-
#: components/Header/Header
|
|
482
|
-
msgid "siteLabel"
|
|
483
|
-
msgstr ""
|
|
@@ -11,18 +11,29 @@ msgstr ""
|
|
|
11
11
|
"Content-Transfer-Encoding: \n"
|
|
12
12
|
"Plural-Forms: \n"
|
|
13
13
|
|
|
14
|
+
#. Default: "Action"
|
|
15
|
+
#: components/Widgets/schema/headerActionsSchema
|
|
16
|
+
msgid "Action"
|
|
17
|
+
msgstr ""
|
|
18
|
+
|
|
14
19
|
#. Default: "Add"
|
|
15
|
-
#: components/Widgets/
|
|
20
|
+
#: components/Widgets/BlocksObject
|
|
21
|
+
#: components/Widgets/ObjectList
|
|
16
22
|
msgid "Add (object list)"
|
|
17
23
|
msgstr ""
|
|
18
24
|
|
|
25
|
+
#. Default: "Add action"
|
|
26
|
+
#: components/Widgets/schema/headerActionsSchema
|
|
27
|
+
msgid "Add action"
|
|
28
|
+
msgstr ""
|
|
29
|
+
|
|
19
30
|
#. Default: "Add link"
|
|
20
|
-
#: components/Widgets/
|
|
31
|
+
#: components/Widgets/schema/footerLinksSchema
|
|
21
32
|
msgid "Add link"
|
|
22
33
|
msgstr ""
|
|
23
34
|
|
|
24
35
|
#. Default: "Add logo"
|
|
25
|
-
#: components/Widgets/
|
|
36
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
26
37
|
msgid "Add logo"
|
|
27
38
|
msgstr ""
|
|
28
39
|
|
|
@@ -33,7 +44,7 @@ msgid "Alignment"
|
|
|
33
44
|
msgstr ""
|
|
34
45
|
|
|
35
46
|
#. Default: "Alt text"
|
|
36
|
-
#: components/Widgets/
|
|
47
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
37
48
|
msgid "Alt text"
|
|
38
49
|
msgstr ""
|
|
39
50
|
|
|
@@ -65,8 +76,7 @@ msgid "Button text"
|
|
|
65
76
|
msgstr ""
|
|
66
77
|
|
|
67
78
|
#. Default: "Center"
|
|
68
|
-
#: components/Widgets/
|
|
69
|
-
#: components/Widgets/BlockAlignmentWidget
|
|
79
|
+
#: components/Widgets/BlockAlignment
|
|
70
80
|
msgid "Center"
|
|
71
81
|
msgstr ""
|
|
72
82
|
|
|
@@ -77,10 +87,16 @@ msgid "Close menu"
|
|
|
77
87
|
msgstr ""
|
|
78
88
|
|
|
79
89
|
#. Default: "Collapse item"
|
|
80
|
-
#: components/Widgets/
|
|
90
|
+
#: components/Widgets/BlocksObject
|
|
91
|
+
#: components/Widgets/ObjectList
|
|
81
92
|
msgid "Collapse item"
|
|
82
93
|
msgstr ""
|
|
83
94
|
|
|
95
|
+
#. Default: "The color contrast ratio {contrastRatio}:1 might not be accessible for all. WCAG Level: {complianceLevel}"
|
|
96
|
+
#: components/Widgets/ColorContrastChecker
|
|
97
|
+
msgid "ColorContrastCheckerMessage"
|
|
98
|
+
msgstr ""
|
|
99
|
+
|
|
84
100
|
#. Default: "Contact"
|
|
85
101
|
#: components/Blocks/EventMetadata/View
|
|
86
102
|
msgid "Contact"
|
|
@@ -97,14 +113,13 @@ msgid "Copyright"
|
|
|
97
113
|
msgstr ""
|
|
98
114
|
|
|
99
115
|
#. Default: "Default"
|
|
100
|
-
#: components/Widgets/
|
|
116
|
+
#: components/Widgets/BlockWidth
|
|
101
117
|
msgid "Default"
|
|
102
118
|
msgstr ""
|
|
103
119
|
|
|
104
120
|
#. Default: "Description"
|
|
105
121
|
#: components/Blocks/Image/schema
|
|
106
|
-
#: components/Widgets/
|
|
107
|
-
#: components/Widgets/FooterLogosWidget
|
|
122
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
108
123
|
msgid "Description"
|
|
109
124
|
msgstr ""
|
|
110
125
|
|
|
@@ -114,7 +129,8 @@ msgid "Distributed under the {license}."
|
|
|
114
129
|
msgstr ""
|
|
115
130
|
|
|
116
131
|
#. Default: "Empty object list"
|
|
117
|
-
#: components/Widgets/
|
|
132
|
+
#: components/Widgets/BlocksObject
|
|
133
|
+
#: components/Widgets/ObjectList
|
|
118
134
|
msgid "Empty object list"
|
|
119
135
|
msgstr ""
|
|
120
136
|
|
|
@@ -129,8 +145,7 @@ msgid "Flag align"
|
|
|
129
145
|
msgstr ""
|
|
130
146
|
|
|
131
147
|
#. Default: "Full"
|
|
132
|
-
#: components/Widgets/
|
|
133
|
-
#: components/Widgets/BlockWidthWidget
|
|
148
|
+
#: components/Widgets/BlockWidth
|
|
134
149
|
msgid "Full"
|
|
135
150
|
msgstr ""
|
|
136
151
|
|
|
@@ -140,8 +155,7 @@ msgid "GNU GPL license"
|
|
|
140
155
|
msgstr ""
|
|
141
156
|
|
|
142
157
|
#. Default: "Headline"
|
|
143
|
-
#: components/Widgets/
|
|
144
|
-
#: components/Widgets/FooterLogosWidget
|
|
158
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
145
159
|
msgid "Headline"
|
|
146
160
|
msgstr ""
|
|
147
161
|
|
|
@@ -151,8 +165,7 @@ msgid "Hide Button"
|
|
|
151
165
|
msgstr ""
|
|
152
166
|
|
|
153
167
|
#. Default: "Hide description"
|
|
154
|
-
#: components/Widgets/
|
|
155
|
-
#: components/Widgets/FooterLogosWidget
|
|
168
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
156
169
|
msgid "Hide description"
|
|
157
170
|
msgstr ""
|
|
158
171
|
|
|
@@ -168,51 +181,31 @@ msgstr ""
|
|
|
168
181
|
msgid "ICS-Download"
|
|
169
182
|
msgstr ""
|
|
170
183
|
|
|
171
|
-
#. Default: "Icon"
|
|
172
|
-
#: components/Widgets/FooterLinksWidget
|
|
173
|
-
#: components/Widgets/FooterLogosWidget
|
|
174
|
-
msgid "Icon"
|
|
175
|
-
msgstr ""
|
|
176
|
-
|
|
177
184
|
#. Default: "Image"
|
|
178
185
|
#: components/Blocks/Image/ImageSidebar
|
|
179
186
|
msgid "Image"
|
|
180
187
|
msgstr ""
|
|
181
188
|
|
|
182
|
-
#. Default: "Item"
|
|
183
|
-
#: components/Widgets/FooterLinksWidget
|
|
184
|
-
#: components/Widgets/FooterLogosWidget
|
|
185
|
-
msgid "Item"
|
|
186
|
-
msgstr ""
|
|
187
|
-
|
|
188
|
-
#. Default: "Items"
|
|
189
|
-
#: components/Widgets/FooterLinksWidget
|
|
190
|
-
#: components/Widgets/FooterLogosWidget
|
|
191
|
-
msgid "Items"
|
|
192
|
-
msgstr ""
|
|
193
|
-
|
|
194
|
-
#. Default: "Items to show"
|
|
195
|
-
#: components/Widgets/FooterLinksWidget
|
|
196
|
-
#: components/Widgets/FooterLogosWidget
|
|
197
|
-
msgid "Items to show"
|
|
198
|
-
msgstr ""
|
|
199
|
-
|
|
200
189
|
#. Default: "Large"
|
|
201
|
-
#: components/Widgets/
|
|
190
|
+
#: components/Widgets/Size
|
|
202
191
|
msgid "Large"
|
|
203
192
|
msgstr ""
|
|
204
193
|
|
|
205
194
|
#. Default: "Layout"
|
|
206
|
-
#: components/Widgets/
|
|
195
|
+
#: components/Widgets/BlockWidth
|
|
207
196
|
msgid "Layout"
|
|
208
197
|
msgstr ""
|
|
209
198
|
|
|
210
199
|
#. Default: "Left"
|
|
211
|
-
#: components/Widgets/
|
|
212
|
-
#: components/Widgets/BlockAlignmentWidget
|
|
200
|
+
#: components/Widgets/BlockAlignment
|
|
213
201
|
msgid "Left"
|
|
214
202
|
msgstr ""
|
|
215
203
|
|
|
204
|
+
#. Default: "Link"
|
|
205
|
+
#: components/Widgets/schema/footerLinksSchema
|
|
206
|
+
msgid "Link"
|
|
207
|
+
msgstr ""
|
|
208
|
+
|
|
216
209
|
#. Default: "List"
|
|
217
210
|
#: index
|
|
218
211
|
msgid "List"
|
|
@@ -233,9 +226,13 @@ msgstr ""
|
|
|
233
226
|
msgid "Log in"
|
|
234
227
|
msgstr ""
|
|
235
228
|
|
|
229
|
+
#. Default: "Logo"
|
|
230
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
231
|
+
msgid "Logo"
|
|
232
|
+
msgstr ""
|
|
233
|
+
|
|
236
234
|
#. Default: "Logo image"
|
|
237
|
-
#: components/Widgets/
|
|
238
|
-
#: components/Widgets/FooterLogosWidget
|
|
235
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
239
236
|
msgid "Logo image"
|
|
240
237
|
msgstr ""
|
|
241
238
|
|
|
@@ -245,12 +242,12 @@ msgid "Logo of"
|
|
|
245
242
|
msgstr ""
|
|
246
243
|
|
|
247
244
|
#. Default: "Medium"
|
|
248
|
-
#: components/Widgets/
|
|
245
|
+
#: components/Widgets/Size
|
|
249
246
|
msgid "Medium"
|
|
250
247
|
msgstr ""
|
|
251
248
|
|
|
252
249
|
#. Default: "Narrow"
|
|
253
|
-
#: components/Widgets/
|
|
250
|
+
#: components/Widgets/BlockWidth
|
|
254
251
|
msgid "Narrow"
|
|
255
252
|
msgstr ""
|
|
256
253
|
|
|
@@ -270,8 +267,9 @@ msgid "No items found in this container."
|
|
|
270
267
|
msgstr ""
|
|
271
268
|
|
|
272
269
|
#. Default: "Open in a new tab"
|
|
273
|
-
#: components/Widgets/
|
|
274
|
-
#: components/Widgets/
|
|
270
|
+
#: components/Widgets/schema/footerLinksSchema
|
|
271
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
272
|
+
#: components/Widgets/schema/headerActionsSchema
|
|
275
273
|
msgid "Open in a new tab"
|
|
276
274
|
msgstr ""
|
|
277
275
|
|
|
@@ -328,7 +326,8 @@ msgid "Register"
|
|
|
328
326
|
msgstr ""
|
|
329
327
|
|
|
330
328
|
#. Default: "Remove item"
|
|
331
|
-
#: components/Widgets/
|
|
329
|
+
#: components/Widgets/BlocksObject
|
|
330
|
+
#: components/Widgets/ObjectList
|
|
332
331
|
msgid "Remove item"
|
|
333
332
|
msgstr ""
|
|
334
333
|
|
|
@@ -338,8 +337,7 @@ msgid "Result"
|
|
|
338
337
|
msgstr ""
|
|
339
338
|
|
|
340
339
|
#. Default: "Right"
|
|
341
|
-
#: components/Widgets/
|
|
342
|
-
#: components/Widgets/BlockAlignmentWidget
|
|
340
|
+
#: components/Widgets/BlockAlignment
|
|
343
341
|
msgid "Right"
|
|
344
342
|
msgstr ""
|
|
345
343
|
|
|
@@ -374,8 +372,7 @@ msgid "Searched for"
|
|
|
374
372
|
msgstr ""
|
|
375
373
|
|
|
376
374
|
#. Default: "Settings"
|
|
377
|
-
#: components/Widgets/
|
|
378
|
-
#: components/Widgets/FooterLogosWidget
|
|
375
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
379
376
|
msgid "Settings"
|
|
380
377
|
msgstr ""
|
|
381
378
|
|
|
@@ -385,7 +382,8 @@ msgid "Short line"
|
|
|
385
382
|
msgstr ""
|
|
386
383
|
|
|
387
384
|
#. Default: "Show item"
|
|
388
|
-
#: components/Widgets/
|
|
385
|
+
#: components/Widgets/BlocksObject
|
|
386
|
+
#: components/Widgets/ObjectList
|
|
389
387
|
msgid "Show item"
|
|
390
388
|
msgstr ""
|
|
391
389
|
|
|
@@ -395,7 +393,7 @@ msgid "Sitemap"
|
|
|
395
393
|
msgstr ""
|
|
396
394
|
|
|
397
395
|
#. Default: "Small"
|
|
398
|
-
#: components/Widgets/
|
|
396
|
+
#: components/Widgets/Size
|
|
399
397
|
msgid "Small"
|
|
400
398
|
msgstr ""
|
|
401
399
|
|
|
@@ -420,8 +418,9 @@ msgid "Switch to"
|
|
|
420
418
|
msgstr ""
|
|
421
419
|
|
|
422
420
|
#. Default: "Target"
|
|
423
|
-
#: components/Widgets/
|
|
424
|
-
#: components/Widgets/
|
|
421
|
+
#: components/Widgets/schema/footerLinksSchema
|
|
422
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
423
|
+
#: components/Widgets/schema/headerActionsSchema
|
|
425
424
|
msgid "Target"
|
|
426
425
|
msgstr ""
|
|
427
426
|
|
|
@@ -432,8 +431,9 @@ msgstr ""
|
|
|
432
431
|
|
|
433
432
|
#. Default: "Title"
|
|
434
433
|
#: components/Blocks/Image/schema
|
|
435
|
-
#: components/Widgets/
|
|
436
|
-
#: components/Widgets/
|
|
434
|
+
#: components/Widgets/schema/footerLinksSchema
|
|
435
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
436
|
+
#: components/Widgets/schema/headerActionsSchema
|
|
437
437
|
msgid "Title"
|
|
438
438
|
msgstr ""
|
|
439
439
|
|
|
@@ -442,11 +442,6 @@ msgstr ""
|
|
|
442
442
|
msgid "Website"
|
|
443
443
|
msgstr ""
|
|
444
444
|
|
|
445
|
-
#. Default: "Wide"
|
|
446
|
-
#: components/Widgets/AlignWidget
|
|
447
|
-
msgid "Wide"
|
|
448
|
-
msgstr ""
|
|
449
|
-
|
|
450
445
|
#. Default: "Clear image"
|
|
451
446
|
#: components/Blocks/Image/ImageSidebar
|
|
452
447
|
msgid "image_block_clear"
|
|
@@ -471,8 +466,3 @@ msgstr ""
|
|
|
471
466
|
#: components/Blocks/Listing/ListingBody
|
|
472
467
|
msgid "of"
|
|
473
468
|
msgstr ""
|
|
474
|
-
|
|
475
|
-
#. Default: ""
|
|
476
|
-
#: components/Header/Header
|
|
477
|
-
msgid "siteLabel"
|
|
478
|
-
msgstr ""
|