decidim-admin 0.29.3 → 0.30.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 (240) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/admin/multi_select_picker/show.erb +10 -0
  3. data/app/cells/decidim/admin/multi_select_picker_cell.rb +38 -0
  4. data/app/commands/decidim/admin/bulk_action.rb +92 -0
  5. data/app/commands/decidim/admin/bulk_block_users.rb +75 -0
  6. data/app/commands/decidim/admin/bulk_unblock_users.rb +66 -0
  7. data/app/commands/decidim/admin/bulk_unreport_users.rb +69 -0
  8. data/app/commands/decidim/admin/content_blocks/update_content_block.rb +1 -1
  9. data/app/commands/decidim/admin/create_participatory_space_private_user.rb +3 -1
  10. data/app/commands/decidim/admin/create_share_token.rb +39 -0
  11. data/app/commands/decidim/admin/create_taxonomy.rb +23 -0
  12. data/app/commands/decidim/admin/create_taxonomy_filter.rb +24 -0
  13. data/app/commands/decidim/admin/destroy_share_token.rb +22 -0
  14. data/app/commands/decidim/admin/destroy_taxonomy.rb +18 -0
  15. data/app/commands/decidim/admin/destroy_taxonomy_filter.rb +20 -0
  16. data/app/commands/decidim/admin/hide_menu_component.rb +37 -0
  17. data/app/commands/decidim/admin/hide_resource.rb +4 -2
  18. data/app/commands/decidim/admin/publish_all_participatory_space_private_users.rb +50 -0
  19. data/app/commands/decidim/admin/publish_component.rb +3 -0
  20. data/app/commands/decidim/admin/reorder_components.rb +47 -0
  21. data/app/commands/decidim/admin/reorder_taxonomies.rb +76 -0
  22. data/app/commands/decidim/admin/unhide_resource.rb +11 -4
  23. data/app/commands/decidim/admin/unpublish_all_participatory_space_private_users.rb +50 -0
  24. data/app/commands/decidim/admin/unreport_resource.rb +11 -3
  25. data/app/commands/decidim/admin/update_component_permissions.rb +53 -13
  26. data/app/commands/decidim/admin/update_participatory_space_private_user.rb +11 -0
  27. data/app/commands/decidim/admin/update_share_token.rb +24 -0
  28. data/app/commands/decidim/admin/update_taxonomy.rb +20 -0
  29. data/app/commands/decidim/admin/update_taxonomy_filter.rb +28 -0
  30. data/app/controllers/concerns/decidim/admin/component_taxonomies_helper.rb +19 -0
  31. data/app/controllers/concerns/decidim/admin/filterable.rb +15 -18
  32. data/app/controllers/concerns/decidim/admin/has_trashable_resources.rb +170 -0
  33. data/app/controllers/concerns/decidim/admin/needs_admin_tos_accepted.rb +2 -29
  34. data/app/controllers/concerns/decidim/admin/participatory_space_admin_context.rb +12 -2
  35. data/app/controllers/concerns/decidim/admin/taxonomies/filterable.rb +27 -0
  36. data/app/controllers/decidim/admin/application_controller.rb +1 -2
  37. data/app/controllers/decidim/admin/areas_controller.rb +1 -0
  38. data/app/controllers/decidim/admin/block_user_controller.rb +42 -0
  39. data/app/controllers/decidim/admin/component_permissions_controller.rb +2 -4
  40. data/app/controllers/decidim/admin/components_controller.rb +50 -9
  41. data/app/controllers/decidim/admin/concerns/has_private_users.rb +59 -2
  42. data/app/controllers/decidim/admin/global_moderations_controller.rb +4 -0
  43. data/app/controllers/decidim/admin/moderated_users_controller.rb +26 -0
  44. data/app/controllers/decidim/admin/moderations_controller.rb +19 -6
  45. data/app/controllers/decidim/admin/newsletters_controller.rb +50 -7
  46. data/app/controllers/decidim/admin/organization_controller.rb +1 -1
  47. data/app/controllers/decidim/admin/resource_permissions_controller.rb +1 -1
  48. data/app/controllers/decidim/admin/scopes_controller.rb +1 -0
  49. data/app/controllers/decidim/admin/share_tokens_controller.rb +109 -7
  50. data/app/controllers/decidim/admin/taxonomies_controller.rb +129 -0
  51. data/app/controllers/decidim/admin/taxonomy_filters_controller.rb +112 -0
  52. data/app/controllers/decidim/admin/taxonomy_filters_selector_controller.rb +81 -0
  53. data/app/controllers/decidim/admin/taxonomy_items_controller.rb +91 -0
  54. data/app/forms/concerns/decidim/has_taxonomy_form_attributes.rb +57 -0
  55. data/app/forms/decidim/admin/block_users_form.rb +21 -0
  56. data/app/forms/decidim/admin/import_example_form.rb +1 -1
  57. data/app/forms/decidim/admin/newsletter_form.rb +1 -1
  58. data/app/forms/decidim/admin/participatory_space_private_user_form.rb +5 -0
  59. data/app/forms/decidim/admin/selective_newsletter_form.rb +46 -11
  60. data/app/forms/decidim/admin/share_token_form.rb +55 -0
  61. data/app/forms/decidim/admin/taxonomy_filter_form.rb +85 -0
  62. data/app/forms/decidim/admin/taxonomy_form.rb +20 -0
  63. data/app/forms/decidim/admin/taxonomy_item_form.rb +54 -0
  64. data/app/helpers/decidim/admin/application_helper.rb +0 -1
  65. data/app/helpers/decidim/admin/bulk_actions_helper.rb +0 -31
  66. data/app/helpers/decidim/admin/moderations/reports_helper.rb +1 -1
  67. data/app/helpers/decidim/admin/moderations_helper.rb +1 -1
  68. data/app/helpers/decidim/admin/newsletters_helper.rb +57 -27
  69. data/app/helpers/decidim/admin/scopes_helper.rb +0 -6
  70. data/app/helpers/decidim/admin/search_form_helper.rb +1 -1
  71. data/app/helpers/decidim/admin/settings_helper.rb +85 -11
  72. data/app/jobs/decidim/admin/newsletter_job.rb +3 -1
  73. data/app/packs/entrypoints/decidim_admin.js +4 -0
  74. data/app/packs/src/decidim/admin/application.js +2 -0
  75. data/app/packs/src/decidim/admin/draggable-table.js +33 -0
  76. data/app/packs/src/decidim/admin/form.js +0 -1
  77. data/app/packs/src/decidim/admin/global_moderations.js +186 -0
  78. data/app/packs/src/decidim/admin/managed_moderated_users.js +186 -0
  79. data/app/packs/src/decidim/admin/newsletters.js +164 -82
  80. data/app/packs/src/decidim/admin/proposal_infinite_edit.js +3 -6
  81. data/app/packs/src/decidim/admin/sortable.js +28 -16
  82. data/app/packs/src/decidim/admin/taxonomy_filters.js +93 -0
  83. data/app/packs/stylesheets/decidim/admin/_component-show.scss +66 -5
  84. data/app/packs/stylesheets/decidim/admin/_legacy_foundation.scss +13 -0
  85. data/app/packs/stylesheets/decidim/admin/_select_picker.scss +20 -0
  86. data/app/packs/stylesheets/decidim/admin/_table-list.scss +22 -0
  87. data/app/packs/stylesheets/decidim/admin/_taxonomies.scss +74 -0
  88. data/app/packs/stylesheets/decidim/admin/application.scss +3 -0
  89. data/app/permissions/decidim/admin/permissions.rb +30 -7
  90. data/app/queries/decidim/admin/newsletter_recipients.rb +50 -14
  91. data/app/views/decidim/admin/areas/index.html.erb +3 -0
  92. data/app/views/decidim/admin/block_user/bulk_new.html.erb +45 -0
  93. data/app/views/decidim/admin/components/_actions.html.erb +50 -33
  94. data/app/views/decidim/admin/components/{_component.html.erb → _component_row.html.erb} +10 -5
  95. data/app/views/decidim/admin/components/_components_table.html.erb +18 -0
  96. data/app/views/decidim/admin/components/_form.html.erb +0 -12
  97. data/app/views/decidim/admin/components/_taxonomy_filters_drawer.html.erb +2 -0
  98. data/app/views/decidim/admin/components/_visibility_label.html.erb +9 -0
  99. data/app/views/decidim/admin/components/index.html.erb +12 -14
  100. data/app/views/decidim/admin/components/manage_trash.html.erb +11 -0
  101. data/app/views/decidim/admin/moderated_users/_bulk-actions.html.erb +6 -0
  102. data/app/views/decidim/admin/moderated_users/bulk_actions/_block.html.erb +20 -0
  103. data/app/views/decidim/admin/moderated_users/bulk_actions/_dropdown.html.erb +40 -0
  104. data/app/views/decidim/admin/moderated_users/bulk_actions/_unblock.html.erb +20 -0
  105. data/app/views/decidim/admin/moderated_users/bulk_actions/_unreport.html.erb +20 -0
  106. data/app/views/decidim/admin/moderated_users/index.html.erb +14 -6
  107. data/app/views/decidim/admin/moderations/_bulk-actions.html.erb +7 -0
  108. data/app/views/decidim/admin/moderations/_moderation-tr.html.erb +50 -0
  109. data/app/views/decidim/admin/moderations/_moderations-thead.html.erb +18 -0
  110. data/app/views/decidim/admin/moderations/bulk_actions/_dropdown.html.erb +43 -0
  111. data/app/views/decidim/admin/moderations/bulk_actions/_hide.html.erb +20 -0
  112. data/app/views/decidim/admin/moderations/bulk_actions/_unhide.html.erb +20 -0
  113. data/app/views/decidim/admin/moderations/bulk_actions/_unreport.html.erb +20 -0
  114. data/app/views/decidim/admin/moderations/index.html.erb +13 -85
  115. data/app/views/decidim/admin/newsletters/confirm_recipients.html.erb +64 -0
  116. data/app/views/decidim/admin/newsletters/select_recipients_to_deliver.html.erb +44 -20
  117. data/app/views/decidim/admin/participatory_space_private_users/_form.html.erb +6 -0
  118. data/app/views/decidim/admin/participatory_space_private_users/edit.html.erb +19 -0
  119. data/app/views/decidim/admin/participatory_space_private_users/index.html.erb +15 -1
  120. data/app/views/decidim/admin/resource_permissions/_options_form.html.erb +5 -0
  121. data/app/views/decidim/admin/resource_permissions/edit.html.erb +2 -2
  122. data/app/views/decidim/admin/scope_types/index.html.erb +3 -0
  123. data/app/views/decidim/admin/scopes/index.html.erb +3 -0
  124. data/app/views/decidim/admin/share_tokens/_form.html.erb +52 -0
  125. data/app/views/decidim/admin/share_tokens/edit.html.erb +33 -0
  126. data/app/views/decidim/admin/share_tokens/index.html.erb +47 -0
  127. data/app/views/decidim/admin/share_tokens/new.html.erb +69 -0
  128. data/app/views/decidim/admin/taxonomies/_filters.html.erb +19 -0
  129. data/app/views/decidim/admin/taxonomies/_form.html.erb +5 -0
  130. data/app/views/decidim/admin/taxonomies/_row.html.erb +40 -0
  131. data/app/views/decidim/admin/taxonomies/_row_children.html.erb +8 -0
  132. data/app/views/decidim/admin/taxonomies/_table.html.erb +86 -0
  133. data/app/views/decidim/admin/taxonomies/_taxonomy_actions.html.erb +15 -0
  134. data/app/views/decidim/admin/taxonomies/edit.html.erb +87 -0
  135. data/app/views/decidim/admin/taxonomies/index.html.erb +28 -0
  136. data/app/views/decidim/admin/taxonomies/new.html.erb +16 -0
  137. data/app/views/decidim/admin/taxonomy_filters/_check_boxes.html.erb +10 -0
  138. data/app/views/decidim/admin/taxonomy_filters/_form.html.erb +96 -0
  139. data/app/views/decidim/admin/taxonomy_filters/_table.html.erb +33 -0
  140. data/app/views/decidim/admin/taxonomy_filters/edit.html.erb +22 -0
  141. data/app/views/decidim/admin/taxonomy_filters/index.html.erb +26 -0
  142. data/app/views/decidim/admin/taxonomy_filters/new.html.erb +32 -0
  143. data/app/views/decidim/admin/taxonomy_filters_selector/_check_boxes.html.erb +7 -0
  144. data/app/views/decidim/admin/taxonomy_filters_selector/_component_table.html.erb +25 -0
  145. data/app/views/decidim/admin/taxonomy_filters_selector/_taxonomies_select.html.erb +16 -0
  146. data/app/views/decidim/admin/taxonomy_filters_selector/index.html.erb +1 -0
  147. data/app/views/decidim/admin/taxonomy_filters_selector/new.html.erb +27 -0
  148. data/app/views/decidim/admin/taxonomy_filters_selector/show.html.erb +18 -0
  149. data/app/views/decidim/admin/taxonomy_items/_form.html.erb +8 -0
  150. data/app/views/decidim/admin/taxonomy_items/edit.html.erb +12 -0
  151. data/app/views/decidim/admin/taxonomy_items/new.html.erb +12 -0
  152. data/app/views/layouts/decidim/admin/taxonomy_filters.html.erb +17 -0
  153. data/app/views/layouts/decidim/admin/taxonomy_filters_selector.html.erb +10 -0
  154. data/config/locales/ar.yml +43 -44
  155. data/config/locales/bg.yml +50 -53
  156. data/config/locales/bs-BA.yml +3 -30
  157. data/config/locales/ca.yml +298 -58
  158. data/config/locales/cs.yml +292 -50
  159. data/config/locales/de.yml +299 -59
  160. data/config/locales/el.yml +3 -54
  161. data/config/locales/en.yml +293 -53
  162. data/config/locales/eo.yml +0 -1
  163. data/config/locales/es-MX.yml +292 -52
  164. data/config/locales/es-PY.yml +292 -52
  165. data/config/locales/es.yml +290 -50
  166. data/config/locales/eu.yml +316 -76
  167. data/config/locales/fi-plain.yml +294 -52
  168. data/config/locales/fi.yml +294 -52
  169. data/config/locales/fr-CA.yml +179 -53
  170. data/config/locales/fr.yml +179 -53
  171. data/config/locales/ga-IE.yml +6 -24
  172. data/config/locales/gl.yml +2 -50
  173. data/config/locales/he-IL.yml +0 -6
  174. data/config/locales/hu.yml +6 -56
  175. data/config/locales/id-ID.yml +5 -29
  176. data/config/locales/is-IS.yml +6 -31
  177. data/config/locales/it.yml +4 -227
  178. data/config/locales/ja.yml +293 -55
  179. data/config/locales/kaa.yml +0 -12
  180. data/config/locales/ko.yml +2 -60
  181. data/config/locales/lb.yml +4 -52
  182. data/config/locales/lt.yml +1 -52
  183. data/config/locales/lv.yml +3 -31
  184. data/config/locales/nl.yml +4 -52
  185. data/config/locales/no.yml +3 -51
  186. data/config/locales/pl.yml +6 -54
  187. data/config/locales/pt-BR.yml +40 -52
  188. data/config/locales/pt.yml +33 -56
  189. data/config/locales/ro-RO.yml +38 -58
  190. data/config/locales/ru.yml +8 -29
  191. data/config/locales/sk.yml +6 -32
  192. data/config/locales/sl.yml +0 -12
  193. data/config/locales/sq-AL.yml +3 -35
  194. data/config/locales/sr-CS.yml +3 -30
  195. data/config/locales/sv.yml +293 -51
  196. data/config/locales/th-TH.yml +0 -14
  197. data/config/locales/tr-TR.yml +7 -49
  198. data/config/locales/uk.yml +7 -25
  199. data/config/locales/zh-CN.yml +4 -41
  200. data/config/locales/zh-TW.yml +1 -52
  201. data/config/routes.rb +13 -12
  202. data/decidim-admin.gemspec +1 -1
  203. data/lib/decidim/admin/engine.rb +2 -1
  204. data/lib/decidim/admin/import/creator.rb +2 -6
  205. data/lib/decidim/admin/import/readers/json.rb +1 -1
  206. data/lib/decidim/admin/menu.rb +9 -1
  207. data/lib/decidim/admin/search_form_builder.rb +1 -1
  208. data/lib/decidim/admin/test/destroy_admin_examples.rb +2 -2
  209. data/lib/decidim/admin/test/filterable_examples.rb +100 -9
  210. data/lib/decidim/admin/test/forms/attachment_collection_form_examples.rb +1 -1
  211. data/lib/decidim/admin/test/forms/attachment_form_examples.rb +1 -1
  212. data/lib/decidim/admin/test/invite_participatory_space_admins_shared_examples.rb +2 -4
  213. data/lib/decidim/admin/test/manage_component_permissions_examples.rb +5 -5
  214. data/lib/decidim/admin/test/manage_hide_content_examples.rb +3 -5
  215. data/lib/decidim/admin/test/manage_moderations_examples.rb +4 -4
  216. data/lib/decidim/admin/test/manage_resource_soft_deletion_examples.rb +113 -0
  217. data/lib/decidim/admin/test/manage_taxonomy_filters_examples.rb +127 -0
  218. data/lib/decidim/admin/test/taxonomy_filters_examples.rb +32 -0
  219. data/lib/decidim/admin/test.rb +3 -1
  220. data/lib/decidim/admin/version.rb +1 -1
  221. metadata +103 -30
  222. data/app/commands/decidim/admin/create_category.rb +0 -15
  223. data/app/commands/decidim/admin/destroy_category.rb +0 -15
  224. data/app/commands/decidim/admin/destroy_component.rb +0 -19
  225. data/app/commands/decidim/admin/update_category.rb +0 -11
  226. data/app/controllers/decidim/admin/categories_controller.rb +0 -98
  227. data/app/forms/decidim/admin/category_form.rb +0 -32
  228. data/app/helpers/decidim/admin/resource_scope_helper.rb +0 -52
  229. data/app/packs/src/decidim/admin/scope_picker_enabler.component.js +0 -12
  230. data/app/views/decidim/admin/categories/_form.html.erb +0 -18
  231. data/app/views/decidim/admin/categories/edit.html.erb +0 -19
  232. data/app/views/decidim/admin/categories/index.html.erb +0 -65
  233. data/app/views/decidim/admin/categories/new.html.erb +0 -19
  234. data/app/views/decidim/admin/share_tokens/_share_tokens.html.erb +0 -45
  235. data/config/locales/ca-IT.yml +0 -1161
  236. data/lib/decidim/admin/test/commands/create_category_examples.rb +0 -74
  237. data/lib/decidim/admin/test/commands/destroy_category_examples.rb +0 -83
  238. data/lib/decidim/admin/test/commands/update_category_examples.rb +0 -76
  239. data/lib/decidim/admin/test/forms/category_form_examples.rb +0 -70
  240. data/lib/decidim/admin/test/manage_categories_examples.rb +0 -128
@@ -185,8 +185,13 @@ en:
185
185
  attachment_collection:
186
186
  new: New attachment folder
187
187
  browse: Browse
188
- category:
189
- new: New category
188
+ confirm_delete_component: |
189
+ Are you sure you want to delete this component?<br>
190
+ This component contains:<br>
191
+ <ul class="list-disc ml-6 my-2">
192
+ <li class="font-bold">%{resources_count} resources</li>
193
+ </ul>
194
+ If you change your mind, you can restore it later.
190
195
  export: Export all
191
196
  export-selection: Export selection
192
197
  import: Import
@@ -198,14 +203,18 @@ en:
198
203
  per_page: Per page
199
204
  permissions: Permissions
200
205
  reject: Reject
206
+ restore: Restore
201
207
  send_me_a_test_email: Send me a test email
202
208
  share: Share
209
+ share_tokens: Access links
210
+ soft_delete: Soft delete
203
211
  user:
204
212
  new: New admin
205
213
  verify: Verify
214
+ view_deleted_components: View deleted components
206
215
  admin_terms_of_service:
207
216
  accept:
208
- error: There was an error while accepting the admin terms of service.
217
+ error: There was a problem while accepting the admin terms of service.
209
218
  success: Great! You have accepted the admin terms of service.
210
219
  actions:
211
220
  accept: I agree with the terms
@@ -236,6 +245,7 @@ en:
236
245
  create:
237
246
  error: There was a problem creating a new area.
238
247
  success: Area created successfully.
248
+ deprecated: Mind that areas are deprecated and will be removed in future versions. Please use taxonomies instead. The only module currently using areas is the initiatives module.
239
249
  destroy:
240
250
  has_spaces: This area has dependent spaces. Please make sure no Participatory Space references this area before deleting it.
241
251
  success: Area successfully destroyed.
@@ -289,6 +299,12 @@ en:
289
299
  no_results: No results found
290
300
  search_prompt: Type at least three characters to search.
291
301
  block_user:
302
+ bulk_new:
303
+ action: Block accounts and send justification
304
+ already_reported_html: Continuing with this action you will also hide all the participants contents.
305
+ description: Blocking a user will render their account unusable. You may provide in your justification any guidelines on ways you would consider unblocking the user.
306
+ justification: Justification
307
+ title: Block Users
292
308
  new:
293
309
  action: Block account and send justification
294
310
  already_reported_html: Continuing with this action you will also hide all the participants contents.
@@ -296,23 +312,8 @@ en:
296
312
  justification: Justification
297
313
  title: Block User %{name}
298
314
  categories:
299
- create:
300
- error: There was a problem creating this category.
301
- success: Category created successfully.
302
- destroy:
303
- error: There was a problem deleting this category. Please delete any subcategory first, make sure no other entity belongs to this category and try again.
304
- success: Category deleted successfully.
305
- edit:
306
- title: Edit category
307
- update: Update
308
315
  index:
309
316
  categories_title: Categories
310
- new:
311
- create: Create category
312
- title: New category
313
- update:
314
- error: There was a problem updating this category.
315
- success: Category updated successfully.
316
317
  component_permissions:
317
318
  update:
318
319
  error: There was a problem updating the permissions of this component.
@@ -322,9 +323,6 @@ en:
322
323
  error: There was a problem creating this component.
323
324
  success: Component created successfully.
324
325
  success_landing_page: Component created successfully. You can add a content block for this component in the home of the space. Go to <a href="%{landing_page_path}">Landing page</a> to configure it.
325
- destroy:
326
- error: There was a problem destroying this component.
327
- success: Component deleted successfully.
328
326
  edit:
329
327
  title: Edit component
330
328
  update: Update
@@ -332,13 +330,17 @@ en:
332
330
  default_step_settings: Default step settings
333
331
  global_settings: Global settings
334
332
  step_settings: Step settings
333
+ hide:
334
+ success: The component has been successfully hidden from the menu.
335
335
  index:
336
336
  add: Add component
337
337
  headers:
338
338
  actions: Actions
339
339
  name: Component name
340
- scope: Component scope
341
340
  type: Component type
341
+ visibility: Visibility
342
+ manage_trash:
343
+ title: Deleted components
342
344
  new:
343
345
  add: Add component
344
346
  title: 'Add component: %{name}'
@@ -350,6 +352,10 @@ en:
350
352
  update:
351
353
  error: There was a problem updating this component.
352
354
  success: The component was updated successfully.
355
+ visibility_label:
356
+ menu_hidden: Menu hidden
357
+ published: Published
358
+ unpublished: Unpublished
353
359
  conflicts:
354
360
  attempts: Attempts
355
361
  'false': 'No'
@@ -369,7 +375,7 @@ en:
369
375
  user_name: User
370
376
  content_blocks:
371
377
  create:
372
- error: There was an error while creating the content block.
378
+ error: There was a problem while creating the content block.
373
379
  success: Content block successfully created.
374
380
  destroy:
375
381
  error: There was a problem trying to delete this content block.
@@ -406,8 +412,6 @@ en:
406
412
  JSON: JSON
407
413
  notice: Your export is currently in progress. You will receive an email when it is complete.
408
414
  filters:
409
- category_id_eq:
410
- label: Category
411
415
  filter_label: Filter
412
416
  invitation_accepted_at_present:
413
417
  label: Invite accepted
@@ -456,8 +460,6 @@ en:
456
460
  'false': Published
457
461
  'true': Unpublished
458
462
  remove_all: Remove all
459
- scope_id_eq:
460
- label: Scope
461
463
  search_label: Search
462
464
  search_placeholder:
463
465
  name_or_nickname_or_email_cont: Search %{collection} by email, name or nickname.
@@ -472,6 +474,9 @@ en:
472
474
  pending: Pending
473
475
  rejected: Rejected
474
476
  verified: Verified
477
+ taxonomies:
478
+ taxonomy_id_eq:
479
+ label: Taxonomy
475
480
  forms:
476
481
  file_help:
477
482
  import:
@@ -561,6 +566,8 @@ en:
561
566
  logs_list:
562
567
  no_logs_yet: There are no logs yet.
563
568
  no_matching_logs: There are no logs with the provided search filters. Try to change them and retry.
569
+ manage_trash:
570
+ deleted_items_warning: You are currently viewing deleted items. To make any edits or changes, you must first restore them.
564
571
  managed_users:
565
572
  promotion:
566
573
  error: There was a problem promoting the managed participant.
@@ -592,8 +599,11 @@ en:
592
599
  scopes: Scopes
593
600
  see_site: See site
594
601
  settings: Settings
602
+ share_tokens: Access links
595
603
  static_page_topics: Topics
596
604
  static_pages: Pages
605
+ taxonomies: Taxonomies
606
+ taxonomy_filters: Taxonomy filters
597
607
  user_groups: Groups
598
608
  users: Participants
599
609
  metrics:
@@ -647,12 +657,11 @@ en:
647
657
  plural: Plural
648
658
  share_token:
649
659
  fields:
650
- created_at: Created at
660
+ actions: Actions
651
661
  expires_at: Expires at
652
- last_used_at: Last time used
662
+ registered_only: Registered only?
653
663
  times_used: Times used
654
- token: Token
655
- user: Created by
664
+ token: Access link
656
665
  static_page:
657
666
  fields:
658
667
  created_at: Created at
@@ -682,13 +691,27 @@ en:
682
691
  index:
683
692
  actions:
684
693
  block: Block User
694
+ bulk_actions:
695
+ actions_dropdown: Actions
696
+ block:
697
+ title: Block
698
+ update_moderated_user_button: Block users
699
+ unblock:
700
+ title: Unblock
701
+ update_moderated_user_button: Unblock users
702
+ unreport:
703
+ title: Unreport
704
+ ignore:
705
+ update_moderated_user_button: Unreport users
685
706
  title: Actions
686
707
  unblock: Unblock User
687
708
  unreport: Unreport
709
+ cancel: Cancel
688
710
  name: Name
689
711
  nickname: Nickname
690
712
  reason: Reason
691
713
  reports: Reports count
714
+ selected: Selected
692
715
  title: Reported participants
693
716
  report:
694
717
  reasons:
@@ -700,13 +723,25 @@ en:
700
723
  unblocked: Not Blocked
701
724
  moderations:
702
725
  index:
726
+ actions:
727
+ actions_dropdown: Actions
728
+ hide:
729
+ title: Hide
730
+ update_moderation_button: Hide selected resources
731
+ unhide:
732
+ title: Unhide
733
+ update_moderation_button: Unhide selected resources
734
+ unreport:
735
+ title: Unreport
736
+ update_moderation_button: Unreport selected resources
737
+ cancel: Cancel
738
+ selected: selected
703
739
  title: Reported content
704
740
  report:
705
741
  reasons:
706
742
  does_not_belong: Does not belong
707
743
  hidden_during_block: Hidden while blocking user
708
744
  offensive: Offensive
709
- parent_hidden: Parent content has been hidden
710
745
  spam: Spam
711
746
  reports:
712
747
  index:
@@ -737,6 +772,10 @@ en:
737
772
  preview: 'Preview template: %{template_name}'
738
773
  use_template: Use this template
739
774
  newsletters:
775
+ confirm_recipients:
776
+ email: Email
777
+ name: Name
778
+ title: Confirm recipients
740
779
  create:
741
780
  error: There was a problem creating this newsletter.
742
781
  success: Newsletter created successfully. Please review it before sending.
@@ -756,12 +795,14 @@ en:
756
795
  confirm_delete: Are you sure you want to delete this newsletter?
757
796
  followers: 'followers '
758
797
  has_been_sent_to: 'Has been sent to: '
759
- no_scopes: No scopes
760
798
  not_sent: Not sent
761
799
  participants: 'participants '
800
+ private_members: 'private members '
762
801
  segmented_to: 'Segmented to %{subject}: '
763
802
  subscribed_count: 'Subscribed:'
764
803
  title: Newsletters
804
+ verification_types: 'Verification types: %{types}'
805
+ verified_users: Verified users
765
806
  new:
766
807
  save: Save
767
808
  title: New newsletter
@@ -769,16 +810,24 @@ en:
769
810
  all_spaces: All
770
811
  all_users_help: Sends newsletter to all confirmed users.
771
812
  confirm_deliver: Are you sure you want to deliver this newsletter? This action cannot be undone.
813
+ confirm_recipients: Confirm recipients
772
814
  deliver: Deliver newsletter
773
815
  followers_help: Sends newsletter to all confirmed users that follow any selected participatory spaces in the list.
774
- none: None
775
816
  participants_help: Sends newsletter to all confirmed users that have participated in any of the selected participatory spaces in the list.
817
+ private_members_help: Sends a newsletter to all confirmed users that have been added to the selected private participatory spaces.
776
818
  recipients_count: This newsletter will be send to <strong id='recipients_count'>%{count}</strong> users.
777
- scopes_help: Sends newsletter to users that have any of the selected scope activated in their account's "My Interests" settings.
778
- select_scopes: Filter for users having activated any selected scope in their account's My Interests settings.
819
+ select_assemblies: Choose assemblies
820
+ select_conferences: Choose conferences
821
+ select_initiatives: Choose initiatives
822
+ select_participatory_processes: Choose participatory processes
779
823
  select_spaces: Select spaces to segment the newsletter
780
- select_users: Select which users you want to send the newsletter
824
+ select_users_for_participatory_space: Send newsletter to one or more participatory spaces
825
+ select_users_general: Send general newsletter
826
+ select_verification_types: Choose verification methods
827
+ send_to_all_users: Send to all users
828
+ send_to_verified_users: Send to verified users
781
829
  title: Select recipients to deliver
830
+ verified_users_help: Sends a newsletter to all confirmed and verified users via any selected verification method.
782
831
  warning: "<strong>Attention:</strong> This newsletter will only be send to users that have activated <em>I want to receive newsletters</em> in their notifications settings."
783
832
  send:
784
833
  no_recipients: No recipients for this selection.
@@ -794,8 +843,15 @@ en:
794
843
  success: Newsletter updated successfully. Please review it before sending.
795
844
  officializations:
796
845
  block:
797
- error: There was an error blocking the participant.
846
+ error: There was a problem blocking the participant.
798
847
  success: Participant successfully blocked.
848
+ bulk_action:
849
+ block:
850
+ invalid: There was a problem blocking the participants.
851
+ success: Participants successfully blocked.
852
+ unblock:
853
+ invalid: There was a problem unblocking the participants.
854
+ success: Participants successfully unblocked.
799
855
  create:
800
856
  success: Participant successfully officialized.
801
857
  destroy:
@@ -828,7 +884,7 @@ en:
828
884
  show: Show
829
885
  title: Show participant's email address
830
886
  unblock:
831
- error: There was an error unblocking the participant.
887
+ error: There was a problem unblocking the participant.
832
888
  success: Participant successfully unblocked.
833
889
  organization:
834
890
  edit:
@@ -888,12 +944,26 @@ en:
888
944
  destroy:
889
945
  error: There was a problem deleting a private participant for this participatory space.
890
946
  success: Participatory space private participant access successfully destroyed.
947
+ edit:
948
+ title: Edit Participatory Space private participant.
949
+ update: Update
891
950
  index:
892
951
  import_via_csv: Import via CSV
952
+ publish_all: Publish all
893
953
  title: Participatory space private participant
954
+ unpublish_all: Unpublish all
894
955
  new:
895
956
  create: Create
896
957
  title: New Participatory Space private participant.
958
+ publish_all:
959
+ error: There was a problem publishing all the private participants for this participatory space.
960
+ success: Successfully published all private participants for this participatory space
961
+ unpublish_all:
962
+ error: There was a problem unpublishing all the private participants for this participatory space.
963
+ success: Successfully unpublished all private participants for this participatory space
964
+ update:
965
+ error: There was a problem updating the private participant for this participatory space.
966
+ success: Participatory space private participant successfully updated
897
967
  participatory_space_private_users_csv_imports:
898
968
  create:
899
969
  invalid: There was a problem reading the CSV file. Please make sure you have followed the instructions.
@@ -926,12 +996,10 @@ en:
926
996
  edit:
927
997
  submit: Submit
928
998
  title: Edit permissions
999
+ options_form:
1000
+ ephemeral_warning: In order to enable this authorization method, you need to <a href="%{path}">revoke</a> all of the existing authorizations. This minimises the risk of verification conflicts. All the authorizations of this type will be revoked automatically in the organization if you submit changes adding this method or modifiyng its configuration once added.
929
1001
  update:
930
1002
  success: Permissions updated successfully.
931
- resources:
932
- index:
933
- headers:
934
- scope: Scope
935
1003
  scope_types:
936
1004
  create:
937
1005
  error: There was a problem creating a new scope type.
@@ -951,6 +1019,7 @@ en:
951
1019
  create:
952
1020
  error: There was a problem creating a new scope.
953
1021
  success: Scope created successfully.
1022
+ deprecated: Mind that scopes are deprecated and will be removed in future versions. Please use taxonomies instead. The only module currently using scopes is the initiatives module.
954
1023
  destroy:
955
1024
  success: Scope successfully destroyed.
956
1025
  edit:
@@ -965,16 +1034,50 @@ en:
965
1034
  success: Scope updated successfully
966
1035
  share_tokens:
967
1036
  actions:
968
- confirm_destroy: Are you sure you want to delete this token?
1037
+ confirm_destroy: Are you sure you want to delete this access?
1038
+ copy_link: Copy link
969
1039
  destroy: Delete
970
- share: Share
1040
+ edit: Edit
1041
+ preview: Preview
1042
+ create:
1043
+ invalid: There was a problem generating the access link.
1044
+ success: Access link created successfully.
971
1045
  destroy:
972
- error: There was a problem destroying the token.
973
- success: Token destroyed successfully.
974
- share_tokens:
975
- empty: There are no active tokens.
976
- help: These tokens are used to publicly share this unpublished resource to any user. They will be hidden when the resource is published. Click on the token's share icon to visit the shareable URL.
977
- title: Share tokens
1046
+ error: There was a problem destroying the access link.
1047
+ success: Access link successfully destroyed.
1048
+ edit:
1049
+ title: 'Edit access links for: %{name}'
1050
+ update: Update
1051
+ form:
1052
+ automatic: Automatic
1053
+ custom: Custom
1054
+ custom_expiration: Custom expiration
1055
+ custom_token: Custom word
1056
+ expires_at: Expires at
1057
+ 'false': 'No'
1058
+ never_expire: Never
1059
+ registered_only: Registered only?
1060
+ token: Access key
1061
+ 'true': 'Yes'
1062
+ index:
1063
+ back_to_share_tokens: Back to access links
1064
+ copied: Access link copied!
1065
+ copy_message: The text was successfully copied to clipboard.
1066
+ create_new_token: Create your first access link!
1067
+ empty_html: There are no active access links. %{new_token_link}
1068
+ never: Never
1069
+ new_share_token_button: New access link
1070
+ share_tokens_help_html: |
1071
+ Create and share an access link to allow others to view this unpublished resource.
1072
+ Access links can be valid for registered participants only or have and expiration date if necessary.
1073
+ To share a new access link with someone, create it and then copy the link using the "%{clipboard} clipboard" action icon.
1074
+ title: 'Access links for: %{name}'
1075
+ new:
1076
+ create: Create
1077
+ title: 'New access link for: %{name}'
1078
+ update:
1079
+ error: There was a problem updating this access.
1080
+ success: Access link updated successfully.
978
1081
  shared:
979
1082
  adjacent_navigation:
980
1083
  next: Next
@@ -1027,6 +1130,116 @@ en:
1027
1130
  update:
1028
1131
  error: There was a problem updating this page.
1029
1132
  success: Page updated successfully.
1133
+ taxonomies:
1134
+ actions:
1135
+ actions: Actions
1136
+ destroy: Delete taxonomy & items
1137
+ edit: Edit taxonomy & items
1138
+ filters: Manage filters
1139
+ breadcrumb:
1140
+ edit: Edit taxonomy
1141
+ new: New taxonomy
1142
+ count: Associated resources
1143
+ create:
1144
+ invalid: There was a problem creating this taxonomy.
1145
+ success: Taxonomy created successfully.
1146
+ destroy:
1147
+ invalid: There was a problem destroying this taxonomy.
1148
+ success: Taxonomy successfully destroyed.
1149
+ edit:
1150
+ back: Back
1151
+ description: The items in this taxonomy will be used to classify or filter resources, such as participatory spaces or components. Use drag and drop to reorder the list.
1152
+ new_item: New item
1153
+ no_items: There are currently no items in this taxonomy. Create a list of items here to classify or filter resources, such as participatory spaces or components. Items can be nested up to three levels.
1154
+ subtitle: Items in "%{taxonomy_name}"
1155
+ title: Edit taxonomy "%{taxonomy_name}"
1156
+ update: Update
1157
+ filters:
1158
+ search_placeholder: Search
1159
+ index:
1160
+ 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.
1161
+ new_taxonomy: New taxonomy
1162
+ no_items_found: No taxonomies found matching the search criteria.
1163
+ name: Name
1164
+ new:
1165
+ create: Create taxonomy
1166
+ title: New taxonomy
1167
+ no_taxonomies: There are currently no taxonomies. Create a list of taxonomies here and define items in each of them to classify or filter resources.
1168
+ table:
1169
+ to_next_page: Drag over for next page
1170
+ to_prev_page: Drag over for previous page
1171
+ taxonomy_actions:
1172
+ confirm_destroy: 'Are you sure you want to delete %{name}? This will also delete all the children items. NOTE: Resources that are using this taxonomy will not be affected but they will lose the reference to this taxonomy.'
1173
+ total_filters: Filters
1174
+ total_items: Items in the taxonomy
1175
+ update:
1176
+ invalid: There was a problem updating this taxonomy.
1177
+ success: Taxonomy updated successfully.
1178
+ taxonomy_filters:
1179
+ actions:
1180
+ new_taxonomy_filter: New taxonomy filter
1181
+ breadcrumb:
1182
+ edit: Edit filter
1183
+ filters: Filters
1184
+ new: New filter
1185
+ create:
1186
+ error: There was a problem creating this taxonomy filter.
1187
+ success: Taxonomy filter created successfully.
1188
+ destroy:
1189
+ error: There was a problem destroying this taxonomy filter.
1190
+ success: Taxonomy filter successfully destroyed.
1191
+ edit:
1192
+ back: Back
1193
+ title: Edit taxonomy filter
1194
+ update: Update taxonomy filter
1195
+ form:
1196
+ all: All
1197
+ items:
1198
+ one: "%{count} item selected"
1199
+ other: "%{count} items selected"
1200
+ name_help: The title of the filter to be displayed in the frontend.
1201
+ no_items: No items are available for this taxonomy. You can create items in the taxonomy configuration settings.
1202
+ space_filter: Available as filter for
1203
+ index:
1204
+ 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.
1205
+ empty: There are currently no taxonomy filters. Create a list of taxonomy filters here to sort and filter participatory spaces based on a taxonomy.
1206
+ new_filter: New filter
1207
+ new:
1208
+ back: Back
1209
+ create: Create taxonomy filter
1210
+ title: New taxonomy filter
1211
+ table:
1212
+ actions: Actions
1213
+ components_count: Components using this
1214
+ confirm_destroy: 'Are you sure you want to delete the filter %{name}? NOTE: Resources that are using this filter will not be affected but they will lose the reference to this filter.'
1215
+ destroy: Delete
1216
+ edit: Edit
1217
+ internal_name: Internal label
1218
+ name: Label
1219
+ update:
1220
+ error: There was a problem updating this taxonomy filter.
1221
+ success: Taxonomy filter updated successfully.
1222
+ taxonomy_filters_selector:
1223
+ new:
1224
+ 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>.
1225
+ items_count: "%{count} items"
1226
+ save: Save
1227
+ show:
1228
+ items_count: "%{count} items"
1229
+ remove: Remove
1230
+ taxonomies_select:
1231
+ filters: Filters
1232
+ select_filter: Select a filter
1233
+ select_taxonomy: Select a taxonomy
1234
+ taxonomies: Taxonomies
1235
+ taxonomy_items:
1236
+ edit:
1237
+ title: Edit item in %{taxonomy}
1238
+ update: Update item
1239
+ new:
1240
+ create: Create item
1241
+ none: None
1242
+ title: New item in %{taxonomy}
1030
1243
  titles:
1031
1244
  admin_log: Admin log
1032
1245
  area_types: Area types
@@ -1047,8 +1260,19 @@ en:
1047
1260
  scope_types: Scope types
1048
1261
  scopes: Scopes
1049
1262
  statistics: Activity
1263
+ taxonomies: Taxonomies
1264
+ taxonomy_filters: Taxonomy filters for "%{taxonomy}"
1050
1265
  user_groups: Groups
1051
1266
  users: Administrators
1267
+ tooltips:
1268
+ deleted_component_info: This component can only be deleted if status is 'Unpublished'.
1269
+ trash_management:
1270
+ restore:
1271
+ invalid: There was a problem restoring %{resource_name}.
1272
+ success: "%{resource_name} successfully restored."
1273
+ soft_delete:
1274
+ invalid: There was a problem deleting %{resource_name}.
1275
+ success: "%{resource_name} successfully deleted."
1052
1276
  user_group:
1053
1277
  csv_verify:
1054
1278
  invalid: There was a problem reading the CSV file.
@@ -1117,18 +1341,32 @@ en:
1117
1341
  hidden: Hidden
1118
1342
  hide: Hide
1119
1343
  not_hidden: Not hidden
1120
- parent_hidden: You cannot unhide this resource because its parent is still hidden.
1121
1344
  title: Actions
1122
1345
  unhide: Unhide
1123
1346
  unreport: Unreport
1124
1347
  admin:
1125
1348
  reportable:
1349
+ bulk_action:
1350
+ hide:
1351
+ failed: 'There was a problem hiding some resources: %{errored}'
1352
+ invalid: No moderations selected.
1353
+ success: Resources successfully hidden.
1354
+ ignore:
1355
+ invalid: No users moderations selected.
1356
+ success: Participants successfully unreported.
1357
+ unhide:
1358
+ failed: 'There was a problem unhiding some resources: %{errored}'
1359
+ invalid: No moderations selected.
1360
+ success: Resources successfully unhidden.
1361
+ unreport:
1362
+ failed: 'There was a problem unreporting some resources: %{errored}'
1363
+ invalid: No moderations selected.
1364
+ success: Resources successfully unreported.
1126
1365
  hide:
1127
1366
  invalid: There was a problem hiding the resource.
1128
1367
  success: Resource successfully hidden.
1129
1368
  unhide:
1130
1369
  invalid: There was a problem unhiding the resource.
1131
- parent_invalid: There was a problem unhiding the resource. Parent is not visible.
1132
1370
  success: Resource successfully unhidden.
1133
1371
  unreport:
1134
1372
  invalid: There was a problem unreporting the resource.
@@ -1159,3 +1397,5 @@ en:
1159
1397
  admin:
1160
1398
  global_moderations:
1161
1399
  title: Global moderations
1400
+ taxonomy_filters_selector:
1401
+ title: Filters
@@ -44,7 +44,6 @@ eo:
44
44
  user_group:
45
45
  fields:
46
46
  document_number: Dokumento Nombro
47
- name: Nomo
48
47
  newsletters:
49
48
  select_recipients_to_deliver:
50
49
  all_users_help: Sendu la informilon al ĉiuj konfirmitaj partoprenantoj.