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/pl.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
pl:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -81,7 +82,8 @@ pl:
|
|
81
82
|
'true': 'Tak'
|
82
83
|
carrierwave:
|
83
84
|
errors:
|
84
|
-
|
85
|
+
file_resolution_too_large: Rozdzielczość pliku jest zbyt duża
|
86
|
+
file_size_too_large: Rozmiar pliku jest zbyt duży
|
85
87
|
not_inside_organization: Plik nie jest dołączony do żadnej organizacji
|
86
88
|
date:
|
87
89
|
formats:
|
@@ -103,6 +105,36 @@ pl:
|
|
103
105
|
many: około %{count} mies.
|
104
106
|
other: około %{count} mies.
|
105
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"
|
106
138
|
decidim:
|
107
139
|
accessibility:
|
108
140
|
external_link: Link zewnętrzny
|
@@ -111,9 +143,6 @@ pl:
|
|
111
143
|
skip_button: Przejdź do głównej zawartości
|
112
144
|
account:
|
113
145
|
blocked: To konto zostało zablokowane z powodu naruszenia Regulaminu
|
114
|
-
data_portability_export:
|
115
|
-
file_no_exists: Plik nie istnieje
|
116
|
-
notice: Twoje dane są obecnie w trakcie procesowania w celu pobrania. Otrzymasz e-mail po zakończeniu.
|
117
146
|
delete:
|
118
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.
|
119
148
|
confirm:
|
@@ -125,7 +154,21 @@ pl:
|
|
125
154
|
destroy:
|
126
155
|
error: Podczas usuwania Twojego konta wystąpił błąd.
|
127
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
|
128
170
|
show:
|
171
|
+
available_locales_helper: Wybierz język, którego chcesz używać do przeglądania i odbierania powiadomień na platformie
|
129
172
|
change_password: Zmień hasło
|
130
173
|
update_account: Zaktualizuj konto
|
131
174
|
update:
|
@@ -140,11 +183,36 @@ pl:
|
|
140
183
|
create: "%{user_name} utworzył(a) kategorię %{resource_name}"
|
141
184
|
delete: "%{user_name} usunął/usunęła kategorię %{resource_name}"
|
142
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}"
|
143
202
|
component:
|
144
203
|
create: "%{user_name} dodał(a) komponent %{resource_name} do przestrzeni %{space_name}"
|
145
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}"
|
146
206
|
publish: "%{user_name} opublikował(a) komponent %{resource_name} w przestrzeni %{space_name}"
|
147
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
|
148
216
|
impersonation_log:
|
149
217
|
manage: "%{user_name} zarządził %{resource_name} ponieważ %{reason}"
|
150
218
|
moderation:
|
@@ -161,6 +229,7 @@ pl:
|
|
161
229
|
update: "%{user_name} zaktualizował(a) aplikację OAuth %{resource_name}"
|
162
230
|
organization:
|
163
231
|
update: "%{user_name} zaktualizował(a) ustawienia organizacji"
|
232
|
+
update_external_domain: "%{user_name} zaktualizował zewnętrzne domeny organizacji"
|
164
233
|
participatory_space_private_user:
|
165
234
|
create: "%{user_name} zaprosił(a) %{resource_name} jako użytkownika prywatnego"
|
166
235
|
create_via_csv: "%{user_name} zaprosił(a) %{resource_name} jako prywatnego użytkownika poprzez CSV"
|
@@ -172,6 +241,9 @@ pl:
|
|
172
241
|
delete_with_parent: "%{user_name} usunął/usunęła zakres podrzędny %{resource_name} w zakresie %{parent_scope}"
|
173
242
|
update: "%{user_name} zaktualizował(a) zakres %{resource_name}"
|
174
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}"
|
175
247
|
static_page:
|
176
248
|
create: "%{user_name} stworzył(a) stronę statyczną %{resource_name}"
|
177
249
|
delete: "%{user_name} usunął/usunęła stronę statyczną %{resource_name}"
|
@@ -406,8 +478,8 @@ pl:
|
|
406
478
|
amendments_enabled: Poprawki dozwolone
|
407
479
|
comments_enabled: Komentarze włączone
|
408
480
|
comments_max_length: Maksymalna długość komentarzy
|
409
|
-
|
410
|
-
|
481
|
+
dummy_global_attribute1: Przykładowy atrybut 1
|
482
|
+
dummy_global_attribute2: Przykładowy atrybut 2
|
411
483
|
dummy_global_translatable_text: Przykładowy tekst do tłumaczenia
|
412
484
|
enable_pads_creation: Włącz tworzenie padów
|
413
485
|
resources_permissions_enabled: Włączono uprawnienia do zasobów
|
@@ -419,8 +491,8 @@ pl:
|
|
419
491
|
amendment_reaction_enabled: Odpowiadanie na poprawki włączone
|
420
492
|
amendments_visibility: Widoczność poprawek
|
421
493
|
comments_blocked: Komentarze zablokowane
|
422
|
-
|
423
|
-
|
494
|
+
dummy_step_attribute1: Przykładowy atrybut etapu 1
|
495
|
+
dummy_step_attribute2: Przykładowy atrybut etapu 2
|
424
496
|
dummy_step_translatable_text: Przykładowy tekst etapu do tłumaczenia
|
425
497
|
contact: Kontakt
|
426
498
|
content_blocks:
|
@@ -464,13 +536,6 @@ pl:
|
|
464
536
|
actions:
|
465
537
|
login_before_access: Zaloguj się na swoje konto, żeby mieć dostęp
|
466
538
|
unauthorized: Nie masz uprawnień do wykonania tej czynności
|
467
|
-
data_portability:
|
468
|
-
export:
|
469
|
-
ready: Gotowy
|
470
|
-
show:
|
471
|
-
download_data: Pobierz dane
|
472
|
-
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>.
|
473
|
-
request_data: Poproś o dane
|
474
539
|
datepicker:
|
475
540
|
help_text: 'Oczekiwany format: %{datepicker_format}'
|
476
541
|
devise:
|
@@ -489,7 +554,6 @@ pl:
|
|
489
554
|
newsletter: Chcę otrzymywać okazjonalne newslettery z istotnymi informacjami
|
490
555
|
newsletter_title: Zgoda na subskrybcję
|
491
556
|
nickname_help: Twój pseudonim w %{organization}. Może zawierać tylko litery, cyfry, '-' i '_'.
|
492
|
-
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."
|
493
557
|
sign_in: Zaloguj się
|
494
558
|
sign_up: Zarejestruj się
|
495
559
|
sign_up_as:
|
@@ -538,6 +602,13 @@ pl:
|
|
538
602
|
this_application_will_not_be_able_to: 'Ta aplikacja nie będzie mogła:'
|
539
603
|
update_profile: Zaktualizuj swój profil
|
540
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
|
541
612
|
endorsable:
|
542
613
|
endorsements: Rekomendacje
|
543
614
|
endorsements_count: Liczba rekomendacji
|
@@ -698,7 +769,7 @@ pl:
|
|
698
769
|
email_subject: "%{nickname} zaktualizował(a) swój profil"
|
699
770
|
notification_title: Zaktualizowano <a href="%{resource_path}">stronę profilową</a> użytkownika %{name} (%{nickname}), którego obserwujesz.
|
700
771
|
export_mailer:
|
701
|
-
|
772
|
+
download_your_data_export:
|
702
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}'
|
703
774
|
download: Pobieranie
|
704
775
|
export:
|
@@ -734,12 +805,11 @@ pl:
|
|
734
805
|
create:
|
735
806
|
button: Obserwuj
|
736
807
|
error: Wystąpił błąd podczas próby obserwowania tego zasobu.
|
737
|
-
participatory_space:
|
808
|
+
participatory_space: Obserwujesz <span class="show-for-sr">%{resource_name}</span>
|
738
809
|
destroy:
|
739
810
|
button: Przestań obserwować
|
740
811
|
error: Nastąpił błąd podczas cofania obserwowania tego zasobu.
|
741
812
|
forms:
|
742
|
-
current_file: Bieżący plik
|
743
813
|
current_image: Bieżący obraz
|
744
814
|
default_image: Domyślny obraz
|
745
815
|
errors:
|
@@ -751,7 +821,6 @@ pl:
|
|
751
821
|
file:
|
752
822
|
explanation: 'Wytyczne dotyczące pliku:'
|
753
823
|
message_1: Ma być obrazem lub dokumentem.
|
754
|
-
message_2: Jako obrazów używaj najlepiej krajobrazów, obraz jest docinany automatycznie. Dla plików CSV separatorem kolumn musi być przecinek (",")
|
755
824
|
image:
|
756
825
|
explanation: 'Wytyczne dotyczące obrazu:'
|
757
826
|
message_1: Preferowany obraz krajobrazu, który nie zawiera żadnego tekstu.
|
@@ -759,7 +828,6 @@ pl:
|
|
759
828
|
file_validation:
|
760
829
|
allowed_file_extensions: 'Dozwolone rozszerzenia plików: %{extensions}'
|
761
830
|
max_file_size: 'Maksymalny rozmiar pliku: %{megabytes}MB'
|
762
|
-
remove_this_file: Usuń ten plik
|
763
831
|
gamification:
|
764
832
|
all_badges_link: Zobacz wszystkie dostępne odznaki.
|
765
833
|
badges:
|
@@ -778,6 +846,18 @@ pl:
|
|
778
846
|
how: Jak ją zdobyć
|
779
847
|
page_description: Odznaki są wyrazem uznania dla działań użytkowników i ich rozwoju na platformie. Gdy zaczniesz odkrywać, uczestniczyć i wchodzić w interakcje na platformie, otrzymasz różne odznaki. Oto lista odznak i kilka sposobów na ich zdobycie.
|
780
848
|
title: Odznaki
|
849
|
+
invitations:
|
850
|
+
conditions:
|
851
|
+
- Użyj linku "zaproś znajomych" na swojej stronie użytkownika, aby zaprosić znajomych
|
852
|
+
- Dostosuj, jeśli chcesz, wiadomość, którą wysyłasz
|
853
|
+
- Możesz awansować na wyższy poziom, wysyłając zaproszenia i gdy zostaną one przyjęte.
|
854
|
+
description: Ta odznaka jest przyznawana, gdy zapraszasz ludzi i gdy oni poświęcą trochę czasu, aby zarejestrować się w %{organization_name} i zostać użytkownikami. Dziękujemy za udostępnienie %{organization_name} innym osobom i pomoc w rozbudowywaniu społeczności!
|
855
|
+
description_another: Ten użytkownik zaprosił %{score} osób.
|
856
|
+
description_own: Zaprosiłeś %{score} osób.
|
857
|
+
name: Zaproszenia
|
858
|
+
next_level_in: Zaproś %{score} kolejnych użytkowników, aby przejść do następnego poziomu!
|
859
|
+
unearned_another: Ten użytkownik jeszcze nikogo nie zaprosił.
|
860
|
+
unearned_own: Jeszcze nikogo nie zaproszono.
|
781
861
|
description: Odznaki są wyrazem uznania dla działań użytkowników i ich rozwoju na platformie. Gdy zaczniesz odkrywać, uczestniczyć i wchodzić w interakcje na platformie, otrzymasz różne odznaki.
|
782
862
|
level: Poziom %{level}
|
783
863
|
reached_top: Osiągnąłeś najwyższy poziom tej odznaki.
|
@@ -860,7 +940,6 @@ pl:
|
|
860
940
|
no_user_groups: Nie należy jeszcze do żadnej grupy.
|
861
941
|
roles:
|
862
942
|
admin: Administrator
|
863
|
-
creator: Twórca
|
864
943
|
member: Członek
|
865
944
|
update:
|
866
945
|
error: Wystąpił błąd podczas aktualizacji grupy
|
@@ -990,7 +1069,7 @@ pl:
|
|
990
1069
|
title: Konwersacja z %{usernames}
|
991
1070
|
start:
|
992
1071
|
send: Wyślij
|
993
|
-
title:
|
1072
|
+
title: Zacznij konwersację
|
994
1073
|
update:
|
995
1074
|
error: Wiadomość nie została wysłana z powodu błędu
|
996
1075
|
metrics:
|
@@ -1011,6 +1090,7 @@ pl:
|
|
1011
1090
|
newsletter_mailer:
|
1012
1091
|
newsletter:
|
1013
1092
|
note: Otrzymujesz ten e-mail, ponieważ subskrybujesz newslettery %{organization_name}. Możesz zmienić swoje ustawienia na <a href="%{link}">stronie powiadomień</a>.
|
1093
|
+
see_on_website: Nie widzisz tego e-maila poprawnie? Wyświetl go w <a href="%{link}" target="_blank">przeglądarce</a>.
|
1014
1094
|
unsubscribe: Aby zrezygnować z otrzymywania tego typu wiadomości e-mail, <a href="%{link}" target="_blank" class="unsubscribe">cofnij subskrypcję</a>.
|
1015
1095
|
newsletter_templates:
|
1016
1096
|
basic_only_text:
|
@@ -1054,19 +1134,20 @@ pl:
|
|
1054
1134
|
subject: Czy chcesz nadal otrzymywać istotne informacje o %{organization_name}?
|
1055
1135
|
notifications:
|
1056
1136
|
no_notifications: Brak powiadomień.
|
1137
|
+
notifications_digest_mailer:
|
1138
|
+
header:
|
1139
|
+
weekly: Podsumowanie Cotygodniowych Powiadomień
|
1140
|
+
hello: Witaj %{name},
|
1057
1141
|
notifications_settings:
|
1058
1142
|
show:
|
1059
1143
|
administrators: Administratorzy
|
1060
1144
|
allow_public_contact: Każdy może wysłać mi prywatną wiadomość, nawet jeśli go nie obserwuję.
|
1061
1145
|
direct_messages: Przyjmuj prywatne wiadomości od każdego
|
1062
|
-
email_on_moderations: Chcę otrzymywać e-mail za każdym razem, gdy coś jest zgłaszane do moderacji.
|
1063
|
-
email_on_notification: Chcę otrzymywać wiadomości e-mail za każdym razem gdy otrzymuję powiadomienie.
|
1064
1146
|
everything_followed: Dotyczące wszystkiego, co obserwuję
|
1065
1147
|
newsletter_notifications: Chcę otrzymywać newslettery
|
1066
1148
|
newsletters: Newslettery
|
1067
1149
|
own_activity: Dotyczące moich własnych działań, np. kiedy ktoś komentuje moją propozycję lub wspomina o mnie
|
1068
1150
|
receive_notifications_about: Chcę otrzymywać powiadomienia
|
1069
|
-
send_notifications_by_email: Wysyłaj powiadomienia pocztą e-mail
|
1070
1151
|
update_notifications_settings: Zapisz zmiany
|
1071
1152
|
update:
|
1072
1153
|
error: Podczas aktualizowania ustawień powiadomień wystąpił błąd.
|
@@ -1121,15 +1202,18 @@ pl:
|
|
1121
1202
|
error: Wystąpił błąd podczas akceptowania warunków.
|
1122
1203
|
success: Wspaniale! Zaakceptowałeś warunki i zasady.
|
1123
1204
|
form:
|
1205
|
+
agreement: Akceptuję Regulamin
|
1124
1206
|
legend: Zgadzam się z warunkami użytkowania
|
1125
1207
|
refuse:
|
1126
|
-
|
1208
|
+
modal_btn_continue: Zaakceptuj warunki i kontynuuj
|
1127
1209
|
modal_btn_exit: Sprawdzę to później
|
1210
|
+
modal_button: Odrzuć warunki
|
1128
1211
|
modal_close: Zamknij okno
|
1129
1212
|
modal_title: Czy rzeczywiście odmawiasz zaakceptowania zaktualizowanego regulaminu?
|
1130
1213
|
required_review:
|
1131
1214
|
alert: Zaktualizowaliśmy nasze Warunki korzystania z usługi, zapoznaj się z nimi.
|
1132
1215
|
body: Poświęć chwilę, aby przejrzeć aktualizacje naszych Warunków korzystania z Platformy. W przeciwnym razie nie będziesz mógł korzystać z platformy.
|
1216
|
+
title: 'Wymagane: sprawdź aktualizacje naszych warunków korzystania z platformy'
|
1133
1217
|
participatory_space_private_users:
|
1134
1218
|
not_allowed: Nie możesz wyświetlać tych treści
|
1135
1219
|
profile:
|
@@ -1312,6 +1396,9 @@ pl:
|
|
1312
1396
|
help_text: "<strong>Uwaga:</strong> Zawartość może być tłumaczeniem automatycznym i może nie być w 100% dokładna."
|
1313
1397
|
show_original: Pokaż oryginalny tekst
|
1314
1398
|
show_translated: Pokaż automatyczne tłumaczenie
|
1399
|
+
user_activity:
|
1400
|
+
index:
|
1401
|
+
no_activities_warning: Ten użytkownik nie ma jeszcze żadnej aktywności.
|
1315
1402
|
user_contact_disabled: Ten użytkownik nie przyjmuje bezpośrednich wiadomości.
|
1316
1403
|
user_conversations:
|
1317
1404
|
create:
|
@@ -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."
|
@@ -1498,6 +1583,15 @@ pl:
|
|
1498
1583
|
updated_not_active: Twoje hasło zostało zmienione.
|
1499
1584
|
registrations:
|
1500
1585
|
destroyed: Twoje konto zostało pomyślnie zawieszone. Mamy nadzieję zobaczyć Cię ponownie wkrótce.
|
1586
|
+
edit:
|
1587
|
+
are_you_sure: Jesteś pewny?
|
1588
|
+
cancel_my_account: Zawieś moje konto
|
1589
|
+
currently_waiting_confirmation_for_email: 'Obecnie oczekujące potwierdzenie dla: %{email}'
|
1590
|
+
leave_blank_if_you_don_t_want_to_change_it: pozostaw puste, jeśli nie chcesz tego zmieniać
|
1591
|
+
title: Edytuj %{resource}
|
1592
|
+
unhappy: Niezadowolony?
|
1593
|
+
update: Aktualizuj
|
1594
|
+
we_need_your_current_password_to_confirm_your_changes: potrzebujemy Twojego obecnego hasła, aby potwierdzić Twoje zmiany
|
1501
1595
|
new:
|
1502
1596
|
sign_up: Zarejestruj się
|
1503
1597
|
signed_up: Witamy! Zarejestrowałeś się pomyślnie.
|
@@ -1556,6 +1650,7 @@ pl:
|
|
1556
1650
|
other: 'Podczas przetwarzania Twojego żądania wystąpiły błędy:'
|
1557
1651
|
too_many_marks: używa zbyt wielu kolejnych znaków interpunkcyjnych (np.! i?)
|
1558
1652
|
too_much_caps: używa zbyt dużej liczby wielkich liter (ponad 25% tekstu)
|
1653
|
+
too_short: jest za krótkie
|
1559
1654
|
forms:
|
1560
1655
|
correct_errors: Wystąpiły błędy w formularzu, popraw je, aby kontynuować.
|
1561
1656
|
length_validator:
|
@@ -1571,10 +1666,6 @@ pl:
|
|
1571
1666
|
timestamp_error_message: Przepraszam, to było za szybkie! Proszę przesłać ponownie.
|
1572
1667
|
layouts:
|
1573
1668
|
decidim:
|
1574
|
-
cookie_warning:
|
1575
|
-
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}.
|
1576
|
-
link_label: Dowiedz się więcej o plikach cookie
|
1577
|
-
ok: Zgadzam się
|
1578
1669
|
edit_link:
|
1579
1670
|
edit: Edytuj
|
1580
1671
|
footer:
|
@@ -1636,7 +1727,6 @@ pl:
|
|
1636
1727
|
email_included_in_password: jest zbyt podobne do twojego adresu e-mail
|
1637
1728
|
fallback: nie jest poprawne
|
1638
1729
|
name_included_in_password: jest zbyt podobne do twojego imienia
|
1639
|
-
nickname_included_in_password: jest zbyt podobne do twojego nicka
|
1640
1730
|
not_enough_unique_characters: nie ma wystarczającej liczby unikalnych znaków
|
1641
1731
|
password_not_allowed: nie jest dozwolone
|
1642
1732
|
password_too_common: jest zbyt powszechne
|
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:
|
@@ -744,6 +740,18 @@ pt-BR:
|
|
744
740
|
how: Como você pode ganhar
|
745
741
|
page_description: Crachás são reconhecimentos para ações dos participantes e progresso na plataforma. Ao começar a descobrir, participar e interagir na plataforma, você ganhará distintivos diferentes. Aqui está a lista de crachás e algumas maneiras de ganhá-los.
|
746
742
|
title: Distintivos
|
743
|
+
invitations:
|
744
|
+
conditions:
|
745
|
+
- Use o link "convidar amigos" na sua página de usuário para convidar seus amigos
|
746
|
+
- Personalize, se quiser, a mensagem que você está enviando
|
747
|
+
- Você vai subir de nível enviando convites e recebendo-os registrados.
|
748
|
+
description: Esse selo é concedido quando você convidou algumas pessoas e elas gastaram um pouco de tempo para se inscrever em %{organization_name} e se tornarem participantes. Obrigado por fazer %{organization_name} a conhecer aos outros e ajudando a expandir a comunidade!
|
749
|
+
description_another: Este usuário convidou %{score} usuários.
|
750
|
+
description_own: Você convidou %{score} usuários.
|
751
|
+
name: Convites
|
752
|
+
next_level_in: Convide mais %{score} usuários para alcançar o próximo nível!
|
753
|
+
unearned_another: Este usuário ainda não convidou nenhum usuário.
|
754
|
+
unearned_own: Você não convidou nenhum usuário ainda.
|
747
755
|
description: Crachás são reconhecimentos para ações dos participantes e progresso na plataforma. Ao começar a descobrir, participar e interagir na plataforma, você ganhará distintivos diferentes.
|
748
756
|
level: Nível %{level}
|
749
757
|
reached_top: Você atingiu o nível superior para este selo.
|
@@ -826,7 +834,6 @@ pt-BR:
|
|
826
834
|
no_user_groups: Não pertence a nenhum grupo ainda.
|
827
835
|
roles:
|
828
836
|
admin: Administrador
|
829
|
-
creator: Autor
|
830
837
|
member: Membro
|
831
838
|
update:
|
832
839
|
error: Houve um problema ao atualizar o grupo
|
@@ -951,7 +958,7 @@ pt-BR:
|
|
951
958
|
title: Conversas
|
952
959
|
reply:
|
953
960
|
placeholder: Sua resposta...
|
954
|
-
send:
|
961
|
+
send: Mandar
|
955
962
|
title: Resposta
|
956
963
|
show:
|
957
964
|
back: Voltar para todas as conversas
|
@@ -960,7 +967,7 @@ pt-BR:
|
|
960
967
|
title: Conversa com %{usernames}
|
961
968
|
start:
|
962
969
|
send: Enviar
|
963
|
-
title:
|
970
|
+
title: Comece uma conversa
|
964
971
|
update:
|
965
972
|
error: A mensagem não foi enviada devido a um erro
|
966
973
|
metrics:
|
@@ -981,6 +988,7 @@ pt-BR:
|
|
981
988
|
newsletter_mailer:
|
982
989
|
newsletter:
|
983
990
|
note: Você recebeu este e-mail porque está inscrito em boletins informativos em %{organization_name}. Você pode alterar suas configurações em suas <a href="%{link}">notifications page</a>.
|
991
|
+
see_on_website: Não é possível ver este email corretamente? Visualize-o no <a href="%{link}" target="_blank">website</a>.
|
984
992
|
unsubscribe: Para optar por não receber esse tipo de email, <a href="%{link}" target="_blank" class="unsubscribe">Unsubscribe</a>.
|
985
993
|
newsletter_templates:
|
986
994
|
basic_only_text:
|
@@ -1029,14 +1037,11 @@ pt-BR:
|
|
1029
1037
|
administrators: Administradores
|
1030
1038
|
allow_public_contact: Permita que qualquer pessoa me envie uma mensagem direta, mesmo que eu não as siga.
|
1031
1039
|
direct_messages: Receber mensagens diretas de qualquer pessoa
|
1032
|
-
email_on_moderations: Quero receber um e-mail sempre que houver um relatório de moderação.
|
1033
|
-
email_on_notification: Quero receber um email sempre que recebo uma notificação.
|
1034
1040
|
everything_followed: Tudo que eu sigo
|
1035
1041
|
newsletter_notifications: Quero receber boletins informativos
|
1036
1042
|
newsletters: boletins informativos
|
1037
1043
|
own_activity: Minha atividade, como quando alguém comenta minha proposta ou me menciona
|
1038
1044
|
receive_notifications_about: Quero receber notificações sobre
|
1039
|
-
send_notifications_by_email: Enviar notificações por email
|
1040
1045
|
update_notifications_settings: Guardar alterações
|
1041
1046
|
update:
|
1042
1047
|
error: Ocorreu um erro ao atualizar suas configurações de notificações.
|
@@ -1091,15 +1096,18 @@ pt-BR:
|
|
1091
1096
|
error: Houve um erro ao aceitar os termos e condições.
|
1092
1097
|
success: Ótimo! Você aceitou os termos e condições.
|
1093
1098
|
form:
|
1099
|
+
agreement: Concordo com estes termos
|
1094
1100
|
legend: Concorde com os termos e condições de uso
|
1095
1101
|
refuse:
|
1096
|
-
|
1102
|
+
modal_btn_continue: Aceite os termos e continue
|
1097
1103
|
modal_btn_exit: Vou revisá-lo mais tarde
|
1104
|
+
modal_button: Recuse os termos
|
1098
1105
|
modal_close: Fechar modal
|
1099
1106
|
modal_title: Você realmente recusa os Termos e Condições atualizados?
|
1100
1107
|
required_review:
|
1101
1108
|
alert: Atualizamos nossos Termos de Serviço, revise-os.
|
1102
1109
|
body: Por favor, dedique um momento para rever as atualizações dos nossos Termos de Serviço. Caso contrário, você não poderá usar a plataforma.
|
1110
|
+
title: 'Obrigatório: revise as atualizações dos nossos Termos de Serviço'
|
1103
1111
|
participatory_space_private_users:
|
1104
1112
|
not_allowed: Você não tem permissão para visualizar este conteúdo
|
1105
1113
|
profile:
|
@@ -1284,6 +1292,9 @@ pt-BR:
|
|
1284
1292
|
help_text: "<strong>Aviso:</strong> O conteúdo pode ser traduzido automaticamente e não está 100% correto."
|
1285
1293
|
show_original: Exibir texto original
|
1286
1294
|
show_translated: Mostrar texto traduzido automaticamente
|
1295
|
+
user_activity:
|
1296
|
+
index:
|
1297
|
+
no_activities_warning: Este usuário ainda não possui nenhuma atividade.
|
1287
1298
|
user_contact_disabled: Este usuário não aceita mensagens diretas.
|
1288
1299
|
user_conversations:
|
1289
1300
|
create:
|
@@ -1389,7 +1400,6 @@ pt-BR:
|
|
1389
1400
|
invitations:
|
1390
1401
|
edit:
|
1391
1402
|
header: Termine de criar sua conta
|
1392
|
-
nickname_help: Seu identificador exclusivo em %{organization}.
|
1393
1403
|
submit_button: Salvar
|
1394
1404
|
subtitle: Se você aceitar o convite, defina seu apelido e senha.
|
1395
1405
|
invitation_removed: Seu convite foi removido.
|
@@ -1456,7 +1466,6 @@ pt-BR:
|
|
1456
1466
|
passwords:
|
1457
1467
|
edit:
|
1458
1468
|
change_my_password: Mudar minha senha
|
1459
|
-
change_your_password: Mude sua senha
|
1460
1469
|
confirm_new_password: Confirme a nova senha
|
1461
1470
|
new_password: Nova senha
|
1462
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."
|
@@ -1470,6 +1479,15 @@ pt-BR:
|
|
1470
1479
|
updated_not_active: Sua senha foi alterada com sucesso.
|
1471
1480
|
registrations:
|
1472
1481
|
destroyed: Tchau! Sua conta foi cancelada com sucesso. Esperamos te ver novamente em breve.
|
1482
|
+
edit:
|
1483
|
+
are_you_sure: Você tem certeza?
|
1484
|
+
cancel_my_account: Cancelar minha conta
|
1485
|
+
currently_waiting_confirmation_for_email: 'Atualmente aguardando confirmação para: %{email}'
|
1486
|
+
leave_blank_if_you_don_t_want_to_change_it: deixe em branco se você não quiser mudá-lo
|
1487
|
+
title: Editar %{resource}
|
1488
|
+
unhappy: Infeliz?
|
1489
|
+
update: Atualizar
|
1490
|
+
we_need_your_current_password_to_confirm_your_changes: Precisamos da sua senha atual para confirmar suas alterações
|
1473
1491
|
new:
|
1474
1492
|
sign_up: inscrever-se
|
1475
1493
|
signed_up: Bem vinda! Você se inscreveu com sucesso.
|
@@ -1524,6 +1542,7 @@ pt-BR:
|
|
1524
1542
|
other: 'Houve erros múltiplos ao processar sua solicitação:'
|
1525
1543
|
too_many_marks: está usando muitos sinais de pontuação consecutivos (por exemplo,! e?)
|
1526
1544
|
too_much_caps: está usando muitas letras maiúsculas (mais de 25% do texto)
|
1545
|
+
too_short: é muito curto (menos de 15 caracteres)
|
1527
1546
|
forms:
|
1528
1547
|
correct_errors: Há erros no formulário, por favor corrija-os para continuar.
|
1529
1548
|
length_validator:
|
@@ -1537,10 +1556,6 @@ pt-BR:
|
|
1537
1556
|
timestamp_error_message: Desculpe, isso foi muito rápido! Reenvie.
|
1538
1557
|
layouts:
|
1539
1558
|
decidim:
|
1540
|
-
cookie_warning:
|
1541
|
-
description_html: Este site usa cookies. Ao continuar a navegar no site, você concorda com o uso de cookies. Saiba mais sobre isso %{link}.
|
1542
|
-
link_label: aqui
|
1543
|
-
ok: Concordo
|
1544
1559
|
edit_link:
|
1545
1560
|
edit: Editar
|
1546
1561
|
footer:
|
@@ -1596,8 +1611,8 @@ pt-BR:
|
|
1596
1611
|
widget:
|
1597
1612
|
see_more: Ver mais
|
1598
1613
|
locale:
|
1599
|
-
name: Português
|
1600
|
-
name_with_error:
|
1614
|
+
name: Português
|
1615
|
+
name_with_error: Inglês (erro!)
|
1601
1616
|
password_validator:
|
1602
1617
|
domain_included_in_password: é muito semelhante a este nome de domínio
|
1603
1618
|
email_included_in_password: é muito parecido com o seu email
|