@eeacms/volto-eea-website-theme 3.15.0 → 3.17.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.
Files changed (33) hide show
  1. package/CHANGELOG.md +15 -3
  2. package/jest-addon.config.js +6 -0
  3. package/locales/de/LC_MESSAGES/volto.po +95 -0
  4. package/locales/en/LC_MESSAGES/volto.po +95 -0
  5. package/locales/it/LC_MESSAGES/volto.po +95 -0
  6. package/locales/ro/LC_MESSAGES/volto.po +95 -0
  7. package/locales/volto.pot +96 -1
  8. package/package.json +2 -2
  9. package/src/__mocks__/redux-localstorage-simple-original.js +3 -0
  10. package/src/__mocks__/volto-subsites-utils.js +2 -0
  11. package/src/actions/navigation.test.js +113 -0
  12. package/src/actions/print.test.js +74 -0
  13. package/src/components/manage/Blocks/ContextNavigation/ContextNavigationEdit.test.jsx +0 -2
  14. package/src/components/theme/Banner/View.test.jsx +462 -0
  15. package/src/components/theme/BaseTag.test.jsx +181 -0
  16. package/src/components/theme/Logo.jsx +49 -6
  17. package/src/components/theme/NotFound/GoneView.jsx +181 -0
  18. package/src/components/theme/NotFound/GoneView.test.jsx +216 -0
  19. package/src/components/theme/NotFound/NotFound.test.jsx +62 -0
  20. package/src/components/theme/SubsiteClass.test.jsx +307 -0
  21. package/src/components/theme/Widgets/UserSelectWidget.test.jsx +11 -1
  22. package/src/customizations/volto/components/manage/Workflow/Workflow.test.jsx +19 -2
  23. package/src/customizations/volto/components/theme/Error/ErrorBoundary.jsx +47 -0
  24. package/src/customizations/volto/components/theme/Header/Header.jsx +55 -14
  25. package/src/customizations/volto/components/theme/Header/Header.test.jsx +188 -1
  26. package/src/customizations/volto/components/theme/Header/LanguageSwitcher.jsx +22 -4
  27. package/src/customizations/volto/server.jsx +14 -2
  28. package/src/helpers/schema-utils.test.js +261 -0
  29. package/src/hocs/withErrorBoundary.jsx +29 -0
  30. package/src/hocs/withErrorBoundary.test.jsx +104 -0
  31. package/src/index.js +2 -0
  32. package/src/middleware/conditionalLocalStorage.test.js +185 -0
  33. package/src/middleware/ok.test.js +162 -0
package/CHANGELOG.md CHANGED
@@ -4,15 +4,27 @@ 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
- ### [3.15.0](https://github.com/eea/volto-eea-website-theme/compare/3.14.1...3.15.0) - 3 December 2025
7
+ ### [3.17.0](https://github.com/eea/volto-eea-website-theme/compare/3.16.0...3.17.0) - 23 December 2025
8
8
 
9
9
  #### :rocket: New Features
10
10
 
11
- - feat: Add restricted options for group block - refs #294358 [dobri1408 - [`e23808d`](https://github.com/eea/volto-eea-website-theme/commit/e23808d2fa6ca252032b5a82915fe175b26be913)]
11
+ - feat: Add HTTP 410 - Gone Error Page - refs #293748 [Alin Voinea - [`80d4873`](https://github.com/eea/volto-eea-website-theme/commit/80d4873c0f7e67d435a33c00226d5dccf54ea888)]
12
12
 
13
13
  #### :hammer_and_wrench: Others
14
14
 
15
- - Release 3.15.0 [Alin Voinea - [`7ee262b`](https://github.com/eea/volto-eea-website-theme/commit/7ee262b0bcb09b221358bcc1d7c6b43464a86731)]
15
+ - tests: Increase tests coverage [Alin Voinea - [`d6e9c21`](https://github.com/eea/volto-eea-website-theme/commit/d6e9c2134e20a2145c6e2e11e1cce1e416c3b85f)]
16
+ ### [3.16.0](https://github.com/eea/volto-eea-website-theme/compare/3.15.0...3.16.0) - 4 December 2025
17
+
18
+ #### :rocket: New Features
19
+
20
+ - feat: Custom Error boundary - refs #291209 [Nilesh - [`6d0cf06`](https://github.com/eea/volto-eea-website-theme/commit/6d0cf06d5c3603359eda6986c69e131e0265b8d9)]
21
+
22
+ ### [3.15.0](https://github.com/eea/volto-eea-website-theme/compare/3.14.1...3.15.0) - 3 December 2025
23
+
24
+ #### :rocket: New Features
25
+
26
+ - feat: Add restricted options for group block - refs #294358 [dobri1408 - [`e23808d`](https://github.com/eea/volto-eea-website-theme/commit/e23808d2fa6ca252032b5a82915fe175b26be913)]
27
+
16
28
  ### [3.14.1](https://github.com/eea/volto-eea-website-theme/compare/3.14.0...3.14.1) - 17 November 2025
17
29
 
18
30
  ### [3.14.0](https://github.com/eea/volto-eea-website-theme/compare/3.13.0...3.14.0) - 6 November 2025
@@ -412,6 +412,9 @@ module.exports = {
412
412
  'config\\.[jt]sx?$',
413
413
  ],
414
414
  moduleNameMapper: {
415
+ // Mock external modules that may not be available in test environment
416
+ 'volto-subsites/utils': `<rootDir>/src/addons/${addonName}/src/__mocks__/volto-subsites-utils.js`,
417
+ 'redux-localstorage-simple-original': `<rootDir>/src/addons/${addonName}/src/__mocks__/redux-localstorage-simple-original.js`,
415
418
  '\\.(css|less|scss|sass)$': 'identity-obj-proxy',
416
419
  '@plone/volto/cypress': '<rootDir>/node_modules/@plone/volto/cypress',
417
420
  '@plone/volto/babel': '<rootDir>/node_modules/@plone/volto/babel',
@@ -421,6 +424,9 @@ module.exports = {
421
424
  '@plone/volto-quanta/(.*)$': '<rootDir>/src/addons/volto-quanta/src/$1',
422
425
  '@eeacms/search/(.*)$': '<rootDir>/src/addons/volto-searchlib/searchlib/$1',
423
426
  '@eeacms/search': '<rootDir>/src/addons/volto-searchlib/searchlib',
427
+ // IMPORTANT: Map current addon to local source BEFORE the generic @eeacms pattern
428
+ // This ensures tests use the local development version instead of node_modules
429
+ [`^@eeacms/${addonName}/(.*)$`]: `<rootDir>/src/addons/${addonName}/src/$1`,
424
430
  '@eeacms/(.*?)/(.*)$': '<rootDir>/node_modules/@eeacms/$1/src/$2',
425
431
  '@plone/volto-slate$':
426
432
  '<rootDir>/node_modules/@plone/volto/packages/volto-slate/src',
@@ -11,6 +11,11 @@ msgstr ""
11
11
  "Content-Transfer-Encoding: \n"
12
12
  "Plural-Forms: \n"
13
13
 
14
+ #. Default: "Add"
15
+ #: components/theme/Widgets/SimpleArrayWidget
16
+ msgid "Add"
17
+ msgstr ""
18
+
14
19
  #. Default: "Choices"
15
20
  #: components/theme/Widgets/CreatableSelectWidget
16
21
  msgid "Choices"
@@ -51,11 +56,36 @@ msgstr ""
51
56
  msgid "Group"
52
57
  msgstr ""
53
58
 
59
+ #. Default: "Hide Children From Navigation"
60
+ #: components/theme/Widgets/NavigationBehaviorWidget
61
+ msgid "Hide Children From Navigation"
62
+ msgstr ""
63
+
54
64
  #. Default: "Invalid block - Will be removed on saving"
55
65
  #: components/manage/Blocks/GroupBlockTemplate/FlexGroup/RenderBlocks
56
66
  msgid "Invalid Block"
57
67
  msgstr ""
58
68
 
69
+ #. Default: "Load Main Navigation Routes"
70
+ #: components/theme/Widgets/NavigationBehaviorWidget
71
+ msgid "Load Main Navigation Routes"
72
+ msgstr ""
73
+
74
+ #. Default: "Looking for something specific?"
75
+ #: components/theme/NotFound/GoneView
76
+ msgid "Looking for something specific?"
77
+ msgstr ""
78
+
79
+ #. Default: "Menu Item Children List Columns"
80
+ #: components/theme/Widgets/NavigationBehaviorWidget
81
+ msgid "Menu Item Children List Columns"
82
+ msgstr ""
83
+
84
+ #. Default: "Menu Item Columns"
85
+ #: components/theme/Widgets/NavigationBehaviorWidget
86
+ msgid "Menu Item Columns"
87
+ msgstr ""
88
+
59
89
  #. Default: "Modified"
60
90
  #: components/theme/Banner/View
61
91
  msgid "Modified"
@@ -78,11 +108,21 @@ msgstr ""
78
108
  msgid "No value"
79
109
  msgstr ""
80
110
 
111
+ #. Default: "Preparing download"
112
+ #: components/theme/PrintLoader/PrintLoader
113
+ msgid "Preparing download"
114
+ msgstr ""
115
+
81
116
  #. Default: "Published"
82
117
  #: components/theme/Banner/View
83
118
  msgid "Published"
84
119
  msgstr ""
85
120
 
121
+ #. Default: "Remove"
122
+ #: components/theme/Widgets/SimpleArrayWidget
123
+ msgid "Remove"
124
+ msgstr ""
125
+
86
126
  #. Default: "Required"
87
127
  #: components/theme/Widgets/CreatableSelectWidget
88
128
  msgid "Required"
@@ -115,11 +155,26 @@ msgstr ""
115
155
  msgid "Site"
116
156
  msgstr ""
117
157
 
158
+ #. Default: "This content was part of our previous website and is no longer available. We've recently upgraded our platform and restructured our content to serve you better."
159
+ #: components/theme/NotFound/GoneView
160
+ msgid "This content was part of our previous website and is no longer available. We've recently upgraded our platform and restructured our content to serve you better."
161
+ msgstr ""
162
+
163
+ #. Default: "This page has been retired"
164
+ #: components/theme/NotFound/GoneView
165
+ msgid "This page has been retired"
166
+ msgstr ""
167
+
118
168
  #. Default: "Title"
119
169
  #: components/theme/Widgets/CreatableSelectWidget
120
170
  msgid "Title"
121
171
  msgstr ""
122
172
 
173
+ #. Default: "Try our {search} or visit our {homepage} to find what you need on our updated site."
174
+ #: components/theme/NotFound/GoneView
175
+ msgid "Try our {search} or visit our {homepage} to find what you need on our updated site."
176
+ msgstr ""
177
+
123
178
  #. Default: "Type text..."
124
179
  #: components/theme/Widgets/ADUserGroupSelectWidget
125
180
  #: components/theme/Widgets/UserSelectWidget
@@ -146,7 +201,47 @@ msgstr ""
146
201
  msgid "User"
147
202
  msgstr ""
148
203
 
204
+ #. Default: "View archived version"
205
+ #: components/theme/NotFound/GoneView
206
+ msgid "View archived version"
207
+ msgstr ""
208
+
209
+ #. Default: "Wayback Machine"
210
+ #: components/theme/NotFound/GoneView
211
+ msgid "Wayback Machine"
212
+ msgstr ""
213
+
214
+ #. Default: "What you can do?"
215
+ #: components/theme/NotFound/GoneView
216
+ msgid "What you can do?"
217
+ msgstr ""
218
+
219
+ #. Default: "You may be able to find an archived copy of this page on the {archive_url}"
220
+ #: components/theme/NotFound/GoneView
221
+ msgid "You may be able to find an archived copy of this page on the {archive_url}"
222
+ msgstr ""
223
+
224
+ #. Default: "homepage"
225
+ #: components/theme/NotFound/GoneView
226
+ msgid "homepage"
227
+ msgstr ""
228
+
229
+ #. Default: "Restrict access to this block based on user permissions"
230
+ #: index
231
+ msgid "restrictedBlockDescription"
232
+ msgstr ""
233
+
234
+ #. Default: "Restricted block"
235
+ #: index
236
+ msgid "restrictedBlockTitle"
237
+ msgstr ""
238
+
149
239
  #. Default: "RSS Feed"
150
240
  #: components/theme/Banner/View
151
241
  msgid "rssFeed"
152
242
  msgstr ""
243
+
244
+ #. Default: "search"
245
+ #: components/theme/NotFound/GoneView
246
+ msgid "search"
247
+ msgstr ""
@@ -11,6 +11,11 @@ msgstr ""
11
11
  "Content-Transfer-Encoding: \n"
12
12
  "Plural-Forms: \n"
13
13
 
14
+ #. Default: "Add"
15
+ #: components/theme/Widgets/SimpleArrayWidget
16
+ msgid "Add"
17
+ msgstr ""
18
+
14
19
  #. Default: "Choices"
15
20
  #: components/theme/Widgets/CreatableSelectWidget
16
21
  msgid "Choices"
@@ -51,11 +56,36 @@ msgstr ""
51
56
  msgid "Group"
52
57
  msgstr ""
53
58
 
59
+ #. Default: "Hide Children From Navigation"
60
+ #: components/theme/Widgets/NavigationBehaviorWidget
61
+ msgid "Hide Children From Navigation"
62
+ msgstr ""
63
+
54
64
  #. Default: "Invalid block - Will be removed on saving"
55
65
  #: components/manage/Blocks/GroupBlockTemplate/FlexGroup/RenderBlocks
56
66
  msgid "Invalid Block"
57
67
  msgstr ""
58
68
 
69
+ #. Default: "Load Main Navigation Routes"
70
+ #: components/theme/Widgets/NavigationBehaviorWidget
71
+ msgid "Load Main Navigation Routes"
72
+ msgstr ""
73
+
74
+ #. Default: "Looking for something specific?"
75
+ #: components/theme/NotFound/GoneView
76
+ msgid "Looking for something specific?"
77
+ msgstr ""
78
+
79
+ #. Default: "Menu Item Children List Columns"
80
+ #: components/theme/Widgets/NavigationBehaviorWidget
81
+ msgid "Menu Item Children List Columns"
82
+ msgstr ""
83
+
84
+ #. Default: "Menu Item Columns"
85
+ #: components/theme/Widgets/NavigationBehaviorWidget
86
+ msgid "Menu Item Columns"
87
+ msgstr ""
88
+
59
89
  #. Default: "Modified"
60
90
  #: components/theme/Banner/View
61
91
  msgid "Modified"
@@ -78,11 +108,21 @@ msgstr ""
78
108
  msgid "No value"
79
109
  msgstr ""
80
110
 
111
+ #. Default: "Preparing download"
112
+ #: components/theme/PrintLoader/PrintLoader
113
+ msgid "Preparing download"
114
+ msgstr ""
115
+
81
116
  #. Default: "Published"
82
117
  #: components/theme/Banner/View
83
118
  msgid "Published"
84
119
  msgstr ""
85
120
 
121
+ #. Default: "Remove"
122
+ #: components/theme/Widgets/SimpleArrayWidget
123
+ msgid "Remove"
124
+ msgstr ""
125
+
86
126
  #. Default: "Required"
87
127
  #: components/theme/Widgets/CreatableSelectWidget
88
128
  msgid "Required"
@@ -115,11 +155,26 @@ msgstr ""
115
155
  msgid "Site"
116
156
  msgstr ""
117
157
 
158
+ #. Default: "This content was part of our previous website and is no longer available. We've recently upgraded our platform and restructured our content to serve you better."
159
+ #: components/theme/NotFound/GoneView
160
+ msgid "This content was part of our previous website and is no longer available. We've recently upgraded our platform and restructured our content to serve you better."
161
+ msgstr ""
162
+
163
+ #. Default: "This page has been retired"
164
+ #: components/theme/NotFound/GoneView
165
+ msgid "This page has been retired"
166
+ msgstr ""
167
+
118
168
  #. Default: "Title"
119
169
  #: components/theme/Widgets/CreatableSelectWidget
120
170
  msgid "Title"
121
171
  msgstr ""
122
172
 
173
+ #. Default: "Try our {search} or visit our {homepage} to find what you need on our updated site."
174
+ #: components/theme/NotFound/GoneView
175
+ msgid "Try our {search} or visit our {homepage} to find what you need on our updated site."
176
+ msgstr ""
177
+
123
178
  #. Default: "Type text..."
124
179
  #: components/theme/Widgets/ADUserGroupSelectWidget
125
180
  #: components/theme/Widgets/UserSelectWidget
@@ -146,7 +201,47 @@ msgstr ""
146
201
  msgid "User"
147
202
  msgstr ""
148
203
 
204
+ #. Default: "View archived version"
205
+ #: components/theme/NotFound/GoneView
206
+ msgid "View archived version"
207
+ msgstr ""
208
+
209
+ #. Default: "Wayback Machine"
210
+ #: components/theme/NotFound/GoneView
211
+ msgid "Wayback Machine"
212
+ msgstr ""
213
+
214
+ #. Default: "What you can do?"
215
+ #: components/theme/NotFound/GoneView
216
+ msgid "What you can do?"
217
+ msgstr ""
218
+
219
+ #. Default: "You may be able to find an archived copy of this page on the {archive_url}"
220
+ #: components/theme/NotFound/GoneView
221
+ msgid "You may be able to find an archived copy of this page on the {archive_url}"
222
+ msgstr ""
223
+
224
+ #. Default: "homepage"
225
+ #: components/theme/NotFound/GoneView
226
+ msgid "homepage"
227
+ msgstr ""
228
+
229
+ #. Default: "Restrict access to this block based on user permissions"
230
+ #: index
231
+ msgid "restrictedBlockDescription"
232
+ msgstr ""
233
+
234
+ #. Default: "Restricted block"
235
+ #: index
236
+ msgid "restrictedBlockTitle"
237
+ msgstr ""
238
+
149
239
  #. Default: "RSS Feed"
150
240
  #: components/theme/Banner/View
151
241
  msgid "rssFeed"
152
242
  msgstr ""
243
+
244
+ #. Default: "search"
245
+ #: components/theme/NotFound/GoneView
246
+ msgid "search"
247
+ msgstr ""
@@ -11,6 +11,11 @@ msgstr ""
11
11
  "Content-Transfer-Encoding: \n"
12
12
  "Plural-Forms: \n"
13
13
 
14
+ #. Default: "Add"
15
+ #: components/theme/Widgets/SimpleArrayWidget
16
+ msgid "Add"
17
+ msgstr ""
18
+
14
19
  #. Default: "Choices"
15
20
  #: components/theme/Widgets/CreatableSelectWidget
16
21
  msgid "Choices"
@@ -51,11 +56,36 @@ msgstr ""
51
56
  msgid "Group"
52
57
  msgstr ""
53
58
 
59
+ #. Default: "Hide Children From Navigation"
60
+ #: components/theme/Widgets/NavigationBehaviorWidget
61
+ msgid "Hide Children From Navigation"
62
+ msgstr ""
63
+
54
64
  #. Default: "Invalid block - Will be removed on saving"
55
65
  #: components/manage/Blocks/GroupBlockTemplate/FlexGroup/RenderBlocks
56
66
  msgid "Invalid Block"
57
67
  msgstr ""
58
68
 
69
+ #. Default: "Load Main Navigation Routes"
70
+ #: components/theme/Widgets/NavigationBehaviorWidget
71
+ msgid "Load Main Navigation Routes"
72
+ msgstr ""
73
+
74
+ #. Default: "Looking for something specific?"
75
+ #: components/theme/NotFound/GoneView
76
+ msgid "Looking for something specific?"
77
+ msgstr ""
78
+
79
+ #. Default: "Menu Item Children List Columns"
80
+ #: components/theme/Widgets/NavigationBehaviorWidget
81
+ msgid "Menu Item Children List Columns"
82
+ msgstr ""
83
+
84
+ #. Default: "Menu Item Columns"
85
+ #: components/theme/Widgets/NavigationBehaviorWidget
86
+ msgid "Menu Item Columns"
87
+ msgstr ""
88
+
59
89
  #. Default: "Modified"
60
90
  #: components/theme/Banner/View
61
91
  msgid "Modified"
@@ -78,11 +108,21 @@ msgstr ""
78
108
  msgid "No value"
79
109
  msgstr ""
80
110
 
111
+ #. Default: "Preparing download"
112
+ #: components/theme/PrintLoader/PrintLoader
113
+ msgid "Preparing download"
114
+ msgstr ""
115
+
81
116
  #. Default: "Published"
82
117
  #: components/theme/Banner/View
83
118
  msgid "Published"
84
119
  msgstr ""
85
120
 
121
+ #. Default: "Remove"
122
+ #: components/theme/Widgets/SimpleArrayWidget
123
+ msgid "Remove"
124
+ msgstr ""
125
+
86
126
  #. Default: "Required"
87
127
  #: components/theme/Widgets/CreatableSelectWidget
88
128
  msgid "Required"
@@ -115,11 +155,26 @@ msgstr ""
115
155
  msgid "Site"
116
156
  msgstr ""
117
157
 
158
+ #. Default: "This content was part of our previous website and is no longer available. We've recently upgraded our platform and restructured our content to serve you better."
159
+ #: components/theme/NotFound/GoneView
160
+ msgid "This content was part of our previous website and is no longer available. We've recently upgraded our platform and restructured our content to serve you better."
161
+ msgstr ""
162
+
163
+ #. Default: "This page has been retired"
164
+ #: components/theme/NotFound/GoneView
165
+ msgid "This page has been retired"
166
+ msgstr ""
167
+
118
168
  #. Default: "Title"
119
169
  #: components/theme/Widgets/CreatableSelectWidget
120
170
  msgid "Title"
121
171
  msgstr ""
122
172
 
173
+ #. Default: "Try our {search} or visit our {homepage} to find what you need on our updated site."
174
+ #: components/theme/NotFound/GoneView
175
+ msgid "Try our {search} or visit our {homepage} to find what you need on our updated site."
176
+ msgstr ""
177
+
123
178
  #. Default: "Type text..."
124
179
  #: components/theme/Widgets/ADUserGroupSelectWidget
125
180
  #: components/theme/Widgets/UserSelectWidget
@@ -146,7 +201,47 @@ msgstr ""
146
201
  msgid "User"
147
202
  msgstr ""
148
203
 
204
+ #. Default: "View archived version"
205
+ #: components/theme/NotFound/GoneView
206
+ msgid "View archived version"
207
+ msgstr ""
208
+
209
+ #. Default: "Wayback Machine"
210
+ #: components/theme/NotFound/GoneView
211
+ msgid "Wayback Machine"
212
+ msgstr ""
213
+
214
+ #. Default: "What you can do?"
215
+ #: components/theme/NotFound/GoneView
216
+ msgid "What you can do?"
217
+ msgstr ""
218
+
219
+ #. Default: "You may be able to find an archived copy of this page on the {archive_url}"
220
+ #: components/theme/NotFound/GoneView
221
+ msgid "You may be able to find an archived copy of this page on the {archive_url}"
222
+ msgstr ""
223
+
224
+ #. Default: "homepage"
225
+ #: components/theme/NotFound/GoneView
226
+ msgid "homepage"
227
+ msgstr ""
228
+
229
+ #. Default: "Restrict access to this block based on user permissions"
230
+ #: index
231
+ msgid "restrictedBlockDescription"
232
+ msgstr ""
233
+
234
+ #. Default: "Restricted block"
235
+ #: index
236
+ msgid "restrictedBlockTitle"
237
+ msgstr ""
238
+
149
239
  #. Default: "RSS Feed"
150
240
  #: components/theme/Banner/View
151
241
  msgid "rssFeed"
152
242
  msgstr ""
243
+
244
+ #. Default: "search"
245
+ #: components/theme/NotFound/GoneView
246
+ msgid "search"
247
+ msgstr ""
@@ -11,6 +11,11 @@ msgstr ""
11
11
  "Content-Transfer-Encoding: \n"
12
12
  "Plural-Forms: \n"
13
13
 
14
+ #. Default: "Add"
15
+ #: components/theme/Widgets/SimpleArrayWidget
16
+ msgid "Add"
17
+ msgstr ""
18
+
14
19
  #. Default: "Choices"
15
20
  #: components/theme/Widgets/CreatableSelectWidget
16
21
  msgid "Choices"
@@ -51,11 +56,36 @@ msgstr ""
51
56
  msgid "Group"
52
57
  msgstr ""
53
58
 
59
+ #. Default: "Hide Children From Navigation"
60
+ #: components/theme/Widgets/NavigationBehaviorWidget
61
+ msgid "Hide Children From Navigation"
62
+ msgstr ""
63
+
54
64
  #. Default: "Invalid block - Will be removed on saving"
55
65
  #: components/manage/Blocks/GroupBlockTemplate/FlexGroup/RenderBlocks
56
66
  msgid "Invalid Block"
57
67
  msgstr ""
58
68
 
69
+ #. Default: "Load Main Navigation Routes"
70
+ #: components/theme/Widgets/NavigationBehaviorWidget
71
+ msgid "Load Main Navigation Routes"
72
+ msgstr ""
73
+
74
+ #. Default: "Looking for something specific?"
75
+ #: components/theme/NotFound/GoneView
76
+ msgid "Looking for something specific?"
77
+ msgstr ""
78
+
79
+ #. Default: "Menu Item Children List Columns"
80
+ #: components/theme/Widgets/NavigationBehaviorWidget
81
+ msgid "Menu Item Children List Columns"
82
+ msgstr ""
83
+
84
+ #. Default: "Menu Item Columns"
85
+ #: components/theme/Widgets/NavigationBehaviorWidget
86
+ msgid "Menu Item Columns"
87
+ msgstr ""
88
+
59
89
  #. Default: "Modified"
60
90
  #: components/theme/Banner/View
61
91
  msgid "Modified"
@@ -78,11 +108,21 @@ msgstr ""
78
108
  msgid "No value"
79
109
  msgstr ""
80
110
 
111
+ #. Default: "Preparing download"
112
+ #: components/theme/PrintLoader/PrintLoader
113
+ msgid "Preparing download"
114
+ msgstr ""
115
+
81
116
  #. Default: "Published"
82
117
  #: components/theme/Banner/View
83
118
  msgid "Published"
84
119
  msgstr ""
85
120
 
121
+ #. Default: "Remove"
122
+ #: components/theme/Widgets/SimpleArrayWidget
123
+ msgid "Remove"
124
+ msgstr ""
125
+
86
126
  #. Default: "Required"
87
127
  #: components/theme/Widgets/CreatableSelectWidget
88
128
  msgid "Required"
@@ -115,11 +155,26 @@ msgstr ""
115
155
  msgid "Site"
116
156
  msgstr ""
117
157
 
158
+ #. Default: "This content was part of our previous website and is no longer available. We've recently upgraded our platform and restructured our content to serve you better."
159
+ #: components/theme/NotFound/GoneView
160
+ msgid "This content was part of our previous website and is no longer available. We've recently upgraded our platform and restructured our content to serve you better."
161
+ msgstr ""
162
+
163
+ #. Default: "This page has been retired"
164
+ #: components/theme/NotFound/GoneView
165
+ msgid "This page has been retired"
166
+ msgstr ""
167
+
118
168
  #. Default: "Title"
119
169
  #: components/theme/Widgets/CreatableSelectWidget
120
170
  msgid "Title"
121
171
  msgstr ""
122
172
 
173
+ #. Default: "Try our {search} or visit our {homepage} to find what you need on our updated site."
174
+ #: components/theme/NotFound/GoneView
175
+ msgid "Try our {search} or visit our {homepage} to find what you need on our updated site."
176
+ msgstr ""
177
+
123
178
  #. Default: "Type text..."
124
179
  #: components/theme/Widgets/ADUserGroupSelectWidget
125
180
  #: components/theme/Widgets/UserSelectWidget
@@ -146,7 +201,47 @@ msgstr ""
146
201
  msgid "User"
147
202
  msgstr ""
148
203
 
204
+ #. Default: "View archived version"
205
+ #: components/theme/NotFound/GoneView
206
+ msgid "View archived version"
207
+ msgstr ""
208
+
209
+ #. Default: "Wayback Machine"
210
+ #: components/theme/NotFound/GoneView
211
+ msgid "Wayback Machine"
212
+ msgstr ""
213
+
214
+ #. Default: "What you can do?"
215
+ #: components/theme/NotFound/GoneView
216
+ msgid "What you can do?"
217
+ msgstr ""
218
+
219
+ #. Default: "You may be able to find an archived copy of this page on the {archive_url}"
220
+ #: components/theme/NotFound/GoneView
221
+ msgid "You may be able to find an archived copy of this page on the {archive_url}"
222
+ msgstr ""
223
+
224
+ #. Default: "homepage"
225
+ #: components/theme/NotFound/GoneView
226
+ msgid "homepage"
227
+ msgstr ""
228
+
229
+ #. Default: "Restrict access to this block based on user permissions"
230
+ #: index
231
+ msgid "restrictedBlockDescription"
232
+ msgstr ""
233
+
234
+ #. Default: "Restricted block"
235
+ #: index
236
+ msgid "restrictedBlockTitle"
237
+ msgstr ""
238
+
149
239
  #. Default: "RSS Feed"
150
240
  #: components/theme/Banner/View
151
241
  msgid "rssFeed"
152
242
  msgstr ""
243
+
244
+ #. Default: "search"
245
+ #: components/theme/NotFound/GoneView
246
+ msgid "search"
247
+ msgstr ""