@kitconcept/volto-light-theme 7.0.0-alpha.14 → 7.0.0-alpha.16
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 +9 -11
- package/.release-it-local.json +31 -0
- package/CHANGELOG.md +38 -0
- package/locales/es/LC_MESSAGES/volto.po +50 -47
- package/package.json +2 -2
- package/src/components/Blocks/Block/Edit.jsx +463 -0
- package/src/components/Blocks/Block/EditBlockWrapper.jsx +163 -0
- package/src/components/Blocks/EventCalendar/Search/SearchBlockEdit.jsx +2 -2
- package/src/components/Blocks/EventCalendar/Search/components/DateRangePicker.tsx +14 -1
- package/src/components/Blocks/EventCalendar/Search/components/EventTemplate.tsx +11 -5
- package/src/components/Blocks/EventCalendar/Search/hocs/withSearch.jsx +26 -4
- package/src/components/Blocks/EventCalendar/Search/layout/TopSideFacets.jsx +15 -3
- package/src/components/Blocks/EventCalendar/Search/schema.js +8 -0
- package/src/components/Blocks/Listing/DefaultTemplate.jsx +5 -4
- package/src/components/Blocks/Listing/GridTemplate.jsx +13 -15
- package/src/components/Blocks/Listing/SummaryTemplate.jsx +13 -9
- package/src/components/Blocks/Teaser/DefaultBody.tsx +1 -0
- package/src/components/Footer/slots/FollowUsLogoAndLinks.tsx +9 -9
- package/src/components/Logo/Logo.tsx +9 -8
- package/src/components/Summary/EventSummary.tsx +2 -2
- package/src/components/Summary/FileSummary.tsx +2 -2
- package/src/components/Summary/NewsItemSummary.tsx +2 -2
- package/src/components/Theme/RenderBlocks.jsx +136 -0
- package/src/components/Theme/RenderBlocksV2.jsx +146 -0
- package/src/components/Theme/StyleWrapperV3.jsx +68 -0
- package/src/components/Theming/ConfigInjector.tsx +32 -0
- package/src/components/Widgets/BlockConfigJSONEditor.tsx +58 -0
- package/src/config/blocks.tsx +16 -1
- package/src/config/settings.ts +3 -1
- package/src/config/slots.ts +6 -0
- package/src/config/widgets.ts +4 -0
- package/src/customizations/volto/components/manage/Blocks/Block/Edit.jsx +10 -0
- package/src/customizations/volto/components/manage/Blocks/Block/EditBlockWrapper.jsx +9 -0
- package/src/customizations/volto/components/theme/View/RenderBlocks.jsx +3 -181
- package/src/helpers/BlocksConfigMerger.test.ts +97 -0
- package/src/helpers/BlocksConfigMerger.ts +42 -0
- package/src/{customizations/volto/components/theme/View/RenderBlocks.test.jsx → helpers/grouping.test.jsx} +1 -1
- package/src/helpers/grouping.ts +32 -0
- package/src/index.ts +3 -1
- package/src/primitives/Card/Card.tsx +6 -2
- package/src/primitives/IconLinkList.tsx +6 -1
- package/src/theme/_bgcolor-blocks-layout.scss +339 -2
- package/src/theme/_layout.scss +2 -1
- package/src/theme/_typo-custom.scss +13 -1
- package/src/theme/_widgets.scss +60 -0
- package/src/theme/blocks/_eventSearch.scss +22 -3
- package/src/theme/blocks/_grid.scss +15 -0
- package/src/theme/blocks/_listing.scss +40 -19
- package/src/theme/blocks/_search.scss +6 -0
- package/src/theme/blocks/_slate.scss +6 -0
- package/src/theme/sticky-menu.scss +15 -0
- package/src/types.d.ts +16 -3
- package/vitest.config.mjs +7 -4
package/.changelog.draft
CHANGED
|
@@ -1,19 +1,17 @@
|
|
|
1
|
-
## 7.0.0-alpha.
|
|
1
|
+
## 7.0.0-alpha.16 (2025-07-23)
|
|
2
2
|
|
|
3
3
|
### Feature
|
|
4
4
|
|
|
5
|
-
- Add
|
|
6
|
-
- Added
|
|
5
|
+
- Add query support in eventCalendar Block. @iFlameing [#609](https://github.com/kitconcept/volto-light-theme/pull/609)
|
|
6
|
+
- Added support for the blocks configuration TTW behavior. @sneridagh [#614](https://github.com/kitconcept/volto-light-theme/pull/614)
|
|
7
|
+
- Update carousel block version, example content and cypress @iRohitSingh [#616](https://github.com/kitconcept/volto-light-theme/pull/616)
|
|
7
8
|
|
|
8
9
|
### Bugfix
|
|
9
10
|
|
|
10
|
-
-
|
|
11
|
-
|
|
12
|
-
- Fix
|
|
13
|
-
-
|
|
14
|
-
|
|
15
|
-
### Internal
|
|
16
|
-
|
|
17
|
-
- Add acceptance test for Grid block(Image and Listing). @iFlameing [#595](https://github.com/kitconcept/volto-light-theme/pull/595)
|
|
11
|
+
- Fixed missing hide_description prop in the Summary component within
|
|
12
|
+
TeaserDefaultBodyTemplate and add cypress test for carousel block @iRohitSingh [#610](https://github.com/kitconcept/volto-light-theme/pull/610)
|
|
13
|
+
- Fix the layout of eventCalendar block. @iFlameing [#612](https://github.com/kitconcept/volto-light-theme/pull/612)
|
|
14
|
+
- Fix extra request in edit mode of event calendar block. @iFlameing [#613](https://github.com/kitconcept/volto-light-theme/pull/613)
|
|
15
|
+
- Fix extra request in view mode of event calendar block. @iFlameing [#615](https://github.com/kitconcept/volto-light-theme/pull/615)
|
|
18
16
|
|
|
19
17
|
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"plugins": {
|
|
3
|
+
"../../core/packages/scripts/prepublish.js": {}
|
|
4
|
+
},
|
|
5
|
+
"hooks": {
|
|
6
|
+
"after:bump": [
|
|
7
|
+
"pipx run towncrier build --draft --yes --version ${version} > .changelog.draft",
|
|
8
|
+
"pipx run towncrier build --yes --version ${version}",
|
|
9
|
+
"cp ../../README.md ./ && cp CHANGELOG.md ../../CHANGELOG.md",
|
|
10
|
+
"python3 -c 'import json; data = json.load(open(\"../../package.json\")); data[\"version\"] = \"${version}\"; json.dump(data, open(\"../../package.json\", \"w\"), indent=2)'",
|
|
11
|
+
"git add ../../CHANGELOG.md ../../package.json"
|
|
12
|
+
],
|
|
13
|
+
"after:release": "rm .changelog.draft README.md"
|
|
14
|
+
},
|
|
15
|
+
"npm": {
|
|
16
|
+
"publish": false
|
|
17
|
+
},
|
|
18
|
+
"git": {
|
|
19
|
+
"changelog": "pipx run towncrier build --draft --yes --version 0.0.0",
|
|
20
|
+
"requireUpstream": false,
|
|
21
|
+
"requireCleanWorkingDir": false,
|
|
22
|
+
"commitMessage": "Release ${version}",
|
|
23
|
+
"tagName": "${version}",
|
|
24
|
+
"tagAnnotation": "Release ${version}"
|
|
25
|
+
},
|
|
26
|
+
"github": {
|
|
27
|
+
"release": true,
|
|
28
|
+
"releaseName": "${version}",
|
|
29
|
+
"releaseNotes": "cat .changelog.draft"
|
|
30
|
+
}
|
|
31
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,44 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 7.0.0-alpha.16 (2025-07-23)
|
|
12
|
+
|
|
13
|
+
### Feature
|
|
14
|
+
|
|
15
|
+
- Add query support in eventCalendar Block. @iFlameing [#609](https://github.com/kitconcept/volto-light-theme/pull/609)
|
|
16
|
+
- Added support for the blocks configuration TTW behavior. @sneridagh [#614](https://github.com/kitconcept/volto-light-theme/pull/614)
|
|
17
|
+
- Update carousel block version, example content and cypress @iRohitSingh [#616](https://github.com/kitconcept/volto-light-theme/pull/616)
|
|
18
|
+
|
|
19
|
+
### Bugfix
|
|
20
|
+
|
|
21
|
+
- Fixed missing hide_description prop in the Summary component within
|
|
22
|
+
TeaserDefaultBodyTemplate and add cypress test for carousel block @iRohitSingh [#610](https://github.com/kitconcept/volto-light-theme/pull/610)
|
|
23
|
+
- Fix the layout of eventCalendar block. @iFlameing [#612](https://github.com/kitconcept/volto-light-theme/pull/612)
|
|
24
|
+
- Fix extra request in edit mode of event calendar block. @iFlameing [#613](https://github.com/kitconcept/volto-light-theme/pull/613)
|
|
25
|
+
- Fix extra request in view mode of event calendar block. @iFlameing [#615](https://github.com/kitconcept/volto-light-theme/pull/615)
|
|
26
|
+
|
|
27
|
+
## 7.0.0-alpha.15 (2025-07-17)
|
|
28
|
+
|
|
29
|
+
### Breaking
|
|
30
|
+
|
|
31
|
+
- We renamed this three fields in the `kitconcept.footer` behavior. @sneridagh
|
|
32
|
+
`footer_main_logo_inversed` => `footer_logo`
|
|
33
|
+
`footer_logo` => `post_footer_logo`
|
|
34
|
+
`footer_logo_link` => `post_footer_logo_link`
|
|
35
|
+
|
|
36
|
+
### Feature
|
|
37
|
+
|
|
38
|
+
- Added block model v3 as opt-in. @sneridagh [#532](https://github.com/kitconcept/volto-light-theme/pull/532)
|
|
39
|
+
- Update Spanish translation [@macagua] [#596](https://github.com/kitconcept/volto-light-theme/pull/596)
|
|
40
|
+
|
|
41
|
+
### Bugfix
|
|
42
|
+
|
|
43
|
+
- Fixed the use case where the sticky menu item is allowed to not have link. @sneridagh
|
|
44
|
+
|
|
45
|
+
### Internal
|
|
46
|
+
|
|
47
|
+
- Improve listing template of Listing, Search and Grid block with Card Component. @iFlameing [#601](https://github.com/kitconcept/volto-light-theme/pull/601)
|
|
48
|
+
|
|
11
49
|
## 7.0.0-alpha.14 (2025-07-10)
|
|
12
50
|
|
|
13
51
|
### Feature
|
|
@@ -1,69 +1,72 @@
|
|
|
1
|
+
# Translation of volto.pot to Spanish
|
|
2
|
+
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2025.
|
|
1
3
|
msgid ""
|
|
2
4
|
msgstr ""
|
|
3
5
|
"Project-Id-Version: Plone\n"
|
|
4
6
|
"Report-Msgid-Bugs-To: \n"
|
|
5
7
|
"POT-Creation-Date: 2024-02-08T13:36:14.317Z\n"
|
|
6
|
-
"PO-Revision-Date: \n"
|
|
7
|
-
"Last-Translator:
|
|
8
|
-
"Language: es\n"
|
|
8
|
+
"PO-Revision-Date: 2025-07-07 15:40+0200\n"
|
|
9
|
+
"Last-Translator: Leonardo J. Caballero G. <leonardocaballero@gmail.com>\n"
|
|
9
10
|
"Language-Team: Plone i18n <plone-i18n@lists.sourceforge.net>\n"
|
|
11
|
+
"Language: es\n"
|
|
12
|
+
"MIME-Version: 1.0\n"
|
|
10
13
|
"Content-Type: text/plain; charset=utf-8\n"
|
|
11
14
|
"Content-Transfer-Encoding: 8bit\n"
|
|
12
15
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
13
|
-
"
|
|
14
|
-
"Language-
|
|
15
|
-
"Language-Name: English\n"
|
|
16
|
+
"Language-Code: es\n"
|
|
17
|
+
"Language-Name: Español\n"
|
|
16
18
|
"Preferred-Encodings: utf-8\n"
|
|
17
19
|
"Domain: volto\n"
|
|
18
|
-
"X-Generator: Poedit 3.
|
|
20
|
+
"X-Generator: Poedit 3.6\n"
|
|
21
|
+
"X-Is-Fallback-For: es-ar es-bo es-cl es-co es-cr es-do es-ec es-es es-sv es-gt es-hn es-mx es-ni es-pa es-py es-pe es-pr es-us es-uy es-ve\n"
|
|
19
22
|
|
|
20
23
|
#. Default: "Action"
|
|
21
24
|
#: components/Widgets/schema/headerActionsSchema
|
|
22
25
|
msgid "Action"
|
|
23
|
-
msgstr ""
|
|
26
|
+
msgstr "Acción"
|
|
24
27
|
|
|
25
28
|
#. Default: "Add"
|
|
26
29
|
#: components/Widgets/BlocksObject
|
|
27
30
|
#: components/Widgets/ObjectList
|
|
28
31
|
msgid "Add (object list)"
|
|
29
|
-
msgstr ""
|
|
32
|
+
msgstr "Añadir (lista objecto)"
|
|
30
33
|
|
|
31
34
|
#. Default: "Add action"
|
|
32
35
|
#: components/Widgets/schema/headerActionsSchema
|
|
33
36
|
msgid "Add action"
|
|
34
|
-
msgstr ""
|
|
37
|
+
msgstr "Añadir acción"
|
|
35
38
|
|
|
36
39
|
#. Default: "Add item"
|
|
37
40
|
#: components/Widgets/schema/iconLinkListSchema
|
|
38
41
|
msgid "Add item"
|
|
39
|
-
msgstr ""
|
|
42
|
+
msgstr "Añadir elemento"
|
|
40
43
|
|
|
41
44
|
#. Default: "Add link"
|
|
42
45
|
#: components/Widgets/schema/footerLinksSchema
|
|
43
46
|
msgid "Add link"
|
|
44
|
-
msgstr ""
|
|
47
|
+
msgstr "Añadir enlace"
|
|
45
48
|
|
|
46
49
|
#. Default: "Add logo"
|
|
47
50
|
#: components/Widgets/schema/footerLogosSchema
|
|
48
51
|
msgid "Add logo"
|
|
49
|
-
msgstr ""
|
|
52
|
+
msgstr "Añadir logo"
|
|
50
53
|
|
|
51
54
|
#. Default: "Alignment"
|
|
52
55
|
#: components/Blocks/Button/schema
|
|
53
56
|
#: components/Blocks/Separator/schema
|
|
54
57
|
msgid "Alignment"
|
|
55
|
-
msgstr ""
|
|
58
|
+
msgstr "Alineación"
|
|
56
59
|
|
|
57
60
|
#. Default: "Alt text"
|
|
58
61
|
#: components/Widgets/schema/footerLogosSchema
|
|
59
62
|
#: components/Widgets/schema/iconLinkListSchema
|
|
60
63
|
msgid "Alt text"
|
|
61
|
-
msgstr ""
|
|
64
|
+
msgstr "Texto alternativo"
|
|
62
65
|
|
|
63
66
|
#. Default: "Back"
|
|
64
67
|
#: components/MobileNavigation/MobileNavigation
|
|
65
68
|
msgid "Back"
|
|
66
|
-
msgstr "
|
|
69
|
+
msgstr "Volver"
|
|
67
70
|
|
|
68
71
|
#. Default: "Background color"
|
|
69
72
|
#: components/Blocks/schema
|
|
@@ -75,7 +78,7 @@ msgstr "Color de fondo"
|
|
|
75
78
|
#: components/Blocks/Image/schema
|
|
76
79
|
#: components/Blocks/Separator/schema
|
|
77
80
|
msgid "Block Width"
|
|
78
|
-
msgstr "
|
|
81
|
+
msgstr "Ancho de bloque"
|
|
79
82
|
|
|
80
83
|
#. Default: "Breadcrumbs"
|
|
81
84
|
#: components/Breadcrumbs/Breadcrumbs
|
|
@@ -102,12 +105,12 @@ msgstr "Cerrar menú"
|
|
|
102
105
|
#: components/Widgets/BlocksObject
|
|
103
106
|
#: components/Widgets/ObjectList
|
|
104
107
|
msgid "Collapse item"
|
|
105
|
-
msgstr ""
|
|
108
|
+
msgstr "Contraer elemento"
|
|
106
109
|
|
|
107
110
|
#. Default: "The color contrast ratio {contrastRatio}:1 might not be accessible for all. WCAG Level: {complianceLevel}"
|
|
108
111
|
#: components/Widgets/ColorContrastChecker
|
|
109
112
|
msgid "ColorContrastCheckerMessage"
|
|
110
|
-
msgstr ""
|
|
113
|
+
msgstr "La relación de contraste de color {contrastRatio}:1 puede no ser accesible para todos. Nivel WCAG: {complianceLevel}"
|
|
111
114
|
|
|
112
115
|
#. Default: "Contact"
|
|
113
116
|
#: components/Blocks/EventMetadata/View
|
|
@@ -127,7 +130,7 @@ msgstr "Copyright"
|
|
|
127
130
|
#. Default: "Default"
|
|
128
131
|
#: components/Widgets/BlockWidth
|
|
129
132
|
msgid "Default"
|
|
130
|
-
msgstr ""
|
|
133
|
+
msgstr "Por defecto"
|
|
131
134
|
|
|
132
135
|
#. Default: "Description"
|
|
133
136
|
#: components/Blocks/Image/schema
|
|
@@ -145,7 +148,7 @@ msgstr "Distribuido bajo {license}"
|
|
|
145
148
|
#: components/Widgets/BlocksObject
|
|
146
149
|
#: components/Widgets/ObjectList
|
|
147
150
|
msgid "Empty object list"
|
|
148
|
-
msgstr ""
|
|
151
|
+
msgstr "Lista de objetos vacía"
|
|
149
152
|
|
|
150
153
|
#. Default: "End"
|
|
151
154
|
#: components/Blocks/EventMetadata/View
|
|
@@ -160,7 +163,7 @@ msgstr "Alinear"
|
|
|
160
163
|
#. Default: "Follow us:"
|
|
161
164
|
#: components/Footer/slots/FollowUsLogoAndLinks
|
|
162
165
|
msgid "Follow us:"
|
|
163
|
-
msgstr ""
|
|
166
|
+
msgstr "Síguenos:"
|
|
164
167
|
|
|
165
168
|
#. Default: "Full"
|
|
166
169
|
#: components/Widgets/BlockWidth
|
|
@@ -176,7 +179,7 @@ msgstr "Licencia GNU GPL"
|
|
|
176
179
|
#: components/Widgets/schema/footerLogosSchema
|
|
177
180
|
#: components/Widgets/schema/iconLinkListSchema
|
|
178
181
|
msgid "Headline"
|
|
179
|
-
msgstr ""
|
|
182
|
+
msgstr "Encabezado"
|
|
180
183
|
|
|
181
184
|
#. Default: "Hide Button"
|
|
182
185
|
#: components/Blocks/Slider/schema
|
|
@@ -187,7 +190,7 @@ msgstr "Esconder botón"
|
|
|
187
190
|
#: components/Widgets/schema/footerLogosSchema
|
|
188
191
|
#: components/Widgets/schema/iconLinkListSchema
|
|
189
192
|
msgid "Hide description"
|
|
190
|
-
msgstr ""
|
|
193
|
+
msgstr "Ocultar descripción"
|
|
191
194
|
|
|
192
195
|
#. Default: "Home"
|
|
193
196
|
#: components/Breadcrumbs/Breadcrumbs
|
|
@@ -209,22 +212,22 @@ msgstr "Imagen"
|
|
|
209
212
|
#. Default: "Item"
|
|
210
213
|
#: components/Widgets/schema/iconLinkListSchema
|
|
211
214
|
msgid "Item"
|
|
212
|
-
msgstr ""
|
|
215
|
+
msgstr "Elemento"
|
|
213
216
|
|
|
214
217
|
#. Default: "Item icon"
|
|
215
218
|
#: components/Widgets/schema/iconLinkListSchema
|
|
216
219
|
msgid "Item icon"
|
|
217
|
-
msgstr ""
|
|
220
|
+
msgstr "Icono de elemento"
|
|
218
221
|
|
|
219
222
|
#. Default: "Large"
|
|
220
223
|
#: components/Widgets/Size
|
|
221
224
|
msgid "Large"
|
|
222
|
-
msgstr ""
|
|
225
|
+
msgstr "Grande"
|
|
223
226
|
|
|
224
227
|
#. Default: "Layout"
|
|
225
228
|
#: components/Widgets/BlockWidth
|
|
226
229
|
msgid "Layout"
|
|
227
|
-
msgstr ""
|
|
230
|
+
msgstr "Diseño"
|
|
228
231
|
|
|
229
232
|
#. Default: "Left"
|
|
230
233
|
#: components/Widgets/BlockAlignment
|
|
@@ -234,17 +237,17 @@ msgstr "Izquierda"
|
|
|
234
237
|
#. Default: "Link"
|
|
235
238
|
#: components/Widgets/schema/footerLinksSchema
|
|
236
239
|
msgid "Link"
|
|
237
|
-
msgstr ""
|
|
240
|
+
msgstr "Enlace"
|
|
238
241
|
|
|
239
242
|
#. Default: "List"
|
|
240
243
|
#: index
|
|
241
244
|
msgid "List"
|
|
242
|
-
msgstr ""
|
|
245
|
+
msgstr "Lista"
|
|
243
246
|
|
|
244
247
|
#. Default: "List with images"
|
|
245
248
|
#: index
|
|
246
249
|
msgid "List with images"
|
|
247
|
-
msgstr ""
|
|
250
|
+
msgstr "Lista con imágenes"
|
|
248
251
|
|
|
249
252
|
#. Default: "Location"
|
|
250
253
|
#: components/Blocks/EventMetadata/View
|
|
@@ -259,27 +262,27 @@ msgstr "Entrar"
|
|
|
259
262
|
#. Default: "Logo"
|
|
260
263
|
#: components/Widgets/schema/footerLogosSchema
|
|
261
264
|
msgid "Logo"
|
|
262
|
-
msgstr ""
|
|
265
|
+
msgstr "Logo"
|
|
263
266
|
|
|
264
267
|
#. Default: "Logo image"
|
|
265
268
|
#: components/Widgets/schema/footerLogosSchema
|
|
266
269
|
msgid "Logo image"
|
|
267
|
-
msgstr ""
|
|
270
|
+
msgstr "Imagen del logo"
|
|
268
271
|
|
|
269
272
|
#. Default: "Logo of"
|
|
270
273
|
#: components/Logo/Logo
|
|
271
274
|
msgid "Logo of"
|
|
272
|
-
msgstr ""
|
|
275
|
+
msgstr "Logotipo de"
|
|
273
276
|
|
|
274
277
|
#. Default: "Medium"
|
|
275
278
|
#: components/Widgets/Size
|
|
276
279
|
msgid "Medium"
|
|
277
|
-
msgstr ""
|
|
280
|
+
msgstr "Mediano"
|
|
278
281
|
|
|
279
282
|
#. Default: "Narrow"
|
|
280
283
|
#: components/Widgets/BlockWidth
|
|
281
284
|
msgid "Narrow"
|
|
282
|
-
msgstr ""
|
|
285
|
+
msgstr "Estrecho"
|
|
283
286
|
|
|
284
287
|
#. Default: "Next Page"
|
|
285
288
|
#: components/Blocks/Listing/ListingBody
|
|
@@ -294,7 +297,7 @@ msgstr "No se ha seleccionado imagen"
|
|
|
294
297
|
#. Default: "No items found in this container."
|
|
295
298
|
#: components/Blocks/Listing/ListingBody
|
|
296
299
|
msgid "No items found in this container."
|
|
297
|
-
msgstr "No se han encontrado elementos"
|
|
300
|
+
msgstr "No se han encontrado elementos en este contenedor."
|
|
298
301
|
|
|
299
302
|
#. Default: "Open in a new tab"
|
|
300
303
|
#: components/Widgets/schema/footerLinksSchema
|
|
@@ -302,7 +305,7 @@ msgstr "No se han encontrado elementos"
|
|
|
302
305
|
#: components/Widgets/schema/headerActionsSchema
|
|
303
306
|
#: components/Widgets/schema/iconLinkListSchema
|
|
304
307
|
msgid "Open in a new tab"
|
|
305
|
-
msgstr ""
|
|
308
|
+
msgstr "Abrir en una nueva pestaña"
|
|
306
309
|
|
|
307
310
|
#. Default: "Open menu"
|
|
308
311
|
#: components/MobileNavigation/MobileNavigation
|
|
@@ -356,7 +359,7 @@ msgstr "Registrar usuario"
|
|
|
356
359
|
#: components/Widgets/BlocksObject
|
|
357
360
|
#: components/Widgets/ObjectList
|
|
358
361
|
msgid "Remove item"
|
|
359
|
-
msgstr ""
|
|
362
|
+
msgstr "Eliminar elemento"
|
|
360
363
|
|
|
361
364
|
#. Default: "Result"
|
|
362
365
|
#: components/Blocks/Listing/ListingBody
|
|
@@ -371,7 +374,7 @@ msgstr "Derecha"
|
|
|
371
374
|
#. Default: "Room"
|
|
372
375
|
#: components/Summary/PersonSummary
|
|
373
376
|
msgid "Room"
|
|
374
|
-
msgstr ""
|
|
377
|
+
msgstr "Sala"
|
|
375
378
|
|
|
376
379
|
#. Default: "Search"
|
|
377
380
|
#: components/Blocks/Search/components/SearchInput
|
|
@@ -407,18 +410,18 @@ msgstr "Ha buscado"
|
|
|
407
410
|
#: components/Widgets/schema/footerLogosSchema
|
|
408
411
|
#: components/Widgets/schema/iconLinkListSchema
|
|
409
412
|
msgid "Settings"
|
|
410
|
-
msgstr ""
|
|
413
|
+
msgstr "Ajustes"
|
|
411
414
|
|
|
412
415
|
#. Default: "Short line"
|
|
413
416
|
#: components/Blocks/Separator/schema
|
|
414
417
|
msgid "Short line"
|
|
415
|
-
msgstr ""
|
|
418
|
+
msgstr "Línea corta"
|
|
416
419
|
|
|
417
420
|
#. Default: "Show item"
|
|
418
421
|
#: components/Widgets/BlocksObject
|
|
419
422
|
#: components/Widgets/ObjectList
|
|
420
423
|
msgid "Show item"
|
|
421
|
-
msgstr ""
|
|
424
|
+
msgstr "Ver elemento"
|
|
422
425
|
|
|
423
426
|
#. Default: "Sitemap"
|
|
424
427
|
#: index
|
|
@@ -428,7 +431,7 @@ msgstr "Mapa del sitio"
|
|
|
428
431
|
#. Default: "Small"
|
|
429
432
|
#: components/Widgets/Size
|
|
430
433
|
msgid "Small"
|
|
431
|
-
msgstr ""
|
|
434
|
+
msgstr "Pequeño"
|
|
432
435
|
|
|
433
436
|
#. Default: "Sorting"
|
|
434
437
|
#: components/Blocks/Search/TopSideFacets
|
|
@@ -443,7 +446,7 @@ msgstr "Origen"
|
|
|
443
446
|
#. Default: "Sponsored by:"
|
|
444
447
|
#: components/Footer/slots/FollowUsLogoAndLinks
|
|
445
448
|
msgid "Sponsored by:"
|
|
446
|
-
msgstr ""
|
|
449
|
+
msgstr "Patrocinado por:"
|
|
447
450
|
|
|
448
451
|
#. Default: "Start"
|
|
449
452
|
#: components/Blocks/EventMetadata/View
|
|
@@ -461,7 +464,7 @@ msgstr "Cambiar a"
|
|
|
461
464
|
#: components/Widgets/schema/headerActionsSchema
|
|
462
465
|
#: components/Widgets/schema/iconLinkListSchema
|
|
463
466
|
msgid "Target"
|
|
464
|
-
msgstr ""
|
|
467
|
+
msgstr "Destino"
|
|
465
468
|
|
|
466
469
|
#. Default: "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends."
|
|
467
470
|
#: components/Footer/slots/Copyright
|
|
@@ -485,7 +488,7 @@ msgstr "Sitio web"
|
|
|
485
488
|
#. Default: "eMail"
|
|
486
489
|
#: components/Summary/PersonSummary
|
|
487
490
|
msgid "eMail"
|
|
488
|
-
msgstr ""
|
|
491
|
+
msgstr "Correo electrónico"
|
|
489
492
|
|
|
490
493
|
#. Default: "Clear image"
|
|
491
494
|
#: components/Blocks/Image/ImageSidebar
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitconcept/volto-light-theme",
|
|
3
|
-
"version": "7.0.0-alpha.
|
|
3
|
+
"version": "7.0.0-alpha.16",
|
|
4
4
|
"description": "Volto Light Theme by kitconcept",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"@eeacms/volto-accordion-block": "^10.4.6",
|
|
60
60
|
"@kitconcept/volto-banner-block": "^1.0.1",
|
|
61
61
|
"@kitconcept/volto-button-block": "^4.0.0-alpha.0",
|
|
62
|
-
"@kitconcept/volto-carousel-block": "^2.0.0-alpha.
|
|
62
|
+
"@kitconcept/volto-carousel-block": "^2.0.0-alpha.3",
|
|
63
63
|
"@kitconcept/volto-dsgvo-banner": "^2.4.0",
|
|
64
64
|
"@kitconcept/volto-heading-block": "^2.4.0",
|
|
65
65
|
"@kitconcept/volto-highlight-block": "^4.1.0",
|