decidim-admin 0.31.5 → 0.32.0.rc2

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 (218) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -12
  3. data/app/cells/decidim/admin/attachments_privacy_warning/show.erb +1 -1
  4. data/app/cells/decidim/admin/attachments_privacy_warning_cell.rb +2 -6
  5. data/app/commands/decidim/admin/content_blocks/reorder_content_blocks.rb +1 -1
  6. data/app/commands/decidim/admin/participatory_space/create_member.rb +99 -0
  7. data/app/commands/decidim/admin/participatory_space/destroy_member.rb +30 -0
  8. data/app/commands/decidim/admin/participatory_space/import_member_csv.rb +46 -0
  9. data/app/commands/decidim/admin/participatory_space/publish_all_members.rb +52 -0
  10. data/app/commands/decidim/admin/participatory_space/unpublish_all_members.rb +52 -0
  11. data/app/commands/decidim/admin/participatory_space/update_member.rb +13 -0
  12. data/app/commands/decidim/admin/reorder_components.rb +1 -1
  13. data/app/commands/decidim/admin/reorder_taxonomies.rb +1 -1
  14. data/app/commands/decidim/admin/update_organization.rb +1 -1
  15. data/app/controllers/concerns/decidim/admin/content_blocks/landing_page.rb +1 -0
  16. data/app/controllers/concerns/decidim/admin/content_blocks/landing_page_content_blocks.rb +3 -2
  17. data/app/controllers/concerns/decidim/admin/filterable.rb +4 -4
  18. data/app/controllers/concerns/decidim/admin/participatory_space_admin_context.rb +1 -0
  19. data/app/controllers/concerns/decidim/admin/participatory_space_export.rb +1 -1
  20. data/app/controllers/decidim/admin/area_types_controller.rb +2 -2
  21. data/app/controllers/decidim/admin/areas_controller.rb +3 -2
  22. data/app/controllers/decidim/admin/block_user_controller.rb +2 -2
  23. data/app/controllers/decidim/admin/component_permissions_controller.rb +1 -1
  24. data/app/controllers/decidim/admin/components/base_controller.rb +13 -9
  25. data/app/controllers/decidim/admin/components_controller.rb +3 -2
  26. data/app/controllers/decidim/admin/concerns/has_attachment_collections.rb +2 -2
  27. data/app/controllers/decidim/admin/concerns/has_attachments.rb +2 -2
  28. data/app/controllers/decidim/admin/conflicts_controller.rb +1 -1
  29. data/app/controllers/decidim/admin/exports_controller.rb +1 -1
  30. data/app/controllers/decidim/admin/impersonations_controller.rb +1 -1
  31. data/app/controllers/decidim/admin/imports_controller.rb +2 -1
  32. data/app/controllers/decidim/admin/managed_users/promotions_controller.rb +1 -1
  33. data/app/controllers/decidim/admin/newsletters_controller.rb +9 -8
  34. data/app/controllers/decidim/admin/organization_appearance_controller.rb +1 -1
  35. data/app/controllers/decidim/admin/organization_controller.rb +1 -1
  36. data/app/controllers/decidim/admin/organization_external_domain_allowlist_controller.rb +1 -1
  37. data/app/controllers/decidim/admin/participatory_space/concerns/has_members.rb +166 -0
  38. data/app/controllers/decidim/admin/participatory_space/concerns/has_members_csv_import.rb +67 -0
  39. data/app/controllers/decidim/admin/participatory_space/concerns/members_filterable.rb +36 -0
  40. data/app/controllers/decidim/admin/participatory_space/user_role_controller.rb +2 -2
  41. data/app/controllers/decidim/admin/reminders_controller.rb +1 -1
  42. data/app/controllers/decidim/admin/resource_permissions_controller.rb +1 -1
  43. data/app/controllers/decidim/admin/scope_types_controller.rb +2 -2
  44. data/app/controllers/decidim/admin/scopes_controller.rb +3 -2
  45. data/app/controllers/decidim/admin/share_tokens_controller.rb +2 -2
  46. data/app/controllers/decidim/admin/space_publications_controller.rb +2 -2
  47. data/app/controllers/decidim/admin/static_page_topics_controller.rb +2 -2
  48. data/app/controllers/decidim/admin/static_pages_controller.rb +2 -2
  49. data/app/controllers/decidim/admin/taxonomies_controller.rb +3 -3
  50. data/app/controllers/decidim/admin/taxonomy_filters_controller.rb +3 -3
  51. data/app/controllers/decidim/admin/taxonomy_items_controller.rb +3 -3
  52. data/app/controllers/decidim/admin/users_controller.rb +1 -1
  53. data/app/forms/decidim/admin/content_block_form.rb +28 -1
  54. data/app/forms/decidim/admin/organization_form.rb +0 -1
  55. data/app/forms/decidim/admin/participatory_space/member_csv_import_form.rb +33 -0
  56. data/app/forms/decidim/admin/participatory_space/member_form.rb +26 -0
  57. data/app/forms/decidim/admin/participatory_space_admin_user_form.rb +1 -1
  58. data/app/forms/decidim/admin/selective_newsletter_form.rb +7 -7
  59. data/app/forms/decidim/admin/taxonomy_filter_form.rb +1 -0
  60. data/app/helpers/decidim/admin/newsletters_helper.rb +8 -5
  61. data/app/helpers/decidim/admin/search_form_helper.rb +17 -0
  62. data/app/helpers/decidim/admin/settings_helper.rb +2 -0
  63. data/app/jobs/decidim/admin/newsletter_job.rb +2 -2
  64. data/app/jobs/decidim/admin/participatory_space/destroy_members_follows_job.rb +36 -0
  65. data/app/jobs/decidim/admin/participatory_space/import_member_csv_job.rb +29 -0
  66. data/app/packs/src/decidim/admin/controllers/access_mode/access_mode.test.js +68 -0
  67. data/app/packs/src/decidim/admin/controllers/access_mode/controller.js +52 -0
  68. data/app/packs/src/decidim/admin/newsletters.js +2 -2
  69. data/app/packs/stylesheets/decidim/admin/_datepicker.scss +0 -4
  70. data/app/queries/decidim/admin/newsletter_recipients.rb +8 -8
  71. data/app/views/decidim/admin/admin_terms/show.html.erb +3 -1
  72. data/app/views/decidim/admin/area_types/index.html.erb +3 -2
  73. data/app/views/decidim/admin/areas/index.html.erb +3 -2
  74. data/app/views/decidim/admin/attachment_collections/edit.html.erb +2 -2
  75. data/app/views/decidim/admin/attachment_collections/index.html.erb +2 -2
  76. data/app/views/decidim/admin/attachment_collections/new.html.erb +2 -2
  77. data/app/views/decidim/admin/attachments/index.html.erb +3 -2
  78. data/app/views/decidim/admin/authorization_workflows/index.html.erb +2 -2
  79. data/app/views/decidim/admin/block_user/new.html.erb +1 -0
  80. data/app/views/decidim/admin/components/index.html.erb +2 -2
  81. data/app/views/decidim/admin/components/manage_trash.html.erb +2 -2
  82. data/app/views/decidim/admin/conflicts/edit.html.erb +3 -1
  83. data/app/views/decidim/admin/conflicts/index.html.erb +3 -2
  84. data/app/views/decidim/admin/dashboard/show.html.erb +4 -4
  85. data/app/views/decidim/admin/help_sections/update.html.erb +2 -0
  86. data/app/views/decidim/admin/impersonatable_users/index.html.erb +3 -2
  87. data/app/views/decidim/admin/impersonations/_form.html.erb +2 -2
  88. data/app/views/decidim/admin/impersonations/new.html.erb +3 -2
  89. data/app/views/decidim/admin/imports/new.html.erb +1 -0
  90. data/app/views/decidim/admin/logs/_logs_list.html.erb +1 -1
  91. data/app/views/decidim/admin/logs/index.html.erb +1 -1
  92. data/app/views/decidim/admin/managed_users/impersonation_logs/index.html.erb +6 -5
  93. data/app/views/decidim/admin/managed_users/promotions/new.html.erb +3 -2
  94. data/app/views/decidim/admin/{participatory_space_private_users → members}/edit.html.erb +2 -2
  95. data/app/views/decidim/admin/{participatory_space_private_users → members}/index.html.erb +25 -25
  96. data/app/views/decidim/admin/{participatory_space_private_users → members}/new.html.erb +2 -2
  97. data/app/views/decidim/admin/{participatory_space_private_users_csv_imports → members_csv_imports}/new.html.erb +2 -2
  98. data/app/views/decidim/admin/moderations/_moderation-tr.html.erb +2 -6
  99. data/app/views/decidim/admin/moderations/_moderations-thead.html.erb +0 -1
  100. data/app/views/decidim/admin/moderations/reports/index.html.erb +1 -1
  101. data/app/views/decidim/admin/newsletter_templates/show.html.erb +3 -2
  102. data/app/views/decidim/admin/newsletters/confirm_recipients.html.erb +4 -6
  103. data/app/views/decidim/admin/newsletters/index.html.erb +2 -2
  104. data/app/views/decidim/admin/newsletters/select_recipients_to_deliver.html.erb +2 -2
  105. data/app/views/decidim/admin/newsletters/show.html.erb +3 -2
  106. data/app/views/decidim/admin/officializations/index.html.erb +6 -4
  107. data/app/views/decidim/admin/officializations/show_email.html.erb +2 -0
  108. data/app/views/decidim/admin/organization/form/_extra_features.html.erb +0 -4
  109. data/app/views/decidim/admin/organization_external_domain_allowlist/_form.html.erb +2 -2
  110. data/app/views/decidim/admin/organization_external_domain_allowlist/edit.html.erb +2 -2
  111. data/app/views/decidim/admin/reminders/new.html.erb +8 -1
  112. data/app/views/decidim/admin/resource_permissions/edit.html.erb +2 -2
  113. data/app/views/decidim/admin/scope_types/index.html.erb +3 -2
  114. data/app/views/decidim/admin/scopes/index.html.erb +2 -2
  115. data/app/views/decidim/admin/share_tokens/index.html.erb +2 -0
  116. data/app/views/decidim/admin/shared/landing_page/_content_blocks.html.erb +0 -2
  117. data/app/views/decidim/admin/shared/landing_page/edit.html.erb +2 -0
  118. data/app/views/decidim/admin/shared/landing_page_content_blocks/edit.html.erb +1 -0
  119. data/app/views/decidim/admin/static_page_topics/index.html.erb +2 -2
  120. data/app/views/decidim/admin/static_pages/edit.html.erb +2 -1
  121. data/app/views/decidim/admin/static_pages/index.html.erb +2 -2
  122. data/app/views/decidim/admin/statistics/_statistics.html.erb +1 -1
  123. data/app/views/decidim/admin/statistics/index.html.erb +2 -0
  124. data/app/views/decidim/admin/taxonomies/_row.html.erb +1 -1
  125. data/app/views/decidim/admin/taxonomies/_row_children.html.erb +1 -1
  126. data/app/views/decidim/admin/taxonomies/_table.html.erb +1 -1
  127. data/app/views/decidim/admin/taxonomies/edit.html.erb +2 -2
  128. data/app/views/decidim/admin/taxonomies/index.html.erb +4 -4
  129. data/app/views/decidim/admin/taxonomy_filters/index.html.erb +2 -2
  130. data/app/views/decidim/admin/taxonomy_filters_selector/index.html.erb +2 -0
  131. data/app/views/decidim/admin/taxonomy_filters_selector/new.html.erb +2 -0
  132. data/app/views/decidim/admin/taxonomy_filters_selector/show.html.erb +2 -0
  133. data/app/views/decidim/admin/taxonomy_items/edit.html.erb +2 -0
  134. data/app/views/decidim/admin/taxonomy_items/new.html.erb +2 -0
  135. data/app/views/decidim/admin/users/index.html.erb +3 -2
  136. data/config/locales/ar.yml +4 -48
  137. data/config/locales/bg.yml +4 -54
  138. data/config/locales/bs-BA.yml +0 -23
  139. data/config/locales/ca-IT.yml +126 -98
  140. data/config/locales/ca.yml +126 -98
  141. data/config/locales/cs.yml +122 -95
  142. data/config/locales/de.yml +109 -93
  143. data/config/locales/el.yml +11 -44
  144. data/config/locales/en.yml +126 -98
  145. data/config/locales/eo.yml +0 -6
  146. data/config/locales/es-MX.yml +126 -98
  147. data/config/locales/es-PY.yml +126 -98
  148. data/config/locales/es.yml +126 -98
  149. data/config/locales/eu.yml +126 -98
  150. data/config/locales/fi-plain.yml +126 -98
  151. data/config/locales/fi.yml +126 -98
  152. data/config/locales/fr-CA.yml +91 -90
  153. data/config/locales/fr.yml +91 -90
  154. data/config/locales/ga-IE.yml +0 -12
  155. data/config/locales/gl.yml +4 -40
  156. data/config/locales/he-IL.yml +0 -4
  157. data/config/locales/hu.yml +4 -51
  158. data/config/locales/id-ID.yml +4 -33
  159. data/config/locales/is-IS.yml +0 -14
  160. data/config/locales/it.yml +4 -67
  161. data/config/locales/ja.yml +124 -98
  162. data/config/locales/kaa.yml +0 -15
  163. data/config/locales/ko.yml +0 -39
  164. data/config/locales/lb.yml +4 -40
  165. data/config/locales/lt.yml +4 -51
  166. data/config/locales/lv.yml +4 -37
  167. data/config/locales/nl.yml +4 -45
  168. data/config/locales/no.yml +4 -45
  169. data/config/locales/pl.yml +4 -53
  170. data/config/locales/pt-BR.yml +109 -96
  171. data/config/locales/pt.yml +4 -41
  172. data/config/locales/ro-RO.yml +9 -50
  173. data/config/locales/ru.yml +4 -34
  174. data/config/locales/sk.yml +126 -98
  175. data/config/locales/sl.yml +0 -6
  176. data/config/locales/sq-AL.yml +0 -20
  177. data/config/locales/sr-CS.yml +0 -23
  178. data/config/locales/sv.yml +74 -86
  179. data/config/locales/th-TH.yml +0 -7
  180. data/config/locales/tr-TR.yml +21 -57
  181. data/config/locales/uk.yml +0 -25
  182. data/config/locales/zh-CN.yml +4 -37
  183. data/config/locales/zh-TW.yml +4 -51
  184. data/decidim-admin.gemspec +7 -10
  185. data/lib/decidim/admin/engine.rb +5 -2
  186. data/lib/decidim/admin/menu.rb +1 -1
  187. data/lib/decidim/admin/test/admin_members_shared_examples.rb +119 -0
  188. data/lib/decidim/admin/test/admin_participatory_space_access_examples.rb +3 -3
  189. data/lib/decidim/admin/test/filterable_examples.rb +20 -11
  190. data/lib/decidim/admin/test/invite_participatory_space_admins_shared_examples.rb +17 -17
  191. data/lib/decidim/admin/test/invite_participatory_space_collaborators_shared_examples.rb +1 -1
  192. data/lib/decidim/admin/test/invite_participatory_space_moderators_shared_examples.rb +1 -1
  193. data/lib/decidim/admin/test/invite_participatory_space_users_shared_context.rb +1 -1
  194. data/lib/decidim/admin/test/manage_attachment_collections_examples.rb +3 -3
  195. data/lib/decidim/admin/test/manage_attachments_examples.rb +6 -6
  196. data/lib/decidim/admin/test/manage_component_permissions_examples.rb +5 -5
  197. data/lib/decidim/admin/test/manage_moderations_examples.rb +6 -6
  198. data/lib/decidim/admin/test/manage_participatory_space_publications_examples.rb +2 -2
  199. data/lib/decidim/admin/test/manage_resource_soft_deletion_examples.rb +3 -3
  200. data/lib/decidim/admin/version.rb +1 -1
  201. data/lib/decidim/admin.rb +0 -2
  202. metadata +39 -35
  203. data/app/commands/decidim/admin/create_participatory_space_private_user.rb +0 -98
  204. data/app/commands/decidim/admin/destroy_participatory_space_private_user.rb +0 -28
  205. data/app/commands/decidim/admin/process_participatory_space_private_user_import_csv.rb +0 -44
  206. data/app/commands/decidim/admin/publish_all_participatory_space_private_users.rb +0 -50
  207. data/app/commands/decidim/admin/unpublish_all_participatory_space_private_users.rb +0 -50
  208. data/app/commands/decidim/admin/update_participatory_space_private_user.rb +0 -11
  209. data/app/controllers/concerns/decidim/participatory_space_private_users/admin/filterable.rb +0 -34
  210. data/app/controllers/decidim/admin/concerns/has_private_users.rb +0 -169
  211. data/app/controllers/decidim/admin/concerns/has_private_users_csv_import.rb +0 -65
  212. data/app/forms/decidim/admin/participatory_space_private_user_csv_import_form.rb +0 -31
  213. data/app/forms/decidim/admin/participatory_space_private_user_form.rb +0 -24
  214. data/app/jobs/decidim/admin/destroy_private_users_follows_job.rb +0 -37
  215. data/app/jobs/decidim/admin/import_participatory_space_private_user_csv_job.rb +0 -27
  216. data/app/views/decidim/admin/devise/mailers/password_change.html.erb +0 -3
  217. data/app/views/decidim/admin/devise/mailers/reset_password_instructions.html.erb +0 -8
  218. /data/app/views/decidim/admin/{participatory_space_private_users → members}/_form.html.erb +0 -0
@@ -34,6 +34,11 @@ en:
34
34
  help_section:
35
35
  content: Content
36
36
  id: ID
37
+ member:
38
+ email: Email
39
+ name: Name
40
+ member_csv_import:
41
+ file: File
37
42
  newsletter:
38
43
  body: Body
39
44
  send_to_all_users: Send to all participants
@@ -51,7 +56,6 @@ en:
51
56
  description: Description
52
57
  enable_machine_translations: Enable machine translations
53
58
  enable_omnipresent_banner: Show omnipresent banner
54
- enable_participatory_space_filters: Enable participatory space filters
55
59
  facebook_handler: Facebook handler
56
60
  favicon: Icon
57
61
  force_authentication: Force authentication
@@ -92,11 +96,6 @@ en:
92
96
  welcome_notification_body: Welcome notification body
93
97
  welcome_notification_subject: Welcome notification subject
94
98
  youtube_handler: YouTube handler
95
- participatory_space_private_user:
96
- email: Email
97
- name: Name
98
- participatory_space_private_user_csv_import:
99
- file: File
100
99
  scope:
101
100
  code: Code
102
101
  name: Name
@@ -133,6 +132,10 @@ en:
133
132
  file: File
134
133
  errors:
135
134
  models:
135
+ member_csv_import:
136
+ attributes:
137
+ file:
138
+ malformed: Malformed import file, please read through the instructions carefully and make sure the file is UTF-8 encoded.
136
139
  newsletter:
137
140
  attributes:
138
141
  base:
@@ -141,10 +144,6 @@ en:
141
144
  attributes:
142
145
  official_img_footer:
143
146
  allowed_file_content_types: Invalid image file
144
- participatory_space_private_user_csv_import:
145
- attributes:
146
- file:
147
- malformed: Malformed import file, please read through the instructions carefully and make sure the file is UTF-8 encoded.
148
147
  user_group_csv_verification:
149
148
  attributes:
150
149
  file:
@@ -193,12 +192,12 @@ en:
193
192
  export_all: Export all
194
193
  export_selection: Export selection
195
194
  import: Import
195
+ member:
196
+ new: New member
196
197
  menu_hidden: Hide from menu
197
198
  moderate: Manage moderations
198
199
  newsletter:
199
200
  new: New newsletter
200
- participatory_space_private_user:
201
- new: New participatory space private user
202
201
  per_page: Per page
203
202
  permissions: Manage permissions
204
203
  restore: Restore
@@ -209,6 +208,9 @@ en:
209
208
  user:
210
209
  new: New admin
211
210
  view_deleted_components: View deleted components
211
+ admin_terms:
212
+ show:
213
+ title: Admin terms of service
212
214
  admin_terms_of_service:
213
215
  accept:
214
216
  error: There was a problem while accepting the admin terms of service.
@@ -222,7 +224,6 @@ en:
222
224
  alert: 'Required: Review our admin terms of service'
223
225
  callout: Please take a moment to review the admin terms of service. Otherwise you will not be able to manage the platform.
224
226
  cta: Review them now.
225
- title: Admin terms of service
226
227
  area_types:
227
228
  create:
228
229
  error: There was a problem creating a new area type.
@@ -232,6 +233,8 @@ en:
232
233
  edit:
233
234
  title: Edit area type
234
235
  update: Update
236
+ index:
237
+ title: Area types
235
238
  new:
236
239
  create: Create area type
237
240
  title: New area type
@@ -249,6 +252,8 @@ en:
249
252
  edit:
250
253
  title: Edit area
251
254
  update: Update
255
+ index:
256
+ title: Areas
252
257
  new:
253
258
  create: Create area
254
259
  title: New area
@@ -266,7 +271,7 @@ en:
266
271
  title: Edit folder
267
272
  update: Update
268
273
  index:
269
- attachment_collections_title: Attachment folders
274
+ title: Attachment folders
270
275
  new:
271
276
  create: Create
272
277
  title: New folder
@@ -283,7 +288,7 @@ en:
283
288
  title: Edit attachment
284
289
  update: Update
285
290
  index:
286
- attachments_title: Attachments
291
+ title: Attachments
287
292
  new:
288
293
  create: Create attachment
289
294
  title: New attachment
@@ -292,6 +297,9 @@ en:
292
297
  success: Attachment updated successfully.
293
298
  attachments_privacy_warning:
294
299
  message: Be careful when working with attachments in a private space. Any participant could share this document to others.
300
+ authorization_workflows:
301
+ index:
302
+ title: Verification methods
295
303
  autocomplete:
296
304
  no_results: No results found
297
305
  search_prompt: Type at least three characters to search.
@@ -336,6 +344,7 @@ en:
336
344
  name: Component name
337
345
  type: Component type
338
346
  visibility: Visibility
347
+ title: Components
339
348
  manage_trash:
340
349
  title: Deleted components
341
350
  new:
@@ -343,7 +352,6 @@ en:
343
352
  title: 'Add component: %{name}'
344
353
  publish:
345
354
  success: The component has been successfully published.
346
- title: Components
347
355
  unpublish:
348
356
  success: The component has been successfully unpublished.
349
357
  update:
@@ -355,12 +363,14 @@ en:
355
363
  unpublished: Unpublished
356
364
  conflicts:
357
365
  attempts: Attempts
366
+ edit:
367
+ title: Transfer User
358
368
  'false': 'No'
359
369
  index:
360
370
  text: Search by current user email, name or nickname
371
+ title: Verification conflicts
361
372
  managed_user_name: Managed User
362
373
  solved: Solved
363
- title: Verification conflicts
364
374
  transfer:
365
375
  email: Email
366
376
  error: There was a problem transferring the current participant to managed participant.
@@ -393,6 +403,7 @@ en:
393
403
  title: Pending Moderations
394
404
  show:
395
405
  dropdown: Dropdown
406
+ title: Dashboard
396
407
  view_more_logs: View more logs
397
408
  domain_allowlist:
398
409
  form:
@@ -420,6 +431,17 @@ en:
420
431
  values:
421
432
  'false': 'No'
422
433
  'true': 'Yes'
434
+ members:
435
+ user_invitation_accepted_at_not_null:
436
+ label: Invitation accepted
437
+ values:
438
+ 'false': Not accepted
439
+ 'true': Accepted
440
+ user_invitation_sent_at_not_null:
441
+ label: Invitation sent
442
+ values:
443
+ 'false': Not sent
444
+ 'true': Sent
423
445
  moderated_users:
424
446
  reports_reason_eq:
425
447
  label: Report reason
@@ -435,17 +457,6 @@ en:
435
457
  values:
436
458
  'false': Officialized
437
459
  'true': Not officialized
438
- participatory_space_private_users:
439
- user_invitation_accepted_at_not_null:
440
- label: Invitation accepted
441
- values:
442
- 'false': Not accepted
443
- 'true': Accepted
444
- user_invitation_sent_at_not_null:
445
- label: Invitation sent
446
- values:
447
- 'false': Not sent
448
- 'true': Sent
449
460
  private_space_eq:
450
461
  label: Private
451
462
  values:
@@ -489,6 +500,8 @@ en:
489
500
  form:
490
501
  save: Save
491
502
  success: Help sections updated successfully.
503
+ update:
504
+ title: Help sections
492
505
  impersonatable_users:
493
506
  index:
494
507
  filter:
@@ -504,6 +517,7 @@ en:
504
517
  promote: Promote
505
518
  search: Search
506
519
  status: Status
520
+ title: Manageable participants
507
521
  view_logs: View logs
508
522
  impersonations:
509
523
  close_session:
@@ -520,7 +534,7 @@ en:
520
534
  impersonate: Impersonate
521
535
  impersonate_existing_managed_user: Manage participant "%{name}"
522
536
  impersonate_existing_user: Manage participant "%{name}"
523
- impersonate_new_managed_user: Manage new participant
537
+ title: Impersonate participant
524
538
  imports:
525
539
  and: and
526
540
  data_errors:
@@ -564,20 +578,72 @@ en:
564
578
  participatory_space: Find participatory space
565
579
  text: Search by user email, name or nickname
566
580
  user: User
581
+ index:
582
+ title: Admin log
567
583
  logs_list:
568
584
  no_logs_yet: There are no logs yet.
569
585
  no_matching_logs: There are no logs with the provided search filters. Try to change them and retry.
570
586
  manage_trash:
571
587
  deleted_items_warning: You are currently viewing deleted items. To make any edits or changes, you must first restore them.
572
588
  managed_users:
589
+ impersonation_logs:
590
+ index:
591
+ title: Impersonations
573
592
  promotion:
574
593
  error: There was a problem promoting the managed participant.
575
594
  success: The managed participant has been successfully promoted.
576
595
  promotions:
577
596
  new:
578
597
  explanation: Managed participants can be promoted to standard participants. It means they will be invited to the application and you will not be able to manage them again. The invited participant will receive an email to accept your invitation.
579
- new_managed_user_promotion: New managed participant promotion
580
598
  promote: Promote
599
+ title: New managed participant promotion
600
+ members:
601
+ create:
602
+ error: There was a problem adding a member for this participatory space.
603
+ success: Member access successfully created.
604
+ destroy:
605
+ error: There was a problem deleting a member for this participatory space.
606
+ success: Member access successfully destroyed.
607
+ edit:
608
+ title: Edit member
609
+ update: Update
610
+ index:
611
+ import_via_csv: Import via CSV
612
+ publish_all: Publish all
613
+ title: Member
614
+ unpublish_all: Unpublish all
615
+ new:
616
+ create: Create
617
+ title: New member
618
+ publish_all:
619
+ error: There was a problem publishing all the members for this participatory space.
620
+ success: Successfully published all members for this participatory space
621
+ unpublish_all:
622
+ error: There was a problem unpublishing all the members for this participatory space.
623
+ success: Successfully unpublished all members for this participatory space
624
+ update:
625
+ error: There was a problem updating the member for this participatory space.
626
+ success: Member successfully updated
627
+ members_csv_imports:
628
+ create:
629
+ invalid: There was a problem reading the CSV file. Please make sure you have followed the instructions.
630
+ success: CSV file uploaded successfully, we are sending an invitation email to participants. This might take a while.
631
+ new:
632
+ csv_upload:
633
+ title: Upload your CSV file
634
+ destroy:
635
+ button: Delete all members
636
+ confirm: Are you sure you want to delete all members? This action cannot be undone, you will not be able to recover them.
637
+ empty: You have no members.
638
+ explanation: You have %{count} members.
639
+ title: Delete members
640
+ example_file: 'Example file:'
641
+ explanation: Upload your CSV file. It must have two columns with email in the first column of the file and name in the last column of the file of the users that you want to add to the participatory space, without headers. Avoid using invalid chars like `<>?%&^*#@()[]=+:;"{}\|` in user name.
642
+ explanation_example: |
643
+ john.doe@example.org%{csv_col_sep}John Doe
644
+ jane.doe@example.org%{csv_col_sep}Jane Doe
645
+ title: Import members via CSV
646
+ upload: Upload
581
647
  menu:
582
648
  admin_log: Admin activity log
583
649
  admins: Admins
@@ -636,6 +702,8 @@ en:
636
702
  reason: Reason
637
703
  started_at: Started at
638
704
  user: Participant
705
+ member:
706
+ name: Member
639
707
  newsletter:
640
708
  fields:
641
709
  created_at: Created at
@@ -644,8 +712,6 @@ en:
644
712
  sent_to: Sent to
645
713
  subject: Subject
646
714
  name: Newsletter
647
- participatory_space_private_user:
648
- name: Participatory space private participant
649
715
  scope:
650
716
  fields:
651
717
  name: Name
@@ -759,7 +825,7 @@ en:
759
825
  title: Newsletter templates
760
826
  use_template: Use this template
761
827
  show:
762
- preview: 'Preview template: %{template_name}'
828
+ title: 'Preview template: %{template_name}'
763
829
  use_template: Use this template
764
830
  newsletters:
765
831
  confirm_recipients:
@@ -785,9 +851,9 @@ en:
785
851
  confirm_delete: Are you sure you want to delete this newsletter?
786
852
  followers: 'followers '
787
853
  has_been_sent_to: 'Has been sent to: '
854
+ members: 'members '
788
855
  not_sent: Not sent
789
856
  participants: 'participants '
790
- private_members: 'private members '
791
857
  segmented_to: 'Segmented to %{subject}: '
792
858
  subscribed_count: 'Subscribed:'
793
859
  title: Newsletters
@@ -803,8 +869,8 @@ en:
803
869
  confirm_recipients: Confirm recipients
804
870
  deliver: Deliver newsletter
805
871
  followers_help: Sends newsletter to all confirmed users that follow any selected participatory spaces in the list.
872
+ members_help: Sends a newsletter to all confirmed users that have been added to the selected participatory spaces as members.
806
873
  participants_help: Sends newsletter to all confirmed users that have participated in any of the selected participatory spaces in the list.
807
- private_members_help: Sends a newsletter to all confirmed users that have been added to the selected private participatory spaces.
808
874
  recipients_count: This newsletter will be send to <strong id='recipients_count'>%{count}</strong> users.
809
875
  select_assemblies: Choose assemblies
810
876
  select_conferences: Choose conferences
@@ -824,10 +890,10 @@ en:
824
890
  send_to_user:
825
891
  sent_successfully: Newsletter has been sent successfully to %{email}
826
892
  show:
827
- preview: Preview
828
893
  select_recipients_to_deliver: Select recipients to deliver
829
894
  send_me_a_test_email: Send me a test email
830
895
  subject: Subject
896
+ title: Preview
831
897
  update:
832
898
  error: There was a problem updating this newsletter.
833
899
  success: Newsletter updated successfully. Please review it before sending.
@@ -861,12 +927,15 @@ en:
861
927
  send_message: Send message
862
928
  show_email: Show email
863
929
  status: Status
930
+ title: Participants
864
931
  unblock: Unblock
865
932
  unofficialize: Unofficialize
866
933
  new:
867
934
  badge: Officialization badge
868
935
  officialize: Officialize
869
936
  title: Officialize participant "%{name}"
937
+ show_email:
938
+ title: Show email
870
939
  show_email_modal:
871
940
  description: If you need to contact a participant directly, you can click on the Show button to see their email address. This action will be logged.
872
941
  email_address: Email address
@@ -911,6 +980,7 @@ en:
911
980
  success: Organization updated successfully.
912
981
  organization_external_domain_allowlist:
913
982
  edit:
983
+ title: Allowed list of external domains
914
984
  update: Update
915
985
  external_domain:
916
986
  down: Down
@@ -919,54 +989,6 @@ en:
919
989
  up: Up
920
990
  form:
921
991
  add: Add to allowed list
922
- title: Allowed list of external domains
923
- participatory_space_private_users:
924
- create:
925
- error: There was a problem adding a private participant for this participatory space.
926
- success: Participatory space private participant access successfully created.
927
- destroy:
928
- error: There was a problem deleting a private participant for this participatory space.
929
- success: Participatory space private participant access successfully destroyed.
930
- edit:
931
- title: Edit Participatory Space private participant.
932
- update: Update
933
- index:
934
- import_via_csv: Import via CSV
935
- publish_all: Publish all
936
- title: Participatory space private participant
937
- unpublish_all: Unpublish all
938
- new:
939
- create: Create
940
- title: New Participatory Space private participant.
941
- publish_all:
942
- error: There was a problem publishing all the private participants for this participatory space.
943
- success: Successfully published all private participants for this participatory space
944
- unpublish_all:
945
- error: There was a problem unpublishing all the private participants for this participatory space.
946
- success: Successfully unpublished all private participants for this participatory space
947
- update:
948
- error: There was a problem updating the private participant for this participatory space.
949
- success: Participatory space private participant successfully updated
950
- participatory_space_private_users_csv_imports:
951
- create:
952
- invalid: There was a problem reading the CSV file. Please make sure you have followed the instructions.
953
- success: CSV file uploaded successfully, we are sending an invitation email to participants. This might take a while.
954
- new:
955
- csv_upload:
956
- title: Upload your CSV file
957
- destroy:
958
- button: Delete all private participants
959
- confirm: Are you sure you want to delete all private participants? This action cannot be undone, you will not be able to recover them.
960
- empty: You have no private participants.
961
- explanation: You have %{count} private participants.
962
- title: Delete private participants
963
- example_file: 'Example file:'
964
- explanation: Upload your CSV file. It must have two columns with email in the first column of the file and name in the last column of the file of the users that you want to add to the participatory space, without headers. Avoid using invalid chars like `<>?%&^*#@()[]=+:;"{}\|` in user name.
965
- explanation_example: |
966
- john.doe@example.org%{csv_col_sep}John Doe
967
- jane.doe@example.org%{csv_col_sep}Jane Doe
968
- title: Import private participants via CSV
969
- upload: Upload
970
992
  reminders:
971
993
  create:
972
994
  error: There was a problem creating reminders.
@@ -975,6 +997,7 @@ en:
975
997
  other: "%{count} users will be reminded."
976
998
  new:
977
999
  submit: Send
1000
+ title: Send reminders
978
1001
  resource_permissions:
979
1002
  edit:
980
1003
  submit: Submit
@@ -992,6 +1015,8 @@ en:
992
1015
  edit:
993
1016
  title: Edit scope type
994
1017
  update: Update
1018
+ index:
1019
+ title: Scope types
995
1020
  new:
996
1021
  create: Create scope type
997
1022
  title: New scope type
@@ -1008,6 +1033,8 @@ en:
1008
1033
  edit:
1009
1034
  title: Edit scope
1010
1035
  update: Update
1036
+ index:
1037
+ title: Scopes
1011
1038
  new:
1012
1039
  create: Create scope
1013
1040
  title: New scope
@@ -1080,12 +1107,14 @@ en:
1080
1107
  edit:
1081
1108
  title: Edit topic
1082
1109
  update: Update topic
1110
+ index:
1111
+ title: Topics
1083
1112
  new:
1084
1113
  create: New topic
1085
1114
  title: New topic
1086
1115
  update:
1087
1116
  error: There was a problem updating this topic.
1088
- success: Topic updated successfully
1117
+ success: Topic updated successfully.
1089
1118
  static_pages:
1090
1119
  actions:
1091
1120
  view: View
@@ -1104,6 +1133,7 @@ en:
1104
1133
  slug_help_html: 'Use partial paths, not full URLs here. Accepts letters, numbers, dashes and slashes, and must start with a letter. Example: %{url}'
1105
1134
  index:
1106
1135
  last_notable_change: Last notable change
1136
+ title: Pages
1107
1137
  new:
1108
1138
  create: New page
1109
1139
  title: New page
@@ -1113,6 +1143,9 @@ en:
1113
1143
  update:
1114
1144
  error: There was a problem updating this page.
1115
1145
  success: Page updated successfully.
1146
+ statistics:
1147
+ index:
1148
+ title: Statistics
1116
1149
  taxonomies:
1117
1150
  actions:
1118
1151
  actions: Actions
@@ -1143,6 +1176,7 @@ en:
1143
1176
  description: Taxonomies and filters allow administrators to sort and organize content. For example, add a taxonomy with the city's districts and neighborhoods and then create filters only with the districts or for a specific neighborhood.
1144
1177
  new_taxonomy: New taxonomy
1145
1178
  no_items_found: No taxonomies found matching the search criteria.
1179
+ title: Taxonomies
1146
1180
  name: Name
1147
1181
  new:
1148
1182
  create: Create taxonomy
@@ -1187,6 +1221,7 @@ en:
1187
1221
  description: A taxonomy filter allows admins to sort and filter participatory spaces based on a taxonomy. For example, add a taxonomy filter to sort processes by geographical scope.
1188
1222
  empty: There are currently no taxonomy filters. Create a list of taxonomy filters here to sort and filter participatory spaces based on a taxonomy.
1189
1223
  new_filter: New filter
1224
+ title: Taxonomy filters for "%{taxonomy}"
1190
1225
  new:
1191
1226
  back: Back
1192
1227
  create: Create taxonomy filter
@@ -1203,13 +1238,17 @@ en:
1203
1238
  error: There was a problem updating this taxonomy filter.
1204
1239
  success: Taxonomy filter updated successfully.
1205
1240
  taxonomy_filters_selector:
1241
+ index:
1242
+ title: Taxonomy filters
1206
1243
  new:
1207
1244
  add_new_items_html: If you need to set a new filter or item, do it through the configuration settings or by clicking <a href="%{url}">here</a>.
1208
1245
  items_count: "%{count} items"
1209
1246
  save: Save
1247
+ title: New taxonomy filter selector
1210
1248
  show:
1211
1249
  items_count: "%{count} items"
1212
1250
  remove: Remove
1251
+ title: Taxonomy filter selector
1213
1252
  taxonomies_select:
1214
1253
  filters: Filters
1215
1254
  select_filter: Select a filter
@@ -1224,25 +1263,12 @@ en:
1224
1263
  none: None
1225
1264
  title: New item in %{taxonomy}
1226
1265
  titles:
1227
- admin_log: Admin log
1228
- area_types: Area types
1229
1266
  areas: Areas
1230
1267
  authorization_workflows: Verification methods
1231
- dashboard: Dashboard
1232
- edit_external_domains: Allowed list of external domains
1233
- impersonatable_users: Manageable participants
1234
- impersonations: Participants management
1235
1268
  menu: Menu
1236
- page_topics: Topics
1237
- pages: Pages
1238
1269
  panel: Admin
1239
- participants: Participants
1240
- scope_types: Scope types
1241
1270
  scopes: Scopes
1242
1271
  statistics: Statistics
1243
- taxonomies: Taxonomies
1244
- taxonomy_filters: Taxonomy filters for "%{taxonomy}"
1245
- users: Administrators
1246
1272
  tooltips:
1247
1273
  cannot_destroy_taxonomy_filter: Cannot destroy this taxonomy filter
1248
1274
  cannot_edit_taxonomy_filter: Cannot edit this taxonomy filter
@@ -1266,6 +1292,8 @@ en:
1266
1292
  email: Email
1267
1293
  name: Name
1268
1294
  role: Role
1295
+ index:
1296
+ title: Administrators
1269
1297
  new:
1270
1298
  create: Invite
1271
1299
  title: Invite new administrator
@@ -28,10 +28,6 @@ eo:
28
28
  newsletter:
29
29
  body: Korpo
30
30
  subject: Temo
31
- participatory_space_private_user:
32
- name: Nomo
33
- participatory_space_private_user_csv_import:
34
- file: Dosiero
35
31
  decidim:
36
32
  admin:
37
33
  managed_users:
@@ -42,8 +38,6 @@ eo:
42
38
  impersonation_log:
43
39
  fields:
44
40
  ended_at: Finita je
45
- participatory_space_private_user:
46
- name: Privata partoprenanto
47
41
  newsletters:
48
42
  select_recipients_to_deliver:
49
43
  all_users_help: Sendu la informilon al ĉiuj konfirmitaj partoprenantoj.