decidim-core 0.29.4 → 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 (562) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/address/show.erb +3 -3
  3. data/app/cells/decidim/amendable/amend_button_card/show.erb +6 -4
  4. data/app/cells/decidim/amendable/amend_button_card_cell.rb +8 -0
  5. data/app/cells/decidim/amendable/amendments/show.erb +1 -1
  6. data/app/cells/decidim/amendable/promote_button_card/show.erb +2 -0
  7. data/app/cells/decidim/author/flag.erb +6 -0
  8. data/app/cells/decidim/author/flag_user.erb +14 -0
  9. data/app/cells/decidim/author/show.erb +4 -2
  10. data/app/cells/decidim/author_cell.rb +1 -1
  11. data/app/cells/decidim/card_l/extra_data.erb +1 -0
  12. data/app/cells/decidim/card_metadata_cell.rb +9 -16
  13. data/app/cells/decidim/comments_button_cell.rb +14 -2
  14. data/app/cells/decidim/content_blocks/highlighted_elements_cell.rb +2 -0
  15. data/app/cells/decidim/content_blocks/highlighted_elements_with_cell_for_list_cell.rb +1 -1
  16. data/app/cells/decidim/content_blocks/participatory_space_extra_data/extra_data.erb +2 -2
  17. data/app/cells/decidim/endorsement_block/show.erb +0 -1
  18. data/app/cells/decidim/endorsement_block_cell.rb +6 -0
  19. data/app/cells/decidim/endorsement_buttons/button_content.erb +1 -1
  20. data/app/cells/decidim/endorsement_buttons/select_identity_button.erb +1 -1
  21. data/app/cells/decidim/endorsement_buttons/show.erb +7 -7
  22. data/app/cells/decidim/endorsement_buttons/verification_modal.erb +4 -2
  23. data/app/cells/decidim/endorsers_list/empty.erb +3 -0
  24. data/app/cells/decidim/endorsers_list/full.erb +17 -5
  25. data/app/cells/decidim/endorsers_list/show.erb +19 -10
  26. data/app/cells/decidim/endorsers_list_cell.rb +19 -6
  27. data/app/cells/decidim/flag_modal/flag_user.erb +34 -0
  28. data/app/cells/decidim/flag_modal/show.erb +52 -0
  29. data/app/cells/decidim/flag_modal_cell.rb +56 -0
  30. data/app/cells/decidim/follow_button/show.erb +1 -2
  31. data/app/cells/decidim/follow_button_cell.rb +5 -0
  32. data/app/cells/decidim/map/show.erb +3 -0
  33. data/app/cells/decidim/map/template.erb +14 -0
  34. data/app/cells/decidim/map_cell.rb +39 -0
  35. data/app/cells/decidim/notification_actions/buttons_cell.rb +1 -1
  36. data/app/cells/decidim/onboarding_action_message/show.erb +15 -0
  37. data/app/cells/decidim/onboarding_action_message_cell.rb +81 -0
  38. data/app/cells/decidim/participatory_space_dropdown_metadata/metadata.erb +4 -4
  39. data/app/cells/decidim/participatory_space_dropdown_metadata/show.erb +3 -5
  40. data/app/cells/decidim/participatory_space_private_user/show.erb +23 -0
  41. data/app/cells/decidim/participatory_space_private_user_cell.rb +21 -0
  42. data/app/cells/decidim/profile_actions/show.erb +1 -1
  43. data/app/cells/decidim/profile_sidebar/show.erb +167 -0
  44. data/app/cells/decidim/profile_sidebar_cell.rb +68 -0
  45. data/app/cells/decidim/progress_bar/show.erb +2 -2
  46. data/app/cells/decidim/report_button/already_reported_modal.erb +2 -2
  47. data/app/cells/decidim/report_button/flag_modal.erb +27 -13
  48. data/app/cells/decidim/report_button_cell.rb +9 -2
  49. data/app/cells/decidim/resource_history/show.erb +20 -0
  50. data/app/cells/decidim/resource_history_cell.rb +66 -0
  51. data/app/cells/decidim/resource_types_filter/show.erb +1 -1
  52. data/app/cells/decidim/resource_types_filter_cell.rb +6 -6
  53. data/app/cells/decidim/share_button_cell.rb +0 -4
  54. data/app/cells/decidim/share_widget/modal.erb +26 -0
  55. data/app/cells/decidim/share_widget/show.erb +2 -0
  56. data/app/cells/decidim/share_widget_cell.rb +20 -0
  57. data/app/cells/decidim/tags/show.erb +7 -4
  58. data/app/cells/decidim/tags_cell.rb +11 -72
  59. data/app/cells/decidim/user_activity/show.erb +1 -1
  60. data/app/commands/decidim/amendable/create_draft.rb +2 -2
  61. data/app/commands/decidim/create_ephemeral_user.rb +52 -0
  62. data/app/commands/decidim/create_omniauth_registration.rb +21 -17
  63. data/app/commands/decidim/create_report.rb +8 -11
  64. data/app/commands/decidim/create_user_group.rb +6 -2
  65. data/app/commands/decidim/destroy_ephemeral_user.rb +47 -0
  66. data/app/commands/decidim/invite_user.rb +1 -1
  67. data/app/commands/decidim/search.rb +0 -14
  68. data/app/commands/decidim/update_account.rb +11 -3
  69. data/app/commands/decidim/update_notifications_settings.rb +1 -0
  70. data/app/commands/decidim/update_resources_taxonomies.rb +67 -0
  71. data/app/commands/decidim/update_user_group.rb +7 -1
  72. data/app/constraints/decidim/current_component.rb +1 -1
  73. data/app/controllers/concerns/decidim/ajax_permission_handler.rb +21 -0
  74. data/app/controllers/concerns/decidim/devise_authentication_methods.rb +3 -6
  75. data/app/controllers/concerns/decidim/devise_controllers.rb +2 -0
  76. data/app/controllers/concerns/decidim/disable_redirection_to_external_host.rb +1 -1
  77. data/app/controllers/concerns/decidim/ephemeral_session_checker.rb +87 -0
  78. data/app/controllers/concerns/decidim/filter_resource.rb +4 -2
  79. data/app/controllers/concerns/decidim/has_members_page.rb +25 -0
  80. data/app/controllers/concerns/decidim/headers/browser_feature_permissions.rb +50 -0
  81. data/app/controllers/concerns/decidim/locale_switcher.rb +2 -2
  82. data/app/controllers/concerns/decidim/needs_password_change.rb +0 -1
  83. data/app/controllers/concerns/decidim/needs_permission.rb +2 -1
  84. data/app/controllers/concerns/decidim/needs_tos_accepted.rb +4 -5
  85. data/app/controllers/concerns/decidim/onboarding_action_methods.rb +52 -0
  86. data/app/controllers/concerns/decidim/participatory_space_context.rb +1 -4
  87. data/app/controllers/decidim/application_controller.rb +10 -0
  88. data/app/controllers/decidim/authorization_modals_controller.rb +8 -2
  89. data/app/controllers/decidim/components/base_controller.rb +3 -7
  90. data/app/controllers/decidim/devise/confirmations_controller.rb +4 -0
  91. data/app/controllers/decidim/devise/omniauth_registrations_controller.rb +8 -1
  92. data/app/controllers/decidim/devise/registrations_controller.rb +1 -1
  93. data/app/controllers/decidim/devise/sessions_controller.rb +2 -0
  94. data/app/controllers/decidim/download_your_data_controller.rb +33 -2
  95. data/app/controllers/decidim/editor_images_controller.rb +1 -11
  96. data/app/controllers/decidim/follows_controller.rb +1 -1
  97. data/app/controllers/decidim/geolocation_controller.rb +19 -0
  98. data/app/controllers/decidim/homepage_controller.rb +0 -1
  99. data/app/controllers/decidim/open_data_controller.rb +33 -8
  100. data/app/controllers/decidim/profiles_controller.rb +2 -2
  101. data/app/controllers/decidim/reports_controller.rb +2 -7
  102. data/app/controllers/decidim/user_activities_controller.rb +1 -1
  103. data/app/controllers/decidim/user_conversations_controller.rb +1 -11
  104. data/app/events/decidim/soft_delete_resource_event.rb +15 -0
  105. data/app/forms/decidim/account_form.rb +2 -5
  106. data/app/forms/decidim/amendable/form.rb +4 -2
  107. data/app/forms/decidim/ephemeral_user_form.rb +22 -0
  108. data/app/forms/decidim/notifications_settings_form.rb +1 -0
  109. data/app/forms/decidim/omniauth_registration_form.rb +15 -2
  110. data/app/forms/decidim/registration_form.rb +1 -1
  111. data/app/helpers/concerns/decidim/flash_helper_extensions.rb +17 -2
  112. data/app/helpers/decidim/action_authorization_helper.rb +75 -14
  113. data/app/helpers/decidim/amendments_helper.rb +0 -9
  114. data/app/helpers/decidim/application_helper.rb +6 -2
  115. data/app/helpers/decidim/breadcrumb_helper.rb +6 -0
  116. data/app/helpers/decidim/cache_helper.rb +1 -1
  117. data/app/helpers/decidim/check_boxes_tree_helper.rb +25 -53
  118. data/app/helpers/decidim/decidim_form_helper.rb +0 -44
  119. data/app/helpers/decidim/endorsable_helper.rb +0 -10
  120. data/app/helpers/decidim/layout_helper.rb +6 -0
  121. data/app/helpers/decidim/menu_helper.rb +2 -2
  122. data/app/helpers/decidim/messaging/conversation_helper.rb +2 -3
  123. data/app/helpers/decidim/meta_tags_helper.rb +32 -23
  124. data/app/helpers/decidim/modal_helper.rb +23 -0
  125. data/app/helpers/decidim/omniauth_helper.rb +5 -5
  126. data/app/helpers/decidim/onboarding_action_helper.rb +13 -0
  127. data/app/helpers/decidim/orders_helper.rb +1 -2
  128. data/app/helpers/decidim/paginate_helper.rb +1 -1
  129. data/app/helpers/decidim/participatory_space_helpers.rb +1 -1
  130. data/app/helpers/decidim/passwords_helper.rb +2 -2
  131. data/app/helpers/decidim/taxonomies_helper.rb +40 -0
  132. data/app/helpers/decidim/tooltip_helper.rb +1 -4
  133. data/app/jobs/decidim/download_your_data_export_job.rb +2 -19
  134. data/app/jobs/decidim/event_publisher_job.rb +18 -9
  135. data/app/jobs/decidim/export_job.rb +5 -1
  136. data/app/jobs/decidim/export_participatory_space_job.rb +4 -1
  137. data/app/jobs/decidim/open_data_job.rb +4 -4
  138. data/app/mailers/decidim/export_mailer.rb +7 -12
  139. data/app/mailers/decidim/notifications_digest_mailer.rb +1 -7
  140. data/app/mailers/decidim/reported_mailer.rb +2 -18
  141. data/app/models/decidim/action_log.rb +20 -1
  142. data/app/models/decidim/category.rb +4 -0
  143. data/app/models/decidim/component.rb +25 -3
  144. data/app/models/decidim/metric.rb +2 -1
  145. data/app/models/decidim/moderation.rb +16 -0
  146. data/app/models/decidim/newsletter.rb +12 -8
  147. data/app/models/decidim/organization.rb +7 -3
  148. data/app/models/decidim/participatory_space_private_user.rb +20 -0
  149. data/app/models/decidim/private_export.rb +24 -0
  150. data/app/models/decidim/push_notification_message.rb +1 -1
  151. data/app/models/decidim/report.rb +1 -1
  152. data/app/models/decidim/scope.rb +4 -0
  153. data/app/models/decidim/share_token.rb +36 -10
  154. data/app/models/decidim/taxonomization.rb +23 -0
  155. data/app/models/decidim/taxonomy.rb +139 -0
  156. data/app/models/decidim/taxonomy_filter.rb +130 -0
  157. data/app/models/decidim/taxonomy_filter_item.rb +33 -0
  158. data/app/models/decidim/user.rb +13 -23
  159. data/app/models/decidim/user_base_entity.rb +12 -4
  160. data/app/models/decidim/user_moderation.rb +9 -0
  161. data/app/models/decidim/user_report.rb +4 -0
  162. data/app/packs/entrypoints/decidim_core.js +1 -0
  163. data/app/packs/entrypoints/decidim_geocoding.js +2 -0
  164. data/app/packs/images/decidim/brands/facebook.svg +10 -0
  165. data/app/packs/images/decidim/brands/google.svg +7 -1
  166. data/app/packs/images/decidim/brands/twitter-x.svg +3 -0
  167. data/app/packs/src/decidim/check_boxes_tree.js +0 -1
  168. data/app/packs/src/decidim/clipboard.js +18 -9
  169. data/app/packs/src/decidim/confirm.js +79 -59
  170. data/app/packs/src/decidim/datepicker/datepicker_functions.js +3 -3
  171. data/app/packs/src/decidim/decidim_application.js +1 -0
  172. data/app/packs/src/decidim/form_remote.js +1 -1
  173. data/app/packs/src/decidim/geocoding/reverse_geocoding.js +60 -0
  174. data/app/packs/src/decidim/impersonation.js +1 -1
  175. data/app/packs/src/decidim/index.js +13 -5
  176. data/app/packs/src/decidim/input_character_counter.js +1 -1
  177. data/app/packs/src/decidim/map/provider/here.js +1 -1
  178. data/app/packs/src/decidim/onboarding_pending_action.js +24 -0
  179. data/app/packs/src/decidim/session_timeouter.js +1 -1
  180. data/app/packs/src/decidim/sticky_footer.js +29 -0
  181. data/app/packs/src/decidim/sticky_header.js +6 -31
  182. data/app/packs/src/decidim/user_registrations.js +13 -0
  183. data/app/packs/src/decidim/utilities/dom.js +148 -0
  184. data/app/packs/src/decidim/vendor/leaflet-tilelayer-here.js +212 -0
  185. data/app/packs/stylesheets/decidim/_accordion.scss +30 -0
  186. data/app/packs/stylesheets/decidim/_buttons.scss +19 -0
  187. data/app/packs/stylesheets/decidim/_cards.scss +1 -1
  188. data/app/packs/stylesheets/decidim/_content_blocks.scss +0 -4
  189. data/app/packs/stylesheets/decidim/_dropdown.scss +1 -1
  190. data/app/packs/stylesheets/decidim/_endorsers_list.scss +26 -20
  191. data/app/packs/stylesheets/decidim/_forms.scss +2 -2
  192. data/app/packs/stylesheets/decidim/_header.scss +37 -60
  193. data/app/packs/stylesheets/decidim/_layout.scss +32 -2
  194. data/app/packs/stylesheets/decidim/_login.scss +53 -6
  195. data/app/packs/stylesheets/decidim/_modal.scss +42 -0
  196. data/app/packs/stylesheets/decidim/_modal_tos_refuse.scss +4 -0
  197. data/app/packs/stylesheets/decidim/_participatory_spaces.scss +46 -0
  198. data/app/packs/stylesheets/decidim/_profile.scss +1 -1
  199. data/app/packs/stylesheets/decidim/_success_image.scss +64 -0
  200. data/app/packs/stylesheets/decidim/_tribute.scss +36 -0
  201. data/app/packs/stylesheets/decidim/application.scss +1 -1
  202. data/app/packs/stylesheets/decidim/geocoding_addons.scss +5 -0
  203. data/app/packs/stylesheets/decidim/map.scss +7 -10
  204. data/app/packs/stylesheets/decidim/resource_history.scss +31 -0
  205. data/app/permissions/decidim/default_permissions.rb +0 -2
  206. data/app/permissions/decidim/permissions.rb +8 -2
  207. data/app/presenters/decidim/admin_log/base_user_presenter.rb +67 -0
  208. data/app/presenters/decidim/admin_log/component_presenter.rb +32 -3
  209. data/app/presenters/decidim/admin_log/moderation_presenter.rb +30 -3
  210. data/app/presenters/decidim/admin_log/share_token_presenter.rb +39 -0
  211. data/app/presenters/decidim/admin_log/taxonomy_filter_presenter.rb +57 -0
  212. data/app/presenters/decidim/admin_log/taxonomy_presenter.rb +48 -0
  213. data/app/presenters/decidim/admin_log/user_group_presenter.rb +6 -6
  214. data/app/presenters/decidim/admin_log/user_presenter.rb +4 -18
  215. data/app/presenters/decidim/log/user_presenter.rb +0 -1
  216. data/app/presenters/decidim/log/value_types/date_presenter.rb +1 -0
  217. data/app/presenters/decidim/log/value_types/taxonomy_presenter.rb +29 -0
  218. data/app/presenters/decidim/notification_to_mailer_presenter.rb +3 -7
  219. data/app/presenters/decidim/participatory_space_private_user_presenter.rb +50 -0
  220. data/app/presenters/decidim/taxonomy_filter_presenter.rb +19 -0
  221. data/app/presenters/decidim/taxonomy_presenter.rb +14 -0
  222. data/app/presenters/decidim/user_presenter.rb +1 -1
  223. data/app/queries/decidim/last_activity.rb +0 -25
  224. data/app/queries/decidim/metrics/blocked_users_metric_manage.rb +2 -2
  225. data/app/queries/decidim/metrics/users_metric_manage.rb +2 -2
  226. data/app/queries/decidim/public_activities.rb +1 -12
  227. data/app/queries/decidim/stats_users_count.rb +2 -2
  228. data/app/resolvers/decidim/meta_image_url_resolver.rb +128 -0
  229. data/app/serializers/decidim/exporters/open_data_blocked_user_serializer.rb +25 -0
  230. data/app/serializers/decidim/exporters/open_data_metric_serializer.rb +22 -0
  231. data/app/serializers/decidim/exporters/open_data_moderation_serializer.rb +30 -0
  232. data/app/serializers/decidim/exporters/open_data_taxonomy_serializer.rb +30 -0
  233. data/app/serializers/decidim/exporters/open_data_user_group_serializer.rb +38 -0
  234. data/app/serializers/decidim/exporters/open_data_user_serializer.rb +39 -0
  235. data/app/serializers/decidim/exporters/participatory_space_serializer.rb +104 -0
  236. data/app/serializers/decidim/exporters/serializer.rb +25 -0
  237. data/app/serializers/decidim/schema_org_breadcrumb_list_serializer.rb +52 -0
  238. data/app/services/decidim/action_authorizer.rb +32 -3
  239. data/app/services/decidim/base_diff_renderer.rb +1 -3
  240. data/app/services/decidim/download_your_data_exporter.rb +58 -24
  241. data/app/services/decidim/onboarding_manager.rb +272 -0
  242. data/app/services/decidim/open_data_exporter.rb +139 -13
  243. data/app/services/decidim/static_map_generator.rb +1 -1
  244. data/app/services/decidim/traceability.rb +13 -0
  245. data/app/uploaders/decidim/application_uploader.rb +1 -1
  246. data/app/validators/etiquette_validator.rb +9 -2
  247. data/app/validators/passthru_validator.rb +1 -1
  248. data/app/validators/translated_etiquette_validator.rb +32 -0
  249. data/app/views/decidim/account/_password_fields.html.erb +2 -2
  250. data/app/views/decidim/application/_accordion_section.html.erb +14 -0
  251. data/app/views/decidim/application/_collection.html.erb +30 -18
  252. data/app/views/decidim/devise/omniauth_registrations/new.html.erb +5 -1
  253. data/app/views/decidim/devise/omniauth_registrations/new_tos_fields.html.erb +29 -0
  254. data/app/views/decidim/devise/registrations/new.html.erb +10 -22
  255. data/app/views/decidim/devise/sessions/new.html.erb +24 -29
  256. data/app/views/decidim/devise/shared/_omniauth_buttons.html.erb +2 -4
  257. data/app/views/decidim/devise/shared/_tos_fields.html.erb +16 -0
  258. data/app/views/decidim/download_your_data/_export.html.erb +15 -0
  259. data/app/views/decidim/download_your_data/show.html.erb +51 -5
  260. data/app/views/decidim/endorsements/update_buttons_and_counters.js.erb +16 -19
  261. data/app/views/decidim/export_mailer/download_your_data_export.html.erb +2 -2
  262. data/app/views/decidim/export_mailer/export.html.erb +5 -1
  263. data/app/views/decidim/last_activities/index.html.erb +1 -1
  264. data/app/views/decidim/messaging/conversations/_reply_form.html.erb +2 -1
  265. data/app/views/decidim/messaging/conversations/_start.html.erb +1 -1
  266. data/app/views/decidim/notifications_settings/show.html.erb +22 -0
  267. data/app/views/decidim/open_data/_how_to_open_accordion_section.html.erb +15 -0
  268. data/app/views/decidim/open_data/index.html.erb +108 -0
  269. data/app/views/decidim/pages/show.html.erb +2 -1
  270. data/app/views/decidim/participatory_space_private_users/_participatory_space_private_user.html.erb +1 -0
  271. data/app/views/decidim/reported_mailer/hide.html.erb +9 -0
  272. data/app/views/decidim/reported_mailer/report.html.erb +1 -1
  273. data/app/views/decidim/searches/_count.html.erb +1 -1
  274. data/app/views/decidim/searches/_filters.html.erb +38 -40
  275. data/app/views/decidim/shared/_login_modal.html.erb +26 -20
  276. data/app/views/decidim/shared/_orders.html.erb +2 -2
  277. data/app/views/decidim/shared/_resource_actions.html.erb +21 -0
  278. data/app/views/decidim/shared/_results_per_page.html.erb +1 -1
  279. data/app/views/decidim/shared/filters/_check_boxes_tree.html.erb +1 -2
  280. data/app/views/decidim/shared/filters/_collection.html.erb +1 -1
  281. data/app/views/decidim/shared/filters/_dropdown_label.html.erb +7 -4
  282. data/app/views/kaminari/decidim/_page.html.erb +1 -1
  283. data/app/views/kaminari/decidim/_paginator.html.erb +1 -1
  284. data/app/views/layouts/decidim/_application.html.erb +0 -1
  285. data/app/views/layouts/decidim/_js_configuration.html.erb +1 -0
  286. data/app/views/layouts/decidim/_logo.html.erb +2 -2
  287. data/app/views/layouts/decidim/_logo_mobile.html.erb +1 -1
  288. data/app/views/layouts/decidim/_meta_tags_config.html.erb +6 -11
  289. data/app/views/layouts/decidim/_schema_org_breadcrumb_list.html.erb +3 -0
  290. data/app/views/layouts/decidim/_wrapper.html.erb +15 -9
  291. data/app/views/layouts/decidim/footer/_main_legal.html.erb +1 -1
  292. data/app/views/layouts/decidim/footer/_main_links.html.erb +1 -1
  293. data/app/views/layouts/decidim/header/_close_ephemeral_session.html.erb +25 -0
  294. data/app/views/layouts/decidim/header/_main.html.erb +14 -10
  295. data/app/views/layouts/decidim/header/_menu_breadcrumb_items.html.erb +2 -0
  296. data/app/views/layouts/decidim/header/_menu_breadcrumb_main_dropdown_desktop.html.erb +11 -5
  297. data/app/views/layouts/decidim/header/_menu_breadcrumb_mobile_tablet.html.erb +5 -5
  298. data/app/views/layouts/decidim/shared/_layout_item.html.erb +1 -1
  299. data/config/assets.rb +2 -1
  300. data/config/locales/ar.yml +35 -74
  301. data/config/locales/bg.yml +33 -74
  302. data/config/locales/bs-BA.yml +0 -2
  303. data/config/locales/ca.yml +370 -102
  304. data/config/locales/cs.yml +374 -102
  305. data/config/locales/de.yml +350 -88
  306. data/config/locales/el.yml +22 -58
  307. data/config/locales/en.yml +350 -82
  308. data/config/locales/eo.yml +0 -4
  309. data/config/locales/es-MX.yml +364 -99
  310. data/config/locales/es-PY.yml +369 -104
  311. data/config/locales/es.yml +370 -102
  312. data/config/locales/eu.yml +426 -156
  313. data/config/locales/fi-plain.yml +366 -76
  314. data/config/locales/fi.yml +370 -77
  315. data/config/locales/fr-CA.yml +176 -97
  316. data/config/locales/fr.yml +176 -94
  317. data/config/locales/ga-IE.yml +4 -25
  318. data/config/locales/gl.yml +20 -58
  319. data/config/locales/hu.yml +30 -62
  320. data/config/locales/id-ID.yml +21 -57
  321. data/config/locales/is-IS.yml +5 -25
  322. data/config/locales/it.yml +36 -94
  323. data/config/locales/ja.yml +231 -112
  324. data/config/locales/lb.yml +28 -76
  325. data/config/locales/lt.yml +24 -64
  326. data/config/locales/lv.yml +21 -58
  327. data/config/locales/nl.yml +23 -75
  328. data/config/locales/no.yml +23 -70
  329. data/config/locales/pl.yml +30 -72
  330. data/config/locales/pt-BR.yml +41 -63
  331. data/config/locales/pt.yml +23 -70
  332. data/config/locales/ro-RO.yml +115 -184
  333. data/config/locales/ru.yml +13 -43
  334. data/config/locales/sk.yml +24 -70
  335. data/config/locales/sl.yml +0 -4
  336. data/config/locales/sr-CS.yml +0 -2
  337. data/config/locales/sv.yml +138 -106
  338. data/config/locales/tr-TR.yml +29 -75
  339. data/config/locales/uk.yml +6 -29
  340. data/config/locales/zh-CN.yml +21 -68
  341. data/config/locales/zh-TW.yml +23 -62
  342. data/config/routes.rb +4 -10
  343. data/db/migrate/20171212103803_create_unique_nicknames.rb +1 -1
  344. data/db/migrate/20180221101934_fix_nickname_index.rb +1 -1
  345. data/db/migrate/20180706104107_add_nickname_to_managed_users.rb +1 -1
  346. data/db/migrate/20181001124950_move_users_groups_to_users_table.rb +1 -1
  347. data/db/migrate/20181025082245_add_timestamps_to_components.rb +2 -0
  348. data/db/migrate/20190412131728_fix_user_names.rb +1 -1
  349. data/db/migrate/20240628111905_add_visible_to_components.rb +7 -0
  350. data/db/migrate/20240704115429_create_decidim_taxonomies.rb +23 -0
  351. data/db/migrate/20240717093514_add_registered_only_to_decidim_share_tokens.rb +7 -0
  352. data/db/migrate/20240722215500_change_object_changes_on_versions.rb +39 -0
  353. data/db/migrate/20240806065417_create_decidim_taxonomy_filters.rb +23 -0
  354. data/db/migrate/20240822161348_add_deleted_at_to_decidim_components.rb +8 -0
  355. data/db/migrate/20240906162524_add_part_of_to_taxonomies.rb +26 -0
  356. data/db/migrate/20241001135825_add_role_to_participatory_space_private_users.rb +7 -0
  357. data/db/migrate/20241001140408_add_published_to_participatory_space_private_users.rb +7 -0
  358. data/db/migrate/20241022002600_create_private_exports.rb +18 -0
  359. data/db/migrate/20241028114430_add_component_counter_to_taxonomy_filters.rb +7 -0
  360. data/db/migrate/20241111104357_add_names_and_space_boolean_to_taxonomy_filters.rb +9 -0
  361. data/db/migrate/20241127093708_add_taxonomy_to_metrics.rb +7 -0
  362. data/db/migrate/20241204121445_add_participatory_space_manifests_from_taxonomy_filters.rb +9 -0
  363. data/decidim-core.gemspec +14 -17
  364. data/lib/decidim/action_authorization.rb +3 -2
  365. data/lib/decidim/amendable.rb +1 -1
  366. data/lib/decidim/api/input_filters/category_input_filter.rb +5 -3
  367. data/lib/decidim/api/input_filters/component_input_filter.rb +33 -20
  368. data/lib/decidim/api/input_filters/user_entity_input_filter.rb +53 -44
  369. data/lib/decidim/api/input_sorts/component_input_sort.rb +15 -13
  370. data/lib/decidim/api/input_sorts/user_entity_input_sort.rb +4 -4
  371. data/lib/decidim/api/interfaces/author_interface.rb +3 -2
  372. data/lib/decidim/api/interfaces/coauthorable_interface.rb +5 -5
  373. data/lib/decidim/api/interfaces/endorsable_interface.rb +2 -2
  374. data/lib/decidim/api/interfaces/participatory_space_interface.rb +5 -10
  375. data/lib/decidim/api/interfaces/taxonomizable_interface.rb +13 -0
  376. data/lib/decidim/api/types/amendment_type.rb +5 -7
  377. data/lib/decidim/api/types/area_api_type.rb +3 -3
  378. data/lib/decidim/api/types/attachment_type.rb +3 -3
  379. data/lib/decidim/api/types/category_type.rb +2 -2
  380. data/lib/decidim/api/types/decidim_type.rb +5 -1
  381. data/lib/decidim/api/types/fingerprint_type.rb +1 -1
  382. data/lib/decidim/api/types/localized_string_type.rb +1 -1
  383. data/lib/decidim/api/types/metric_history_type.rb +2 -0
  384. data/lib/decidim/api/types/metric_type.rb +1 -1
  385. data/lib/decidim/api/types/organization_type.rb +5 -0
  386. data/lib/decidim/api/types/participatory_space_link_type.rb +2 -2
  387. data/lib/decidim/api/types/participatory_space_manifest_type.rb +1 -1
  388. data/lib/decidim/api/types/quantifiable_translated_field_type.rb +1 -1
  389. data/lib/decidim/api/types/scope_api_type.rb +2 -3
  390. data/lib/decidim/api/types/session_type.rb +1 -2
  391. data/lib/decidim/api/types/taxonomy_type.rb +15 -0
  392. data/lib/decidim/api/types/trace_version_type.rb +2 -2
  393. data/lib/decidim/api/types/translated_field_type.rb +3 -5
  394. data/lib/decidim/api/types/user_group_type.rb +7 -20
  395. data/lib/decidim/api/types/user_type.rb +7 -20
  396. data/lib/decidim/asset_router/storage.rb +6 -11
  397. data/lib/decidim/assets/tailwind/tailwind.config.js.erb +2 -1
  398. data/lib/decidim/attachment_attributes.rb +1 -1
  399. data/lib/decidim/attribute_encryptor.rb +1 -1
  400. data/lib/decidim/attribute_object/nested_validator.rb +1 -1
  401. data/lib/decidim/attributes/integer_with_units.rb +27 -0
  402. data/lib/decidim/attributes/time_with_zone.rb +1 -5
  403. data/lib/decidim/attributes.rb +2 -0
  404. data/lib/decidim/authorization_form_builder.rb +0 -7
  405. data/lib/decidim/coauthorable.rb +1 -1
  406. data/lib/decidim/command.rb +3 -3
  407. data/lib/decidim/commands/destroy_resource.rb +5 -1
  408. data/lib/decidim/commands/resource_handler.rb +2 -2
  409. data/lib/decidim/commands/restore_resource.rb +45 -0
  410. data/lib/decidim/commands/soft_delete_resource.rb +63 -0
  411. data/lib/decidim/component_manifest.rb +7 -0
  412. data/lib/decidim/content_parsers/blob_parser.rb +8 -10
  413. data/lib/decidim/content_parsers/user_parser.rb +1 -1
  414. data/lib/decidim/core/api.rb +2 -0
  415. data/lib/decidim/core/engine.rb +21 -7
  416. data/lib/decidim/core/menu.rb +0 -5
  417. data/lib/decidim/core/seeds.rb +42 -2
  418. data/lib/decidim/core/test/factories.rb +105 -2
  419. data/lib/decidim/core/test/shared_examples/admin_resource_gallery_examples.rb +85 -0
  420. data/lib/decidim/core/test/shared_examples/comments_examples.rb +393 -38
  421. data/lib/decidim/core/test/shared_examples/components_controller_hide_shared_examples.rb +11 -0
  422. data/lib/decidim/core/test/shared_examples/components_controller_reorder_shared_examples.rb +21 -0
  423. data/lib/decidim/core/test/shared_examples/download_open_data_shared_context.rb +36 -0
  424. data/lib/decidim/core/test/shared_examples/download_open_data_shared_examples.rb +45 -0
  425. data/lib/decidim/core/test/shared_examples/download_your_data_shared_examples.rb +17 -0
  426. data/lib/decidim/core/test/shared_examples/etiquette_validator_examples.rb +25 -0
  427. data/lib/decidim/core/test/shared_examples/follows_examples.rb +43 -0
  428. data/lib/decidim/core/test/shared_examples/has_taxonomies.rb +94 -0
  429. data/lib/decidim/core/test/shared_examples/manage_share_tokens_examples.rb +237 -0
  430. data/lib/decidim/core/test/shared_examples/map_examples.rb +2 -0
  431. data/lib/decidim/core/test/shared_examples/open_data_exporter_examples.rb +102 -0
  432. data/lib/decidim/core/test/shared_examples/participatory_space_members_page_examples.rb +46 -0
  433. data/lib/decidim/core/test/shared_examples/participatory_space_search_examples.rb +98 -0
  434. data/lib/decidim/core/test/shared_examples/permissions.rb +7 -7
  435. data/lib/decidim/core/test/shared_examples/preview_with_share_token_examples.rb +94 -0
  436. data/lib/decidim/core/test/shared_examples/reports_examples.rb +15 -53
  437. data/lib/decidim/core/test/shared_examples/resource_endorsed_event_examples.rb +2 -2
  438. data/lib/decidim/core/test/shared_examples/resource_search_examples.rb +75 -69
  439. data/lib/decidim/core/test/shared_examples/searchable_resources_shared_context.rb +1 -1
  440. data/lib/decidim/core/test/shared_examples/simple_event.rb +33 -19
  441. data/lib/decidim/core/test/shared_examples/social_share_examples.rb +7 -14
  442. data/lib/decidim/core/test/shared_examples/softdeleteable_components_examples.rb +173 -0
  443. data/lib/decidim/core/test/shared_examples/system_endorse_resource_examples.rb +54 -8
  444. data/lib/decidim/core/test/shared_examples/taxonomizable_interface_examples.rb +20 -0
  445. data/lib/decidim/core/test/shared_examples/taxonomizable_resource_examples.rb +37 -0
  446. data/lib/decidim/core/test/shared_examples/taxonomy_settings.rb +49 -0
  447. data/lib/decidim/core/test/shared_examples/translated_event_examples.rb +1 -1
  448. data/lib/decidim/core/test/shared_examples/uncommentable_component_examples.rb +0 -26
  449. data/lib/decidim/core/test/shared_examples/versions_controller_examples.rb +2 -28
  450. data/lib/decidim/core/test/shared_examples/with_endorsable_permissions_examples.rb +1 -1
  451. data/lib/decidim/core/test.rb +9 -5
  452. data/lib/decidim/core/version.rb +1 -1
  453. data/lib/decidim/core.rb +58 -0
  454. data/lib/decidim/download_your_data_serializers/download_your_data_identity_serializer.rb +0 -4
  455. data/lib/decidim/download_your_data_serializers/download_your_data_participatory_space_private_user_serializer.rb +3 -1
  456. data/lib/decidim/download_your_data_serializers/download_your_data_report_serializer.rb +2 -1
  457. data/lib/decidim/download_your_data_serializers/download_your_data_user_serializer.rb +6 -7
  458. data/lib/decidim/download_your_data_serializers.rb +19 -0
  459. data/lib/decidim/exporters/csv.rb +6 -0
  460. data/lib/decidim/exporters/export_manifest.rb +14 -0
  461. data/lib/decidim/exporters/pdf.rb +26 -22
  462. data/lib/decidim/filter_form_builder.rb +12 -15
  463. data/lib/decidim/form_builder.rb +6 -129
  464. data/lib/decidim/has_category.rb +5 -1
  465. data/lib/decidim/has_private_users.rb +4 -0
  466. data/lib/decidim/has_taxonomy_settings.rb +47 -0
  467. data/lib/decidim/has_upload_validations.rb +1 -1
  468. data/lib/decidim/legacy_form_builder.rb +118 -0
  469. data/lib/decidim/maintenance/import_models/application_record.rb +93 -0
  470. data/lib/decidim/maintenance/import_models/area.rb +82 -0
  471. data/lib/decidim/maintenance/import_models/area_type.rb +12 -0
  472. data/lib/decidim/maintenance/import_models/assembly_type.rb +49 -0
  473. data/lib/decidim/maintenance/import_models/categorization.rb +14 -0
  474. data/lib/decidim/maintenance/import_models/category.rb +107 -0
  475. data/lib/decidim/maintenance/import_models/participatory_process_type.rb +21 -0
  476. data/lib/decidim/maintenance/import_models/scope.rb +163 -0
  477. data/lib/decidim/maintenance/import_models.rb +19 -0
  478. data/lib/decidim/maintenance/taxonomy_importer.rb +132 -0
  479. data/lib/decidim/maintenance/taxonomy_plan.rb +78 -0
  480. data/lib/decidim/maintenance.rb +12 -0
  481. data/lib/decidim/map/autocomplete.rb +52 -8
  482. data/lib/decidim/map/dynamic_map.rb +1 -1
  483. data/lib/decidim/map/provider/dynamic_map/here.rb +40 -1
  484. data/lib/decidim/map/provider/geocoding/here.rb +9 -3
  485. data/lib/decidim/map/provider/static_map/here.rb +0 -34
  486. data/lib/decidim/map.rb +3 -6
  487. data/lib/decidim/moderation_tools.rb +16 -19
  488. data/lib/decidim/newsletter_encryptor.rb +1 -1
  489. data/lib/decidim/nicknamizable.rb +9 -6
  490. data/lib/decidim/paddable.rb +1 -1
  491. data/lib/decidim/participable.rb +10 -10
  492. data/lib/decidim/participatory_space_user.rb +10 -0
  493. data/lib/decidim/private_download_helper.rb +15 -0
  494. data/lib/decidim/record_encryptor.rb +51 -46
  495. data/lib/decidim/reportable.rb +2 -6
  496. data/lib/decidim/resourceable.rb +16 -0
  497. data/lib/decidim/seeds.rb +18 -20
  498. data/lib/decidim/settings_manifest.rb +34 -1
  499. data/lib/decidim/soft_deletable.rb +17 -0
  500. data/lib/decidim/taxonomizable.rb +72 -0
  501. data/lib/decidim/translatable_attributes.rb +1 -5
  502. data/lib/decidim/view_model.rb +0 -1
  503. data/lib/tasks/decidim_download_your_data_tasks.rake +2 -4
  504. data/lib/tasks/decidim_procfile.rake +6 -0
  505. data/lib/tasks/decidim_tasks.rake +1 -0
  506. data/lib/tasks/decidim_taxonomies.rake +155 -0
  507. data/lib/tasks/upgrade/{decidim_fix_categorization.rake → clean.rake} +25 -18
  508. data/lib/tasks/upgrade/decidim_active_storage_migration_tasks.rake +1 -1
  509. data/lib/tasks/upgrade/decidim_fix_nickname_uniqueness.rake +20 -23
  510. data/lib/tasks/upgrade/migrations.rake +91 -0
  511. metadata +203 -112
  512. data/app/cells/decidim/amendable/amenders_list/show.erb +0 -0
  513. data/app/cells/decidim/content_blocks/base/content.erb +0 -0
  514. data/app/cells/decidim/endorsers_list/full_endorsers_list.erb +0 -3
  515. data/app/cells/decidim/endorsers_list_button/content.erb +0 -1
  516. data/app/cells/decidim/endorsers_list_button_cell.rb +0 -15
  517. data/app/cells/decidim/report_user_button/already_reported_modal.erb +0 -11
  518. data/app/cells/decidim/report_user_button/flag_modal.erb +0 -46
  519. data/app/cells/decidim/report_user_button/show.erb +0 -2
  520. data/app/cells/decidim/report_user_button_cell.rb +0 -59
  521. data/app/cells/decidim/scopes_picker/scope_picker_prompt.erb +0 -3
  522. data/app/cells/decidim/scopes_picker/scope_picker_values.erb +0 -5
  523. data/app/cells/decidim/scopes_picker/show.erb +0 -14
  524. data/app/cells/decidim/scopes_picker_cell.rb +0 -92
  525. data/app/commands/decidim/update_user_interests.rb +0 -41
  526. data/app/controllers/decidim/scopes_controller.rb +0 -84
  527. data/app/controllers/decidim/user_interests_controller.rb +0 -30
  528. data/app/forms/decidim/user_interest_scope_form.rb +0 -25
  529. data/app/forms/decidim/user_interests_form.rb +0 -17
  530. data/app/helpers/decidim/categories_helper.rb +0 -26
  531. data/app/helpers/decidim/scopes_helper.rb +0 -105
  532. data/app/jobs/decidim/hide_child_resources_job.rb +0 -24
  533. data/app/packs/images/decidim/vendor/leaflet/layers-2x.png +0 -0
  534. data/app/packs/images/decidim/vendor/leaflet/layers.png +0 -0
  535. data/app/packs/images/decidim/vendor/leaflet/marker-icon-2x.png +0 -0
  536. data/app/packs/images/decidim/vendor/leaflet/marker-icon.png +0 -0
  537. data/app/packs/images/decidim/vendor/leaflet/marker-shadow.png +0 -0
  538. data/app/packs/stylesheets/decidim/_hashtags.scss +0 -5
  539. data/app/packs/stylesheets/decidim/legacy/MarkerCluster.Default.scss +0 -67
  540. data/app/packs/stylesheets/decidim/legacy/MarkerCluster.scss +0 -18
  541. data/app/packs/stylesheets/decidim/legacy/leaflet.scss +0 -705
  542. data/app/validators/scope_belongs_to_component_validator.rb +0 -16
  543. data/app/views/decidim/account/_user_groups.html.erb +0 -0
  544. data/app/views/decidim/reported_mailer/hidden_automatically.html.erb +0 -25
  545. data/app/views/decidim/reported_mailer/hidden_manually.html.erb +0 -25
  546. data/app/views/decidim/scopes/_scopes_picker_input.html.erb +0 -19
  547. data/app/views/decidim/scopes/picker.html.erb +0 -53
  548. data/app/views/decidim/shared/_comments.html.erb +0 -0
  549. data/app/views/decidim/shared/_share_modal.html.erb +0 -26
  550. data/app/views/decidim/shared/_tags.html.erb +0 -1
  551. data/app/views/decidim/user_interests/_areas.html.erb +0 -14
  552. data/app/views/decidim/user_interests/_scopes.html.erb +0 -22
  553. data/app/views/decidim/user_interests/show.html.erb +0 -22
  554. data/config/initializers/foundation_rails_helper.rb +0 -4
  555. data/config/locales/ca-IT.yml +0 -2122
  556. data/lib/decidim/core/test/shared_examples/has_category.rb +0 -38
  557. data/lib/decidim/core/test/shared_examples/has_scope.rb +0 -11
  558. data/lib/decidim/core/test/shared_examples/manage_component_share_tokens.rb +0 -83
  559. data/lib/decidim/core/test/shared_examples/preview_component_with_share_token_examples.rb +0 -49
  560. data/lib/decidim/core/test/shared_examples/scope_helper_examples.rb +0 -93
  561. data/lib/decidim/seven_zip_wrapper.rb +0 -29
  562. data/lib/tasks/upgrade/clean_hidden_resources.rake +0 -33
@@ -6,10 +6,11 @@ en:
6
6
  delete_reason: Reason to delete your account
7
7
  attachment:
8
8
  documents: Documents
9
- image: Image
10
9
  photos: Photos
11
10
  common:
12
11
  created_at: Created at
12
+ component:
13
+ taxonomy_filters: Taxonomy filters
13
14
  content_block_attachment:
14
15
  background_image: Background image
15
16
  main_image: Main image
@@ -31,6 +32,13 @@ en:
31
32
  body: Body
32
33
  report:
33
34
  details: Additional comments
35
+ taxonomy:
36
+ name: Taxonomy name
37
+ taxonomy_filter:
38
+ internal_name: Internal label
39
+ name: Label
40
+ root_taxonomy_id: From taxonomy
41
+ space_filter: Available as filter for
34
42
  user:
35
43
  about: About
36
44
  avatar: Avatar
@@ -47,12 +55,6 @@ en:
47
55
  tos_agreement: Terms of service agreement
48
56
  user_group:
49
57
  avatar: Avatar
50
- errors:
51
- models:
52
- user:
53
- attributes:
54
- nickname:
55
- format: The nickname must be lowercase and contain no spaces
56
58
  models:
57
59
  decidim/attachment_created_event: Attachment
58
60
  decidim/component_published_event: Active component
@@ -77,12 +79,16 @@ en:
77
79
  with_participatory_space: Participatory space
78
80
  decidim/user:
79
81
  current_password: Current password
80
- email: Email
82
+ email: Email address
81
83
  name: Nickname
82
84
  password: Password
83
85
  password_confirmation: Password confirmation
84
86
  remember_me: Remember me
85
87
  models:
88
+ decidim:
89
+ history:
90
+ one: History
91
+ other: History
86
92
  decidim/amendment:
87
93
  one: Amendment
88
94
  other: Amendments
@@ -166,7 +172,6 @@ en:
166
172
  front_page_link: Go to front page
167
173
  logo: "%{organization}'s official logo"
168
174
  opens_in_new_tab: Opens in new tab
169
- secondary_menu: Secondary menu
170
175
  skip_button: Skip to main content
171
176
  account:
172
177
  blocked: This account has been blocked due to terms of service violation
@@ -183,6 +188,7 @@ en:
183
188
  error: There was a problem deleting your account.
184
189
  success: Your account was successfully deleted.
185
190
  download_your_data_export:
191
+ export_expired: The export has expired. Try to generate a new export.
186
192
  file_no_exists: File does not exist
187
193
  notice: The download of your data is currently in progress. You will receive an email when it is complete.
188
194
  email_change:
@@ -237,6 +243,8 @@ en:
237
243
  delete: "%{user_name} removed the %{resource_name} component from the %{space_name} space"
238
244
  export_component: "%{user_name} exported the %{resource_name} %{component_name} in %{space_name} as %{format_name}"
239
245
  publish: "%{user_name} published the %{resource_name} component in the %{space_name} space"
246
+ restore: "%{user_name} restored the %{resource_name} component in the %{space_name} space"
247
+ soft_delete: "%{user_name} moved to trash the %{resource_name} component in the %{space_name} space"
240
248
  unpublish: "%{user_name} unpublished the %{resource_name} component from the %{space_name} space"
241
249
  update_permissions_with_space: "%{user_name} updated the permissions of %{resource_name} in %{space_name}"
242
250
  contextual_help_section:
@@ -249,6 +257,9 @@ en:
249
257
  impersonation_log:
250
258
  manage: "%{user_name} has managed %{resource_name} because %{reason}"
251
259
  moderation:
260
+ bulk_hide: "%{user_name} hid %{reported_count} resources"
261
+ bulk_unhide: "%{user_name} unhid %{reported_count} resources"
262
+ bulk_unreport: "%{user_name} unreported %{reported_count} resources"
252
263
  hide: "%{user_name} hid a resource of type %{resource_type} in the %{space_name} space"
253
264
  unreport: "%{user_name} unreported a resource of type %{resource_type} in the %{space_name} space"
254
265
  newsletter:
@@ -278,12 +289,36 @@ en:
278
289
  create: "%{user_name} created the %{resource_name} scope type"
279
290
  delete: "%{user_name} deleted the %{resource_name} scope type"
280
291
  update: "%{user_name} updated the %{resource_name} scope type"
292
+ share_token:
293
+ create: "%{user_name} created an access link in %{space_name}"
294
+ create_with_space: "%{user_name} created an access link for %{resource_name} in %{space_name}"
295
+ delete: "%{user_name} deleted an access link in %{space_name}"
296
+ delete_with_space: "%{user_name} deleted an access link for %{resource_name} in %{space_name}"
297
+ update: "%{user_name} updated an access link in %{space_name}"
298
+ update_with_space: "%{user_name} updated an access link for %{resource_name} in %{space_name}"
281
299
  static_page:
282
300
  create: "%{user_name} created the %{resource_name} static page"
283
301
  delete: "%{user_name} deleted the %{resource_name} static page"
284
302
  update: "%{user_name} updated the %{resource_name} static page"
303
+ taxonomy:
304
+ create: "%{user_name} created the %{resource_name} taxonomy"
305
+ create_with_parent: "%{user_name} created the %{resource_name} taxonomy inside the %{parent_taxonomy} taxonomy"
306
+ delete: "%{user_name} deleted the %{resource_name} taxonomy"
307
+ delete_with_parent: "%{user_name} deleted the %{resource_name} taxonomy inside the %{parent_taxonomy} taxonomy"
308
+ update: "%{user_name} updated the %{resource_name} taxonomy"
309
+ update_with_parent: "%{user_name} updated the %{resource_name} taxonomy inside the %{parent_taxonomy} taxonomy"
310
+ taxonomy_filter:
311
+ create: "%{user_name} created the filter %{resource_name}"
312
+ create_with_filter_info: '%{user_name} created the filter %{resource_name} based on the taxonomy "%{taxonomy_name}" with %{filter_items_count} items'
313
+ delete: "%{user_name} deleted the filter %{resource_name}"
314
+ delete_with_filter_info: '%{user_name} deleted the filter %{resource_name} based on the taxonomy "%{taxonomy_name}" with %{filter_items_count} items'
315
+ update: "%{user_name} updated the filter %{resource_name}"
316
+ update_with_filter_info: '%{user_name} updated the filter %{resource_name} based on the taxonomy "%{taxonomy_name}" with %{filter_items_count} items'
285
317
  user:
286
318
  block: "%{user_name} blocked user %{resource_name}"
319
+ bulk_block: "%{user_name} blocked %{blocked_count} users"
320
+ bulk_ignore: "%{user_name} unreported %{unreported_users_count} users"
321
+ bulk_unblock: "%{user_name} unblocked %{unblocked_count} users"
287
322
  invite: "%{user_name} invited the participant %{resource_name} with role: %{role}"
288
323
  officialize: "%{user_name} officialized the participant %{resource_name}"
289
324
  promote: "%{user_name} has promoted %{resource_name}"
@@ -294,6 +329,9 @@ en:
294
329
  unofficialize: "%{user_name} unofficialized the participant %{resource_name}"
295
330
  user_group:
296
331
  block: "%{user_name} blocked user group %{resource_name}"
332
+ bulk_block: "%{user_name} blocked %{blocked_count} users"
333
+ bulk_ignore: "%{user_name} unreported %{unreported_users_count} users"
334
+ bulk_unblock: "%{user_name} unblocked %{unblocked_count} users"
297
335
  reject: "%{user_name} rejected the %{resource_name} group verification"
298
336
  unblock: "%{user_name} unblocked user group %{resource_name}"
299
337
  verify: "%{user_name} verified the group %{resource_name}"
@@ -306,11 +344,11 @@ en:
306
344
  dismiss: Dismiss notification
307
345
  amendments:
308
346
  accepted:
309
- error: An error ocurred while accepting the amendment.
347
+ error: There was a problem accepting the amendment.
310
348
  success: The amendment has been accepted successfully.
311
349
  amendable:
312
350
  button: Amend %{model_name}
313
- error: There has been an error amending this resource.
351
+ error: There was a problem amending this resource.
314
352
  promote_button: Promote to %{model_name}
315
353
  promote_confirm_text: Are you sure you want to promote this emendation?
316
354
  promote_help_text: You can promote this emendation and publish it as an independent %{model_name}.
@@ -319,7 +357,7 @@ en:
319
357
  one: "%{count} amendment"
320
358
  other: "%{count} amendments"
321
359
  created:
322
- error: An error ocurred while creating the amendment draft.
360
+ error: There was a problem creating the amendment draft.
323
361
  success: Amendment draft has been created successfully.
324
362
  destroy_draft:
325
363
  error: There was a problem deleting the amendment draft.
@@ -371,7 +409,7 @@ en:
371
409
  error: There was a problem updating the amendment draft.
372
410
  success: Amendment draft successfully updated.
373
411
  withdraw:
374
- error: An error ocurred while withdrawing the amendment.
412
+ error: There was a problem withdrawing the amendment.
375
413
  success: The amendment has been withdrawn successfully.
376
414
  wizard_step_form:
377
415
  steps:
@@ -414,13 +452,19 @@ en:
414
452
  explanation: Get verified by introducing a document number ending with "X".
415
453
  fields:
416
454
  allowed_postal_codes: Allowed postal codes (separated by commas)
417
- allowed_scope_id: Allowed scope
418
455
  document_number: Document number
419
456
  postal_code: Postal code
420
- scope_id: Scope
421
457
  name: Example authorization
422
458
  dummy_authorization_workflow:
459
+ explanation: Dummy authorization workflow
423
460
  name: Dummy authorization workflow
461
+ ephemeral_dummy_authorization_handler:
462
+ explanation: Get verified by introducing a document number ending with "X".
463
+ fields:
464
+ allowed_postal_codes: Allowed postal codes (separated by commas)
465
+ document_number: Document number
466
+ postal_code: Postal code
467
+ name: Ephemeral example authorization
424
468
  errors:
425
469
  duplicate_authorization: A participant is already authorized with the same data. An administrator will contact you to verify your details.
426
470
  expired_at: Expired at %{timestamp}
@@ -504,13 +548,14 @@ en:
504
548
  amendments_enabled: Amendments enabled
505
549
  comments_enabled: Comments enabled
506
550
  comments_max_length: Comments max length
551
+ define_taxonomy_filters: Please define some filters for this participatory space before using this setting.
507
552
  dummy_global_attribute1: Dummy Attribute 1
508
553
  dummy_global_attribute2: Dummy Attribute 2
509
554
  dummy_global_translatable_text: Dummy Translatable Text
510
555
  enable_pads_creation: Enable pads creation
556
+ no_taxonomy_filters_found: No taxonomy filters found.
511
557
  resources_permissions_enabled: Resources permissions enabled
512
- scope_id: Scope
513
- scopes_enabled: Scopes enabled
558
+ taxonomy_filters: Select filters for the component
514
559
  step:
515
560
  amendment_creation_enabled: Amendment creation enabled
516
561
  amendment_promotion_enabled: Amendment promotion enabled
@@ -597,10 +642,10 @@ en:
597
642
  application_helper:
598
643
  filter_area_values:
599
644
  all: All
600
- filter_category_values:
601
- all: All
602
645
  filter_scope_values:
603
646
  all: All
647
+ filter_taxonomy_values:
648
+ all: All
604
649
  devise:
605
650
  omniauth_registrations:
606
651
  create:
@@ -611,6 +656,9 @@ en:
611
656
  sign_up: Please complete your profile
612
657
  subtitle: Please fill in the following form in order to complete the account creation
613
658
  username_help: Public name that appears on your posts. With the aim of guaranteeing the anonymity, can be any name.
659
+ new_tos_fields:
660
+ sign_up: Create an account
661
+ sign_up_title: Finish creating your account
614
662
  registrations:
615
663
  create:
616
664
  error: There was a problem creating your account.
@@ -627,11 +675,12 @@ en:
627
675
  username_help: Public name that appears on your posts. With the aim of guaranteeing the anonymity, can be any name.
628
676
  sessions:
629
677
  new:
630
- are_you_new?: New to the platform?
678
+ are_you_new?: Not registered yet?
631
679
  register: Create an account
632
680
  sign_in_disabled: You can access with an external account.
633
681
  sign_up_disabled: Account creation is disabled, you can use an existing account to access.
634
682
  user:
683
+ ephemeral_session_closed: Your guest session has finished
635
684
  timed_out: You were inactive for too long and you have been automatically logged out from the service. If you would like to continue using the service, please log in again.
636
685
  shared:
637
686
  newsletter_modal:
@@ -651,13 +700,16 @@ en:
651
700
  <p>Thanks for reading this!</p>
652
701
  title: Newsletter notifications
653
702
  omniauth_buttons:
654
- or: Or
703
+ or: or
655
704
  password_fields:
656
705
  hidden_password: Your password is hidden
657
706
  hide_password: Hide password
658
707
  show_password: Show password
659
708
  shown_password: Your password is shown
660
709
  placeholder_email: hi@example.org
710
+ documents:
711
+ one: "%{count} document"
712
+ other: "%{count} documents"
661
713
  doorkeeper:
662
714
  authorizations:
663
715
  new:
@@ -676,27 +728,133 @@ en:
676
728
  download_your_data:
677
729
  export:
678
730
  ready: Ready
731
+ help:
732
+ core:
733
+ description: These are the files with the personal data, contributions and activity from the user %{user_name}
734
+ title: Download your data files from %{organization}
735
+ follows:
736
+ created_at: The date and time when the follow was created
737
+ followable: The resource or space that is being followed
738
+ id: The unique identifier of this follow
739
+ updated_at: The date and time when the follow was last updated
740
+ identities:
741
+ created_at: The date and time when the identity was created
742
+ id: The unique identifier of this identity
743
+ provider: The provider of this identity
744
+ uid: The unique identifier of this identity
745
+ updated_at: The date and time when the identity was last updated
746
+ user: The user that this identity belongs to
747
+ messaging_conversations:
748
+ created_at: The date when this conversation was created
749
+ id: The unique identifier for this conversation
750
+ messages: The messages of this conversation
751
+ updated_at: The date when this converstaion was last updated
752
+ notifications:
753
+ created_at: The date and time when the notification was created
754
+ event_class: The class of the event that triggered the notification
755
+ event_name: The name of the event that triggered the notification
756
+ extra: Extra information of this notification
757
+ id: The unique identifier of this notification
758
+ resource_type: The type of the resource that the notification is related to
759
+ updated_at: The date and time when the notification was last updated
760
+ participatory_space_private_users:
761
+ created_at: The date and time when this private user was created
762
+ id: The unique identifier of this private user
763
+ privatable_to: To which space this private user belongs
764
+ published: Wether this private user is published or not
765
+ role: The role that this private user has
766
+ updated_at: The date and time when this private user was last updated
767
+ reports:
768
+ created_at: The date and time when this report was created
769
+ details: The details of this report
770
+ id: The unique identifier of this report
771
+ locale: The language of this report
772
+ moderation: The moderation that this report has
773
+ reason: The reason of this report
774
+ updated_at: The date and time when this report was last updated
775
+ user_groups:
776
+ document_number: The document number of this user group
777
+ id: The unique identifier of this user group
778
+ name: The name of this user group
779
+ phone: The phone number of this user group
780
+ verified_at: The date and time when this user group was verified
781
+ users:
782
+ about: The biography of this user
783
+ accepted_tos_version: The date when the Terms of Service of this platform was accepted by the user
784
+ admin: Whether this user is an administrator
785
+ confirmation_sent_at: The date and time when the confirmation was sent
786
+ confirmed_at: The date and time when this user was confirmed
787
+ created_at: The date and time when this user was created
788
+ current_sign_in_at: The date and time of the current login
789
+ current_sign_in_ip: The IP address of the current login
790
+ delete_reason: The reason given for deleting this user
791
+ deleted_at: The date and time when this user was deleted
792
+ email: The email address of this user
793
+ followers_count: The number of participants that are following to this user
794
+ following_count: The number of participants this user is following
795
+ id: The unique identifier of this user
796
+ invitation_accepted_at: The date and time when the invitation was accepted
797
+ invitation_created_at: The date and time when this user was invited
798
+ invitation_sent_at: The date and time when the invitation was sent
799
+ invitations_count: The number of invitations sent to this user
800
+ invited_by: The user who invited this user
801
+ last_sign_in_at: The date and time of the last login
802
+ last_sign_in_ip: The IP address of the last login
803
+ locale: The locale (language) that this user has selected
804
+ managed: Whether this user is managed by another user
805
+ name: The name of this user
806
+ newsletter_notifications_at: The date and time when this user last received a newsletter
807
+ nickname: The nickname of this user
808
+ notification_settings: The notification settings that this user has selected
809
+ notifications_sending_frequency: The frequency of the notifications that this user receives
810
+ officialized_as: The name of the officialization (Counsellor, Mayor, etc)
811
+ officialized_at: The date and time when this user was officialized
812
+ organization: The organization that this user belongs to
813
+ password_updated_at: The date when their password was changed for the last time
814
+ personal_url: The personal URL of this user
815
+ remember_created_at: The date and time when the user was selected to be remembered
816
+ reset_password_sent_at: The date and time when the password reset was sent
817
+ roles: The role this user has, if they has any
818
+ sign_in_count: The number of times this user has logged in
819
+ type: The type that this user has
820
+ unconfirmed_email: The email address that this user has not yet confirmed
821
+ updated_at: The date and time when this user was last updated
679
822
  show:
680
- download_data: Download the data
681
- download_data_description_html: |-
682
- A file containing all the information associated with your account will be sent to <strong>%{user_email}</strong>.
683
- This email will contain a .zip file and a password to open it.<br/><br/>To unzip the file, you will need <a href="https://www.7-zip.org/">7-Zip</a> (for Windows) or <a href="https://www.keka.io/">Keka</a> (for MacOS).
684
- If you use Linux, most of the time you will have it installed by default. If not, you can use <a href="https://gitlab.gnome.org/GNOME/file-roller">File Roller</a> or <a href="https://peazip.github.io">PeaZip</a>).
685
- request_data: Request data
823
+ action: Action
824
+ download: Download file
825
+ download_data: Data download
826
+ download_data_description_1: Here you can find all the downloads available for your account. These .zip files will be available during two weeks before being deleted.
827
+ download_data_description_2: You can request a .zip file with your submissions and personal data.
828
+ download_your_data: Personal data
829
+ expiration: Expiration
830
+ expired: Already expired
831
+ explanation:
832
+ body_1: These files are datasets exported from your activity in this platform, such as proposals, or comments. They provide raw, structured data that can be used for analysis, research, or integration with other tools
833
+ body_2: These files are in CSV (Comma-Separated Values) format, which is a widely-used file format that can be opened and processed by a variety of software applications, including spreadsheet programs, text editors, and data analysis tools.
834
+ title: What are these files?
835
+ files_to_download: Files to download
836
+ request_data: Request
837
+ type: Download type
686
838
  editor_images:
687
839
  create:
688
840
  error: Error uploading image.
689
841
  success: Image uploaded successfully.
690
842
  drag_and_drop_help: Add images by dragging & dropping or pasting them.
691
843
  endorsement_buttons_cell:
692
- already_endorsed: Dislike
844
+ already_endorsed: Undo the like
693
845
  endorse: Like
694
846
  endorsements:
695
847
  identities:
696
848
  done: Done
697
849
  select_identity: Select identity
698
850
  endorsers_list:
699
- endorsed_by: Liked by…
851
+ endorsed_by:
852
+ one: Liked by %{visible}
853
+ other: Liked by %{visible} and %{others}
854
+ others: "%{count} more"
855
+ title: Liked by
856
+ you: you
857
+ ephemeral_user: Visitor
700
858
  errors:
701
859
  files:
702
860
  file_cannot_be_processed: File cannot be processed
@@ -860,6 +1018,9 @@ en:
860
1018
  email_outro: You have received this notification because you are following %{endorser_nickname}. You can stop receiving notifications following the previous link.
861
1019
  email_subject: "%{endorser_nickname} has performed a new endorsement"
862
1020
  notification_title: The <a href="%{resource_path}">%{resource_title}</a> %{resource_type} has been endorsed by <a href="%{endorser_path}">%{endorser_name} %{endorser_nickname}</a>.
1021
+ resources:
1022
+ soft_deleted:
1023
+ notification_title: An admin has deleted your "%{resource_type}" "%{resource_title}".
863
1024
  users:
864
1025
  profile_updated:
865
1026
  email_intro: The <a href="%{resource_url}">profile page</a> of %{name} (%{nickname}), who you are following, has been updated.
@@ -873,10 +1034,11 @@ en:
873
1034
  notification_title: Participant %{name} (%{nickname}) has been officialized.
874
1035
  export_mailer:
875
1036
  download_your_data_export:
876
- click_button: 'Click the next link to download your data.<br/>The file will be available until %{date}.<br/>You will need <a href="https://www.7-zip.org/">7-Zip</a> (for Windows), <a href="https://www.keka.io/en/">Keka</a> (for MacOS) or <a href="https://peazip.github.io">PeaZip</a> (for Linux) to open it. Password: %{password}'
1037
+ click_button_html: Click the next link to download your data.<br/>The file will be available for download until %{date}.
877
1038
  download: Download
878
1039
  export:
879
- ready: Please find attached a zipped version of your export.
1040
+ click_button_html: Your download is ready. <br/>The file will be available for download until %{date}.
1041
+ download: Download
880
1042
  subject: Your export "%{name}" is ready
881
1043
  filters:
882
1044
  linked_classes:
@@ -930,7 +1092,7 @@ en:
930
1092
  file:
931
1093
  explanation: 'Guidance for file:'
932
1094
  message_1: Has to be an image or a document.
933
- message_2: For images, use preferably landscape images, the service crops the image.
1095
+ message_2: If it is an image, it preferably be a landscape image that does not have any text. The service crops the image.
934
1096
  icon:
935
1097
  explanation: 'Guidance for icon:'
936
1098
  message_1: Has to be a square image.
@@ -1108,6 +1270,8 @@ en:
1108
1270
  unknown_action_with_space: "%{user_name} performed some action on %{resource_name} in %{space_name}"
1109
1271
  unpublish_with_space: "%{user_name} unpublished %{resource_name} from %{space_name}"
1110
1272
  update: "%{user_name} updated %{resource_name}"
1273
+ update_filters: "%{user_name} updated the filters of %{resource_name}"
1274
+ update_filters_with_space: "%{user_name} updated the filters of %{resource_name} in %{space_name}"
1111
1275
  update_permissions_with_space: "%{user_name} updated the permissions of %{resource_name} in %{space_name}"
1112
1276
  update_with_space: "%{user_name} updated %{resource_name} in %{space_name}"
1113
1277
  value_types:
@@ -1119,6 +1283,8 @@ en:
1119
1283
  not_found: 'The scope was not found on the database (ID: %{id})'
1120
1284
  scope_type_presenter:
1121
1285
  not_found: 'The scope type was not found on the database (ID: %{id})'
1286
+ taxonomy_presenter:
1287
+ not_found: 'The taxonomy was not found on the database (ID: %{id})'
1122
1288
  machine_translations:
1123
1289
  automatic: automatic translation in %{locale_name}
1124
1290
  managed_users:
@@ -1307,6 +1473,7 @@ en:
1307
1473
  administrators: Administrators
1308
1474
  allow_public_contact: Allow anyone to send me a direct message, even if I do not follow them.
1309
1475
  allow_push_notifications: Get push notifications to find out what is going on when you are not on the platform. You can turn them off anytime.
1476
+ assigned_to_proposal: I want to receive an email when someone assigns me a proposal to evaluate
1310
1477
  direct_messages: Receive direct messages from anyone
1311
1478
  email_on_moderations: I want to receive an email every time something or someone is reported for moderation.
1312
1479
  everything_followed: Everything I follow
@@ -1325,6 +1492,7 @@ en:
1325
1492
  push_notifications_reminder: To get notifications from the platform, you will need to allow them in your browser settings first.
1326
1493
  receive_notifications_about: I want to get notifications about
1327
1494
  update_notifications_settings: Save changes
1495
+ valuators: Evaluators
1328
1496
  update:
1329
1497
  error: There was a problem updating your notifications settings.
1330
1498
  success: Your notifications settings were successfully updated.
@@ -1334,7 +1502,127 @@ en:
1334
1502
  message_1: It looks like you are currently offline.
1335
1503
  message_2: Please, try again later.
1336
1504
  retry: Retry
1505
+ onboarding_action_message:
1506
+ click_link: Click here
1507
+ cta_html: <a href="%{path}">%{link_text}</a> in order to %{action} in the %{resource_name} <strong>%{resource_title}</strong>
1508
+ ephemeral_authorized_message: You have been successfully authorized.<br/>You have started a guest session, you can now participate.
1509
+ expired_authorization_active_title: Your authorization has expired.
1510
+ finish_authorization_process: You can finish the authorization process
1511
+ incomplete_authorization_active_title: Your verification has not been completed with all the necessary information.
1512
+ pending_authorization_active_message: Please complete the form to proceed with this action.
1513
+ pending_authorization_active_title: We need to verify your identity.
1514
+ pending_ephemeral_authorization: Please verify your identity to proceed.
1337
1515
  open_data:
1516
+ help:
1517
+ core:
1518
+ components: Components
1519
+ description: This ZIP file contains files for studying and researching about this participation platform.
1520
+ main: Core
1521
+ spaces: Spaces
1522
+ title: Open Data files for %{organization}
1523
+ metrics:
1524
+ cumulative: The total number of the metric at this day
1525
+ day: The day this metric was created
1526
+ metric_type: The type of the metric
1527
+ quantity: The number of the metrics for this day
1528
+ moderated_users:
1529
+ about: The about field of the user
1530
+ block_reasons: The reason why the admin user blocked the user
1531
+ blocked_at: Date and time when the user has been blocked
1532
+ blocking_user: The name of the user that has performed the blocking
1533
+ details: The details of the reports
1534
+ reasons: A list of the reasons why the profile has been reported
1535
+ user_id: The unique ID of the reported user
1536
+ moderations:
1537
+ hidden_at: Date and time when the content has been hidden
1538
+ id: The unique identifier of the moderation
1539
+ report_count: The number of times it has been reported
1540
+ reportable_id: The unique id of the reportable
1541
+ reportable_type: Type of the reportable
1542
+ reported_content: The content that has been reported
1543
+ reported_url: The url of the reported resource
1544
+ reports: A list of reasons for which the resource has been reported
1545
+ taxonomies:
1546
+ children_count: The count of the children that this taxonomy has
1547
+ created_at: The date when this taxonomy was created
1548
+ filter_items_count: The number of items filters that are using this taxonomy
1549
+ filters_count: The number of filters that is using this taxonomy
1550
+ id: The unique identifier of this taxonomy
1551
+ is_root: True if this taxonomy do not have any parent
1552
+ name: The name of this taxonomy
1553
+ parent_id: The unique identifiers of this taxonomy parent (if any)
1554
+ part_of: Used to detect if this taxonomy is part of another taxonomy
1555
+ taxonomizations_count: The count of the resources that use this taxonomy
1556
+ updated_at: The date when this taxonomy was updated for the last time
1557
+ weight: The order in which this taxonomy is shown
1558
+ user_groups:
1559
+ avatar_url: The avatar of the user group
1560
+ badge: The badge of the user group
1561
+ deleted: Whether the user is deleted or not
1562
+ id: The unique identifier of the user group
1563
+ members: The id and name of the users belonging to the group
1564
+ members_count: The number of the users belonging to the user group
1565
+ name: The display name of user group
1566
+ nickname: The username of the user group
1567
+ profile_url: The profile url
1568
+ users:
1569
+ about: The about text of the user
1570
+ avatar_url: The avatar of the user
1571
+ badge: The badge of the user
1572
+ deleted: Whether the user is deleted or not
1573
+ direct_messages_enabled: Whether the user allows direct messages
1574
+ groups: The id and name of the user group
1575
+ id: The unique identifier of the user
1576
+ name: The display name of user
1577
+ nickname: The username of the user
1578
+ profile_url: The profile url
1579
+ index:
1580
+ description: Welcome to the %{organization_name} Open Data page. Here, you will find data files that are regularly generated from various deliberative and governance processes within %{organization_name}. These files are made available to promote transparency, accessibility, and collaboration. Below, you will find detailed information on what these files are, how to open and work with them, and a description of the content and structure of each file.
1581
+ detailed:
1582
+ body_1: 'Below is a description of each dataset, including its schema (structure) and the type of information it contains:'
1583
+ components: Components
1584
+ spaces: Participatory spaces
1585
+ title: Detailed explanation of each file
1586
+ download:
1587
+ components: Components
1588
+ core: Core
1589
+ spaces: Participatory spaces
1590
+ title: Download resources
1591
+ download_open_data: Download all the Open Data files
1592
+ download_resource: Download %{resource_name} in CSV format
1593
+ explanation:
1594
+ body_1: These files are datasets exported from %{organization_name}'s participatory processes, such as proposals, comments, and meetings. They provide raw, structured data that can be used for analysis, research, or integration with other tools. The data is updated automatically every 24 hours, ensuring that you have access to the most recent information.
1595
+ body_2: These files are in CSV (Comma-Separated Values) format, which is a widely-used file format that can be opened and processed by a variety of software applications, including spreadsheet programs, text editors, and data analysis tools.
1596
+ title: What are these files?
1597
+ how_to:
1598
+ step_1:
1599
+ body_html: Click on the links provided below to download the CSV files to your computer.
1600
+ title: 1. Download the files
1601
+ step_2:
1602
+ body_html: |-
1603
+ <ul>
1604
+ <li><b>Spreadsheet Applications</b>: You can open CSV files using applications like Microsoft Excel, Google Sheets, or LibreOffice Calc. Simply open the application, then select "Open" from the File menu, and choose the downloaded CSV file.</li>
1605
+ <li><b>Text Editors</b>: CSV files can also be opened in any text editor, such as Notepad or Sublime Text. This will display the raw data, with each line representing a row and each value separated by a comma.</li>
1606
+ <li><b>Data Analysis Tools</b>: If you are familiar with data analysis tools like Python (with pandas), R, or SQL databases, you can import these CSV files directly for processing and analysis.</li>
1607
+ </ul>
1608
+ title: 2. Open the files
1609
+ step_3:
1610
+ body_html: |-
1611
+ <ul>
1612
+ <li><b>Filtering and Sorting</b>: In spreadsheet applications, you can filter and sort the data to focus on specific subsets of information.</li>
1613
+ <li><b>Analysis</b>: Use the data to perform various analyses, such as counting the number of proposals, analyzing trends in comments, or evaluating participation in meetings.</li>
1614
+ <li><b>Visualization</b>: You can create charts, graphs, and other visualizations to help interpret the data.</li>
1615
+ </ul>
1616
+ title: 3. Working with the data
1617
+ title: How to open and work with these files
1618
+ license:
1619
+ body_1_html: This %{organization_name} database is made available under the %{link_database}. Any rights in individual contents of the database are licensed under the %{link_contents}.
1620
+ license_contents_link: http://opendatacommons.org/licenses/dbcl/1.0/
1621
+ license_contents_name: Database Contents License
1622
+ license_database_link: http://opendatacommons.org/licenses/odbl/1.0/
1623
+ license_database_name: Open Database License
1624
+ title: License
1625
+ title: Open Data
1338
1626
  not_available_yet: The Open Data files are not yet available, please try again in a few minutes.
1339
1627
  pad_iframe:
1340
1628
  disclaimer: The contents of this pad are written by registered users and express their opinions. %{organization} cannot be held responsible for its contents.
@@ -1412,6 +1700,10 @@ en:
1412
1700
  members: Members
1413
1701
  officialized: Official participant
1414
1702
  send_private_message: Send private message
1703
+ sidebar:
1704
+ badges:
1705
+ info: Badges are earned by performing specific activity in the platform.
1706
+ title: Badges
1415
1707
  user:
1416
1708
  actions:
1417
1709
  create_user_group: Create group
@@ -1427,26 +1719,22 @@ en:
1427
1719
  message: Message
1428
1720
  resend_email_confirmation_instructions: Resend email confirmation instructions
1429
1721
  confirmation_instructions_sent: Email confirmation instructions sent.
1722
+ create_user_group: Create group
1723
+ edit_profile: Edit profile
1724
+ edit_user_group: Edit group profile
1430
1725
  fill_in_email_to_confirm_it: Please, fill in your group's email to confirm it.
1726
+ invite_user: Invite participant
1727
+ join_user_group: Request to join group
1728
+ leave_user_group: Leave group
1729
+ manage_user_group_admins: Manage admins
1730
+ manage_user_group_users: Manage members
1731
+ resend_email_confirmation_instructions: Resend email confirmation instructions
1431
1732
  reported_mailer:
1432
- hidden_automatically:
1433
- content: Reported content
1434
- details: Details
1733
+ hide:
1435
1734
  hello: Hello %{name},
1436
1735
  manage_moderations: Manage moderations
1437
- participatory_space: Participatory space
1438
- reason: Reason
1439
1736
  report_html: <p>The following <a href="%{url}">content</a> has been hidden automatically.</p>
1440
1737
  subject: A resource has been hidden automatically
1441
- hidden_manually:
1442
- content: Reported content
1443
- details: Details
1444
- hello: Hello %{name},
1445
- manage_moderations: Manage moderations
1446
- participatory_space: Participatory space
1447
- reason: Reason
1448
- report_html: <p>The following <a href="%{url}">content</a> has been hidden by %{moderator}.</p>
1449
- subject: A resource has been hidden by %{moderator}
1450
1738
  report:
1451
1739
  authors: Authors
1452
1740
  content: Reported content
@@ -1462,27 +1750,16 @@ en:
1462
1750
  subject: A resource has been reported
1463
1751
  reports:
1464
1752
  create:
1465
- error: An error ocurred while creating the report. Please, try it again.
1753
+ error: There was a problem creating the report. Please, try it again.
1466
1754
  success: The report has been created successfully and it will be reviewed by an admin.
1467
- hide:
1468
- success: This resource has been hidden.
1469
- parent_hidden:
1470
- report_details: The parent resource was hidden
1755
+ resource:
1756
+ controls_label: Resource controls
1471
1757
  resource_endorsements:
1472
1758
  create:
1473
1759
  error: There was a problem during the endorsement action.
1474
1760
  scopes:
1475
1761
  global: Global scope
1476
- picker:
1477
- cancel: Cancel
1478
- change: Change selected scope
1479
- choose: Select
1480
- currently_selected: Currently selected scope
1481
- title: Select %{field}
1482
1762
  prompt: Select a scope
1483
- scopes: Scopes
1484
- scopes_picker_input:
1485
- select_scope: 'Select a scope (currently: %{current})'
1486
1763
  search:
1487
1764
  name: Search
1488
1765
  results: Search results
@@ -1513,6 +1790,7 @@ en:
1513
1790
  close_modal: Close modal
1514
1791
  ok: OK
1515
1792
  title: Confirm
1793
+ confirm_unload: This page contains unsaved changes. Are you sure you want to leave this page?
1516
1794
  embed:
1517
1795
  title: Embedded video content
1518
1796
  extended_navigation_bar:
@@ -1536,13 +1814,14 @@ en:
1536
1814
  flag_user_modal:
1537
1815
  already_reported: This content is already reported and it will be reviewed by an admin.
1538
1816
  block: Block this participant
1539
- description: What is inappropriate about this participant?
1817
+ close: Close
1818
+ description: What is inappropriate about the user?
1540
1819
  does_not_belong: Contains illegal activity, suicide threats, personal information, or something else you think does not belong on %{organization_name}.
1541
1820
  hide: Hide all their contents
1542
1821
  offensive: Contains racism, sexism, slurs, personal attacks, death threats, suicide requests or any form of hate speech.
1543
1822
  report: Report
1544
1823
  spam: Contains clickbait, advertising, scams or script bots.
1545
- title: Report inappropriate participant
1824
+ title: Report inappropriate User
1546
1825
  floating_help:
1547
1826
  help: Help
1548
1827
  follow_button:
@@ -1552,12 +1831,6 @@ en:
1552
1831
  sign_up: Create an account
1553
1832
  mentions_modal:
1554
1833
  remove_recipient: Remove recipient %{name}
1555
- participatory_space_filters:
1556
- filters:
1557
- area: Area
1558
- areas: Areas
1559
- scope: Scope
1560
- select_an_area: Select an area
1561
1834
  progress: Progress
1562
1835
  public_participation:
1563
1836
  public_participation: Show my attendance publicly
@@ -1585,10 +1858,12 @@ en:
1585
1858
  no_stats: There are no statistics yet.
1586
1859
  pages_count: Pages
1587
1860
  participants_count: Participants
1861
+ surveys_count: Surveys
1588
1862
  users_count: Participants
1589
1863
  tags:
1590
- filter_results_for_category: 'Filter results for category: %{resource}'
1591
- filter_results_for_scope: 'Filter results for scope: %{resource}'
1864
+ filter_results_for_taxonomy: 'Filter results for: %{resource}'
1865
+ taxonomies:
1866
+ prompt: Please select an option
1592
1867
  translation_bar:
1593
1868
  help_text: "<strong>Warning:</strong> Content might be automatically translated and not be 100% accurate."
1594
1869
  show_original: Show original text
@@ -1611,15 +1886,6 @@ en:
1611
1886
  send: Send
1612
1887
  update:
1613
1888
  error: Message not sent. Try again later
1614
- user_interests:
1615
- show:
1616
- my_interests: My interests
1617
- no_scopes: This organization does not have any scope yet!
1618
- select_your_interests: Select the topics you are interested in to receive events related to them in your profile Timeline tab.
1619
- update_my_interests: Update my interests
1620
- update:
1621
- error: There was a problem updating your interests.
1622
- success: Your interests have been successfully updated.
1623
1889
  user_report_mailer:
1624
1890
  notify:
1625
1891
  body_1: User %{user} has been reported by %{token}
@@ -1742,6 +2008,7 @@ en:
1742
2008
  message: Your account has been locked due to an excessive amount of unsuccessful log in attempts.
1743
2009
  subject: Unlock instructions
1744
2010
  omniauth_callbacks:
2011
+ add_tos_errors: Terms of service must be accepted in order to create an account.
1745
2012
  failure: Could not authenticate you from %{kind} because "%{reason}".
1746
2013
  success: Successfully authenticated from %{kind} account.
1747
2014
  passwords:
@@ -1902,7 +2169,7 @@ en:
1902
2169
  not_found: could not be found. Have you created an account previously?
1903
2170
  not_locked: was not locked
1904
2171
  not_saved:
1905
- one: 'There''s been an error processing your request:'
2172
+ one: 'There has been an error processing your request:'
1906
2173
  other: 'There were multiple errors when processing your request:'
1907
2174
  too_many_marks: is using too many consecutive punctuation marks (e.g. ! and ?)
1908
2175
  too_much_caps: is using too many capital letters (over 25% of the text)
@@ -1980,13 +2247,15 @@ en:
1980
2247
  data_consent_settings: Cookie settings
1981
2248
  decidim_logo: Decidim Logo
1982
2249
  decidim_title: Decidim
1983
- download_open_data: Download Open Data files
1984
2250
  log_in: Log in
1985
2251
  made_with_open_source: Website made with <a target="_blank" href="https://github.com/decidim/decidim">free software</a>.
2252
+ open_data: Open Data
1986
2253
  resources: Resources
1987
2254
  sign_up: Create an account
1988
2255
  terms_of_service: Terms of Service
1989
2256
  header:
2257
+ close: Close
2258
+ confirm_close_ephemeral_session: If you navigate out of this page, your session will be closed. Are you sure?
1990
2259
  log_in: Log in
1991
2260
  main_menu: Main menu
1992
2261
  user_menu: User menu
@@ -2029,7 +2298,6 @@ en:
2029
2298
  authorizations: Authorizations
2030
2299
  delete_my_account: Delete my account
2031
2300
  my_data: My data
2032
- my_interests: My interests
2033
2301
  notifications_settings: Notifications settings
2034
2302
  profile: Profile
2035
2303
  title: Participant settings