@kitconcept/volto-light-theme 8.0.0-alpha.2 → 8.0.0-alpha.21
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 +232 -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 +7 -4
- 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/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 "Facetas avançadas?"
|
|
|
52
52
|
msgid "Advanced facets are initially hidden and displayed on demand"
|
|
53
53
|
msgstr "Facetas avançadas são inicialmente ocultas e exibidas sob demanda."
|
|
54
54
|
|
|
55
|
-
#. Default: "Alignment"
|
|
56
|
-
#: components/Blocks/Button/schema
|
|
57
|
-
#: components/Blocks/Separator/schema
|
|
58
|
-
msgid "Alignment"
|
|
59
|
-
msgstr "Alinhamento"
|
|
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 "Consulta base de busca"
|
|
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 "Largura do bloco"
|
|
93
85
|
|
|
@@ -96,21 +88,11 @@ msgstr "Largura do bloco"
|
|
|
96
88
|
msgid "Breadcrumbs"
|
|
97
89
|
msgstr "Migalhas"
|
|
98
90
|
|
|
99
|
-
#. Default: "Button text"
|
|
100
|
-
#: components/Blocks/Slider/schema
|
|
101
|
-
msgid "Button text"
|
|
102
|
-
msgstr "Texto do botão"
|
|
103
|
-
|
|
104
91
|
#. Default: "Cancel search"
|
|
105
92
|
#: components/Blocks/EventCalendar/Search/components/SearchInput
|
|
106
93
|
msgid "Cancel search"
|
|
107
94
|
msgstr "Cancelar busca"
|
|
108
95
|
|
|
109
|
-
#. Default: "Center"
|
|
110
|
-
#: components/Widgets/BlockAlignment
|
|
111
|
-
msgid "Center"
|
|
112
|
-
msgstr "Centralizado"
|
|
113
|
-
|
|
114
96
|
#. Default: "Close menu"
|
|
115
97
|
#: components/MobileNavigation/MobileNavigation
|
|
116
98
|
#: components/Navigation/Navigation
|
|
@@ -133,12 +115,6 @@ msgstr "A razão de contraste de cor {contrastRatio}:1 pode não ser acessível
|
|
|
133
115
|
msgid "Contact"
|
|
134
116
|
msgstr "Contato"
|
|
135
117
|
|
|
136
|
-
#. Default: "Continue reading"
|
|
137
|
-
#: components/Blocks/Slider/DefaultBody
|
|
138
|
-
#: components/Blocks/Slider/SliderVariants
|
|
139
|
-
msgid "Continue reading"
|
|
140
|
-
msgstr "Continue lendo"
|
|
141
|
-
|
|
142
118
|
#. Default: "Controls"
|
|
143
119
|
#: components/Blocks/EventCalendar/Search/schema
|
|
144
120
|
msgid "Controls"
|
|
@@ -149,11 +125,6 @@ msgstr "Controles"
|
|
|
149
125
|
msgid "Copyright"
|
|
150
126
|
msgstr "Copyright"
|
|
151
127
|
|
|
152
|
-
#. Default: "Default"
|
|
153
|
-
#: components/Widgets/BlockWidth
|
|
154
|
-
msgid "Default"
|
|
155
|
-
msgstr "Padrão"
|
|
156
|
-
|
|
157
128
|
#. Default: "Descending"
|
|
158
129
|
#: components/Blocks/EventCalendar/Search/components/SortOn
|
|
159
130
|
msgid "Descending"
|
|
@@ -179,7 +150,7 @@ msgstr "Baixar arquivo"
|
|
|
179
150
|
#. Default: "E-mail"
|
|
180
151
|
#: components/Summary/PersonSummary
|
|
181
152
|
msgid "E-mail"
|
|
182
|
-
msgstr ""
|
|
153
|
+
msgstr "E-mail"
|
|
183
154
|
|
|
184
155
|
#. Default: "Empty object list"
|
|
185
156
|
#: components/Widgets/BlocksObject
|
|
@@ -212,21 +183,11 @@ msgstr "Facetas"
|
|
|
212
183
|
msgid "Field"
|
|
213
184
|
msgstr "Campo"
|
|
214
185
|
|
|
215
|
-
#. Default: "Align"
|
|
216
|
-
#: components/Blocks/Slider/schema
|
|
217
|
-
msgid "Flag align"
|
|
218
|
-
msgstr "Alinhar"
|
|
219
|
-
|
|
220
186
|
#. Default: "Follow us:"
|
|
221
187
|
#: components/Footer/slots/FollowUsLogoAndLinks
|
|
222
188
|
msgid "Follow us:"
|
|
223
189
|
msgstr "Acompanhe-nos:"
|
|
224
190
|
|
|
225
|
-
#. Default: "Full"
|
|
226
|
-
#: components/Widgets/BlockWidth
|
|
227
|
-
msgid "Full"
|
|
228
|
-
msgstr "Completo"
|
|
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 "Chamada"
|
|
|
242
203
|
msgid "Hidden facets will still filter the results if proper parameters are passed in URLs"
|
|
243
204
|
msgstr "Facetas ocultas ainda filtrarão os resultados se parâmetros adequados forem passados nas URLs."
|
|
244
205
|
|
|
245
|
-
#. Default: "Hide Button"
|
|
246
|
-
#: components/Blocks/Slider/schema
|
|
247
|
-
msgid "Hide Button"
|
|
248
|
-
msgstr "Ocultar botão"
|
|
249
|
-
|
|
250
206
|
#. Default: "Hide facet?"
|
|
251
207
|
#: components/Blocks/EventCalendar/Search/schema
|
|
252
208
|
msgid "Hide facet?"
|
|
@@ -267,7 +223,7 @@ msgstr "Baixar ICS"
|
|
|
267
223
|
#. Default: "Icon"
|
|
268
224
|
#: components/Widgets/schema/iconLinkListSchema
|
|
269
225
|
msgid "Icon"
|
|
270
|
-
msgstr ""
|
|
226
|
+
msgstr "Ícone"
|
|
271
227
|
|
|
272
228
|
#. Default: "Image"
|
|
273
229
|
#: components/Blocks/Image/ImageSidebar
|
|
@@ -280,11 +236,6 @@ msgstr "Imagem"
|
|
|
280
236
|
msgid "Invalid Block"
|
|
281
237
|
msgstr "Bloco inválido"
|
|
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 "Item"
|
|
|
295
246
|
msgid "Label"
|
|
296
247
|
msgstr "Rótulo"
|
|
297
248
|
|
|
298
|
-
#. Default: "Large"
|
|
299
|
-
#: components/Widgets/Size
|
|
300
|
-
msgid "Large"
|
|
301
|
-
msgstr "Grande"
|
|
302
|
-
|
|
303
|
-
#. Default: "Layout"
|
|
304
|
-
#: components/Widgets/BlockWidth
|
|
305
|
-
msgid "Layout"
|
|
306
|
-
msgstr "Layout"
|
|
307
|
-
|
|
308
|
-
#. Default: "Left"
|
|
309
|
-
#: components/Widgets/BlockAlignment
|
|
310
|
-
msgid "Left"
|
|
311
|
-
msgstr "Esquerda"
|
|
312
|
-
|
|
313
249
|
#. Default: "Link"
|
|
314
250
|
#: components/Widgets/schema/footerLinksSchema
|
|
315
251
|
msgid "Link"
|
|
@@ -355,11 +291,6 @@ msgstr "Imagem da logo"
|
|
|
355
291
|
msgid "Logo of"
|
|
356
292
|
msgstr "Logo de"
|
|
357
293
|
|
|
358
|
-
#. Default: "Medium"
|
|
359
|
-
#: components/Widgets/Size
|
|
360
|
-
msgid "Medium"
|
|
361
|
-
msgstr "Médio"
|
|
362
|
-
|
|
363
294
|
#. Default: "Move down"
|
|
364
295
|
#: components/Blocks/Block/Edit
|
|
365
296
|
msgid "Move down"
|
|
@@ -373,12 +304,7 @@ msgstr "Mover para cima"
|
|
|
373
304
|
#. Default: "Multiple choices?"
|
|
374
305
|
#: components/Blocks/EventCalendar/Search/schema
|
|
375
306
|
msgid "Multiple choices?"
|
|
376
|
-
msgstr ""
|
|
377
|
-
|
|
378
|
-
#. Default: "Narrow"
|
|
379
|
-
#: components/Widgets/BlockWidth
|
|
380
|
-
msgid "Narrow"
|
|
381
|
-
msgstr "Estreito"
|
|
307
|
+
msgstr "Múltiplas escolhas?"
|
|
382
308
|
|
|
383
309
|
#. Default: "Next Page"
|
|
384
310
|
#: components/Blocks/Listing/ListingBody
|
|
@@ -403,7 +329,7 @@ msgstr "Nenhuma seleção"
|
|
|
403
329
|
#. Default: "Open configuration"
|
|
404
330
|
#: components/Widgets/ModalJSONEditor
|
|
405
331
|
msgid "Open configuration"
|
|
406
|
-
msgstr ""
|
|
332
|
+
msgstr "Abrir configuração"
|
|
407
333
|
|
|
408
334
|
#. Default: "Open in a new tab"
|
|
409
335
|
#: components/Widgets/schema/footerLinksSchema
|
|
@@ -427,12 +353,12 @@ msgstr "Geral"
|
|
|
427
353
|
#. Default: "Pagination Navigation"
|
|
428
354
|
#: components/Blocks/Listing/ListingBody
|
|
429
355
|
msgid "Pagination Navigation"
|
|
430
|
-
msgstr ""
|
|
356
|
+
msgstr "Navegação por página"
|
|
431
357
|
|
|
432
358
|
#. Default: "Pagination Navigation for {headline}"
|
|
433
359
|
#: components/Blocks/Listing/ListingBody
|
|
434
360
|
msgid "Pagination Navigation for {headline}"
|
|
435
|
-
msgstr ""
|
|
361
|
+
msgstr "Navegação por página para {headline}"
|
|
436
362
|
|
|
437
363
|
#. Default: "Phone"
|
|
438
364
|
#: components/Blocks/EventMetadata/View
|
|
@@ -441,9 +367,6 @@ msgid "Phone"
|
|
|
441
367
|
msgstr "Telefone"
|
|
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 "Por favor, escolha um conteúdo existente como fonte para esse elemento"
|
|
@@ -468,11 +391,6 @@ msgstr "Imprensa"
|
|
|
468
391
|
msgid "Previous Page"
|
|
469
392
|
msgstr "Página anterior"
|
|
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 "Criar conta"
|
|
|
484
402
|
msgid "Remove item"
|
|
485
403
|
msgstr "Remover item"
|
|
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 "Resultado"
|
|
496
409
|
|
|
497
|
-
#. Default: "Right"
|
|
498
|
-
#: components/Widgets/BlockAlignment
|
|
499
|
-
msgid "Right"
|
|
500
|
-
msgstr "Direita"
|
|
501
|
-
|
|
502
410
|
#. Default: "Room"
|
|
503
411
|
#: components/Summary/PersonSummary
|
|
504
412
|
msgid "Room"
|
|
@@ -556,11 +464,6 @@ msgstr "Busca por"
|
|
|
556
464
|
msgid "Section title"
|
|
557
465
|
msgstr "Título da seção"
|
|
558
466
|
|
|
559
|
-
#. Default: "Short line"
|
|
560
|
-
#: components/Blocks/Separator/schema
|
|
561
|
-
msgid "Short line"
|
|
562
|
-
msgstr "Linha curta"
|
|
563
|
-
|
|
564
467
|
#. Default: "Show item"
|
|
565
468
|
#: components/Widgets/BlocksObject
|
|
566
469
|
#: components/Widgets/ObjectList
|
|
@@ -590,18 +493,18 @@ msgstr "Exibir total de resultados"
|
|
|
590
493
|
#. Default: "Simple"
|
|
591
494
|
#: index
|
|
592
495
|
msgid "Simple"
|
|
593
|
-
msgstr ""
|
|
496
|
+
msgstr "Simples"
|
|
497
|
+
|
|
498
|
+
#. Default: "Site Setup"
|
|
499
|
+
#: components/Breadcrumbs/Breadcrumbs
|
|
500
|
+
msgid "Site Setup"
|
|
501
|
+
msgstr "Configurações do site"
|
|
594
502
|
|
|
595
503
|
#. Default: "Sitemap"
|
|
596
504
|
#: index
|
|
597
505
|
msgid "Sitemap"
|
|
598
506
|
msgstr "Mapa do Site"
|
|
599
507
|
|
|
600
|
-
#. Default: "Small"
|
|
601
|
-
#: components/Widgets/Size
|
|
602
|
-
msgid "Small"
|
|
603
|
-
msgstr "Pequeno"
|
|
604
|
-
|
|
605
508
|
#. Default: "Sort on"
|
|
606
509
|
#: components/Blocks/EventCalendar/Search/components/SortOn
|
|
607
510
|
msgid "Sort on"
|
|
@@ -622,12 +525,6 @@ msgstr "Ordenado por"
|
|
|
622
525
|
msgid "Sorting"
|
|
623
526
|
msgstr "Ordenação"
|
|
624
527
|
|
|
625
|
-
#. Default: "Source"
|
|
626
|
-
#: components/Blocks/Slider/DefaultBody
|
|
627
|
-
#: components/Blocks/Slider/SliderVariants
|
|
628
|
-
msgid "Source"
|
|
629
|
-
msgstr "Fonte"
|
|
630
|
-
|
|
631
528
|
#. Default: "Sponsored by:"
|
|
632
529
|
#: components/Footer/slots/FollowUsLogoAndLinks
|
|
633
530
|
msgid "Sponsored by:"
|
|
@@ -641,7 +538,7 @@ msgstr "Início"
|
|
|
641
538
|
#. Default: "Switch to"
|
|
642
539
|
#: components/LanguageSelector/LanguageSelector
|
|
643
540
|
msgid "Switch to"
|
|
644
|
-
msgstr "
|
|
541
|
+
msgstr "Mudar para"
|
|
645
542
|
|
|
646
543
|
#. Default: "Target"
|
|
647
544
|
#: components/Widgets/schema/footerLinksSchema
|
|
@@ -687,12 +584,36 @@ msgstr "Site"
|
|
|
687
584
|
msgid "availableViews"
|
|
688
585
|
msgstr "Visões disponíveis"
|
|
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 "O bloco {type} com o id {block} encontrou um erro.{lineBreak}Você pode tentar desfazer suas alterações (via barra de desfazer ou pressionando {shortcut}), ou tente excluir o bloco e recriá-lo novamente."
|
|
591
|
+
|
|
592
|
+
#. Default: "Block error:"
|
|
593
|
+
#: components/Blocks/Block/ErrorBoundaryMessage
|
|
594
|
+
msgid "blockErrorBoundaryTitle"
|
|
595
|
+
msgstr "Erro no bloco:"
|
|
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 "O bloco {type} com o id {block} encontrou um erro e não pode ser exibido.{lineBreak}Por favor, entre em contato com o administrador do site para mais assistência."
|
|
601
|
+
|
|
690
602
|
#. Default: "Delete"
|
|
691
603
|
#: components/Blocks/Block/Edit
|
|
692
|
-
#: components/Blocks/Block/EditBlockWrapper
|
|
693
604
|
msgid "delete"
|
|
694
605
|
msgstr "Excluir"
|
|
695
606
|
|
|
607
|
+
#. Default: "delete {type} block"
|
|
608
|
+
#: components/Blocks/Block/EditBlockWrapper
|
|
609
|
+
msgid "delete_block"
|
|
610
|
+
msgstr "Excluir bloco {type}"
|
|
611
|
+
|
|
612
|
+
#. Default: "drag {type} block"
|
|
613
|
+
#: components/Blocks/Block/EditBlockWrapper
|
|
614
|
+
msgid "drag_block"
|
|
615
|
+
msgstr "Arrastar bloco {type}"
|
|
616
|
+
|
|
696
617
|
#. Default: "Clear image"
|
|
697
618
|
#: components/Blocks/Image/ImageSidebar
|
|
698
619
|
msgid "image_block_clear"
|
|
@@ -708,12 +629,6 @@ msgstr "Preview da imagem"
|
|
|
708
629
|
msgid "loading"
|
|
709
630
|
msgstr "carregando"
|
|
710
631
|
|
|
711
|
-
#. Default: "More info"
|
|
712
|
-
#: components/Blocks/Slider/DefaultBody
|
|
713
|
-
#: components/Blocks/Slider/SliderVariants
|
|
714
|
-
msgid "moreInfo"
|
|
715
|
-
msgstr "Mais informações"
|
|
716
|
-
|
|
717
632
|
#. Default: "of"
|
|
718
633
|
#: components/Blocks/Listing/ListingBody
|
|
719
634
|
msgid "of"
|
package/locales/volto.pot
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
msgid ""
|
|
2
2
|
msgstr ""
|
|
3
3
|
"Project-Id-Version: Plone\n"
|
|
4
|
-
"POT-Creation-Date:
|
|
4
|
+
"POT-Creation-Date: 2026-02-16T14:21:29.474Z\n"
|
|
5
5
|
"Last-Translator: Plone i18n <plone-i18n@lists.sourceforge.net>\n"
|
|
6
6
|
"Language-Team: Plone i18n <plone-i18n@lists.sourceforge.net>\n"
|
|
7
7
|
"Content-Type: text/plain; charset=utf-8\n"
|
|
@@ -54,12 +54,6 @@ msgstr ""
|
|
|
54
54
|
msgid "Advanced facets are initially hidden and displayed on demand"
|
|
55
55
|
msgstr ""
|
|
56
56
|
|
|
57
|
-
#. Default: "Alignment"
|
|
58
|
-
#: components/Blocks/Button/schema
|
|
59
|
-
#: components/Blocks/Separator/schema
|
|
60
|
-
msgid "Alignment"
|
|
61
|
-
msgstr ""
|
|
62
|
-
|
|
63
57
|
#. Default: "Alt text"
|
|
64
58
|
#: components/Widgets/schema/footerLogosSchema
|
|
65
59
|
#: components/Widgets/schema/iconLinkListSchema
|
|
@@ -87,9 +81,7 @@ msgid "Base search query"
|
|
|
87
81
|
msgstr ""
|
|
88
82
|
|
|
89
83
|
#. Default: "Block Width"
|
|
90
|
-
#: components/Blocks/Button/schema
|
|
91
84
|
#: components/Blocks/Image/schema
|
|
92
|
-
#: components/Blocks/Separator/schema
|
|
93
85
|
msgid "Block Width"
|
|
94
86
|
msgstr ""
|
|
95
87
|
|
|
@@ -98,21 +90,11 @@ msgstr ""
|
|
|
98
90
|
msgid "Breadcrumbs"
|
|
99
91
|
msgstr ""
|
|
100
92
|
|
|
101
|
-
#. Default: "Button text"
|
|
102
|
-
#: components/Blocks/Slider/schema
|
|
103
|
-
msgid "Button text"
|
|
104
|
-
msgstr ""
|
|
105
|
-
|
|
106
93
|
#. Default: "Cancel search"
|
|
107
94
|
#: components/Blocks/EventCalendar/Search/components/SearchInput
|
|
108
95
|
msgid "Cancel search"
|
|
109
96
|
msgstr ""
|
|
110
97
|
|
|
111
|
-
#. Default: "Center"
|
|
112
|
-
#: components/Widgets/BlockAlignment
|
|
113
|
-
msgid "Center"
|
|
114
|
-
msgstr ""
|
|
115
|
-
|
|
116
98
|
#. Default: "Close menu"
|
|
117
99
|
#: components/MobileNavigation/MobileNavigation
|
|
118
100
|
#: components/Navigation/Navigation
|
|
@@ -135,12 +117,6 @@ msgstr ""
|
|
|
135
117
|
msgid "Contact"
|
|
136
118
|
msgstr ""
|
|
137
119
|
|
|
138
|
-
#. Default: "Continue reading"
|
|
139
|
-
#: components/Blocks/Slider/DefaultBody
|
|
140
|
-
#: components/Blocks/Slider/SliderVariants
|
|
141
|
-
msgid "Continue reading"
|
|
142
|
-
msgstr ""
|
|
143
|
-
|
|
144
120
|
#. Default: "Controls"
|
|
145
121
|
#: components/Blocks/EventCalendar/Search/schema
|
|
146
122
|
msgid "Controls"
|
|
@@ -151,11 +127,6 @@ msgstr ""
|
|
|
151
127
|
msgid "Copyright"
|
|
152
128
|
msgstr ""
|
|
153
129
|
|
|
154
|
-
#. Default: "Default"
|
|
155
|
-
#: components/Widgets/BlockWidth
|
|
156
|
-
msgid "Default"
|
|
157
|
-
msgstr ""
|
|
158
|
-
|
|
159
130
|
#. Default: "Descending"
|
|
160
131
|
#: components/Blocks/EventCalendar/Search/components/SortOn
|
|
161
132
|
msgid "Descending"
|
|
@@ -214,21 +185,11 @@ msgstr ""
|
|
|
214
185
|
msgid "Field"
|
|
215
186
|
msgstr ""
|
|
216
187
|
|
|
217
|
-
#. Default: "Align"
|
|
218
|
-
#: components/Blocks/Slider/schema
|
|
219
|
-
msgid "Flag align"
|
|
220
|
-
msgstr ""
|
|
221
|
-
|
|
222
188
|
#. Default: "Follow us:"
|
|
223
189
|
#: components/Footer/slots/FollowUsLogoAndLinks
|
|
224
190
|
msgid "Follow us:"
|
|
225
191
|
msgstr ""
|
|
226
192
|
|
|
227
|
-
#. Default: "Full"
|
|
228
|
-
#: components/Widgets/BlockWidth
|
|
229
|
-
msgid "Full"
|
|
230
|
-
msgstr ""
|
|
231
|
-
|
|
232
193
|
#. Default: "GNU GPL v2 license"
|
|
233
194
|
#: components/Footer/slots/Copyright
|
|
234
195
|
msgid "GNU GPL license"
|
|
@@ -244,11 +205,6 @@ msgstr ""
|
|
|
244
205
|
msgid "Hidden facets will still filter the results if proper parameters are passed in URLs"
|
|
245
206
|
msgstr ""
|
|
246
207
|
|
|
247
|
-
#. Default: "Hide Button"
|
|
248
|
-
#: components/Blocks/Slider/schema
|
|
249
|
-
msgid "Hide Button"
|
|
250
|
-
msgstr ""
|
|
251
|
-
|
|
252
208
|
#. Default: "Hide facet?"
|
|
253
209
|
#: components/Blocks/EventCalendar/Search/schema
|
|
254
210
|
msgid "Hide facet?"
|
|
@@ -282,11 +238,6 @@ msgstr ""
|
|
|
282
238
|
msgid "Invalid Block"
|
|
283
239
|
msgstr ""
|
|
284
240
|
|
|
285
|
-
#. Default: "Invalid Slider source"
|
|
286
|
-
#: components/Blocks/Slider/Data
|
|
287
|
-
msgid "Invalid Slider source"
|
|
288
|
-
msgstr ""
|
|
289
|
-
|
|
290
241
|
#. Default: "Item"
|
|
291
242
|
#: components/Widgets/schema/iconLinkListSchema
|
|
292
243
|
msgid "Item"
|
|
@@ -297,21 +248,6 @@ msgstr ""
|
|
|
297
248
|
msgid "Label"
|
|
298
249
|
msgstr ""
|
|
299
250
|
|
|
300
|
-
#. Default: "Large"
|
|
301
|
-
#: components/Widgets/Size
|
|
302
|
-
msgid "Large"
|
|
303
|
-
msgstr ""
|
|
304
|
-
|
|
305
|
-
#. Default: "Layout"
|
|
306
|
-
#: components/Widgets/BlockWidth
|
|
307
|
-
msgid "Layout"
|
|
308
|
-
msgstr ""
|
|
309
|
-
|
|
310
|
-
#. Default: "Left"
|
|
311
|
-
#: components/Widgets/BlockAlignment
|
|
312
|
-
msgid "Left"
|
|
313
|
-
msgstr ""
|
|
314
|
-
|
|
315
251
|
#. Default: "Link"
|
|
316
252
|
#: components/Widgets/schema/footerLinksSchema
|
|
317
253
|
msgid "Link"
|
|
@@ -357,11 +293,6 @@ msgstr ""
|
|
|
357
293
|
msgid "Logo of"
|
|
358
294
|
msgstr ""
|
|
359
295
|
|
|
360
|
-
#. Default: "Medium"
|
|
361
|
-
#: components/Widgets/Size
|
|
362
|
-
msgid "Medium"
|
|
363
|
-
msgstr ""
|
|
364
|
-
|
|
365
296
|
#. Default: "Move down"
|
|
366
297
|
#: components/Blocks/Block/Edit
|
|
367
298
|
msgid "Move down"
|
|
@@ -377,11 +308,6 @@ msgstr ""
|
|
|
377
308
|
msgid "Multiple choices?"
|
|
378
309
|
msgstr ""
|
|
379
310
|
|
|
380
|
-
#. Default: "Narrow"
|
|
381
|
-
#: components/Widgets/BlockWidth
|
|
382
|
-
msgid "Narrow"
|
|
383
|
-
msgstr ""
|
|
384
|
-
|
|
385
311
|
#. Default: "Next Page"
|
|
386
312
|
#: components/Blocks/Listing/ListingBody
|
|
387
313
|
msgid "Next Page"
|
|
@@ -443,9 +369,6 @@ msgid "Phone"
|
|
|
443
369
|
msgstr ""
|
|
444
370
|
|
|
445
371
|
#. Default: "Please choose an existing content as source for this element"
|
|
446
|
-
#: components/Blocks/Slider/DefaultBody
|
|
447
|
-
#: components/Blocks/Slider/SliderVariants
|
|
448
|
-
#: components/Blocks/Slider/View
|
|
449
372
|
#: components/Blocks/Teaser/Body
|
|
450
373
|
msgid "Please choose an existing content as source for this element"
|
|
451
374
|
msgstr ""
|
|
@@ -470,11 +393,6 @@ msgstr ""
|
|
|
470
393
|
msgid "Previous Page"
|
|
471
394
|
msgstr ""
|
|
472
395
|
|
|
473
|
-
#. Default: "Refresh source content"
|
|
474
|
-
#: components/Blocks/Slider/Data
|
|
475
|
-
msgid "Refresh source content"
|
|
476
|
-
msgstr ""
|
|
477
|
-
|
|
478
396
|
#. Default: "Register"
|
|
479
397
|
#: components/Anontools/Anontools
|
|
480
398
|
msgid "Register"
|
|
@@ -486,21 +404,11 @@ msgstr ""
|
|
|
486
404
|
msgid "Remove item"
|
|
487
405
|
msgstr ""
|
|
488
406
|
|
|
489
|
-
#. Default: "Reset the block"
|
|
490
|
-
#: components/Blocks/Slider/Data
|
|
491
|
-
msgid "Reset the block"
|
|
492
|
-
msgstr ""
|
|
493
|
-
|
|
494
407
|
#. Default: "Result"
|
|
495
408
|
#: components/Blocks/Listing/ListingBody
|
|
496
409
|
msgid "Result"
|
|
497
410
|
msgstr ""
|
|
498
411
|
|
|
499
|
-
#. Default: "Right"
|
|
500
|
-
#: components/Widgets/BlockAlignment
|
|
501
|
-
msgid "Right"
|
|
502
|
-
msgstr ""
|
|
503
|
-
|
|
504
412
|
#. Default: "Room"
|
|
505
413
|
#: components/Summary/PersonSummary
|
|
506
414
|
msgid "Room"
|
|
@@ -558,11 +466,6 @@ msgstr ""
|
|
|
558
466
|
msgid "Section title"
|
|
559
467
|
msgstr ""
|
|
560
468
|
|
|
561
|
-
#. Default: "Short line"
|
|
562
|
-
#: components/Blocks/Separator/schema
|
|
563
|
-
msgid "Short line"
|
|
564
|
-
msgstr ""
|
|
565
|
-
|
|
566
469
|
#. Default: "Show item"
|
|
567
470
|
#: components/Widgets/BlocksObject
|
|
568
471
|
#: components/Widgets/ObjectList
|
|
@@ -594,16 +497,16 @@ msgstr ""
|
|
|
594
497
|
msgid "Simple"
|
|
595
498
|
msgstr ""
|
|
596
499
|
|
|
500
|
+
#. Default: "Site Setup"
|
|
501
|
+
#: components/Breadcrumbs/Breadcrumbs
|
|
502
|
+
msgid "Site Setup"
|
|
503
|
+
msgstr ""
|
|
504
|
+
|
|
597
505
|
#. Default: "Sitemap"
|
|
598
506
|
#: index
|
|
599
507
|
msgid "Sitemap"
|
|
600
508
|
msgstr ""
|
|
601
509
|
|
|
602
|
-
#. Default: "Small"
|
|
603
|
-
#: components/Widgets/Size
|
|
604
|
-
msgid "Small"
|
|
605
|
-
msgstr ""
|
|
606
|
-
|
|
607
510
|
#. Default: "Sort on"
|
|
608
511
|
#: components/Blocks/EventCalendar/Search/components/SortOn
|
|
609
512
|
msgid "Sort on"
|
|
@@ -624,12 +527,6 @@ msgstr ""
|
|
|
624
527
|
msgid "Sorting"
|
|
625
528
|
msgstr ""
|
|
626
529
|
|
|
627
|
-
#. Default: "Source"
|
|
628
|
-
#: components/Blocks/Slider/DefaultBody
|
|
629
|
-
#: components/Blocks/Slider/SliderVariants
|
|
630
|
-
msgid "Source"
|
|
631
|
-
msgstr ""
|
|
632
|
-
|
|
633
530
|
#. Default: "Sponsored by:"
|
|
634
531
|
#: components/Footer/slots/FollowUsLogoAndLinks
|
|
635
532
|
msgid "Sponsored by:"
|
|
@@ -689,12 +586,36 @@ msgstr ""
|
|
|
689
586
|
msgid "availableViews"
|
|
690
587
|
msgstr ""
|
|
691
588
|
|
|
589
|
+
#. 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."
|
|
590
|
+
#: components/Blocks/Block/ErrorBoundaryMessage
|
|
591
|
+
msgid "blockErrorBoundaryDescription"
|
|
592
|
+
msgstr ""
|
|
593
|
+
|
|
594
|
+
#. Default: "Block error:"
|
|
595
|
+
#: components/Blocks/Block/ErrorBoundaryMessage
|
|
596
|
+
msgid "blockErrorBoundaryTitle"
|
|
597
|
+
msgstr ""
|
|
598
|
+
|
|
599
|
+
#. Default: "The {type} block with the id {block} errored and cannot be displayed.{lineBreak}Please contact the site administrator for further assistance."
|
|
600
|
+
#: components/Blocks/Block/ErrorBoundaryMessage
|
|
601
|
+
msgid "blockErrorBoundaryViewDescription"
|
|
602
|
+
msgstr ""
|
|
603
|
+
|
|
692
604
|
#. Default: "Delete"
|
|
693
605
|
#: components/Blocks/Block/Edit
|
|
694
|
-
#: components/Blocks/Block/EditBlockWrapper
|
|
695
606
|
msgid "delete"
|
|
696
607
|
msgstr ""
|
|
697
608
|
|
|
609
|
+
#. Default: "delete {type} block"
|
|
610
|
+
#: components/Blocks/Block/EditBlockWrapper
|
|
611
|
+
msgid "delete_block"
|
|
612
|
+
msgstr ""
|
|
613
|
+
|
|
614
|
+
#. Default: "drag {type} block"
|
|
615
|
+
#: components/Blocks/Block/EditBlockWrapper
|
|
616
|
+
msgid "drag_block"
|
|
617
|
+
msgstr ""
|
|
618
|
+
|
|
698
619
|
#. Default: "Clear image"
|
|
699
620
|
#: components/Blocks/Image/ImageSidebar
|
|
700
621
|
msgid "image_block_clear"
|
|
@@ -710,12 +631,6 @@ msgstr ""
|
|
|
710
631
|
msgid "loading"
|
|
711
632
|
msgstr ""
|
|
712
633
|
|
|
713
|
-
#. Default: "More info"
|
|
714
|
-
#: components/Blocks/Slider/DefaultBody
|
|
715
|
-
#: components/Blocks/Slider/SliderVariants
|
|
716
|
-
msgid "moreInfo"
|
|
717
|
-
msgstr ""
|
|
718
|
-
|
|
719
634
|
#. Default: "of"
|
|
720
635
|
#: components/Blocks/Listing/ListingBody
|
|
721
636
|
msgid "of"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitconcept/volto-light-theme",
|
|
3
|
-
"version": "8.0.0-alpha.
|
|
3
|
+
"version": "8.0.0-alpha.21",
|
|
4
4
|
"description": "Volto Light Theme by kitconcept",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -40,12 +40,14 @@
|
|
|
40
40
|
"@types/node": "^22",
|
|
41
41
|
"@types/react": "^18.3.12",
|
|
42
42
|
"@types/react-dom": "^18.3.1",
|
|
43
|
+
"@playwright/test": "^1.55.0",
|
|
44
|
+
"playwright": "^1.55.0",
|
|
43
45
|
"react-intl-redux": "2.3.0",
|
|
44
46
|
"redux-mock-store": "1.5.4",
|
|
45
47
|
"release-it": "^19.0.3",
|
|
46
48
|
"typescript": "^5.7.3",
|
|
47
49
|
"vitest": "^3.1.2",
|
|
48
|
-
"@plone/types": "2.0.0-alpha.
|
|
50
|
+
"@plone/types": "2.0.0-alpha.14"
|
|
49
51
|
},
|
|
50
52
|
"dependencies": {
|
|
51
53
|
"@dnd-kit/core": "6.0.8",
|
|
@@ -54,10 +56,11 @@
|
|
|
54
56
|
"embla-carousel-autoplay": "^8.0.0",
|
|
55
57
|
"embla-carousel-react": "^8.0.0",
|
|
56
58
|
"react-animate-height": "^3.2.3",
|
|
57
|
-
"react-aria-components": "^1.
|
|
59
|
+
"react-aria-components": "^1.14.0",
|
|
58
60
|
"react-colorful": "^5.6.1",
|
|
59
61
|
"uuid": "^11.0.0",
|
|
60
|
-
"@
|
|
62
|
+
"@kitconcept/volto-bm3-compat": "^1.0.0-alpha.1",
|
|
63
|
+
"@plone/components": "^4.0.0-alpha.4"
|
|
61
64
|
},
|
|
62
65
|
"peerDependencies": {
|
|
63
66
|
"classnames": "^2.5.1",
|