decidim-admin 0.31.6 → 0.32.0.rc1

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