decidim-core 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.
- checksums.yaml +4 -4
- data/app/cells/decidim/amendable/amend_button_card/show.erb +6 -4
- data/app/cells/decidim/amendable/amend_button_card_cell.rb +8 -0
- data/app/cells/decidim/amendable/amendments/show.erb +1 -1
- data/app/cells/decidim/amendable/promote_button_card/show.erb +2 -0
- data/app/cells/decidim/author/flag.erb +6 -0
- data/app/cells/decidim/author/flag_user.erb +14 -0
- data/app/cells/decidim/author_cell.rb +1 -1
- data/app/cells/decidim/card_l/extra_data.erb +1 -0
- data/app/cells/decidim/card_metadata_cell.rb +9 -16
- data/app/cells/decidim/comments_button_cell.rb +14 -2
- data/app/cells/decidim/content_blocks/highlighted_elements_cell.rb +2 -0
- data/app/cells/decidim/content_blocks/highlighted_elements_with_cell_for_list_cell.rb +1 -1
- data/app/cells/decidim/endorsement_block/show.erb +0 -1
- data/app/cells/decidim/endorsement_block_cell.rb +6 -0
- data/app/cells/decidim/endorsement_buttons/button_content.erb +1 -1
- data/app/cells/decidim/endorsement_buttons/select_identity_button.erb +1 -1
- data/app/cells/decidim/endorsement_buttons/show.erb +7 -7
- data/app/cells/decidim/endorsement_buttons/verification_modal.erb +4 -2
- data/app/cells/decidim/endorsers_list/empty.erb +3 -0
- data/app/cells/decidim/endorsers_list/full.erb +17 -5
- data/app/cells/decidim/endorsers_list/show.erb +19 -10
- data/app/cells/decidim/endorsers_list_cell.rb +19 -6
- data/app/cells/decidim/flag_modal/flag_user.erb +34 -0
- data/app/cells/decidim/flag_modal/show.erb +52 -0
- data/app/cells/decidim/flag_modal_cell.rb +56 -0
- data/app/cells/decidim/follow_button/show.erb +1 -2
- data/app/cells/decidim/follow_button_cell.rb +5 -0
- data/app/cells/decidim/map/show.erb +3 -0
- data/app/cells/decidim/map/template.erb +14 -0
- data/app/cells/decidim/map_cell.rb +39 -0
- data/app/cells/decidim/notification_actions/buttons_cell.rb +1 -1
- data/app/cells/decidim/onboarding_action_message/show.erb +15 -0
- data/app/cells/decidim/onboarding_action_message_cell.rb +81 -0
- data/app/cells/decidim/participatory_space_dropdown_metadata/show.erb +3 -5
- data/app/cells/decidim/participatory_space_private_user/show.erb +23 -0
- data/app/cells/decidim/participatory_space_private_user_cell.rb +21 -0
- data/app/cells/decidim/profile_actions/show.erb +1 -1
- data/app/cells/decidim/profile_sidebar/show.erb +167 -0
- data/app/cells/decidim/profile_sidebar_cell.rb +68 -0
- data/app/cells/decidim/progress_bar/show.erb +2 -2
- data/app/cells/decidim/report_button/already_reported_modal.erb +2 -2
- data/app/cells/decidim/report_button/flag_modal.erb +27 -13
- data/app/cells/decidim/report_button_cell.rb +9 -2
- data/app/cells/decidim/resource_history/show.erb +20 -0
- data/app/cells/decidim/resource_history_cell.rb +66 -0
- data/app/cells/decidim/resource_types_filter/show.erb +1 -1
- data/app/cells/decidim/resource_types_filter_cell.rb +6 -6
- data/app/cells/decidim/share_button_cell.rb +0 -4
- data/app/cells/decidim/share_widget/modal.erb +26 -0
- data/app/cells/decidim/share_widget/show.erb +2 -0
- data/app/cells/decidim/share_widget_cell.rb +20 -0
- data/app/cells/decidim/tags/show.erb +7 -4
- data/app/cells/decidim/tags_cell.rb +11 -72
- data/app/cells/decidim/user_activity/show.erb +1 -1
- data/app/commands/decidim/amendable/create_draft.rb +2 -2
- data/app/commands/decidim/create_ephemeral_user.rb +52 -0
- data/app/commands/decidim/create_omniauth_registration.rb +21 -17
- data/app/commands/decidim/create_report.rb +7 -6
- data/app/commands/decidim/create_user_group.rb +6 -2
- data/app/commands/decidim/destroy_ephemeral_user.rb +47 -0
- data/app/commands/decidim/search.rb +0 -14
- data/app/commands/decidim/update_account.rb +11 -3
- data/app/commands/decidim/update_notifications_settings.rb +1 -0
- data/app/commands/decidim/update_resources_taxonomies.rb +67 -0
- data/app/commands/decidim/update_user_group.rb +7 -1
- data/app/constraints/decidim/current_component.rb +1 -1
- data/app/controllers/concerns/decidim/ajax_permission_handler.rb +21 -0
- data/app/controllers/concerns/decidim/devise_authentication_methods.rb +3 -6
- data/app/controllers/concerns/decidim/devise_controllers.rb +2 -0
- data/app/controllers/concerns/decidim/disable_redirection_to_external_host.rb +1 -1
- data/app/controllers/concerns/decidim/ephemeral_session_checker.rb +87 -0
- data/app/controllers/concerns/decidim/filter_resource.rb +4 -2
- data/app/controllers/concerns/decidim/has_members_page.rb +25 -0
- data/app/controllers/concerns/decidim/headers/browser_feature_permissions.rb +50 -0
- data/app/controllers/concerns/decidim/locale_switcher.rb +2 -2
- data/app/controllers/concerns/decidim/needs_password_change.rb +0 -1
- data/app/controllers/concerns/decidim/needs_permission.rb +2 -1
- data/app/controllers/concerns/decidim/needs_tos_accepted.rb +4 -5
- data/app/controllers/concerns/decidim/onboarding_action_methods.rb +52 -0
- data/app/controllers/decidim/application_controller.rb +10 -0
- data/app/controllers/decidim/authorization_modals_controller.rb +8 -2
- data/app/controllers/decidim/components/base_controller.rb +3 -7
- data/app/controllers/decidim/devise/confirmations_controller.rb +4 -0
- data/app/controllers/decidim/devise/omniauth_registrations_controller.rb +8 -1
- data/app/controllers/decidim/devise/registrations_controller.rb +1 -1
- data/app/controllers/decidim/devise/sessions_controller.rb +2 -0
- data/app/controllers/decidim/download_your_data_controller.rb +33 -2
- data/app/controllers/decidim/editor_images_controller.rb +1 -11
- data/app/controllers/decidim/follows_controller.rb +1 -1
- data/app/controllers/decidim/geolocation_controller.rb +19 -0
- data/app/controllers/decidim/homepage_controller.rb +0 -1
- data/app/controllers/decidim/open_data_controller.rb +33 -8
- data/app/controllers/decidim/profiles_controller.rb +2 -2
- data/app/controllers/decidim/reports_controller.rb +1 -1
- data/app/controllers/decidim/user_activities_controller.rb +1 -1
- data/app/controllers/decidim/user_conversations_controller.rb +1 -11
- data/app/events/decidim/soft_delete_resource_event.rb +15 -0
- data/app/forms/decidim/account_form.rb +2 -5
- data/app/forms/decidim/amendable/form.rb +4 -2
- data/app/forms/decidim/ephemeral_user_form.rb +22 -0
- data/app/forms/decidim/notifications_settings_form.rb +1 -0
- data/app/forms/decidim/omniauth_registration_form.rb +14 -1
- data/app/helpers/concerns/decidim/flash_helper_extensions.rb +17 -2
- data/app/helpers/decidim/action_authorization_helper.rb +75 -14
- data/app/helpers/decidim/amendments_helper.rb +0 -9
- data/app/helpers/decidim/application_helper.rb +6 -2
- data/app/helpers/decidim/breadcrumb_helper.rb +6 -0
- data/app/helpers/decidim/cache_helper.rb +1 -1
- data/app/helpers/decidim/check_boxes_tree_helper.rb +25 -53
- data/app/helpers/decidim/decidim_form_helper.rb +0 -44
- data/app/helpers/decidim/endorsable_helper.rb +0 -10
- data/app/helpers/decidim/layout_helper.rb +6 -0
- data/app/helpers/decidim/messaging/conversation_helper.rb +2 -3
- data/app/helpers/decidim/meta_tags_helper.rb +32 -23
- data/app/helpers/decidim/modal_helper.rb +23 -0
- data/app/helpers/decidim/omniauth_helper.rb +5 -5
- data/app/helpers/decidim/onboarding_action_helper.rb +13 -0
- data/app/helpers/decidim/orders_helper.rb +1 -2
- data/app/helpers/decidim/participatory_space_helpers.rb +1 -1
- data/app/helpers/decidim/passwords_helper.rb +2 -2
- data/app/helpers/decidim/taxonomies_helper.rb +40 -0
- data/app/jobs/decidim/download_your_data_export_job.rb +2 -19
- data/app/jobs/decidim/event_publisher_job.rb +18 -9
- data/app/jobs/decidim/export_job.rb +5 -1
- data/app/jobs/decidim/export_participatory_space_job.rb +4 -1
- data/app/jobs/decidim/open_data_job.rb +4 -4
- data/app/mailers/decidim/export_mailer.rb +7 -12
- data/app/mailers/decidim/reported_mailer.rb +0 -1
- data/app/models/decidim/action_log.rb +20 -1
- data/app/models/decidim/category.rb +4 -0
- data/app/models/decidim/component.rb +25 -3
- data/app/models/decidim/metric.rb +2 -1
- data/app/models/decidim/moderation.rb +16 -0
- data/app/models/decidim/newsletter.rb +12 -8
- data/app/models/decidim/organization.rb +7 -3
- data/app/models/decidim/participatory_space_private_user.rb +20 -0
- data/app/models/decidim/private_export.rb +24 -0
- data/app/models/decidim/push_notification_message.rb +1 -1
- data/app/models/decidim/report.rb +1 -1
- data/app/models/decidim/scope.rb +4 -0
- data/app/models/decidim/share_token.rb +36 -10
- data/app/models/decidim/taxonomization.rb +23 -0
- data/app/models/decidim/taxonomy.rb +139 -0
- data/app/models/decidim/taxonomy_filter.rb +130 -0
- data/app/models/decidim/taxonomy_filter_item.rb +33 -0
- data/app/models/decidim/user.rb +13 -23
- data/app/models/decidim/user_base_entity.rb +12 -4
- data/app/models/decidim/user_moderation.rb +9 -0
- data/app/models/decidim/user_report.rb +4 -0
- data/app/packs/entrypoints/decidim_core.js +1 -0
- data/app/packs/entrypoints/decidim_geocoding.js +2 -0
- data/app/packs/images/decidim/brands/facebook.svg +10 -0
- data/app/packs/images/decidim/brands/google.svg +7 -1
- data/app/packs/images/decidim/brands/twitter-x.svg +3 -0
- data/app/packs/src/decidim/check_boxes_tree.js +0 -1
- data/app/packs/src/decidim/clipboard.js +18 -9
- data/app/packs/src/decidim/confirm.js +79 -59
- data/app/packs/src/decidim/datepicker/datepicker_functions.js +3 -3
- data/app/packs/src/decidim/decidim_application.js +1 -0
- data/app/packs/src/decidim/form_remote.js +1 -1
- data/app/packs/src/decidim/geocoding/reverse_geocoding.js +60 -0
- data/app/packs/src/decidim/impersonation.js +1 -1
- data/app/packs/src/decidim/index.js +13 -5
- data/app/packs/src/decidim/map/provider/here.js +1 -1
- data/app/packs/src/decidim/onboarding_pending_action.js +24 -0
- data/app/packs/src/decidim/session_timeouter.js +1 -1
- data/app/packs/src/decidim/sticky_footer.js +29 -0
- data/app/packs/src/decidim/sticky_header.js +6 -31
- data/app/packs/src/decidim/user_registrations.js +13 -0
- data/app/packs/src/decidim/utilities/dom.js +148 -0
- data/app/packs/src/decidim/vendor/leaflet-tilelayer-here.js +212 -0
- data/app/packs/stylesheets/decidim/_accordion.scss +30 -0
- data/app/packs/stylesheets/decidim/_buttons.scss +19 -0
- data/app/packs/stylesheets/decidim/_content_blocks.scss +0 -4
- data/app/packs/stylesheets/decidim/_dropdown.scss +1 -1
- data/app/packs/stylesheets/decidim/_endorsers_list.scss +26 -20
- data/app/packs/stylesheets/decidim/_forms.scss +2 -2
- data/app/packs/stylesheets/decidim/_header.scss +2 -6
- data/app/packs/stylesheets/decidim/_layout.scss +32 -2
- data/app/packs/stylesheets/decidim/_login.scss +53 -6
- data/app/packs/stylesheets/decidim/_modal.scss +42 -0
- data/app/packs/stylesheets/decidim/_modal_tos_refuse.scss +4 -0
- data/app/packs/stylesheets/decidim/_participatory_spaces.scss +46 -0
- data/app/packs/stylesheets/decidim/_profile.scss +1 -1
- data/app/packs/stylesheets/decidim/_success_image.scss +64 -0
- data/app/packs/stylesheets/decidim/_tribute.scss +36 -0
- data/app/packs/stylesheets/decidim/application.scss +1 -1
- data/app/packs/stylesheets/decidim/geocoding_addons.scss +5 -0
- data/app/packs/stylesheets/decidim/map.scss +7 -10
- data/app/packs/stylesheets/decidim/resource_history.scss +31 -0
- data/app/permissions/decidim/permissions.rb +8 -2
- data/app/presenters/decidim/admin_log/base_user_presenter.rb +67 -0
- data/app/presenters/decidim/admin_log/component_presenter.rb +32 -3
- data/app/presenters/decidim/admin_log/moderation_presenter.rb +30 -3
- data/app/presenters/decidim/admin_log/share_token_presenter.rb +39 -0
- data/app/presenters/decidim/admin_log/taxonomy_filter_presenter.rb +57 -0
- data/app/presenters/decidim/admin_log/taxonomy_presenter.rb +48 -0
- data/app/presenters/decidim/admin_log/user_group_presenter.rb +6 -6
- data/app/presenters/decidim/admin_log/user_presenter.rb +4 -18
- data/app/presenters/decidim/log/user_presenter.rb +0 -1
- data/app/presenters/decidim/log/value_types/date_presenter.rb +1 -0
- data/app/presenters/decidim/log/value_types/taxonomy_presenter.rb +29 -0
- data/app/presenters/decidim/participatory_space_private_user_presenter.rb +50 -0
- data/app/presenters/decidim/taxonomy_filter_presenter.rb +19 -0
- data/app/presenters/decidim/taxonomy_presenter.rb +14 -0
- data/app/presenters/decidim/user_presenter.rb +1 -1
- data/app/queries/decidim/metrics/blocked_users_metric_manage.rb +2 -2
- data/app/queries/decidim/metrics/users_metric_manage.rb +2 -2
- data/app/queries/decidim/public_activities.rb +1 -12
- data/app/queries/decidim/stats_users_count.rb +2 -2
- data/app/resolvers/decidim/meta_image_url_resolver.rb +128 -0
- data/app/serializers/decidim/exporters/open_data_blocked_user_serializer.rb +25 -0
- data/app/serializers/decidim/exporters/open_data_metric_serializer.rb +22 -0
- data/app/serializers/decidim/exporters/open_data_moderation_serializer.rb +30 -0
- data/app/serializers/decidim/exporters/open_data_taxonomy_serializer.rb +30 -0
- data/app/serializers/decidim/exporters/open_data_user_group_serializer.rb +38 -0
- data/app/serializers/decidim/exporters/open_data_user_serializer.rb +39 -0
- data/app/serializers/decidim/exporters/participatory_space_serializer.rb +104 -0
- data/app/serializers/decidim/exporters/serializer.rb +25 -0
- data/app/serializers/decidim/schema_org_breadcrumb_list_serializer.rb +52 -0
- data/app/services/decidim/action_authorizer.rb +32 -3
- data/app/services/decidim/base_diff_renderer.rb +1 -3
- data/app/services/decidim/download_your_data_exporter.rb +58 -24
- data/app/services/decidim/onboarding_manager.rb +272 -0
- data/app/services/decidim/open_data_exporter.rb +139 -13
- data/app/services/decidim/static_map_generator.rb +1 -1
- data/app/services/decidim/traceability.rb +13 -0
- data/app/uploaders/decidim/application_uploader.rb +1 -1
- data/app/validators/etiquette_validator.rb +9 -2
- data/app/validators/passthru_validator.rb +1 -1
- data/app/validators/translated_etiquette_validator.rb +32 -0
- data/app/views/decidim/account/_password_fields.html.erb +2 -2
- data/app/views/decidim/application/_accordion_section.html.erb +14 -0
- data/app/views/decidim/application/_collection.html.erb +30 -18
- data/app/views/decidim/devise/omniauth_registrations/new.html.erb +5 -1
- data/app/views/decidim/devise/omniauth_registrations/new_tos_fields.html.erb +29 -0
- data/app/views/decidim/devise/registrations/new.html.erb +10 -22
- data/app/views/decidim/devise/sessions/new.html.erb +24 -29
- data/app/views/decidim/devise/shared/_omniauth_buttons.html.erb +2 -4
- data/app/views/decidim/devise/shared/_tos_fields.html.erb +16 -0
- data/app/views/decidim/download_your_data/_export.html.erb +15 -0
- data/app/views/decidim/download_your_data/show.html.erb +51 -5
- data/app/views/decidim/endorsements/update_buttons_and_counters.js.erb +16 -19
- data/app/views/decidim/export_mailer/download_your_data_export.html.erb +2 -2
- data/app/views/decidim/export_mailer/export.html.erb +5 -1
- data/app/views/decidim/last_activities/index.html.erb +1 -1
- data/app/views/decidim/notifications_settings/show.html.erb +22 -0
- data/app/views/decidim/open_data/_how_to_open_accordion_section.html.erb +15 -0
- data/app/views/decidim/open_data/index.html.erb +108 -0
- data/app/views/decidim/pages/show.html.erb +2 -1
- data/app/views/decidim/participatory_space_private_users/_participatory_space_private_user.html.erb +1 -0
- data/app/views/decidim/reported_mailer/hide.html.erb +1 -17
- data/app/views/decidim/reported_mailer/report.html.erb +1 -1
- data/app/views/decidim/searches/_count.html.erb +1 -1
- data/app/views/decidim/searches/_filters.html.erb +38 -40
- data/app/views/decidim/shared/_login_modal.html.erb +26 -20
- data/app/views/decidim/shared/_orders.html.erb +2 -2
- data/app/views/decidim/shared/_resource_actions.html.erb +21 -0
- data/app/views/decidim/shared/filters/_check_boxes_tree.html.erb +1 -2
- data/app/views/decidim/shared/filters/_collection.html.erb +1 -1
- data/app/views/decidim/shared/filters/_dropdown_label.html.erb +7 -4
- data/app/views/layouts/decidim/_application.html.erb +0 -1
- data/app/views/layouts/decidim/_js_configuration.html.erb +1 -0
- data/app/views/layouts/decidim/_logo.html.erb +1 -1
- data/app/views/layouts/decidim/_logo_mobile.html.erb +1 -1
- data/app/views/layouts/decidim/_meta_tags_config.html.erb +6 -11
- data/app/views/layouts/decidim/_schema_org_breadcrumb_list.html.erb +3 -0
- data/app/views/layouts/decidim/_wrapper.html.erb +15 -9
- data/app/views/layouts/decidim/footer/_main_legal.html.erb +1 -1
- data/app/views/layouts/decidim/footer/_main_links.html.erb +1 -1
- data/app/views/layouts/decidim/header/_close_ephemeral_session.html.erb +25 -0
- data/app/views/layouts/decidim/header/_main.html.erb +14 -10
- data/app/views/layouts/decidim/header/_menu_breadcrumb_items.html.erb +2 -0
- data/app/views/layouts/decidim/shared/_layout_item.html.erb +1 -1
- data/config/assets.rb +2 -1
- data/config/locales/ar.yml +29 -74
- data/config/locales/bg.yml +27 -74
- data/config/locales/bs-BA.yml +0 -2
- data/config/locales/ca.yml +369 -90
- data/config/locales/cs.yml +370 -84
- data/config/locales/de.yml +348 -72
- data/config/locales/el.yml +16 -58
- data/config/locales/en.yml +349 -70
- data/config/locales/eo.yml +0 -4
- data/config/locales/es-MX.yml +362 -86
- data/config/locales/es-PY.yml +367 -91
- data/config/locales/es.yml +369 -90
- data/config/locales/eu.yml +422 -140
- data/config/locales/fi-plain.yml +360 -76
- data/config/locales/fi.yml +364 -77
- data/config/locales/fr-CA.yml +172 -83
- data/config/locales/fr.yml +172 -80
- data/config/locales/ga-IE.yml +4 -25
- data/config/locales/gl.yml +15 -58
- data/config/locales/hu.yml +24 -62
- data/config/locales/id-ID.yml +16 -57
- data/config/locales/is-IS.yml +0 -25
- data/config/locales/it.yml +31 -94
- data/config/locales/ja.yml +226 -97
- data/config/locales/lb.yml +23 -76
- data/config/locales/lt.yml +18 -64
- data/config/locales/lv.yml +16 -58
- data/config/locales/nl.yml +18 -75
- data/config/locales/no.yml +18 -70
- data/config/locales/pl.yml +24 -72
- data/config/locales/pt-BR.yml +35 -63
- data/config/locales/pt.yml +18 -70
- data/config/locales/ro-RO.yml +109 -188
- data/config/locales/ru.yml +8 -43
- data/config/locales/sk.yml +19 -70
- data/config/locales/sl.yml +0 -4
- data/config/locales/sr-CS.yml +0 -2
- data/config/locales/sv.yml +127 -79
- data/config/locales/tr-TR.yml +24 -74
- data/config/locales/uk.yml +1 -29
- data/config/locales/zh-CN.yml +16 -68
- data/config/locales/zh-TW.yml +17 -62
- data/config/routes.rb +4 -10
- data/db/migrate/20181025082245_add_timestamps_to_components.rb +2 -0
- data/db/migrate/20240628111905_add_visible_to_components.rb +7 -0
- data/db/migrate/20240704115429_create_decidim_taxonomies.rb +23 -0
- data/db/migrate/20240717093514_add_registered_only_to_decidim_share_tokens.rb +7 -0
- data/db/migrate/20240722215500_change_object_changes_on_versions.rb +39 -0
- data/db/migrate/20240806065417_create_decidim_taxonomy_filters.rb +23 -0
- data/db/migrate/20240822161348_add_deleted_at_to_decidim_components.rb +8 -0
- data/db/migrate/20240906162524_add_part_of_to_taxonomies.rb +26 -0
- data/db/migrate/20241001135825_add_role_to_participatory_space_private_users.rb +7 -0
- data/db/migrate/20241001140408_add_published_to_participatory_space_private_users.rb +7 -0
- data/db/migrate/20241022002600_create_private_exports.rb +18 -0
- data/db/migrate/20241028114430_add_component_counter_to_taxonomy_filters.rb +7 -0
- data/db/migrate/20241111104357_add_names_and_space_boolean_to_taxonomy_filters.rb +9 -0
- data/db/migrate/20241127093708_add_taxonomy_to_metrics.rb +7 -0
- data/db/migrate/20241204121445_add_participatory_space_manifests_from_taxonomy_filters.rb +9 -0
- data/decidim-core.gemspec +14 -17
- data/lib/decidim/action_authorization.rb +3 -2
- data/lib/decidim/amendable.rb +1 -1
- data/lib/decidim/api/input_filters/category_input_filter.rb +5 -3
- data/lib/decidim/api/input_filters/component_input_filter.rb +33 -20
- data/lib/decidim/api/input_filters/user_entity_input_filter.rb +53 -44
- data/lib/decidim/api/input_sorts/component_input_sort.rb +15 -13
- data/lib/decidim/api/input_sorts/user_entity_input_sort.rb +4 -4
- data/lib/decidim/api/interfaces/author_interface.rb +3 -2
- data/lib/decidim/api/interfaces/coauthorable_interface.rb +5 -5
- data/lib/decidim/api/interfaces/endorsable_interface.rb +2 -2
- data/lib/decidim/api/interfaces/participatory_space_interface.rb +5 -10
- data/lib/decidim/api/interfaces/taxonomizable_interface.rb +13 -0
- data/lib/decidim/api/types/amendment_type.rb +5 -7
- data/lib/decidim/api/types/area_api_type.rb +3 -3
- data/lib/decidim/api/types/attachment_type.rb +3 -3
- data/lib/decidim/api/types/category_type.rb +2 -2
- data/lib/decidim/api/types/decidim_type.rb +5 -1
- data/lib/decidim/api/types/fingerprint_type.rb +1 -1
- data/lib/decidim/api/types/localized_string_type.rb +1 -1
- data/lib/decidim/api/types/metric_history_type.rb +2 -0
- data/lib/decidim/api/types/metric_type.rb +1 -1
- data/lib/decidim/api/types/organization_type.rb +5 -0
- data/lib/decidim/api/types/participatory_space_link_type.rb +2 -2
- data/lib/decidim/api/types/participatory_space_manifest_type.rb +1 -1
- data/lib/decidim/api/types/quantifiable_translated_field_type.rb +1 -1
- data/lib/decidim/api/types/scope_api_type.rb +2 -3
- data/lib/decidim/api/types/session_type.rb +1 -2
- data/lib/decidim/api/types/taxonomy_type.rb +15 -0
- data/lib/decidim/api/types/trace_version_type.rb +2 -2
- data/lib/decidim/api/types/translated_field_type.rb +3 -5
- data/lib/decidim/api/types/user_group_type.rb +7 -20
- data/lib/decidim/api/types/user_type.rb +7 -20
- data/lib/decidim/asset_router/storage.rb +6 -11
- data/lib/decidim/assets/tailwind/tailwind.config.js.erb +2 -1
- data/lib/decidim/attachment_attributes.rb +1 -1
- data/lib/decidim/attribute_encryptor.rb +1 -1
- data/lib/decidim/attribute_object/nested_validator.rb +1 -1
- data/lib/decidim/attributes/integer_with_units.rb +27 -0
- data/lib/decidim/attributes/time_with_zone.rb +1 -5
- data/lib/decidim/attributes.rb +2 -0
- data/lib/decidim/authorization_form_builder.rb +0 -7
- data/lib/decidim/coauthorable.rb +1 -1
- data/lib/decidim/command.rb +3 -3
- data/lib/decidim/commands/destroy_resource.rb +5 -1
- data/lib/decidim/commands/resource_handler.rb +2 -2
- data/lib/decidim/commands/restore_resource.rb +45 -0
- data/lib/decidim/commands/soft_delete_resource.rb +63 -0
- data/lib/decidim/component_manifest.rb +7 -0
- data/lib/decidim/content_parsers/blob_parser.rb +8 -10
- data/lib/decidim/content_parsers/user_parser.rb +1 -1
- data/lib/decidim/core/api.rb +2 -0
- data/lib/decidim/core/engine.rb +21 -7
- data/lib/decidim/core/menu.rb +0 -5
- data/lib/decidim/core/seeds.rb +42 -2
- data/lib/decidim/core/test/factories.rb +105 -2
- data/lib/decidim/core/test/shared_examples/admin_resource_gallery_examples.rb +85 -0
- data/lib/decidim/core/test/shared_examples/comments_examples.rb +393 -38
- data/lib/decidim/core/test/shared_examples/components_controller_hide_shared_examples.rb +11 -0
- data/lib/decidim/core/test/shared_examples/components_controller_reorder_shared_examples.rb +21 -0
- data/lib/decidim/core/test/shared_examples/download_open_data_shared_context.rb +36 -0
- data/lib/decidim/core/test/shared_examples/download_open_data_shared_examples.rb +45 -0
- data/lib/decidim/core/test/shared_examples/download_your_data_shared_examples.rb +17 -0
- data/lib/decidim/core/test/shared_examples/etiquette_validator_examples.rb +25 -0
- data/lib/decidim/core/test/shared_examples/follows_examples.rb +43 -0
- data/lib/decidim/core/test/shared_examples/has_taxonomies.rb +94 -0
- data/lib/decidim/core/test/shared_examples/manage_share_tokens_examples.rb +237 -0
- data/lib/decidim/core/test/shared_examples/map_examples.rb +2 -0
- data/lib/decidim/core/test/shared_examples/open_data_exporter_examples.rb +102 -0
- data/lib/decidim/core/test/shared_examples/participatory_space_members_page_examples.rb +46 -0
- data/lib/decidim/core/test/shared_examples/participatory_space_search_examples.rb +98 -0
- data/lib/decidim/core/test/shared_examples/permissions.rb +7 -7
- data/lib/decidim/core/test/shared_examples/preview_with_share_token_examples.rb +94 -0
- data/lib/decidim/core/test/shared_examples/reports_examples.rb +15 -53
- data/lib/decidim/core/test/shared_examples/resource_endorsed_event_examples.rb +2 -2
- data/lib/decidim/core/test/shared_examples/resource_search_examples.rb +75 -69
- data/lib/decidim/core/test/shared_examples/searchable_resources_shared_context.rb +1 -1
- data/lib/decidim/core/test/shared_examples/simple_event.rb +33 -19
- data/lib/decidim/core/test/shared_examples/social_share_examples.rb +7 -14
- data/lib/decidim/core/test/shared_examples/softdeleteable_components_examples.rb +173 -0
- data/lib/decidim/core/test/shared_examples/system_endorse_resource_examples.rb +54 -8
- data/lib/decidim/core/test/shared_examples/taxonomizable_interface_examples.rb +20 -0
- data/lib/decidim/core/test/shared_examples/taxonomizable_resource_examples.rb +37 -0
- data/lib/decidim/core/test/shared_examples/taxonomy_settings.rb +49 -0
- data/lib/decidim/core/test/shared_examples/translated_event_examples.rb +1 -1
- data/lib/decidim/core/test/shared_examples/uncommentable_component_examples.rb +0 -26
- data/lib/decidim/core/test/shared_examples/versions_controller_examples.rb +2 -28
- data/lib/decidim/core/test/shared_examples/with_endorsable_permissions_examples.rb +1 -1
- data/lib/decidim/core/test.rb +9 -5
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/core.rb +58 -0
- data/lib/decidim/download_your_data_serializers/download_your_data_identity_serializer.rb +0 -4
- data/lib/decidim/download_your_data_serializers/download_your_data_participatory_space_private_user_serializer.rb +3 -1
- data/lib/decidim/download_your_data_serializers/download_your_data_report_serializer.rb +2 -1
- data/lib/decidim/download_your_data_serializers/download_your_data_user_serializer.rb +6 -7
- data/lib/decidim/download_your_data_serializers.rb +19 -0
- data/lib/decidim/exporters/csv.rb +6 -0
- data/lib/decidim/exporters/export_manifest.rb +14 -0
- data/lib/decidim/exporters/pdf.rb +26 -22
- data/lib/decidim/filter_form_builder.rb +12 -15
- data/lib/decidim/form_builder.rb +6 -129
- data/lib/decidim/has_category.rb +5 -1
- data/lib/decidim/has_private_users.rb +4 -0
- data/lib/decidim/has_taxonomy_settings.rb +47 -0
- data/lib/decidim/has_upload_validations.rb +1 -1
- data/lib/decidim/legacy_form_builder.rb +118 -0
- data/lib/decidim/maintenance/import_models/application_record.rb +93 -0
- data/lib/decidim/maintenance/import_models/area.rb +82 -0
- data/lib/decidim/maintenance/import_models/area_type.rb +12 -0
- data/lib/decidim/maintenance/import_models/assembly_type.rb +49 -0
- data/lib/decidim/maintenance/import_models/categorization.rb +14 -0
- data/lib/decidim/maintenance/import_models/category.rb +107 -0
- data/lib/decidim/maintenance/import_models/participatory_process_type.rb +21 -0
- data/lib/decidim/maintenance/import_models/scope.rb +163 -0
- data/lib/decidim/maintenance/import_models.rb +19 -0
- data/lib/decidim/maintenance/taxonomy_importer.rb +132 -0
- data/lib/decidim/maintenance/taxonomy_plan.rb +78 -0
- data/lib/decidim/maintenance.rb +12 -0
- data/lib/decidim/map/autocomplete.rb +52 -8
- data/lib/decidim/map/dynamic_map.rb +1 -1
- data/lib/decidim/map/provider/dynamic_map/here.rb +40 -1
- data/lib/decidim/map/provider/geocoding/here.rb +9 -3
- data/lib/decidim/map/provider/static_map/here.rb +0 -34
- data/lib/decidim/map.rb +3 -6
- data/lib/decidim/moderation_tools.rb +16 -19
- data/lib/decidim/newsletter_encryptor.rb +1 -1
- data/lib/decidim/nicknamizable.rb +1 -1
- data/lib/decidim/paddable.rb +1 -1
- data/lib/decidim/participable.rb +10 -10
- data/lib/decidim/participatory_space_user.rb +10 -0
- data/lib/decidim/private_download_helper.rb +15 -0
- data/lib/decidim/record_encryptor.rb +51 -46
- data/lib/decidim/reportable.rb +2 -6
- data/lib/decidim/resourceable.rb +16 -0
- data/lib/decidim/seeds.rb +18 -20
- data/lib/decidim/settings_manifest.rb +34 -1
- data/lib/decidim/soft_deletable.rb +17 -0
- data/lib/decidim/taxonomizable.rb +72 -0
- data/lib/decidim/translatable_attributes.rb +1 -5
- data/lib/decidim/view_model.rb +0 -1
- data/lib/tasks/decidim_download_your_data_tasks.rake +2 -4
- data/lib/tasks/decidim_procfile.rake +6 -0
- data/lib/tasks/decidim_tasks.rake +1 -0
- data/lib/tasks/decidim_taxonomies.rake +155 -0
- data/lib/tasks/upgrade/{decidim_fix_categorization.rake → clean.rake} +25 -18
- data/lib/tasks/upgrade/decidim_active_storage_migration_tasks.rake +1 -1
- data/lib/tasks/upgrade/decidim_fix_nickname_uniqueness.rake +20 -23
- data/lib/tasks/upgrade/migrations.rake +91 -0
- metadata +202 -110
- data/app/cells/decidim/amendable/amenders_list/show.erb +0 -0
- data/app/cells/decidim/content_blocks/base/content.erb +0 -0
- data/app/cells/decidim/endorsers_list/full_endorsers_list.erb +0 -3
- data/app/cells/decidim/endorsers_list_button/content.erb +0 -1
- data/app/cells/decidim/endorsers_list_button_cell.rb +0 -15
- data/app/cells/decidim/report_user_button/already_reported_modal.erb +0 -11
- data/app/cells/decidim/report_user_button/flag_modal.erb +0 -46
- data/app/cells/decidim/report_user_button/show.erb +0 -2
- data/app/cells/decidim/report_user_button_cell.rb +0 -59
- data/app/cells/decidim/scopes_picker/scope_picker_prompt.erb +0 -3
- data/app/cells/decidim/scopes_picker/scope_picker_values.erb +0 -5
- data/app/cells/decidim/scopes_picker/show.erb +0 -14
- data/app/cells/decidim/scopes_picker_cell.rb +0 -92
- data/app/commands/decidim/update_user_interests.rb +0 -41
- data/app/controllers/decidim/scopes_controller.rb +0 -84
- data/app/controllers/decidim/user_interests_controller.rb +0 -30
- data/app/forms/decidim/user_interest_scope_form.rb +0 -25
- data/app/forms/decidim/user_interests_form.rb +0 -17
- data/app/helpers/decidim/categories_helper.rb +0 -26
- data/app/helpers/decidim/scopes_helper.rb +0 -105
- data/app/jobs/decidim/hide_child_resources_job.rb +0 -24
- data/app/packs/images/decidim/vendor/leaflet/layers-2x.png +0 -0
- data/app/packs/images/decidim/vendor/leaflet/layers.png +0 -0
- data/app/packs/images/decidim/vendor/leaflet/marker-icon-2x.png +0 -0
- data/app/packs/images/decidim/vendor/leaflet/marker-icon.png +0 -0
- data/app/packs/images/decidim/vendor/leaflet/marker-shadow.png +0 -0
- data/app/packs/stylesheets/decidim/_hashtags.scss +0 -5
- data/app/packs/stylesheets/decidim/legacy/MarkerCluster.Default.scss +0 -67
- data/app/packs/stylesheets/decidim/legacy/MarkerCluster.scss +0 -18
- data/app/packs/stylesheets/decidim/legacy/leaflet.scss +0 -705
- data/app/validators/scope_belongs_to_component_validator.rb +0 -16
- data/app/views/decidim/account/_user_groups.html.erb +0 -0
- data/app/views/decidim/scopes/_scopes_picker_input.html.erb +0 -19
- data/app/views/decidim/scopes/picker.html.erb +0 -53
- data/app/views/decidim/shared/_comments.html.erb +0 -0
- data/app/views/decidim/shared/_share_modal.html.erb +0 -26
- data/app/views/decidim/shared/_tags.html.erb +0 -1
- data/app/views/decidim/user_interests/_areas.html.erb +0 -14
- data/app/views/decidim/user_interests/_scopes.html.erb +0 -22
- data/app/views/decidim/user_interests/show.html.erb +0 -22
- data/config/initializers/foundation_rails_helper.rb +0 -4
- data/config/locales/ca-IT.yml +0 -2111
- data/lib/decidim/core/test/shared_examples/has_category.rb +0 -38
- data/lib/decidim/core/test/shared_examples/has_scope.rb +0 -11
- data/lib/decidim/core/test/shared_examples/manage_component_share_tokens.rb +0 -83
- data/lib/decidim/core/test/shared_examples/preview_component_with_share_token_examples.rb +0 -49
- data/lib/decidim/core/test/shared_examples/scope_helper_examples.rb +0 -93
- data/lib/decidim/seven_zip_wrapper.rb +0 -29
- data/lib/tasks/upgrade/clean_hidden_resources.rake +0 -33
data/config/locales/en.yml
CHANGED
@@ -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:
|
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
|
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:
|
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:
|
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
|
-
|
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?:
|
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:
|
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
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
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:
|
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:
|
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
|
-
|
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
|
-
|
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:
|
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,15 +1719,20 @@ 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
1733
|
hide:
|
1433
|
-
content: Reported content
|
1434
|
-
details: Details
|
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
1738
|
report:
|
@@ -1453,25 +1750,16 @@ en:
|
|
1453
1750
|
subject: A resource has been reported
|
1454
1751
|
reports:
|
1455
1752
|
create:
|
1456
|
-
error:
|
1753
|
+
error: There was a problem creating the report. Please, try it again.
|
1457
1754
|
success: The report has been created successfully and it will be reviewed by an admin.
|
1458
|
-
|
1459
|
-
|
1755
|
+
resource:
|
1756
|
+
controls_label: Resource controls
|
1460
1757
|
resource_endorsements:
|
1461
1758
|
create:
|
1462
1759
|
error: There was a problem during the endorsement action.
|
1463
1760
|
scopes:
|
1464
1761
|
global: Global scope
|
1465
|
-
picker:
|
1466
|
-
cancel: Cancel
|
1467
|
-
change: Change selected scope
|
1468
|
-
choose: Select
|
1469
|
-
currently_selected: Currently selected scope
|
1470
|
-
title: Select %{field}
|
1471
1762
|
prompt: Select a scope
|
1472
|
-
scopes: Scopes
|
1473
|
-
scopes_picker_input:
|
1474
|
-
select_scope: 'Select a scope (currently: %{current})'
|
1475
1763
|
search:
|
1476
1764
|
name: Search
|
1477
1765
|
results: Search results
|
@@ -1502,6 +1790,7 @@ en:
|
|
1502
1790
|
close_modal: Close modal
|
1503
1791
|
ok: OK
|
1504
1792
|
title: Confirm
|
1793
|
+
confirm_unload: This page contains unsaved changes. Are you sure you want to leave this page?
|
1505
1794
|
embed:
|
1506
1795
|
title: Embedded video content
|
1507
1796
|
extended_navigation_bar:
|
@@ -1525,13 +1814,14 @@ en:
|
|
1525
1814
|
flag_user_modal:
|
1526
1815
|
already_reported: This content is already reported and it will be reviewed by an admin.
|
1527
1816
|
block: Block this participant
|
1528
|
-
|
1817
|
+
close: Close
|
1818
|
+
description: What is inappropriate about the user?
|
1529
1819
|
does_not_belong: Contains illegal activity, suicide threats, personal information, or something else you think does not belong on %{organization_name}.
|
1530
1820
|
hide: Hide all their contents
|
1531
1821
|
offensive: Contains racism, sexism, slurs, personal attacks, death threats, suicide requests or any form of hate speech.
|
1532
1822
|
report: Report
|
1533
1823
|
spam: Contains clickbait, advertising, scams or script bots.
|
1534
|
-
title: Report inappropriate
|
1824
|
+
title: Report inappropriate User
|
1535
1825
|
floating_help:
|
1536
1826
|
help: Help
|
1537
1827
|
follow_button:
|
@@ -1541,12 +1831,6 @@ en:
|
|
1541
1831
|
sign_up: Create an account
|
1542
1832
|
mentions_modal:
|
1543
1833
|
remove_recipient: Remove recipient %{name}
|
1544
|
-
participatory_space_filters:
|
1545
|
-
filters:
|
1546
|
-
area: Area
|
1547
|
-
areas: Areas
|
1548
|
-
scope: Scope
|
1549
|
-
select_an_area: Select an area
|
1550
1834
|
progress: Progress
|
1551
1835
|
public_participation:
|
1552
1836
|
public_participation: Show my attendance publicly
|
@@ -1574,10 +1858,12 @@ en:
|
|
1574
1858
|
no_stats: There are no statistics yet.
|
1575
1859
|
pages_count: Pages
|
1576
1860
|
participants_count: Participants
|
1861
|
+
surveys_count: Surveys
|
1577
1862
|
users_count: Participants
|
1578
1863
|
tags:
|
1579
|
-
|
1580
|
-
|
1864
|
+
filter_results_for_taxonomy: 'Filter results for: %{resource}'
|
1865
|
+
taxonomies:
|
1866
|
+
prompt: Please select an option
|
1581
1867
|
translation_bar:
|
1582
1868
|
help_text: "<strong>Warning:</strong> Content might be automatically translated and not be 100% accurate."
|
1583
1869
|
show_original: Show original text
|
@@ -1600,15 +1886,6 @@ en:
|
|
1600
1886
|
send: Send
|
1601
1887
|
update:
|
1602
1888
|
error: Message not sent. Try again later
|
1603
|
-
user_interests:
|
1604
|
-
show:
|
1605
|
-
my_interests: My interests
|
1606
|
-
no_scopes: This organization does not have any scope yet!
|
1607
|
-
select_your_interests: Select the topics you are interested in to receive events related to them in your profile Timeline tab.
|
1608
|
-
update_my_interests: Update my interests
|
1609
|
-
update:
|
1610
|
-
error: There was a problem updating your interests.
|
1611
|
-
success: Your interests have been successfully updated.
|
1612
1889
|
user_report_mailer:
|
1613
1890
|
notify:
|
1614
1891
|
body_1: User %{user} has been reported by %{token}
|
@@ -1731,6 +2008,7 @@ en:
|
|
1731
2008
|
message: Your account has been locked due to an excessive amount of unsuccessful log in attempts.
|
1732
2009
|
subject: Unlock instructions
|
1733
2010
|
omniauth_callbacks:
|
2011
|
+
add_tos_errors: Terms of service must be accepted in order to create an account.
|
1734
2012
|
failure: Could not authenticate you from %{kind} because "%{reason}".
|
1735
2013
|
success: Successfully authenticated from %{kind} account.
|
1736
2014
|
passwords:
|
@@ -1891,7 +2169,7 @@ en:
|
|
1891
2169
|
not_found: could not be found. Have you created an account previously?
|
1892
2170
|
not_locked: was not locked
|
1893
2171
|
not_saved:
|
1894
|
-
one: 'There
|
2172
|
+
one: 'There has been an error processing your request:'
|
1895
2173
|
other: 'There were multiple errors when processing your request:'
|
1896
2174
|
too_many_marks: is using too many consecutive punctuation marks (e.g. ! and ?)
|
1897
2175
|
too_much_caps: is using too many capital letters (over 25% of the text)
|
@@ -1969,13 +2247,15 @@ en:
|
|
1969
2247
|
data_consent_settings: Cookie settings
|
1970
2248
|
decidim_logo: Decidim Logo
|
1971
2249
|
decidim_title: Decidim
|
1972
|
-
download_open_data: Download Open Data files
|
1973
2250
|
log_in: Log in
|
1974
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
|
1975
2253
|
resources: Resources
|
1976
2254
|
sign_up: Create an account
|
1977
2255
|
terms_of_service: Terms of Service
|
1978
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?
|
1979
2259
|
log_in: Log in
|
1980
2260
|
main_menu: Main menu
|
1981
2261
|
user_menu: User menu
|
@@ -2018,7 +2298,6 @@ en:
|
|
2018
2298
|
authorizations: Authorizations
|
2019
2299
|
delete_my_account: Delete my account
|
2020
2300
|
my_data: My data
|
2021
|
-
my_interests: My interests
|
2022
2301
|
notifications_settings: Notifications settings
|
2023
2302
|
profile: Profile
|
2024
2303
|
title: Participant settings
|