@kitconcept/volto-light-theme 8.0.0-alpha.2 → 8.0.0-alpha.20
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 +3 -4
- package/CHANGELOG.md +226 -0
- package/locales/de/LC_MESSAGES/volto.po +30 -115
- package/locales/en/LC_MESSAGES/volto.po +30 -115
- package/locales/es/LC_MESSAGES/volto.po +31 -116
- package/locales/eu/LC_MESSAGES/volto.po +58 -124
- package/locales/pt_BR/LC_MESSAGES/volto.po +38 -123
- package/locales/volto.pot +31 -116
- package/package.json +18 -15
- package/src/__mocks__/semantic-ui-react.ts +31 -0
- package/src/components/Blocks/Block/Edit.jsx +14 -6
- package/src/components/Blocks/Block/EditBlockWrapper.jsx +9 -3
- package/src/components/Blocks/Block/ErrorBoundary.test.tsx +55 -0
- package/src/components/Blocks/Block/ErrorBoundary.tsx +92 -0
- package/src/components/Blocks/Block/ErrorBoundaryMessage.tsx +66 -0
- package/src/components/Blocks/EventCalendar/Search/components/EventTemplate.tsx +1 -1
- package/src/components/Blocks/Image/Edit.jsx +1 -0
- package/src/components/Blocks/Listing/DefaultTemplate.jsx +12 -6
- package/src/components/Blocks/Listing/GridTemplate.jsx +16 -7
- package/src/components/Blocks/Listing/ListingBody.jsx +4 -1
- package/src/components/Blocks/Listing/SummaryTemplate.jsx +16 -7
- package/src/components/Blocks/Teaser/DefaultBody.tsx +25 -5
- package/src/components/Blocks/schema.ts +69 -0
- package/src/components/Breadcrumbs/Breadcrumbs.test.tsx +128 -0
- package/src/components/Breadcrumbs/Breadcrumbs.tsx +117 -0
- package/src/components/Caption/Caption.test.tsx +31 -0
- package/src/components/Caption/{Caption.jsx → Caption.tsx} +14 -21
- package/src/components/Footer/ColumnLinks.tsx +2 -2
- package/src/components/Footer/slots/Colophon.tsx +13 -1
- package/src/components/Footer/slots/CoreFooter.tsx +4 -2
- package/src/components/Header/Header.tsx +3 -3
- package/src/components/LanguageSelector/LanguageSelector.tsx +91 -0
- package/src/components/MobileNavigation/MobileNavigation.jsx +11 -9
- package/src/components/Navigation/Navigation.test.tsx +176 -0
- package/src/components/Navigation/{Navigation.jsx → Navigation.tsx} +77 -37
- package/src/components/StickyMenu/MobileCarouselArrowButton.tsx +81 -0
- package/src/components/StickyMenu/MobileStickyMenu.tsx +76 -0
- package/src/components/Summary/DefaultSummary.tsx +10 -3
- package/src/components/Summary/EventSummary.tsx +10 -3
- package/src/components/Summary/FileSummary.tsx +10 -3
- package/src/components/Summary/NewsItemSummary.tsx +10 -3
- package/src/components/Summary/PersonSummary.tsx +10 -3
- package/src/components/Summary/Summary.stories.tsx +46 -30
- package/src/components/Tags/Tags.test.tsx +71 -0
- package/src/components/Tags/{Tags.jsx → Tags.tsx} +9 -25
- package/src/components/Theme/EventView.jsx +4 -4
- package/src/components/Theme/NewsItemView.jsx +4 -4
- package/src/components/Theme/RenderBlocks.jsx +45 -37
- package/src/components/Theme/RenderBlocksV2.jsx +51 -20
- package/src/components/Widgets/ColorSwatch.stories.tsx +197 -0
- package/src/components/Widgets/ColorSwatch.test.tsx +188 -0
- package/src/components/Widgets/ColorSwatch.tsx +77 -39
- package/src/components/Widgets/SoftTextWidget.tsx +129 -0
- package/src/components/Widgets/SoftTextareaWidget.tsx +118 -0
- package/src/components/Widgets/ThemeColorSwatch.tsx +5 -9
- package/src/config/blocks.tsx +21 -29
- package/src/config/slots.ts +7 -0
- package/src/config/widgets.ts +5 -9
- package/src/customizations/volto/components/manage/DragDropList/DragDropList.jsx +263 -0
- package/src/customizations/volto/components/theme/LanguageSelector/LanguageSelector.tsx +10 -0
- package/src/helpers/styleDefinitions.test.tsx +30 -0
- package/src/helpers/styleDefinitions.ts +49 -0
- package/src/icons/block_icn_accordion.svg +0 -0
- package/src/icons/block_icn_grid.svg +0 -0
- package/src/internalChecks.test.ts +94 -0
- package/src/primitives/Card/Card.stories.tsx +4 -1
- package/src/primitives/Card/Card.test.tsx +11 -33
- package/src/primitives/Card/Card.tsx +33 -43
- package/src/primitives/IconLinkList.tsx +53 -52
- package/src/theme/_bgcolor-blocks-layout.scss +43 -45
- package/src/theme/_content.scss +12 -13
- package/src/theme/_export_import.scss +94 -0
- package/src/theme/_footer.scss +64 -19
- package/src/theme/_header.scss +21 -4
- package/src/theme/_insets.scss +1 -1
- package/src/theme/_layout.scss +34 -15
- package/src/theme/_mobile-sticky-menu.scss +92 -0
- package/src/theme/_search-page.scss +249 -0
- package/src/theme/_typo-custom.scss +16 -5
- package/src/theme/_variables.scss +19 -4
- package/src/theme/_widgets.scss +15 -27
- package/src/theme/blocks/_accordion.scss +11 -4
- package/src/theme/blocks/_grid.scss +9 -77
- package/src/theme/blocks/_listing.scss +60 -126
- package/src/theme/blocks/_search.scss +3 -4
- package/src/theme/blocks/_table.scss +1 -0
- package/src/theme/blocks/_teaser.scss +7 -117
- package/src/theme/blocks/error-boundary.scss +11 -0
- package/src/theme/card.scss +107 -70
- package/src/theme/main.scss +5 -0
- package/src/theme/notfound.scss +27 -0
- package/src/theme/person.scss +28 -12
- package/src/theme/sticky-menu.scss +7 -5
- package/src/types.d.ts +1 -0
- package/vitest.config.mjs +4 -0
- package/razzle.extend.js +0 -38
- package/src/components/Blocks/schema.js +0 -44
- package/src/components/Breadcrumbs/Breadcrumbs.jsx +0 -118
- package/src/components/Widgets/AlignWidget.tsx +0 -84
- package/src/components/Widgets/BlockAlignment.tsx +0 -88
- package/src/components/Widgets/BlockWidth.tsx +0 -101
- package/src/components/Widgets/Buttons.tsx +0 -144
- package/src/components/Widgets/Size.tsx +0 -78
|
@@ -52,12 +52,6 @@ msgstr ""
|
|
|
52
52
|
msgid "Advanced facets are initially hidden and displayed on demand"
|
|
53
53
|
msgstr ""
|
|
54
54
|
|
|
55
|
-
#. Default: "Alignment"
|
|
56
|
-
#: components/Blocks/Button/schema
|
|
57
|
-
#: components/Blocks/Separator/schema
|
|
58
|
-
msgid "Alignment"
|
|
59
|
-
msgstr ""
|
|
60
|
-
|
|
61
55
|
#. Default: "Alt text"
|
|
62
56
|
#: components/Widgets/schema/footerLogosSchema
|
|
63
57
|
#: components/Widgets/schema/iconLinkListSchema
|
|
@@ -85,9 +79,7 @@ msgid "Base search query"
|
|
|
85
79
|
msgstr ""
|
|
86
80
|
|
|
87
81
|
#. Default: "Block Width"
|
|
88
|
-
#: components/Blocks/Button/schema
|
|
89
82
|
#: components/Blocks/Image/schema
|
|
90
|
-
#: components/Blocks/Separator/schema
|
|
91
83
|
msgid "Block Width"
|
|
92
84
|
msgstr ""
|
|
93
85
|
|
|
@@ -96,21 +88,11 @@ msgstr ""
|
|
|
96
88
|
msgid "Breadcrumbs"
|
|
97
89
|
msgstr ""
|
|
98
90
|
|
|
99
|
-
#. Default: "Button text"
|
|
100
|
-
#: components/Blocks/Slider/schema
|
|
101
|
-
msgid "Button text"
|
|
102
|
-
msgstr ""
|
|
103
|
-
|
|
104
91
|
#. Default: "Cancel search"
|
|
105
92
|
#: components/Blocks/EventCalendar/Search/components/SearchInput
|
|
106
93
|
msgid "Cancel search"
|
|
107
94
|
msgstr ""
|
|
108
95
|
|
|
109
|
-
#. Default: "Center"
|
|
110
|
-
#: components/Widgets/BlockAlignment
|
|
111
|
-
msgid "Center"
|
|
112
|
-
msgstr ""
|
|
113
|
-
|
|
114
96
|
#. Default: "Close menu"
|
|
115
97
|
#: components/MobileNavigation/MobileNavigation
|
|
116
98
|
#: components/Navigation/Navigation
|
|
@@ -133,12 +115,6 @@ msgstr ""
|
|
|
133
115
|
msgid "Contact"
|
|
134
116
|
msgstr ""
|
|
135
117
|
|
|
136
|
-
#. Default: "Continue reading"
|
|
137
|
-
#: components/Blocks/Slider/DefaultBody
|
|
138
|
-
#: components/Blocks/Slider/SliderVariants
|
|
139
|
-
msgid "Continue reading"
|
|
140
|
-
msgstr ""
|
|
141
|
-
|
|
142
118
|
#. Default: "Controls"
|
|
143
119
|
#: components/Blocks/EventCalendar/Search/schema
|
|
144
120
|
msgid "Controls"
|
|
@@ -149,11 +125,6 @@ msgstr ""
|
|
|
149
125
|
msgid "Copyright"
|
|
150
126
|
msgstr ""
|
|
151
127
|
|
|
152
|
-
#. Default: "Default"
|
|
153
|
-
#: components/Widgets/BlockWidth
|
|
154
|
-
msgid "Default"
|
|
155
|
-
msgstr ""
|
|
156
|
-
|
|
157
128
|
#. Default: "Descending"
|
|
158
129
|
#: components/Blocks/EventCalendar/Search/components/SortOn
|
|
159
130
|
msgid "Descending"
|
|
@@ -212,21 +183,11 @@ msgstr ""
|
|
|
212
183
|
msgid "Field"
|
|
213
184
|
msgstr ""
|
|
214
185
|
|
|
215
|
-
#. Default: "Align"
|
|
216
|
-
#: components/Blocks/Slider/schema
|
|
217
|
-
msgid "Flag align"
|
|
218
|
-
msgstr ""
|
|
219
|
-
|
|
220
186
|
#. Default: "Follow us:"
|
|
221
187
|
#: components/Footer/slots/FollowUsLogoAndLinks
|
|
222
188
|
msgid "Follow us:"
|
|
223
189
|
msgstr ""
|
|
224
190
|
|
|
225
|
-
#. Default: "Full"
|
|
226
|
-
#: components/Widgets/BlockWidth
|
|
227
|
-
msgid "Full"
|
|
228
|
-
msgstr ""
|
|
229
|
-
|
|
230
191
|
#. Default: "GNU GPL v2 license"
|
|
231
192
|
#: components/Footer/slots/Copyright
|
|
232
193
|
msgid "GNU GPL license"
|
|
@@ -242,11 +203,6 @@ msgstr ""
|
|
|
242
203
|
msgid "Hidden facets will still filter the results if proper parameters are passed in URLs"
|
|
243
204
|
msgstr ""
|
|
244
205
|
|
|
245
|
-
#. Default: "Hide Button"
|
|
246
|
-
#: components/Blocks/Slider/schema
|
|
247
|
-
msgid "Hide Button"
|
|
248
|
-
msgstr ""
|
|
249
|
-
|
|
250
206
|
#. Default: "Hide facet?"
|
|
251
207
|
#: components/Blocks/EventCalendar/Search/schema
|
|
252
208
|
msgid "Hide facet?"
|
|
@@ -280,11 +236,6 @@ msgstr ""
|
|
|
280
236
|
msgid "Invalid Block"
|
|
281
237
|
msgstr ""
|
|
282
238
|
|
|
283
|
-
#. Default: "Invalid Slider source"
|
|
284
|
-
#: components/Blocks/Slider/Data
|
|
285
|
-
msgid "Invalid Slider source"
|
|
286
|
-
msgstr ""
|
|
287
|
-
|
|
288
239
|
#. Default: "Item"
|
|
289
240
|
#: components/Widgets/schema/iconLinkListSchema
|
|
290
241
|
msgid "Item"
|
|
@@ -295,21 +246,6 @@ msgstr ""
|
|
|
295
246
|
msgid "Label"
|
|
296
247
|
msgstr ""
|
|
297
248
|
|
|
298
|
-
#. Default: "Large"
|
|
299
|
-
#: components/Widgets/Size
|
|
300
|
-
msgid "Large"
|
|
301
|
-
msgstr ""
|
|
302
|
-
|
|
303
|
-
#. Default: "Layout"
|
|
304
|
-
#: components/Widgets/BlockWidth
|
|
305
|
-
msgid "Layout"
|
|
306
|
-
msgstr ""
|
|
307
|
-
|
|
308
|
-
#. Default: "Left"
|
|
309
|
-
#: components/Widgets/BlockAlignment
|
|
310
|
-
msgid "Left"
|
|
311
|
-
msgstr ""
|
|
312
|
-
|
|
313
249
|
#. Default: "Link"
|
|
314
250
|
#: components/Widgets/schema/footerLinksSchema
|
|
315
251
|
msgid "Link"
|
|
@@ -355,11 +291,6 @@ msgstr "Logo-Bild"
|
|
|
355
291
|
msgid "Logo of"
|
|
356
292
|
msgstr ""
|
|
357
293
|
|
|
358
|
-
#. Default: "Medium"
|
|
359
|
-
#: components/Widgets/Size
|
|
360
|
-
msgid "Medium"
|
|
361
|
-
msgstr ""
|
|
362
|
-
|
|
363
294
|
#. Default: "Move down"
|
|
364
295
|
#: components/Blocks/Block/Edit
|
|
365
296
|
msgid "Move down"
|
|
@@ -375,11 +306,6 @@ msgstr ""
|
|
|
375
306
|
msgid "Multiple choices?"
|
|
376
307
|
msgstr ""
|
|
377
308
|
|
|
378
|
-
#. Default: "Narrow"
|
|
379
|
-
#: components/Widgets/BlockWidth
|
|
380
|
-
msgid "Narrow"
|
|
381
|
-
msgstr ""
|
|
382
|
-
|
|
383
309
|
#. Default: "Next Page"
|
|
384
310
|
#: components/Blocks/Listing/ListingBody
|
|
385
311
|
msgid "Next Page"
|
|
@@ -441,9 +367,6 @@ msgid "Phone"
|
|
|
441
367
|
msgstr ""
|
|
442
368
|
|
|
443
369
|
#. Default: "Please choose an existing content as source for this element"
|
|
444
|
-
#: components/Blocks/Slider/DefaultBody
|
|
445
|
-
#: components/Blocks/Slider/SliderVariants
|
|
446
|
-
#: components/Blocks/Slider/View
|
|
447
370
|
#: components/Blocks/Teaser/Body
|
|
448
371
|
msgid "Please choose an existing content as source for this element"
|
|
449
372
|
msgstr ""
|
|
@@ -468,11 +391,6 @@ msgstr ""
|
|
|
468
391
|
msgid "Previous Page"
|
|
469
392
|
msgstr ""
|
|
470
393
|
|
|
471
|
-
#. Default: "Refresh source content"
|
|
472
|
-
#: components/Blocks/Slider/Data
|
|
473
|
-
msgid "Refresh source content"
|
|
474
|
-
msgstr ""
|
|
475
|
-
|
|
476
394
|
#. Default: "Register"
|
|
477
395
|
#: components/Anontools/Anontools
|
|
478
396
|
msgid "Register"
|
|
@@ -484,21 +402,11 @@ msgstr ""
|
|
|
484
402
|
msgid "Remove item"
|
|
485
403
|
msgstr ""
|
|
486
404
|
|
|
487
|
-
#. Default: "Reset the block"
|
|
488
|
-
#: components/Blocks/Slider/Data
|
|
489
|
-
msgid "Reset the block"
|
|
490
|
-
msgstr ""
|
|
491
|
-
|
|
492
405
|
#. Default: "Result"
|
|
493
406
|
#: components/Blocks/Listing/ListingBody
|
|
494
407
|
msgid "Result"
|
|
495
408
|
msgstr ""
|
|
496
409
|
|
|
497
|
-
#. Default: "Right"
|
|
498
|
-
#: components/Widgets/BlockAlignment
|
|
499
|
-
msgid "Right"
|
|
500
|
-
msgstr ""
|
|
501
|
-
|
|
502
410
|
#. Default: "Room"
|
|
503
411
|
#: components/Summary/PersonSummary
|
|
504
412
|
msgid "Room"
|
|
@@ -556,11 +464,6 @@ msgstr ""
|
|
|
556
464
|
msgid "Section title"
|
|
557
465
|
msgstr ""
|
|
558
466
|
|
|
559
|
-
#. Default: "Short line"
|
|
560
|
-
#: components/Blocks/Separator/schema
|
|
561
|
-
msgid "Short line"
|
|
562
|
-
msgstr ""
|
|
563
|
-
|
|
564
467
|
#. Default: "Show item"
|
|
565
468
|
#: components/Widgets/BlocksObject
|
|
566
469
|
#: components/Widgets/ObjectList
|
|
@@ -592,16 +495,16 @@ msgstr ""
|
|
|
592
495
|
msgid "Simple"
|
|
593
496
|
msgstr ""
|
|
594
497
|
|
|
498
|
+
#. Default: "Site Setup"
|
|
499
|
+
#: components/Breadcrumbs/Breadcrumbs
|
|
500
|
+
msgid "Site Setup"
|
|
501
|
+
msgstr ""
|
|
502
|
+
|
|
595
503
|
#. Default: "Sitemap"
|
|
596
504
|
#: index
|
|
597
505
|
msgid "Sitemap"
|
|
598
506
|
msgstr ""
|
|
599
507
|
|
|
600
|
-
#. Default: "Small"
|
|
601
|
-
#: components/Widgets/Size
|
|
602
|
-
msgid "Small"
|
|
603
|
-
msgstr ""
|
|
604
|
-
|
|
605
508
|
#. Default: "Sort on"
|
|
606
509
|
#: components/Blocks/EventCalendar/Search/components/SortOn
|
|
607
510
|
msgid "Sort on"
|
|
@@ -622,12 +525,6 @@ msgstr ""
|
|
|
622
525
|
msgid "Sorting"
|
|
623
526
|
msgstr ""
|
|
624
527
|
|
|
625
|
-
#. Default: "Source"
|
|
626
|
-
#: components/Blocks/Slider/DefaultBody
|
|
627
|
-
#: components/Blocks/Slider/SliderVariants
|
|
628
|
-
msgid "Source"
|
|
629
|
-
msgstr ""
|
|
630
|
-
|
|
631
528
|
#. Default: "Sponsored by:"
|
|
632
529
|
#: components/Footer/slots/FollowUsLogoAndLinks
|
|
633
530
|
msgid "Sponsored by:"
|
|
@@ -687,12 +584,36 @@ msgstr ""
|
|
|
687
584
|
msgid "availableViews"
|
|
688
585
|
msgstr ""
|
|
689
586
|
|
|
587
|
+
#. Default: "The {type} block with the id {block} has encountered an error.{lineBreak}You can try to undo your changes (via the undo toolbar or pressing {shortcut}), or try to delete the block and recreate it again."
|
|
588
|
+
#: components/Blocks/Block/ErrorBoundaryMessage
|
|
589
|
+
msgid "blockErrorBoundaryDescription"
|
|
590
|
+
msgstr ""
|
|
591
|
+
|
|
592
|
+
#. Default: "Block error:"
|
|
593
|
+
#: components/Blocks/Block/ErrorBoundaryMessage
|
|
594
|
+
msgid "blockErrorBoundaryTitle"
|
|
595
|
+
msgstr ""
|
|
596
|
+
|
|
597
|
+
#. Default: "The {type} block with the id {block} errored and cannot be displayed.{lineBreak}Please contact the site administrator for further assistance."
|
|
598
|
+
#: components/Blocks/Block/ErrorBoundaryMessage
|
|
599
|
+
msgid "blockErrorBoundaryViewDescription"
|
|
600
|
+
msgstr ""
|
|
601
|
+
|
|
690
602
|
#. Default: "Delete"
|
|
691
603
|
#: components/Blocks/Block/Edit
|
|
692
|
-
#: components/Blocks/Block/EditBlockWrapper
|
|
693
604
|
msgid "delete"
|
|
694
605
|
msgstr ""
|
|
695
606
|
|
|
607
|
+
#. Default: "delete {type} block"
|
|
608
|
+
#: components/Blocks/Block/EditBlockWrapper
|
|
609
|
+
msgid "delete_block"
|
|
610
|
+
msgstr ""
|
|
611
|
+
|
|
612
|
+
#. Default: "drag {type} block"
|
|
613
|
+
#: components/Blocks/Block/EditBlockWrapper
|
|
614
|
+
msgid "drag_block"
|
|
615
|
+
msgstr ""
|
|
616
|
+
|
|
696
617
|
#. Default: "Clear image"
|
|
697
618
|
#: components/Blocks/Image/ImageSidebar
|
|
698
619
|
msgid "image_block_clear"
|
|
@@ -708,12 +629,6 @@ msgstr ""
|
|
|
708
629
|
msgid "loading"
|
|
709
630
|
msgstr ""
|
|
710
631
|
|
|
711
|
-
#. Default: "More info"
|
|
712
|
-
#: components/Blocks/Slider/DefaultBody
|
|
713
|
-
#: components/Blocks/Slider/SliderVariants
|
|
714
|
-
msgid "moreInfo"
|
|
715
|
-
msgstr ""
|
|
716
|
-
|
|
717
632
|
#. Default: "of"
|
|
718
633
|
#: components/Blocks/Listing/ListingBody
|
|
719
634
|
msgid "of"
|
|
@@ -59,12 +59,6 @@ msgstr ""
|
|
|
59
59
|
msgid "Advanced facets are initially hidden and displayed on demand"
|
|
60
60
|
msgstr ""
|
|
61
61
|
|
|
62
|
-
#. Default: "Alignment"
|
|
63
|
-
#: components/Blocks/Button/schema
|
|
64
|
-
#: components/Blocks/Separator/schema
|
|
65
|
-
msgid "Alignment"
|
|
66
|
-
msgstr "Alineación"
|
|
67
|
-
|
|
68
62
|
#. Default: "Alt text"
|
|
69
63
|
#: components/Widgets/schema/footerLogosSchema
|
|
70
64
|
#: components/Widgets/schema/iconLinkListSchema
|
|
@@ -92,9 +86,7 @@ msgid "Base search query"
|
|
|
92
86
|
msgstr ""
|
|
93
87
|
|
|
94
88
|
#. Default: "Block Width"
|
|
95
|
-
#: components/Blocks/Button/schema
|
|
96
89
|
#: components/Blocks/Image/schema
|
|
97
|
-
#: components/Blocks/Separator/schema
|
|
98
90
|
msgid "Block Width"
|
|
99
91
|
msgstr "Ancho de bloque"
|
|
100
92
|
|
|
@@ -103,21 +95,11 @@ msgstr "Ancho de bloque"
|
|
|
103
95
|
msgid "Breadcrumbs"
|
|
104
96
|
msgstr "Rastro de migas"
|
|
105
97
|
|
|
106
|
-
#. Default: "Button text"
|
|
107
|
-
#: components/Blocks/Slider/schema
|
|
108
|
-
msgid "Button text"
|
|
109
|
-
msgstr "Texto del botón"
|
|
110
|
-
|
|
111
98
|
#. Default: "Cancel search"
|
|
112
99
|
#: components/Blocks/EventCalendar/Search/components/SearchInput
|
|
113
100
|
msgid "Cancel search"
|
|
114
101
|
msgstr ""
|
|
115
102
|
|
|
116
|
-
#. Default: "Center"
|
|
117
|
-
#: components/Widgets/BlockAlignment
|
|
118
|
-
msgid "Center"
|
|
119
|
-
msgstr "Centrar"
|
|
120
|
-
|
|
121
103
|
#. Default: "Close menu"
|
|
122
104
|
#: components/MobileNavigation/MobileNavigation
|
|
123
105
|
#: components/Navigation/Navigation
|
|
@@ -140,12 +122,6 @@ msgstr "La relación de contraste de color {contrastRatio}:1 puede no ser accesi
|
|
|
140
122
|
msgid "Contact"
|
|
141
123
|
msgstr "Contacto"
|
|
142
124
|
|
|
143
|
-
#. Default: "Continue reading"
|
|
144
|
-
#: components/Blocks/Slider/DefaultBody
|
|
145
|
-
#: components/Blocks/Slider/SliderVariants
|
|
146
|
-
msgid "Continue reading"
|
|
147
|
-
msgstr "Seguir leyendo"
|
|
148
|
-
|
|
149
125
|
#. Default: "Controls"
|
|
150
126
|
#: components/Blocks/EventCalendar/Search/schema
|
|
151
127
|
msgid "Controls"
|
|
@@ -156,11 +132,6 @@ msgstr ""
|
|
|
156
132
|
msgid "Copyright"
|
|
157
133
|
msgstr "Copyright"
|
|
158
134
|
|
|
159
|
-
#. Default: "Default"
|
|
160
|
-
#: components/Widgets/BlockWidth
|
|
161
|
-
msgid "Default"
|
|
162
|
-
msgstr "Por defecto"
|
|
163
|
-
|
|
164
135
|
#. Default: "Descending"
|
|
165
136
|
#: components/Blocks/EventCalendar/Search/components/SortOn
|
|
166
137
|
msgid "Descending"
|
|
@@ -219,21 +190,11 @@ msgstr ""
|
|
|
219
190
|
msgid "Field"
|
|
220
191
|
msgstr ""
|
|
221
192
|
|
|
222
|
-
#. Default: "Align"
|
|
223
|
-
#: components/Blocks/Slider/schema
|
|
224
|
-
msgid "Flag align"
|
|
225
|
-
msgstr "Alinear"
|
|
226
|
-
|
|
227
193
|
#. Default: "Follow us:"
|
|
228
194
|
#: components/Footer/slots/FollowUsLogoAndLinks
|
|
229
195
|
msgid "Follow us:"
|
|
230
196
|
msgstr "Síguenos:"
|
|
231
197
|
|
|
232
|
-
#. Default: "Full"
|
|
233
|
-
#: components/Widgets/BlockWidth
|
|
234
|
-
msgid "Full"
|
|
235
|
-
msgstr "Completo"
|
|
236
|
-
|
|
237
198
|
#. Default: "GNU GPL v2 license"
|
|
238
199
|
#: components/Footer/slots/Copyright
|
|
239
200
|
msgid "GNU GPL license"
|
|
@@ -249,11 +210,6 @@ msgstr "Encabezado"
|
|
|
249
210
|
msgid "Hidden facets will still filter the results if proper parameters are passed in URLs"
|
|
250
211
|
msgstr ""
|
|
251
212
|
|
|
252
|
-
#. Default: "Hide Button"
|
|
253
|
-
#: components/Blocks/Slider/schema
|
|
254
|
-
msgid "Hide Button"
|
|
255
|
-
msgstr "Esconder botón"
|
|
256
|
-
|
|
257
213
|
#. Default: "Hide facet?"
|
|
258
214
|
#: components/Blocks/EventCalendar/Search/schema
|
|
259
215
|
msgid "Hide facet?"
|
|
@@ -287,11 +243,6 @@ msgstr "Imagen"
|
|
|
287
243
|
msgid "Invalid Block"
|
|
288
244
|
msgstr ""
|
|
289
245
|
|
|
290
|
-
#. Default: "Invalid Slider source"
|
|
291
|
-
#: components/Blocks/Slider/Data
|
|
292
|
-
msgid "Invalid Slider source"
|
|
293
|
-
msgstr ""
|
|
294
|
-
|
|
295
246
|
#. Default: "Item"
|
|
296
247
|
#: components/Widgets/schema/iconLinkListSchema
|
|
297
248
|
msgid "Item"
|
|
@@ -302,21 +253,6 @@ msgstr "Elemento"
|
|
|
302
253
|
msgid "Label"
|
|
303
254
|
msgstr ""
|
|
304
255
|
|
|
305
|
-
#. Default: "Large"
|
|
306
|
-
#: components/Widgets/Size
|
|
307
|
-
msgid "Large"
|
|
308
|
-
msgstr "Grande"
|
|
309
|
-
|
|
310
|
-
#. Default: "Layout"
|
|
311
|
-
#: components/Widgets/BlockWidth
|
|
312
|
-
msgid "Layout"
|
|
313
|
-
msgstr "Diseño"
|
|
314
|
-
|
|
315
|
-
#. Default: "Left"
|
|
316
|
-
#: components/Widgets/BlockAlignment
|
|
317
|
-
msgid "Left"
|
|
318
|
-
msgstr "Izquierda"
|
|
319
|
-
|
|
320
256
|
#. Default: "Link"
|
|
321
257
|
#: components/Widgets/schema/footerLinksSchema
|
|
322
258
|
msgid "Link"
|
|
@@ -362,11 +298,6 @@ msgstr "Imagen del logo"
|
|
|
362
298
|
msgid "Logo of"
|
|
363
299
|
msgstr "Logotipo de"
|
|
364
300
|
|
|
365
|
-
#. Default: "Medium"
|
|
366
|
-
#: components/Widgets/Size
|
|
367
|
-
msgid "Medium"
|
|
368
|
-
msgstr "Mediano"
|
|
369
|
-
|
|
370
301
|
#. Default: "Move down"
|
|
371
302
|
#: components/Blocks/Block/Edit
|
|
372
303
|
msgid "Move down"
|
|
@@ -382,11 +313,6 @@ msgstr ""
|
|
|
382
313
|
msgid "Multiple choices?"
|
|
383
314
|
msgstr ""
|
|
384
315
|
|
|
385
|
-
#. Default: "Narrow"
|
|
386
|
-
#: components/Widgets/BlockWidth
|
|
387
|
-
msgid "Narrow"
|
|
388
|
-
msgstr "Estrecho"
|
|
389
|
-
|
|
390
316
|
#. Default: "Next Page"
|
|
391
317
|
#: components/Blocks/Listing/ListingBody
|
|
392
318
|
msgid "Next Page"
|
|
@@ -448,9 +374,6 @@ msgid "Phone"
|
|
|
448
374
|
msgstr "Teléfono"
|
|
449
375
|
|
|
450
376
|
#. Default: "Please choose an existing content as source for this element"
|
|
451
|
-
#: components/Blocks/Slider/DefaultBody
|
|
452
|
-
#: components/Blocks/Slider/SliderVariants
|
|
453
|
-
#: components/Blocks/Slider/View
|
|
454
377
|
#: components/Blocks/Teaser/Body
|
|
455
378
|
msgid "Please choose an existing content as source for this element"
|
|
456
379
|
msgstr "Elija un contenido para utilizarlo como fuente de datos para este elemento"
|
|
@@ -475,11 +398,6 @@ msgstr "Pulsar"
|
|
|
475
398
|
msgid "Previous Page"
|
|
476
399
|
msgstr "Página anterior"
|
|
477
400
|
|
|
478
|
-
#. Default: "Refresh source content"
|
|
479
|
-
#: components/Blocks/Slider/Data
|
|
480
|
-
msgid "Refresh source content"
|
|
481
|
-
msgstr ""
|
|
482
|
-
|
|
483
401
|
#. Default: "Register"
|
|
484
402
|
#: components/Anontools/Anontools
|
|
485
403
|
msgid "Register"
|
|
@@ -491,21 +409,11 @@ msgstr "Registrar usuario"
|
|
|
491
409
|
msgid "Remove item"
|
|
492
410
|
msgstr "Eliminar elemento"
|
|
493
411
|
|
|
494
|
-
#. Default: "Reset the block"
|
|
495
|
-
#: components/Blocks/Slider/Data
|
|
496
|
-
msgid "Reset the block"
|
|
497
|
-
msgstr ""
|
|
498
|
-
|
|
499
412
|
#. Default: "Result"
|
|
500
413
|
#: components/Blocks/Listing/ListingBody
|
|
501
414
|
msgid "Result"
|
|
502
415
|
msgstr "Resultado"
|
|
503
416
|
|
|
504
|
-
#. Default: "Right"
|
|
505
|
-
#: components/Widgets/BlockAlignment
|
|
506
|
-
msgid "Right"
|
|
507
|
-
msgstr "Derecha"
|
|
508
|
-
|
|
509
417
|
#. Default: "Room"
|
|
510
418
|
#: components/Summary/PersonSummary
|
|
511
419
|
msgid "Room"
|
|
@@ -563,11 +471,6 @@ msgstr "Ha buscado"
|
|
|
563
471
|
msgid "Section title"
|
|
564
472
|
msgstr ""
|
|
565
473
|
|
|
566
|
-
#. Default: "Short line"
|
|
567
|
-
#: components/Blocks/Separator/schema
|
|
568
|
-
msgid "Short line"
|
|
569
|
-
msgstr "Línea corta"
|
|
570
|
-
|
|
571
474
|
#. Default: "Show item"
|
|
572
475
|
#: components/Widgets/BlocksObject
|
|
573
476
|
#: components/Widgets/ObjectList
|
|
@@ -599,16 +502,16 @@ msgstr ""
|
|
|
599
502
|
msgid "Simple"
|
|
600
503
|
msgstr ""
|
|
601
504
|
|
|
505
|
+
#. Default: "Site Setup"
|
|
506
|
+
#: components/Breadcrumbs/Breadcrumbs
|
|
507
|
+
msgid "Site Setup"
|
|
508
|
+
msgstr ""
|
|
509
|
+
|
|
602
510
|
#. Default: "Sitemap"
|
|
603
511
|
#: index
|
|
604
512
|
msgid "Sitemap"
|
|
605
513
|
msgstr "Mapa del sitio"
|
|
606
514
|
|
|
607
|
-
#. Default: "Small"
|
|
608
|
-
#: components/Widgets/Size
|
|
609
|
-
msgid "Small"
|
|
610
|
-
msgstr "Pequeño"
|
|
611
|
-
|
|
612
515
|
#. Default: "Sort on"
|
|
613
516
|
#: components/Blocks/EventCalendar/Search/components/SortOn
|
|
614
517
|
msgid "Sort on"
|
|
@@ -629,12 +532,6 @@ msgstr ""
|
|
|
629
532
|
msgid "Sorting"
|
|
630
533
|
msgstr "Ordenación"
|
|
631
534
|
|
|
632
|
-
#. Default: "Source"
|
|
633
|
-
#: components/Blocks/Slider/DefaultBody
|
|
634
|
-
#: components/Blocks/Slider/SliderVariants
|
|
635
|
-
msgid "Source"
|
|
636
|
-
msgstr "Origen"
|
|
637
|
-
|
|
638
535
|
#. Default: "Sponsored by:"
|
|
639
536
|
#: components/Footer/slots/FollowUsLogoAndLinks
|
|
640
537
|
msgid "Sponsored by:"
|
|
@@ -648,7 +545,7 @@ msgstr "Inicio"
|
|
|
648
545
|
#. Default: "Switch to"
|
|
649
546
|
#: components/LanguageSelector/LanguageSelector
|
|
650
547
|
msgid "Switch to"
|
|
651
|
-
msgstr "
|
|
548
|
+
msgstr ""
|
|
652
549
|
|
|
653
550
|
#. Default: "Target"
|
|
654
551
|
#: components/Widgets/schema/footerLinksSchema
|
|
@@ -694,12 +591,36 @@ msgstr "Sitio web"
|
|
|
694
591
|
msgid "availableViews"
|
|
695
592
|
msgstr ""
|
|
696
593
|
|
|
594
|
+
#. Default: "The {type} block with the id {block} has encountered an error.{lineBreak}You can try to undo your changes (via the undo toolbar or pressing {shortcut}), or try to delete the block and recreate it again."
|
|
595
|
+
#: components/Blocks/Block/ErrorBoundaryMessage
|
|
596
|
+
msgid "blockErrorBoundaryDescription"
|
|
597
|
+
msgstr ""
|
|
598
|
+
|
|
599
|
+
#. Default: "Block error:"
|
|
600
|
+
#: components/Blocks/Block/ErrorBoundaryMessage
|
|
601
|
+
msgid "blockErrorBoundaryTitle"
|
|
602
|
+
msgstr ""
|
|
603
|
+
|
|
604
|
+
#. Default: "The {type} block with the id {block} errored and cannot be displayed.{lineBreak}Please contact the site administrator for further assistance."
|
|
605
|
+
#: components/Blocks/Block/ErrorBoundaryMessage
|
|
606
|
+
msgid "blockErrorBoundaryViewDescription"
|
|
607
|
+
msgstr ""
|
|
608
|
+
|
|
697
609
|
#. Default: "Delete"
|
|
698
610
|
#: components/Blocks/Block/Edit
|
|
699
|
-
#: components/Blocks/Block/EditBlockWrapper
|
|
700
611
|
msgid "delete"
|
|
701
612
|
msgstr ""
|
|
702
613
|
|
|
614
|
+
#. Default: "delete {type} block"
|
|
615
|
+
#: components/Blocks/Block/EditBlockWrapper
|
|
616
|
+
msgid "delete_block"
|
|
617
|
+
msgstr ""
|
|
618
|
+
|
|
619
|
+
#. Default: "drag {type} block"
|
|
620
|
+
#: components/Blocks/Block/EditBlockWrapper
|
|
621
|
+
msgid "drag_block"
|
|
622
|
+
msgstr ""
|
|
623
|
+
|
|
703
624
|
#. Default: "Clear image"
|
|
704
625
|
#: components/Blocks/Image/ImageSidebar
|
|
705
626
|
msgid "image_block_clear"
|
|
@@ -715,12 +636,6 @@ msgstr "Previsualización de la imagen"
|
|
|
715
636
|
msgid "loading"
|
|
716
637
|
msgstr "Cargando"
|
|
717
638
|
|
|
718
|
-
#. Default: "More info"
|
|
719
|
-
#: components/Blocks/Slider/DefaultBody
|
|
720
|
-
#: components/Blocks/Slider/SliderVariants
|
|
721
|
-
msgid "moreInfo"
|
|
722
|
-
msgstr "Más información"
|
|
723
|
-
|
|
724
639
|
#. Default: "of"
|
|
725
640
|
#: components/Blocks/Listing/ListingBody
|
|
726
641
|
msgid "of"
|