@plone/volto 19.0.0-alpha.10 → 19.0.0-alpha.12
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.md +27 -0
- package/README.md +15 -8
- package/locales/ca/LC_MESSAGES/volto.po +10 -0
- package/locales/de/LC_MESSAGES/volto.po +10 -0
- package/locales/en/LC_MESSAGES/volto.po +10 -0
- package/locales/es/LC_MESSAGES/volto.po +10 -0
- package/locales/eu/LC_MESSAGES/volto.po +10 -0
- package/locales/fi/LC_MESSAGES/volto.po +10 -0
- package/locales/fr/LC_MESSAGES/volto.po +10 -0
- package/locales/hi/LC_MESSAGES/volto.po +10 -0
- package/locales/it/LC_MESSAGES/volto.po +10 -0
- package/locales/ja/LC_MESSAGES/volto.po +10 -0
- package/locales/nl/LC_MESSAGES/volto.po +10 -0
- package/locales/pt/LC_MESSAGES/volto.po +10 -0
- package/locales/pt_BR/LC_MESSAGES/volto.po +10 -0
- package/locales/ro/LC_MESSAGES/volto.po +10 -0
- package/locales/ru/LC_MESSAGES/volto.po +10 -0
- package/locales/ta.json +1 -1
- package/locales/volto.pot +11 -1
- package/locales/zh_CN/LC_MESSAGES/volto.po +10 -0
- package/package.json +6 -5
- package/src/components/manage/Controlpanels/Relations/Relations.jsx +1 -1
- package/src/components/manage/Widgets/AlignWidget.stories.jsx +9 -0
- package/src/components/manage/Widgets/AlignWidget.test.tsx +95 -0
- package/src/components/manage/Widgets/{AlignWidget.jsx → AlignWidget.tsx} +23 -7
- package/src/components/manage/Widgets/BlockAlignment.stories.tsx +104 -0
- package/src/components/manage/Widgets/BlockAlignment.test.tsx +104 -0
- package/src/components/manage/Widgets/BlockAlignment.tsx +88 -0
- package/src/components/manage/Widgets/BlockWidth.stories.tsx +69 -0
- package/src/components/manage/Widgets/BlockWidth.test.tsx +62 -0
- package/src/components/manage/Widgets/BlockWidth.tsx +101 -0
- package/src/components/manage/Widgets/ButtonsWidget.stories.jsx +61 -0
- package/src/components/manage/Widgets/ButtonsWidget.test.tsx +138 -0
- package/src/components/manage/Widgets/ButtonsWidget.tsx +176 -0
- package/src/components/manage/Widgets/Size.stories.tsx +69 -0
- package/src/components/manage/Widgets/Size.test.tsx +59 -0
- package/src/components/manage/Widgets/Size.tsx +78 -0
- package/src/components/manage/Widgets/index.tsx +21 -0
- package/src/components/theme/App/App.jsx +2 -0
- package/src/components/theme/InjectPloneComponentsCSS/InjectPloneComponentsCSS.tsx +7 -0
- package/src/config/Widgets.jsx +7 -0
- package/src/config/slots.js +19 -0
- package/theme/themes/pastanaga/extras/widgets.less +45 -0
- package/types/components/manage/Widgets/AlignWidget.d.ts +8 -10
- package/types/components/manage/Widgets/AlignWidget.stories.d.ts +1 -0
- package/types/components/manage/Widgets/BlockAlignment.d.ts +7 -0
- package/types/components/manage/Widgets/BlockAlignment.stories.d.ts +8 -0
- package/types/components/manage/Widgets/BlockWidth.d.ts +7 -0
- package/types/components/manage/Widgets/BlockWidth.stories.d.ts +6 -0
- package/types/components/manage/Widgets/ButtonsWidget.d.ts +48 -1
- package/types/components/manage/Widgets/ButtonsWidget.stories.d.ts +3 -0
- package/types/components/manage/Widgets/Size.d.ts +7 -0
- package/types/components/manage/Widgets/Size.stories.d.ts +6 -0
- package/types/components/manage/Widgets/index.d.ts +7 -2
- package/types/components/theme/InjectPloneComponentsCSS/InjectPloneComponentsCSS.d.ts +3 -0
- package/types/config/Widgets.d.ts +6 -0
- package/types/config/slots.d.ts +7 -0
- package/src/components/manage/Widgets/AlignWidget.test.jsx +0 -59
- package/src/components/manage/Widgets/ButtonsWidget.jsx +0 -41
- package/src/components/manage/Widgets/ButtonsWidget.test.jsx +0 -70
package/CHANGELOG.md
CHANGED
|
@@ -17,6 +17,33 @@ myst:
|
|
|
17
17
|
|
|
18
18
|
<!-- towncrier release notes start -->
|
|
19
19
|
|
|
20
|
+
## 19.0.0-alpha.12 (2025-11-10)
|
|
21
|
+
|
|
22
|
+
### Breaking
|
|
23
|
+
|
|
24
|
+
- `AlignWidget` and `ButtonsWidget` are now Semantic UI-free, and they are now based in `@plone/components`.
|
|
25
|
+
See upgrade guide for more information. @sneridagh [#7555](https://github.com/plone/volto/issues/7555)
|
|
26
|
+
|
|
27
|
+
### Feature
|
|
28
|
+
|
|
29
|
+
- New `@plone/components`-based widgets: `Size`, `blockWidth`, and `blockAlignment`. All of them are `ButtonsWidget`-based. @sneridagh [#7555](https://github.com/plone/volto/issues/7555)
|
|
30
|
+
|
|
31
|
+
### Bugfix
|
|
32
|
+
|
|
33
|
+
- Remove container cage on relations control panel. @ksuess [#6633](https://github.com/plone/volto/issues/6633)
|
|
34
|
+
|
|
35
|
+
### Internal
|
|
36
|
+
|
|
37
|
+
- Add Cypress coverage for Delete-key behavior in text blocks: merge next text block into current and do nothing to non-text (Description) block when pressed at end of a text block. @aryan7081 [#7263](https://github.com/plone/volto/issues/7263)
|
|
38
|
+
- Use 19 as version for cookieplone CI checks. @sneridagh [#7548](https://github.com/plone/volto/issues/7548)
|
|
39
|
+
- Introduce `pnpm` catalog feature in core. @sneridagh [#7562](https://github.com/plone/volto/issues/7562)
|
|
40
|
+
|
|
41
|
+
## 19.0.0-alpha.11 (2025-11-05)
|
|
42
|
+
|
|
43
|
+
### Documentation
|
|
44
|
+
|
|
45
|
+
- Converted the structure of the "Settings Reference" page from a glossary to headings for easier navigation. @Abhishek-17h [#7565](https://github.com/plone/volto/issues/7565)
|
|
46
|
+
|
|
20
47
|
## 19.0.0-alpha.10 (2025-10-31)
|
|
21
48
|
|
|
22
49
|
### Feature
|
package/README.md
CHANGED
|
@@ -135,6 +135,8 @@ To ensure your website gets the greatest exposure, add it both to [Awesome Volto
|
|
|
135
135
|
- [Comune di San Possidonio](https://www.comune.sanpossidonio.mo.it/) (Website of the Municipality of San Possidonio. Developed by [RedTurtle](https://www.redturtle.it), 2021)
|
|
136
136
|
- [Comune di Vaiano](https://www.comune.vaiano.po.it/) (Website of the Municipality of Vaiano. Developed by [RedTurtle](https://www.redturtle.it), 2021)
|
|
137
137
|
- [Comune di Vernio](https://www.comune.vernio.po.it/) (Website of the Municipality of Vernio. Developed by [RedTurtle](https://www.redturtle.it), 2021)
|
|
138
|
+
- [Copernicus In-Situ](https://insitu.copernicus.eu) (Copernicus In-Situ compiles and provides high-quality ground, sea and airborne observation and geospatial reference data to support the Copernicus services. Developed by [Eau de web](https://eaudeweb.ro) for the European Environmental Agency, 2025)
|
|
139
|
+
- [Copernicus Land Monitoring Service](https://land.copernicus.eu) (The Copernicus Land Monitoring Service (CLMS) delivers high-quality geospatial information on land cover, land use changes, vegetation state, the water cycle and Earth's surface energy variables. Developed by [CodeSyntax](https://www.codesyntax.com/en) and [Eau de web](https://eaudeweb.ro) for the European Environmental Agency, 2023)
|
|
138
140
|
- [Debabarreneko mankomunitatea](https://debabarrena.eus/eu) (Website of the Commonwealth of Debabarrena, community of municipalities to centralize waste handling services, developed by [CodeSyntax](https://www.codesyntax.com/en), 2022)
|
|
139
141
|
- [Debako Udala / Ayuntamiento de Deba](https://www.deba.eus/eu) (Website of the municipality of Deba, developed by [CodeSyntax](https://www.codesyntax.com/en), 2022)
|
|
140
142
|
- [European Environment Agency](https://www.eea.europa.eu/en) (Website of the European Environment Agency. Developed by [Eau de Web](https://eaudeweb.ro), 2023)
|
|
@@ -155,15 +157,18 @@ To ensure your website gets the greatest exposure, add it both to [Awesome Volto
|
|
|
155
157
|
- [Leibniz Institute for Science and Mathematics Education (IPN)](https://www.leibniz-ipn.de/de) (Website of the IPN, a research institute dedicated to issues related to learning and teaching of science, mathematics and computer science in and outside of schools, developed by [Starzel](https://www.starzel.de), 2023)
|
|
156
158
|
- [Nuova Voce Ecologista](https://nuovavoceecologista.it) (Website of Nuova Voce Ecologista, an Italian green Party, 2020)
|
|
157
159
|
- [Osaka University](https://www.osaka-u.ac.jp/en) (Osaka University is considered one of the most prestigious universities in Japan. Developed by [CMScom](https://www.cmscom.jp), 2021)
|
|
160
|
+
- [Portknox.net](https://portknox.net/de) (Portknox.net is a specialized Nextcloud hosting provider from Germany, developed by [Starzel](https://www.starzel.de/), 2025)
|
|
158
161
|
- [ResOU](https://resou.osaka-u.ac.jp/ja) (ResOU is introducing official researched releases by the University of Osaka, Japan. Developed by [CMScom](https://www.cmscom.jp), 2020)
|
|
159
162
|
- [Stradanove](https://www.stradanove.it/) (Website of the Department of Youth Policies of the Municipality of Modena, developed by [RedTurtle](https://www.redturtle.it), 2020)
|
|
160
163
|
- [Study guide at University of Jyväskylä](https://studyguide.jyu.fi/2020/en/) (Static website where [Volto is used as a headless CMS for authoring additional content](https://tech.blog.jyu.fi/2020/06/plone-volto-hasura-gatsbyjs-mashup/), 2020)
|
|
164
|
+
- [Study in Denmark](https://studyindenmark.dk) (Study in Denmark is a Plone 6 website promoting higher education opportunities in Denmark. Developed by [Eau de web](https://eaudeweb.ro) for the Danish Ministry of Higher Education and Science, 2025)
|
|
161
165
|
- [Talke Carrer Website](https://karriere.talke.com/) (Carrer website for [Talke](https://www.talke.com), one of the leading a chemical and petrochemical logistics companies in Germany, developed by [kitconcept GmbH](https://kitconcept.com/en), 2020)
|
|
162
166
|
- [UEU](https://www.ueu.eus) (Website for Udako Euskal Unibertsitatea, a non-profit University offering all its service only in Basque: courses, publications, ... developed by [CodeSyntax](https://www.codesyntax.com/en), 2023)
|
|
163
167
|
- [Unione dei Comuni della Val Bisenzio](https://www.bisenzio.it/) (Website of the Municipality union of Val Bisenzio. Developed by [RedTurtle](https://www.redturtle.it), 2021)
|
|
164
168
|
- [VHS Ehrenamtsportal](https://vhs-ehrenamtsportal.de) (Website to help volunteers that help refugees for the [German Adult Education Association](https://www.volkshochschule.de/), developed by [kitconcept GmbH](https://kitconcept.com/en), 2018)
|
|
165
169
|
- [VisitModena](https://www.visitmodena.it/it) (Tourist website of the Municipality of Modena, developed by [RedTurtle](https://www.redturtle.it), 2020)
|
|
166
170
|
- [WISE-Freshwater](https://water.europa.eu/freshwater) (WISE-Freshwater, the Freshwater Information System for Europe. Developed by [Eau de web](https://eaudeweb.ro) for the European Environmental Agency, 2021)
|
|
171
|
+
- [WISE-Marine](https://water.europa.eu/marine) (WISE-Marine, the Marine Information System for Europe. Developed by [Eau de web](https://eaudeweb.ro) for the European Environmental Agency, 2023)
|
|
167
172
|
- [Zeelandia](https://www.zeelandia.de/) (Corporate website for one of the leading bakery ingredients manufacturers in Germany, developed by [kitconcept GmbH](https://kitconcept.com/en), 2019)
|
|
168
173
|
|
|
169
174
|
|
|
@@ -174,17 +179,19 @@ You can find their complete source code by following their links.
|
|
|
174
179
|
Please note that complex websites are built on top of Volto add-ons, and most of the time they're just an empty shell for the add-ons.
|
|
175
180
|
You should check the dependencies in their `package.json` for more details.
|
|
176
181
|
|
|
177
|
-
- [Forest Information System for Europe](https://github.com/eea/fise-frontend) - Volto project for [Forest Information System for Europe website](https://forest.eea.europa.eu)
|
|
178
|
-
- [Freshwater Information System for Europe](https://github.com/eea/freshwater-frontend) - Volto project for [Freshwater Information System for Europe website](https://water.europa.eu/freshwater)
|
|
179
|
-
- [European Industrial Emissions Portal](https://github.com/eea/industry-frontend ) - Volto project for [European Industrial Emissions Portal website](https://industry.eea.europa.eu)
|
|
180
|
-
- [Biodiversity Information System for Europe](https://github.com/eea/bise-frontend) - Volto project for [Biodiversity Information System for Europe website](https://biodiversity.europa.eu)
|
|
181
|
-
- [EEA Main Website frontend](https://github.com/eea/eea-website-frontend) - Plone 6 Volto frontend for [European Environment Agency](https://www.eea.europa.eu/en)
|
|
182
|
-
- [volto-bise](https://github.com/eea/volto-bise) - A Volto project packaged as an addon. It provides Theming using a razzle.extend.js provided alias.
|
|
183
|
-
- [design-volto-theme](https://github.com/RedTurtle/design-volto-theme) Volto theme for Italian Public Administration
|
|
184
182
|
- [2022.ploneconf.org](https://github.com/plone/ploneconf.org/tree/2022) - Volto project for [Plone Conference 2022 site](https://2022.ploneconf.org)
|
|
185
183
|
- [2023.ploneconf.org](https://github.com/plone/ploneconf.org/tree/2023) - Volto project for [Plone Conference 2023 site](https://2023.ploneconf.org)
|
|
186
|
-
- [
|
|
184
|
+
- [2024.ploneconf.org](https://github.com/plone/2024.ploneconf.org) - Volto project for [Plone Conference 2024 site](https://2024.ploneconf.org)
|
|
185
|
+
- [2025.ploneconf.org](https://github.com/plone/2025.ploneconf.org) - Volto project for [Plone Conference 2025 site](https://2025.ploneconf.org)
|
|
186
|
+
- [Biodiversity Information System for Europe](https://github.com/eea/bise-frontend) - Volto project for [Biodiversity Information System for Europe website](https://biodiversity.europa.eu)
|
|
187
|
+
- [design-volto-theme](https://github.com/RedTurtle/design-volto-theme) Volto theme for Italian Public Administration
|
|
188
|
+
- [EEA Main Website frontend](https://github.com/eea/eea-website-frontend) - Plone 6 Volto frontend for [European Environment Agency](https://www.eea.europa.eu/en)
|
|
189
|
+
- [European Industrial Emissions Portal](https://github.com/eea/industry-frontend ) - Volto project for [European Industrial Emissions Portal website](https://industry.eea.europa.eu)
|
|
190
|
+
- [Forest Information System for Europe](https://github.com/eea/fise-frontend) - Volto project for [Forest Information System for Europe website](https://forest.eea.europa.eu)
|
|
191
|
+
- [Freshwater Information System for Europe](https://github.com/eea/freshwater-frontend) - Volto project for [Freshwater Information System for Europe website](https://water.europa.eu/freshwater)
|
|
187
192
|
- [nsw-design-system-plone6-kit](https://github.com/pretagov/nsw-design-system-plone6-kit) - NSW Design System Plone 6 Kit Volto project for [NSW.gov.au sites](https://digitalnsw.pretagov.com.au/)
|
|
193
|
+
- [plone.org.br](https://github.com/plonegovbr/plone.org.br) - Volto project for the [Brazilian Plone Community](https://plone.org.br)
|
|
194
|
+
- [volto-bise](https://github.com/eea/volto-bise) - A Volto project packaged as an add-on. It provides Theming using a razzle.extend.js provided alias.
|
|
188
195
|
- [volto-eea-design-system](https://github.com/eea/volto-eea-design-system) - EEA Design System Plone 6 Kit Volto project for [European Environment Agency web sites](https://eea.github.io/volto-eea-design-system/)
|
|
189
196
|
- [volto-eea-kitkat](https://github.com/eea/volto-eea-kitkat) - A known good set of Volto add-ons to be used within all EEA projects and beyond, made for [European Environment Agency](https://www.eea.europa.eu/en)
|
|
190
197
|
- [volto-zeeuwsmuseum-theme](https://github.com/intk/volto-zeeuwsmuseum-theme) - Volto project for the [Zeeuws Museum](https://www.zeeuwsmuseum.nl/en) made for [INTK](https://www.intk.com/en).
|
|
@@ -605,6 +605,7 @@ msgstr "Cel·la"
|
|
|
605
605
|
#: components/manage/Blocks/Maps/Edit
|
|
606
606
|
#: components/manage/Sidebar/AlignBlock
|
|
607
607
|
#: components/manage/Widgets/AlignWidget
|
|
608
|
+
#: components/manage/Widgets/BlockAlignment
|
|
608
609
|
msgid "Center"
|
|
609
610
|
msgstr "Centre"
|
|
610
611
|
|
|
@@ -1014,6 +1015,7 @@ msgstr "Data (el més nou primer)"
|
|
|
1014
1015
|
#: components/manage/Controlpanels/UndoControlpanel
|
|
1015
1016
|
#: components/manage/Preferences/ChangePassword
|
|
1016
1017
|
#: components/manage/Preferences/PersonalPreferences
|
|
1018
|
+
#: components/manage/Widgets/BlockWidth
|
|
1017
1019
|
#: components/manage/Widgets/SchemaWidget
|
|
1018
1020
|
#: components/manage/Widgets/SelectWidget
|
|
1019
1021
|
#: components/theme/Comments/CommentEditModal
|
|
@@ -1667,6 +1669,7 @@ msgstr "Des de"
|
|
|
1667
1669
|
#: components/manage/Blocks/Maps/Edit
|
|
1668
1670
|
#: components/manage/Sidebar/AlignBlock
|
|
1669
1671
|
#: components/manage/Widgets/AlignWidget
|
|
1672
|
+
#: components/manage/Widgets/BlockWidth
|
|
1670
1673
|
msgid "Full"
|
|
1671
1674
|
msgstr "Complet"
|
|
1672
1675
|
|
|
@@ -2052,6 +2055,7 @@ msgstr ""
|
|
|
2052
2055
|
|
|
2053
2056
|
#. Default: "Large"
|
|
2054
2057
|
#: components/manage/Widgets/ImageSizeWidget
|
|
2058
|
+
#: components/manage/Widgets/Size
|
|
2055
2059
|
msgid "Large"
|
|
2056
2060
|
msgstr ""
|
|
2057
2061
|
|
|
@@ -2082,6 +2086,7 @@ msgstr "Última versió"
|
|
|
2082
2086
|
|
|
2083
2087
|
#. Default: "Layout"
|
|
2084
2088
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
2089
|
+
#: components/manage/Widgets/BlockWidth
|
|
2085
2090
|
msgid "Layout"
|
|
2086
2091
|
msgstr "Disseny"
|
|
2087
2092
|
|
|
@@ -2094,6 +2099,7 @@ msgstr "Imatge Principal"
|
|
|
2094
2099
|
#: components/manage/Blocks/Maps/Edit
|
|
2095
2100
|
#: components/manage/Sidebar/AlignBlock
|
|
2096
2101
|
#: components/manage/Widgets/AlignWidget
|
|
2102
|
+
#: components/manage/Widgets/BlockAlignment
|
|
2097
2103
|
msgid "Left"
|
|
2098
2104
|
msgstr "A l'esquerra"
|
|
2099
2105
|
|
|
@@ -2292,6 +2298,7 @@ msgstr "El valor màxim és {len}."
|
|
|
2292
2298
|
|
|
2293
2299
|
#. Default: "Medium"
|
|
2294
2300
|
#: components/manage/Widgets/ImageSizeWidget
|
|
2301
|
+
#: components/manage/Widgets/Size
|
|
2295
2302
|
msgid "Medium"
|
|
2296
2303
|
msgstr ""
|
|
2297
2304
|
|
|
@@ -2404,6 +2411,7 @@ msgstr "Nom"
|
|
|
2404
2411
|
|
|
2405
2412
|
#. Default: "Narrow"
|
|
2406
2413
|
#: components/manage/Widgets/AlignWidget
|
|
2414
|
+
#: components/manage/Widgets/BlockWidth
|
|
2407
2415
|
msgid "Narrow"
|
|
2408
2416
|
msgstr ""
|
|
2409
2417
|
|
|
@@ -3120,6 +3128,7 @@ msgstr "Text enriquit"
|
|
|
3120
3128
|
#: components/manage/Blocks/Maps/Edit
|
|
3121
3129
|
#: components/manage/Sidebar/AlignBlock
|
|
3122
3130
|
#: components/manage/Widgets/AlignWidget
|
|
3131
|
+
#: components/manage/Widgets/BlockAlignment
|
|
3123
3132
|
msgid "Right"
|
|
3124
3133
|
msgstr "Dret"
|
|
3125
3134
|
|
|
@@ -3516,6 +3525,7 @@ msgstr "Mida: {size}"
|
|
|
3516
3525
|
|
|
3517
3526
|
#. Default: "Small"
|
|
3518
3527
|
#: components/manage/Widgets/ImageSizeWidget
|
|
3528
|
+
#: components/manage/Widgets/Size
|
|
3519
3529
|
msgid "Small"
|
|
3520
3530
|
msgstr ""
|
|
3521
3531
|
|
|
@@ -604,6 +604,7 @@ msgstr "Zelle"
|
|
|
604
604
|
#: components/manage/Blocks/Maps/Edit
|
|
605
605
|
#: components/manage/Sidebar/AlignBlock
|
|
606
606
|
#: components/manage/Widgets/AlignWidget
|
|
607
|
+
#: components/manage/Widgets/BlockAlignment
|
|
607
608
|
msgid "Center"
|
|
608
609
|
msgstr "Mittig"
|
|
609
610
|
|
|
@@ -1013,6 +1014,7 @@ msgstr "Datum (neustes zuerst)"
|
|
|
1013
1014
|
#: components/manage/Controlpanels/UndoControlpanel
|
|
1014
1015
|
#: components/manage/Preferences/ChangePassword
|
|
1015
1016
|
#: components/manage/Preferences/PersonalPreferences
|
|
1017
|
+
#: components/manage/Widgets/BlockWidth
|
|
1016
1018
|
#: components/manage/Widgets/SchemaWidget
|
|
1017
1019
|
#: components/manage/Widgets/SelectWidget
|
|
1018
1020
|
#: components/theme/Comments/CommentEditModal
|
|
@@ -1666,6 +1668,7 @@ msgstr "E-Mail"
|
|
|
1666
1668
|
#: components/manage/Blocks/Maps/Edit
|
|
1667
1669
|
#: components/manage/Sidebar/AlignBlock
|
|
1668
1670
|
#: components/manage/Widgets/AlignWidget
|
|
1671
|
+
#: components/manage/Widgets/BlockWidth
|
|
1669
1672
|
msgid "Full"
|
|
1670
1673
|
msgstr "Volle Breite"
|
|
1671
1674
|
|
|
@@ -2051,6 +2054,7 @@ msgstr "Dies ist ein sprachunabhängiges Feld. Jeder Wert, den Sie hier eingeben
|
|
|
2051
2054
|
|
|
2052
2055
|
#. Default: "Large"
|
|
2053
2056
|
#: components/manage/Widgets/ImageSizeWidget
|
|
2057
|
+
#: components/manage/Widgets/Size
|
|
2054
2058
|
msgid "Large"
|
|
2055
2059
|
msgstr "Groß"
|
|
2056
2060
|
|
|
@@ -2081,6 +2085,7 @@ msgstr "Verfügbare Version"
|
|
|
2081
2085
|
|
|
2082
2086
|
#. Default: "Layout"
|
|
2083
2087
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
2088
|
+
#: components/manage/Widgets/BlockWidth
|
|
2084
2089
|
msgid "Layout"
|
|
2085
2090
|
msgstr "Layout"
|
|
2086
2091
|
|
|
@@ -2093,6 +2098,7 @@ msgstr "Lead-Bild"
|
|
|
2093
2098
|
#: components/manage/Blocks/Maps/Edit
|
|
2094
2099
|
#: components/manage/Sidebar/AlignBlock
|
|
2095
2100
|
#: components/manage/Widgets/AlignWidget
|
|
2101
|
+
#: components/manage/Widgets/BlockAlignment
|
|
2096
2102
|
msgid "Left"
|
|
2097
2103
|
msgstr "Links"
|
|
2098
2104
|
|
|
@@ -2291,6 +2297,7 @@ msgstr "Maximaler Wert ist {len}"
|
|
|
2291
2297
|
|
|
2292
2298
|
#. Default: "Medium"
|
|
2293
2299
|
#: components/manage/Widgets/ImageSizeWidget
|
|
2300
|
+
#: components/manage/Widgets/Size
|
|
2294
2301
|
msgid "Medium"
|
|
2295
2302
|
msgstr "Mittel"
|
|
2296
2303
|
|
|
@@ -2403,6 +2410,7 @@ msgstr "Name"
|
|
|
2403
2410
|
|
|
2404
2411
|
#. Default: "Narrow"
|
|
2405
2412
|
#: components/manage/Widgets/AlignWidget
|
|
2413
|
+
#: components/manage/Widgets/BlockWidth
|
|
2406
2414
|
msgid "Narrow"
|
|
2407
2415
|
msgstr "Schmal"
|
|
2408
2416
|
|
|
@@ -3119,6 +3127,7 @@ msgstr "Richtext"
|
|
|
3119
3127
|
#: components/manage/Blocks/Maps/Edit
|
|
3120
3128
|
#: components/manage/Sidebar/AlignBlock
|
|
3121
3129
|
#: components/manage/Widgets/AlignWidget
|
|
3130
|
+
#: components/manage/Widgets/BlockAlignment
|
|
3122
3131
|
msgid "Right"
|
|
3123
3132
|
msgstr "Rechte"
|
|
3124
3133
|
|
|
@@ -3515,6 +3524,7 @@ msgstr "Grösse: {size}"
|
|
|
3515
3524
|
|
|
3516
3525
|
#. Default: "Small"
|
|
3517
3526
|
#: components/manage/Widgets/ImageSizeWidget
|
|
3527
|
+
#: components/manage/Widgets/Size
|
|
3518
3528
|
msgid "Small"
|
|
3519
3529
|
msgstr "Klein"
|
|
3520
3530
|
|
|
@@ -599,6 +599,7 @@ msgstr ""
|
|
|
599
599
|
#: components/manage/Blocks/Maps/Edit
|
|
600
600
|
#: components/manage/Sidebar/AlignBlock
|
|
601
601
|
#: components/manage/Widgets/AlignWidget
|
|
602
|
+
#: components/manage/Widgets/BlockAlignment
|
|
602
603
|
msgid "Center"
|
|
603
604
|
msgstr ""
|
|
604
605
|
|
|
@@ -1008,6 +1009,7 @@ msgstr ""
|
|
|
1008
1009
|
#: components/manage/Controlpanels/UndoControlpanel
|
|
1009
1010
|
#: components/manage/Preferences/ChangePassword
|
|
1010
1011
|
#: components/manage/Preferences/PersonalPreferences
|
|
1012
|
+
#: components/manage/Widgets/BlockWidth
|
|
1011
1013
|
#: components/manage/Widgets/SchemaWidget
|
|
1012
1014
|
#: components/manage/Widgets/SelectWidget
|
|
1013
1015
|
#: components/theme/Comments/CommentEditModal
|
|
@@ -1661,6 +1663,7 @@ msgstr ""
|
|
|
1661
1663
|
#: components/manage/Blocks/Maps/Edit
|
|
1662
1664
|
#: components/manage/Sidebar/AlignBlock
|
|
1663
1665
|
#: components/manage/Widgets/AlignWidget
|
|
1666
|
+
#: components/manage/Widgets/BlockWidth
|
|
1664
1667
|
msgid "Full"
|
|
1665
1668
|
msgstr ""
|
|
1666
1669
|
|
|
@@ -2046,6 +2049,7 @@ msgstr ""
|
|
|
2046
2049
|
|
|
2047
2050
|
#. Default: "Large"
|
|
2048
2051
|
#: components/manage/Widgets/ImageSizeWidget
|
|
2052
|
+
#: components/manage/Widgets/Size
|
|
2049
2053
|
msgid "Large"
|
|
2050
2054
|
msgstr ""
|
|
2051
2055
|
|
|
@@ -2076,6 +2080,7 @@ msgstr ""
|
|
|
2076
2080
|
|
|
2077
2081
|
#. Default: "Layout"
|
|
2078
2082
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
2083
|
+
#: components/manage/Widgets/BlockWidth
|
|
2079
2084
|
msgid "Layout"
|
|
2080
2085
|
msgstr ""
|
|
2081
2086
|
|
|
@@ -2088,6 +2093,7 @@ msgstr ""
|
|
|
2088
2093
|
#: components/manage/Blocks/Maps/Edit
|
|
2089
2094
|
#: components/manage/Sidebar/AlignBlock
|
|
2090
2095
|
#: components/manage/Widgets/AlignWidget
|
|
2096
|
+
#: components/manage/Widgets/BlockAlignment
|
|
2091
2097
|
msgid "Left"
|
|
2092
2098
|
msgstr ""
|
|
2093
2099
|
|
|
@@ -2286,6 +2292,7 @@ msgstr ""
|
|
|
2286
2292
|
|
|
2287
2293
|
#. Default: "Medium"
|
|
2288
2294
|
#: components/manage/Widgets/ImageSizeWidget
|
|
2295
|
+
#: components/manage/Widgets/Size
|
|
2289
2296
|
msgid "Medium"
|
|
2290
2297
|
msgstr ""
|
|
2291
2298
|
|
|
@@ -2398,6 +2405,7 @@ msgstr ""
|
|
|
2398
2405
|
|
|
2399
2406
|
#. Default: "Narrow"
|
|
2400
2407
|
#: components/manage/Widgets/AlignWidget
|
|
2408
|
+
#: components/manage/Widgets/BlockWidth
|
|
2401
2409
|
msgid "Narrow"
|
|
2402
2410
|
msgstr ""
|
|
2403
2411
|
|
|
@@ -3114,6 +3122,7 @@ msgstr ""
|
|
|
3114
3122
|
#: components/manage/Blocks/Maps/Edit
|
|
3115
3123
|
#: components/manage/Sidebar/AlignBlock
|
|
3116
3124
|
#: components/manage/Widgets/AlignWidget
|
|
3125
|
+
#: components/manage/Widgets/BlockAlignment
|
|
3117
3126
|
msgid "Right"
|
|
3118
3127
|
msgstr ""
|
|
3119
3128
|
|
|
@@ -3510,6 +3519,7 @@ msgstr ""
|
|
|
3510
3519
|
|
|
3511
3520
|
#. Default: "Small"
|
|
3512
3521
|
#: components/manage/Widgets/ImageSizeWidget
|
|
3522
|
+
#: components/manage/Widgets/Size
|
|
3513
3523
|
msgid "Small"
|
|
3514
3524
|
msgstr ""
|
|
3515
3525
|
|
|
@@ -606,6 +606,7 @@ msgstr "Celda"
|
|
|
606
606
|
#: components/manage/Blocks/Maps/Edit
|
|
607
607
|
#: components/manage/Sidebar/AlignBlock
|
|
608
608
|
#: components/manage/Widgets/AlignWidget
|
|
609
|
+
#: components/manage/Widgets/BlockAlignment
|
|
609
610
|
msgid "Center"
|
|
610
611
|
msgstr "Centro"
|
|
611
612
|
|
|
@@ -1015,6 +1016,7 @@ msgstr "Fecha (primero los más recientes)"
|
|
|
1015
1016
|
#: components/manage/Controlpanels/UndoControlpanel
|
|
1016
1017
|
#: components/manage/Preferences/ChangePassword
|
|
1017
1018
|
#: components/manage/Preferences/PersonalPreferences
|
|
1019
|
+
#: components/manage/Widgets/BlockWidth
|
|
1018
1020
|
#: components/manage/Widgets/SchemaWidget
|
|
1019
1021
|
#: components/manage/Widgets/SelectWidget
|
|
1020
1022
|
#: components/theme/Comments/CommentEditModal
|
|
@@ -1668,6 +1670,7 @@ msgstr "De"
|
|
|
1668
1670
|
#: components/manage/Blocks/Maps/Edit
|
|
1669
1671
|
#: components/manage/Sidebar/AlignBlock
|
|
1670
1672
|
#: components/manage/Widgets/AlignWidget
|
|
1673
|
+
#: components/manage/Widgets/BlockWidth
|
|
1671
1674
|
msgid "Full"
|
|
1672
1675
|
msgstr "Completo"
|
|
1673
1676
|
|
|
@@ -2053,6 +2056,7 @@ msgstr ""
|
|
|
2053
2056
|
|
|
2054
2057
|
#. Default: "Large"
|
|
2055
2058
|
#: components/manage/Widgets/ImageSizeWidget
|
|
2059
|
+
#: components/manage/Widgets/Size
|
|
2056
2060
|
msgid "Large"
|
|
2057
2061
|
msgstr "Grande"
|
|
2058
2062
|
|
|
@@ -2083,6 +2087,7 @@ msgstr "Última versión"
|
|
|
2083
2087
|
|
|
2084
2088
|
#. Default: "Layout"
|
|
2085
2089
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
2090
|
+
#: components/manage/Widgets/BlockWidth
|
|
2086
2091
|
msgid "Layout"
|
|
2087
2092
|
msgstr "Plantilla"
|
|
2088
2093
|
|
|
@@ -2095,6 +2100,7 @@ msgstr "Imagen principal"
|
|
|
2095
2100
|
#: components/manage/Blocks/Maps/Edit
|
|
2096
2101
|
#: components/manage/Sidebar/AlignBlock
|
|
2097
2102
|
#: components/manage/Widgets/AlignWidget
|
|
2103
|
+
#: components/manage/Widgets/BlockAlignment
|
|
2098
2104
|
msgid "Left"
|
|
2099
2105
|
msgstr "Izquierda"
|
|
2100
2106
|
|
|
@@ -2293,6 +2299,7 @@ msgstr "El valor máximo es {len}."
|
|
|
2293
2299
|
|
|
2294
2300
|
#. Default: "Medium"
|
|
2295
2301
|
#: components/manage/Widgets/ImageSizeWidget
|
|
2302
|
+
#: components/manage/Widgets/Size
|
|
2296
2303
|
msgid "Medium"
|
|
2297
2304
|
msgstr "Mediano"
|
|
2298
2305
|
|
|
@@ -2405,6 +2412,7 @@ msgstr "Nombre"
|
|
|
2405
2412
|
|
|
2406
2413
|
#. Default: "Narrow"
|
|
2407
2414
|
#: components/manage/Widgets/AlignWidget
|
|
2415
|
+
#: components/manage/Widgets/BlockWidth
|
|
2408
2416
|
msgid "Narrow"
|
|
2409
2417
|
msgstr "Filtrar"
|
|
2410
2418
|
|
|
@@ -3121,6 +3129,7 @@ msgstr "Texto formateado"
|
|
|
3121
3129
|
#: components/manage/Blocks/Maps/Edit
|
|
3122
3130
|
#: components/manage/Sidebar/AlignBlock
|
|
3123
3131
|
#: components/manage/Widgets/AlignWidget
|
|
3132
|
+
#: components/manage/Widgets/BlockAlignment
|
|
3124
3133
|
msgid "Right"
|
|
3125
3134
|
msgstr "Derecha"
|
|
3126
3135
|
|
|
@@ -3517,6 +3526,7 @@ msgstr "Tamaño: {size}"
|
|
|
3517
3526
|
|
|
3518
3527
|
#. Default: "Small"
|
|
3519
3528
|
#: components/manage/Widgets/ImageSizeWidget
|
|
3529
|
+
#: components/manage/Widgets/Size
|
|
3520
3530
|
msgid "Small"
|
|
3521
3531
|
msgstr "Pequeño"
|
|
3522
3532
|
|
|
@@ -606,6 +606,7 @@ msgstr "Zelda"
|
|
|
606
606
|
#: components/manage/Blocks/Maps/Edit
|
|
607
607
|
#: components/manage/Sidebar/AlignBlock
|
|
608
608
|
#: components/manage/Widgets/AlignWidget
|
|
609
|
+
#: components/manage/Widgets/BlockAlignment
|
|
609
610
|
msgid "Center"
|
|
610
611
|
msgstr "Erdiratu"
|
|
611
612
|
|
|
@@ -1015,6 +1016,7 @@ msgstr "Data (berriena lehenengo)"
|
|
|
1015
1016
|
#: components/manage/Controlpanels/UndoControlpanel
|
|
1016
1017
|
#: components/manage/Preferences/ChangePassword
|
|
1017
1018
|
#: components/manage/Preferences/PersonalPreferences
|
|
1019
|
+
#: components/manage/Widgets/BlockWidth
|
|
1018
1020
|
#: components/manage/Widgets/SchemaWidget
|
|
1019
1021
|
#: components/manage/Widgets/SelectWidget
|
|
1020
1022
|
#: components/theme/Comments/CommentEditModal
|
|
@@ -1668,6 +1670,7 @@ msgstr "Nok"
|
|
|
1668
1670
|
#: components/manage/Blocks/Maps/Edit
|
|
1669
1671
|
#: components/manage/Sidebar/AlignBlock
|
|
1670
1672
|
#: components/manage/Widgets/AlignWidget
|
|
1673
|
+
#: components/manage/Widgets/BlockWidth
|
|
1671
1674
|
msgid "Full"
|
|
1672
1675
|
msgstr "Osoa"
|
|
1673
1676
|
|
|
@@ -2053,6 +2056,7 @@ msgstr ""
|
|
|
2053
2056
|
|
|
2054
2057
|
#. Default: "Large"
|
|
2055
2058
|
#: components/manage/Widgets/ImageSizeWidget
|
|
2059
|
+
#: components/manage/Widgets/Size
|
|
2056
2060
|
msgid "Large"
|
|
2057
2061
|
msgstr "Handia"
|
|
2058
2062
|
|
|
@@ -2083,6 +2087,7 @@ msgstr "Azken bertsioa"
|
|
|
2083
2087
|
|
|
2084
2088
|
#. Default: "Layout"
|
|
2085
2089
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
2090
|
+
#: components/manage/Widgets/BlockWidth
|
|
2086
2091
|
msgid "Layout"
|
|
2087
2092
|
msgstr "Itxura"
|
|
2088
2093
|
|
|
@@ -2095,6 +2100,7 @@ msgstr "Irudia"
|
|
|
2095
2100
|
#: components/manage/Blocks/Maps/Edit
|
|
2096
2101
|
#: components/manage/Sidebar/AlignBlock
|
|
2097
2102
|
#: components/manage/Widgets/AlignWidget
|
|
2103
|
+
#: components/manage/Widgets/BlockAlignment
|
|
2098
2104
|
msgid "Left"
|
|
2099
2105
|
msgstr "Ezkerrean"
|
|
2100
2106
|
|
|
@@ -2293,6 +2299,7 @@ msgstr "Balio handiena {len} da."
|
|
|
2293
2299
|
|
|
2294
2300
|
#. Default: "Medium"
|
|
2295
2301
|
#: components/manage/Widgets/ImageSizeWidget
|
|
2302
|
+
#: components/manage/Widgets/Size
|
|
2296
2303
|
msgid "Medium"
|
|
2297
2304
|
msgstr "Ertaina"
|
|
2298
2305
|
|
|
@@ -2405,6 +2412,7 @@ msgstr "Izena"
|
|
|
2405
2412
|
|
|
2406
2413
|
#. Default: "Narrow"
|
|
2407
2414
|
#: components/manage/Widgets/AlignWidget
|
|
2415
|
+
#: components/manage/Widgets/BlockWidth
|
|
2408
2416
|
msgid "Narrow"
|
|
2409
2417
|
msgstr "Estutu"
|
|
2410
2418
|
|
|
@@ -3121,6 +3129,7 @@ msgstr "Testu aberatsa"
|
|
|
3121
3129
|
#: components/manage/Blocks/Maps/Edit
|
|
3122
3130
|
#: components/manage/Sidebar/AlignBlock
|
|
3123
3131
|
#: components/manage/Widgets/AlignWidget
|
|
3132
|
+
#: components/manage/Widgets/BlockAlignment
|
|
3124
3133
|
msgid "Right"
|
|
3125
3134
|
msgstr "Eskuman"
|
|
3126
3135
|
|
|
@@ -3517,6 +3526,7 @@ msgstr "Tamaina: {size}"
|
|
|
3517
3526
|
|
|
3518
3527
|
#. Default: "Small"
|
|
3519
3528
|
#: components/manage/Widgets/ImageSizeWidget
|
|
3529
|
+
#: components/manage/Widgets/Size
|
|
3520
3530
|
msgid "Small"
|
|
3521
3531
|
msgstr "Txikia"
|
|
3522
3532
|
|
|
@@ -604,6 +604,7 @@ msgstr "Sarake"
|
|
|
604
604
|
#: components/manage/Blocks/Maps/Edit
|
|
605
605
|
#: components/manage/Sidebar/AlignBlock
|
|
606
606
|
#: components/manage/Widgets/AlignWidget
|
|
607
|
+
#: components/manage/Widgets/BlockAlignment
|
|
607
608
|
msgid "Center"
|
|
608
609
|
msgstr "Keskellä"
|
|
609
610
|
|
|
@@ -1013,6 +1014,7 @@ msgstr "Päivä (uusin ensin)"
|
|
|
1013
1014
|
#: components/manage/Controlpanels/UndoControlpanel
|
|
1014
1015
|
#: components/manage/Preferences/ChangePassword
|
|
1015
1016
|
#: components/manage/Preferences/PersonalPreferences
|
|
1017
|
+
#: components/manage/Widgets/BlockWidth
|
|
1016
1018
|
#: components/manage/Widgets/SchemaWidget
|
|
1017
1019
|
#: components/manage/Widgets/SelectWidget
|
|
1018
1020
|
#: components/theme/Comments/CommentEditModal
|
|
@@ -1666,6 +1668,7 @@ msgstr "Sähköposti"
|
|
|
1666
1668
|
#: components/manage/Blocks/Maps/Edit
|
|
1667
1669
|
#: components/manage/Sidebar/AlignBlock
|
|
1668
1670
|
#: components/manage/Widgets/AlignWidget
|
|
1671
|
+
#: components/manage/Widgets/BlockWidth
|
|
1669
1672
|
msgid "Full"
|
|
1670
1673
|
msgstr "Kokoleveästi"
|
|
1671
1674
|
|
|
@@ -2051,6 +2054,7 @@ msgstr ""
|
|
|
2051
2054
|
|
|
2052
2055
|
#. Default: "Large"
|
|
2053
2056
|
#: components/manage/Widgets/ImageSizeWidget
|
|
2057
|
+
#: components/manage/Widgets/Size
|
|
2054
2058
|
msgid "Large"
|
|
2055
2059
|
msgstr "Suuri"
|
|
2056
2060
|
|
|
@@ -2081,6 +2085,7 @@ msgstr "Viimeisin versio"
|
|
|
2081
2085
|
|
|
2082
2086
|
#. Default: "Layout"
|
|
2083
2087
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
2088
|
+
#: components/manage/Widgets/BlockWidth
|
|
2084
2089
|
msgid "Layout"
|
|
2085
2090
|
msgstr "Asettelu"
|
|
2086
2091
|
|
|
@@ -2093,6 +2098,7 @@ msgstr "Nostokuva"
|
|
|
2093
2098
|
#: components/manage/Blocks/Maps/Edit
|
|
2094
2099
|
#: components/manage/Sidebar/AlignBlock
|
|
2095
2100
|
#: components/manage/Widgets/AlignWidget
|
|
2101
|
+
#: components/manage/Widgets/BlockAlignment
|
|
2096
2102
|
msgid "Left"
|
|
2097
2103
|
msgstr "Vasemmalla"
|
|
2098
2104
|
|
|
@@ -2291,6 +2297,7 @@ msgstr "Suurin mahdollinen arvo on {len}."
|
|
|
2291
2297
|
|
|
2292
2298
|
#. Default: "Medium"
|
|
2293
2299
|
#: components/manage/Widgets/ImageSizeWidget
|
|
2300
|
+
#: components/manage/Widgets/Size
|
|
2294
2301
|
msgid "Medium"
|
|
2295
2302
|
msgstr "Keskikokoinen"
|
|
2296
2303
|
|
|
@@ -2403,6 +2410,7 @@ msgstr "Nimi"
|
|
|
2403
2410
|
|
|
2404
2411
|
#. Default: "Narrow"
|
|
2405
2412
|
#: components/manage/Widgets/AlignWidget
|
|
2413
|
+
#: components/manage/Widgets/BlockWidth
|
|
2406
2414
|
msgid "Narrow"
|
|
2407
2415
|
msgstr "Kavenna"
|
|
2408
2416
|
|
|
@@ -3119,6 +3127,7 @@ msgstr "Muotoiltu teksti"
|
|
|
3119
3127
|
#: components/manage/Blocks/Maps/Edit
|
|
3120
3128
|
#: components/manage/Sidebar/AlignBlock
|
|
3121
3129
|
#: components/manage/Widgets/AlignWidget
|
|
3130
|
+
#: components/manage/Widgets/BlockAlignment
|
|
3122
3131
|
msgid "Right"
|
|
3123
3132
|
msgstr "Oikealla"
|
|
3124
3133
|
|
|
@@ -3515,6 +3524,7 @@ msgstr "Koko: {size}"
|
|
|
3515
3524
|
|
|
3516
3525
|
#. Default: "Small"
|
|
3517
3526
|
#: components/manage/Widgets/ImageSizeWidget
|
|
3527
|
+
#: components/manage/Widgets/Size
|
|
3518
3528
|
msgid "Small"
|
|
3519
3529
|
msgstr "Pieni"
|
|
3520
3530
|
|
|
@@ -606,6 +606,7 @@ msgstr "Cellule"
|
|
|
606
606
|
#: components/manage/Blocks/Maps/Edit
|
|
607
607
|
#: components/manage/Sidebar/AlignBlock
|
|
608
608
|
#: components/manage/Widgets/AlignWidget
|
|
609
|
+
#: components/manage/Widgets/BlockAlignment
|
|
609
610
|
msgid "Center"
|
|
610
611
|
msgstr "Centre"
|
|
611
612
|
|
|
@@ -1015,6 +1016,7 @@ msgstr "Date (le plus récent en premier)"
|
|
|
1015
1016
|
#: components/manage/Controlpanels/UndoControlpanel
|
|
1016
1017
|
#: components/manage/Preferences/ChangePassword
|
|
1017
1018
|
#: components/manage/Preferences/PersonalPreferences
|
|
1019
|
+
#: components/manage/Widgets/BlockWidth
|
|
1018
1020
|
#: components/manage/Widgets/SchemaWidget
|
|
1019
1021
|
#: components/manage/Widgets/SelectWidget
|
|
1020
1022
|
#: components/theme/Comments/CommentEditModal
|
|
@@ -1668,6 +1670,7 @@ msgstr "De"
|
|
|
1668
1670
|
#: components/manage/Blocks/Maps/Edit
|
|
1669
1671
|
#: components/manage/Sidebar/AlignBlock
|
|
1670
1672
|
#: components/manage/Widgets/AlignWidget
|
|
1673
|
+
#: components/manage/Widgets/BlockWidth
|
|
1671
1674
|
msgid "Full"
|
|
1672
1675
|
msgstr "Complet"
|
|
1673
1676
|
|
|
@@ -2053,6 +2056,7 @@ msgstr ""
|
|
|
2053
2056
|
|
|
2054
2057
|
#. Default: "Large"
|
|
2055
2058
|
#: components/manage/Widgets/ImageSizeWidget
|
|
2059
|
+
#: components/manage/Widgets/Size
|
|
2056
2060
|
msgid "Large"
|
|
2057
2061
|
msgstr "Large"
|
|
2058
2062
|
|
|
@@ -2083,6 +2087,7 @@ msgstr "Dernière version"
|
|
|
2083
2087
|
|
|
2084
2088
|
#. Default: "Layout"
|
|
2085
2089
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
2090
|
+
#: components/manage/Widgets/BlockWidth
|
|
2086
2091
|
msgid "Layout"
|
|
2087
2092
|
msgstr "Disposition"
|
|
2088
2093
|
|
|
@@ -2095,6 +2100,7 @@ msgstr "Image de garde"
|
|
|
2095
2100
|
#: components/manage/Blocks/Maps/Edit
|
|
2096
2101
|
#: components/manage/Sidebar/AlignBlock
|
|
2097
2102
|
#: components/manage/Widgets/AlignWidget
|
|
2103
|
+
#: components/manage/Widgets/BlockAlignment
|
|
2098
2104
|
msgid "Left"
|
|
2099
2105
|
msgstr "Gauche"
|
|
2100
2106
|
|
|
@@ -2293,6 +2299,7 @@ msgstr "La valeur maximale est {len}."
|
|
|
2293
2299
|
|
|
2294
2300
|
#. Default: "Medium"
|
|
2295
2301
|
#: components/manage/Widgets/ImageSizeWidget
|
|
2302
|
+
#: components/manage/Widgets/Size
|
|
2296
2303
|
msgid "Medium"
|
|
2297
2304
|
msgstr "Moyen"
|
|
2298
2305
|
|
|
@@ -2405,6 +2412,7 @@ msgstr "Nom"
|
|
|
2405
2412
|
|
|
2406
2413
|
#. Default: "Narrow"
|
|
2407
2414
|
#: components/manage/Widgets/AlignWidget
|
|
2415
|
+
#: components/manage/Widgets/BlockWidth
|
|
2408
2416
|
msgid "Narrow"
|
|
2409
2417
|
msgstr "Étroit"
|
|
2410
2418
|
|
|
@@ -3121,6 +3129,7 @@ msgstr "Texte riche"
|
|
|
3121
3129
|
#: components/manage/Blocks/Maps/Edit
|
|
3122
3130
|
#: components/manage/Sidebar/AlignBlock
|
|
3123
3131
|
#: components/manage/Widgets/AlignWidget
|
|
3132
|
+
#: components/manage/Widgets/BlockAlignment
|
|
3124
3133
|
msgid "Right"
|
|
3125
3134
|
msgstr "Droit"
|
|
3126
3135
|
|
|
@@ -3517,6 +3526,7 @@ msgstr "Taille : {size}"
|
|
|
3517
3526
|
|
|
3518
3527
|
#. Default: "Small"
|
|
3519
3528
|
#: components/manage/Widgets/ImageSizeWidget
|
|
3529
|
+
#: components/manage/Widgets/Size
|
|
3520
3530
|
msgid "Small"
|
|
3521
3531
|
msgstr "Petit"
|
|
3522
3532
|
|