@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
|
@@ -5,12 +5,12 @@ msgstr ""
|
|
|
5
5
|
"POT-Creation-Date: 2024-02-08T13:36:14.317Z\n"
|
|
6
6
|
"PO-Revision-Date: \n"
|
|
7
7
|
"Last-Translator: Plone i18n <plone-i18n@lists.sourceforge.net>\n"
|
|
8
|
-
"Language-Team: Plone i18n <plone-i18n@lists.sourceforge.net>\n"
|
|
9
8
|
"Language: eu\n"
|
|
10
|
-
"
|
|
9
|
+
"Language-Team: Plone i18n <plone-i18n@lists.sourceforge.net>\n"
|
|
11
10
|
"Content-Type: text/plain; charset=utf-8\n"
|
|
12
11
|
"Content-Transfer-Encoding: 8bit\n"
|
|
13
12
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
13
|
+
"MIME-Version: 1.0\n"
|
|
14
14
|
"Language-Code: en\n"
|
|
15
15
|
"Language-Name: English\n"
|
|
16
16
|
"Preferred-Encodings: utf-8\n"
|
|
@@ -23,7 +23,8 @@ msgid "Action"
|
|
|
23
23
|
msgstr "Akzioa"
|
|
24
24
|
|
|
25
25
|
#. Default: "Add"
|
|
26
|
-
#: components/Widgets/BlocksObject
|
|
26
|
+
#: components/Widgets/BlocksObject
|
|
27
|
+
#: components/Widgets/ObjectList
|
|
27
28
|
msgid "Add (object list)"
|
|
28
29
|
msgstr "Gehitu (objektu zerrenda)"
|
|
29
30
|
|
|
@@ -57,11 +58,6 @@ msgstr "Fazeta aurreratua?"
|
|
|
57
58
|
msgid "Advanced facets are initially hidden and displayed on demand"
|
|
58
59
|
msgstr "Fazeta aurreratuak ezkutatuta daude hasieran eta eskatu ahala erakusten dira"
|
|
59
60
|
|
|
60
|
-
#. Default: "Alignment"
|
|
61
|
-
#: components/Blocks/Button/schema components/Blocks/Separator/schema
|
|
62
|
-
msgid "Alignment"
|
|
63
|
-
msgstr "Alineazioa"
|
|
64
|
-
|
|
65
61
|
#. Default: "Alt text"
|
|
66
62
|
#: components/Widgets/schema/footerLogosSchema
|
|
67
63
|
#: components/Widgets/schema/iconLinkListSchema
|
|
@@ -89,8 +85,7 @@ msgid "Base search query"
|
|
|
89
85
|
msgstr "Oinarrizko bilaketa"
|
|
90
86
|
|
|
91
87
|
#. Default: "Block Width"
|
|
92
|
-
#: components/Blocks/
|
|
93
|
-
#: components/Blocks/Separator/schema
|
|
88
|
+
#: components/Blocks/Image/schema
|
|
94
89
|
msgid "Block Width"
|
|
95
90
|
msgstr "Blokearen zabalera"
|
|
96
91
|
|
|
@@ -99,21 +94,11 @@ msgstr "Blokearen zabalera"
|
|
|
99
94
|
msgid "Breadcrumbs"
|
|
100
95
|
msgstr "Breadcrumbak"
|
|
101
96
|
|
|
102
|
-
#. Default: "Button text"
|
|
103
|
-
#: components/Blocks/Slider/schema
|
|
104
|
-
msgid "Button text"
|
|
105
|
-
msgstr "Botoiaren testua"
|
|
106
|
-
|
|
107
97
|
#. Default: "Cancel search"
|
|
108
98
|
#: components/Blocks/EventCalendar/Search/components/SearchInput
|
|
109
99
|
msgid "Cancel search"
|
|
110
100
|
msgstr "Utzi bilaketa"
|
|
111
101
|
|
|
112
|
-
#. Default: "Center"
|
|
113
|
-
#: components/Widgets/BlockAlignment
|
|
114
|
-
msgid "Center"
|
|
115
|
-
msgstr "Erdiratu"
|
|
116
|
-
|
|
117
102
|
#. Default: "Close menu"
|
|
118
103
|
#: components/MobileNavigation/MobileNavigation
|
|
119
104
|
#: components/Navigation/Navigation
|
|
@@ -121,7 +106,8 @@ msgid "Close menu"
|
|
|
121
106
|
msgstr "Itxi menua"
|
|
122
107
|
|
|
123
108
|
#. Default: "Collapse item"
|
|
124
|
-
#: components/Widgets/BlocksObject
|
|
109
|
+
#: components/Widgets/BlocksObject
|
|
110
|
+
#: components/Widgets/ObjectList
|
|
125
111
|
msgid "Collapse item"
|
|
126
112
|
msgstr "Ezkutatu elementua"
|
|
127
113
|
|
|
@@ -135,11 +121,6 @@ msgstr "Baliteke {contrastRatio}:1 kolore kontrastearen ratioa guztientzat irisg
|
|
|
135
121
|
msgid "Contact"
|
|
136
122
|
msgstr "Kontaktua"
|
|
137
123
|
|
|
138
|
-
#. Default: "Continue reading"
|
|
139
|
-
#: components/Blocks/Slider/DefaultBody components/Blocks/Slider/SliderVariants
|
|
140
|
-
msgid "Continue reading"
|
|
141
|
-
msgstr "Jarraitu irakurtzen"
|
|
142
|
-
|
|
143
124
|
#. Default: "Controls"
|
|
144
125
|
#: components/Blocks/EventCalendar/Search/schema
|
|
145
126
|
msgid "Controls"
|
|
@@ -150,18 +131,14 @@ msgstr "Kontrolak"
|
|
|
150
131
|
msgid "Copyright"
|
|
151
132
|
msgstr "Copyright"
|
|
152
133
|
|
|
153
|
-
#. Default: "Default"
|
|
154
|
-
#: components/Widgets/BlockWidth
|
|
155
|
-
msgid "Default"
|
|
156
|
-
msgstr "Defektuzkoa"
|
|
157
|
-
|
|
158
134
|
#. Default: "Descending"
|
|
159
135
|
#: components/Blocks/EventCalendar/Search/components/SortOn
|
|
160
136
|
msgid "Descending"
|
|
161
137
|
msgstr "Beheraka"
|
|
162
138
|
|
|
163
139
|
#. Default: "Description"
|
|
164
|
-
#: components/Blocks/Image/schema
|
|
140
|
+
#: components/Blocks/Image/schema
|
|
141
|
+
#: components/Widgets/schema/footerLogosSchema
|
|
165
142
|
#: components/Widgets/schema/iconLinkListSchema
|
|
166
143
|
msgid "Description"
|
|
167
144
|
msgstr "Deskribapena"
|
|
@@ -182,7 +159,8 @@ msgid "E-mail"
|
|
|
182
159
|
msgstr "Eposta"
|
|
183
160
|
|
|
184
161
|
#. Default: "Empty object list"
|
|
185
|
-
#: components/Widgets/BlocksObject
|
|
162
|
+
#: components/Widgets/BlocksObject
|
|
163
|
+
#: components/Widgets/ObjectList
|
|
186
164
|
msgid "Empty object list"
|
|
187
165
|
msgstr "Hustu objektuen zerrenda"
|
|
188
166
|
|
|
@@ -211,21 +189,11 @@ msgstr "Fazetak"
|
|
|
211
189
|
msgid "Field"
|
|
212
190
|
msgstr "Eremua"
|
|
213
191
|
|
|
214
|
-
#. Default: "Align"
|
|
215
|
-
#: components/Blocks/Slider/schema
|
|
216
|
-
msgid "Flag align"
|
|
217
|
-
msgstr "Alineazioa"
|
|
218
|
-
|
|
219
192
|
#. Default: "Follow us:"
|
|
220
193
|
#: components/Footer/slots/FollowUsLogoAndLinks
|
|
221
194
|
msgid "Follow us:"
|
|
222
195
|
msgstr "Jarrai gaitzazu"
|
|
223
196
|
|
|
224
|
-
#. Default: "Full"
|
|
225
|
-
#: components/Widgets/BlockWidth
|
|
226
|
-
msgid "Full"
|
|
227
|
-
msgstr "Osoa"
|
|
228
|
-
|
|
229
197
|
#. Default: "GNU GPL v2 license"
|
|
230
198
|
#: components/Footer/slots/Copyright
|
|
231
199
|
msgid "GNU GPL license"
|
|
@@ -241,18 +209,14 @@ msgstr "Goiburukoa"
|
|
|
241
209
|
msgid "Hidden facets will still filter the results if proper parameters are passed in URLs"
|
|
242
210
|
msgstr "Ezkutatutako fazetek ere emaitzak filtratzen dituzte URLan dagozkien parametroak pasatuz gero"
|
|
243
211
|
|
|
244
|
-
#. Default: "Hide Button"
|
|
245
|
-
#: components/Blocks/Slider/schema
|
|
246
|
-
msgid "Hide Button"
|
|
247
|
-
msgstr "Ezkutatu botoia"
|
|
248
|
-
|
|
249
212
|
#. Default: "Hide facet?"
|
|
250
213
|
#: components/Blocks/EventCalendar/Search/schema
|
|
251
214
|
msgid "Hide facet?"
|
|
252
215
|
msgstr "Ezkutatu fazeta?"
|
|
253
216
|
|
|
254
217
|
#. Default: "Home"
|
|
255
|
-
#: components/Breadcrumbs/Breadcrumbs
|
|
218
|
+
#: components/Breadcrumbs/Breadcrumbs
|
|
219
|
+
#: components/Logo/Logo
|
|
256
220
|
#: components/MobileNavigation/MobileNavigation
|
|
257
221
|
msgid "Home"
|
|
258
222
|
msgstr "Hasiera"
|
|
@@ -273,15 +237,11 @@ msgid "Image"
|
|
|
273
237
|
msgstr "Irudia"
|
|
274
238
|
|
|
275
239
|
#. Default: "Invalid block - Will be removed on saving"
|
|
276
|
-
#: components/Theme/RenderBlocks
|
|
240
|
+
#: components/Theme/RenderBlocks
|
|
241
|
+
#: components/Theme/RenderBlocksV2
|
|
277
242
|
msgid "Invalid Block"
|
|
278
243
|
msgstr "Blokea ez da zuzena"
|
|
279
244
|
|
|
280
|
-
#. Default: "Invalid Slider source"
|
|
281
|
-
#: components/Blocks/Slider/Data
|
|
282
|
-
msgid "Invalid Slider source"
|
|
283
|
-
msgstr "Sliderraren jatorria ez da zuzena"
|
|
284
|
-
|
|
285
245
|
#. Default: "Item"
|
|
286
246
|
#: components/Widgets/schema/iconLinkListSchema
|
|
287
247
|
msgid "Item"
|
|
@@ -292,21 +252,6 @@ msgstr "Elementua"
|
|
|
292
252
|
msgid "Label"
|
|
293
253
|
msgstr "Etiketa"
|
|
294
254
|
|
|
295
|
-
#. Default: "Large"
|
|
296
|
-
#: components/Widgets/Size
|
|
297
|
-
msgid "Large"
|
|
298
|
-
msgstr "Handia"
|
|
299
|
-
|
|
300
|
-
#. Default: "Layout"
|
|
301
|
-
#: components/Widgets/BlockWidth
|
|
302
|
-
msgid "Layout"
|
|
303
|
-
msgstr "Itxura"
|
|
304
|
-
|
|
305
|
-
#. Default: "Left"
|
|
306
|
-
#: components/Widgets/BlockAlignment
|
|
307
|
-
msgid "Left"
|
|
308
|
-
msgstr "Ezkerrean"
|
|
309
|
-
|
|
310
255
|
#. Default: "Link"
|
|
311
256
|
#: components/Widgets/schema/footerLinksSchema
|
|
312
257
|
msgid "Link"
|
|
@@ -352,11 +297,6 @@ msgstr "Logoaren irudia"
|
|
|
352
297
|
msgid "Logo of"
|
|
353
298
|
msgstr "Logoa"
|
|
354
299
|
|
|
355
|
-
#. Default: "Medium"
|
|
356
|
-
#: components/Widgets/Size
|
|
357
|
-
msgid "Medium"
|
|
358
|
-
msgstr "Ertaina"
|
|
359
|
-
|
|
360
300
|
#. Default: "Move down"
|
|
361
301
|
#: components/Blocks/Block/Edit
|
|
362
302
|
msgid "Move down"
|
|
@@ -372,11 +312,6 @@ msgstr "Mugitu gora"
|
|
|
372
312
|
msgid "Multiple choices?"
|
|
373
313
|
msgstr "Aukera anitzak?"
|
|
374
314
|
|
|
375
|
-
#. Default: "Narrow"
|
|
376
|
-
#: components/Widgets/BlockWidth
|
|
377
|
-
msgid "Narrow"
|
|
378
|
-
msgstr "Estua"
|
|
379
|
-
|
|
380
315
|
#. Default: "Next Page"
|
|
381
316
|
#: components/Blocks/Listing/ListingBody
|
|
382
317
|
msgid "Next Page"
|
|
@@ -432,13 +367,13 @@ msgid "Pagination Navigation for {headline}"
|
|
|
432
367
|
msgstr "{headline}en orrialdekako nabigazioa"
|
|
433
368
|
|
|
434
369
|
#. Default: "Phone"
|
|
435
|
-
#: components/Blocks/EventMetadata/View
|
|
370
|
+
#: components/Blocks/EventMetadata/View
|
|
371
|
+
#: components/Summary/PersonSummary
|
|
436
372
|
msgid "Phone"
|
|
437
373
|
msgstr "Telefonoa"
|
|
438
374
|
|
|
439
375
|
#. Default: "Please choose an existing content as source for this element"
|
|
440
|
-
#: components/Blocks/
|
|
441
|
-
#: components/Blocks/Slider/View components/Blocks/Teaser/Body
|
|
376
|
+
#: components/Blocks/Teaser/Body
|
|
442
377
|
msgid "Please choose an existing content as source for this element"
|
|
443
378
|
msgstr "Aukeratu eduki bat elementu honen iturburu gisa"
|
|
444
379
|
|
|
@@ -462,36 +397,22 @@ msgstr "Sakatu"
|
|
|
462
397
|
msgid "Previous Page"
|
|
463
398
|
msgstr "Aurreko orria"
|
|
464
399
|
|
|
465
|
-
#. Default: "Refresh source content"
|
|
466
|
-
#: components/Blocks/Slider/Data
|
|
467
|
-
msgid "Refresh source content"
|
|
468
|
-
msgstr "Freskatu jatorrizko edukia"
|
|
469
|
-
|
|
470
400
|
#. Default: "Register"
|
|
471
401
|
#: components/Anontools/Anontools
|
|
472
402
|
msgid "Register"
|
|
473
403
|
msgstr "Eman izena"
|
|
474
404
|
|
|
475
405
|
#. Default: "Remove item"
|
|
476
|
-
#: components/Widgets/BlocksObject
|
|
406
|
+
#: components/Widgets/BlocksObject
|
|
407
|
+
#: components/Widgets/ObjectList
|
|
477
408
|
msgid "Remove item"
|
|
478
409
|
msgstr "Kendu elementua"
|
|
479
410
|
|
|
480
|
-
#. Default: "Reset the block"
|
|
481
|
-
#: components/Blocks/Slider/Data
|
|
482
|
-
msgid "Reset the block"
|
|
483
|
-
msgstr "Berrezarri blokea"
|
|
484
|
-
|
|
485
411
|
#. Default: "Result"
|
|
486
412
|
#: components/Blocks/Listing/ListingBody
|
|
487
413
|
msgid "Result"
|
|
488
414
|
msgstr "Emaitza"
|
|
489
415
|
|
|
490
|
-
#. Default: "Right"
|
|
491
|
-
#: components/Widgets/BlockAlignment
|
|
492
|
-
msgid "Right"
|
|
493
|
-
msgstr "Eskuman"
|
|
494
|
-
|
|
495
416
|
#. Default: "Room"
|
|
496
417
|
#: components/Summary/PersonSummary
|
|
497
418
|
msgid "Room"
|
|
@@ -549,13 +470,9 @@ msgstr "Hau bilatu duzu"
|
|
|
549
470
|
msgid "Section title"
|
|
550
471
|
msgstr "Atalaren izenburua"
|
|
551
472
|
|
|
552
|
-
#. Default: "Short line"
|
|
553
|
-
#: components/Blocks/Separator/schema
|
|
554
|
-
msgid "Short line"
|
|
555
|
-
msgstr "Lerro laburra"
|
|
556
|
-
|
|
557
473
|
#. Default: "Show item"
|
|
558
|
-
#: components/Widgets/BlocksObject
|
|
474
|
+
#: components/Widgets/BlocksObject
|
|
475
|
+
#: components/Widgets/ObjectList
|
|
559
476
|
msgid "Show item"
|
|
560
477
|
msgstr "Erakutsi elementua"
|
|
561
478
|
|
|
@@ -584,16 +501,16 @@ msgstr "Erakutsi emaitza kopurua"
|
|
|
584
501
|
msgid "Simple"
|
|
585
502
|
msgstr "Sinplea"
|
|
586
503
|
|
|
504
|
+
#. Default: "Site Setup"
|
|
505
|
+
#: components/Breadcrumbs/Breadcrumbs
|
|
506
|
+
msgid "Site Setup"
|
|
507
|
+
msgstr ""
|
|
508
|
+
|
|
587
509
|
#. Default: "Sitemap"
|
|
588
510
|
#: index
|
|
589
511
|
msgid "Sitemap"
|
|
590
512
|
msgstr "Webgunearen mapa"
|
|
591
513
|
|
|
592
|
-
#. Default: "Small"
|
|
593
|
-
#: components/Widgets/Size
|
|
594
|
-
msgid "Small"
|
|
595
|
-
msgstr "Txikia"
|
|
596
|
-
|
|
597
514
|
#. Default: "Sort on"
|
|
598
515
|
#: components/Blocks/EventCalendar/Search/components/SortOn
|
|
599
516
|
msgid "Sort on"
|
|
@@ -614,11 +531,6 @@ msgstr "Honen arabera ordenatuta"
|
|
|
614
531
|
msgid "Sorting"
|
|
615
532
|
msgstr "Ordenazioa"
|
|
616
533
|
|
|
617
|
-
#. Default: "Source"
|
|
618
|
-
#: components/Blocks/Slider/DefaultBody components/Blocks/Slider/SliderVariants
|
|
619
|
-
msgid "Source"
|
|
620
|
-
msgstr "Iturburua"
|
|
621
|
-
|
|
622
534
|
#. Default: "Sponsored by:"
|
|
623
535
|
#: components/Footer/slots/FollowUsLogoAndLinks
|
|
624
536
|
msgid "Sponsored by:"
|
|
@@ -632,7 +544,7 @@ msgstr "Hasiera"
|
|
|
632
544
|
#. Default: "Switch to"
|
|
633
545
|
#: components/LanguageSelector/LanguageSelector
|
|
634
546
|
msgid "Switch to"
|
|
635
|
-
msgstr "
|
|
547
|
+
msgstr ""
|
|
636
548
|
|
|
637
549
|
#. Default: "Target"
|
|
638
550
|
#: components/Widgets/schema/footerLinksSchema
|
|
@@ -653,7 +565,8 @@ msgid "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation
|
|
|
653
565
|
msgstr "{plonecms} {copyright} 2000-{current_year} {plonefoundation} eta lagunek egindakoa."
|
|
654
566
|
|
|
655
567
|
#. Default: "Title"
|
|
656
|
-
#: components/Blocks/Image/schema
|
|
568
|
+
#: components/Blocks/Image/schema
|
|
569
|
+
#: components/Widgets/schema/footerLinksSchema
|
|
657
570
|
#: components/Widgets/schema/footerLogosSchema
|
|
658
571
|
#: components/Widgets/schema/headerActionsSchema
|
|
659
572
|
#: components/Widgets/schema/iconLinkListSchema
|
|
@@ -661,7 +574,8 @@ msgid "Title"
|
|
|
661
574
|
msgstr "Izenburua"
|
|
662
575
|
|
|
663
576
|
#. Default: "Unknown Block {block}"
|
|
664
|
-
#: components/Blocks/Block/Edit
|
|
577
|
+
#: components/Blocks/Block/Edit
|
|
578
|
+
#: components/Theme/RenderBlocks
|
|
665
579
|
#: components/Theme/RenderBlocksV2
|
|
666
580
|
msgid "Unknown Block"
|
|
667
581
|
msgstr "Bloke ezezaguna"
|
|
@@ -676,11 +590,36 @@ msgstr "Webgunea"
|
|
|
676
590
|
msgid "availableViews"
|
|
677
591
|
msgstr "Bistak"
|
|
678
592
|
|
|
593
|
+
#. 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."
|
|
594
|
+
#: components/Blocks/Block/ErrorBoundaryMessage
|
|
595
|
+
msgid "blockErrorBoundaryDescription"
|
|
596
|
+
msgstr ""
|
|
597
|
+
|
|
598
|
+
#. Default: "Block error:"
|
|
599
|
+
#: components/Blocks/Block/ErrorBoundaryMessage
|
|
600
|
+
msgid "blockErrorBoundaryTitle"
|
|
601
|
+
msgstr ""
|
|
602
|
+
|
|
603
|
+
#. Default: "The {type} block with the id {block} errored and cannot be displayed.{lineBreak}Please contact the site administrator for further assistance."
|
|
604
|
+
#: components/Blocks/Block/ErrorBoundaryMessage
|
|
605
|
+
msgid "blockErrorBoundaryViewDescription"
|
|
606
|
+
msgstr ""
|
|
607
|
+
|
|
679
608
|
#. Default: "Delete"
|
|
680
|
-
#: components/Blocks/Block/Edit
|
|
609
|
+
#: components/Blocks/Block/Edit
|
|
681
610
|
msgid "delete"
|
|
682
611
|
msgstr "Ezabatu"
|
|
683
612
|
|
|
613
|
+
#. Default: "delete {type} block"
|
|
614
|
+
#: components/Blocks/Block/EditBlockWrapper
|
|
615
|
+
msgid "delete_block"
|
|
616
|
+
msgstr ""
|
|
617
|
+
|
|
618
|
+
#. Default: "drag {type} block"
|
|
619
|
+
#: components/Blocks/Block/EditBlockWrapper
|
|
620
|
+
msgid "drag_block"
|
|
621
|
+
msgstr ""
|
|
622
|
+
|
|
684
623
|
#. Default: "Clear image"
|
|
685
624
|
#: components/Blocks/Image/ImageSidebar
|
|
686
625
|
msgid "image_block_clear"
|
|
@@ -696,11 +635,6 @@ msgstr "Irudia aurreikusi"
|
|
|
696
635
|
msgid "loading"
|
|
697
636
|
msgstr "Kargatzen"
|
|
698
637
|
|
|
699
|
-
#. Default: "More info"
|
|
700
|
-
#: components/Blocks/Slider/DefaultBody components/Blocks/Slider/SliderVariants
|
|
701
|
-
msgid "moreInfo"
|
|
702
|
-
msgstr "Informazio gehiago"
|
|
703
|
-
|
|
704
638
|
#. Default: "of"
|
|
705
639
|
#: components/Blocks/Listing/ListingBody
|
|
706
640
|
msgid "of"
|