@plone/volto 17.0.0-alpha.5 → 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 (31) hide show
  1. package/.changelog.draft +26 -6
  2. package/.yarn/install-state.gz +0 -0
  3. package/CHANGELOG.md +84 -13
  4. package/CONTRIBUTING.md +1 -1
  5. package/README.md +4 -4
  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/getAsyncData.js +10 -2
  12. package/src/components/manage/Blocks/Listing/withQuerystringResults.jsx +18 -13
  13. package/src/components/manage/Blocks/Search/SearchBlockView.jsx +2 -1
  14. package/src/components/manage/Contents/Contents.jsx +16 -14
  15. package/src/components/manage/Controlpanels/Controlpanels.jsx +190 -224
  16. package/src/components/manage/Controlpanels/Controlpanels.test.jsx +46 -7
  17. package/src/components/manage/Form/InlineForm.jsx +39 -9
  18. package/src/components/manage/Form/InlineFormState.js +8 -0
  19. package/src/components/manage/Widgets/ObjectListWidget.jsx +3 -8
  20. package/src/components/theme/Icon/Icon.jsx +2 -2
  21. package/src/components/theme/Login/Login.jsx +1 -0
  22. package/src/config/index.js +1 -0
  23. package/src/helpers/Robots/Robots.js +16 -1
  24. package/src/helpers/Url/Url.js +8 -3
  25. package/src/helpers/Url/Url.test.js +14 -0
  26. package/src/helpers/Utils/Utils.js +17 -4
  27. package/src/helpers/index.js +2 -0
  28. package/src/middleware/Api.test.js +54 -0
  29. package/src/middleware/api.js +1 -1
  30. package/test-setup-config.js +1 -0
  31. package/theme/themes/pastanaga/extras/sidebar.less +4 -0
package/.changelog.draft CHANGED
@@ -1,13 +1,33 @@
1
- ## 17.0.0-alpha.5 (2023-04-14)
1
+ ## 17.0.0-alpha.6 (2023-05-11)
2
+
3
+ ### Feature
4
+
5
+ - Changed control panel list to be fetched server-side not client-side
6
+ @JeffersonBledsoe [#3749](https://github.com/plone/volto/issues/3749)
2
7
 
3
8
  ### Bugfix
4
9
 
5
- - Generate a split sitemap @reebalazs [#4638](https://github.com/plone/volto/issues/4638)
6
- - Fix Move to top of folder ordering in folder content view @iFlameing [#4690](https://github.com/plone/volto/issues/4690)
7
- - 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)
8
- - Fix search block in edit mode re-queries multiple blocks with an empty search text @reebalazs [#4697](https://github.com/plone/volto/issues/4697)
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)
20
+
21
+ ### Internal
22
+
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)
9
26
 
10
27
  ### Documentation
11
28
 
12
- - Update links for 2022 Training archive. @stevepiercy [#4635](https://github.com/plone/volto/issues/4635)
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)
13
33
 
Binary file
package/CHANGELOG.md CHANGED
@@ -8,6 +8,40 @@
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
+
11
45
  ## 17.0.0-alpha.5 (2023-04-14)
12
46
 
13
47
  ### Bugfix
@@ -160,6 +194,43 @@
160
194
  - Use a universal static path for both documentation and volto repos. @stevepiercy [#4376](https://github.com/plone/volto/issues/4376)
161
195
 
162
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
+
163
234
  ## 16.20.0 (2023-04-12)
164
235
 
165
236
  ### Feature
@@ -285,7 +356,7 @@
285
356
 
286
357
  ### Documentation
287
358
 
288
- - 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)
289
360
 
290
361
 
291
362
  ## 16.14.0 (2023-03-03)
@@ -615,7 +686,7 @@
615
686
  - Enable the use of yarn 3 in the build by default @sneridagh
616
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
617
688
 
618
- 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.
619
690
 
620
691
  ### Feature
621
692
 
@@ -1112,7 +1183,7 @@ See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more informa
1112
1183
  - Moved all sentry-related code from Volto to the `@plone-collective/volto-sentry` package. @tiberiuichim
1113
1184
  - The listing block icon has been improved to avoid confusion with the normal text list. @sneridagh
1114
1185
 
1115
- 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.
1116
1187
 
1117
1188
  ### Feature
1118
1189
 
@@ -1223,7 +1294,7 @@ See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more informa
1223
1294
 
1224
1295
  - Sentry integration is now lazy-loaded. The `sentryOptions` key from the `settings` registry becomes a callable that passes resolved sentry libraries. @tiberiuichim
1225
1296
 
1226
- 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.
1227
1298
 
1228
1299
  ### Feature
1229
1300
 
@@ -1287,7 +1358,7 @@ See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more informa
1287
1358
  - Upgrade to Razzle 4 @davisagli
1288
1359
  - Jest downgraded from 27 to 26 @davisagli
1289
1360
 
1290
- 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.
1291
1362
 
1292
1363
  ### Internal
1293
1364
 
@@ -1327,7 +1398,7 @@ See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more informa
1327
1398
  ### Breaking
1328
1399
 
1329
1400
  - `react-window` no longer a Volto dependency @sneridagh
1330
- 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.
1331
1402
 
1332
1403
  ### Bugfix
1333
1404
 
@@ -1366,7 +1437,7 @@ See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more informa
1366
1437
  ### Breaking
1367
1438
 
1368
1439
  - Move Layout constants to `config.views.layoutViewsNamesMapping`. Complete the list. i18n the list. Improve Display component. @sneridagh
1369
- 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.
1370
1441
 
1371
1442
  ### Feature
1372
1443
 
@@ -1412,7 +1483,7 @@ Undo html_static_path configuration in `plone/documentation`, and restore image
1412
1483
  ### Breaking
1413
1484
 
1414
1485
  - Main workflow change menu changed from Pastanaga UI simplification to classic Plone implementation. @sneridagh
1415
- 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.
1416
1487
 
1417
1488
  ### Feature
1418
1489
 
@@ -1508,7 +1579,7 @@ Undo html_static_path configuration in `plone/documentation`, and restore image
1508
1579
  - change password-reset url to be consistent with Plone configuration @erral
1509
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
1510
1581
 
1511
- 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.
1512
1583
 
1513
1584
  ### Feature
1514
1585
 
@@ -2086,14 +2157,14 @@ Use next release instead: https://github.com/plone/volto/releases/tag/16.0.0-alp
2086
2157
  ### Breaking
2087
2158
 
2088
2159
  - Upgrade `react-cookie` to the latest version. @sneridagh @robgietema
2089
- 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.
2090
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
2091
2162
  - Markup change in `LinkView` component.
2092
2163
  - Rename `core-sandbox` to `coresandbox` for sake of consistency @sneridagh
2093
2164
  - Extend the original intent and rename `RAZZLE_TESTING_ADDONS` to `ADDONS`. @sneridagh
2094
- 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.
2095
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
2096
- 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.
2097
2168
  - Deprecating `lang` cookie in favor of Plone official one `I18N_LANGUAGE` @sneridagh
2098
2169
 
2099
2170
  ### Feature
@@ -5039,7 +5110,7 @@ https://6.docs.plone.org/volto/upgrade-guide/index.html
5039
5110
  - Added item type as a tooltip in contents @nzambello
5040
5111
  - Added Italian translations and translated array, token and select widget. @giuliaghisini
5041
5112
  - Added uploading image preview in FileWidget @iFlameing
5042
- - 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
5043
5114
 
5044
5115
  ### Bugfix
5045
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,7 +182,7 @@ 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
 
@@ -242,7 +242,7 @@ We do not guarantee that deprecated browsers (e.g., Internet Explorer 11) are su
242
242
 
243
243
  ## Upgrades
244
244
 
245
- 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
246
246
 
247
247
  ## Volto Development
248
248
 
@@ -317,11 +317,11 @@ yarn test
317
317
 
318
318
  Here you can find a guide on how acceptance testing is done in Volto:
319
319
 
320
- https://6.dev-docs.plone.org/volto/developer-guidelines/acceptance-tests.html
320
+ https://6.docs.plone.org/volto/developer-guidelines/acceptance-tests.html
321
321
 
322
322
  ## Translations
323
323
 
324
- 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).
325
325
 
326
326
  ## Contributors
327
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)