@plone/volto 17.0.0-alpha.25 → 17.0.0-alpha.26

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 (95) hide show
  1. package/.yarn/install-state.gz +0 -0
  2. package/CHANGELOG.md +52 -5
  3. package/README.md +8 -7
  4. package/cypress/support/commands.js +12 -9
  5. package/cypress.config.js +1 -0
  6. package/locales/ca/LC_MESSAGES/volto.po +36 -15
  7. package/locales/ca.json +1 -1
  8. package/locales/de/LC_MESSAGES/volto.po +36 -15
  9. package/locales/de.json +1 -1
  10. package/locales/en/LC_MESSAGES/volto.po +35 -14
  11. package/locales/en.json +1 -1
  12. package/locales/es/LC_MESSAGES/volto.po +65 -44
  13. package/locales/es.json +1 -1
  14. package/locales/eu/LC_MESSAGES/volto.po +35 -14
  15. package/locales/eu.json +1 -1
  16. package/locales/fi/LC_MESSAGES/volto.po +35 -14
  17. package/locales/fi.json +1 -1
  18. package/locales/fr/LC_MESSAGES/volto.po +36 -15
  19. package/locales/fr.json +1 -1
  20. package/locales/it/LC_MESSAGES/volto.po +35 -14
  21. package/locales/it.json +1 -1
  22. package/locales/ja/LC_MESSAGES/volto.po +35 -14
  23. package/locales/ja.json +1 -1
  24. package/locales/nl/LC_MESSAGES/volto.po +36 -15
  25. package/locales/nl.json +1 -1
  26. package/locales/pt/LC_MESSAGES/volto.po +36 -15
  27. package/locales/pt.json +1 -1
  28. package/locales/pt_BR/LC_MESSAGES/volto.po +35 -14
  29. package/locales/pt_BR.json +1 -1
  30. package/locales/ro/LC_MESSAGES/volto.po +36 -15
  31. package/locales/ro.json +1 -1
  32. package/locales/volto.pot +35 -14
  33. package/locales/zh_CN/LC_MESSAGES/volto.po +36 -15
  34. package/locales/zh_CN.json +1 -1
  35. package/package.json +4 -4
  36. package/packages/volto-slate/package.json +1 -1
  37. package/packages/volto-slate/src/editor/render.jsx +2 -3
  38. package/src/actions/index.js +3 -0
  39. package/src/actions/navroot/navroot.js +16 -0
  40. package/src/actions/navroot/navroot.test.js +15 -0
  41. package/src/actions/site/site.js +16 -0
  42. package/src/actions/site/site.test.js +15 -0
  43. package/src/actions/userSession/userSession.js +17 -1
  44. package/src/components/manage/Blocks/Block/Settings.jsx +2 -0
  45. package/src/components/manage/Blocks/Block/Settings.test.jsx +90 -0
  46. package/src/components/manage/Blocks/Listing/withQuerystringResults.jsx +1 -1
  47. package/src/components/manage/Blocks/Search/hocs/withSearch.jsx +42 -25
  48. package/src/components/manage/Blocks/ToC/View.jsx +75 -13
  49. package/src/components/manage/Blocks/ToC/variations/DefaultTocRenderer.jsx +2 -12
  50. package/src/components/manage/Controlpanels/Groups/GroupsControlpanel.jsx +65 -38
  51. package/src/components/manage/Controlpanels/Rules/AddRule.jsx +1 -1
  52. package/src/components/manage/Controlpanels/Rules/EditRule.jsx +1 -1
  53. package/src/components/manage/Controlpanels/Users/RenderUsers.jsx +95 -5
  54. package/src/components/manage/Controlpanels/Users/UsersControlpanel.jsx +116 -103
  55. package/src/components/manage/Form/BlockDataForm.jsx +3 -2
  56. package/src/components/manage/Form/BlockDataForm.test.jsx +34 -2
  57. package/src/components/manage/LinksToItem/LinksToItem.test.jsx +4 -1
  58. package/src/components/manage/Messages/Messages.jsx +32 -99
  59. package/src/components/manage/Messages/Messages.test.jsx +0 -1
  60. package/src/components/manage/Sharing/Sharing.jsx +39 -16
  61. package/src/components/manage/UniversalLink/UniversalLink.jsx +4 -6
  62. package/src/components/manage/Widgets/ArrayWidget.jsx +3 -1
  63. package/src/components/manage/Widgets/ArrayWidget.test.jsx +45 -1
  64. package/src/components/manage/Widgets/RegistryImageWidget.jsx +210 -0
  65. package/src/components/manage/Widgets/RegistryImageWidget.test.jsx +91 -0
  66. package/src/components/manage/Widgets/SelectWidget.jsx +15 -1
  67. package/src/components/manage/Widgets/SelectWidget.test.jsx +45 -1
  68. package/src/components/theme/ContentMetadataTags/ContentMetadataTags.jsx +37 -3
  69. package/src/components/theme/Login/Login.jsx +159 -241
  70. package/src/components/theme/Logo/Logo.Multilingual.test.jsx +131 -1
  71. package/src/components/theme/Logo/Logo.jsx +35 -29
  72. package/src/components/theme/Logo/Logo.test.jsx +135 -1
  73. package/src/components/theme/Logout/Logout.jsx +1 -1
  74. package/src/components/theme/Navigation/Navigation.jsx +86 -171
  75. package/src/components/theme/SearchWidget/SearchWidget.jsx +15 -3
  76. package/src/components/theme/SearchWidget/SearchWidget.test.jsx +8 -0
  77. package/src/components/theme/View/View.jsx +2 -0
  78. package/src/config/ControlPanels.js +0 -1
  79. package/src/config/Widgets.jsx +2 -0
  80. package/src/config/index.js +15 -3
  81. package/src/constants/ActionTypes.js +3 -0
  82. package/src/express-middleware/images.js +1 -0
  83. package/src/helpers/MessageLabels/MessageLabels.js +26 -4
  84. package/src/helpers/Site/index.js +21 -0
  85. package/src/helpers/index.js +1 -0
  86. package/src/reducers/index.js +4 -0
  87. package/src/reducers/navroot/navroot.js +79 -0
  88. package/src/reducers/navroot/navroot.test.js +110 -0
  89. package/src/reducers/site/site.js +51 -0
  90. package/src/reducers/site/site.test.js +67 -0
  91. package/src/reducers/userSession/userSession.js +15 -1
  92. package/test-setup-config.js +1 -0
  93. package/theme/themes/pastanaga/elements/input.overrides +5 -1
  94. package/theme/themes/pastanaga/extras/login.less +3 -0
  95. package/webpack-plugins/webpack-less-plugin.js +19 -0
Binary file
package/CHANGELOG.md CHANGED
@@ -3,11 +3,58 @@
3
3
  <!-- You should *NOT* be adding new change log entries to this file.
4
4
  You should create a file in the news directory instead.
5
5
  For helpful instructions, please see:
6
- https://6.docs.plone.org/volto/developer-guidelines/contributing.html#create-a-pull-request
6
+ https://6.docs.plone.org/contributing/index.html#contributing-change-log-label
7
7
  -->
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 17.0.0-alpha.26 (2023-09-14)
12
+
13
+ ### Breaking
14
+
15
+ - Upgrade to Cypress 13 @sneridagh [#5163](https://github.com/plone/volto/issues/5163)
16
+ - Removed support for Node.js 16. It is no longer supported by the Node.js community. @davisagli [#5166](https://github.com/plone/volto/issues/5166)
17
+
18
+ ### Feature
19
+
20
+ - Use the `@navroot` endpoint to build the `title` tag. @erral
21
+
22
+ Use the `@site` endpoint to render the logo. @erral
23
+
24
+ Register a widget to set the logo in the site control panel. @erral [#3537](https://github.com/plone/volto/issues/3537)
25
+ - Refactor Navigation -@Tishasoumya-02 [#4076](https://github.com/plone/volto/issues/4076)
26
+ - Added loading spinner and disable search button while data is fetching. @tedw87 [#4551](https://github.com/plone/volto/issues/4551)
27
+ - User Control panel improvements. See #4551 @erral [#4572](https://github.com/plone/volto/issues/4572)
28
+ - Messages Component Refactor - @Tishasoumya-02 [#4926](https://github.com/plone/volto/issues/4926)
29
+ - Refactor Login -@Tishasoumya-02 [#4933](https://github.com/plone/volto/issues/4933)
30
+ - Add external className to UniversalLink for external link. @iFlameing [#5109](https://github.com/plone/volto/issues/5109)
31
+ - Updated Spanish translation @macagua [#5120](https://github.com/plone/volto/issues/5120)
32
+ - (feat): Update toc block entries @dobri1408 [#5146](https://github.com/plone/volto/issues/5146)
33
+ - Views cypress test -@Tishasoumya [#5149](https://github.com/plone/volto/issues/5149)
34
+ - Added support for Node.js 20. @davisagli [#5166](https://github.com/plone/volto/issues/5166)
35
+ - Cypress test to test if 'Search results: number' text is present @ionlizarazu [#5171](https://github.com/plone/volto/issues/5171)
36
+
37
+ ### Bugfix
38
+
39
+ - Fix for responsive error in the login page when the width of the screen decreases. @suman9893 [#3250](https://github.com/plone/volto/issues/3250)
40
+ - Fix back button in the search block to execute the search by adding two useEffects that update the facets and search data based on the current URL. @MihaelaCretu11 [#4402](https://github.com/plone/volto/issues/4402)
41
+ - fix : RecursiveWidget is incorrectly translated. @suman9893 [#4503](https://github.com/plone/volto/issues/4503)
42
+ - Fix use of CSS modules in webpack 5. @wesleybl [#5019](https://github.com/plone/volto/issues/5019)
43
+ - Fix toc accessibility issue @dobri1408 [#5058](https://github.com/plone/volto/issues/5058)
44
+ - Fix storybook config for project generator. Add support for SCSS, upgrade to webpack 5 in there as well. @sneridagh [#5132](https://github.com/plone/volto/issues/5132)
45
+ - Don't show ``No value`` option in SelectWidget and ArrayWidget if default value is 0. @wesleybl [#5151](https://github.com/plone/volto/issues/5151)
46
+ - Fix SelectWidget throwing error when editing a recently created content. @iFlameing [#5154](https://github.com/plone/volto/issues/5154)
47
+ - Fix editing layout for blocks using schema enhancers. @iFlameing, @davisagli [#5158](https://github.com/plone/volto/issues/5158)
48
+ - Fix ContentRules add and edit forms for languages other than English. @ericof [#5161](https://github.com/plone/volto/issues/5161)
49
+ - Fix search block search results number @ionlizarazu [#5171](https://github.com/plone/volto/issues/5171)
50
+ - fix flaky cypress in blocks-listing.js @nileshgulia1 [#5173](https://github.com/plone/volto/issues/5173)
51
+ - Fix regression in forms input in toolbar height related to (#5115) @sneridagh [#5176](https://github.com/plone/volto/issues/5176)
52
+
53
+ ### Documentation
54
+
55
+ - Fix linkcheckbroken 301 redirect to https://www.dlr.de/de @stevepiercy [#5131](https://github.com/plone/volto/issues/5131)
56
+
57
+
11
58
  ## 17.0.0-alpha.25 (2023-08-25)
12
59
 
13
60
  ### Breaking
@@ -63,7 +110,7 @@
63
110
 
64
111
  ### Internal
65
112
 
66
- - Add www.dlr.de to "Volto in production" list. @tisto [#5112](https://github.com/plone/volto/pull/5112)
113
+ - Add https://www.dlr.de/de to "Volto in production" list. @tisto [#5112](https://github.com/plone/volto/pull/5112)
67
114
 
68
115
  ## 17.0.0-alpha.23 (2023-07-28)
69
116
 
@@ -510,7 +557,7 @@
510
557
 
511
558
  ### Breaking
512
559
 
513
- - Volto 17 drops support for NodeJS 14, and adds support for NodeJS 18.
560
+ - Volto 17 drops support for NodeJS 14, and adds support for Node.js 18.
514
561
  Please see the [upgrade guide](https://6.docs.plone.org/volto/upgrade-guide/index.html)
515
562
  for more information.
516
563
 
@@ -1410,7 +1457,7 @@ See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information
1410
1457
  - Update README with latest versions, point to Plone 6 as recommended default @sneridagh
1411
1458
  - Trigger a new deploy core Plone documentation when Volto documentation is updated @esteele
1412
1459
  - Update supported Python versions. @stevepiercy
1413
- - Add NodeJS 18 (LTS) usage notice @sneridagh
1460
+ - Add Node.js 18 (LTS) usage notice @sneridagh
1414
1461
  - Fix Netlify build @sneridagh
1415
1462
  - Fix grammar in Theming Strategy. Fixes #954. @stevepiercy
1416
1463
  - Fix wording in About Semantic UI. Fixes #953. @stevepiercy
@@ -1623,7 +1670,7 @@ See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information
1623
1670
 
1624
1671
  ### Documentation
1625
1672
 
1626
- - Add NodeJS 18 (LTS) usage notice @sneridagh
1673
+ - Add Node.js 18 (LTS) usage notice @sneridagh
1627
1674
  - Fix Netlify build @sneridagh
1628
1675
 
1629
1676
  ## 16.0.0-alpha.45 (2022-10-24)
package/README.md CHANGED
@@ -177,7 +177,7 @@ Volto is actively developed since 2017 and used in production since 2018 on the
177
177
  - [Helmholtz-Institut Erlangen-Nürnberg für Erneuerbare Energien (HI-ERN)](https://www.hi-ern.de) (Website for HI ERN, a research institution for renewable energies, developed by [kitconcept GmbH](https://kitconcept.com), 2022)
178
178
  - [Lanku](https://www.lanku.eus) (Website for Lanku Kultur Zerbitzuak, a company offering cultural services and improvised Basque verse singing sessions across the Basque Country, developed by [CodeSyntax](https://www.codesyntax.com/en), 2023)
179
179
  - [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)
180
- - [German Aerospace Center (DLR)](https://dlr.de) (The German Aerospace Center (DLR) is the Federal Republic of Germany's research center for aeronautics. With more than 10.000 employees and a yearly budget of more than 1 billion euros, it is one of the largest research institutions in Germany, developed by [kitconcept GmbH](https://kitconcept.com), 2023)
180
+ - [German Aerospace Center (DLR)](https://www.dlr.de/de) (The German Aerospace Center (DLR) is the Federal Republic of Germany's research center for aeronautics. With more than 10.000 employees and a yearly budget of more than 1 billion euros, it is one of the largest research institutions in Germany, developed by [kitconcept GmbH](https://kitconcept.com), 2023)
181
181
 
182
182
  Please create a new [issue](https://github.com/plone/volto/issues/new) or [pull request](https://github.com/plone/volto/pulls) to add your Volto-site here!
183
183
 
@@ -226,13 +226,14 @@ On the [Plone Training website](https://training.plone.org), you'll find Volto-d
226
226
 
227
227
  [Timo Stollenwerk - Reinventing Plone, Roadmap to the Modern Web](https://2018.ploneconf.org/talks/reinventing-plone-roadmap-to-the-modern-web)
228
228
 
229
- ## Node Support
229
+ ## Node.js Support
230
230
 
231
- - Node 18: Supported since Volto 17
232
- - Node 16: Supported since Volto 14
233
- - Node 14: No longer supported. It was supported from Volto 8.8.0 - 16
234
- - Node 12: No longer supported. It was supported from Volto 4 - 15
235
- - Node 10: No longer supported. It was supported from Volto 1 - 12
231
+ - Node.js 20: Supported since Volto 17
232
+ - Node.js 18: Supported since Volto 17
233
+ - Node.js 16: No longer supported. It was supported from Volto 14 - 16
234
+ - Node.js 14: No longer supported. It was supported from Volto 8.8.0 - 16
235
+ - Node.js 12: No longer supported. It was supported from Volto 4 - 15
236
+ - Node.js 10: No longer supported. It was supported from Volto 1 - 12
236
237
 
237
238
  ## Browser support
238
239
 
@@ -780,13 +780,16 @@ Cypress.Commands.add('lineBreakInSlate', { prevSubject: true }, (subject) => {
780
780
  );
781
781
  });
782
782
 
783
- Cypress.Commands.add('setSlateSelection', (subject, query, endQuery) => {
784
- cy.get('.slate-editor.selected [contenteditable=true]')
785
- .focus()
786
- // .click()
787
- .setSelection(subject, query, endQuery)
788
- .wait(1000); // this wait is needed for the selection change to be detected after
789
- });
783
+ Cypress.Commands.add(
784
+ 'setSlateSelection',
785
+ (subject, query, endQuery, wait = 1000) => {
786
+ cy.get('.slate-editor.selected [contenteditable=true]')
787
+ .focus()
788
+ // .click()
789
+ .setSelection(subject, query, endQuery)
790
+ .wait(wait); // this wait is needed for the selection change to be detected after
791
+ },
792
+ );
790
793
 
791
794
  Cypress.Commands.add('getSlateEditorAndType', (type) => {
792
795
  cy.getSlate().focus().click().type(type);
@@ -804,9 +807,9 @@ Cypress.Commands.add('setSlateCursor', (subject, query, endQuery) => {
804
807
  .wait(1000); // this wait is needed for the selection change to be detected after
805
808
  });
806
809
 
807
- Cypress.Commands.add('clickSlateButton', (button) => {
810
+ Cypress.Commands.add('clickSlateButton', (button, timeout = 1000) => {
808
811
  cy.get(`.slate-inline-toolbar .button-wrapper a[title="${button}"]`, {
809
- timeout: 1000,
812
+ timeout,
810
813
  }).click({ force: true }); // force click is needed to ensure the button in visible in view.
811
814
  });
812
815
 
package/cypress.config.js CHANGED
@@ -4,6 +4,7 @@ module.exports = defineConfig({
4
4
  viewportWidth: 1280,
5
5
  chromeWebSecurity: false,
6
6
  projectId: 'hvviu4',
7
+ video: true, // To remove when Test Replay is available in cypress.io
7
8
  e2e: {
8
9
  baseUrl: 'http://127.0.0.1:3000',
9
10
  excludeSpecPattern: ['*~'],
@@ -617,6 +617,7 @@ msgid "Choose Target"
617
617
  msgstr "Trieu Destí"
618
618
 
619
619
  #: components/manage/Widgets/FileWidget
620
+ #: components/manage/Widgets/RegistryImageWidget
620
621
  # defaultMessage: Choose a file
621
622
  msgid "Choose a file"
622
623
  msgstr "Trieu un fitxer"
@@ -804,7 +805,7 @@ msgid "Copy"
804
805
  msgstr "Copia"
805
806
 
806
807
  #: helpers/MessageLabels/MessageLabels
807
- # defaultMessage: undefined
808
+ # defaultMessage: Copy blocks
808
809
  msgid "Copy blocks"
809
810
  msgstr "Copiar blocks"
810
811
 
@@ -877,7 +878,7 @@ msgid "Cut"
877
878
  msgstr "Talla"
878
879
 
879
880
  #: helpers/MessageLabels/MessageLabels
880
- # defaultMessage: undefined
881
+ # defaultMessage: Cut blocks
881
882
  msgid "Cut blocks"
882
883
  msgstr "Talla bloc"
883
884
 
@@ -984,7 +985,7 @@ msgid "Delete action"
984
985
  msgstr ""
985
986
 
986
987
  #: helpers/MessageLabels/MessageLabels
987
- # defaultMessage: undefined
988
+ # defaultMessage: Delete blocks
988
989
  msgid "Delete blocks"
989
990
  msgstr "Esborra blocs"
990
991
 
@@ -1118,16 +1119,19 @@ msgid "Drag and drop files from your computer onto this area or click the “Bro
1118
1119
  msgstr "Arrossegueu i deixeu anar fitxers des del vostre ordinador a aquesta àrea o feu clic al botó 'Examinar'."
1119
1120
 
1120
1121
  #: components/manage/Widgets/FileWidget
1122
+ #: components/manage/Widgets/RegistryImageWidget
1121
1123
  # defaultMessage: Drop file here to replace the existing file
1122
1124
  msgid "Drop file here to replace the existing file"
1123
1125
  msgstr "Deixeu anar el fitxer aquí per substituir el fitxer existent"
1124
1126
 
1125
1127
  #: components/manage/Widgets/FileWidget
1128
+ #: components/manage/Widgets/RegistryImageWidget
1126
1129
  # defaultMessage: Drop file here to upload a new file
1127
1130
  msgid "Drop file here to upload a new file"
1128
1131
  msgstr "Deixeu anar el fitxer aquí per pujar un fitxer nou"
1129
1132
 
1130
1133
  #: components/manage/Widgets/FileWidget
1134
+ #: components/manage/Widgets/RegistryImageWidget
1131
1135
  # defaultMessage: Drop files here ...
1132
1136
  msgid "Drop files here ..."
1133
1137
  msgstr "Deixeu fitxers aquí..."
@@ -1151,6 +1155,7 @@ msgstr "Les adreces de correu electrònic no coincideixen."
1151
1155
  #: components/manage/Controlpanels/ContentTypesActions
1152
1156
  #: components/manage/Controlpanels/ModerateComments
1153
1157
  #: components/manage/Controlpanels/Rules/EditRule
1158
+ #: components/manage/Controlpanels/Users/RenderUsers
1154
1159
  #: components/manage/Toolbar/Toolbar
1155
1160
  #: components/manage/Widgets/FormFieldWrapper
1156
1161
  #: components/manage/Widgets/ObjectBrowserWidget
@@ -1816,6 +1821,11 @@ msgstr "Any(s)"
1816
1821
  msgid "Invalid Block"
1817
1822
  msgstr ""
1818
1823
 
1824
+ #: helpers/MessageLabels/MessageLabels
1825
+ # defaultMessage: It is not allowed to define both the password and to request sending the password reset message by e-mail. You need to select one of them.
1826
+ msgid "It is not allowed to define both the password and to request sending the password reset message by e-mail. You need to select one of them."
1827
+ msgstr ""
1828
+
1819
1829
  #: components/manage/Widgets/QuerystringWidget
1820
1830
  # defaultMessage: Item batch size
1821
1831
  msgid "Item batch size"
@@ -2500,7 +2510,7 @@ msgid "Paste"
2500
2510
  msgstr "Enganxar"
2501
2511
 
2502
2512
  #: helpers/MessageLabels/MessageLabels
2503
- # defaultMessage: undefined
2513
+ # defaultMessage: Paste blocks
2504
2514
  msgid "Paste blocks"
2505
2515
  msgstr "Enganxa blocs"
2506
2516
 
@@ -2591,11 +2601,6 @@ msgstr ""
2591
2601
  msgid "Plone Foundation"
2592
2602
  msgstr "Fundació Plone"
2593
2603
 
2594
- #: components/theme/Logo/Logo
2595
- # defaultMessage: Plone Site
2596
- msgid "Plone Site"
2597
- msgstr "Lloc de Plone"
2598
-
2599
2604
  #: components/theme/Footer/Footer
2600
2605
  # defaultMessage: Plone{reg} Open Source CMS/WCM
2601
2606
  msgid "Plone{reg} Open Source CMS/WCM"
@@ -2837,6 +2842,7 @@ msgid "Repeat on"
2837
2842
  msgstr "Repetiu"
2838
2843
 
2839
2844
  #: components/manage/Widgets/FileWidget
2845
+ #: components/manage/Widgets/RegistryImageWidget
2840
2846
  # defaultMessage: Replace existing file
2841
2847
  msgid "Replace existing file"
2842
2848
  msgstr "Substitueix el fitxer existent"
@@ -3279,11 +3285,6 @@ msgstr "Redueix la barra d'eines"
3279
3285
  msgid "Sign in to start session"
3280
3286
  msgstr "Inicieu la sessió per iniciar la sessió"
3281
3287
 
3282
- #: components/theme/Logo/Logo
3283
- # defaultMessage: Site
3284
- msgid "Site"
3285
- msgstr "Lloc"
3286
-
3287
3288
  #: components/theme/NotFound/NotFound
3288
3289
  #: components/theme/Unauthorized/Unauthorized
3289
3290
  # defaultMessage: Site Administration
@@ -3625,6 +3626,16 @@ msgstr "La còpia de treball es va descartar"
3625
3626
  msgid "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends."
3626
3627
  msgstr "El {plonecms} és {copyright} 2000-{current_year} per {plonefoundation} i amics."
3627
3628
 
3629
+ #: helpers/MessageLabels/MessageLabels
3630
+ # defaultMessage: There are no groups with the searched criteria
3631
+ msgid "There are no groups with the searched criteria"
3632
+ msgstr ""
3633
+
3634
+ #: helpers/MessageLabels/MessageLabels
3635
+ # defaultMessage: There are no users with the searched criteria
3636
+ msgid "There are no users with the searched criteria"
3637
+ msgstr ""
3638
+
3628
3639
  #: components/theme/CorsError/CorsError
3629
3640
  # defaultMessage: There is a configuration problem on the backend
3630
3641
  msgid "There is a configuration problem on the backend"
@@ -3910,6 +3921,11 @@ msgstr ""
3910
3921
  msgid "Update"
3911
3922
  msgstr "Actualització"
3912
3923
 
3924
+ #: helpers/MessageLabels/MessageLabels
3925
+ # defaultMessage: Update User
3926
+ msgid "Update User"
3927
+ msgstr ""
3928
+
3913
3929
  #: components/manage/Controlpanels/AddonsControlpanel
3914
3930
  # defaultMessage: Update installed addons
3915
3931
  msgid "Update installed addons"
@@ -4025,6 +4041,11 @@ msgstr "Nom d'usuari"
4025
4041
  msgid "User roles updated"
4026
4042
  msgstr "Rols d'usuari actualitzats"
4027
4043
 
4044
+ #: helpers/MessageLabels/MessageLabels
4045
+ # defaultMessage: User updated successfuly
4046
+ msgid "User updated successfuly"
4047
+ msgstr ""
4048
+
4028
4049
  #: helpers/MessageLabels/MessageLabels
4029
4050
  # defaultMessage: Username
4030
4051
  msgid "Username"
@@ -4645,7 +4666,7 @@ msgstr "a"
4645
4666
  #: components/manage/Widgets/RecurrenceWidget/Utils
4646
4667
  # defaultMessage: [month] [day], [year]
4647
4668
  msgid "rrule_dateFormat"
4648
- msgstr "[mes] [dia], [any]"
4669
+ msgstr "[month] [day], [year]"
4649
4670
 
4650
4671
  #: components/manage/Widgets/RecurrenceWidget/Utils
4651
4672
  # defaultMessage: day