@eeacms/volto-clms-theme 1.0.39 → 1.0.43

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 (67) hide show
  1. package/CHANGELOG.md +74 -0
  2. package/Jenkinsfile +28 -5
  3. package/locales/bg/LC_MESSAGES/volto.po +208 -14
  4. package/locales/cs/LC_MESSAGES/volto.po +208 -14
  5. package/locales/da/LC_MESSAGES/volto.po +208 -14
  6. package/locales/de/LC_MESSAGES/volto.po +208 -14
  7. package/locales/el/LC_MESSAGES/volto.po +208 -14
  8. package/locales/en/LC_MESSAGES/volto.po +208 -14
  9. package/locales/es/LC_MESSAGES/volto.po +208 -14
  10. package/locales/et/LC_MESSAGES/volto.po +208 -14
  11. package/locales/fi/LC_MESSAGES/volto.po +208 -14
  12. package/locales/fr/LC_MESSAGES/volto.po +208 -14
  13. package/locales/hr/LC_MESSAGES/volto.po +208 -14
  14. package/locales/hu/LC_MESSAGES/volto.po +208 -14
  15. package/locales/it/LC_MESSAGES/volto.po +208 -14
  16. package/locales/lt/LC_MESSAGES/volto.po +208 -14
  17. package/locales/lv/LC_MESSAGES/volto.po +208 -14
  18. package/locales/mt/LC_MESSAGES/volto.po +208 -14
  19. package/locales/nl/LC_MESSAGES/volto.po +208 -14
  20. package/locales/pl/LC_MESSAGES/volto.po +208 -14
  21. package/locales/pt/LC_MESSAGES/volto.po +208 -14
  22. package/locales/ro/LC_MESSAGES/volto.po +208 -14
  23. package/locales/sk/LC_MESSAGES/volto.po +208 -14
  24. package/locales/sl/LC_MESSAGES/volto.po +208 -14
  25. package/locales/sv/LC_MESSAGES/volto.po +208 -14
  26. package/locales/volto.pot +258 -17
  27. package/package.json +7 -3
  28. package/src/actions/index.js +2 -0
  29. package/src/actions/registry/registry.js +21 -0
  30. package/src/components/Blocks/CclHomeBgImageBlock/CclGreenBgView.jsx +32 -8
  31. package/src/components/Blocks/CclHomeBgImageBlock/CclHomeBgImageBlockEdit.jsx +5 -1
  32. package/src/components/Blocks/CclHomeBgImageBlock/CclHomeBgImageSchema.js +36 -7
  33. package/src/components/Blocks/CclRelatedListingBlock/CclRelatedListingEdit.jsx +95 -0
  34. package/src/components/Blocks/CclRelatedListingBlock/CclRelatedListingView.jsx +67 -0
  35. package/src/components/Blocks/CclRelatedListingBlock/schema.js +34 -0
  36. package/src/components/Blocks/CustomTemplates/VoltoListingBlock/CclListingWorkOpportunities.jsx +5 -15
  37. package/src/components/Blocks/CustomTemplates/VoltoTabsBlock/CclCarouselView.jsx +7 -2
  38. package/src/components/Blocks/CustomTemplates/VoltoTabsBlock/CclProductTabsView.jsx +41 -0
  39. package/src/components/Blocks/CustomTemplates/VoltoTabsBlock/CclVerticalFaqTabsView.jsx +19 -60
  40. package/src/components/Blocks/CustomTemplates/VoltoTabsBlock/CclVerticalTabsView.jsx +3 -47
  41. package/src/components/Blocks/CustomTemplates/VoltoTabsBlock/FixTemplates.jsx +19 -0
  42. package/src/components/Blocks/CustomTemplates/VoltoTabsBlock/RoutingHOC.jsx +63 -0
  43. package/src/components/Blocks/CustomTemplates/VoltoTabsBlock/index.js +6 -2
  44. package/src/components/Blocks/customBlocks.js +87 -35
  45. package/src/components/CLMSDatasetDetailView/CLMSDatasetDetailView.jsx +2 -4
  46. package/src/components/CLMSDatasetDetailView/DataSetInfoContent.jsx +6 -7
  47. package/src/components/CclCard/CclCard.jsx +1 -7
  48. package/src/components/CclLoginModal/CclLoginModal.jsx +68 -0
  49. package/src/components/CclLoginModal/ccl-login-modal.css +7 -0
  50. package/src/components/CclModal/CclModal.jsx +15 -5
  51. package/src/customizations/volto/components/theme/Header/Header.jsx +2 -11
  52. package/src/customizations/volto/components/theme/SearchWidget/SearchWidget.jsx +11 -3
  53. package/src/index.js +5 -5
  54. package/src/reducers/index.js +2 -0
  55. package/src/reducers/registry/registry.js +46 -0
  56. package/theme/clms/css/breadcrumbs.css +1 -0
  57. package/theme/clms/css/carousel.css +45 -0
  58. package/theme/clms/css/forms.css +6 -1
  59. package/theme/clms/css/home.css +11 -0
  60. package/theme/clms/css/maps.css +2 -1
  61. package/theme/clms/css/maps.less +2 -1
  62. package/theme/clms/css/styles.less +4 -0
  63. package/src/components/Blocks/CclTechnicalLibrariesList/CclTechnicalLibrariesListEdit.jsx +0 -63
  64. package/src/components/Blocks/CclTechnicalLibrariesList/CclTechnicalLibrariesListView.jsx +0 -43
  65. package/src/components/Blocks/CclTechnicalLibrariesList/TechnicalLibrariesListSchema.js +0 -17
  66. package/src/components/Blocks/CustomTemplates/VoltoTabsBlock/VerticalRouteTabsView.jsx +0 -156
  67. package/src/components/CLMSServiceDeskView/CLMSServiceDeskView.jsx +0 -113
package/CHANGELOG.md CHANGED
@@ -4,8 +4,82 @@ 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.43](https://github.com/eea/volto-clms-theme/compare/1.0.42...1.0.43)
8
+
9
+ - related-listing path [`6f94ebf`](https://github.com/eea/volto-clms-theme/commit/6f94ebf2b247c968afce42ef3e102f769b87e0be)
10
+
11
+ #### [1.0.42](https://github.com/eea/volto-clms-theme/compare/1.0.41...1.0.42)
12
+
13
+ > 30 November 2021
14
+
15
+ - Some more changes [`#130`](https://github.com/eea/volto-clms-theme/pull/130)
16
+ - Related listing [`#134`](https://github.com/eea/volto-clms-theme/pull/134)
17
+ - Button status [`#133`](https://github.com/eea/volto-clms-theme/pull/133)
18
+ - Carousel [`#132`](https://github.com/eea/volto-clms-theme/pull/132)
19
+ - Login popup [`#131`](https://github.com/eea/volto-clms-theme/pull/131)
20
+ - no items text [`b1e8430`](https://github.com/eea/volto-clms-theme/commit/b1e8430d6800fea1bf046bd2e0b00686bdf111f2)
21
+ - breadcrumb margin left 0 [`0f989e8`](https://github.com/eea/volto-clms-theme/commit/0f989e871dd8f20ad6ea4dbb89c04ef37854d544)
22
+ - add mostused [`2a5794f`](https://github.com/eea/volto-clms-theme/commit/2a5794f9dbbf5cd7e3a22d44a3b2de4e34d5436a)
23
+ - add mapviewer link to product tabs template [`2f210fc`](https://github.com/eea/volto-clms-theme/commit/2f210fc1a8a3c53a8649ac5be5fbf7c7bcdb541a)
24
+ - related dataset and technicalLibrary [`23becd3`](https://github.com/eea/volto-clms-theme/commit/23becd31613b35bed58488cbaf2f53a609d6b435)
25
+ - check when there is no existing variation [`2339fd0`](https://github.com/eea/volto-clms-theme/commit/2339fd055093f3622d112069855f2488220f86c7)
26
+ - set default values [`add1a47`](https://github.com/eea/volto-clms-theme/commit/add1a47300cc8e313923f27e529c1ef3a25b8369)
27
+ - rename carousel item [`3d8c612`](https://github.com/eea/volto-clms-theme/commit/3d8c612d2c7da673729a0e259bcce5d61bdb4f4b)
28
+ - fix initial setup [`c6d064a`](https://github.com/eea/volto-clms-theme/commit/c6d064a523ffddd32baba34cca51619c8e9f4434)
29
+ - fix initial variation selection [`7c00529`](https://github.com/eea/volto-clms-theme/commit/7c00529309051a4a7008a230097b917e867bff04)
30
+ - manage state on varousel view [`4c0ce0f`](https://github.com/eea/volto-clms-theme/commit/4c0ce0f73a900494ae6fbe1aea7216842d854e60)
31
+ - Carousel bug [`5aa1891`](https://github.com/eea/volto-clms-theme/commit/5aa18915ab0192146a327a14072c14cd4c3cb71e)
32
+ - remove one deprecated template [`a12a9fd`](https://github.com/eea/volto-clms-theme/commit/a12a9fd17e1b07d3e025f5891fd0b6d40a475f96)
33
+ - unused variable [`ac6171b`](https://github.com/eea/volto-clms-theme/commit/ac6171b629a8fab7acd9f382f0a430577fb4331e)
34
+ - tabs-block template id to default [`a3bdf6b`](https://github.com/eea/volto-clms-theme/commit/a3bdf6b887c5fd85798b5796e7610f3263f24f82)
35
+ - remove TL block, rename carousel item and add routing to FAQ navigation [`0e9c675`](https://github.com/eea/volto-clms-theme/commit/0e9c67580923143978819a78c279d6c94bfd0860)
36
+ - remove TL block, rename carousel item and add routing to FAQ navigation [`312eeb0`](https://github.com/eea/volto-clms-theme/commit/312eeb0778e18509e5ac8c2716f8e7ed10fd040f)
37
+ - add taxonomy deps [`df8addb`](https://github.com/eea/volto-clms-theme/commit/df8addb54d9f331dd947d9a39a73981a0eaaf772)
38
+ - header design bug fixed [`5ad7912`](https://github.com/eea/volto-clms-theme/commit/5ad7912f04ad67d7f6164ec9da6f02bfd5488a87)
39
+ - reducer bug fixed [`bf29e34`](https://github.com/eea/volto-clms-theme/commit/bf29e34ce4479e9a4bbe8a3e2eb13779d9718ab6)
40
+ - callback the modal status [`a1494f9`](https://github.com/eea/volto-clms-theme/commit/a1494f903d33d1d291ce52eabb0c1fb10c513dd5)
41
+ - registry keys from config.settings [`4867a52`](https://github.com/eea/volto-clms-theme/commit/4867a5204a22f99bab2d3412431164823447b514)
42
+ - anom-registry [`79d50c7`](https://github.com/eea/volto-clms-theme/commit/79d50c78539b98fda4758e832748f8c2f5748f48)
43
+ - related listing block and renaming listing templates [`91dda03`](https://github.com/eea/volto-clms-theme/commit/91dda0348b03f9bc5926a45b9d57380848300b7c)
44
+ - related listing block and renaming listing templates [`300b29f`](https://github.com/eea/volto-clms-theme/commit/300b29f320ce99fa3513582c8d5d9ea43761ced2)
45
+ - get registry value from redux action [`82e4ff7`](https://github.com/eea/volto-clms-theme/commit/82e4ff76aaca0cbdfaf947829965042d0e6e4855)
46
+ - dynamic registry request with key values [`ae1927d`](https://github.com/eea/volto-clms-theme/commit/ae1927d311262554be094476af55105d4fe6df33)
47
+ - dynamic registry request with key values [`5bf7cbb`](https://github.com/eea/volto-clms-theme/commit/5bf7cbb9cc816df5ce31ce1d9d5a06ababe6ed16)
48
+ - login modal component [`6b03fff`](https://github.com/eea/volto-clms-theme/commit/6b03fffdb592015166d950e56aaa5623a51e68aa)
49
+ - use date comparisons [`fd9ec67`](https://github.com/eea/volto-clms-theme/commit/fd9ec6797b35c8eee342885e859e1d9dd9a296ec)
50
+ - change links in products card [`fb539fb`](https://github.com/eea/volto-clms-theme/commit/fb539fbe1f9c087f1bf44b241506d51ddc584a71)
51
+ - green bg block [`f025495`](https://github.com/eea/volto-clms-theme/commit/f02549541c0d8b20c441c650eb16d9a3948445d8)
52
+ - searchwidget and carousel changes [`923c403`](https://github.com/eea/volto-clms-theme/commit/923c403cbf1f2b5118d2a41385dbfe4b403f8b51)
53
+ - some fixes and new features on bg image block [`3fb3c51`](https://github.com/eea/volto-clms-theme/commit/3fb3c5173eaacb1c3a2bbd0fc34a061ff17294f0)
54
+
55
+ #### [1.0.41](https://github.com/eea/volto-clms-theme/compare/1.0.40...1.0.41)
56
+
57
+ > 25 November 2021
58
+
59
+ - Develop [`#129`](https://github.com/eea/volto-clms-theme/pull/129)
60
+ - Map download styles [`#128`](https://github.com/eea/volto-clms-theme/pull/128)
61
+ - Product tab view [`#127`](https://github.com/eea/volto-clms-theme/pull/127)
62
+ - routing HOC for tabs templating [`#126`](https://github.com/eea/volto-clms-theme/pull/126)
63
+ - locales [`accf22d`](https://github.com/eea/volto-clms-theme/commit/accf22d2f925055b4fa838b86ee355449eb8aacb)
64
+ - product-tab-view [`36fde2d`](https://github.com/eea/volto-clms-theme/commit/36fde2d10c6904548efcd8fd7790df173ce420ea)
65
+ - change literals [`ef5a305`](https://github.com/eea/volto-clms-theme/commit/ef5a3057e844122d830e215b9290673c069c32aa)
66
+ - rename variations, add new product variation and remove routes variation [`39ed4b2`](https://github.com/eea/volto-clms-theme/commit/39ed4b26724a565e00db802658eed09a72a22b3c)
67
+
68
+ #### [1.0.40](https://github.com/eea/volto-clms-theme/compare/1.0.39...1.0.40)
69
+
70
+ > 24 November 2021
71
+
72
+ - Improvements for a new release [`#125`](https://github.com/eea/volto-clms-theme/pull/125)
73
+ - Revert "Revert "add volto-form-block"" [`#124`](https://github.com/eea/volto-clms-theme/pull/124)
74
+ - Revert "add volto-form-block" [`#123`](https://github.com/eea/volto-clms-theme/pull/123)
75
+ - add volto-form-block [`#122`](https://github.com/eea/volto-clms-theme/pull/122)
76
+ - Refs #142010 - Optimize Volto-addons gitflow pipelines [`1cce7fa`](https://github.com/eea/volto-clms-theme/commit/1cce7fa8300afb67ca6e01a93acdc66649b505cd)
77
+
7
78
  #### [1.0.39](https://github.com/eea/volto-clms-theme/compare/1.0.38...1.0.39)
8
79
 
80
+ > 23 November 2021
81
+
82
+ - Develop [`#118`](https://github.com/eea/volto-clms-theme/pull/118)
9
83
  - Tab Hash [`#121`](https://github.com/eea/volto-clms-theme/pull/121)
10
84
  - Volto-clms-utils [`#120`](https://github.com/eea/volto-clms-theme/pull/120)
11
85
  - Style fixes [`#119`](https://github.com/eea/volto-clms-theme/pull/119)
package/Jenkinsfile CHANGED
@@ -11,6 +11,13 @@ pipeline {
11
11
  stages {
12
12
 
13
13
  stage('Code') {
14
+ when {
15
+ allOf {
16
+ environment name: 'CHANGE_ID', value: ''
17
+ not { branch 'master' }
18
+ not { changelog '.*^Automated release [0-9\\.]+$' }
19
+ }
20
+ }
14
21
  steps {
15
22
  parallel(
16
23
 
@@ -36,6 +43,13 @@ pipeline {
36
43
  }
37
44
 
38
45
  stage('Tests') {
46
+ when {
47
+ allOf {
48
+ environment name: 'CHANGE_ID', value: ''
49
+ not { branch 'master' }
50
+ not { changelog '.*^Automated release [0-9\\.]+$' }
51
+ }
52
+ }
39
53
  steps {
40
54
  parallel(
41
55
 
@@ -75,6 +89,13 @@ pipeline {
75
89
  }
76
90
 
77
91
  stage('Integration tests') {
92
+ when {
93
+ allOf {
94
+ environment name: 'CHANGE_ID', value: ''
95
+ not { branch 'master' }
96
+ not { changelog '.*^Automated release [0-9\\.]+$' }
97
+ }
98
+ }
78
99
  steps {
79
100
  parallel(
80
101
 
@@ -122,11 +143,13 @@ pipeline {
122
143
  }
123
144
 
124
145
  stage('Report to SonarQube') {
125
- // Exclude Pull-Requests
126
146
  when {
127
- allOf {
128
147
  environment name: 'CHANGE_ID', value: ''
129
- }
148
+ anyOf {
149
+ branch 'master'
150
+ branch 'develop'
151
+ }
152
+ not { changelog '.*^Automated release [0-9\\.]+$' }
130
153
  }
131
154
  steps {
132
155
  node(label: 'swarm') {
@@ -156,8 +179,8 @@ pipeline {
156
179
  steps {
157
180
  node(label: 'docker') {
158
181
  script {
159
- if ( env.CHANGE_BRANCH != "develop" && !( env.CHANGE_BRANCH.startsWith("hotfix")) ) {
160
- error "Pipeline aborted due to PR not made from develop or hotfix branch"
182
+ if ( env.CHANGE_BRANCH != "develop" ) {
183
+ error "Pipeline aborted due to PR not made from develop branch"
161
184
  }
162
185
  withCredentials([string(credentialsId: 'eea-jenkins-token', variable: 'GITHUB_TOKEN')]) {
163
186
  sh '''docker pull eeacms/gitflow'''
@@ -20,7 +20,10 @@ msgstr ""
20
20
  msgid "Add"
21
21
  msgstr ""
22
22
 
23
- #: components/CLMSProfileView/CLMSProfileView
23
+ #: components/CLMSProfileView/CLMSApiTokensView
24
+ msgid "ApiTokens"
25
+ msgstr ""
26
+
24
27
  #: customizations/volto/components/manage/Toolbar/Toolbar
25
28
  msgid "Back"
26
29
  msgstr ""
@@ -29,7 +32,11 @@ msgstr ""
29
32
  msgid "Breadcrumbs"
30
33
  msgstr ""
31
34
 
32
- #: components/CLMSProfileView/CLMSProfileView
35
+ #: components/CLMSDownloadCartView/CLMSDownloadCartView
36
+ msgid "Cart"
37
+ msgstr ""
38
+
39
+ #: components/CLMSProfileView/CLMSUserProfileView
33
40
  msgid "Changes saved"
34
41
  msgstr ""
35
42
 
@@ -53,11 +60,43 @@ msgstr ""
53
60
  msgid "Copernicus Site"
54
61
  msgstr ""
55
62
 
56
- #: components/CLMSProfileView/CLMSProfileView
63
+ #: components/CLMSProfileView/CLMSApiTokensView
64
+ msgid "Copy created token button"
65
+ msgstr ""
66
+
67
+ #: components/CLMSProfileView/CLMSApiTokensView
68
+ msgid "Create token"
69
+ msgstr ""
70
+
71
+ #: components/CLMSProfileView/CLMSApiTokensView
72
+ msgid "Create token description"
73
+ msgstr ""
74
+
75
+ #: components/CLMSProfileView/CLMSApiTokensView
76
+ msgid "Create token name"
77
+ msgstr ""
78
+
79
+ #: components/CLMSProfileView/CLMSApiTokensView
80
+ msgid "Created token description"
81
+ msgstr ""
82
+
83
+ #: components/CLMSProfileView/CLMSApiTokensView
84
+ msgid "Created token name"
85
+ msgstr ""
86
+
87
+ #: components/CLMSProfileView/CLMSUserProfileView
57
88
  msgid "Default"
58
89
  msgstr ""
59
90
 
60
- #: components/CLMSProfileView/CLMSProfileView
91
+ #: components/CLMSProfileView/CLMSApiTokensView
92
+ msgid "Delete the token"
93
+ msgstr ""
94
+
95
+ #: components/CLMSMapViewerView/CLMSMapViewerView
96
+ msgid "DownloadByArea"
97
+ msgstr ""
98
+
99
+ #: components/CLMSProfileView/CLMSUserProfileView
61
100
  msgid "E-mail"
62
101
  msgstr ""
63
102
 
@@ -78,7 +117,7 @@ msgstr ""
78
117
  msgid "Edit or remove image"
79
118
  msgstr ""
80
119
 
81
- #: components/CLMSProfileView/CLMSProfileView
120
+ #: components/CLMSProfileView/CLMSUserProfileView
82
121
  msgid "Enter full name, e.g. John Smith."
83
122
  msgstr ""
84
123
 
@@ -86,10 +125,14 @@ msgstr ""
86
125
  msgid "File"
87
126
  msgstr ""
88
127
 
89
- #: components/CLMSProfileView/CLMSProfileView
128
+ #: components/CLMSProfileView/CLMSUserProfileView
90
129
  msgid "Full Name"
91
130
  msgstr ""
92
131
 
132
+ #: components/CLMSProfileView/CLMSApiTokensView
133
+ msgid "Go back button"
134
+ msgstr ""
135
+
93
136
  #: customizations/volto/components/theme/Breadcrumbs/Breadcrumbs
94
137
  msgid "Home"
95
138
  msgstr ""
@@ -102,10 +145,14 @@ msgstr ""
102
145
  msgid "Link"
103
146
  msgstr ""
104
147
 
105
- #: components/CLMSProfileView/CLMSProfileView
148
+ #: components/CLMSProfileView/CLMSUserProfileView
106
149
  msgid "Location"
107
150
  msgstr ""
108
151
 
152
+ #: components/CLMSDownloadCartView/CLMSDownloadCartView
153
+ msgid "Lorem"
154
+ msgstr ""
155
+
109
156
  #: customizations/volto/components/manage/Toolbar/Toolbar
110
157
  msgid "More"
111
158
  msgstr ""
@@ -118,7 +165,6 @@ msgstr ""
118
165
  msgid "Page"
119
166
  msgstr ""
120
167
 
121
- #: components/CLMSProfileView/CLMSProfileView
122
168
  #: customizations/volto/components/manage/Toolbar/Toolbar
123
169
  msgid "Personal Information"
124
170
  msgstr ""
@@ -131,10 +177,14 @@ msgstr ""
131
177
  msgid "Personal tools"
132
178
  msgstr ""
133
179
 
134
- #: components/CLMSProfileView/CLMSProfileView
180
+ #: components/CLMSProfileView/CLMSUserProfileView
135
181
  msgid "Portrait"
136
182
  msgstr ""
137
183
 
184
+ #: components/Blocks/CustomTemplates/VoltoListingBlock/CclListingWorkOpportunities
185
+ msgid "ProcurementNo"
186
+ msgstr ""
187
+
138
188
  #: components/Blocks/CclHomeBgImageBlock/CclHomeImageEditor
139
189
  #: components/Blocks/CclHomeUsersBlock/CclHomeUsersBlockEdit
140
190
  msgid "Remove image"
@@ -161,11 +211,15 @@ msgstr ""
161
211
  msgid "Shrink toolbar"
162
212
  msgstr ""
163
213
 
164
- #: components/CLMSProfileView/CLMSProfileView
214
+ #: components/Blocks/CustomTemplates/VoltoListingBlock/CclListingWorkOpportunities
215
+ msgid "SubmissionDeadline"
216
+ msgstr ""
217
+
218
+ #: components/CLMSProfileView/CLMSUserProfileView
165
219
  msgid "Success"
166
220
  msgstr ""
167
221
 
168
- #: components/CLMSProfileView/CLMSProfileView
222
+ #: components/CLMSProfileView/CLMSUserProfileView
169
223
  msgid "The user portrait/avatar"
170
224
  msgstr ""
171
225
 
@@ -183,15 +237,19 @@ msgstr ""
183
237
  msgid "Uploading file"
184
238
  msgstr ""
185
239
 
186
- #: components/CLMSProfileView/CLMSProfileView
240
+ #: components/CLMSProfileView/CLMSUserProfileView
187
241
  msgid "UserProfile"
188
242
  msgstr ""
189
243
 
190
- #: components/CLMSProfileView/CLMSProfileView
244
+ #: components/Blocks/CustomTemplates/VoltoTabsBlock/CclProductTabsView
245
+ msgid "View in the map viewer"
246
+ msgstr ""
247
+
248
+ #: components/CLMSProfileView/CLMSUserProfileView
191
249
  msgid "We will use this address if you need to recover your password"
192
250
  msgstr ""
193
251
 
194
- #: components/CLMSProfileView/CLMSProfileView
252
+ #: components/CLMSProfileView/CLMSUserProfileView
195
253
  msgid "Your location - either city and country - or in a company setting, where your office is located."
196
254
  msgstr ""
197
255
 
@@ -203,6 +261,16 @@ msgstr ""
203
261
  msgid "agreePrivacyPolicyLinkText"
204
262
  msgstr ""
205
263
 
264
+ #: components/CLMSMeetingView/CLMSMeetingEmailsView
265
+ #: components/CLMSMeetingView/CLMSMeetingEmailView
266
+ msgid "all"
267
+ msgstr ""
268
+
269
+ #: components/CLMSMeetingView/CLMSMeetingEmailsView
270
+ #: components/CLMSMeetingView/CLMSMeetingEmailView
271
+ msgid "cc"
272
+ msgstr ""
273
+
206
274
  #: customizations/volto/components/theme/Footer/Footer
207
275
  msgid "copernicusServices"
208
276
  msgstr ""
@@ -212,6 +280,63 @@ msgstr ""
212
280
  msgid "countText"
213
281
  msgstr ""
214
282
 
283
+ #: components/CLMSProfileView/CLMSApiTokensView
284
+ msgid "create title"
285
+ msgstr ""
286
+
287
+ #: components/CLMSProfileView/CLMSApiTokensView
288
+ msgid "created title"
289
+ msgstr ""
290
+
291
+ #: components/CLMSProfileView/CLMSApiTokensView
292
+ msgid "descripton"
293
+ msgstr ""
294
+
295
+ #: components/CLMSMeetingView/CLMSMeetingSubscribersView
296
+ #: components/CLMSMeetingView/CLMSMeetingSubscriberView
297
+ msgid "email"
298
+ msgstr ""
299
+
300
+ #: components/CLMSMeetingView/CLMSMeetingView
301
+ msgid "event_alldates"
302
+ msgstr ""
303
+
304
+ #: components/CLMSMeetingView/CLMSMeetingView
305
+ msgid "event_attendees"
306
+ msgstr ""
307
+
308
+ #: components/CLMSMeetingView/CLMSMeetingView
309
+ msgid "event_contactname"
310
+ msgstr ""
311
+
312
+ #: components/CLMSMeetingView/CLMSMeetingView
313
+ msgid "event_contactphone"
314
+ msgstr ""
315
+
316
+ #: components/CLMSMeetingView/CLMSMeetingView
317
+ msgid "event_website"
318
+ msgstr ""
319
+
320
+ #: components/CLMSMeetingView/CLMSMeetingView
321
+ msgid "event_what"
322
+ msgstr ""
323
+
324
+ #: components/CLMSMeetingView/CLMSMeetingView
325
+ msgid "event_when"
326
+ msgstr ""
327
+
328
+ #: components/CLMSMeetingView/CLMSMeetingView
329
+ msgid "event_where"
330
+ msgstr ""
331
+
332
+ #: components/CLMSProfileView/CLMSApiTokensView
333
+ msgid "existing tokens"
334
+ msgstr ""
335
+
336
+ #: components/CLMSProfileView/CLMSApiTokensView
337
+ msgid "existing tokens description"
338
+ msgstr ""
339
+
215
340
  #: customizations/volto/components/theme/Footer/Footer
216
341
  msgid "expertSupportProvidedBy"
217
342
  msgstr ""
@@ -244,10 +369,19 @@ msgstr ""
244
369
  msgid "footerSecurity"
245
370
  msgstr ""
246
371
 
372
+ #: components/CLMSMeetingView/CLMSMeetingEmailsView
373
+ #: components/CLMSMeetingView/CLMSMeetingEmailView
374
+ msgid "from"
375
+ msgstr ""
376
+
247
377
  #: customizations/volto/components/theme/Header/Header
248
378
  msgid "hello"
249
379
  msgstr ""
250
380
 
381
+ #: components/CLMSMeetingView/CLMSMeetingView
382
+ msgid "hosting_organisation"
383
+ msgstr ""
384
+
251
385
  #: customizations/volto/components/theme/Footer/Footer
252
386
  msgid "jointResearchCenter"
253
387
  msgstr ""
@@ -260,11 +394,71 @@ msgstr ""
260
394
  msgid "logout"
261
395
  msgstr ""
262
396
 
397
+ #: components/CLMSMeetingView/CLMSMeetingView
398
+ msgid "meetinglevel"
399
+ msgstr ""
400
+
401
+ #: components/CLMSMeetingView/CLMSMeetingView
402
+ msgid "meetingtype"
403
+ msgstr ""
404
+
405
+ #: components/CLMSMeetingView/CLMSMeetingEmailsView
406
+ #: components/CLMSMeetingView/CLMSMeetingEmailView
407
+ msgid "modified"
408
+ msgstr ""
409
+
410
+ #: components/CLMSMeetingView/CLMSMeetingSubscribersView
411
+ #: components/CLMSMeetingView/CLMSMeetingSubscriberView
412
+ msgid "name"
413
+ msgstr ""
414
+
415
+ #: components/CLMSMeetingView/CLMSMeetingSubscribersView
416
+ #: components/CLMSMeetingView/CLMSMeetingSubscriberView
417
+ msgid "organisation"
418
+ msgstr ""
419
+
420
+ #: components/CLMSMeetingView/CLMSMeetingEmailsView
421
+ #: components/CLMSMeetingView/CLMSMeetingEmailView
422
+ msgid "recipients"
423
+ msgstr ""
424
+
263
425
  #: components/Blocks/CclHomeSearchBlock/CclHomeSearchBlockEdit
264
426
  #: components/Blocks/CclHomeSearchBlock/CclHomeSearchBlockView
265
427
  msgid "searchDatasetsPlaceholder"
266
428
  msgstr ""
267
429
 
430
+ #: components/CLMSMeetingView/CLMSMeetingSubscribersView
431
+ #: components/CLMSMeetingView/CLMSMeetingSubscriberView
432
+ msgid "state"
433
+ msgstr ""
434
+
435
+ #: components/CLMSMeetingView/CLMSMeetingEmailsView
436
+ #: components/CLMSMeetingView/CLMSMeetingEmailView
437
+ msgid "subject"
438
+ msgstr ""
439
+
268
440
  #: customizations/volto/components/theme/Footer/Footer
269
441
  msgid "subscribe"
270
442
  msgstr ""
443
+
444
+ #: components/CLMSProfileView/CLMSApiTokensView
445
+ msgid "title"
446
+ msgstr ""
447
+
448
+ #: components/CLMSProfileView/CLMSApiTokensView
449
+ msgid "tokenTitleLabel"
450
+ msgstr ""
451
+
452
+ #: components/CLMSMeetingView/CLMSMeetingEmailsView
453
+ #: components/CLMSMeetingView/CLMSMeetingEmailView
454
+ msgid "type"
455
+ msgstr ""
456
+
457
+ #: components/CLMSMeetingView/CLMSMeetingSubscribersView
458
+ #: components/CLMSMeetingView/CLMSMeetingSubscriberView
459
+ msgid "user_name"
460
+ msgstr ""
461
+
462
+ #: components/CLMSMeetingView/CLMSMeetingView
463
+ msgid "visit_external_website"
464
+ msgstr ""