@plone/volto 17.0.0-alpha.4 → 17.0.0-alpha.6

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.
Files changed (38) hide show
  1. package/.changelog.draft +20 -20
  2. package/.yarn/install-state.gz +0 -0
  3. package/CHANGELOG.md +98 -13
  4. package/CONTRIBUTING.md +1 -1
  5. package/README.md +9 -12
  6. package/locales/de/LC_MESSAGES/volto.po +17 -17
  7. package/locales/de.json +1 -1
  8. package/package.json +3 -2
  9. package/packages/volto-slate/package.json +1 -1
  10. package/src/components/manage/Blocks/Listing/Edit.jsx +0 -14
  11. package/src/components/manage/Blocks/Listing/ListingBody.test.jsx +0 -20
  12. package/src/components/manage/Blocks/Listing/getAsyncData.js +10 -2
  13. package/src/components/manage/Blocks/Listing/withQuerystringResults.jsx +20 -14
  14. package/src/components/manage/Blocks/Search/SearchBlockEdit.jsx +5 -4
  15. package/src/components/manage/Blocks/Search/SearchBlockView.jsx +2 -1
  16. package/src/components/manage/Blocks/Search/hocs/withSearch.jsx +28 -19
  17. package/src/components/manage/Contents/Contents.jsx +29 -24
  18. package/src/components/manage/Controlpanels/Controlpanels.jsx +190 -224
  19. package/src/components/manage/Controlpanels/Controlpanels.test.jsx +46 -7
  20. package/src/components/manage/Form/InlineForm.jsx +39 -9
  21. package/src/components/manage/Form/InlineFormState.js +8 -0
  22. package/src/components/manage/Widgets/ObjectListWidget.jsx +3 -8
  23. package/src/components/theme/Icon/Icon.jsx +2 -2
  24. package/src/components/theme/Login/Login.jsx +1 -0
  25. package/src/config/index.js +1 -0
  26. package/src/express-middleware/sitemap.js +36 -3
  27. package/src/helpers/Robots/Robots.js +24 -6
  28. package/src/helpers/Sitemap/Sitemap.js +44 -2
  29. package/src/helpers/Url/Url.js +8 -3
  30. package/src/helpers/Url/Url.test.js +14 -0
  31. package/src/helpers/Utils/Utils.js +17 -4
  32. package/src/helpers/Utils/usePagination.js +14 -48
  33. package/src/helpers/index.js +2 -0
  34. package/src/middleware/Api.test.js +54 -0
  35. package/src/middleware/api.js +1 -1
  36. package/test-setup-config.js +1 -0
  37. package/theme/themes/pastanaga/extras/sidebar.less +4 -0
  38. package/src/helpers/Utils/usePagination.test.js +0 -115
package/.changelog.draft CHANGED
@@ -1,33 +1,33 @@
1
- ## 17.0.0-alpha.4 (2023-04-12)
1
+ ## 17.0.0-alpha.6 (2023-05-11)
2
2
 
3
3
  ### Feature
4
4
 
5
- - DefaultView (view of fields for content types with blocks disabled): Show field name as tip on hover of label. @ksuess [#4598](https://github.com/plone/volto/issues/4598)
6
- - Support RelationList field with named StaticCatalogVocabulary and SelectWidget. @ksuess [#4614](https://github.com/plone/volto/issues/4614)
7
- - Support for declaring a theme in `volto.config.js` or in `package.json`
8
- Add two entry points to allow extension of a theme from other add-ons. @sneridagh [#4625](https://github.com/plone/volto/issues/4625)
9
- - Set sameSite in I18N_LANGUAGE cookie @sneridagh [#4627](https://github.com/plone/volto/issues/4627)
10
- - Added querystring search get option. @robgietema [#4658](https://github.com/plone/volto/issues/4658)
5
+ - Changed control panel list to be fetched server-side not client-side
6
+ @JeffersonBledsoe [#3749](https://github.com/plone/volto/issues/3749)
11
7
 
12
8
  ### Bugfix
13
9
 
14
- - Added current page parameter to route in listing and search block pagination - Fix: #3868 @bipoza [#4159](https://github.com/plone/volto/issues/4159)
15
- - Fix regexp that checks valid URLs and improve tests [cekk] [#4601](https://github.com/plone/volto/issues/4601)
16
- - Fixed wrong localization on password reset page @iRohitSingh [#4656](https://github.com/plone/volto/issues/4656)
17
- - fix sitemap.xml.gz not is not compressed @dobri1408 [#4663](https://github.com/plone/volto/issues/4663)
10
+ - Apply suggestion from browser for password field @lord2anil [#3990](https://github.com/plone/volto/issues/3990)
11
+ - Open all accordion'd content in InlineForm by default, allow arbitrarily close any number of them. @sneridagh [#4178](https://github.com/plone/volto/issues/4178)
12
+ - Fix duplicating listing block by removing block uid from blocks data. @ksuess [#4234](https://github.com/plone/volto/issues/4234)
13
+ - The tabs for the add page was unresponsive on mobile devices. Fixed this by changing flex-wrap property. @sudhanshu1309 [#4506](https://github.com/plone/volto/issues/4506)
14
+ - (fix):Object.normaliseMail: Cannot read properties of null @dobri1408 [#4558](https://github.com/plone/volto/issues/4558)
15
+ - Update add-on control panel tranlsations: install -> activate. @ksuess [#4582](https://github.com/plone/volto/issues/4582)
16
+ - Fix robot.txt - the sitemap link should respect x-forwarded headers @reebalazs [#4638](https://github.com/plone/volto/issues/4638)
17
+ - Fix Move to top of folder ordering in folder content view by searching also @iFlameing [#4690](https://github.com/plone/volto/issues/4690)
18
+ - Fix faulty D&D elements in ObjectBrowserList widget @sneridagh [#4703](https://github.com/plone/volto/issues/4703)
19
+ - Fix fetching API paths with urlencoded characters in the querystring. @davisagli [#4718](https://github.com/plone/volto/issues/4718)
18
20
 
19
21
  ### Internal
20
22
 
21
- - Trigger CI workflows to run from external pull requests. @davisagli [#4629](https://github.com/plone/volto/issues/4629)
22
- - Update to p.restapi 8.36.0 and Plone 6.0.3 @sneridagh [#4682](https://github.com/plone/volto/issues/4682)
23
+ - Change conditional checking to optional chaining for a theme icon @nilootpal [#4567](https://github.com/plone/volto/issues/4567)
24
+ - Security upgrade for momentjs [#4715](https://github.com/plone/volto/issues/4715)
25
+ - Upgrade to Plone 6.0.4 @sneridagh [#4743](https://github.com/plone/volto/issues/4743)
23
26
 
24
27
  ### Documentation
25
28
 
26
- - Added `JavaScript` and `NodeJS` as accepted spellings, and deviations of them as rejected spellings. @utkkkarshhh [#3092](https://github.com/plone/volto/issues/3092)
27
- - Fix documentation build, add pins @sneridagh [#4626](https://github.com/plone/volto/issues/4626)
28
- - Update Volto contributing to align with and refer to the new Plone core code contributing requirements. @stevepiercy [#4634](https://github.com/plone/volto/issues/4634)
29
- - Improve creating views documentation page. @rboixaderg [#4636](https://github.com/plone/volto/issues/4636)
30
- - Razzle upgrade notice in upgrade guide @sneridagh [#4641](https://github.com/plone/volto/issues/4641)
31
- - Rename "Developer Guidelines" to "Contributing". @stevepiercy [#4666](https://github.com/plone/volto/issues/4666)
32
- - Fix broken link to `ReactJS.org`. @stevepiercy [#4667](https://github.com/plone/volto/issues/4667)
29
+ - Added documentation regarding the static middleware. @BhardwajAditya-github [#4518](https://github.com/plone/volto/issues/4518)
30
+ - Use new URL `6.docs.plone.org`. @stevepiercy [#4726](https://github.com/plone/volto/issues/4726)
31
+ - Synch stuff from `16.x.x` branch that should have been in `master` as well. @stevepiercy [#4728](https://github.com/plone/volto/issues/4728)
32
+ - Fix link in Volto, remove from linkcheck ignore in Documentation. @stevepiercy [#4742](https://github.com/plone/volto/issues/4742)
33
33
 
Binary file
package/CHANGELOG.md CHANGED
@@ -8,6 +8,54 @@
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 17.0.0-alpha.6 (2023-05-11)
12
+
13
+ ### Feature
14
+
15
+ - Changed control panel list to be fetched server-side not client-side
16
+ @JeffersonBledsoe [#3749](https://github.com/plone/volto/issues/3749)
17
+
18
+ ### Bugfix
19
+
20
+ - Apply suggestion from browser for password field @lord2anil [#3990](https://github.com/plone/volto/issues/3990)
21
+ - Open all accordion'd content in InlineForm by default, allow arbitrarily close any number of them. @sneridagh [#4178](https://github.com/plone/volto/issues/4178)
22
+ - Fix duplicating listing block by removing block uid from blocks data. @ksuess [#4234](https://github.com/plone/volto/issues/4234)
23
+ - The tabs for the add page was unresponsive on mobile devices. Fixed this by changing flex-wrap property. @sudhanshu1309 [#4506](https://github.com/plone/volto/issues/4506)
24
+ - (fix):Object.normaliseMail: Cannot read properties of null @dobri1408 [#4558](https://github.com/plone/volto/issues/4558)
25
+ - Update add-on control panel tranlsations: install -> activate. @ksuess [#4582](https://github.com/plone/volto/issues/4582)
26
+ - Fix robot.txt - the sitemap link should respect x-forwarded headers @reebalazs [#4638](https://github.com/plone/volto/issues/4638)
27
+ - Fix Move to top of folder ordering in folder content view by searching also @iFlameing [#4690](https://github.com/plone/volto/issues/4690)
28
+ - Fix faulty D&D elements in ObjectBrowserList widget @sneridagh [#4703](https://github.com/plone/volto/issues/4703)
29
+ - Fix fetching API paths with urlencoded characters in the querystring. @davisagli [#4718](https://github.com/plone/volto/issues/4718)
30
+
31
+ ### Internal
32
+
33
+ - Change conditional checking to optional chaining for a theme icon @nilootpal [#4567](https://github.com/plone/volto/issues/4567)
34
+ - Security upgrade for momentjs [#4715](https://github.com/plone/volto/issues/4715)
35
+ - Upgrade to Plone 6.0.4 @sneridagh [#4743](https://github.com/plone/volto/issues/4743)
36
+
37
+ ### Documentation
38
+
39
+ - Added documentation regarding the static middleware. @BhardwajAditya-github [#4518](https://github.com/plone/volto/issues/4518)
40
+ - Use new URL `6.docs.plone.org`. @stevepiercy [#4726](https://github.com/plone/volto/issues/4726)
41
+ - Synch stuff from `16.x.x` branch that should have been in `master` as well. @stevepiercy [#4728](https://github.com/plone/volto/issues/4728)
42
+ - Fix link in Volto, remove from linkcheck ignore in Documentation. @stevepiercy [#4742](https://github.com/plone/volto/issues/4742)
43
+
44
+
45
+ ## 17.0.0-alpha.5 (2023-04-14)
46
+
47
+ ### Bugfix
48
+
49
+ - Generate a split sitemap @reebalazs [#4638](https://github.com/plone/volto/issues/4638)
50
+ - Fix Move to top of folder ordering in folder content view @iFlameing [#4690](https://github.com/plone/volto/issues/4690)
51
+ - Revert "Add current page parameter to the route in the listing and search block pagination (#4159)" @sneridagh [#4695](https://github.com/plone/volto/issues/4695)
52
+ - Fix search block in edit mode re-queries multiple blocks with an empty search text @reebalazs [#4697](https://github.com/plone/volto/issues/4697)
53
+
54
+ ### Documentation
55
+
56
+ - Update links for 2022 Training archive. @stevepiercy [#4635](https://github.com/plone/volto/issues/4635)
57
+
58
+
11
59
  ## 17.0.0-alpha.4 (2023-04-12)
12
60
 
13
61
  ### Feature
@@ -146,6 +194,43 @@
146
194
  - Use a universal static path for both documentation and volto repos. @stevepiercy [#4376](https://github.com/plone/volto/issues/4376)
147
195
 
148
196
 
197
+ ## 16.20.4 (2023-04-20)
198
+
199
+ ### Bugfix
200
+
201
+ - Fix fetching API paths with urlencoded characters in the querystring. @davisagli [#4718](https://github.com/plone/volto/issues/4718)
202
+
203
+ ### Internal
204
+
205
+ - Security upgrade for momentjs [#4716](https://github.com/plone/volto/issues/4716)
206
+
207
+
208
+ ## 16.20.3 (2023-04-18)
209
+
210
+ ### Bugfix
211
+
212
+ - Revert inadvertently included files from another PR in #4710 @sneridagh [#4713](https://github.com/plone/volto/issues/4713)
213
+
214
+
215
+ ## 16.20.2 (2023-04-18)
216
+
217
+ ### Bugfix
218
+
219
+ - Fix robot.txt - the sitemap link should respect x-forwarded headers @reebalazs [#4638](https://github.com/plone/volto/issues/4638)
220
+ - Fix Move to top of folder ordering in folder content view by searching also @iFlameing [#4690](https://github.com/plone/volto/issues/4690)
221
+ - Fix faulty D&D elements in ObjectBrowserList widget @sneridagh [#4703](https://github.com/plone/volto/issues/4703)
222
+
223
+
224
+ ## 16.20.1 (2023-04-14)
225
+
226
+ ### Bugfix
227
+
228
+ - Generate a split sitemap @reebalazs [#4638](https://github.com/plone/volto/issues/4638)
229
+ - Fix Move to top of folder ordering in folder content view @iFlameing [#4690](https://github.com/plone/volto/issues/4690)
230
+ - Revert "Add current page parameter to the route in the listing and search block pagination (#4159)" @sneridagh [#4695](https://github.com/plone/volto/issues/4695)
231
+ - Fix search block in edit mode re-queries multiple blocks with an empty search text @reebalazs [#4697](https://github.com/plone/volto/issues/4697)
232
+
233
+
149
234
  ## 16.20.0 (2023-04-12)
150
235
 
151
236
  ### Feature
@@ -271,7 +356,7 @@
271
356
 
272
357
  ### Documentation
273
358
 
274
- - Complete teaser docs, add new section in `Blocks`: `Core Blocks developers notes` @sneridagh [#4461](https://github.com/plone/volto/issues/4461)
359
+ - Complete teaser docs, add new section in `Blocks`: `Core Blocks developers notes` @sneridagh [#4461](https://github.com/plone/volto/pull/4461)
275
360
 
276
361
 
277
362
  ## 16.14.0 (2023-03-03)
@@ -601,7 +686,7 @@
601
686
  - Enable the use of yarn 3 in the build by default @sneridagh
602
687
  - The `ContentsBreadcrumbs` component now renders the whole language name of the language root folder (if any) instead of just the `id` (before: `de`, now: `Deutsch`) @sneridagh
603
688
 
604
- See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more information.
689
+ See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
605
690
 
606
691
  ### Feature
607
692
 
@@ -1098,7 +1183,7 @@ See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more informa
1098
1183
  - Moved all sentry-related code from Volto to the `@plone-collective/volto-sentry` package. @tiberiuichim
1099
1184
  - The listing block icon has been improved to avoid confusion with the normal text list. @sneridagh
1100
1185
 
1101
- See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more information.
1186
+ See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
1102
1187
 
1103
1188
  ### Feature
1104
1189
 
@@ -1209,7 +1294,7 @@ See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more informa
1209
1294
 
1210
1295
  - Sentry integration is now lazy-loaded. The `sentryOptions` key from the `settings` registry becomes a callable that passes resolved sentry libraries. @tiberiuichim
1211
1296
 
1212
- See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more information.
1297
+ See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
1213
1298
 
1214
1299
  ### Feature
1215
1300
 
@@ -1273,7 +1358,7 @@ See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more informa
1273
1358
  - Upgrade to Razzle 4 @davisagli
1274
1359
  - Jest downgraded from 27 to 26 @davisagli
1275
1360
 
1276
- See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more information.
1361
+ See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
1277
1362
 
1278
1363
  ### Internal
1279
1364
 
@@ -1313,7 +1398,7 @@ See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more informa
1313
1398
  ### Breaking
1314
1399
 
1315
1400
  - `react-window` no longer a Volto dependency @sneridagh
1316
- See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more information.
1401
+ See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
1317
1402
 
1318
1403
  ### Bugfix
1319
1404
 
@@ -1352,7 +1437,7 @@ See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more informa
1352
1437
  ### Breaking
1353
1438
 
1354
1439
  - Move Layout constants to `config.views.layoutViewsNamesMapping`. Complete the list. i18n the list. Improve Display component. @sneridagh
1355
- See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more information.
1440
+ See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
1356
1441
 
1357
1442
  ### Feature
1358
1443
 
@@ -1398,7 +1483,7 @@ Undo html_static_path configuration in `plone/documentation`, and restore image
1398
1483
  ### Breaking
1399
1484
 
1400
1485
  - Main workflow change menu changed from Pastanaga UI simplification to classic Plone implementation. @sneridagh
1401
- See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more information.
1486
+ See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
1402
1487
 
1403
1488
  ### Feature
1404
1489
 
@@ -1494,7 +1579,7 @@ Undo html_static_path configuration in `plone/documentation`, and restore image
1494
1579
  - change password-reset url to be consistent with Plone configuration @erral
1495
1580
  - Simplify over the existing Component Registry API. The `component` key has been flattened for simplification and now it's mapped directly to the `component` argument of `registerComponent`. @sneridagh
1496
1581
 
1497
- See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more information.
1582
+ See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
1498
1583
 
1499
1584
  ### Feature
1500
1585
 
@@ -2072,14 +2157,14 @@ Use next release instead: https://github.com/plone/volto/releases/tag/16.0.0-alp
2072
2157
  ### Breaking
2073
2158
 
2074
2159
  - Upgrade `react-cookie` to the latest version. @sneridagh @robgietema
2075
- See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more information.
2160
+ See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
2076
2161
  - Language Switcher no longer takes care of the change of the language on the Redux Store. This responsibility has been unified in the API Redux middleware @sneridagh
2077
2162
  - Markup change in `LinkView` component.
2078
2163
  - Rename `core-sandbox` to `coresandbox` for sake of consistency @sneridagh
2079
2164
  - Extend the original intent and rename `RAZZLE_TESTING_ADDONS` to `ADDONS`. @sneridagh
2080
- See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more information.
2165
+ See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
2081
2166
  - Lazyload Draft.js library. See the upgrade guide on how that impacts you, in case you have extended the rich text editor configuration @tiberiuichim @kreafox
2082
- See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more information.
2167
+ See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
2083
2168
  - Deprecating `lang` cookie in favor of Plone official one `I18N_LANGUAGE` @sneridagh
2084
2169
 
2085
2170
  ### Feature
@@ -5025,7 +5110,7 @@ https://6.docs.plone.org/volto/upgrade-guide/index.html
5025
5110
  - Added item type as a tooltip in contents @nzambello
5026
5111
  - Added Italian translations and translated array, token and select widget. @giuliaghisini
5027
5112
  - Added uploading image preview in FileWidget @iFlameing
5028
- - Allow custom express middleware declared with `settings.expressMiddleware`. See [Custom Express middleware](https://6.dev-docs.plone.org/volto/recipes/express.html) @tiberiuichim
5113
+ - Allow custom express middleware declared with `settings.expressMiddleware`. See [Custom Express middleware](https://6.docs.plone.org/volto/recipes/express.html) @tiberiuichim
5029
5114
 
5030
5115
  ### Bugfix
5031
5116
 
package/CONTRIBUTING.md CHANGED
@@ -1,3 +1,3 @@
1
1
  # Contributing to Volto
2
2
 
3
- See [Contributing to Volto](https://6.dev-docs.plone.org/volto/developer-guidelines/contributing.html).
3
+ See [Contributing to Volto](https://6.docs.plone.org/volto/developer-guidelines/contributing.html).
package/README.md CHANGED
@@ -182,23 +182,20 @@ Please create a new [issue](https://github.com/plone/volto/issues/new) or [pull
182
182
 
183
183
  ## Documentation
184
184
 
185
- You can find the latest (in-progress) documentation in [https://6.dev-docs.plone.org/](https://6.dev-docs.plone.org/volto/index.html)
185
+ You can find the latest (in-progress) documentation in [https://6.docs.plone.org/](https://6.docs.plone.org/volto/index.html)
186
186
 
187
187
  ## Training
188
188
 
189
- On the [Plone Trainings Website](https://training.plone.org) you'll find
190
- Volto-dedicated open training materials, plus React and other
191
- JavaScript-centered trainings.
189
+ On the [Plone Training website](https://training.plone.org), you'll find Volto-dedicated training materials, plus other JavaScript-centered trainings.
192
190
 
193
191
  - [Mastering Plone 6 Development](https://training.plone.org/mastering-plone/)
194
192
  The comprehensive training on Plone 6 with best practice tips for developers and integrators.
195
- - [Volto](https://training.plone.org/5/volto/index.html)
196
- A detailed training on how to create your own website using Volto frontend.
197
193
  - [Volto Hands-On](https://training.plone.org/voltohandson/index.html)
198
194
  - [Volto Add-ons Development](https://training.plone.org/voltoaddons/index.html)
199
- - [Plone Deployment](https://training.plone.org/5/plone-deployment/index.html)
200
- - [React](https://training.plone.org/react/index.html)
201
- - [JavaScript For Plone Developers](https://training.plone.org/5/javascript/index.html)
195
+ - [Effective Volto](https://training.plone.org/effective-volto/index.html)
196
+ - [Plone Deployment](https://training.plone.org/plone-deployment/index.html)
197
+ - [Volto](https://2022.training.plone.org/volto/index.html) (archived)
198
+ - [JavaScript For Plone Developers](https://2022.training.plone.org/javascript/index.html) (archived)
202
199
 
203
200
  ## Talks
204
201
 
@@ -245,7 +242,7 @@ We do not guarantee that deprecated browsers (e.g., Internet Explorer 11) are su
245
242
 
246
243
  ## Upgrades
247
244
 
248
- You can find the upgrade guide here: https://6.dev-docs.plone.org/volto/upgrade-guide/index.html
245
+ You can find the upgrade guide here: https://6.docs.plone.org/volto/upgrade-guide/index.html
249
246
 
250
247
  ## Volto Development
251
248
 
@@ -320,11 +317,11 @@ yarn test
320
317
 
321
318
  Here you can find a guide on how acceptance testing is done in Volto:
322
319
 
323
- https://6.dev-docs.plone.org/volto/developer-guidelines/acceptance-tests.html
320
+ https://6.docs.plone.org/volto/developer-guidelines/acceptance-tests.html
324
321
 
325
322
  ## Translations
326
323
 
327
- If you would like contribute to translate Volto into several languages, please, read the [Internationalization (i18n) guide](https://6.dev-docs.plone.org/volto/recipes/i18n.html).
324
+ If you would like contribute to translate Volto into several languages, please, read the [Internationalization (i18n) guide](https://6.docs.plone.org/volto/recipes/i18n.html).
328
325
 
329
326
  ## Contributors
330
327
 
@@ -60,7 +60,7 @@ msgstr "Aktionen"
60
60
  #: components/manage/Controlpanels/AddonsControlpanel
61
61
  # defaultMessage: Activate and deactivate add-ons in the lists below.
62
62
  msgid "Activate and deactivate"
63
- msgstr "Aktiviern und Deaktivieren"
63
+ msgstr "Aktivieren und Deaktivieren"
64
64
 
65
65
  #: components/manage/Rules/Rules
66
66
  # defaultMessage: Active
@@ -92,7 +92,7 @@ msgstr "Hinzufügen"
92
92
  #: components/manage/Controlpanels/AddonsControlpanel
93
93
  # defaultMessage: To make new add-ons show up here, add them to your configuration, build, and restart the server process. For detailed instructions see
94
94
  msgid "Add Addons"
95
- msgstr "Add-on hinzufügen"
95
+ msgstr "Hier werden verfügbare und installierte Backend-Add-ons gezeigt. Informationen wie Weitere hinzugefügt werden können, finden sich hier:"
96
96
 
97
97
  #: components/manage/Toolbar/Types
98
98
  # defaultMessage: Add Content…
@@ -232,7 +232,7 @@ msgstr "Erweiterungen"
232
232
  #: components/manage/Controlpanels/AddonsControlpanel
233
233
  # defaultMessage: Add-ons Settings
234
234
  msgid "Add-ons Settings"
235
- msgstr "Einstellungen Add-ons"
235
+ msgstr "Add-ons"
236
236
 
237
237
  #: components/manage/Rules/Rules
238
238
  # defaultMessage: Added
@@ -247,12 +247,12 @@ msgstr "Zusätzliches Datum"
247
247
  #: components/manage/Controlpanels/AddonsControlpanel
248
248
  # defaultMessage: Addon could not be installed
249
249
  msgid "Addon could not be installed"
250
- msgstr "Erweiterung konnte nicht installiert werden"
250
+ msgstr "Erweiterung konnte nicht aktiviert werden"
251
251
 
252
252
  #: components/manage/Controlpanels/AddonsControlpanel
253
253
  # defaultMessage: Addon could not be uninstalled
254
254
  msgid "Addon could not be uninstalled"
255
- msgstr "Erweiterung konnte nicht deinstalliert werden"
255
+ msgstr "Erweiterung konnte nicht deaktiviert werden"
256
256
 
257
257
  #: components/manage/Controlpanels/AddonsControlpanel
258
258
  # defaultMessage: Addon could not be upgraded
@@ -262,12 +262,12 @@ msgstr "Erweiterung konnte nicht aktualisiert werden"
262
262
  #: components/manage/Controlpanels/AddonsControlpanel
263
263
  # defaultMessage: Addon installed succesfuly
264
264
  msgid "Addon installed succesfuly"
265
- msgstr "Erweiterungen erfolgreich installiert"
265
+ msgstr "Erweiterungen erfolgreich aktiviert"
266
266
 
267
267
  #: components/manage/Controlpanels/AddonsControlpanel
268
268
  # defaultMessage: Addon uninstalled succesfuly
269
269
  msgid "Addon uninstalled succesfuly"
270
- msgstr "Erweiterung erfolgreich deinstalliert"
270
+ msgstr "Erweiterung erfolgreich deaktiviert"
271
271
 
272
272
  #: components/manage/Controlpanels/AddonsControlpanel
273
273
  # defaultMessage: Addon upgraded succesfuly
@@ -1693,22 +1693,22 @@ msgstr "Zeile davor einfügen"
1693
1693
  #: components/manage/Controlpanels/AddonsControlpanel
1694
1694
  # defaultMessage: Install
1695
1695
  msgid "Install"
1696
- msgstr "Installieren"
1696
+ msgstr "aktivieren"
1697
1697
 
1698
1698
  #: components/manage/Controlpanels/AddonsControlpanel
1699
1699
  # defaultMessage: Installed
1700
1700
  msgid "Installed"
1701
- msgstr "Installiert"
1701
+ msgstr "aktiviert"
1702
1702
 
1703
1703
  #: components/manage/Controlpanels/AddonsControlpanel
1704
1704
  # defaultMessage: Installed version
1705
1705
  msgid "Installed version"
1706
- msgstr "Installierte Version"
1706
+ msgstr "Aktivierte Version"
1707
1707
 
1708
1708
  #: components/manage/Controlpanels/AddonsControlpanel
1709
1709
  # defaultMessage: Installing a third party add-on
1710
1710
  msgid "Installing a third party add-on"
1711
- msgstr "Eine Erweiterung installieren"
1711
+ msgstr "Eine Erweiterung aktivieren"
1712
1712
 
1713
1713
  #: components/manage/Widgets/RecurrenceWidget/RecurrenceWidget
1714
1714
  # defaultMessage: days
@@ -1831,7 +1831,7 @@ msgstr "Letzte verfügbare Konfiguration"
1831
1831
  #: components/manage/Controlpanels/AddonsControlpanel
1832
1832
  # defaultMessage: Latest version
1833
1833
  msgid "Latest version"
1834
- msgstr "Letzte Version"
1834
+ msgstr "Verfügbare Version"
1835
1835
 
1836
1836
  #: components/manage/Controlpanels/ContentTypesActions
1837
1837
  # defaultMessage: Layout
@@ -2243,7 +2243,7 @@ msgstr "Keine Auswahl"
2243
2243
  #: components/manage/Controlpanels/AddonsControlpanel
2244
2244
  # defaultMessage: This addon does not provide an uninstall profile.
2245
2245
  msgid "No uninstall profile"
2246
- msgstr "Kein Deinstallationsprofil"
2246
+ msgstr "Kein Deaktivierungsprofil"
2247
2247
 
2248
2248
  #: helpers/MessageLabels/MessageLabels
2249
2249
  # defaultMessage: No user found
@@ -3626,7 +3626,7 @@ msgstr "Vereinigt"
3626
3626
  #: components/manage/Controlpanels/AddonsControlpanel
3627
3627
  # defaultMessage: Uninstall
3628
3628
  msgid "Uninstall"
3629
- msgstr "Deinstallieren"
3629
+ msgstr "deaktivieren"
3630
3630
 
3631
3631
  #: components/manage/Blocks/Block/DefaultView
3632
3632
  #: components/manage/Blocks/Block/Edit
@@ -3658,12 +3658,12 @@ msgstr "Update"
3658
3658
  #: components/manage/Controlpanels/AddonsControlpanel
3659
3659
  # defaultMessage: Update installed addons
3660
3660
  msgid "Update installed addons"
3661
- msgstr "Installierte Erweiterungen aktualisieren"
3661
+ msgstr "Aktivierte Erweiterungen aktualisieren"
3662
3662
 
3663
3663
  #: components/manage/Controlpanels/AddonsControlpanel
3664
3664
  # defaultMessage: Update installed addons:
3665
3665
  msgid "Update installed addons:"
3666
- msgstr "Installierte Erweiterungen:"
3666
+ msgstr "Aktivierte Erweiterungen:"
3667
3667
 
3668
3668
  #: components/manage/Controlpanels/AddonsControlpanel
3669
3669
  # defaultMessage: Updates available
@@ -4531,7 +4531,7 @@ msgstr "Toggle"
4531
4531
  #: components/manage/Controlpanels/AddonsControlpanel
4532
4532
  # defaultMessage: Update from version {origin} to {destination}
4533
4533
  msgid "upgradeVersions"
4534
- msgstr "Aktualisieren von Version {origin} zu Version {destination}"
4534
+ msgstr "Von Version {origin} zu Version {destination} aktualisieren"
4535
4535
 
4536
4536
  #: helpers/MessageLabels/MessageLabels
4537
4537
  # defaultMessage: Input must be valid url (www.something.com or http(s)://www.something.com)