@plone/volto 16.2.0 → 16.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.changelog.draft +32 -0
- package/.yarn/install-state.gz +0 -0
- package/CHANGELOG.md +42 -1
- package/README.md +0 -31
- package/RELEASING.md +73 -0
- package/locales/es/LC_MESSAGES/volto.po +28 -28
- package/locales/es.json +1 -1
- package/locales/eu/LC_MESSAGES/volto.po +110 -110
- package/locales/eu.json +1 -1
- package/news/.gitkeep +0 -0
- package/package.json +5 -5
- package/packages/volto-slate/package.json +2 -2
- package/packages/volto-slate/src/editor/config.jsx +3 -0
- package/packages/volto-slate/src/utils/blocks.js +31 -0
- package/src/components/manage/Controlpanels/Groups/GroupsControlpanel.jsx +5 -2
- package/src/components/manage/Controlpanels/Users/UsersControlpanel.jsx +8 -3
- package/src/components/theme/View/DefaultView.jsx +11 -3
- package/src/config/index.js +0 -1
- package/src/registry.js +0 -8
- package/towncrier.toml +33 -0
package/.changelog.draft
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
## 16.3.0 (2022-12-05)
|
|
2
|
+
|
|
3
|
+
### Feature
|
|
4
|
+
|
|
5
|
+
- Add towncrier support. Create RELEASING.md and move and update Releasing section from README.md into it. @sneridagh @stevepiercy [#3985](https://github.com/plone/volto/issues/3985)
|
|
6
|
+
- Translation of roles in user and group control panel. Fix https://github.com/plone/volto/issues/4002 @wesleybl [#4002](https://github.com/plone/volto/issues/4002)
|
|
7
|
+
- Use the component registry for `Container` component in DefaultView @sneridagh [#4032](https://github.com/plone/volto/issues/4032)
|
|
8
|
+
|
|
9
|
+
### Bugfix
|
|
10
|
+
|
|
11
|
+
- Fix GitHub release notes in new Towncrier release config @sneridagh [#3989](https://github.com/plone/volto/issues/3989)
|
|
12
|
+
- Clear error message when canceling user add. Fix https://github.com/plone/volto/issues/4006 @wesleybl [#4006](https://github.com/plone/volto/issues/4006)
|
|
13
|
+
- Fix subscript and supscript active at same time. @iFlameing [#4011](https://github.com/plone/volto/issues/4011)
|
|
14
|
+
- Complete eu translation
|
|
15
|
+
[erral] [#4015](https://github.com/plone/volto/issues/4015)
|
|
16
|
+
- Complete es translation
|
|
17
|
+
[erral] [#4016](https://github.com/plone/volto/issues/4016)
|
|
18
|
+
- Add `cypress.config.js` to generator templates @sneridagh [#4021](https://github.com/plone/volto/issues/4021)
|
|
19
|
+
- Bump Volto core packages with the current Volto version on Volto release @sneridagh [#4025](https://github.com/plone/volto/issues/4025)
|
|
20
|
+
|
|
21
|
+
### Internal
|
|
22
|
+
|
|
23
|
+
- Remove unused dangling root appExtras from configuration registry @sneridagh [#4024](https://github.com/plone/volto/issues/4024)
|
|
24
|
+
|
|
25
|
+
### Documentation
|
|
26
|
+
|
|
27
|
+
- Rewrite "Upgraded core to use Cypress 11" section. @stevepiercy [#3979](https://github.com/plone/volto/issues/3979)
|
|
28
|
+
- Include `CHANGELOG.md` at the correct path, depending on context of entire Plone 6 documentation or only Volto documentation. @stevepiercy [#3992](https://github.com/plone/volto/issues/3992)
|
|
29
|
+
- Close the open Glossary list. @stevepiercy [#3995](https://github.com/plone/volto/issues/3995)
|
|
30
|
+
- Added docs for proper usage of draftjs for richtext widgets. @pnicolli [#4001](https://github.com/plone/volto/issues/4001)
|
|
31
|
+
- Document how to change the base font and the font for headings. Describe how to host the font. @ksuess [#4013](https://github.com/plone/volto/issues/4013)
|
|
32
|
+
|
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
<!-- You should *NOT* be adding new change log entries to this file.
|
|
4
|
+
You should create a file in the news directory instead.
|
|
5
|
+
For helpful instructions, please see:
|
|
6
|
+
https://6.dev-docs.plone.org/volto/developer-guidelines/contributing.html#create-a-pull-request
|
|
7
|
+
-->
|
|
8
|
+
|
|
9
|
+
<!-- towncrier release notes start -->
|
|
10
|
+
|
|
11
|
+
## 16.3.0 (2022-12-05)
|
|
12
|
+
|
|
13
|
+
### Feature
|
|
14
|
+
|
|
15
|
+
- Add towncrier support. Create RELEASING.md and move and update Releasing section from README.md into it. @sneridagh @stevepiercy [#3985](https://github.com/plone/volto/issues/3985)
|
|
16
|
+
- Translation of roles in user and group control panel. Fix https://github.com/plone/volto/issues/4002 @wesleybl [#4002](https://github.com/plone/volto/issues/4002)
|
|
17
|
+
- Use the component registry for `Container` component in DefaultView @sneridagh [#4032](https://github.com/plone/volto/issues/4032)
|
|
18
|
+
|
|
19
|
+
### Bugfix
|
|
20
|
+
|
|
21
|
+
- Fix GitHub release notes in new Towncrier release config @sneridagh [#3989](https://github.com/plone/volto/issues/3989)
|
|
22
|
+
- Clear error message when canceling user add. Fix https://github.com/plone/volto/issues/4006 @wesleybl [#4006](https://github.com/plone/volto/issues/4006)
|
|
23
|
+
- Fix subscript and supscript active at same time. @iFlameing [#4011](https://github.com/plone/volto/issues/4011)
|
|
24
|
+
- Complete eu translation
|
|
25
|
+
[erral] [#4015](https://github.com/plone/volto/issues/4015)
|
|
26
|
+
- Complete es translation
|
|
27
|
+
[erral] [#4016](https://github.com/plone/volto/issues/4016)
|
|
28
|
+
- Add `cypress.config.js` to generator templates @sneridagh [#4021](https://github.com/plone/volto/issues/4021)
|
|
29
|
+
- Bump Volto core packages with the current Volto version on Volto release @sneridagh [#4025](https://github.com/plone/volto/issues/4025)
|
|
30
|
+
|
|
31
|
+
### Internal
|
|
32
|
+
|
|
33
|
+
- Remove unused dangling root appExtras from configuration registry @sneridagh [#4024](https://github.com/plone/volto/issues/4024)
|
|
34
|
+
|
|
35
|
+
### Documentation
|
|
36
|
+
|
|
37
|
+
- Rewrite "Upgraded core to use Cypress 11" section. @stevepiercy [#3979](https://github.com/plone/volto/issues/3979)
|
|
38
|
+
- Include `CHANGELOG.md` at the correct path, depending on context of entire Plone 6 documentation or only Volto documentation. @stevepiercy [#3992](https://github.com/plone/volto/issues/3992)
|
|
39
|
+
- Close the open Glossary list. @stevepiercy [#3995](https://github.com/plone/volto/issues/3995)
|
|
40
|
+
- Added docs for proper usage of draftjs for richtext widgets. @pnicolli [#4001](https://github.com/plone/volto/issues/4001)
|
|
41
|
+
- Document how to change the base font and the font for headings. Describe how to host the font. @ksuess [#4013](https://github.com/plone/volto/issues/4013)
|
|
42
|
+
|
|
43
|
+
|
|
3
44
|
## 16.2.0 (2022-11-25)
|
|
4
45
|
|
|
5
46
|
### Feature
|
|
@@ -4488,7 +4529,7 @@ https://docs.voltocms.com/upgrade-guide/
|
|
|
4488
4529
|
- Added item type as a tooltip in contents @nzambello
|
|
4489
4530
|
- Added Italian translations and translated array, token and select widget. @giuliaghisini
|
|
4490
4531
|
- Added uploading image preview in FileWidget @iFlameing
|
|
4491
|
-
- Allow custom express middleware declared with `settings.expressMiddleware`. See [
|
|
4532
|
+
- Allow custom express middleware declared with `settings.expressMiddleware`. See [Custom Express middleware](https://6.dev-docs.plone.org/volto/recipes/express.html) @tiberiuichim
|
|
4492
4533
|
|
|
4493
4534
|
### Bugfix
|
|
4494
4535
|
|
package/README.md
CHANGED
|
@@ -314,37 +314,6 @@ Browse to [http://localhost:3000](http://localhost:3000) in your browser.
|
|
|
314
314
|
yarn test
|
|
315
315
|
```
|
|
316
316
|
|
|
317
|
-
### Releasing
|
|
318
|
-
|
|
319
|
-
For ease the release process, we use `release-it` utility that helps with the process.
|
|
320
|
-
|
|
321
|
-
https://www.npmjs.com/package/release-it
|
|
322
|
-
|
|
323
|
-
For using it and start a release you need to fulfill the requirements:
|
|
324
|
-
|
|
325
|
-
- Have permissions to push on master branch
|
|
326
|
-
- Have permissions on the @plone org on npmjs.com
|
|
327
|
-
- Have a environment variable (`GITHUB_TOKEN`) with a GitHub personal token with permissions to
|
|
328
|
-
write the Volto Release page on GitHub (https://www.npmjs.com/package/release-it#github-releases)
|
|
329
|
-
|
|
330
|
-
Then the command for release:
|
|
331
|
-
|
|
332
|
-
```shell
|
|
333
|
-
yarn release
|
|
334
|
-
```
|
|
335
|
-
|
|
336
|
-
a dry-release command for testing the output is also available:
|
|
337
|
-
|
|
338
|
-
```shell
|
|
339
|
-
yarn dry-release
|
|
340
|
-
```
|
|
341
|
-
|
|
342
|
-
and alpha release can also be cut using:
|
|
343
|
-
|
|
344
|
-
```shell
|
|
345
|
-
yarn release-alpha
|
|
346
|
-
```
|
|
347
|
-
|
|
348
317
|
## Acceptance testing
|
|
349
318
|
|
|
350
319
|
Here you can find a guide on how acceptance testing is done in Volto:
|
package/RELEASING.md
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# Releasing
|
|
2
|
+
|
|
3
|
+
To ease the release process, we use the utility [`release-it`](https://www.npmjs.com/package/release-it) which helps with the process, and [`towncrier`](https://towncrier.readthedocs.io) for creating and maintaining change logs.
|
|
4
|
+
|
|
5
|
+
## Release requirements
|
|
6
|
+
|
|
7
|
+
To start a release, you must fulfill the following requirements:
|
|
8
|
+
|
|
9
|
+
- Have permission to push to `master` branch
|
|
10
|
+
- Have permission on the [`@plone` organization on npm](https://www.npmjs.com/org/plone).
|
|
11
|
+
- Have an environment variable `GITHUB_TOKEN` with a GitHub personal token with permissions to write to the [Volto Release page on GitHub](https://github.com/plone/volto/releases).
|
|
12
|
+
- Install [`pipx`](https://pypa.github.io/pipx/) in your system.
|
|
13
|
+
|
|
14
|
+
To request these permissions, on GitHub tag `@plone/release-team`, or in Discord post to the [`release-team` channel](https://discord.com/channels/786421998426521600/897549410521714760).
|
|
15
|
+
|
|
16
|
+
### Permission to push to `master` branch
|
|
17
|
+
|
|
18
|
+
The release process involves pushing directly to the `master` branch.
|
|
19
|
+
Volto's `master` branch is protected, so the releaser needs to have permission for pushing to it.
|
|
20
|
+
At the moment of this writing, members of the GitHub group `@plone/volto-team` have permission to push to `master`.
|
|
21
|
+
|
|
22
|
+
### Permission to release Volto to npm registry
|
|
23
|
+
|
|
24
|
+
We push Volto's releases to the npm registry.
|
|
25
|
+
The releaser has to have permissions for pushing a release in the [`@plone` organization on npm](https://www.npmjs.com/org/plone).
|
|
26
|
+
Only the current Owners of this organization can grant permissions to the releaser.
|
|
27
|
+
|
|
28
|
+
### Have a GitHub personal token with permissions to write the Volto's Releases
|
|
29
|
+
|
|
30
|
+
The `release-it` library takes care of creating and pushing a GitHub Release for each release.
|
|
31
|
+
It requires you to get a GitHub personal token with permission to write to the Volto's Releases.
|
|
32
|
+
This can be acquired in your GitHub profile page.
|
|
33
|
+
When making a release, export the environment variable `GITHUB_TOKEN` in your shell session.
|
|
34
|
+
|
|
35
|
+
```shell
|
|
36
|
+
export GITHUB_TOKEN="my_looooong_github_token"
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
See `release-it` documentation of [GitHub releases](https://www.npmjs.com/package/release-it#github-releases) and GitHub documentation [About releases](https://docs.github.com/en/repositories/releasing-projects-on-github/about-releases).
|
|
40
|
+
|
|
41
|
+
### Install `pipx` in your system
|
|
42
|
+
|
|
43
|
+
The release process calls `towncrier`.
|
|
44
|
+
It is a Python library that uses the Python utility `pipx`.
|
|
45
|
+
This utility allows you to call and execute Python modules without installing them as a prerequisite in your system.
|
|
46
|
+
It works similar to the NodeJS `npx` utility.
|
|
47
|
+
On macOS, you can install `pipx` into your system:
|
|
48
|
+
|
|
49
|
+
```shell
|
|
50
|
+
brew install pipx
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Or follow detailed instructions in the `pipx` documentation for [Installation](https://pypa.github.io/pipx/installation/).
|
|
54
|
+
|
|
55
|
+
## Running the release process
|
|
56
|
+
|
|
57
|
+
These are the commands to make a Volto release:
|
|
58
|
+
|
|
59
|
+
```shell
|
|
60
|
+
yarn release
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
A dry-release command for testing the output is also available:
|
|
64
|
+
|
|
65
|
+
```shell
|
|
66
|
+
yarn dry-release
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
An alpha release can be cut using:
|
|
70
|
+
|
|
71
|
+
```shell
|
|
72
|
+
yarn release-alpha
|
|
73
|
+
```
|
|
@@ -7,7 +7,7 @@ msgstr ""
|
|
|
7
7
|
"Project-Id-Version: Plone\n"
|
|
8
8
|
"Report-Msgid-Bugs-To: \n"
|
|
9
9
|
"POT-Creation-Date: 2019-12-03 03:20-0400\n"
|
|
10
|
-
"PO-Revision-Date: 2022-
|
|
10
|
+
"PO-Revision-Date: 2022-12-02 11:45+0100\n"
|
|
11
11
|
"Last-Translator: Leonardo J. Caballero G. <leonardocaballero@gmail.com>\n"
|
|
12
12
|
"Language: es\n"
|
|
13
13
|
"Language-Team: ES <LL@li.org>\n"
|
|
@@ -15,7 +15,7 @@ msgstr ""
|
|
|
15
15
|
"Content-Transfer-Encoding: 8bit\n"
|
|
16
16
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
17
17
|
"MIME-Version: 1.0\n"
|
|
18
|
-
"X-Generator: Poedit 2.
|
|
18
|
+
"X-Generator: Poedit 2.3\n"
|
|
19
19
|
"Language-Code: es\n"
|
|
20
20
|
"Language-Name: Español\n"
|
|
21
21
|
"Preferred-Encodings: utf-8\n"
|
|
@@ -676,7 +676,7 @@ msgstr "Condición: "
|
|
|
676
676
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
677
677
|
# defaultMessage: Configuration Versions
|
|
678
678
|
msgid "Configuration Versions"
|
|
679
|
-
msgstr ""
|
|
679
|
+
msgstr "Versiones de la configuración"
|
|
680
680
|
|
|
681
681
|
#: components/manage/Controlpanels/Rules/EditRule
|
|
682
682
|
# defaultMessage: Configure Content Rule
|
|
@@ -817,7 +817,7 @@ msgstr "Criterios"
|
|
|
817
817
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
818
818
|
# defaultMessage: Current active configuration
|
|
819
819
|
msgid "Current active configuration"
|
|
820
|
-
msgstr ""
|
|
820
|
+
msgstr "Configuración activa"
|
|
821
821
|
|
|
822
822
|
#: components/manage/Blocks/Search/components/FilterList
|
|
823
823
|
# defaultMessage: Current filters applied
|
|
@@ -1094,7 +1094,7 @@ msgstr "Arrastrar archivos aquí..."
|
|
|
1094
1094
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
1095
1095
|
# defaultMessage: Dry run selected, transaction aborted.
|
|
1096
1096
|
msgid "Dry run selected, transaction aborted."
|
|
1097
|
-
msgstr ""
|
|
1097
|
+
msgstr "Se ha seleccionado el modo de prueba, transacción abortada"
|
|
1098
1098
|
|
|
1099
1099
|
#: components/theme/Register/Register
|
|
1100
1100
|
# defaultMessage: E-mail
|
|
@@ -1732,7 +1732,7 @@ msgstr "Intervalo anual"
|
|
|
1732
1732
|
#: components/theme/View/RenderBlocks
|
|
1733
1733
|
# defaultMessage: Invalid block - Will be removed on saving
|
|
1734
1734
|
msgid "Invalid Block"
|
|
1735
|
-
msgstr ""
|
|
1735
|
+
msgstr "Bloque no válido"
|
|
1736
1736
|
|
|
1737
1737
|
#: components/manage/Widgets/QuerystringWidget
|
|
1738
1738
|
# defaultMessage: Item batch size
|
|
@@ -1824,7 +1824,7 @@ msgstr "Última modificación"
|
|
|
1824
1824
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
1825
1825
|
# defaultMessage: Latest available configuration
|
|
1826
1826
|
msgid "Latest available configuration"
|
|
1827
|
-
msgstr ""
|
|
1827
|
+
msgstr "Última configuración disponible"
|
|
1828
1828
|
|
|
1829
1829
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
1830
1830
|
# defaultMessage: Latest version
|
|
@@ -2004,7 +2004,7 @@ msgstr "Mediano"
|
|
|
2004
2004
|
#: helpers/MessageLabels/MessageLabels
|
|
2005
2005
|
# defaultMessage: Membership updated
|
|
2006
2006
|
msgid "Membership updated"
|
|
2007
|
-
msgstr ""
|
|
2007
|
+
msgstr "Pertenencia actualizada"
|
|
2008
2008
|
|
|
2009
2009
|
#: components/theme/ContactForm/ContactForm
|
|
2010
2010
|
# defaultMessage: Message
|
|
@@ -2055,7 +2055,7 @@ msgstr "Más"
|
|
|
2055
2055
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
2056
2056
|
# defaultMessage: More information about the upgrade procedure can be found in the documentation section of plone.org in the Upgrade Guide.
|
|
2057
2057
|
msgid "More information about the upgrade procedure can be found in the documentation section of plone.org in the Upgrade Guide."
|
|
2058
|
-
msgstr ""
|
|
2058
|
+
msgstr "Puede encontrar más información sobre el procedimiento de actualización en la sección de documentación de plone.org, en la Guía de Actualización."
|
|
2059
2059
|
|
|
2060
2060
|
#: config/Views
|
|
2061
2061
|
# defaultMessage: Mosaic layout
|
|
@@ -2106,7 +2106,7 @@ msgstr "Nombre"
|
|
|
2106
2106
|
#: components/manage/Widgets/AlignWidget
|
|
2107
2107
|
# defaultMessage: Narrow
|
|
2108
2108
|
msgid "Narrow"
|
|
2109
|
-
msgstr ""
|
|
2109
|
+
msgstr "Filtrar"
|
|
2110
2110
|
|
|
2111
2111
|
#: error
|
|
2112
2112
|
# defaultMessage: Navigate back
|
|
@@ -2396,12 +2396,12 @@ msgstr "Las personas responsables de la creación del contenido de este elemento
|
|
|
2396
2396
|
#: components/manage/Controlpanels/Controlpanels
|
|
2397
2397
|
# defaultMessage: Please continue with the upgrade.
|
|
2398
2398
|
msgid "Please continue with the upgrade."
|
|
2399
|
-
msgstr ""
|
|
2399
|
+
msgstr "Continúe con la actualización"
|
|
2400
2400
|
|
|
2401
2401
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
2402
2402
|
# defaultMessage: Please ensure you have a backup of your site before performing the upgrade.
|
|
2403
2403
|
msgid "Please ensure you have a backup of your site before performing the upgrade."
|
|
2404
|
-
msgstr ""
|
|
2404
|
+
msgstr "Por favor, asegúrese de que tiene una copia de seguridad de su sitio antes de realizar la actualización."
|
|
2405
2405
|
|
|
2406
2406
|
#: components/manage/Blocks/Video/Body
|
|
2407
2407
|
# defaultMessage: Please enter a valid URL by deleting the block and adding a new video block.
|
|
@@ -3310,7 +3310,7 @@ msgstr "Las siguientes reglas de contenido están activas en esta página. Utili
|
|
|
3310
3310
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
3311
3311
|
# defaultMessage: The following list shows which upgrade steps are going to be run. Upgrading sometimes performs a catalog/security update, which may take a long time on large sites. Be patient.
|
|
3312
3312
|
msgid "The following list shows which upgrade steps are going to be run. Upgrading sometimes performs a catalog/security update, which may take a long time on large sites. Be patient."
|
|
3313
|
-
msgstr ""
|
|
3313
|
+
msgstr "La siguiente lista muestra los pasos de actualización que se ejecutarán. Algunos de esos pasos requieren que se ejecute una actualización del catálogo o de seguridad, por lo que puede que tarden mucho en algunos sitios grandes."
|
|
3314
3314
|
|
|
3315
3315
|
#: components/manage/Contents/Contents
|
|
3316
3316
|
# defaultMessage: The item could not be deleted.
|
|
@@ -3336,7 +3336,7 @@ msgstr "El registro fue exitoso. Por favor, verifique su bandeja de entrada para
|
|
|
3336
3336
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
3337
3337
|
# defaultMessage: The site configuration is outdated and needs to be upgraded.
|
|
3338
3338
|
msgid "The site configuration is outdated and needs to be upgraded."
|
|
3339
|
-
msgstr ""
|
|
3339
|
+
msgstr "La configuración del sitio está anticuada y debe ser actualizada."
|
|
3340
3340
|
|
|
3341
3341
|
#: components/manage/Toolbar/More
|
|
3342
3342
|
# defaultMessage: The working copy was discarded
|
|
@@ -3356,7 +3356,7 @@ msgstr "Hay un error de configuración en el servidor"
|
|
|
3356
3356
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
3357
3357
|
# defaultMessage: There was an error with the upgrade.
|
|
3358
3358
|
msgid "There was an error with the upgrade."
|
|
3359
|
-
msgstr ""
|
|
3359
|
+
msgstr "Ha ocurrido un error con la actualización"
|
|
3360
3360
|
|
|
3361
3361
|
#: components/manage/Form/InlineForm
|
|
3362
3362
|
# defaultMessage: There were some errors
|
|
@@ -3643,22 +3643,22 @@ msgstr "Actualizaciones disponibles"
|
|
|
3643
3643
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
3644
3644
|
# defaultMessage: Upgrade
|
|
3645
3645
|
msgid "Upgrade"
|
|
3646
|
-
msgstr ""
|
|
3646
|
+
msgstr "Actualizar"
|
|
3647
3647
|
|
|
3648
3648
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
3649
3649
|
# defaultMessage: Upgrade Plone Site
|
|
3650
3650
|
msgid "Upgrade Plone Site"
|
|
3651
|
-
msgstr ""
|
|
3651
|
+
msgstr "Actualizar este sitio"
|
|
3652
3652
|
|
|
3653
3653
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
3654
3654
|
# defaultMessage: Upgrade Report
|
|
3655
3655
|
msgid "Upgrade Report"
|
|
3656
|
-
msgstr ""
|
|
3656
|
+
msgstr "Informe de actualización"
|
|
3657
3657
|
|
|
3658
3658
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
3659
3659
|
# defaultMessage: Upgrade Steps
|
|
3660
3660
|
msgid "Upgrade Steps"
|
|
3661
|
-
msgstr ""
|
|
3661
|
+
msgstr "Pasos de actualización"
|
|
3662
3662
|
|
|
3663
3663
|
#: components/manage/Contents/Contents
|
|
3664
3664
|
# defaultMessage: Upload
|
|
@@ -3985,7 +3985,7 @@ msgstr "Su idioma preferido"
|
|
|
3985
3985
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
3986
3986
|
# defaultMessage: Your site is up to date.
|
|
3987
3987
|
msgid "Your site is up to date."
|
|
3988
|
-
msgstr ""
|
|
3988
|
+
msgstr "Su sitio está actualizado."
|
|
3989
3989
|
|
|
3990
3990
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
3991
3991
|
# defaultMessage: Your username is required for reset your password.
|
|
@@ -3995,22 +3995,22 @@ msgstr "El nombre de usuario es necesario para restablecer su contraseña."
|
|
|
3995
3995
|
#: helpers/MessageLabels/MessageLabels
|
|
3996
3996
|
# defaultMessage: Enter an email address. This is necessary in case the password is lost. We respect your privacy, and will not give the address away to any third parties or expose it anywhere.
|
|
3997
3997
|
msgid "addUserFormEmailDescription"
|
|
3998
|
-
msgstr ""
|
|
3998
|
+
msgstr "Introduzca su dirección de correo. Esto es necesario en caso de pérdida de su contraseña. Respetaremos su privacidad y no divulgaremos su dirección a terceros ni la expondremos en este sitio."
|
|
3999
3999
|
|
|
4000
4000
|
#: helpers/MessageLabels/MessageLabels
|
|
4001
4001
|
# defaultMessage: Enter full name, e.g. John Smith.
|
|
4002
4002
|
msgid "addUserFormFullnameDescription"
|
|
4003
|
-
msgstr ""
|
|
4003
|
+
msgstr "Introduzca su nombre completo, por ejemplo José Pérez."
|
|
4004
4004
|
|
|
4005
4005
|
#: helpers/MessageLabels/MessageLabels
|
|
4006
4006
|
# defaultMessage: Enter your new password. Minimum 8 characters.
|
|
4007
4007
|
msgid "addUserFormPasswordDescription"
|
|
4008
|
-
msgstr ""
|
|
4008
|
+
msgstr "Introduzca su nueva contraseña. Mínimo 8 caracteres."
|
|
4009
4009
|
|
|
4010
4010
|
#: helpers/MessageLabels/MessageLabels
|
|
4011
4011
|
# defaultMessage: Enter a user name, usually something like "jsmith". No spaces or special characters. Usernames and passwords are case sensitive, make sure the caps lock key is not enabled. This is the name used to log in.
|
|
4012
4012
|
msgid "addUserFormUsernameDescription"
|
|
4013
|
-
msgstr ""
|
|
4013
|
+
msgstr "Introduzca el nombre de usuario que desee utilizar. Generalmente algo como "jperez" o "jose_perez". No están permitidos caracteres especiales o espacios en el nombre de usuario. Los nombres de usuario y las contraseñas son sensibles a mayúsculas y minúsculas, asegúrese que la tecla de bloqueo de mayúsculas no está activada ('caps lock'). Este es el nombre que utilizará para identificarse."
|
|
4014
4014
|
|
|
4015
4015
|
#: components/manage/Blocks/Search/schema
|
|
4016
4016
|
# defaultMessage: Available views
|
|
@@ -4026,7 +4026,7 @@ msgstr "¿Olvidaste tu contraseña?"
|
|
|
4026
4026
|
#: config/Blocks
|
|
4027
4027
|
# defaultMessage: Checkbox
|
|
4028
4028
|
msgid "checkboxFacet"
|
|
4029
|
-
msgstr ""
|
|
4029
|
+
msgstr "Casilla de verificación"
|
|
4030
4030
|
|
|
4031
4031
|
#: config/Blocks
|
|
4032
4032
|
# defaultMessage: Common
|
|
@@ -4041,7 +4041,7 @@ msgstr "Comparar con el idioma"
|
|
|
4041
4041
|
#: config/Blocks
|
|
4042
4042
|
# defaultMessage: Date Range
|
|
4043
4043
|
msgid "daterangeFacet"
|
|
4044
|
-
msgstr ""
|
|
4044
|
+
msgstr "Rango de fechas"
|
|
4045
4045
|
|
|
4046
4046
|
#: components/manage/Blocks/Block/EditBlockWrapper
|
|
4047
4047
|
# defaultMessage: delete
|
|
@@ -4440,7 +4440,7 @@ msgstr "años"
|
|
|
4440
4440
|
#: config/Blocks
|
|
4441
4441
|
# defaultMessage: Select
|
|
4442
4442
|
msgid "selectFacet"
|
|
4443
|
-
msgstr ""
|
|
4443
|
+
msgstr "Menú de selección"
|
|
4444
4444
|
|
|
4445
4445
|
#: components/manage/Blocks/Search/components/ViewSwitcher
|
|
4446
4446
|
# defaultMessage: Select view
|
|
@@ -4490,7 +4490,7 @@ msgstr "Tabla de contenidos"
|
|
|
4490
4490
|
#: config/Blocks
|
|
4491
4491
|
# defaultMessage: Toggle
|
|
4492
4492
|
msgid "toggleFacet"
|
|
4493
|
-
msgstr ""
|
|
4493
|
+
msgstr "Activar/Desactivar"
|
|
4494
4494
|
|
|
4495
4495
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
4496
4496
|
# defaultMessage: Update from version {origin} to {destination}
|