decidim-core 0.26.2 → 0.27.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/README.md +1 -1
- data/app/cells/decidim/amendable/announcement_cell.rb +3 -8
- data/app/cells/decidim/announcement_cell.rb +1 -1
- data/app/cells/decidim/author_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 +1 -1
- data/app/cells/decidim/content_blocks/highlighted_content_banner/show.erb +3 -3
- 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 -4
- data/app/cells/decidim/content_blocks/sub_hero/show.erb +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/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 +1 -1
- 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/decidim/account_controller.rb +45 -0
- data/app/controllers/decidim/application_controller.rb +1 -1
- data/app/controllers/decidim/devise/invitations_controller.rb +2 -0
- data/app/controllers/decidim/devise/passwords_controller.rb +33 -0
- data/app/controllers/decidim/devise/registrations_controller.rb +2 -0
- 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 -0
- data/app/controllers/decidim/last_activities_controller.rb +7 -9
- 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 +1 -1
- 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/forms/decidim/account_form.rb +7 -6
- 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 +10 -4
- 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_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/followable_helper.rb +1 -1
- data/app/helpers/decidim/icon_helper.rb +1 -1
- 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/notifications_settings_helper.rb +15 -0
- data/app/helpers/decidim/passwords_helper.rb +41 -0
- data/app/helpers/decidim/sanitize_helper.rb +1 -0
- 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 +2 -2
- data/app/mailers/decidim/newsletters_opt_in_mailer.rb +7 -5
- 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 +86 -2
- 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/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 +5 -0
- data/app/models/decidim/share_token.rb +0 -2
- data/app/models/decidim/short_link.rb +162 -0
- data/app/models/decidim/user.rb +34 -6
- data/app/models/decidim/user_base_entity.rb +1 -1
- data/app/models/decidim/user_group.rb +3 -3
- 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/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/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/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/factory.js +3 -1
- data/app/packs/src/decidim/map/icon.js +2 -1
- data/app/packs/src/decidim/map/legacy.js +2 -2
- data/app/packs/src/decidim/map/svg-icon.js +248 -0
- data/app/packs/src/decidim/map.js +2 -2
- 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/{metrics.js → index.js} +0 -0
- 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/email.scss +66 -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/_cookie-consent.scss +115 -0
- data/app/packs/stylesheets/decidim/modules/_footer.scss +4 -0
- 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/permissions/decidim/permissions.rb +2 -4
- 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/home_stats_presenter.rb +4 -2
- 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_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 +1 -1
- 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 -77
- 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/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 -1
- 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/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/{_document.html.erb → _document.erb} +0 -0
- data/app/views/decidim/application/{_documents.html.erb → _documents.erb} +2 -2
- data/app/views/decidim/application/{_photos.html.erb → _photos.erb} +0 -0
- 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 +5 -5
- 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}/export.html.erb +0 -0
- 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/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/_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/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 +34 -9
- data/app/views/decidim/offline/show.html.erb +9 -0
- data/app/views/decidim/pages/_standalone.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_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/_main_footer.html.erb +1 -0
- data/app/views/layouts/decidim/_offline_banner.html.erb +11 -0
- 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 +48 -36
- data/config/locales/bg.yml +15 -30
- data/config/locales/ca.yml +186 -35
- data/config/locales/cs.yml +186 -33
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +25 -36
- data/config/locales/el.yml +15 -30
- data/config/locales/en.yml +183 -32
- data/config/locales/eo.yml +4 -6
- data/config/locales/es-MX.yml +185 -34
- data/config/locales/es-PY.yml +185 -34
- data/config/locales/es.yml +185 -34
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +15 -36
- data/config/locales/fi-plain.yml +184 -33
- data/config/locales/fi.yml +184 -33
- data/config/locales/fr-CA.yml +170 -33
- data/config/locales/fr.yml +170 -33
- data/config/locales/ga-IE.yml +5 -7
- data/config/locales/gl.yml +47 -30
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +65 -35
- data/config/locales/id-ID.yml +15 -29
- data/config/locales/is-IS.yml +6 -15
- data/config/locales/it.yml +22 -38
- data/config/locales/ja.yml +173 -34
- data/config/locales/ko.yml +1 -0
- data/config/locales/lb.yml +16 -32
- data/config/locales/lt.yml +1 -0
- data/config/locales/lv.yml +15 -28
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +25 -33
- data/config/locales/no.yml +24 -35
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +113 -32
- data/config/locales/pt-BR.yml +17 -32
- data/config/locales/pt.yml +16 -32
- data/config/locales/ro-RO.yml +20 -36
- data/config/locales/ru.yml +15 -27
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +15 -30
- data/config/locales/sl.yml +1 -0
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +1 -0
- data/config/locales/sv.yml +69 -34
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +15 -29
- data/config/locales/uk.yml +15 -26
- data/config/locales/val-ES.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +15 -28
- data/config/locales/zh-TW.yml +1 -0
- data/config/routes.rb +17 -2
- 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/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 +9 -7
- 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 +9 -7
- 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 +29 -18
- data/lib/decidim/core/test/factories.rb +48 -8
- 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 -0
- 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/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/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 +12 -4
- 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 +158 -130
- 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/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/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/processes_file_locally.rb +31 -0
- 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 +11 -0
- 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 +12 -8
- 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 +184 -83
- data/app/controllers/decidim/cookie_policy_controller.rb +0 -24
- data/app/helpers/decidim/cookies_helper.rb +0 -11
- 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/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/lib/decidim/data_portability_serializers.rb +0 -23
- data/lib/decidim/middleware/rails_cookies.rb +0 -23
data/config/locales/pl.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
pl:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -22,6 +23,7 @@ pl:
|
|
|
22
23
|
user:
|
|
23
24
|
about: O użytkowniku
|
|
24
25
|
email: Twój email
|
|
26
|
+
locale: Język
|
|
25
27
|
name: Twoje imię
|
|
26
28
|
nickname: Pseudonim
|
|
27
29
|
password: Hasło
|
|
@@ -34,12 +36,17 @@ pl:
|
|
|
34
36
|
decidim/demoted_membership: Nie jest już administratorem grupy
|
|
35
37
|
decidim/gamification/badge_earned_event: Zdobyta odznaka
|
|
36
38
|
decidim/gamification/level_up_event: Awansowałeś
|
|
39
|
+
decidim/invited_to_group_event: Zaproszono do grupy
|
|
37
40
|
decidim/join_request_accepted_event: Zaakceptowano prośbę o dołączenie
|
|
38
41
|
decidim/join_request_rejected_event: Odrzucono prośbę o dołączenie
|
|
39
42
|
decidim/profile_updated_event: Profil zaktualizowany
|
|
40
43
|
decidim/promote_to_admin: Awansowano na administratora grupy
|
|
44
|
+
decidim/promoted_to_admin_event: Awansowano na administratora grupy
|
|
41
45
|
decidim/removed_from_group: Usunięto z grupy
|
|
42
46
|
decidim/resource_endorsed_event: Zasoby zatwierdzone
|
|
47
|
+
decidim/resource_hidden_event: Zasób ukryty
|
|
48
|
+
decidim/user_group_created_event: Utworzono grupę użytkowników
|
|
49
|
+
decidim/welcome_notification_event: Wiadomość powitalna
|
|
43
50
|
activerecord:
|
|
44
51
|
attributes:
|
|
45
52
|
decidim/user:
|
|
@@ -75,7 +82,8 @@ pl:
|
|
|
75
82
|
'true': 'Tak'
|
|
76
83
|
carrierwave:
|
|
77
84
|
errors:
|
|
78
|
-
|
|
85
|
+
file_resolution_too_large: Rozdzielczość pliku jest zbyt duża
|
|
86
|
+
file_size_too_large: Rozmiar pliku jest zbyt duży
|
|
79
87
|
not_inside_organization: Plik nie jest dołączony do żadnej organizacji
|
|
80
88
|
date:
|
|
81
89
|
formats:
|
|
@@ -84,16 +92,57 @@ pl:
|
|
|
84
92
|
decidim_with_day_and_month_name: "%A %d %b %Y"
|
|
85
93
|
decidim_with_month_name: "%d %B %Y"
|
|
86
94
|
decidim_with_month_name_short: "%d %b"
|
|
95
|
+
datetime:
|
|
96
|
+
distance_in_words:
|
|
97
|
+
about_x_hours:
|
|
98
|
+
one: około 1 godz.
|
|
99
|
+
few: około %{count} godz.
|
|
100
|
+
many: około %{count} godz.
|
|
101
|
+
other: około %{count} godz.
|
|
102
|
+
about_x_months:
|
|
103
|
+
one: około 1 mies.
|
|
104
|
+
few: około %{count} mies.
|
|
105
|
+
many: około %{count} mies.
|
|
106
|
+
other: około %{count} mies.
|
|
107
|
+
half_a_minute: pół minuty
|
|
108
|
+
less_than_x_minutes:
|
|
109
|
+
one: mniej niż min.
|
|
110
|
+
few: mniej niż %{count} min.
|
|
111
|
+
many: mniej niż %{count} min.
|
|
112
|
+
other: mniej niż %{count} min.
|
|
113
|
+
less_than_x_seconds:
|
|
114
|
+
one: teraz
|
|
115
|
+
few: mniej niż %{count} min.
|
|
116
|
+
many: mniej niż %{count} min.
|
|
117
|
+
other: mniej niż %{count} min.
|
|
118
|
+
x_days:
|
|
119
|
+
one: 1 dzień temu
|
|
120
|
+
few: "%{count} dni temu"
|
|
121
|
+
many: "%{count} dni temu"
|
|
122
|
+
other: "%{count} dni temu"
|
|
123
|
+
x_hours:
|
|
124
|
+
one: 1 godzinę temu
|
|
125
|
+
few: "%{count} godzin temu"
|
|
126
|
+
many: "%{count} godzin temu"
|
|
127
|
+
other: "%{count} godzin temu"
|
|
128
|
+
x_minutes:
|
|
129
|
+
one: 1 min. temu
|
|
130
|
+
few: "%{count} min. temu"
|
|
131
|
+
many: "%{count} min. temu"
|
|
132
|
+
other: "%{count} min. temu"
|
|
133
|
+
x_seconds:
|
|
134
|
+
one: 1 sek. temu
|
|
135
|
+
few: "%{count} sek. temu"
|
|
136
|
+
many: "%{count} sek. temu"
|
|
137
|
+
other: "%{count} sek. temu"
|
|
87
138
|
decidim:
|
|
88
139
|
accessibility:
|
|
89
140
|
external_link: Link zewnętrzny
|
|
141
|
+
front_page_link: Przejdź do strony głównej
|
|
90
142
|
logo: "Oficjalne logo %{organization}"
|
|
91
143
|
skip_button: Przejdź do głównej zawartości
|
|
92
144
|
account:
|
|
93
145
|
blocked: To konto zostało zablokowane z powodu naruszenia Regulaminu
|
|
94
|
-
data_portability_export:
|
|
95
|
-
file_no_exists: Plik nie istnieje
|
|
96
|
-
notice: Twoje dane są obecnie w trakcie procesowania w celu pobrania. Otrzymasz e-mail po zakończeniu.
|
|
97
146
|
delete:
|
|
98
147
|
alert: Tej czynności nie można cofnąć. Jeśli usuniesz swoje konto, nie będziesz mógł zalogować się za pomocą swoich danych. Usunięcie Twojego konta spowoduje, że cała Twoja aktywność w portalu stanie się anonimowa. Nadal będziesz mógł utworzyć nowe konto, ale Twoje dotychczasowe zasoby nie będą już z nim powiązane.
|
|
99
148
|
confirm:
|
|
@@ -105,7 +154,21 @@ pl:
|
|
|
105
154
|
destroy:
|
|
106
155
|
error: Podczas usuwania Twojego konta wystąpił błąd.
|
|
107
156
|
success: Twoje konto zostało pomyślnie usunięte.
|
|
157
|
+
download_your_data_export:
|
|
158
|
+
file_no_exists: Plik nie istnieje
|
|
159
|
+
notice: Twoje dane są obecnie w trakcie procesowania w celu pobrania. Otrzymasz e-mail po zakończeniu.
|
|
160
|
+
email_change:
|
|
161
|
+
body1: Wysłaliśmy wiadomość e-mail do %{unconfirmed_email}, aby zweryfikować Twój nowy adres e-mail.
|
|
162
|
+
body2: Wysłać e-mail weryfikacyjny ponownie? %{resend_link} lub %{cancel_link}.
|
|
163
|
+
cancel: anuluj
|
|
164
|
+
cancel_error: Nie można anulować zmiany adresu e-mail.
|
|
165
|
+
cancel_successfully: Zmiana adresu e-mail została anulowana.
|
|
166
|
+
resend_error: Nie można wysłać ponownie e-maila z potwierdzeniem.
|
|
167
|
+
resend_successfully: E-mail potwierdzający wysłany pomyślnie do %{unconfirmed_email}
|
|
168
|
+
send_again: Wyślij ponownie
|
|
169
|
+
title: Weryfikacja zmiany adresu e-mail
|
|
108
170
|
show:
|
|
171
|
+
available_locales_helper: Wybierz język, którego chcesz używać do przeglądania i odbierania powiadomień na platformie
|
|
109
172
|
change_password: Zmień hasło
|
|
110
173
|
update_account: Zaktualizuj konto
|
|
111
174
|
update:
|
|
@@ -120,11 +183,36 @@ pl:
|
|
|
120
183
|
create: "%{user_name} utworzył(a) kategorię %{resource_name}"
|
|
121
184
|
delete: "%{user_name} usunął/usunęła kategorię %{resource_name}"
|
|
122
185
|
update: "%{user_name} zaktualizował(a) kategorię %{resource_name}"
|
|
186
|
+
area_type:
|
|
187
|
+
create: "%{user_name} utworzył typ obszaru %{resource_name}"
|
|
188
|
+
delete: "%{user_name} usunął typ obszaru %{resource_name}"
|
|
189
|
+
update: "%{user_name} zaktualizował typ obszaru %{resource_name}"
|
|
190
|
+
attachment:
|
|
191
|
+
create: "%{user_name} utworzył załącznik %{resource_name}"
|
|
192
|
+
delete: "%{user_name} usunął załącznik %{resource_name}"
|
|
193
|
+
update: "%{user_name} zaktualizował załącznik %{resource_name}"
|
|
194
|
+
attachment_collection:
|
|
195
|
+
create: "%{user_name} utworzył kolekcję załączników %{resource_name}"
|
|
196
|
+
delete: "%{user_name} usunął kolekcję załączników %{resource_name}"
|
|
197
|
+
update: "%{user_name} zaktualizował kolekcję załączników %{resource_name}"
|
|
198
|
+
category:
|
|
199
|
+
create: "%{user_name} dodał kategorię %{resource_name} do przestrzeni %{space_name}"
|
|
200
|
+
delete: "%{user_name} usunął kategorię %{resource_name} z przestrzeni %{space_name}"
|
|
201
|
+
update: "%{user_name} zaktualizował kategorię %{resource_name} w przestrzeni %{space_name}"
|
|
123
202
|
component:
|
|
124
203
|
create: "%{user_name} dodał(a) komponent %{resource_name} do przestrzeni %{space_name}"
|
|
125
204
|
delete: "%{user_name} usunął/usunęła komponent %{resource_name} z przestrzeni %{space_name}"
|
|
205
|
+
export_component: "%{user_name} wyeksportował %{resource_name} %{component_name} w %{space_name} jako %{format_name}"
|
|
126
206
|
publish: "%{user_name} opublikował(a) komponent %{resource_name} w przestrzeni %{space_name}"
|
|
127
207
|
unpublish: "%{user_name} cofnął/cofnęła publikację komponentu %{resource_name} w przestrzeni %{space_name}"
|
|
208
|
+
update_permissions_with_space: "%{user_name} zaktualizował uprawnienia %{resource_name} w %{space_name}"
|
|
209
|
+
contextual_help_section:
|
|
210
|
+
update: "%{user_name} zaktualizował %{resource_name} dział pomocy"
|
|
211
|
+
helpers:
|
|
212
|
+
answers: odpowiedzi
|
|
213
|
+
comments: komentarze
|
|
214
|
+
projects: projekty
|
|
215
|
+
results: wyniki
|
|
128
216
|
impersonation_log:
|
|
129
217
|
manage: "%{user_name} zarządził %{resource_name} ponieważ %{reason}"
|
|
130
218
|
moderation:
|
|
@@ -141,6 +229,7 @@ pl:
|
|
|
141
229
|
update: "%{user_name} zaktualizował(a) aplikację OAuth %{resource_name}"
|
|
142
230
|
organization:
|
|
143
231
|
update: "%{user_name} zaktualizował(a) ustawienia organizacji"
|
|
232
|
+
update_external_domain: "%{user_name} zaktualizował zewnętrzne domeny organizacji"
|
|
144
233
|
participatory_space_private_user:
|
|
145
234
|
create: "%{user_name} zaprosił(a) %{resource_name} jako użytkownika prywatnego"
|
|
146
235
|
create_via_csv: "%{user_name} zaprosił(a) %{resource_name} jako prywatnego użytkownika poprzez CSV"
|
|
@@ -152,6 +241,9 @@ pl:
|
|
|
152
241
|
delete_with_parent: "%{user_name} usunął/usunęła zakres podrzędny %{resource_name} w zakresie %{parent_scope}"
|
|
153
242
|
update: "%{user_name} zaktualizował(a) zakres %{resource_name}"
|
|
154
243
|
update_with_parent: "%{user_name} zaktualizował(a) zakres podrzędny %{resource_name} w zakresie %{parent_scope}"
|
|
244
|
+
scope_type:
|
|
245
|
+
create: "%{user_name} utworzył(a) zakres %{resource_name}"
|
|
246
|
+
delete: "%{user_name} usunął(ęła) zakres %{resource_name}"
|
|
155
247
|
static_page:
|
|
156
248
|
create: "%{user_name} stworzył(a) stronę statyczną %{resource_name}"
|
|
157
249
|
delete: "%{user_name} usunął/usunęła stronę statyczną %{resource_name}"
|
|
@@ -386,8 +478,8 @@ pl:
|
|
|
386
478
|
amendments_enabled: Poprawki dozwolone
|
|
387
479
|
comments_enabled: Komentarze włączone
|
|
388
480
|
comments_max_length: Maksymalna długość komentarzy
|
|
389
|
-
|
|
390
|
-
|
|
481
|
+
dummy_global_attribute1: Przykładowy atrybut 1
|
|
482
|
+
dummy_global_attribute2: Przykładowy atrybut 2
|
|
391
483
|
dummy_global_translatable_text: Przykładowy tekst do tłumaczenia
|
|
392
484
|
enable_pads_creation: Włącz tworzenie padów
|
|
393
485
|
resources_permissions_enabled: Włączono uprawnienia do zasobów
|
|
@@ -399,8 +491,8 @@ pl:
|
|
|
399
491
|
amendment_reaction_enabled: Odpowiadanie na poprawki włączone
|
|
400
492
|
amendments_visibility: Widoczność poprawek
|
|
401
493
|
comments_blocked: Komentarze zablokowane
|
|
402
|
-
|
|
403
|
-
|
|
494
|
+
dummy_step_attribute1: Przykładowy atrybut etapu 1
|
|
495
|
+
dummy_step_attribute2: Przykładowy atrybut etapu 2
|
|
404
496
|
dummy_step_translatable_text: Przykładowy tekst etapu do tłumaczenia
|
|
405
497
|
contact: Kontakt
|
|
406
498
|
content_blocks:
|
|
@@ -444,13 +536,6 @@ pl:
|
|
|
444
536
|
actions:
|
|
445
537
|
login_before_access: Zaloguj się na swoje konto, żeby mieć dostęp
|
|
446
538
|
unauthorized: Nie masz uprawnień do wykonania tej czynności
|
|
447
|
-
data_portability:
|
|
448
|
-
export:
|
|
449
|
-
ready: Gotowy
|
|
450
|
-
show:
|
|
451
|
-
download_data: Pobierz dane
|
|
452
|
-
download_data_description: Plik zawierający wszystkie informacje związane z Twoim kontem zostanie wysłany do <strong>%{user_email}</strong>. E-mail będzie zawierał plik .zip i hasło, aby go otworzyć.<br/><br/>Aby rozpakować plik, będziesz potrzebował <a href="https://www.7-zip.org/">7-Zip</a> (Windows) lub <a href="https://www.keka.io/">Keka</a> (MacOS). Jeśli używasz systemu Linux, w większości przypadków program będziesz miał zainstalowany domyślnie. Jeśli nie, możesz użyć programów <a href="https://gitlab.gnome.org/GNOME/file-roller">File Roller</a> lub <a href="https://peazip.github.io">PeaZip</a>.
|
|
453
|
-
request_data: Poproś o dane
|
|
454
539
|
datepicker:
|
|
455
540
|
help_text: 'Oczekiwany format: %{datepicker_format}'
|
|
456
541
|
devise:
|
|
@@ -469,7 +554,6 @@ pl:
|
|
|
469
554
|
newsletter: Chcę otrzymywać okazjonalne newslettery z istotnymi informacjami
|
|
470
555
|
newsletter_title: Zgoda na subskrybcję
|
|
471
556
|
nickname_help: Twój pseudonim w %{organization}. Może zawierać tylko litery, cyfry, '-' i '_'.
|
|
472
|
-
password_help: "Minimalna liczba znaków: %{minimun_characters}; nie może być zbyt powszechne (np. 123456) i musi różnić się od Twojego pseudonimu i adresu e-mail."
|
|
473
557
|
sign_in: Zaloguj się
|
|
474
558
|
sign_up: Zarejestruj się
|
|
475
559
|
sign_up_as:
|
|
@@ -518,6 +602,13 @@ pl:
|
|
|
518
602
|
this_application_will_not_be_able_to: 'Ta aplikacja nie będzie mogła:'
|
|
519
603
|
update_profile: Zaktualizuj swój profil
|
|
520
604
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> chce używać Twojego konta"
|
|
605
|
+
download_your_data:
|
|
606
|
+
export:
|
|
607
|
+
ready: Gotowy
|
|
608
|
+
show:
|
|
609
|
+
download_data: Pobierz dane
|
|
610
|
+
download_data_description: Plik zawierający wszystkie informacje związane z Twoim kontem zostanie wysłany do <strong>%{user_email}</strong>. E-mail będzie zawierał plik .zip i hasło, aby go otworzyć.<br/><br/>Aby rozpakować plik, będziesz potrzebował <a href="https://www.7-zip.org/">7-Zip</a> (Windows) lub <a href="https://www.keka.io/">Keka</a> (MacOS). Jeśli używasz systemu Linux, w większości przypadków program będziesz miał zainstalowany domyślnie. Jeśli nie, możesz użyć programów <a href="https://gitlab.gnome.org/GNOME/file-roller">File Roller</a> lub <a href="https://peazip.github.io">PeaZip</a>.
|
|
611
|
+
request_data: Poproś o dane
|
|
521
612
|
endorsable:
|
|
522
613
|
endorsements: Rekomendacje
|
|
523
614
|
endorsements_count: Liczba rekomendacji
|
|
@@ -678,7 +769,7 @@ pl:
|
|
|
678
769
|
email_subject: "%{nickname} zaktualizował(a) swój profil"
|
|
679
770
|
notification_title: Zaktualizowano <a href="%{resource_path}">stronę profilową</a> użytkownika %{name} (%{nickname}), którego obserwujesz.
|
|
680
771
|
export_mailer:
|
|
681
|
-
|
|
772
|
+
download_your_data_export:
|
|
682
773
|
click_button: 'Kliknij poniższy przycisk, aby pobrać swoje dane. <br/>Plik będzie dostępny do %{date}. <br/>Będziesz potrzebował <a href=''''https://www.7-zip.org/''''>7-Zip</a> (Windows), <a href="https://www.keka.io/en/">Keka</a> (MacOS) lub <a href="https://peazip.github.io">PeaZip</a> (Linux) do otwarcia pliku. Hasło: %{password}'
|
|
683
774
|
download: Pobieranie
|
|
684
775
|
export:
|
|
@@ -719,7 +810,6 @@ pl:
|
|
|
719
810
|
button: Przestań obserwować
|
|
720
811
|
error: Nastąpił błąd podczas cofania obserwowania tego zasobu.
|
|
721
812
|
forms:
|
|
722
|
-
current_file: Bieżący plik
|
|
723
813
|
current_image: Bieżący obraz
|
|
724
814
|
default_image: Domyślny obraz
|
|
725
815
|
errors:
|
|
@@ -731,7 +821,6 @@ pl:
|
|
|
731
821
|
file:
|
|
732
822
|
explanation: 'Wytyczne dotyczące pliku:'
|
|
733
823
|
message_1: Ma być obrazem lub dokumentem.
|
|
734
|
-
message_2: Jako obrazów używaj najlepiej krajobrazów, obraz jest docinany automatycznie. Dla plików CSV separatorem kolumn musi być przecinek (",")
|
|
735
824
|
image:
|
|
736
825
|
explanation: 'Wytyczne dotyczące obrazu:'
|
|
737
826
|
message_1: Preferowany obraz krajobrazu, który nie zawiera żadnego tekstu.
|
|
@@ -739,7 +828,6 @@ pl:
|
|
|
739
828
|
file_validation:
|
|
740
829
|
allowed_file_extensions: 'Dozwolone rozszerzenia plików: %{extensions}'
|
|
741
830
|
max_file_size: 'Maksymalny rozmiar pliku: %{megabytes}MB'
|
|
742
|
-
remove_this_file: Usuń ten plik
|
|
743
831
|
gamification:
|
|
744
832
|
all_badges_link: Zobacz wszystkie dostępne odznaki.
|
|
745
833
|
badges:
|
|
@@ -852,7 +940,6 @@ pl:
|
|
|
852
940
|
no_user_groups: Nie należy jeszcze do żadnej grupy.
|
|
853
941
|
roles:
|
|
854
942
|
admin: Administrator
|
|
855
|
-
creator: Twórca
|
|
856
943
|
member: Członek
|
|
857
944
|
update:
|
|
858
945
|
error: Wystąpił błąd podczas aktualizacji grupy
|
|
@@ -1047,19 +1134,20 @@ pl:
|
|
|
1047
1134
|
subject: Czy chcesz nadal otrzymywać istotne informacje o %{organization_name}?
|
|
1048
1135
|
notifications:
|
|
1049
1136
|
no_notifications: Brak powiadomień.
|
|
1137
|
+
notifications_digest_mailer:
|
|
1138
|
+
header:
|
|
1139
|
+
weekly: Podsumowanie Cotygodniowych Powiadomień
|
|
1140
|
+
hello: Witaj %{name},
|
|
1050
1141
|
notifications_settings:
|
|
1051
1142
|
show:
|
|
1052
1143
|
administrators: Administratorzy
|
|
1053
1144
|
allow_public_contact: Każdy może wysłać mi prywatną wiadomość, nawet jeśli go nie obserwuję.
|
|
1054
1145
|
direct_messages: Przyjmuj prywatne wiadomości od każdego
|
|
1055
|
-
email_on_moderations: Chcę otrzymywać e-mail za każdym razem, gdy coś jest zgłaszane do moderacji.
|
|
1056
|
-
email_on_notification: Chcę otrzymywać wiadomości e-mail za każdym razem gdy otrzymuję powiadomienie.
|
|
1057
1146
|
everything_followed: Dotyczące wszystkiego, co obserwuję
|
|
1058
1147
|
newsletter_notifications: Chcę otrzymywać newslettery
|
|
1059
1148
|
newsletters: Newslettery
|
|
1060
1149
|
own_activity: Dotyczące moich własnych działań, np. kiedy ktoś komentuje moją propozycję lub wspomina o mnie
|
|
1061
1150
|
receive_notifications_about: Chcę otrzymywać powiadomienia
|
|
1062
|
-
send_notifications_by_email: Wysyłaj powiadomienia pocztą e-mail
|
|
1063
1151
|
update_notifications_settings: Zapisz zmiany
|
|
1064
1152
|
update:
|
|
1065
1153
|
error: Podczas aktualizowania ustawień powiadomień wystąpił błąd.
|
|
@@ -1117,7 +1205,6 @@ pl:
|
|
|
1117
1205
|
agreement: Akceptuję Regulamin
|
|
1118
1206
|
legend: Zgadzam się z warunkami użytkowania
|
|
1119
1207
|
refuse:
|
|
1120
|
-
modal_body: Jeśli odmówisz, nie będziesz mógł korzystać z platformy, możesz <a href="%{data_portability_path}">pobrać swoje dane</a> i/lub <a href="%{delete_path}">usunąć konto</a>.
|
|
1121
1208
|
modal_btn_continue: Zaakceptuj warunki i kontynuuj
|
|
1122
1209
|
modal_btn_exit: Sprawdzę to później
|
|
1123
1210
|
modal_button: Odrzuć warunki
|
|
@@ -1417,7 +1504,6 @@ pl:
|
|
|
1417
1504
|
invitations:
|
|
1418
1505
|
edit:
|
|
1419
1506
|
header: Zakończ tworzenie konta
|
|
1420
|
-
nickname_help: Twój unikalny identyfikator w %{organization}.
|
|
1421
1507
|
submit_button: Zapisz
|
|
1422
1508
|
subtitle: Jeśli akceptujesz zaproszenie, ustaw swój pseudonim i hasło.
|
|
1423
1509
|
invitation_removed: Twoje zaproszenie zostało usunięte.
|
|
@@ -1484,7 +1570,6 @@ pl:
|
|
|
1484
1570
|
passwords:
|
|
1485
1571
|
edit:
|
|
1486
1572
|
change_my_password: Zmień moje hasło
|
|
1487
|
-
change_your_password: Zmień swoje hasło
|
|
1488
1573
|
confirm_new_password: Potwierdź nowe hasło
|
|
1489
1574
|
new_password: Nowe hasło
|
|
1490
1575
|
password_help: "Minimalna liczba znaków: %{minimun_characters}; nie może być zbyt powszechne (np. 123456) i musi różnić się od Twojego pseudonimu i adresu e-mail."
|
|
@@ -1565,7 +1650,7 @@ pl:
|
|
|
1565
1650
|
other: 'Podczas przetwarzania Twojego żądania wystąpiły błędy:'
|
|
1566
1651
|
too_many_marks: używa zbyt wielu kolejnych znaków interpunkcyjnych (np.! i?)
|
|
1567
1652
|
too_much_caps: używa zbyt dużej liczby wielkich liter (ponad 25% tekstu)
|
|
1568
|
-
too_short: jest za
|
|
1653
|
+
too_short: jest za krótkie
|
|
1569
1654
|
forms:
|
|
1570
1655
|
correct_errors: Wystąpiły błędy w formularzu, popraw je, aby kontynuować.
|
|
1571
1656
|
length_validator:
|
|
@@ -1581,10 +1666,6 @@ pl:
|
|
|
1581
1666
|
timestamp_error_message: Przepraszam, to było za szybkie! Proszę przesłać ponownie.
|
|
1582
1667
|
layouts:
|
|
1583
1668
|
decidim:
|
|
1584
|
-
cookie_warning:
|
|
1585
|
-
description_html: Ta strona używa plików cookie. Kontynuując przeglądanie witryny, zgadzasz się na korzystanie z plików cookie. Dowiedz się więcej o tym %{link}.
|
|
1586
|
-
link_label: Dowiedz się więcej o plikach cookie
|
|
1587
|
-
ok: Zgadzam się
|
|
1588
1669
|
edit_link:
|
|
1589
1670
|
edit: Edytuj
|
|
1590
1671
|
footer:
|
data/config/locales/pt-BR.yml
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
---
|
|
2
|
+
pt:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
4
5
|
account:
|
|
@@ -67,7 +68,6 @@ pt-BR:
|
|
|
67
68
|
'true': 'Sim'
|
|
68
69
|
carrierwave:
|
|
69
70
|
errors:
|
|
70
|
-
image_too_big: A imagem é muito grande
|
|
71
71
|
not_inside_organization: O arquivo não está anexado a nenhuma organização
|
|
72
72
|
date:
|
|
73
73
|
formats:
|
|
@@ -83,9 +83,6 @@ pt-BR:
|
|
|
83
83
|
skip_button: Pular para o conteúdo principal
|
|
84
84
|
account:
|
|
85
85
|
blocked: Esta conta foi bloqueada devido a violação de Termos e Condições
|
|
86
|
-
data_portability_export:
|
|
87
|
-
file_no_exists: O arquivo não existe
|
|
88
|
-
notice: Seus dados estão atualmente em andamento. Você receberá um e-mail quando estiver concluído.
|
|
89
86
|
delete:
|
|
90
87
|
alert: Esta ação não pode ser desfeita. Se você excluir sua conta, não poderá fazer login com suas credenciais. A exclusão da sua conta resultará em anonimato das suas contribuições. Você ainda poderá criar uma nova conta, mas estas contribuições não serão associadas a ela.
|
|
91
88
|
confirm:
|
|
@@ -97,6 +94,9 @@ pt-BR:
|
|
|
97
94
|
destroy:
|
|
98
95
|
error: Ocorreu um erro ao cancelar a sua conta.
|
|
99
96
|
success: Sua conta foi excluída.
|
|
97
|
+
download_your_data_export:
|
|
98
|
+
file_no_exists: O arquivo não existe
|
|
99
|
+
notice: Seus dados estão atualmente em andamento. Você receberá um e-mail quando estiver concluído.
|
|
100
100
|
show:
|
|
101
101
|
change_password: Mudar senha
|
|
102
102
|
update_account: Atualizar conta
|
|
@@ -374,8 +374,8 @@ pt-BR:
|
|
|
374
374
|
amendments_enabled: Alterações ativadas
|
|
375
375
|
comments_enabled: Comentários ativados
|
|
376
376
|
comments_max_length: Comprimento máximo de comentários
|
|
377
|
-
|
|
378
|
-
|
|
377
|
+
dummy_global_attribute1: Dummy Atributo 1
|
|
378
|
+
dummy_global_attribute2: Dummy Attribute 2
|
|
379
379
|
dummy_global_translatable_text: Texto Tradutor Falso
|
|
380
380
|
enable_pads_creation: Ativar criação de blocos
|
|
381
381
|
resources_permissions_enabled: Permissões de recursos ativadas
|
|
@@ -387,8 +387,8 @@ pt-BR:
|
|
|
387
387
|
amendment_reaction_enabled: Reação da alteração habilitada
|
|
388
388
|
amendments_visibility: Visibilidade das alterações
|
|
389
389
|
comments_blocked: Comentários bloqueados
|
|
390
|
-
|
|
391
|
-
|
|
390
|
+
dummy_step_attribute1: Dummy Step Attribute 1
|
|
391
|
+
dummy_step_attribute2: Dummy Step Attribute 2
|
|
392
392
|
dummy_step_translatable_text: Texto traduzível de Etapa falso
|
|
393
393
|
contact: Contato
|
|
394
394
|
content_blocks:
|
|
@@ -432,13 +432,6 @@ pt-BR:
|
|
|
432
432
|
actions:
|
|
433
433
|
login_before_access: Faça o login com sua conta antes de acessar
|
|
434
434
|
unauthorized: Não está autorizado a realizar esta ação
|
|
435
|
-
data_portability:
|
|
436
|
-
export:
|
|
437
|
-
ready: pronto
|
|
438
|
-
show:
|
|
439
|
-
download_data: Baixe os dados
|
|
440
|
-
download_data_description: Um arquivo contendo todas as informações associadas à sua conta será enviado para <strong>%{user_email}</strong>. Este e-mail conterá um arquivo .zip e uma senha para abri-lo.<br/><br/>Para descompactar o arquivo, você precisará de <a href="https://www.7-zip.org/">7-Zip</a> (para Windows) ou <a href="https://www.keka.io/">Keka</a> (para MacOS). Se você usar Linux, a maior parte do tempo você o terá instalado por padrão. Se não, você pode usar <a href="https://gitlab.gnome.org/GNOME/file-roller">Rolagem de Arquivos</a> ou <a href="https://peazip.github.io">PeaZip</a>. ).
|
|
441
|
-
request_data: Solicitar dados
|
|
442
435
|
datepicker:
|
|
443
436
|
help_text: 'Formato esperado: %{datepicker_format}'
|
|
444
437
|
devise:
|
|
@@ -457,7 +450,6 @@ pt-BR:
|
|
|
457
450
|
newsletter: Receba um boletim informativo ocasional com informações relevantes
|
|
458
451
|
newsletter_title: Permissão de contato
|
|
459
452
|
nickname_help: Seu alias em %{organization}. Só pode conter letras, números, '-' e '_'.
|
|
460
|
-
password_help: "O mínimo de %{minimun_characters} caracteres, não deve ser muito comum (por exemplo, 123456) e deve ser diferente do seu apelido e do seu email."
|
|
461
453
|
sign_in: Iniciar sessão
|
|
462
454
|
sign_up: Inscreva-se
|
|
463
455
|
sign_up_as:
|
|
@@ -506,6 +498,13 @@ pt-BR:
|
|
|
506
498
|
this_application_will_not_be_able_to: 'Esta aplicação não poderá:'
|
|
507
499
|
update_profile: atualize seu perfil
|
|
508
500
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> quer usar sua conta"
|
|
501
|
+
download_your_data:
|
|
502
|
+
export:
|
|
503
|
+
ready: pronto
|
|
504
|
+
show:
|
|
505
|
+
download_data: Baixe os dados
|
|
506
|
+
download_data_description: Um arquivo contendo todas as informações associadas à sua conta será enviado para <strong>%{user_email}</strong>. Este e-mail conterá um arquivo .zip e uma senha para abri-lo.<br/><br/>Para descompactar o arquivo, você precisará de <a href="https://www.7-zip.org/">7-Zip</a> (para Windows) ou <a href="https://www.keka.io/">Keka</a> (para MacOS). Se você usar Linux, a maior parte do tempo você o terá instalado por padrão. Se não, você pode usar <a href="https://gitlab.gnome.org/GNOME/file-roller">Rolagem de Arquivos</a> ou <a href="https://peazip.github.io">PeaZip</a>. ).
|
|
507
|
+
request_data: Solicitar dados
|
|
509
508
|
endorsable:
|
|
510
509
|
endorsements: Avais
|
|
511
510
|
endorsements_count: Contagem de endossos
|
|
@@ -666,7 +665,7 @@ pt-BR:
|
|
|
666
665
|
email_subject: "%{nickname} atualizaram seu perfil"
|
|
667
666
|
notification_title: O <a href="%{resource_path}">profile page</a> de %{name} (%{nickname}), quem você está seguindo, foi atualizado.
|
|
668
667
|
export_mailer:
|
|
669
|
-
|
|
668
|
+
download_your_data_export:
|
|
670
669
|
click_button: 'Clique no próximo link para baixar seus dados.<br/>O arquivo estará disponível até %{date}.<br/>Você vai precisar de <a href="https://www.7-zip.org/">7-Zip</a> (para Windows), <a href="https://www.keka.io/en/">Keka</a> (para MacOS) ou <a href="https://peazip.github.io">PeaZip</a> (para Linux) para abri-lo. Senha: %{password}'
|
|
671
670
|
download: Download
|
|
672
671
|
export:
|
|
@@ -705,7 +704,6 @@ pt-BR:
|
|
|
705
704
|
button: Parar de seguir
|
|
706
705
|
error: Ocorreu um erro ao seguir esse recurso.
|
|
707
706
|
forms:
|
|
708
|
-
current_file: Ficheiro atual
|
|
709
707
|
current_image: Imagem actual
|
|
710
708
|
default_image: Imagem por defeito
|
|
711
709
|
errors:
|
|
@@ -717,7 +715,6 @@ pt-BR:
|
|
|
717
715
|
file:
|
|
718
716
|
explanation: 'Orientação para o arquivo:'
|
|
719
717
|
message_1: Tem que ser uma imagem ou um documento.
|
|
720
|
-
message_2: Para imagens, use de preferência imagens de paisagem, o serviço cultiva a imagem. Para arquivos CSV, o separador entre colunas deve ser uma vírgula (",")
|
|
721
718
|
image:
|
|
722
719
|
explanation: 'Orientação da imagem:'
|
|
723
720
|
message_1: Preferencialmente, uma imagem de paisagem que não tem nenhum texto.
|
|
@@ -725,7 +722,6 @@ pt-BR:
|
|
|
725
722
|
file_validation:
|
|
726
723
|
allowed_file_extensions: 'Extensões de arquivo permitidas: %{extensions}'
|
|
727
724
|
max_file_size: 'Tamanho máximo de arquivo: %{megabytes}MB'
|
|
728
|
-
remove_this_file: Remover este ficheiro
|
|
729
725
|
gamification:
|
|
730
726
|
all_badges_link: Veja todos os emblemas disponíveis.
|
|
731
727
|
badges:
|
|
@@ -838,7 +834,6 @@ pt-BR:
|
|
|
838
834
|
no_user_groups: Não pertence a nenhum grupo ainda.
|
|
839
835
|
roles:
|
|
840
836
|
admin: Administrador
|
|
841
|
-
creator: Autor
|
|
842
837
|
member: Membro
|
|
843
838
|
update:
|
|
844
839
|
error: Houve um problema ao atualizar o grupo
|
|
@@ -1042,14 +1037,11 @@ pt-BR:
|
|
|
1042
1037
|
administrators: Administradores
|
|
1043
1038
|
allow_public_contact: Permita que qualquer pessoa me envie uma mensagem direta, mesmo que eu não as siga.
|
|
1044
1039
|
direct_messages: Receber mensagens diretas de qualquer pessoa
|
|
1045
|
-
email_on_moderations: Quero receber um e-mail sempre que houver um relatório de moderação.
|
|
1046
|
-
email_on_notification: Quero receber um email sempre que recebo uma notificação.
|
|
1047
1040
|
everything_followed: Tudo que eu sigo
|
|
1048
1041
|
newsletter_notifications: Quero receber boletins informativos
|
|
1049
1042
|
newsletters: boletins informativos
|
|
1050
1043
|
own_activity: Minha atividade, como quando alguém comenta minha proposta ou me menciona
|
|
1051
1044
|
receive_notifications_about: Quero receber notificações sobre
|
|
1052
|
-
send_notifications_by_email: Enviar notificações por email
|
|
1053
1045
|
update_notifications_settings: Guardar alterações
|
|
1054
1046
|
update:
|
|
1055
1047
|
error: Ocorreu um erro ao atualizar suas configurações de notificações.
|
|
@@ -1107,7 +1099,6 @@ pt-BR:
|
|
|
1107
1099
|
agreement: Concordo com estes termos
|
|
1108
1100
|
legend: Concorde com os termos e condições de uso
|
|
1109
1101
|
refuse:
|
|
1110
|
-
modal_body: Se recusar, você não será capaz de usar a plataforma, você pode <a href="%{data_portability_path}">baixar seus dados</a> e / ou <a href="%{delete_path}">excluir sua conta</a>.
|
|
1111
1102
|
modal_btn_continue: Aceite os termos e continue
|
|
1112
1103
|
modal_btn_exit: Vou revisá-lo mais tarde
|
|
1113
1104
|
modal_button: Recuse os termos
|
|
@@ -1409,7 +1400,6 @@ pt-BR:
|
|
|
1409
1400
|
invitations:
|
|
1410
1401
|
edit:
|
|
1411
1402
|
header: Termine de criar sua conta
|
|
1412
|
-
nickname_help: Seu identificador exclusivo em %{organization}.
|
|
1413
1403
|
submit_button: Salvar
|
|
1414
1404
|
subtitle: Se você aceitar o convite, defina seu apelido e senha.
|
|
1415
1405
|
invitation_removed: Seu convite foi removido.
|
|
@@ -1476,7 +1466,6 @@ pt-BR:
|
|
|
1476
1466
|
passwords:
|
|
1477
1467
|
edit:
|
|
1478
1468
|
change_my_password: Mudar minha senha
|
|
1479
|
-
change_your_password: Mude sua senha
|
|
1480
1469
|
confirm_new_password: Confirme a nova senha
|
|
1481
1470
|
new_password: Nova senha
|
|
1482
1471
|
password_help: "O mínimo de %{minimun_characters} caracteres, não deve ser muito comum (por exemplo, 123456) e deve ser diferente do seu apelido e do seu email."
|
|
@@ -1567,10 +1556,6 @@ pt-BR:
|
|
|
1567
1556
|
timestamp_error_message: Desculpe, isso foi muito rápido! Reenvie.
|
|
1568
1557
|
layouts:
|
|
1569
1558
|
decidim:
|
|
1570
|
-
cookie_warning:
|
|
1571
|
-
description_html: Este site usa cookies. Ao continuar a navegar no site, você concorda com o uso de cookies. Saiba mais sobre isso %{link}.
|
|
1572
|
-
link_label: aqui
|
|
1573
|
-
ok: Concordo
|
|
1574
1559
|
edit_link:
|
|
1575
1560
|
edit: Editar
|
|
1576
1561
|
footer:
|