@eeacms/volto-clms-theme 1.0.58 → 1.0.62

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 (75) hide show
  1. package/CHANGELOG.md +86 -0
  2. package/locales/bg/LC_MESSAGES/volto.po +207 -7
  3. package/locales/cs/LC_MESSAGES/volto.po +207 -7
  4. package/locales/da/LC_MESSAGES/volto.po +207 -7
  5. package/locales/de/LC_MESSAGES/volto.po +207 -7
  6. package/locales/el/LC_MESSAGES/volto.po +207 -7
  7. package/locales/en/LC_MESSAGES/volto.po +207 -7
  8. package/locales/es/LC_MESSAGES/volto.po +207 -7
  9. package/locales/et/LC_MESSAGES/volto.po +207 -7
  10. package/locales/fi/LC_MESSAGES/volto.po +207 -7
  11. package/locales/fr/LC_MESSAGES/volto.po +207 -7
  12. package/locales/hr/LC_MESSAGES/volto.po +207 -7
  13. package/locales/hu/LC_MESSAGES/volto.po +207 -7
  14. package/locales/it/LC_MESSAGES/volto.po +207 -7
  15. package/locales/lt/LC_MESSAGES/volto.po +207 -7
  16. package/locales/lv/LC_MESSAGES/volto.po +207 -7
  17. package/locales/mt/LC_MESSAGES/volto.po +207 -7
  18. package/locales/nl/LC_MESSAGES/volto.po +207 -7
  19. package/locales/pl/LC_MESSAGES/volto.po +207 -7
  20. package/locales/pt/LC_MESSAGES/volto.po +207 -7
  21. package/locales/ro/LC_MESSAGES/volto.po +207 -7
  22. package/locales/sk/LC_MESSAGES/volto.po +207 -7
  23. package/locales/sl/LC_MESSAGES/volto.po +207 -7
  24. package/locales/sv/LC_MESSAGES/volto.po +207 -7
  25. package/locales/volto.pot +258 -12
  26. package/package.json +4 -3
  27. package/src/actions/downloadtool/post_downloadtool.js +0 -1
  28. package/src/actions/index.js +10 -15
  29. package/src/actions/newsletter/{get_subscribers.js → get_newsletter_subscribers.js} +4 -4
  30. package/src/actions/subscription/post_subscription.js +78 -0
  31. package/src/components/Blocks/CclTextLinkCarouselBlock/CclTextLinkCarouselView.jsx +3 -3
  32. package/src/components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema.js +177 -0
  33. package/src/components/Blocks/CustomTemplates/VoltoListingBlock/CclListingWorkOpportunities.jsx +7 -2
  34. package/src/components/Blocks/CustomTemplates/VoltoSearchBlock/RightModalFacets.jsx +80 -70
  35. package/src/components/Blocks/CustomTemplates/VoltoTabsBlock/CclProductTabsView.jsx +17 -11
  36. package/src/components/Blocks/customBlocks.js +5 -0
  37. package/src/components/CLMSDatasetDetailView/MetadataContent.jsx +20 -19
  38. package/src/components/CLMSDownloadCartView/CLMSCartContent.jsx +26 -54
  39. package/src/components/CLMSDownloadCartView/CLMSDownloadCartView.jsx +52 -6
  40. package/src/components/CLMSDownloadCartView/CLMSTasksInProgress.jsx +51 -4
  41. package/src/components/CLMSDownloadCartView/cartUtils.js +6 -2
  42. package/src/components/CLMSEventView/CLMSEventView.jsx +5 -2
  43. package/src/components/CLMSMeetingView/CLMSMeetingEmailView.jsx +29 -26
  44. package/src/components/CLMSMeetingView/CLMSMeetingEmailsView.jsx +31 -11
  45. package/src/components/CLMSMeetingView/CLMSMeetingSubscribersView.jsx +107 -36
  46. package/src/components/CLMSMeetingView/CLMSMeetingView.jsx +297 -172
  47. package/src/components/CLMSProfileView/CLMSNewsletterSubscriberView.jsx +19 -12
  48. package/src/components/CLMSProfileView/CLMSProfileView.jsx +21 -61
  49. package/src/components/CLMSProfileView/index.js +0 -1
  50. package/src/components/CLMSSubscriptionView/ConfirmSubscriptionView.jsx +149 -0
  51. package/src/components/CLMSSubscriptionView/SubscriptionView.jsx +257 -0
  52. package/src/components/CLMSSubscriptionView/index.js +3 -0
  53. package/src/components/CLMSSubscriptionView/subscription_utils.js +22 -0
  54. package/src/components/CclCard/CclCard.jsx +14 -5
  55. package/src/components/CclCard/cards.less +5 -0
  56. package/src/components/CclLanguageSelector/CclLanguageSelector.jsx +3 -2
  57. package/src/components/CclModal/modal.less +4 -0
  58. package/src/components/CclTab/CclTabs.jsx +9 -6
  59. package/src/customizations/volto/components/theme/Footer/Footer.jsx +356 -255
  60. package/src/customizations/volto/components/theme/Header/Header.jsx +79 -84
  61. package/src/index.js +49 -0
  62. package/src/reducers/index.js +6 -0
  63. package/src/reducers/meeting/meeting_register_reducer.js +6 -3
  64. package/src/reducers/newsletter/get_newsletter_reducer.js +47 -0
  65. package/src/reducers/subscription/subscription_reducer.js +40 -0
  66. package/theme/clms/css/carousel.css +4 -4
  67. package/theme/clms/css/forms.css +1 -1
  68. package/theme/clms/css/header.css +4 -0
  69. package/theme/clms/css/home.css +13 -4
  70. package/theme/clms/css/menu.css +147 -26
  71. package/theme/clms/css/styles.less +6 -3
  72. package/src/actions/newsletter/del_subscribers.js +0 -53
  73. package/src/actions/newsletter/post_subscribers.js +0 -71
  74. package/src/components/CLMSProfileView/CLMSNewsletterView.jsx +0 -211
  75. package/src/reducers/newsletter/newsletter_reducer.js +0 -109
package/CHANGELOG.md CHANGED
@@ -4,8 +4,94 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ #### [1.0.62](https://github.com/eea/volto-clms-theme/compare/1.0.61...1.0.62)
8
+
9
+ - Event icon fix [`#188`](https://github.com/eea/volto-clms-theme/pull/188)
10
+ - Trello issues [`#187`](https://github.com/eea/volto-clms-theme/pull/187)
11
+ - Bugs n improvements [`#186`](https://github.com/eea/volto-clms-theme/pull/186)
12
+ - Subscription system [`#185`](https://github.com/eea/volto-clms-theme/pull/185)
13
+ - Newsletter subscription [`#181`](https://github.com/eea/volto-clms-theme/pull/181)
14
+ - volto-form-block release [`ca6617c`](https://github.com/eea/volto-clms-theme/commit/ca6617c618500875064bd54ab31949a2b263a910)
15
+ - modifications after testing [`568094f`](https://github.com/eea/volto-clms-theme/commit/568094ffe1114df916ba505e639df6d09c7d39ea)
16
+ - event card change [`8d5d5e6`](https://github.com/eea/volto-clms-theme/commit/8d5d5e656a3432f3a91d6ea1675941429fe5b5ab)
17
+ - po files [`d41c26a`](https://github.com/eea/volto-clms-theme/commit/d41c26adf35401b96c09668f2ca3d3429189221a)
18
+ - fix in home-product block on small devices [`7c12b29`](https://github.com/eea/volto-clms-theme/commit/7c12b291c158da6ecfb650f2bac685a4e5a2ff6d)
19
+ - header changes applied for small devices [`4502e46`](https://github.com/eea/volto-clms-theme/commit/4502e46f45458bb3323deb68d386b322c84fdf81)
20
+ - conflict resolved [`b5bdcd9`](https://github.com/eea/volto-clms-theme/commit/b5bdcd9c70e0dc05e18388124a0e53ca6dc7e4b7)
21
+ - issues detected on trello tickets fixed [`77bf7ef`](https://github.com/eea/volto-clms-theme/commit/77bf7efb904736b4399d080f4b89f8e60c350baf)
22
+ - maxwidth to comment icon [`dcef474`](https://github.com/eea/volto-clms-theme/commit/dcef474bf56eda86bdf85a0a753ed71b18c09b26)
23
+ - remove download button on wmpty cart [`97ff0c6`](https://github.com/eea/volto-clms-theme/commit/97ff0c6952f7f3cd9484c6d520d43d69946e12da)
24
+ - add download as csv button [`7967764`](https://github.com/eea/volto-clms-theme/commit/796776447bc3d6cd642600babb5dc8f98c863cc4)
25
+ - ESLint fix [`c1ddb9f`](https://github.com/eea/volto-clms-theme/commit/c1ddb9f2ec99e71d37a8f57fa3a5a462c129e8aa)
26
+ - Style improvements [`0bc8e11`](https://github.com/eea/volto-clms-theme/commit/0bc8e117754afca012d257b6fa74e8d883463086)
27
+ - new volto-block-form version and overriden fieldschema [`931ece9`](https://github.com/eea/volto-clms-theme/commit/931ece99048367b66abc5e6b60530af539160761)
28
+ - meeting reorganization [`e3df1af`](https://github.com/eea/volto-clms-theme/commit/e3df1af3f59fd7f2b37f09964522983232022ecd)
29
+ - limit the maxWidth of cart icon [`51086b7`](https://github.com/eea/volto-clms-theme/commit/51086b7225d6b995039755f90bf813958b86c19e)
30
+ - props is not defined bug fixed in the CclTabs component [`39f3b58`](https://github.com/eea/volto-clms-theme/commit/39f3b58bc65c8cb950fe1338ee42d9f90357a5de)
31
+ - Code cleaning [`a245cd4`](https://github.com/eea/volto-clms-theme/commit/a245cd4aa8495ea4c39c5ff4402ad491758630bb)
32
+ - Code refactoring [`6c9650d`](https://github.com/eea/volto-clms-theme/commit/6c9650d723db67db6e0841737751b3d1f7ca96e1)
33
+ - dynamic profile subscription roles [`b9e5654`](https://github.com/eea/volto-clms-theme/commit/b9e565421b34f9d6862581e7a7a586538b761cb1)
34
+ - link to subscriptionView with intl [`531cb0f`](https://github.com/eea/volto-clms-theme/commit/531cb0f1be37080785086d2709c8c4624c09e6ca)
35
+ - code optimization [`5efee2d`](https://github.com/eea/volto-clms-theme/commit/5efee2d2e64500ef0fb8872501f1e454daa96fe0)
36
+ - code refactoring [`e40fc52`](https://github.com/eea/volto-clms-theme/commit/e40fc5296a889569dd4f80e65e5fbbb7a7fe3959)
37
+ - error messages [`a688079`](https://github.com/eea/volto-clms-theme/commit/a688079345791e692967a0ea7c37a92206ff9629)
38
+ - getSubscriber action created to download a csv file with all newsletter subscribers [`7f3ae71`](https://github.com/eea/volto-clms-theme/commit/7f3ae71ae111fed5bc86a1be0a01c633f85ea01e)
39
+ - Event confirm subscription [`bac0711`](https://github.com/eea/volto-clms-theme/commit/bac0711b00e6331cf7dfdb28faf6a7a190904ae2)
40
+ - Event confirm subscription [`1f24ddb`](https://github.com/eea/volto-clms-theme/commit/1f24ddba32ce4ea4b0abb9e480b80e2369798089)
41
+ - route fix [`2cc2127`](https://github.com/eea/volto-clms-theme/commit/2cc2127e5765e38a677401a92737eda31e39aa13)
42
+ - subscribe and unsubscribe confirmation [`2892df7`](https://github.com/eea/volto-clms-theme/commit/2892df71fdeea4c96b5b93cf670637b1ed1d47de)
43
+ - subscribe/unsubscribe confirmation [`46909df`](https://github.com/eea/volto-clms-theme/commit/46909df9f4bd2336bf706b9bbdb584c325ce5b87)
44
+ - code optimization [`0f05aeb`](https://github.com/eea/volto-clms-theme/commit/0f05aebc35acf42542f8bf6523410884dd065636)
45
+ - Newsletter subscription post added on footer [`7a91fdb`](https://github.com/eea/volto-clms-theme/commit/7a91fdbb04d7ce4524f4a59661f60d2227bbc2b9)
46
+ - code optimization [`3fa91a8`](https://github.com/eea/volto-clms-theme/commit/3fa91a8ed2a0b59f27ec4a194f917d20d0fd321b)
47
+ - subscribeToNews [`6bc882f`](https://github.com/eea/volto-clms-theme/commit/6bc882fafebfcbec500287bdc103b4b2a6417f26)
48
+ - del actions deleted and view adapted to unsubscribe option [`0d4e930`](https://github.com/eea/volto-clms-theme/commit/0d4e9303e6093468c62db1e401b61e2032187e41)
49
+ - newsletter subscriber post [`a82d202`](https://github.com/eea/volto-clms-theme/commit/a82d20262f01c1f3d77e3d023b685335bb405fec)
50
+ - unsubscribe control [`a828447`](https://github.com/eea/volto-clms-theme/commit/a828447f2a344742c4dd4b571a2f0d7206b00dee)
51
+ - removed unused code [`501d53a`](https://github.com/eea/volto-clms-theme/commit/501d53a6f98426e558618f6fcc9b437ae75103d0)
52
+ - event subscription basic implementation [`4928f10`](https://github.com/eea/volto-clms-theme/commit/4928f104da586d93f79192e47d25689e3e8225b7)
53
+ - post actions done confirm subscription post failing [`9faf8aa`](https://github.com/eea/volto-clms-theme/commit/9faf8aa7423e3b8f47653b26e55e554aff233b1b)
54
+
55
+ #### [1.0.61](https://github.com/eea/volto-clms-theme/compare/1.0.60...1.0.61)
56
+
57
+ > 20 January 2022
58
+
59
+ - Update package.json [`#184`](https://github.com/eea/volto-clms-theme/pull/184)
60
+ - metadata view [`d8fb946`](https://github.com/eea/volto-clms-theme/commit/d8fb946c3ef323e6ac30fa646e59f8b9e0b83b76)
61
+
62
+ #### [1.0.60](https://github.com/eea/volto-clms-theme/compare/1.0.59...1.0.60)
63
+
64
+ > 19 January 2022
65
+
66
+ - Develop [`#183`](https://github.com/eea/volto-clms-theme/pull/183)
67
+ - use When [`#182`](https://github.com/eea/volto-clms-theme/pull/182)
68
+ - fix cart [`be9d2ba`](https://github.com/eea/volto-clms-theme/commit/be9d2ba648c99a1a7ff1117495f8cb65212f29d7)
69
+
70
+ #### [1.0.59](https://github.com/eea/volto-clms-theme/compare/1.0.58...1.0.59)
71
+
72
+ > 19 January 2022
73
+
74
+ - Develop [`#180`](https://github.com/eea/volto-clms-theme/pull/180)
75
+ - Bugs n improvements [`#179`](https://github.com/eea/volto-clms-theme/pull/179)
76
+ - do not require area to be present, items added from the map-viewer (f… [`#178`](https://github.com/eea/volto-clms-theme/pull/178)
77
+ - Develop [`#175`](https://github.com/eea/volto-clms-theme/pull/175)
78
+ - ignore useeffect dependency [`6e14ced`](https://github.com/eea/volto-clms-theme/commit/6e14cedafe62fad4928fe2217b8d3f6e7ef1a72a)
79
+ - localsession.length useeffect dependency [`9468345`](https://github.com/eea/volto-clms-theme/commit/9468345c3513764765b2103eb06e6405a61ba360)
80
+ - reorganize action calls, new in progress task visualization mode [`e0d9d65`](https://github.com/eea/volto-clms-theme/commit/e0d9d65ef8b8b784dd02e3d8385e7f12982bbca9)
81
+ - if not link show only the number [`025bc93`](https://github.com/eea/volto-clms-theme/commit/025bc9313c41d2ff7d27266ec27d6e074c4d85f4)
82
+ - if not link show only the number [`e9e3cea`](https://github.com/eea/volto-clms-theme/commit/e9e3ceaee02b33d713855dd67d9e5e4f2430bf97)
83
+ - show title in workopportunity [`a046e57`](https://github.com/eea/volto-clms-theme/commit/a046e574f523c2703ba1cf53a0a66ce2bda0fe51)
84
+ - show the link conditionally on a back-end property [`37130ad`](https://github.com/eea/volto-clms-theme/commit/37130adc3395e2b1d65bfa360b071bfdd8abd588)
85
+ - add condition to search block headline to don't render an empty row [`05dcf71`](https://github.com/eea/volto-clms-theme/commit/05dcf71ae03cb23aac3bbac5b546a5caa915ee52)
86
+ - ESLint fix [`36dcbc0`](https://github.com/eea/volto-clms-theme/commit/36dcbc093d00fd89a12b36f140c52ae439341091)
87
+ - Filter styles [`221cf36`](https://github.com/eea/volto-clms-theme/commit/221cf3642efd2b6ec62871fa4d96cab19849e057)
88
+ - do not require area to be present, items added from the map-viewer (full downloads) do not have area [`e9dea2b`](https://github.com/eea/volto-clms-theme/commit/e9dea2b9fea72b40d1161ffd0717adfaa47ace20)
89
+
7
90
  #### [1.0.58](https://github.com/eea/volto-clms-theme/compare/1.0.57...1.0.58)
8
91
 
92
+ > 14 January 2022
93
+
94
+ - New release [`#177`](https://github.com/eea/volto-clms-theme/pull/177)
9
95
  - Default view for file objects and newsletter view created [`#176`](https://github.com/eea/volto-clms-theme/pull/176)
10
96
  - remove FixTemplates hoc on TabsView to avoid uneeded renderings [`0bb8bb8`](https://github.com/eea/volto-clms-theme/commit/0bb8bb82ae1584e85a11f39c5e23595581ef28a9)
11
97
  - avoid uneeded usefect executions [`b58426d`](https://github.com/eea/volto-clms-theme/commit/b58426d770982d188e7e8d65a13829e49d1cefef)
@@ -20,10 +20,19 @@ msgstr ""
20
20
  msgid "Add"
21
21
  msgstr ""
22
22
 
23
+ #: components/CLMSSubscriptionView/ConfirmSubscriptionView
24
+ #: components/CLMSSubscriptionView/SubscriptionView
25
+ msgid "An error has occured. Please try again"
26
+ msgstr ""
27
+
23
28
  #: components/CLMSProfileView/CLMSApiTokensView
24
29
  msgid "ApiTokens"
25
30
  msgstr ""
26
31
 
32
+ #: components/CclFiltersModal/CclFiltersModal
33
+ msgid "Apply filters"
34
+ msgstr ""
35
+
27
36
  #: customizations/volto/components/manage/Toolbar/Toolbar
28
37
  msgid "Back"
29
38
  msgstr ""
@@ -36,10 +45,22 @@ msgstr ""
36
45
  msgid "Cart"
37
46
  msgstr ""
38
47
 
48
+ #: components/CLMSProfileView/CLMSNewsletterView
39
49
  #: components/CLMSProfileView/CLMSUserProfileView
50
+ #: components/CLMSSubscriptionView/ConfirmSubscriptionView
51
+ #: components/CLMSSubscriptionView/SubscriptionView
52
+ #: customizations/volto/components/theme/Footer/Footer
40
53
  msgid "Changes saved"
41
54
  msgstr ""
42
55
 
56
+ #: components/CclFiltersModal/CclFiltersModal
57
+ msgid "Clear filters"
58
+ msgstr ""
59
+
60
+ #: components/CLMSSubscriptionView/ConfirmSubscriptionView
61
+ msgid "Click on the button bellow to confirm your {subscribe_or_unsubscribe}"
62
+ msgstr ""
63
+
43
64
  #: customizations/volto/components/manage/Toolbar/Toolbar
44
65
  msgid "Collection"
45
66
  msgstr ""
@@ -64,6 +85,10 @@ msgstr ""
64
85
  msgid "Copy created token button"
65
86
  msgstr ""
66
87
 
88
+ #: components/CLMSMeetingView/CLMSMeetingView
89
+ msgid "Create registration form"
90
+ msgstr ""
91
+
67
92
  #: components/CLMSProfileView/CLMSApiTokensView
68
93
  msgid "Create token"
69
94
  msgstr ""
@@ -96,10 +121,16 @@ msgstr ""
96
121
  msgid "DownloadByArea"
97
122
  msgstr ""
98
123
 
124
+ #: components/CLMSProfileView/CLMSNewsletterView
99
125
  #: components/CLMSProfileView/CLMSUserProfileView
126
+ #: components/CLMSSubscriptionView/SubscriptionView
100
127
  msgid "E-mail"
101
128
  msgstr ""
102
129
 
130
+ #: components/CLMSDatasetDetailView/CLMSDatasetDetailView
131
+ msgid "EEA Geonetwork element"
132
+ msgstr ""
133
+
103
134
  #: customizations/volto/components/theme/Footer/Footer
104
135
  msgid "EIONETActionGroup"
105
136
  msgstr ""
@@ -117,10 +148,19 @@ msgstr ""
117
148
  msgid "Edit or remove image"
118
149
  msgstr ""
119
150
 
151
+ #: components/CLMSMeetingView/CLMSMeetingView
152
+ msgid "Edit registration form"
153
+ msgstr ""
154
+
120
155
  #: components/CLMSProfileView/CLMSUserProfileView
121
156
  msgid "Enter full name, e.g. John Smith."
122
157
  msgstr ""
123
158
 
159
+ #: components/CLMSSubscriptionView/ConfirmSubscriptionView
160
+ #: components/CLMSSubscriptionView/SubscriptionView
161
+ msgid "Error"
162
+ msgstr ""
163
+
124
164
  #: customizations/volto/components/manage/Toolbar/Toolbar
125
165
  msgid "File"
126
166
  msgstr ""
@@ -137,6 +177,14 @@ msgstr ""
137
177
  msgid "Home"
138
178
  msgstr ""
139
179
 
180
+ #: components/CLMSDatasetDetailView/CLMSDatasetDetailView
181
+ msgid "Import data"
182
+ msgstr ""
183
+
184
+ #: components/CLMSDatasetDetailView/CLMSDatasetDetailView
185
+ msgid "Import from GeoNetwork"
186
+ msgstr ""
187
+
140
188
  #: customizations/volto/components/theme/Logo/Logo
141
189
  msgid "Land Monitoring Service Site"
142
190
  msgstr ""
@@ -153,6 +201,10 @@ msgstr ""
153
201
  msgid "Lorem"
154
202
  msgstr ""
155
203
 
204
+ #: components/CLMSMeetingView/CLMSMeetingView
205
+ msgid "Mail archive"
206
+ msgstr ""
207
+
156
208
  #: customizations/volto/components/manage/Toolbar/Toolbar
157
209
  msgid "More"
158
210
  msgstr ""
@@ -165,6 +217,10 @@ msgstr ""
165
217
  msgid "Page"
166
218
  msgstr ""
167
219
 
220
+ #: components/CLMSMeetingView/CLMSMeetingView
221
+ msgid "Participants"
222
+ msgstr ""
223
+
168
224
  #: customizations/volto/components/manage/Toolbar/Toolbar
169
225
  msgid "Personal Information"
170
226
  msgstr ""
@@ -185,11 +241,20 @@ msgstr ""
185
241
  msgid "ProcurementNo"
186
242
  msgstr ""
187
243
 
244
+ #: components/Blocks/CustomTemplates/VoltoListingBlock/CclListingWorkOpportunities
245
+ msgid "ReferenceNo"
246
+ msgstr ""
247
+
248
+ #: components/CLMSMeetingView/CLMSMeetingView
249
+ msgid "Register to this meeting"
250
+ msgstr ""
251
+
188
252
  #: components/Blocks/CclHomeBgImageBlock/CclHomeImageEditor
189
253
  #: components/Blocks/CclHomeUsersBlock/CclHomeUsersBlockEdit
190
254
  msgid "Remove image"
191
255
  msgstr ""
192
256
 
257
+ #: components/Blocks/CustomTemplates/VoltoSearchBlock/RightModalFacets
193
258
  #: customizations/volto/components/theme/SearchWidget/SearchWidget
194
259
  #: customizations/volto/components/theme/View/ListingView
195
260
  msgid "Search"
@@ -215,7 +280,11 @@ msgstr ""
215
280
  msgid "SubmissionDeadline"
216
281
  msgstr ""
217
282
 
283
+ #: components/CLMSProfileView/CLMSNewsletterView
218
284
  #: components/CLMSProfileView/CLMSUserProfileView
285
+ #: components/CLMSSubscriptionView/ConfirmSubscriptionView
286
+ #: components/CLMSSubscriptionView/SubscriptionView
287
+ #: customizations/volto/components/theme/Footer/Footer
219
288
  msgid "Success"
220
289
  msgstr ""
221
290
 
@@ -223,8 +292,8 @@ msgstr ""
223
292
  msgid "The user portrait/avatar"
224
293
  msgstr ""
225
294
 
226
- #: customizations/volto/components/manage/Blocks/Title/Edit
227
- msgid "Type the title…"
295
+ #: customizations/volto/components/manage/Toolbar/Toolbar
296
+ msgid "Unlock"
228
297
  msgstr ""
229
298
 
230
299
  #: components/Blocks/CclHomeBgImageBlock/CclHomeImageEditor
@@ -237,11 +306,17 @@ msgstr ""
237
306
  msgid "Uploading file"
238
307
  msgstr ""
239
308
 
309
+ #: components/CLMSProfileView/CLMSNewsletterView
240
310
  #: components/CLMSProfileView/CLMSUserProfileView
241
311
  msgid "UserProfile"
242
312
  msgstr ""
243
313
 
314
+ #: components/CLMSDatasetDetailView/CLMSDatasetDetailView
315
+ msgid "VITO Geonetwork element"
316
+ msgstr ""
317
+
244
318
  #: components/Blocks/CustomTemplates/VoltoTabsBlock/CclProductTabsView
319
+ #: components/CLMSDatasetDetailView/CLMSDatasetDetailView
245
320
  msgid "View in the map viewer"
246
321
  msgstr ""
247
322
 
@@ -249,6 +324,26 @@ msgstr ""
249
324
  msgid "We will use this address if you need to recover your password"
250
325
  msgstr ""
251
326
 
327
+ #: components/CLMSProfileView/CLMSNewsletterView
328
+ msgid "We will use this address to send you the newsletter"
329
+ msgstr ""
330
+
331
+ #: components/CLMSSubscriptionView/SubscriptionView
332
+ msgid "We will use this address to send you the {type}"
333
+ msgstr ""
334
+
335
+ #: components/CLMSMeetingView/CLMSMeetingView
336
+ msgid "Web manager section"
337
+ msgstr ""
338
+
339
+ #: components/CLMSMeetingView/CLMSMeetingView
340
+ msgid "You are already registered"
341
+ msgstr ""
342
+
343
+ #: components/CLMSSubscriptionView/SubscriptionView
344
+ msgid "You will receive an email confirmation to"
345
+ msgstr ""
346
+
252
347
  #: components/CLMSProfileView/CLMSUserProfileView
253
348
  msgid "Your location - either city and country - or in a company setting, where your office is located."
254
349
  msgstr ""
@@ -266,6 +361,14 @@ msgstr ""
266
361
  msgid "all"
267
362
  msgstr ""
268
363
 
364
+ #: components/CLMSMeetingView/CLMSMeetingSubscribersView
365
+ msgid "approve_selected"
366
+ msgstr ""
367
+
368
+ #: components/CLMSMeetingView/CLMSMeetingEmailView
369
+ msgid "body"
370
+ msgstr ""
371
+
269
372
  #: components/CLMSMeetingView/CLMSMeetingEmailsView
270
373
  #: components/CLMSMeetingView/CLMSMeetingEmailView
271
374
  msgid "cc"
@@ -288,10 +391,18 @@ msgstr ""
288
391
  msgid "created title"
289
392
  msgstr ""
290
393
 
394
+ #: components/CLMSMeetingView/CLMSMeetingSubscribersView
395
+ msgid "delete_selected"
396
+ msgstr ""
397
+
291
398
  #: components/CLMSProfileView/CLMSApiTokensView
292
399
  msgid "descripton"
293
400
  msgstr ""
294
401
 
402
+ #: components/CLMSMeetingView/CLMSMeetingSubscribersView
403
+ msgid "download_selected"
404
+ msgstr ""
405
+
295
406
  #: components/CLMSMeetingView/CLMSMeetingSubscribersView
296
407
  #: components/CLMSMeetingView/CLMSMeetingSubscriberView
297
408
  msgid "email"
@@ -369,15 +480,87 @@ msgstr ""
369
480
  msgid "footerSecurity"
370
481
  msgstr ""
371
482
 
483
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
484
+ msgid "form_customId"
485
+ msgstr ""
486
+
487
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
488
+ msgid "form_field_description"
489
+ msgstr ""
490
+
491
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
492
+ msgid "form_field_input_values"
493
+ msgstr ""
494
+
495
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
496
+ msgid "form_field_label"
497
+ msgstr ""
498
+
499
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
500
+ msgid "form_field_required"
501
+ msgstr ""
502
+
503
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
504
+ msgid "form_field_type"
505
+ msgstr ""
506
+
507
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
508
+ msgid "form_field_type_attachment"
509
+ msgstr ""
510
+
511
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
512
+ msgid "form_field_type_attachment_info_text"
513
+ msgstr ""
514
+
515
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
516
+ msgid "form_field_type_checkbox"
517
+ msgstr ""
518
+
519
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
520
+ msgid "form_field_type_date"
521
+ msgstr ""
522
+
523
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
524
+ msgid "form_field_type_from"
525
+ msgstr ""
526
+
527
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
528
+ msgid "form_field_type_multiple_choice"
529
+ msgstr ""
530
+
531
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
532
+ msgid "form_field_type_select"
533
+ msgstr ""
534
+
535
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
536
+ msgid "form_field_type_single_choice"
537
+ msgstr ""
538
+
539
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
540
+ msgid "form_field_type_static_text"
541
+ msgstr ""
542
+
543
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
544
+ msgid "form_field_type_text"
545
+ msgstr ""
546
+
547
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
548
+ msgid "form_field_type_textarea"
549
+ msgstr ""
550
+
551
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
552
+ msgid "form_useAsReplyTo"
553
+ msgstr ""
554
+
555
+ #: components/Blocks/CustomTemplates/VoltoFormBlock/customIdFieldSchema
556
+ msgid "form_useAsReplyTo_description"
557
+ msgstr ""
558
+
372
559
  #: components/CLMSMeetingView/CLMSMeetingEmailsView
373
560
  #: components/CLMSMeetingView/CLMSMeetingEmailView
374
561
  msgid "from"
375
562
  msgstr ""
376
563
 
377
- #: customizations/volto/components/theme/Header/Header
378
- msgid "hello"
379
- msgstr ""
380
-
381
564
  #: components/CLMSMeetingView/CLMSMeetingView
382
565
  msgid "hosting_organisation"
383
566
  msgstr ""
@@ -386,7 +569,7 @@ msgstr ""
386
569
  msgid "jointResearchCenter"
387
570
  msgstr ""
388
571
 
389
- #: customizations/volto/components/theme/Header/Header
572
+ #: components/CclLoginModal/CclLoginModal
390
573
  msgid "loginRegister"
391
574
  msgstr ""
392
575
 
@@ -412,6 +595,11 @@ msgstr ""
412
595
  msgid "name"
413
596
  msgstr ""
414
597
 
598
+ #: components/CLMSMeetingView/CLMSMeetingEmailsView
599
+ #: components/CLMSMeetingView/CLMSMeetingSubscribersView
600
+ msgid "no_results"
601
+ msgstr ""
602
+
415
603
  #: components/CLMSMeetingView/CLMSMeetingSubscribersView
416
604
  #: components/CLMSMeetingView/CLMSMeetingSubscriberView
417
605
  msgid "organisation"
@@ -422,6 +610,10 @@ msgstr ""
422
610
  msgid "recipients"
423
611
  msgstr ""
424
612
 
613
+ #: components/CLMSMeetingView/CLMSMeetingSubscribersView
614
+ msgid "reject_selected"
615
+ msgstr ""
616
+
425
617
  #: components/Blocks/CclHomeSearchBlock/CclHomeSearchBlockEdit
426
618
  #: components/Blocks/CclHomeSearchBlock/CclHomeSearchBlockView
427
619
  msgid "searchDatasetsPlaceholder"
@@ -462,3 +654,11 @@ msgstr ""
462
654
  #: components/CLMSMeetingView/CLMSMeetingView
463
655
  msgid "visit_external_website"
464
656
  msgstr ""
657
+
658
+ #: components/CLMSSubscriptionView/SubscriptionView
659
+ msgid "{subscribe_or_unsubscribe} to the {type}"
660
+ msgstr ""
661
+
662
+ #: components/CLMSSubscriptionView/ConfirmSubscriptionView
663
+ msgid "{type} {subscribe_or_unsubscribe} confirm"
664
+ msgstr ""