decidim-core 0.26.7 → 0.27.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of decidim-core might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/app/cells/decidim/amendable/announcement_cell.rb +4 -9
- data/app/cells/decidim/announcement_cell.rb +2 -2
- data/app/cells/decidim/author_cell.rb +1 -1
- data/app/cells/decidim/card_m_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/cta/show.erb +1 -1
- data/app/cells/decidim/content_blocks/cta_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/footer_sub_hero/show.erb +1 -1
- data/app/cells/decidim/content_blocks/hero/show.erb +2 -2
- data/app/cells/decidim/content_blocks/highlighted_content_banner/show.erb +5 -5
- data/app/cells/decidim/content_blocks/highlighted_elements_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/how_to_participate/show.erb +1 -1
- data/app/cells/decidim/content_blocks/last_activity/show.erb +1 -1
- data/app/cells/decidim/content_blocks/last_activity_cell.rb +3 -3
- data/app/cells/decidim/content_blocks/stats_cell.rb +4 -5
- data/app/cells/decidim/content_blocks/sub_hero/show.erb +1 -1
- data/app/cells/decidim/content_blocks/sub_hero_cell.rb +1 -1
- data/app/cells/decidim/data_consent/category.erb +64 -0
- data/app/cells/decidim/data_consent/dialog.erb +29 -0
- data/app/cells/decidim/data_consent/modal.erb +39 -0
- data/app/cells/decidim/data_consent/show.erb +3 -0
- data/app/cells/decidim/data_consent_cell.rb +21 -0
- data/app/cells/decidim/follow_button_cell.rb +5 -7
- data/app/cells/decidim/newsletter_templates/base_cell.rb +0 -8
- data/app/cells/decidim/newsletter_templates/basic_only_text/show.erb +4 -4
- data/app/cells/decidim/newsletter_templates/image_text_cta/show.erb +4 -4
- data/app/cells/decidim/profile_sidebar_cell.rb +1 -1
- data/app/cells/decidim/search_results_cell.rb +1 -1
- data/app/cells/decidim/tos_page/refuse_btn_modal.erb +1 -1
- data/app/cells/decidim/upload_modal/files.erb +52 -0
- data/app/cells/decidim/upload_modal/modal.erb +49 -0
- data/app/cells/decidim/upload_modal/show.erb +3 -0
- data/app/cells/decidim/upload_modal_cell.rb +205 -0
- data/app/cells/decidim/user_conversation/reply.erb +1 -1
- data/app/cells/decidim/user_conversations/add_conversation_users.erb +5 -3
- data/app/cells/decidim/version_cell.rb +2 -13
- data/app/cells/decidim/versions_list_cell.rb +2 -13
- data/app/cells/decidim/versions_list_item_cell.rb +2 -13
- data/app/commands/decidim/accept_group_invitation.rb +1 -1
- data/app/commands/decidim/accept_user_group_join_request.rb +1 -1
- data/app/commands/decidim/amendable/accept.rb +1 -1
- data/app/commands/decidim/amendable/create_draft.rb +1 -1
- data/app/commands/decidim/amendable/destroy_draft.rb +1 -1
- data/app/commands/decidim/amendable/promote.rb +1 -1
- data/app/commands/decidim/amendable/publish_draft.rb +1 -1
- data/app/commands/decidim/amendable/reject.rb +1 -1
- data/app/commands/decidim/amendable/update_draft.rb +1 -1
- data/app/commands/decidim/amendable/withdraw.rb +1 -1
- data/app/commands/decidim/attachment_methods.rb +3 -2
- data/app/commands/decidim/create_editor_image.rb +1 -1
- data/app/commands/decidim/create_follow.rb +1 -1
- data/app/commands/decidim/create_omniauth_registration.rb +2 -3
- data/app/commands/decidim/create_registration.rb +1 -2
- data/app/commands/decidim/create_report.rb +1 -1
- data/app/commands/decidim/create_user_group.rb +2 -2
- data/app/commands/decidim/create_user_report.rb +5 -3
- data/app/commands/decidim/delete_follow.rb +1 -1
- data/app/commands/decidim/demote_membership.rb +1 -1
- data/app/commands/decidim/destroy_account.rb +1 -1
- data/app/commands/decidim/endorse_resource.rb +1 -1
- data/app/commands/decidim/gallery_methods.rb +45 -10
- data/app/commands/decidim/invite_user.rb +1 -3
- data/app/commands/decidim/invite_user_again.rb +1 -1
- data/app/commands/decidim/invite_user_to_group.rb +1 -1
- data/app/commands/decidim/join_user_group.rb +1 -1
- data/app/commands/decidim/leave_user_group.rb +8 -2
- data/app/commands/decidim/messaging/reply_to_conversation.rb +2 -2
- data/app/commands/decidim/messaging/start_conversation.rb +2 -2
- data/app/commands/decidim/multiple_attachments_methods.rb +44 -5
- data/app/commands/decidim/promote_membership.rb +1 -1
- data/app/commands/decidim/reject_group_invitation.rb +1 -1
- data/app/commands/decidim/reject_user_group_join_request.rb +1 -1
- data/app/commands/decidim/remove_user_from_group.rb +1 -1
- data/app/commands/decidim/resend_confirmation_instructions.rb +18 -0
- data/app/commands/decidim/search.rb +10 -9
- data/app/commands/decidim/unendorse_resource.rb +2 -2
- data/app/commands/decidim/unsubscribe_settings.rb +1 -1
- data/app/commands/decidim/update_account.rb +2 -2
- data/app/commands/decidim/update_notifications_settings.rb +3 -2
- data/app/commands/decidim/update_password.rb +31 -0
- data/app/commands/decidim/update_user_group.rb +2 -2
- data/app/commands/decidim/update_user_interests.rb +1 -1
- data/app/commands/decidim/validate_upload.rb +15 -0
- data/app/controllers/concerns/decidim/devise_controllers.rb +0 -1
- data/app/controllers/concerns/decidim/filter_resource.rb +23 -24
- data/app/controllers/concerns/decidim/force_authentication.rb +1 -2
- data/app/controllers/concerns/decidim/http_caching_disabler.rb +1 -1
- data/app/controllers/concerns/decidim/needs_password_change.rb +43 -0
- data/app/controllers/concerns/decidim/needs_tos_accepted.rb +3 -3
- data/app/controllers/concerns/decidim/orderable.rb +1 -1
- data/app/controllers/concerns/decidim/participatory_space_context.rb +2 -2
- data/app/controllers/concerns/decidim/resource_versions_concern.rb +0 -4
- data/app/controllers/decidim/account_controller.rb +45 -0
- data/app/controllers/decidim/application_controller.rb +1 -1
- data/app/controllers/decidim/devise/invitations_controller.rb +4 -9
- data/app/controllers/decidim/devise/passwords_controller.rb +33 -0
- data/app/controllers/decidim/devise/registrations_controller.rb +3 -5
- data/app/controllers/decidim/devise/sessions_controller.rb +2 -0
- data/app/controllers/decidim/{data_portability_controller.rb → download_your_data_controller.rb} +8 -8
- data/app/controllers/decidim/groups_controller.rb +5 -5
- data/app/controllers/decidim/last_activities_controller.rb +7 -9
- data/app/controllers/decidim/links_controller.rb +11 -10
- data/app/controllers/decidim/manifests_controller.rb +11 -0
- data/app/controllers/decidim/newsletters_controller.rb +1 -1
- data/app/controllers/decidim/notifications_subscriptions_controller.rb +16 -0
- data/app/controllers/decidim/offline_controller.rb +7 -0
- data/app/controllers/decidim/profiles_controller.rb +2 -2
- data/app/controllers/decidim/searches_controller.rb +4 -3
- data/app/controllers/decidim/short_links_controller.rb +35 -0
- data/app/controllers/decidim/upload_validations_controller.rb +44 -0
- data/app/controllers/decidim/user_activities_controller.rb +32 -16
- data/app/controllers/decidim/user_interests_controller.rb +0 -2
- data/app/controllers/decidim/user_timeline_controller.rb +6 -8
- data/app/events/decidim/change_nickname_event.rb +21 -0
- data/app/events/decidim/resource_endorsed_event.rb +1 -2
- data/app/forms/decidim/account_form.rb +3 -3
- data/app/forms/decidim/amendable/form.rb +1 -2
- data/app/forms/decidim/form.rb +1 -1
- data/app/forms/decidim/messaging/conversation_form.rb +1 -1
- data/app/forms/decidim/notifications_settings_form.rb +8 -2
- data/app/forms/decidim/password_form.rb +10 -0
- data/app/forms/decidim/registration_form.rb +2 -2
- data/app/forms/decidim/upload_validation_form.rb +54 -0
- data/app/forms/decidim/user_group_form.rb +1 -1
- data/app/forms/decidim/user_interest_scope_form.rb +1 -1
- data/app/forms/decidim/user_interests_form.rb +1 -1
- data/app/forms/translatable_presence_validator.rb +2 -2
- data/app/forms/url_validator.rb +1 -1
- data/app/helpers/decidim/application_helper.rb +2 -2
- data/app/helpers/decidim/attachments_helper.rb +1 -1
- data/app/helpers/decidim/cells_helper.rb +0 -1
- data/app/helpers/decidim/cells_paginate_helper.rb +1 -1
- data/app/helpers/decidim/datalist_select_helper.rb +40 -0
- data/app/helpers/decidim/decidim_form_helper.rb +1 -1
- data/app/helpers/decidim/external_domain_helper.rb +3 -14
- data/app/helpers/decidim/filters_helper.rb +1 -5
- data/app/helpers/decidim/followable_helper.rb +1 -1
- data/app/helpers/decidim/icon_helper.rb +4 -4
- data/app/helpers/decidim/layout_helper.rb +15 -1
- data/app/helpers/decidim/map_helper.rb +12 -8
- data/app/helpers/decidim/meta_tags_helper.rb +0 -2
- data/app/helpers/decidim/newsletters_helper.rb +0 -1
- data/app/helpers/decidim/notifications_settings_helper.rb +15 -0
- data/app/helpers/decidim/passwords_helper.rb +41 -0
- data/app/helpers/decidim/sanitize_helper.rb +6 -15
- data/app/helpers/decidim/searches_helper.rb +6 -6
- data/app/helpers/decidim/short_link_helper.rb +28 -0
- data/app/helpers/decidim/translations_helper.rb +2 -2
- data/app/jobs/decidim/{data_portability_export_job.rb → download_your_data_export_job.rb} +5 -5
- data/app/jobs/decidim/email_notifications_digest_generator_job.rb +21 -0
- data/app/jobs/decidim/notification_generator_for_recipient_job.rb +5 -3
- data/app/jobs/decidim/reminder_generator_job.rb +12 -0
- data/app/jobs/decidim/resend_confirmation_instructions_job.rb +11 -0
- data/app/jobs/decidim/user_report_job.rb +2 -2
- data/app/mailers/concerns/decidim/multitenant_asset_host.rb +11 -3
- data/app/mailers/decidim/application_mailer.rb +1 -1
- data/app/mailers/decidim/block_user_mailer.rb +8 -7
- data/app/mailers/decidim/export_mailer.rb +2 -2
- data/app/mailers/decidim/newsletter_mailer.rb +5 -12
- data/app/mailers/decidim/newsletters_opt_in_mailer.rb +7 -5
- data/app/mailers/decidim/notification_mailer.rb +0 -1
- data/app/mailers/decidim/notifications_digest_mailer.rb +23 -0
- data/app/mailers/decidim/user_report_mailer.rb +10 -11
- data/app/models/decidim/action_log.rb +95 -11
- data/app/models/decidim/amendment.rb +0 -1
- data/app/models/decidim/area.rb +1 -2
- data/app/models/decidim/area_type.rb +5 -0
- data/app/models/decidim/attachment.rb +6 -0
- data/app/models/decidim/attachment_collection.rb +5 -0
- data/app/models/decidim/category.rb +9 -4
- data/app/models/decidim/coauthorship.rb +0 -2
- data/app/models/decidim/contextual_help_section.rb +5 -1
- data/app/models/decidim/follow.rb +2 -2
- data/app/models/decidim/gamification/badge_score.rb +0 -1
- data/app/models/decidim/identity.rb +2 -2
- data/app/models/decidim/messaging/conversation.rb +4 -4
- data/app/models/decidim/messaging/message.rb +1 -2
- data/app/models/decidim/messaging/participation.rb +0 -2
- data/app/models/decidim/messaging/receipt.rb +0 -2
- data/app/models/decidim/newsletter.rb +0 -28
- data/app/models/decidim/notification.rb +5 -2
- data/app/models/decidim/oauth_application.rb +12 -1
- data/app/models/decidim/organization.rb +7 -7
- data/app/models/decidim/participatory_space_private_user.rb +4 -2
- data/app/models/decidim/permission_action.rb +1 -0
- data/app/models/decidim/reminder.rb +10 -0
- data/app/models/decidim/reminder_delivery.rb +7 -0
- data/app/models/decidim/reminder_record.rb +29 -0
- data/app/models/decidim/report.rb +2 -2
- data/app/models/decidim/scope.rb +3 -4
- data/app/models/decidim/scope_type.rb +1 -24
- data/app/models/decidim/share_token.rb +0 -2
- data/app/models/decidim/short_link.rb +162 -0
- data/app/models/decidim/user.rb +36 -6
- data/app/models/decidim/user_base_entity.rb +1 -4
- data/app/models/decidim/user_block.rb +2 -2
- data/app/models/decidim/user_group.rb +4 -4
- data/app/models/decidim/user_moderation.rb +0 -2
- data/app/models/decidim/user_report.rb +2 -2
- data/app/packs/entrypoints/decidim_core.js +2 -2
- data/app/packs/entrypoints/decidim_sw.js +1 -0
- data/app/packs/images/decidim/gamification/badges/decidim_gamification_badges_invitations.svg +1 -0
- data/app/packs/src/decidim/autocomplete.js +298 -0
- data/app/packs/src/decidim/cookie_consent/consent_manager.js +133 -0
- data/app/packs/src/decidim/cookie_consent/cookie_consent.js +103 -0
- data/app/packs/src/decidim/datalist_select.js +36 -0
- data/app/packs/src/decidim/direct_uploads/upload_field.js +117 -0
- data/app/packs/src/decidim/direct_uploads/upload_modal.js +264 -0
- data/app/packs/src/decidim/direct_uploads/upload_utility.js +49 -0
- data/app/packs/src/decidim/direct_uploads/uploader.js +89 -0
- data/app/packs/src/decidim/editor/linebreak_module.js +8 -0
- data/app/packs/src/decidim/editor.js +33 -70
- data/app/packs/src/decidim/external_domain_warning.js +1 -1
- data/app/packs/src/decidim/external_link.js +14 -3
- data/app/packs/src/decidim/external_link.test.js +64 -0
- data/app/packs/src/decidim/form_filter.component.test.js +5 -148
- data/app/packs/src/decidim/form_filter.js +4 -26
- data/app/packs/src/decidim/geocoding.js +10 -35
- data/app/packs/src/decidim/identity_selector_dialog.js +1 -1
- data/app/packs/src/decidim/impersonation.js +3 -3
- data/app/packs/src/decidim/input_character_counter.js +177 -7
- data/app/packs/src/decidim/input_multiple_mentions.js +87 -187
- data/app/packs/src/decidim/map/icon.js +2 -1
- data/app/packs/src/decidim/map/svg-icon.js +248 -0
- data/app/packs/src/decidim/security/selfxss_warning.js +5 -1
- data/app/packs/src/decidim/session_timeouter.js +15 -15
- data/app/packs/src/decidim/sw/a2hs.js +28 -0
- data/app/packs/src/decidim/sw/index.js +3 -0
- data/app/packs/src/decidim/sw/loader.js +18 -0
- data/app/packs/src/decidim/sw/push-permissions.js +87 -0
- data/app/packs/src/decidim/sw/sw.js +80 -0
- data/app/packs/src/decidim/vizzs/areachart.js +33 -28
- data/app/packs/src/decidim/vizzs/linechart.js +23 -18
- data/app/packs/src/decidim/vizzs/rowchart.js +15 -11
- data/app/packs/stylesheets/decidim/_editor.scss +0 -129
- data/app/packs/stylesheets/decidim/email.scss +66 -7
- data/app/packs/stylesheets/decidim/extras/_quill.scss +6 -0
- data/app/packs/stylesheets/decidim/layouts/_user.scss +8 -0
- data/app/packs/stylesheets/decidim/modules/_autocomplete.scss +99 -0
- data/app/packs/stylesheets/decidim/modules/_buttons.scss +6 -10
- data/app/packs/stylesheets/decidim/modules/_cards.scss +1 -3
- data/app/packs/stylesheets/decidim/modules/_comments.scss +0 -26
- data/app/packs/stylesheets/decidim/modules/_cookie-consent.scss +115 -0
- data/app/packs/stylesheets/decidim/modules/_footer.scss +4 -0
- data/app/packs/stylesheets/decidim/modules/_forms.scss +0 -5
- data/app/packs/stylesheets/decidim/modules/_input-multiple-mentions.scss +29 -2
- data/app/packs/stylesheets/decidim/modules/_modules.scss +3 -1
- data/app/packs/stylesheets/decidim/modules/_reveal.scss +15 -0
- data/app/packs/stylesheets/decidim/modules/_upload_modal.scss +143 -0
- data/app/packs/stylesheets/decidim/utils/_fontface.scss +3 -0
- data/app/packs/stylesheets/decidim/vizzs/_linechart.scss +2 -2
- data/app/packs/stylesheets/decidim/vizzs/_rowchart.scss +2 -2
- data/app/permissions/decidim/permissions.rb +4 -8
- data/app/presenters/decidim/admin_log/area_type_presenter.rb +34 -0
- data/app/presenters/decidim/admin_log/attachment_collection_presenter.rb +35 -0
- data/app/presenters/decidim/admin_log/attachment_presenter.rb +27 -0
- data/app/presenters/decidim/admin_log/category_presenter.rb +36 -0
- data/app/presenters/decidim/admin_log/component_presenter.rb +35 -3
- data/app/presenters/decidim/admin_log/contextual_help_section_presenter.rb +33 -0
- data/app/presenters/decidim/admin_log/organization_presenter.rb +9 -4
- data/app/presenters/decidim/admin_log/scope_type_presenter.rb +34 -0
- data/app/presenters/decidim/admin_log/user_group_presenter.rb +1 -1
- data/app/presenters/decidim/admin_log/user_moderation_presenter.rb +1 -1
- data/app/presenters/decidim/home_stats_presenter.rb +8 -13
- data/app/presenters/decidim/log/base_presenter.rb +1 -1
- data/app/presenters/decidim/menu_item_presenter.rb +1 -1
- data/app/presenters/decidim/metric_charts_presenter.rb +7 -1
- data/app/presenters/decidim/nil_presenter.rb +3 -1
- data/app/presenters/decidim/notification_presenter.rb +1 -1
- data/app/presenters/decidim/notification_to_mailer_presenter.rb +39 -0
- data/app/presenters/decidim/notifications_digest_presenter.rb +42 -0
- data/app/presenters/decidim/official_author_presenter.rb +4 -0
- data/app/presenters/decidim/organization_presenter.rb +22 -0
- data/app/presenters/decidim/push_notification_presenter.rb +24 -0
- data/app/presenters/decidim/stats_presenter.rb +9 -8
- data/app/presenters/decidim/user_group_presenter.rb +1 -1
- data/app/presenters/decidim/user_presenter.rb +5 -13
- data/app/presenters/decidim/validation_errors_presenter.rb +1 -1
- data/app/queries/decidim/messaging/user_conversations.rb +1 -1
- data/app/queries/decidim/metric_manage.rb +1 -1
- data/app/queries/decidim/own_activities.rb +11 -0
- data/app/queries/decidim/participatory_processes_with_user_role.rb +1 -1
- data/app/{services/decidim/activity_search.rb → queries/decidim/public_activities.rb} +35 -78
- data/app/queries/decidim/public_components.rb +1 -1
- data/app/queries/decidim/similar_emendations.rb +1 -1
- data/app/queries/decidim/stats_users_count.rb +1 -1
- data/app/queries/decidim/user_groups/accepted_memberships.rb +1 -1
- data/app/queries/decidim/user_groups/accepted_user_groups.rb +1 -1
- data/app/queries/decidim/user_groups/accepted_users.rb +1 -1
- data/app/queries/decidim/user_groups/admin_memberships.rb +1 -1
- data/app/queries/decidim/user_groups/invited_memberships.rb +1 -1
- data/app/queries/decidim/user_groups/manageable_user_groups.rb +1 -1
- data/app/queries/decidim/user_groups/member_memberships.rb +1 -1
- data/app/scrubbers/decidim/user_input_scrubber.rb +5 -32
- data/app/services/decidim/{data_portability_exporter.rb → download_your_data_exporter.rb} +6 -6
- data/app/services/decidim/email_notification_generator.rb +2 -2
- data/app/services/decidim/engine_resolver.rb +66 -0
- data/app/services/decidim/events_manager.rb +1 -1
- data/app/services/decidim/iframe_disabler.rb +31 -0
- data/app/services/decidim/notification_generator_for_recipient.rb +1 -1
- data/app/services/decidim/notifications_digest_sending_decider.rb +18 -0
- data/app/services/decidim/notifications_subscriptions_persistor.rb +37 -0
- data/app/services/decidim/open_data_exporter.rb +1 -1
- data/app/services/decidim/resource_search.rb +17 -164
- data/app/services/decidim/send_push_notification.rb +59 -0
- data/app/services/decidim/traceability.rb +1 -2
- data/app/uploaders/decidim/application_uploader.rb +2 -12
- data/app/uploaders/decidim/cw/attachment_uploader.rb +1 -1
- data/app/uploaders/decidim/cw/{data_portability_uploader.rb → download_your_data_uploader.rb} +3 -3
- data/app/uploaders/decidim/cw/image_uploader.rb +2 -2
- data/app/uploaders/decidim/organization_favicon_uploader.rb +3 -2
- data/app/validators/etiquette_validator.rb +3 -7
- data/app/validators/passthru_validator.rb +29 -21
- data/app/validators/password_validator.rb +25 -4
- data/app/validators/uploader_image_dimensions_validator.rb +1 -1
- data/app/views/decidim/account/_account_notification.js.erb +20 -0
- data/app/views/decidim/account/_password_fields.html.erb +2 -2
- data/app/views/decidim/account/cancel_email_change.js.erb +6 -0
- data/app/views/decidim/account/resend_confirmation_instructions.erb +1 -0
- data/app/views/decidim/account/show.html.erb +19 -6
- data/app/views/decidim/application/{_attachments.html.erb → _attachments.erb} +2 -2
- data/app/views/decidim/application/_collection.html.erb +1 -1
- data/app/views/decidim/application/{_documents.html.erb → _documents.erb} +2 -2
- data/app/views/decidim/devise/confirmations/new.html.erb +1 -1
- data/app/views/decidim/devise/invitations/edit.html.erb +3 -4
- data/app/views/decidim/devise/omniauth_registrations/new.html.erb +3 -3
- data/app/views/decidim/devise/passwords/edit.html.erb +7 -5
- data/app/views/decidim/devise/passwords/new.html.erb +1 -1
- data/app/views/decidim/devise/registrations/edit.html.erb +41 -0
- data/app/views/decidim/devise/registrations/new.html.erb +5 -5
- data/app/views/decidim/devise/sessions/new.html.erb +2 -2
- data/app/views/decidim/{data_portability → download_your_data}/show.html.erb +2 -2
- data/app/views/decidim/export_mailer/download_your_data_export.html.erb +7 -0
- data/app/views/decidim/last_activities/index.html.erb +1 -1
- data/app/views/decidim/links/_modal.html.erb +1 -1
- data/app/views/decidim/links/new.html.erb +1 -1
- data/app/views/decidim/manifests/show.json.erb +31 -0
- data/app/views/decidim/messaging/conversations/_add_conversation_users.html.erb +5 -3
- data/app/views/decidim/messaging/conversations/_conversation.html.erb +5 -1
- data/app/views/decidim/messaging/conversations/_reply.html.erb +1 -1
- data/app/views/decidim/messaging/conversations/_start.html.erb +1 -3
- data/app/views/decidim/messaging/conversations/create.js.erb +1 -0
- data/app/views/decidim/newsletter_mailer/newsletter.html.erb +3 -3
- data/app/views/decidim/newsletters/show.html.erb +1 -1
- data/app/views/decidim/notification_mailer/event_received.html.erb +1 -1
- data/app/views/decidim/notifications_digest_mailer/_email_content.html.erb +11 -0
- data/app/views/decidim/notifications_digest_mailer/digest_mail.erb +27 -0
- data/app/views/decidim/notifications_settings/show.html.erb +79 -52
- data/app/views/decidim/offline/show.html.erb +9 -0
- data/app/views/decidim/pages/_standalone.html.erb +1 -1
- data/app/views/decidim/pages/_tabbed.html.erb +1 -1
- data/app/views/decidim/reported_mailer/hide.html.erb +1 -1
- data/app/views/decidim/reported_mailer/report.html.erb +1 -1
- data/app/views/decidim/scopes/picker.html.erb +1 -1
- data/app/views/decidim/searches/_filters.html.erb +2 -2
- data/app/views/decidim/shared/participatory_space_filters/_filters.html.erb +3 -3
- data/app/views/decidim/user_interests/show.html.erb +13 -11
- data/app/views/decidim/user_report_mailer/notify.html.erb +10 -3
- data/app/views/devise/mailer/confirmation_instructions.html.erb +3 -1
- data/app/views/layouts/decidim/_application.html.erb +6 -3
- data/app/views/layouts/decidim/_cookie_warning.html.erb +8 -8
- data/app/views/layouts/decidim/_decidim_javascript.html.erb +12 -0
- data/app/views/layouts/decidim/_head.html.erb +4 -2
- data/app/views/layouts/decidim/_js_configuration.html.erb +5 -1
- data/app/views/layouts/decidim/_mailer_logo.html.erb +2 -2
- data/app/views/layouts/decidim/_main_footer.html.erb +1 -0
- data/app/views/layouts/decidim/_offline_banner.html.erb +11 -0
- data/app/views/layouts/decidim/newsletter_base.html.erb +2 -2
- data/app/views/layouts/decidim/widget.html.erb +2 -2
- data/config/assets.rb +1 -0
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +75 -455
- data/config/locales/bg.yml +46 -37
- data/config/locales/ca.yml +239 -74
- data/config/locales/cs.yml +249 -71
- data/config/locales/da.yml +1 -3
- data/config/locales/de.yml +55 -83
- data/config/locales/el.yml +46 -36
- data/config/locales/en.yml +220 -55
- data/config/locales/eo.yml +5 -8
- data/config/locales/es-MX.yml +228 -63
- data/config/locales/es-PY.yml +228 -63
- data/config/locales/es.yml +239 -74
- data/config/locales/et.yml +1 -3
- data/config/locales/eu.yml +122 -145
- data/config/locales/fi-plain.yml +226 -40
- data/config/locales/fi.yml +223 -58
- data/config/locales/fr-CA.yml +212 -61
- data/config/locales/fr.yml +218 -67
- data/config/locales/ga-IE.yml +10 -9
- data/config/locales/gl.yml +96 -31
- data/config/locales/hr.yml +1 -3
- data/config/locales/hu.yml +94 -237
- data/config/locales/id-ID.yml +47 -36
- data/config/locales/is-IS.yml +9 -19
- data/config/locales/it.yml +57 -37
- data/config/locales/ja.yml +234 -65
- data/config/locales/ko.yml +1 -0
- data/config/locales/lb.yml +46 -32
- data/config/locales/lt.yml +1 -1743
- data/config/locales/lv.yml +44 -33
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +74 -37
- data/config/locales/no.yml +74 -36
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +124 -34
- data/config/locales/pt-BR.yml +51 -36
- data/config/locales/pt.yml +47 -33
- data/config/locales/ro-RO.yml +49 -42
- data/config/locales/ru.yml +23 -32
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +49 -38
- data/config/locales/sl.yml +1 -1
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +1 -2
- data/config/locales/sv.yml +118 -36
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +51 -38
- data/config/locales/uk.yml +21 -33
- data/config/locales/val-ES.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +47 -33
- data/config/locales/zh-TW.yml +1 -1712
- data/config/routes.rb +19 -22
- data/db/migrate/20180508111710_add_accepted_tos_version_field_to_users.rb +1 -0
- data/db/migrate/20181030090144_destroy_deleted_users_follows.rb +1 -0
- data/db/migrate/20190412131728_fix_user_names.rb +4 -4
- data/db/migrate/20210831181634_add_service_name_to_active_storage_blobs.active_storage.rb +22 -0
- data/db/migrate/20210831181635_create_active_storage_variant_records.active_storage.rb +14 -0
- data/db/migrate/20211208155453_create_decidim_reminders.rb +11 -0
- data/db/migrate/20211209121025_create_decidim_reminder_records.rb +11 -0
- data/db/migrate/20211209121040_create_decidim_reminder_deliveries.rb +10 -0
- data/db/migrate/20220118121921_change_required_description_categories.rb +7 -0
- data/db/migrate/20220127113419_add_notification_settings_to_users.rb +7 -0
- data/db/migrate/20220203121137_add_notifications_sending_frequency_to_users.rb +7 -0
- data/db/migrate/20220215172439_add_digest_sent_at_to_users.rb +7 -0
- data/db/migrate/20220323195258_add_index_to_decidim_users_notifications_sending_frequency.rb +7 -0
- data/db/migrate/20220427142214_drop_emails_on_notifications_flag_from_user.rb +15 -0
- data/db/migrate/20220518094535_add_previous_passwords_to_users.rb +20 -0
- data/db/migrate/20220524195530_create_decidim_short_links.rb +23 -0
- data/db/seeds.rb +17 -18
- data/lib/decidim/acts_as_tree.rb +47 -0
- data/lib/decidim/api/input_sorts/component_input_sort.rb +2 -1
- data/lib/decidim/api/interfaces/authorable_interface.rb +6 -5
- data/lib/decidim/api/types/localized_string_type.rb +0 -9
- data/lib/decidim/api/types/translated_field_type.rb +5 -20
- data/lib/decidim/asset_router.rb +80 -0
- data/lib/decidim/attachment_attributes.rb +8 -8
- data/lib/decidim/attribute_object/form.rb +174 -0
- data/lib/decidim/attribute_object/model.rb +148 -0
- data/lib/decidim/attribute_object/nested_validator.rb +22 -0
- data/lib/decidim/attribute_object/type_map.rb +14 -0
- data/lib/decidim/attribute_object/type_resolver.rb +91 -0
- data/lib/decidim/attribute_object.rb +26 -0
- data/lib/decidim/attributes/array.rb +62 -0
- data/lib/decidim/attributes/blob.rb +20 -0
- data/lib/decidim/attributes/clean_string.rb +12 -6
- data/lib/decidim/attributes/hash.rb +36 -0
- data/lib/decidim/attributes/integer.rb +17 -0
- data/lib/decidim/attributes/localized_date.rb +8 -14
- data/lib/decidim/attributes/model.rb +24 -0
- data/lib/decidim/attributes/object.rb +28 -0
- data/lib/decidim/attributes/symbol.rb +23 -0
- data/lib/decidim/attributes/time_with_zone.rb +7 -17
- data/lib/decidim/attributes.rb +29 -0
- data/lib/decidim/authorable.rb +21 -6
- data/lib/decidim/authorization_form_builder.rb +9 -11
- data/lib/decidim/carrier_wave_migrator_service.rb +15 -15
- data/lib/decidim/coauthorable.rb +22 -4
- data/lib/decidim/command.rb +44 -0
- data/lib/decidim/common_passwords.rb +1 -1
- data/lib/decidim/component_manifest.rb +5 -5
- data/lib/decidim/component_validator.rb +2 -2
- data/lib/decidim/content_block_manifest.rb +1 -1
- data/lib/decidim/content_parsers/hashtag_parser.rb +2 -2
- data/lib/decidim/content_parsers/resource_parser.rb +1 -1
- data/lib/decidim/content_parsers/user_group_parser.rb +1 -1
- data/lib/decidim/content_parsers/user_parser.rb +4 -4
- data/lib/decidim/content_renderers/hashtag_renderer.rb +1 -1
- data/lib/decidim/content_renderers/link_renderer.rb +2 -2
- data/lib/decidim/content_renderers/user_group_renderer.rb +1 -1
- data/lib/decidim/content_renderers/user_renderer.rb +1 -1
- data/lib/decidim/controller_helpers.rb +41 -0
- data/lib/decidim/core/engine.rb +35 -19
- data/lib/decidim/core/test/factories.rb +54 -21
- data/lib/decidim/core/test/shared_examples/admin_resource_gallery_examples.rb +16 -4
- data/lib/decidim/core/test/shared_examples/amendable/amendment_form_examples.rb +1 -1
- data/lib/decidim/core/test/shared_examples/authorable_interface_examples.rb +15 -2
- data/lib/decidim/core/test/shared_examples/coauthorable_interface_examples.rb +2 -2
- data/lib/decidim/core/test/shared_examples/comments_examples.rb +203 -36
- data/lib/decidim/core/test/shared_examples/localised_email.rb +1 -1
- data/lib/decidim/core/test/shared_examples/logo_email.rb +1 -1
- data/lib/decidim/core/test/shared_examples/map_examples.rb +2 -2
- data/lib/decidim/core/test/shared_examples/preview_component_with_share_token_examples.rb +0 -6
- data/lib/decidim/core/test/shared_examples/resource_search_examples.rb +120 -40
- data/lib/decidim/core/test/shared_examples/resourceable.rb +0 -6
- data/lib/decidim/core/test/shared_examples/rich_text_editor_examples.rb +3 -7
- data/lib/decidim/core/test/shared_examples/searchable_participatory_space_examples.rb +1 -1
- data/lib/decidim/core/test/shared_examples/searchable_resources_shared_context.rb +1 -1
- data/lib/decidim/core/test/shared_examples/system_endorse_resource_examples.rb +3 -3
- data/lib/decidim/core/test/shared_examples/translated_event_examples.rb +2 -2
- data/lib/decidim/core/test/shared_examples/with_endorsable_permissions_examples.rb +1 -1
- data/lib/decidim/core/test.rb +0 -4
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/core.rb +108 -14
- data/lib/decidim/{data_portability.rb → download_your_data.rb} +3 -3
- data/lib/decidim/{data_portability_serializers/data_portability_conversation_serializer.rb → download_your_data_serializers/download_your_data_conversation_serializer.rb} +2 -2
- data/lib/decidim/{data_portability_serializers/data_portability_follow_serializer.rb → download_your_data_serializers/download_your_data_follow_serializer.rb} +2 -2
- data/lib/decidim/{data_portability_serializers/data_portability_identity_serializer.rb → download_your_data_serializers/download_your_data_identity_serializer.rb} +2 -2
- data/lib/decidim/{data_portability_serializers/data_portability_notification_serializer.rb → download_your_data_serializers/download_your_data_notification_serializer.rb} +2 -2
- data/lib/decidim/{data_portability_serializers/data_portability_participatory_space_private_user_serializer.rb → download_your_data_serializers/download_your_data_participatory_space_private_user_serializer.rb} +2 -2
- data/lib/decidim/{data_portability_serializers/data_portability_report_serializer.rb → download_your_data_serializers/download_your_data_report_serializer.rb} +2 -2
- data/lib/decidim/{data_portability_serializers/data_portability_user_group_serializer.rb → download_your_data_serializers/download_your_data_user_group_serializer.rb} +2 -2
- data/lib/decidim/{data_portability_serializers/data_portability_user_serializer.rb → download_your_data_serializers/download_your_data_user_serializer.rb} +3 -3
- data/lib/decidim/download_your_data_serializers.rb +23 -0
- data/lib/decidim/engine_router.rb +7 -1
- data/lib/decidim/env.rb +56 -0
- data/lib/decidim/event_recorder.rb +25 -0
- data/lib/decidim/events/base_event.rb +10 -14
- data/lib/decidim/events/simple_event.rb +6 -5
- data/lib/decidim/exporters/export_data.rb +1 -1
- data/lib/decidim/exporters/export_manifest.rb +2 -1
- data/lib/decidim/file_validator_humanizer.rb +24 -1
- data/lib/decidim/filterable_resource.rb +55 -0
- data/lib/decidim/fingerprint_calculator.rb +2 -4
- data/lib/decidim/form_builder.rb +161 -139
- data/lib/decidim/gamification/badge.rb +2 -3
- data/lib/decidim/gamification/badge_scorer.rb +1 -0
- data/lib/decidim/has_area.rb +27 -0
- data/lib/decidim/has_attachments.rb +2 -2
- data/lib/decidim/has_category.rb +36 -0
- data/lib/decidim/has_resource_permission.rb +2 -0
- data/lib/decidim/importers/import_manifest.rb +3 -21
- data/lib/decidim/jsonb_attributes.rb +6 -4
- data/lib/decidim/manifest_messages.rb +23 -0
- data/lib/decidim/map/autocomplete.rb +6 -4
- data/lib/decidim/map/frontend.rb +2 -2
- data/lib/decidim/map/provider/dynamic_map/here.rb +1 -46
- data/lib/decidim/map/provider/geocoding/here.rb +5 -5
- data/lib/decidim/map/provider/here.rb +3 -0
- data/lib/decidim/map/provider/osm.rb +3 -0
- data/lib/decidim/map.rb +4 -4
- data/lib/decidim/menu.rb +1 -1
- data/lib/decidim/metric_manifest.rb +2 -2
- data/lib/decidim/nicknamizable.rb +1 -1
- data/lib/decidim/notification_setting_manifest.rb +19 -0
- data/lib/decidim/organization_settings.rb +8 -7
- data/lib/decidim/participatory_space_context_manifest.rb +2 -2
- data/lib/decidim/participatory_space_manifest.rb +2 -2
- data/lib/decidim/participatory_space_resourceable.rb +1 -7
- data/lib/decidim/processes_file_locally.rb +31 -0
- data/lib/decidim/publicable.rb +0 -4
- data/lib/decidim/query.rb +84 -0
- data/lib/decidim/record_encryptor.rb +29 -8
- data/lib/decidim/reminder_manifest.rb +75 -0
- data/lib/decidim/reminder_registry.rb +67 -0
- data/lib/decidim/resource_manifest.rb +1 -1
- data/lib/decidim/resourceable.rb +15 -5
- data/lib/decidim/scopable.rb +15 -0
- data/lib/decidim/settings_manifest.rb +4 -4
- data/lib/decidim/spring.rb +16 -0
- data/lib/decidim/translatable_attributes.rb +13 -16
- data/lib/decidim/url_option_resolver.rb +50 -0
- data/lib/decidim/view_hooks.rb +1 -1
- data/lib/decidim/view_model.rb +5 -1
- data/lib/decidim/webpacker/thread_safe_compiler.rb +30 -0
- data/lib/decidim/webpacker/webpack/custom.js +15 -3
- data/lib/decidim/webpacker/webpacker.yml +1 -1
- data/lib/decidim/webpacker.rb +2 -0
- data/lib/devise/models/decidim_validatable.rb +1 -1
- data/lib/tasks/decidim_active_storage_migration_tasks.rake +1 -3
- data/lib/tasks/{decidim_data_portability_tasks.rake → decidim_download_your_data_tasks.rake} +9 -9
- data/lib/tasks/decidim_mailers_tasks.rake +23 -0
- data/lib/tasks/decidim_metrics_tasks.rake +1 -1
- data/lib/tasks/decidim_pwa_tasks.rake +18 -0
- data/lib/tasks/decidim_reminders_tasks.rake +17 -0
- data/lib/tasks/decidim_tasks.rake +6 -1
- data/lib/tasks/decidim_webpacker_tasks.rake +1 -1
- data/lib/tasks/upgrade/decidim_fix_nickname_uniqueness.rake +51 -0
- metadata +186 -98
- data/app/controllers/decidim/cookie_policy_controller.rb +0 -24
- data/app/helpers/decidim/cookies_helper.rb +0 -11
- data/app/packs/src/decidim/editor/clipboard_override.js +0 -147
- data/app/packs/src/decidim/editor/clipboard_utilities.js +0 -119
- data/app/packs/src/decidim/vizzs/renders.js +0 -9
- data/app/packs/src/decidim/vizzs.js +0 -1
- data/app/packs/stylesheets/decidim/modules/_cookie-bar.scss +0 -26
- data/app/scrubbers/decidim/admin_input_scrubber.rb +0 -27
- data/app/services/decidim/home_activity_search.rb +0 -80
- data/app/services/decidim/participatory_space_search.rb +0 -54
- data/app/views/decidim/cookie_policy/accept.js.erb +0 -3
- data/app/views/decidim/export_mailer/data_portability_export.html.erb +0 -7
- data/app/views/decidim/links/_invalid_url_modal.html.erb +0 -17
- data/app/views/decidim/links/invalid_url.js.erb +0 -24
- data/config/locales/fa-IR.yml +0 -1
- data/config/locales/gn-PY.yml +0 -4
- data/config/locales/ka-GE.yml +0 -4
- data/config/locales/kaa.yml +0 -1
- data/config/locales/lo-LA.yml +0 -1
- data/config/locales/oc-FR.yml +0 -3
- data/lib/decidim/core/test/shared_examples/editor_shared_examples.rb +0 -10
- data/lib/decidim/core/test/shared_examples/mcell_examples.rb +0 -17
- data/lib/decidim/core/test/shared_examples/resource_endorsed_event_examples.rb +0 -60
- data/lib/decidim/core/test/shared_examples/versions_controller_examples.rb +0 -40
- data/lib/decidim/data_portability_serializers.rb +0 -23
- data/lib/decidim/middleware/rails_cookies.rb +0 -23
- /data/app/packs/src/decidim/vizzs/{metrics.js → index.js} +0 -0
- /data/app/views/decidim/application/{_document.html.erb → _document.erb} +0 -0
- /data/app/views/decidim/application/{_photos.html.erb → _photos.erb} +0 -0
- /data/app/views/decidim/{data_portability → download_your_data}/export.html.erb +0 -0
data/config/locales/en.yml
CHANGED
@@ -30,7 +30,6 @@ en:
|
|
30
30
|
password_confirmation: Confirm your password
|
31
31
|
personal_url: Personal URL
|
32
32
|
remove_avatar: Remove avatar
|
33
|
-
tos_agreement: Terms and conditions of use agreement
|
34
33
|
models:
|
35
34
|
decidim/attachment_created_event: Attachment
|
36
35
|
decidim/component_published_event: Active component
|
@@ -75,7 +74,8 @@ en:
|
|
75
74
|
'true': 'Yes'
|
76
75
|
carrierwave:
|
77
76
|
errors:
|
78
|
-
|
77
|
+
file_resolution_too_large: File resolution is too large
|
78
|
+
file_size_too_large: File size is too large
|
79
79
|
not_inside_organization: The file is not attached to any organization
|
80
80
|
date:
|
81
81
|
formats:
|
@@ -94,26 +94,24 @@ en:
|
|
94
94
|
other: about %{count} months
|
95
95
|
half_a_minute: half a minute
|
96
96
|
less_than_x_minutes:
|
97
|
-
one: less than a
|
98
|
-
other: less than %{count}
|
97
|
+
one: less than a min.
|
98
|
+
other: less than %{count} min.
|
99
99
|
less_than_x_seconds:
|
100
|
-
one:
|
101
|
-
other: less than %{count}
|
100
|
+
one: right now
|
101
|
+
other: less than %{count} sec.
|
102
102
|
x_days:
|
103
|
-
one: 1 day
|
104
|
-
other: "%{count} days"
|
103
|
+
one: 1 day ago
|
104
|
+
other: "%{count} days ago"
|
105
105
|
x_hours:
|
106
|
-
one: 1 hour
|
107
|
-
other: "%{count} hours"
|
106
|
+
one: 1 hour ago
|
107
|
+
other: "%{count} hours ago"
|
108
108
|
x_minutes:
|
109
|
-
one: 1
|
110
|
-
other: "%{count}
|
111
|
-
x_months:
|
112
|
-
one: 1 month
|
113
|
-
other: "%{count} months"
|
109
|
+
one: 1 min. ago
|
110
|
+
other: "%{count} min. ago"
|
114
111
|
x_seconds:
|
115
|
-
one: 1
|
116
|
-
other: "%{count}
|
112
|
+
one: 1 sec. ago
|
113
|
+
other: "%{count} sec. ago"
|
114
|
+
zero: right now
|
117
115
|
decidim:
|
118
116
|
accessibility:
|
119
117
|
external_link: External link
|
@@ -122,9 +120,6 @@ en:
|
|
122
120
|
skip_button: Skip to main content
|
123
121
|
account:
|
124
122
|
blocked: This account has been blocked due to Terms and Conditions violation
|
125
|
-
data_portability_export:
|
126
|
-
file_no_exists: File does not exist
|
127
|
-
notice: The download of your data is currently in progress. You'll receive an email when it's complete.
|
128
123
|
delete:
|
129
124
|
alert: This action cannot be undone. If you delete your account you won't be able to log in with your credentials. The deletion of your account will result in the anonymization of your contributions. You will still be able to create a new account, but these contributions will not be associated with it.
|
130
125
|
confirm:
|
@@ -136,8 +131,21 @@ en:
|
|
136
131
|
destroy:
|
137
132
|
error: There was a problem deleting your account.
|
138
133
|
success: Your account was successfully deleted.
|
134
|
+
download_your_data_export:
|
135
|
+
file_no_exists: File does not exist
|
136
|
+
notice: The download of your data is currently in progress. You'll receive an email when it's complete.
|
137
|
+
email_change:
|
138
|
+
body1: We've sent an email to %{unconfirmed_email} to verify your new email address.
|
139
|
+
body2: Need us to send the verification email again? %{resend_link} or %{cancel_link}.
|
140
|
+
cancel: cancel
|
141
|
+
cancel_error: Could not cancel the email change.
|
142
|
+
cancel_successfully: Email change cancelled successfully.
|
143
|
+
resend_error: Could not resend confirmation email.
|
144
|
+
resend_successfully: Confirmation email resent successfully to %{unconfirmed_email}
|
145
|
+
send_again: Send again
|
146
|
+
title: Email change verification
|
139
147
|
show:
|
140
|
-
available_locales_helper: Choose the language you want to use to browse and receive notifications
|
148
|
+
available_locales_helper: Choose the language you want to use to browse and receive notifications on the platform
|
141
149
|
change_password: Change password
|
142
150
|
update_account: Update account
|
143
151
|
update:
|
@@ -147,16 +155,44 @@ en:
|
|
147
155
|
admin:
|
148
156
|
actions:
|
149
157
|
cancel: Cancel
|
158
|
+
password_change:
|
159
|
+
alert: You need to change your password in order to proceed further
|
160
|
+
notification: Admin users need to change their password every %{days} days.
|
150
161
|
admin_log:
|
151
162
|
area:
|
152
163
|
create: "%{user_name} created the %{resource_name} area"
|
153
164
|
delete: "%{user_name} deleted the %{resource_name} area"
|
154
165
|
update: "%{user_name} updated the %{resource_name} area"
|
166
|
+
area_type:
|
167
|
+
create: "%{user_name} created the %{resource_name} area type"
|
168
|
+
delete: "%{user_name} deleted the %{resource_name} area type"
|
169
|
+
update: "%{user_name} updated the %{resource_name} area type"
|
170
|
+
attachment:
|
171
|
+
create: "%{user_name} created the %{resource_name} attachment"
|
172
|
+
delete: "%{user_name} deleted the %{resource_name} attachment"
|
173
|
+
update: "%{user_name} updated the %{resource_name} attachment"
|
174
|
+
attachment_collection:
|
175
|
+
create: "%{user_name} created the %{resource_name} attachment collection"
|
176
|
+
delete: "%{user_name} deleted the %{resource_name} attachment collection"
|
177
|
+
update: "%{user_name} updated the %{resource_name} attachment collection"
|
178
|
+
category:
|
179
|
+
create: "%{user_name} added the %{resource_name} category to the %{space_name} space"
|
180
|
+
delete: "%{user_name} deleted the %{resource_name} category from the %{space_name} space"
|
181
|
+
update: "%{user_name} updated the %{resource_name} category in the %{space_name} space"
|
155
182
|
component:
|
156
183
|
create: "%{user_name} added the %{resource_name} component to the %{space_name} space"
|
157
184
|
delete: "%{user_name} removed the %{resource_name} component from the %{space_name} space"
|
185
|
+
export_component: "%{user_name} exported the %{resource_name} %{component_name} in %{space_name} as %{format_name}"
|
158
186
|
publish: "%{user_name} published the %{resource_name} component in the %{space_name} space"
|
159
187
|
unpublish: "%{user_name} unpublished the %{resource_name} component from the %{space_name} space"
|
188
|
+
update_permissions_with_space: "%{user_name} updated the permissions of %{resource_name} in %{space_name}"
|
189
|
+
contextual_help_section:
|
190
|
+
update: "%{user_name} updated the %{resource_name} help section"
|
191
|
+
helpers:
|
192
|
+
answers: answers
|
193
|
+
comments: comments
|
194
|
+
projects: projects
|
195
|
+
results: results
|
160
196
|
impersonation_log:
|
161
197
|
manage: "%{user_name} has managed %{resource_name} because %{reason}"
|
162
198
|
moderation:
|
@@ -173,6 +209,7 @@ en:
|
|
173
209
|
update: "%{user_name} updated the %{resource_name} OAuth application"
|
174
210
|
organization:
|
175
211
|
update: "%{user_name} updated the organization settings"
|
212
|
+
update_external_domain: "%{user_name} updated the organization external domains"
|
176
213
|
participatory_space_private_user:
|
177
214
|
create: "%{user_name} invited %{resource_name} to be a private participant"
|
178
215
|
create_via_csv: "%{user_name} invited %{resource_name} via CSV to be a private participant"
|
@@ -184,6 +221,10 @@ en:
|
|
184
221
|
delete_with_parent: "%{user_name} deleted the %{resource_name} scope inside the %{parent_scope} scope"
|
185
222
|
update: "%{user_name} updated the %{resource_name} scope"
|
186
223
|
update_with_parent: "%{user_name} updated the %{resource_name} scope inside the %{parent_scope} scope"
|
224
|
+
scope_type:
|
225
|
+
create: "%{user_name} created the %{resource_name} scope type"
|
226
|
+
delete: "%{user_name} deleted the %{resource_name} scope type"
|
227
|
+
update: "%{user_name} updated the %{resource_name} scope type"
|
187
228
|
static_page:
|
188
229
|
create: "%{user_name} created the %{resource_name} static page"
|
189
230
|
delete: "%{user_name} deleted the %{resource_name} static page"
|
@@ -199,9 +240,7 @@ en:
|
|
199
240
|
unblock: "%{user_name} unblocked user %{resource_name}"
|
200
241
|
unofficialize: "%{user_name} unofficialized the participant %{resource_name}"
|
201
242
|
user_group:
|
202
|
-
block: "%{user_name} blocked user group %{resource_name}"
|
203
243
|
reject: "%{user_name} rejected the %{resource_name} group verification"
|
204
|
-
unblock: "%{user_name} unblocked user group %{resource_name}"
|
205
244
|
verify: "%{user_name} verified the group %{resource_name}"
|
206
245
|
verify_via_csv: "%{user_name} verified the group %{resource_name} via a CSV file"
|
207
246
|
user_moderation:
|
@@ -312,6 +351,7 @@ en:
|
|
312
351
|
endorsements:
|
313
352
|
one: endorsement
|
314
353
|
other: endorsements
|
354
|
+
official_author: Official
|
315
355
|
authorization_handlers:
|
316
356
|
another_dummy_authorization_handler:
|
317
357
|
explanation: Get verified by introducing a passport number starting with "A"
|
@@ -402,6 +442,7 @@ en:
|
|
402
442
|
debate: Debate
|
403
443
|
initiative: Initiative
|
404
444
|
meeting: Meeting
|
445
|
+
order: Budgeting vote
|
405
446
|
post: Post
|
406
447
|
proposal: Proposal
|
407
448
|
question: Question
|
@@ -416,8 +457,8 @@ en:
|
|
416
457
|
amendments_enabled: Amendments enabled
|
417
458
|
comments_enabled: Comments enabled
|
418
459
|
comments_max_length: Comments max length
|
419
|
-
|
420
|
-
|
460
|
+
dummy_global_attribute1: Dummy Attribute 1
|
461
|
+
dummy_global_attribute2: Dummy Attribute 2
|
421
462
|
dummy_global_translatable_text: Dummy Translatable Text
|
422
463
|
enable_pads_creation: Enable pads creation
|
423
464
|
resources_permissions_enabled: Resources permissions enabled
|
@@ -429,8 +470,8 @@ en:
|
|
429
470
|
amendment_reaction_enabled: Amendment reaction enabled
|
430
471
|
amendments_visibility: Amendment visibility
|
431
472
|
comments_blocked: Comments blocked
|
432
|
-
|
433
|
-
|
473
|
+
dummy_step_attribute1: Dummy Step Attribute 1
|
474
|
+
dummy_step_attribute2: Dummy Step Attribute 2
|
434
475
|
dummy_step_translatable_text: Dummy Step Translatable Text
|
435
476
|
contact: Contact
|
436
477
|
content_blocks:
|
@@ -474,13 +515,6 @@ en:
|
|
474
515
|
actions:
|
475
516
|
login_before_access: Please, login with your account before access
|
476
517
|
unauthorized: You are not authorized to perform this action
|
477
|
-
data_portability:
|
478
|
-
export:
|
479
|
-
ready: Ready
|
480
|
-
show:
|
481
|
-
download_data: Download the data
|
482
|
-
download_data_description: A file containing all the information associated with your account will be sent to <strong>%{user_email}</strong>. 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). 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>).
|
483
|
-
request_data: Request data
|
484
518
|
datepicker:
|
485
519
|
help_text: 'Expected format: %{datepicker_format}'
|
486
520
|
devise:
|
@@ -499,7 +533,6 @@ en:
|
|
499
533
|
newsletter: Receive an occasional newsletter with relevant information
|
500
534
|
newsletter_title: Contact permission
|
501
535
|
nickname_help: Your alias in %{organization}. Can only contain letters, numbers, '-' and '_'.
|
502
|
-
password_help: "%{minimun_characters} characters minimum, must not be too common (e.g. 123456) and must be different from your nickname and your email."
|
503
536
|
sign_in: Log in
|
504
537
|
sign_up: Sign up
|
505
538
|
sign_up_as:
|
@@ -552,6 +585,13 @@ en:
|
|
552
585
|
this_application_will_not_be_able_to: 'This application will not be able to:'
|
553
586
|
update_profile: Update your profile
|
554
587
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> wants to use your account"
|
588
|
+
download_your_data:
|
589
|
+
export:
|
590
|
+
ready: Ready
|
591
|
+
show:
|
592
|
+
download_data: Download the data
|
593
|
+
download_data_description: A file containing all the information associated with your account will be sent to <strong>%{user_email}</strong>. 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). 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>).
|
594
|
+
request_data: Request data
|
555
595
|
editor_images:
|
556
596
|
create:
|
557
597
|
error: Error uploading image
|
@@ -695,6 +735,8 @@ en:
|
|
695
735
|
email_outro: You have received this notification because you are an admin of the platform.
|
696
736
|
email_subject: A user group has updated its profile
|
697
737
|
notification_title: The %{user_group_name} user group has updated its profile, leaving it unverified. You can now verify it in the <a href="%{groups_admin_path}">admin panel</a>.
|
738
|
+
nickname_event:
|
739
|
+
notification_body: We have corrected the way nicknames are used so that there are no duplicates, and that's why we have removed the case sensitive rule. <br/> Your nickname was created after another one with the same name, so we have automatically renamed it. You can change it from <a href="%{link_to_account_settings}">your account settings</a>.
|
698
740
|
notification_event:
|
699
741
|
notification_title: An event occured to <a href="%{resource_path}">%{resource_title}</a>.
|
700
742
|
reports:
|
@@ -722,7 +764,7 @@ en:
|
|
722
764
|
email_subject: "%{name} has been officialized"
|
723
765
|
notification_title: Participant %{name} (%{nickname}) has been officialized.
|
724
766
|
export_mailer:
|
725
|
-
|
767
|
+
download_your_data_export:
|
726
768
|
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}'
|
727
769
|
download: Download
|
728
770
|
export:
|
@@ -762,7 +804,6 @@ en:
|
|
762
804
|
button: Stop following
|
763
805
|
error: There was a problem unfollowing this resource.
|
764
806
|
forms:
|
765
|
-
current_file: Current file
|
766
807
|
current_image: Current image
|
767
808
|
default_image: Default image
|
768
809
|
errors:
|
@@ -774,15 +815,39 @@ en:
|
|
774
815
|
file:
|
775
816
|
explanation: 'Guidance for file:'
|
776
817
|
message_1: Has to be an image or a document.
|
777
|
-
message_2: For images, use preferrably landscape images, the service crops the image.
|
818
|
+
message_2: For images, use preferrably landscape images, the service crops the image.
|
819
|
+
icon:
|
820
|
+
explanation: 'Guidance for icon:'
|
821
|
+
message_1: Has to be a square image.
|
822
|
+
message_2: The recommended size for this image is 512x512.
|
778
823
|
image:
|
779
824
|
explanation: 'Guidance for image:'
|
780
825
|
message_1: Preferrably a landscape image that does not have any text.
|
781
826
|
message_2: The service crops the image.
|
782
827
|
file_validation:
|
783
828
|
allowed_file_extensions: 'Allowed file extensions: %{extensions}'
|
829
|
+
max_file_dimension: 'Maximum file dimensions: %{resolution} pixels'
|
784
830
|
max_file_size: 'Maximum file size: %{megabytes}MB'
|
785
|
-
|
831
|
+
upload:
|
832
|
+
labels:
|
833
|
+
add_attachment: Add attachment
|
834
|
+
add_file: Add file
|
835
|
+
add_image: Add image
|
836
|
+
cancel: Cancel
|
837
|
+
edit_image: Edit image
|
838
|
+
error: Error!
|
839
|
+
file_size_too_large: 'File size is too large! Maximun file size: %{megabytes}MB'
|
840
|
+
remove: Remove
|
841
|
+
replace: Replace
|
842
|
+
save: Save
|
843
|
+
title: Title
|
844
|
+
title_required: Title is required!
|
845
|
+
uploaded: Uploaded
|
846
|
+
validating: Validating...
|
847
|
+
validation_error: Validation error!
|
848
|
+
upload_help:
|
849
|
+
dropzone: Drop files here or click to upload
|
850
|
+
explanation: Guidance for %{attribute}
|
786
851
|
gamification:
|
787
852
|
all_badges_link: See all available badges.
|
788
853
|
badges:
|
@@ -801,6 +866,18 @@ en:
|
|
801
866
|
how: How can you earn it
|
802
867
|
page_description: Badges are recognitions to participant actions and progress in the platform. As you start discovering, participating and interacting in the platform, you will earn different badges. Here is the list of badges and some ways you can earn them.
|
803
868
|
title: Badges
|
869
|
+
invitations:
|
870
|
+
conditions:
|
871
|
+
- Use the “invite friends” link on your user page to invite your friends
|
872
|
+
- Customize, if you want, the message you are sending
|
873
|
+
- You’ll level up by sending invitations and getting them registered.
|
874
|
+
description: This badge is granted when you’ve invited some people and they have spend a little time to register in %{organization_name} and become participants. Thank you for making %{organization_name} known to others and helping to expand the community!
|
875
|
+
description_another: This participant has invited %{score} people.
|
876
|
+
description_own: You have invited %{score} people.
|
877
|
+
name: Invitations
|
878
|
+
next_level_in: Invite %{score} more people to reach the next level!
|
879
|
+
unearned_another: This participant has not yet invited anyone.
|
880
|
+
unearned_own: You haven't invited anyone yet.
|
804
881
|
description: Badges are recognitions to participant actions and progress in the platform. As you start discovering, participating and interacting in the platform, you will earn different badges.
|
805
882
|
level: Level %{level}
|
806
883
|
reached_top: You've reached the top level for this badge.
|
@@ -871,6 +948,7 @@ en:
|
|
871
948
|
success: Join request successfully created. An admin will review your request before accepting you to the group.
|
872
949
|
leave:
|
873
950
|
error: There was a problem leaving the group
|
951
|
+
last_admin: You can't remove yourself from this group as you're the last administrator. Make another member an administrator in order to leave the group.
|
874
952
|
success: Group successfully abandoned.
|
875
953
|
members:
|
876
954
|
accept_or_reject_join_requests: 'The following users have applied to join this group. Accept or reject their requests:'
|
@@ -883,7 +961,7 @@ en:
|
|
883
961
|
no_user_groups: Doesn't belong to any group yet.
|
884
962
|
roles:
|
885
963
|
admin: Administrator
|
886
|
-
creator:
|
964
|
+
creator: Administrator
|
887
965
|
member: Member
|
888
966
|
update:
|
889
967
|
error: There was a problem updating the group
|
@@ -917,11 +995,10 @@ en:
|
|
917
995
|
create_with_space: "%{user_name} created %{resource_name} in %{space_name}"
|
918
996
|
delete: "%{user_name} deleted %{resource_name}"
|
919
997
|
delete_with_space: "%{user_name} deleted %{resource_name} in %{space_name}"
|
920
|
-
publish_with_space: "%{user_name} published %{resource_name} in %{space_name}"
|
921
998
|
unknown_action: "%{user_name} performed some action on %{resource_name}"
|
922
999
|
unknown_action_with_space: "%{user_name} performed some action on %{resource_name} in %{space_name}"
|
923
|
-
unpublish_with_space: "%{user_name} unpublished %{resource_name} from %{space_name}"
|
924
1000
|
update: "%{user_name} updated %{resource_name}"
|
1001
|
+
update_permissions_with_space: "%{user_name} updated the permissions of %{resource_name} in %{space_name}"
|
925
1002
|
update_with_space: "%{user_name} updated %{resource_name} in %{space_name}"
|
926
1003
|
value_types:
|
927
1004
|
area_presenter:
|
@@ -1042,7 +1119,7 @@ en:
|
|
1042
1119
|
newsletter_mailer:
|
1043
1120
|
newsletter:
|
1044
1121
|
note: You received this email because you're subscribed to newsletters on %{organization_name}. You can change your settings on your <a href="%{link}">notifications page</a>.
|
1045
|
-
see_on_website: Can’t see this email correctly? View it on the <a href="%{link}" target="_blank"
|
1122
|
+
see_on_website: Can’t see this email correctly? View it on the <a href="%{link}" target="_blank">website</a>.
|
1046
1123
|
unsubscribe: To opt out of receiving this type of email, <a href="%{link}" target="_blank" class="unsubscribe">Unsubscribe</a>.
|
1047
1124
|
newsletter_templates:
|
1048
1125
|
basic_only_text:
|
@@ -1094,23 +1171,47 @@ en:
|
|
1094
1171
|
no_notifications: No notifications yet.
|
1095
1172
|
show:
|
1096
1173
|
missing_event: Oops, this notification belongs to an item that is no longer available. You can discard it.
|
1174
|
+
notifications_digest_mailer:
|
1175
|
+
header:
|
1176
|
+
daily: Daily Notification Digest
|
1177
|
+
weekly: Weekly Notification Digest
|
1178
|
+
hello: Hello %{name},
|
1179
|
+
intro:
|
1180
|
+
daily: 'These are the notifications from the last day based on the activity you are following:'
|
1181
|
+
weekly: 'These are the notifications from the last week based on the activity you are following:'
|
1182
|
+
outro: You have received these notifications because you are following this content or its authors. You can unfollow them from their respective pages.
|
1183
|
+
see_more: See more notifications
|
1184
|
+
subject: This is your mail digest
|
1097
1185
|
notifications_settings:
|
1098
1186
|
show:
|
1099
1187
|
administrators: Administrators
|
1100
1188
|
allow_public_contact: Allow anyone to send me a direct message, even if I don't follow them.
|
1189
|
+
allow_push_notifications: Get push notifications to find out what's going on when you're not on the platform. You can turn them off anytime.
|
1101
1190
|
direct_messages: Receive direct messages from anyone
|
1102
|
-
email_on_moderations: I want to receive an email every time something is reported for moderation.
|
1103
|
-
email_on_notification: I want to receive an email every time I receive a notification.
|
1191
|
+
email_on_moderations: I want to receive an email every time something or someone is reported for moderation.
|
1104
1192
|
everything_followed: Everything I follow
|
1105
1193
|
newsletter_notifications: I want to receive newsletters
|
1106
1194
|
newsletters: Newsletters
|
1195
|
+
notification_settings:
|
1196
|
+
close_meeting_reminder: I want to receive email reminders of closed meetings unpublished reports
|
1197
|
+
notifications_sending_frequencies:
|
1198
|
+
daily: Daily
|
1199
|
+
none: None
|
1200
|
+
real_time: Real time
|
1201
|
+
weekly: Weekly
|
1202
|
+
notifications_sending_frequency: How often do you want to receive the notifications email?
|
1107
1203
|
own_activity: My own activity, like when someone comments in my proposal or mentions me
|
1204
|
+
push_notifications: Push notifications
|
1205
|
+
push_notifications_reminder: To get notifications from the platform, you'll need to allow them in your browser settings first.
|
1108
1206
|
receive_notifications_about: I want to get notifications about
|
1109
|
-
send_notifications_by_email: Send notifications by email
|
1110
1207
|
update_notifications_settings: Save changes
|
1111
1208
|
update:
|
1112
1209
|
error: There was a problem updating your notifications settings.
|
1113
1210
|
success: Your notifications settings were successfully updated.
|
1211
|
+
offline:
|
1212
|
+
show:
|
1213
|
+
message: It looks like you're currently offline. Please, try again later.
|
1214
|
+
retry: Retry
|
1114
1215
|
open_data:
|
1115
1216
|
not_available_yet: The Open Data files are not yet available, please try again in a few minutes.
|
1116
1217
|
own_user_groups:
|
@@ -1164,7 +1265,7 @@ en:
|
|
1164
1265
|
agreement: I agree with these terms
|
1165
1266
|
legend: Agree to the terms and conditions of use
|
1166
1267
|
refuse:
|
1167
|
-
modal_body: If you refuse, you won't be able to use the platform, you can <a href="%{
|
1268
|
+
modal_body: If you refuse, you won't be able to use the platform, you can <a href="%{download_your_data_path}">download your data</a> and/or <a href="%{delete_path}">delete your account</a>.
|
1168
1269
|
modal_btn_continue: Accept terms and continue
|
1169
1270
|
modal_btn_exit: I'll review it later
|
1170
1271
|
modal_button: Refuse the terms
|
@@ -1176,6 +1277,10 @@ en:
|
|
1176
1277
|
title: 'Required: Review updates to our terms of service'
|
1177
1278
|
participatory_space_private_users:
|
1178
1279
|
not_allowed: You are not allowed to view this content
|
1280
|
+
passwords:
|
1281
|
+
update:
|
1282
|
+
error: There was a problem updating the password
|
1283
|
+
success: Password successfully updated
|
1179
1284
|
profile:
|
1180
1285
|
deleted: Participant deleted
|
1181
1286
|
inaccessible_message: This profile is inaccessible due to Terms and Conditions violation!
|
@@ -1320,6 +1425,8 @@ en:
|
|
1320
1425
|
close_modal: Close modal
|
1321
1426
|
please_sign_in: Please sign in
|
1322
1427
|
sign_up: Sign up
|
1428
|
+
mentions_modal:
|
1429
|
+
remove_recipient: Remove recipient %{name}
|
1323
1430
|
participatory_space_filters:
|
1324
1431
|
filters:
|
1325
1432
|
areas: Areas
|
@@ -1360,7 +1467,7 @@ en:
|
|
1360
1467
|
show_translated: Show automatically-translated text
|
1361
1468
|
user_activity:
|
1362
1469
|
index:
|
1363
|
-
no_activities_warning: This participant
|
1470
|
+
no_activities_warning: This participant hasn't had any activity yet.
|
1364
1471
|
user_contact_disabled: This participant does not accept direct messages.
|
1365
1472
|
user_conversations:
|
1366
1473
|
create:
|
@@ -1407,6 +1514,7 @@ en:
|
|
1407
1514
|
notify:
|
1408
1515
|
body_1: User %{user} has been reported by %{token}
|
1409
1516
|
body_2: 'Reason: %{reason}'
|
1517
|
+
details: User provided details
|
1410
1518
|
greetings: Greetings,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
1411
1519
|
hello: Hello %{admin},
|
1412
1520
|
subject: A new user has been reported in %{organization_name}
|
@@ -1467,7 +1575,7 @@ en:
|
|
1467
1575
|
invitations:
|
1468
1576
|
edit:
|
1469
1577
|
header: Finish creating your account
|
1470
|
-
nickname_help: Your nickname in %{organization}.
|
1578
|
+
nickname_help: Your nickname in %{organization}. Can only contain letters, numbers, '-' and '_'.
|
1471
1579
|
submit_button: Save
|
1472
1580
|
subtitle: If you accept the invitation please set your nickname and password.
|
1473
1581
|
invitation_removed: Your invitation was removed.
|
@@ -1534,10 +1642,11 @@ en:
|
|
1534
1642
|
passwords:
|
1535
1643
|
edit:
|
1536
1644
|
change_my_password: Change my password
|
1537
|
-
change_your_password: Change your password
|
1538
1645
|
confirm_new_password: Confirm new password
|
1539
1646
|
new_password: New password
|
1540
1647
|
password_help: "%{minimun_characters} characters minimum, must not be too common (e.g. 123456) and must be different from your nickname and your email."
|
1648
|
+
password_help_admin: "%{minimun_characters} characters minimum, must not be too common (e.g. 123456), must be different from your nickname and your email and must be different from your old passwords."
|
1649
|
+
title: Password change
|
1541
1650
|
new:
|
1542
1651
|
forgot_your_password: Forgot your password?
|
1543
1652
|
send_me_reset_password_instructions: Send me reset password instructions
|
@@ -1548,6 +1657,15 @@ en:
|
|
1548
1657
|
updated_not_active: Your password has been successfully changed.
|
1549
1658
|
registrations:
|
1550
1659
|
destroyed: Your account has been successfully cancelled. We hope to see you again soon.
|
1660
|
+
edit:
|
1661
|
+
are_you_sure: Are you sure?
|
1662
|
+
cancel_my_account: Cancel my account
|
1663
|
+
currently_waiting_confirmation_for_email: 'Currently waiting confirmation for: %{email}'
|
1664
|
+
leave_blank_if_you_don_t_want_to_change_it: leave blank if you don't want to change it
|
1665
|
+
title: Edit %{resource}
|
1666
|
+
unhappy: Unhappy?
|
1667
|
+
update: Update
|
1668
|
+
we_need_your_current_password_to_confirm_your_changes: we need your current password to confirm your changes
|
1551
1669
|
new:
|
1552
1670
|
sign_up: Sign up
|
1553
1671
|
signed_up: Welcome! You have signed up successfully.
|
@@ -1602,7 +1720,7 @@ en:
|
|
1602
1720
|
other: 'There were multiple errors when processing your request:'
|
1603
1721
|
too_many_marks: is using too many consecutive punctuation marks (e.g. ! and ?)
|
1604
1722
|
too_much_caps: is using too many capital letters (over 25% of the text)
|
1605
|
-
too_short: is too short (under
|
1723
|
+
too_short: is too short (under 15 characters)
|
1606
1724
|
forms:
|
1607
1725
|
correct_errors: There are errors on the form, please correct them to continue.
|
1608
1726
|
length_validator:
|
@@ -1616,14 +1734,56 @@ en:
|
|
1616
1734
|
timestamp_error_message: Sorry, that was too quick! Please resubmit.
|
1617
1735
|
layouts:
|
1618
1736
|
decidim:
|
1619
|
-
|
1620
|
-
|
1621
|
-
|
1622
|
-
|
1737
|
+
cookie_consent:
|
1738
|
+
cookie_details:
|
1739
|
+
columns:
|
1740
|
+
description: Description
|
1741
|
+
name: Name
|
1742
|
+
service: Service
|
1743
|
+
type: Type
|
1744
|
+
cookies:
|
1745
|
+
_session_id:
|
1746
|
+
description: Allows websites to remember user within a website when they move between web pages.
|
1747
|
+
service: This website
|
1748
|
+
decidim-consent:
|
1749
|
+
description: Stores information about the cookies allowed by the user on this website.
|
1750
|
+
service: This website
|
1751
|
+
types:
|
1752
|
+
cookie: Cookie
|
1753
|
+
dialog:
|
1754
|
+
accept_all: Accept all
|
1755
|
+
accept_only_essential: Accept only essential
|
1756
|
+
cookie_settings: Settings
|
1757
|
+
description: We use cookies on our website to improve the performance and content of the site. The cookies enable us to provide a more individual user experience and social media channels.
|
1758
|
+
title: Information about the cookies used on the website
|
1759
|
+
modal:
|
1760
|
+
accept_all: Accept all
|
1761
|
+
accept_only_essential: Accept only essential
|
1762
|
+
analytics:
|
1763
|
+
description: Analytics cookies are cookies that track how users navigate and interact with a website. The information collected is used to help the website owner improve the website.
|
1764
|
+
title: Analytics and statistics
|
1765
|
+
description: We use cookies to ensure the basic functionalities of the website and to enhance your online experience. You can choose for each category to opt-in/out whenever you want.
|
1766
|
+
essential:
|
1767
|
+
description: These cookies are essential for the proper functioning of my website. Without these cookies, the website would not work properly.
|
1768
|
+
title: Essential
|
1769
|
+
marketing:
|
1770
|
+
description: These cookies collect information about how you use the website, which pages you visited and which links you clicked on.
|
1771
|
+
title: Marketing
|
1772
|
+
preferences:
|
1773
|
+
description: These cookies allow the website to remember the choices you have made in the past
|
1774
|
+
title: Preferences
|
1775
|
+
save_settings: Save settings
|
1776
|
+
title: Cookie settings
|
1777
|
+
toggle: Toggle %{consent_category}
|
1778
|
+
warning:
|
1779
|
+
all_cookies: all cookies
|
1780
|
+
change_cookie_settings: Change cookie settings
|
1781
|
+
need_cookies: You need to enable %{cookies} in order to see this content.
|
1623
1782
|
edit_link:
|
1624
1783
|
edit: Edit
|
1625
1784
|
footer:
|
1626
1785
|
cc_by_license: Creative Commons License
|
1786
|
+
cookie_settings: Cookie settings
|
1627
1787
|
decidim_logo: Decidim Logo
|
1628
1788
|
download_open_data: Download Open Data files
|
1629
1789
|
made_with_open_source: Website made with <a target="_blank" href="https://github.com/decidim/decidim">free software</a>.
|
@@ -1643,6 +1803,8 @@ en:
|
|
1643
1803
|
notifications_dashboard:
|
1644
1804
|
mark_all_as_read: Mark all as read
|
1645
1805
|
mark_as_read: Mark as read
|
1806
|
+
offline_banner:
|
1807
|
+
cache_version_page: Oooops! Your network is offline. This is a previously cached version of the page you're visiting, perhaps the content is not up to date.
|
1646
1808
|
social_media_links:
|
1647
1809
|
facebook: "%{organization} at Facebook"
|
1648
1810
|
github: "%{organization} at GitHub"
|
@@ -1654,6 +1816,8 @@ en:
|
|
1654
1816
|
continue_session: Continue session
|
1655
1817
|
sign_out: Sign out
|
1656
1818
|
title: Would you like to continue your session?
|
1819
|
+
upload_modal:
|
1820
|
+
close_modal: Close modal
|
1657
1821
|
user_menu:
|
1658
1822
|
account: 'User account: %{name}'
|
1659
1823
|
admin_dashboard: Admin dashboard
|
@@ -1686,6 +1850,7 @@ en:
|
|
1686
1850
|
nickname_included_in_password: is too similar to your nickname
|
1687
1851
|
not_enough_unique_characters: does not have enough unique characters
|
1688
1852
|
password_not_allowed: is not allowed
|
1853
|
+
password_repeated: cannot reuse old password
|
1689
1854
|
password_too_common: is too common
|
1690
1855
|
password_too_long: is too long
|
1691
1856
|
password_too_short: is too short
|
data/config/locales/eo.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
eo:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -45,9 +46,6 @@ eo:
|
|
45
46
|
booleans:
|
46
47
|
'false': 'Ne'
|
47
48
|
'true': 'Jes'
|
48
|
-
carrierwave:
|
49
|
-
errors:
|
50
|
-
image_too_big: La bildo estas tro granda
|
51
49
|
date:
|
52
50
|
formats:
|
53
51
|
decidim_short: "%d/%m/%Y"
|
@@ -57,12 +55,12 @@ eo:
|
|
57
55
|
decidim_with_month_name_short: "%d %b"
|
58
56
|
decidim:
|
59
57
|
account:
|
60
|
-
data_portability_export:
|
61
|
-
file_no_exists: Dosiero ne ekzistas
|
62
|
-
notice: La malŝarĝo de viaj datumoj nuntempe progresas. Vi ricevos retpoŝton kiam ĝi estos kompleta.
|
63
58
|
delete:
|
64
59
|
confirm:
|
65
60
|
close: Fermu la fenestron
|
61
|
+
download_your_data_export:
|
62
|
+
file_no_exists: Dosiero ne ekzistas
|
63
|
+
notice: La malŝarĝo de viaj datumoj nuntempe progresas. Vi ricevos retpoŝton kiam ĝi estos kompleta.
|
66
64
|
amendments:
|
67
65
|
accepted:
|
68
66
|
success: La amendo estis akceptita sukcese.
|
@@ -86,5 +84,4 @@ eo:
|
|
86
84
|
user_menu:
|
87
85
|
sign_out: Elsaluti
|
88
86
|
locale:
|
89
|
-
name:
|
90
|
-
name_with_error: Esperanto (eraro!)
|
87
|
+
name: Angla
|