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/gl.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
gl:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -47,9 +48,6 @@ gl:
|
|
|
47
48
|
booleans:
|
|
48
49
|
'false': 'Non'
|
|
49
50
|
'true': 'Si'
|
|
50
|
-
carrierwave:
|
|
51
|
-
errors:
|
|
52
|
-
image_too_big: A imaxe é demasiado grande
|
|
53
51
|
date:
|
|
54
52
|
formats:
|
|
55
53
|
decidim_short: "%d/%m/%Y"
|
|
@@ -84,14 +82,10 @@ gl:
|
|
|
84
82
|
x_seconds:
|
|
85
83
|
one: hai 1 seg
|
|
86
84
|
other: "hai %{count} seg"
|
|
87
|
-
zero: agora
|
|
88
85
|
decidim:
|
|
89
86
|
accessibility:
|
|
90
87
|
front_page_link: Ir á páxina principal
|
|
91
88
|
account:
|
|
92
|
-
data_portability_export:
|
|
93
|
-
file_no_exists: O ficheiro non existe
|
|
94
|
-
notice: Os teus datos están en progreso. Recibirás un correo electrónico cando finalice.
|
|
95
89
|
delete:
|
|
96
90
|
confirm:
|
|
97
91
|
close: Pechar xanela
|
|
@@ -102,6 +96,9 @@ gl:
|
|
|
102
96
|
destroy:
|
|
103
97
|
error: Produciuse un erro ao eliminar a túa conta.
|
|
104
98
|
success: A túa conta eliminouse correctamente.
|
|
99
|
+
download_your_data_export:
|
|
100
|
+
file_no_exists: O ficheiro non existe
|
|
101
|
+
notice: Os teus datos están en progreso. Recibirás un correo electrónico cando finalice.
|
|
105
102
|
show:
|
|
106
103
|
change_password: Cambie o contrasinal
|
|
107
104
|
update_account: Actualizar a conta
|
|
@@ -298,14 +295,14 @@ gl:
|
|
|
298
295
|
global:
|
|
299
296
|
amendments_enabled: Modificacións habilitadas
|
|
300
297
|
comments_enabled: Comentarios habilitados
|
|
301
|
-
|
|
302
|
-
|
|
298
|
+
dummy_global_attribute1: Atributo maniquí 1
|
|
299
|
+
dummy_global_attribute2: Atributo maniquí 2
|
|
303
300
|
enable_pads_creation: Habilita a creación de pastillas
|
|
304
301
|
resources_permissions_enabled: Permisos de recursos habilitados
|
|
305
302
|
step:
|
|
306
303
|
comments_blocked: Comentarios bloqueados
|
|
307
|
-
|
|
308
|
-
|
|
304
|
+
dummy_step_attribute1: Dummy Step Attribute 1
|
|
305
|
+
dummy_step_attribute2: Dummy Step Attribute 2
|
|
309
306
|
contact: Contacto
|
|
310
307
|
content_blocks:
|
|
311
308
|
footer_sub_hero:
|
|
@@ -332,12 +329,6 @@ gl:
|
|
|
332
329
|
core:
|
|
333
330
|
actions:
|
|
334
331
|
unauthorized: Non estás autorizado para realizar esta acción
|
|
335
|
-
data_portability:
|
|
336
|
-
export:
|
|
337
|
-
ready: Listo
|
|
338
|
-
show:
|
|
339
|
-
download_data: Descarga os datos
|
|
340
|
-
request_data: Solicitar datos
|
|
341
332
|
datepicker:
|
|
342
333
|
help_text: 'Formato esperado: %{datepicker_format}'
|
|
343
334
|
devise:
|
|
@@ -399,6 +390,12 @@ gl:
|
|
|
399
390
|
this_application_will_not_be_able_to: 'Esta aplicación non poderá:'
|
|
400
391
|
update_profile: Actualiza o teu perfil
|
|
401
392
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> quere usar a túa conta"
|
|
393
|
+
download_your_data:
|
|
394
|
+
export:
|
|
395
|
+
ready: Listo
|
|
396
|
+
show:
|
|
397
|
+
download_data: Descarga os datos
|
|
398
|
+
request_data: Solicitar datos
|
|
402
399
|
editor_images:
|
|
403
400
|
create:
|
|
404
401
|
error: Erro ó subir a imaxe
|
|
@@ -538,7 +535,7 @@ gl:
|
|
|
538
535
|
email_subject: "%{name} foi oficializado"
|
|
539
536
|
notification_title: O participante %{name} (%{nickname}) foi oficializado.
|
|
540
537
|
export_mailer:
|
|
541
|
-
|
|
538
|
+
download_your_data_export:
|
|
542
539
|
download: Descarga
|
|
543
540
|
export:
|
|
544
541
|
ready: Atopa unha versión comprimida da túa exportación.
|
|
@@ -573,12 +570,29 @@ gl:
|
|
|
573
570
|
button: Deixar de seguir
|
|
574
571
|
error: Houbo un erro ao seguir este recurso.
|
|
575
572
|
forms:
|
|
576
|
-
current_file: Arquivo actual
|
|
577
573
|
current_image: Imaxe actual
|
|
578
574
|
default_image: Imaxe predeterminada
|
|
579
575
|
errors:
|
|
580
576
|
error: Hai un erro neste campo.
|
|
581
|
-
|
|
577
|
+
upload:
|
|
578
|
+
labels:
|
|
579
|
+
add_attachment: Engadir ficheiro anexo
|
|
580
|
+
add_file: Engadir ficheiro
|
|
581
|
+
add_image: Engadir imaxe
|
|
582
|
+
cancel: Cancelar
|
|
583
|
+
edit_image: Editar imaxe
|
|
584
|
+
error: Erro!
|
|
585
|
+
remove: Eliminar
|
|
586
|
+
replace: Substituír
|
|
587
|
+
save: Gardar
|
|
588
|
+
title: Título
|
|
589
|
+
title_required: O título é obrigatorio!
|
|
590
|
+
uploaded: Cargado
|
|
591
|
+
validating: Validando...
|
|
592
|
+
validation_error: Erro de validación!
|
|
593
|
+
upload_help:
|
|
594
|
+
dropzone: Solta os ficheiros aquí ou preme para cargar
|
|
595
|
+
explanation: Guía para %{attribute}
|
|
582
596
|
gamification:
|
|
583
597
|
all_badges_link: Consulta todas as insignias dispoñibles.
|
|
584
598
|
badges:
|
|
@@ -691,7 +705,6 @@ gl:
|
|
|
691
705
|
no_user_groups: Aínda non pertence a ningún grupo.
|
|
692
706
|
roles:
|
|
693
707
|
admin: Administrador
|
|
694
|
-
creator: Creador
|
|
695
708
|
member: Membro
|
|
696
709
|
update:
|
|
697
710
|
error: Produciuse un problema ao actualizar o grupo
|
|
@@ -823,17 +836,19 @@ gl:
|
|
|
823
836
|
no_notifications: Aínda non hai notificacións.
|
|
824
837
|
notifications_settings:
|
|
825
838
|
show:
|
|
826
|
-
email_on_notification: Quero recibir un correo electrónico cada vez que recibo unha notificación.
|
|
827
839
|
everything_followed: Todo o que segue
|
|
828
840
|
newsletter_notifications: Quero recibir boletíns
|
|
829
841
|
newsletters: Boletíns informativos
|
|
830
842
|
own_activity: A miña propia actividade, como cando alguén comenta na miña proposta ou me menciona
|
|
831
843
|
receive_notifications_about: Quero recibir notificacións sobre
|
|
832
|
-
send_notifications_by_email: Envíe notificacións por correo electrónico
|
|
833
844
|
update_notifications_settings: Gardar cambios
|
|
834
845
|
update:
|
|
835
846
|
error: Produciuse un erro ao actualizar a configuración das notificacións.
|
|
836
847
|
success: A configuración das notificacións actualizouse correctamente.
|
|
848
|
+
offline:
|
|
849
|
+
show:
|
|
850
|
+
message: Semella que non tes conexión. Por favor, téntao de novo máis tarde.
|
|
851
|
+
retry: Tentar de novo
|
|
837
852
|
open_data:
|
|
838
853
|
not_available_yet: Os ficheiros Open Data aínda non están dispoñibles. Téntao de novo nuns minutos.
|
|
839
854
|
own_user_groups:
|
|
@@ -886,7 +901,6 @@ gl:
|
|
|
886
901
|
form:
|
|
887
902
|
legend: Concorda cos termos e condicións de uso
|
|
888
903
|
refuse:
|
|
889
|
-
modal_body: Rexeitar, non será capaz de utilizar a plataforma, pode <a href="%{data_portability_path}">Descargar seus datos</a> e / ou <a href="%{delete_path}">eliminar a súa conta</a>.
|
|
890
904
|
modal_btn_continue: Aceptar termos e continuar
|
|
891
905
|
modal_btn_exit: Vou revisalo máis tarde
|
|
892
906
|
modal_button: Rexeitar os termos
|
|
@@ -998,6 +1012,8 @@ gl:
|
|
|
998
1012
|
login_modal:
|
|
999
1013
|
please_sign_in: Inicia sesión
|
|
1000
1014
|
sign_up: Rexistrarse
|
|
1015
|
+
mentions_modal:
|
|
1016
|
+
remove_recipient: Eliminar o destinatario %{name}
|
|
1001
1017
|
participatory_space_filters:
|
|
1002
1018
|
filters:
|
|
1003
1019
|
areas: Ámbitos
|
|
@@ -1046,6 +1062,9 @@ gl:
|
|
|
1046
1062
|
update:
|
|
1047
1063
|
error: Produciuse un erro ao actualizar os teus intereses.
|
|
1048
1064
|
success: Os teus intereses foron actualizados correctamente.
|
|
1065
|
+
user_report_mailer:
|
|
1066
|
+
notify:
|
|
1067
|
+
details: Detalles fornecidos polo usuario
|
|
1049
1068
|
version_author:
|
|
1050
1069
|
show:
|
|
1051
1070
|
deleted: Usuario eliminado
|
|
@@ -1074,7 +1093,6 @@ gl:
|
|
|
1074
1093
|
invitations:
|
|
1075
1094
|
edit:
|
|
1076
1095
|
header: Acaba de crear a túa conta
|
|
1077
|
-
nickname_help: O teu identificador único en %{organization}.
|
|
1078
1096
|
submit_button: Gardar
|
|
1079
1097
|
subtitle: Se aceptas a invitación, configure o teu alcume e contrasinal.
|
|
1080
1098
|
invitation_removed: A túa invitación foi eliminada.
|
|
@@ -1141,7 +1159,6 @@ gl:
|
|
|
1141
1159
|
passwords:
|
|
1142
1160
|
edit:
|
|
1143
1161
|
change_my_password: Cambiar o meu contrasinal
|
|
1144
|
-
change_your_password: Cambia o teu contrasinal
|
|
1145
1162
|
confirm_new_password: Confirma o contrasinal novo
|
|
1146
1163
|
new_password: Novo contrasinal
|
|
1147
1164
|
new:
|
|
@@ -1224,10 +1241,6 @@ gl:
|
|
|
1224
1241
|
timestamp_error_message: Sentímolo, iso foi demasiado rápido. Reenvío de novo.
|
|
1225
1242
|
layouts:
|
|
1226
1243
|
decidim:
|
|
1227
|
-
cookie_warning:
|
|
1228
|
-
description_html: Este sitio usa cookies. Ao continuar navegando polo sitio, acepta o noso uso das cookies. Máis información %{link}.
|
|
1229
|
-
link_label: aquí
|
|
1230
|
-
ok: Estou de acordo
|
|
1231
1244
|
edit_link:
|
|
1232
1245
|
edit: Editar
|
|
1233
1246
|
footer:
|
|
@@ -1246,6 +1259,10 @@ gl:
|
|
|
1246
1259
|
expire_time_html: A túa sesión caducará en <b><span class="minutes">%{minutes}</span> minutos</b>.
|
|
1247
1260
|
notifications_dashboard:
|
|
1248
1261
|
mark_all_as_read: Marca todo como lido
|
|
1262
|
+
offline_banner:
|
|
1263
|
+
cache_version_page: Vaites! A túa rede está desconectada. O que estás a ver é unha versión previa da páxina gardada na caché, é podería non estar actualizada.
|
|
1264
|
+
upload_modal:
|
|
1265
|
+
close_modal: Pechar modal
|
|
1249
1266
|
user_menu:
|
|
1250
1267
|
admin_dashboard: Taboleiro de administración
|
|
1251
1268
|
conversations: Conversas
|
data/config/locales/hr.yml
CHANGED
data/config/locales/hu.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
hu:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -69,7 +70,6 @@ hu:
|
|
|
69
70
|
'true': 'Igen'
|
|
70
71
|
carrierwave:
|
|
71
72
|
errors:
|
|
72
|
-
image_too_big: A kép mérete túl nagy
|
|
73
73
|
not_inside_organization: A fájl nincs csatolva egyetlen szervezethez sem
|
|
74
74
|
date:
|
|
75
75
|
formats:
|
|
@@ -81,10 +81,6 @@ hu:
|
|
|
81
81
|
datetime:
|
|
82
82
|
distance_in_words:
|
|
83
83
|
half_a_minute: fél perce
|
|
84
|
-
x_seconds:
|
|
85
|
-
one: 1 másodperce
|
|
86
|
-
other: "%{count} másodperce"
|
|
87
|
-
zero: éppen most
|
|
88
84
|
decidim:
|
|
89
85
|
accessibility:
|
|
90
86
|
external_link: Külső hivatkozás
|
|
@@ -93,9 +89,6 @@ hu:
|
|
|
93
89
|
skip_button: Ugrás a fő tartalomra
|
|
94
90
|
account:
|
|
95
91
|
blocked: Ezt a fiókot az Általános Szerződési Feltételek megsértése miatt blokkoltuk
|
|
96
|
-
data_portability_export:
|
|
97
|
-
file_no_exists: Fájl nem létezik
|
|
98
|
-
notice: Az adatok letöltése jelenleg folyamatban van. Ha befejeződött, e-mailt fogsz kapni.
|
|
99
92
|
delete:
|
|
100
93
|
alert: Ez a művelet nem visszavonható. Ha törlöd a fiókjod, nem fogsz tudni bejelentkezni a hitelesítő adataiddal. Fiókod törlése a hozzájárulásaid anonimizálását eredményezi. Továbbra is létrehozhatsz új fiókot, de ezek a hozzájárulások nem fognak kapcsolódni hozzá.
|
|
101
94
|
confirm:
|
|
@@ -107,8 +100,11 @@ hu:
|
|
|
107
100
|
destroy:
|
|
108
101
|
error: Hiba történt a fiók törlése során.
|
|
109
102
|
success: Fiók törlése sikeres.
|
|
103
|
+
download_your_data_export:
|
|
104
|
+
file_no_exists: Fájl nem létezik
|
|
105
|
+
notice: Az adatok letöltése jelenleg folyamatban van. Ha befejeződött, e-mailt fogsz kapni.
|
|
110
106
|
show:
|
|
111
|
-
available_locales_helper: Válasszd ki a nyelvet, amelyet használni szeretnél a
|
|
107
|
+
available_locales_helper: Válasszd ki a nyelvet, amelyet használni szeretnél a platform értesítéseinek böngészéshez és fogadásához
|
|
112
108
|
change_password: Jelszó módosítása
|
|
113
109
|
update_account: Fiók frissítése
|
|
114
110
|
update:
|
|
@@ -361,8 +357,8 @@ hu:
|
|
|
361
357
|
amendments_enabled: A módosítások engedélyezve vannak
|
|
362
358
|
comments_enabled: Megjegyzések engedélyezve
|
|
363
359
|
comments_max_length: A hozzászólások maximális hossza
|
|
364
|
-
|
|
365
|
-
|
|
360
|
+
dummy_global_attribute1: Dummy tulajdonság 1
|
|
361
|
+
dummy_global_attribute2: Dummy tulajdonság 2
|
|
366
362
|
dummy_global_translatable_text: Kenyérszöveg - nem valódi fordítható szöveg
|
|
367
363
|
enable_pads_creation: A közös dokumentum létrehozásának engedélyezése
|
|
368
364
|
resources_permissions_enabled: Erőforrás-engedélyek biztosítva
|
|
@@ -374,8 +370,8 @@ hu:
|
|
|
374
370
|
amendment_reaction_enabled: A módosító reakció engedélyezett
|
|
375
371
|
amendments_visibility: A módosítás láthatósága
|
|
376
372
|
comments_blocked: Megjegyzések letiltva
|
|
377
|
-
|
|
378
|
-
|
|
373
|
+
dummy_step_attribute1: Dummy Lépés tulajdonság 1
|
|
374
|
+
dummy_step_attribute2: Dummy Lépés tulajdonság 2
|
|
379
375
|
dummy_step_translatable_text: Hamis Lépés Fordítható Szöveg
|
|
380
376
|
contact: Kapcsolat
|
|
381
377
|
content_blocks:
|
|
@@ -415,12 +411,6 @@ hu:
|
|
|
415
411
|
actions:
|
|
416
412
|
login_before_access: Kérlek jelentkezz be a fiókodba a hozzáféréshez
|
|
417
413
|
unauthorized: Nem vagy jogosult a művelet végrehajtására
|
|
418
|
-
data_portability:
|
|
419
|
-
export:
|
|
420
|
-
ready: Kész
|
|
421
|
-
show:
|
|
422
|
-
download_data: Töltsd le az adatokat
|
|
423
|
-
request_data: Adatkérés
|
|
424
414
|
datepicker:
|
|
425
415
|
help_text: 'Várható formátum: %{datepicker_format}'
|
|
426
416
|
devise:
|
|
@@ -437,7 +427,6 @@ hu:
|
|
|
437
427
|
already_have_an_account?: Már van egy fiókod?
|
|
438
428
|
newsletter: Hírlevél fogadása a legfontosabb információkkal
|
|
439
429
|
newsletter_title: Kapcsolatfelvételi engedély
|
|
440
|
-
password_help: "%{minimun_characters} karakter a minimum, nem lehet túl gyakori (pl. 123456), és különböznie kell a becenevétől és az e-mail címétől."
|
|
441
430
|
sign_in: Belépés
|
|
442
431
|
sign_up: Regisztráció
|
|
443
432
|
sign_up_as:
|
|
@@ -483,6 +472,12 @@ hu:
|
|
|
483
472
|
this_application_will_not_be_able_to: 'Ez az alkalmazás nem képes erre:'
|
|
484
473
|
update_profile: Frissítsd a profilod
|
|
485
474
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> szeretné használni a fiókod"
|
|
475
|
+
download_your_data:
|
|
476
|
+
export:
|
|
477
|
+
ready: Kész
|
|
478
|
+
show:
|
|
479
|
+
download_data: Töltsd le az adatokat
|
|
480
|
+
request_data: Adatkérés
|
|
486
481
|
editor_images:
|
|
487
482
|
create:
|
|
488
483
|
error: Hiba történt a kép feltöltése közben
|
|
@@ -636,7 +631,7 @@ hu:
|
|
|
636
631
|
user_officialized:
|
|
637
632
|
email_outro: Azért kapta ezt az értesítést, mert Ön a szervezet adminisztrátora.
|
|
638
633
|
export_mailer:
|
|
639
|
-
|
|
634
|
+
download_your_data_export:
|
|
640
635
|
download: Letöltés
|
|
641
636
|
export:
|
|
642
637
|
ready: Mellékelve találod az exportálás tömörített változatát.
|
|
@@ -670,7 +665,6 @@ hu:
|
|
|
670
665
|
button: Követés törlése
|
|
671
666
|
error: Hiba történt az erőforrás követésének visszavonásakor.
|
|
672
667
|
forms:
|
|
673
|
-
current_file: Jelenlegi fájl
|
|
674
668
|
current_image: Jelenlegi kép
|
|
675
669
|
default_image: Alapértelmezett kép
|
|
676
670
|
errors:
|
|
@@ -681,8 +675,29 @@ hu:
|
|
|
681
675
|
file_help:
|
|
682
676
|
file:
|
|
683
677
|
message_1: Képnek vagy dokumentumnak kell lennie.
|
|
684
|
-
message_2:
|
|
685
|
-
|
|
678
|
+
message_2: Képeknél a fekvő elrendezés ajánlott, a kép szélei automatikusan levágásra kerülnek.
|
|
679
|
+
icon:
|
|
680
|
+
explanation: 'Útmutató:'
|
|
681
|
+
message_1: A képnek négyzet alakúnak kell lennie.
|
|
682
|
+
message_2: A javasolt képméret 512x512 px.
|
|
683
|
+
upload:
|
|
684
|
+
labels:
|
|
685
|
+
add_attachment: Melléklet hozzáadása
|
|
686
|
+
add_file: Fájl hozzáadása
|
|
687
|
+
add_image: Képek hozzáadása
|
|
688
|
+
cancel: Mégse
|
|
689
|
+
edit_image: Kép szerkesztése
|
|
690
|
+
error: Hiba!
|
|
691
|
+
remove: Eltávolítás
|
|
692
|
+
replace: Csere
|
|
693
|
+
save: Mentés
|
|
694
|
+
title: Cím
|
|
695
|
+
title_required: A cím megadása kötelező!
|
|
696
|
+
uploaded: Feltöltve
|
|
697
|
+
validating: Ellenőrzés...
|
|
698
|
+
validation_error: Hitelesítési hiba!
|
|
699
|
+
upload_help:
|
|
700
|
+
dropzone: Húzza ide fájlokat vagy kattintson a feltöltéshez
|
|
686
701
|
gamification:
|
|
687
702
|
all_badges_link: Az összes elérhető jelvény megtekintése.
|
|
688
703
|
badges:
|
|
@@ -795,7 +810,6 @@ hu:
|
|
|
795
810
|
no_user_groups: Még nem tartozik semmiféle csoporthoz.
|
|
796
811
|
roles:
|
|
797
812
|
admin: Adminisztrátor
|
|
798
|
-
creator: Teremtő
|
|
799
813
|
member: Tag
|
|
800
814
|
update:
|
|
801
815
|
error: Probléma történt a csoport frissítésével
|
|
@@ -938,21 +952,37 @@ hu:
|
|
|
938
952
|
translated_text: 'Automatikusan lefordított szöveg:'
|
|
939
953
|
notifications:
|
|
940
954
|
no_notifications: Még nincs értesítés.
|
|
955
|
+
notifications_digest_mailer:
|
|
956
|
+
header:
|
|
957
|
+
daily: Napi értesítések
|
|
958
|
+
hello: Helló %{name}
|
|
959
|
+
outro: 'Azért kapta ezt az értesítést, mert követi a következőt: %{author_name}. A profiloldalon visszavonhatja a felhasználó követését.'
|
|
960
|
+
see_more: Összes értesítés megjelenítése
|
|
941
961
|
notifications_settings:
|
|
942
962
|
show:
|
|
943
963
|
allow_public_contact: Megengedem, hogy bárki közvetlen üzenetet küldjön nekem, akkor is, ha nem követem őket.
|
|
944
964
|
direct_messages: Közvetlen üzenetek fogadása bárkitől
|
|
945
|
-
|
|
965
|
+
email_on_moderations: Szeretnék e-mailt kapni, valahányszor valamit vagy valakit jelentenek moderálás miatt.
|
|
946
966
|
everything_followed: Minden, amit követek
|
|
947
967
|
newsletter_notifications: Szeretnék hírleveleket kapni
|
|
948
968
|
newsletters: Hírlevelek
|
|
969
|
+
notification_settings:
|
|
970
|
+
close_meeting_reminder: Szeretnék e-mailben emlékeztetőt kapni a zárt megbeszélésekről és nem nyilvános jelentésekről
|
|
971
|
+
notifications_sending_frequencies:
|
|
972
|
+
daily: Napi
|
|
973
|
+
real_time: Valósidejű
|
|
974
|
+
weekly: Heti
|
|
975
|
+
notifications_sending_frequency: Milyen gyakran szeretne e-mailt kapni az értesítésekről?
|
|
949
976
|
own_activity: Saját tevékenységem - amikor valaki megjegyzést fűz a javaslatomhoz, vagy megemlíti a nevemet
|
|
950
977
|
receive_notifications_about: Értesítést szeretnék kapni
|
|
951
|
-
send_notifications_by_email: Értesítések küldése e-mailben
|
|
952
978
|
update_notifications_settings: Változások mentése
|
|
953
979
|
update:
|
|
954
980
|
error: Hiba történt az értesítési beállítások frissítése során.
|
|
955
981
|
success: Az értesítési beállításaid frissítése sikeres volt.
|
|
982
|
+
offline:
|
|
983
|
+
show:
|
|
984
|
+
message: Úgy tűnik, nem kapcsolódik az internethez. Kérjük, próbálja meg újra később.
|
|
985
|
+
retry: Újra
|
|
956
986
|
open_data:
|
|
957
987
|
not_available_yet: Az Open Data fájlok még nem érhetők el, próbálkozzon újra pár perc múlva.
|
|
958
988
|
own_user_groups:
|
|
@@ -1006,7 +1036,6 @@ hu:
|
|
|
1006
1036
|
agreement: Elfogadom a feltételeket
|
|
1007
1037
|
legend: Elfogadom a felhasználási feltételeket
|
|
1008
1038
|
refuse:
|
|
1009
|
-
modal_body: Ha elutasítod, akkor nem fogod tudni használi a platformot. <a href="%{data_portability_path}">Töltsd le az adataidat</a> és/vagy <a href="%{delete_path}">töröld a fiókod</a>.
|
|
1010
1039
|
modal_btn_continue: Elfogadom és tovább lépek
|
|
1011
1040
|
modal_btn_exit: Később átnézem
|
|
1012
1041
|
modal_button: Elutasítom a feltételeket
|
|
@@ -1128,6 +1157,8 @@ hu:
|
|
|
1128
1157
|
login_modal:
|
|
1129
1158
|
please_sign_in: Jelentkezz be
|
|
1130
1159
|
sign_up: Regisztrálj
|
|
1160
|
+
mentions_modal:
|
|
1161
|
+
remove_recipient: '%{name} címzett eltávolítása'
|
|
1131
1162
|
participatory_space_filters:
|
|
1132
1163
|
filters:
|
|
1133
1164
|
areas: Területek
|
|
@@ -1184,6 +1215,9 @@ hu:
|
|
|
1184
1215
|
update:
|
|
1185
1216
|
error: Hiba történt az érdeklődési körök frissítése közben.
|
|
1186
1217
|
success: Az érdeklődési köreid sikeresen frissültek.
|
|
1218
|
+
user_report_mailer:
|
|
1219
|
+
notify:
|
|
1220
|
+
details: Felhasználó által megadott adatok
|
|
1187
1221
|
version:
|
|
1188
1222
|
show:
|
|
1189
1223
|
number_of_versions: Verziók
|
|
@@ -1229,7 +1263,6 @@ hu:
|
|
|
1229
1263
|
invitations:
|
|
1230
1264
|
edit:
|
|
1231
1265
|
header: Profil létrehozásának befejezése
|
|
1232
|
-
nickname_help: 'Egyedi azonosítód ehhez: %{organization}.'
|
|
1233
1266
|
submit_button: Mentés
|
|
1234
1267
|
subtitle: Ha elfogadod a meghívást, állítsd be a beceneved és a jelszavad.
|
|
1235
1268
|
invitation_removed: Meghívása eltávolításra került.
|
|
@@ -1296,7 +1329,6 @@ hu:
|
|
|
1296
1329
|
passwords:
|
|
1297
1330
|
edit:
|
|
1298
1331
|
change_my_password: A jelszó megváltoztatása
|
|
1299
|
-
change_your_password: változtasd meg a jelszavadat
|
|
1300
1332
|
confirm_new_password: Erősítse meg az új jelszót
|
|
1301
1333
|
new_password: Új jelszó
|
|
1302
1334
|
password_help: "%{minimun_characters} karakter a minimum, nem lehet túl gyakori (pl. 123456), és különböznie kell a becenevétől és az e-mail címétől."
|
|
@@ -1381,10 +1413,6 @@ hu:
|
|
|
1381
1413
|
timestamp_error_message: Sajnos ez túl gyors volt! Kérlek, küldd el újra.
|
|
1382
1414
|
layouts:
|
|
1383
1415
|
decidim:
|
|
1384
|
-
cookie_warning:
|
|
1385
|
-
description_html: 'Ez az oldal cookie-kat használ. A böngészés folytatásával elfogadod a cookie-k használatát. Tudjon meg többet: %{link}.'
|
|
1386
|
-
link_label: itt
|
|
1387
|
-
ok: Elfogadom
|
|
1388
1416
|
edit_link:
|
|
1389
1417
|
edit: Szerkesztés
|
|
1390
1418
|
footer:
|
|
@@ -1407,10 +1435,12 @@ hu:
|
|
|
1407
1435
|
notifications_dashboard:
|
|
1408
1436
|
mark_all_as_read: Összes megjelölése olvasottként
|
|
1409
1437
|
mark_as_read: Megjelölés olvasottként
|
|
1438
|
+
offline_banner:
|
|
1439
|
+
cache_version_page: Upsz! Nem kapcsolódik az internetre. Most az oldal egy régebbi, eltárolt változatát látja, ami lehet, hogy nem teljesen friss.
|
|
1410
1440
|
timeout_modal:
|
|
1411
1441
|
continue_session: Munkamenet folytatása
|
|
1412
1442
|
sign_out: Kijelentkezés
|
|
1413
|
-
title:
|
|
1443
|
+
title: Folytatod a munkameneted?
|
|
1414
1444
|
user_menu:
|
|
1415
1445
|
admin_dashboard: Admin vezérlőpult
|
|
1416
1446
|
conversations: Beszélgetések
|
data/config/locales/id-ID.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
id:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -44,9 +45,6 @@ id:
|
|
|
44
45
|
booleans:
|
|
45
46
|
'false': 'Tidak'
|
|
46
47
|
'true': 'iya nih'
|
|
47
|
-
carrierwave:
|
|
48
|
-
errors:
|
|
49
|
-
image_too_big: Gambarnya terlalu besar
|
|
50
48
|
date:
|
|
51
49
|
formats:
|
|
52
50
|
decidim_short: "%d/%m/%Y"
|
|
@@ -56,9 +54,6 @@ id:
|
|
|
56
54
|
decidim_with_month_name_short: "%d %b"
|
|
57
55
|
decidim:
|
|
58
56
|
account:
|
|
59
|
-
data_portability_export:
|
|
60
|
-
file_no_exists: File tidak ada
|
|
61
|
-
notice: Data Anda sedang dalam proses. Anda akan menerima email setelah selesai.
|
|
62
57
|
delete:
|
|
63
58
|
confirm:
|
|
64
59
|
close: Tutup jendela
|
|
@@ -69,6 +64,9 @@ id:
|
|
|
69
64
|
destroy:
|
|
70
65
|
error: Terjadi kesalahan saat menghapus akun Anda.
|
|
71
66
|
success: Akun Anda berhasil dihapus.
|
|
67
|
+
download_your_data_export:
|
|
68
|
+
file_no_exists: File tidak ada
|
|
69
|
+
notice: Data Anda sedang dalam proses. Anda akan menerima email setelah selesai.
|
|
72
70
|
show:
|
|
73
71
|
change_password: Ganti kata sandi
|
|
74
72
|
update_account: Perbaharui akun
|
|
@@ -258,14 +256,14 @@ id:
|
|
|
258
256
|
global:
|
|
259
257
|
amendments_enabled: Amandemen diaktifkan
|
|
260
258
|
comments_enabled: Komentar diaktifkan
|
|
261
|
-
|
|
262
|
-
|
|
259
|
+
dummy_global_attribute1: Atribut Dummy 1
|
|
260
|
+
dummy_global_attribute2: Atribut Dummy 2
|
|
263
261
|
enable_pads_creation: Aktifkan pembuatan bantalan
|
|
264
262
|
resources_permissions_enabled: Izin sumber daya diaktifkan
|
|
265
263
|
step:
|
|
266
264
|
comments_blocked: Komentar diblokir
|
|
267
|
-
|
|
268
|
-
|
|
265
|
+
dummy_step_attribute1: Atribut Langkah Dummy 1
|
|
266
|
+
dummy_step_attribute2: Atribut Langkah Dummy 2
|
|
269
267
|
contact: Kontak
|
|
270
268
|
content_blocks:
|
|
271
269
|
footer_sub_hero:
|
|
@@ -292,12 +290,6 @@ id:
|
|
|
292
290
|
core:
|
|
293
291
|
actions:
|
|
294
292
|
unauthorized: Anda tidak berwenang untuk melakukan tindakan ini
|
|
295
|
-
data_portability:
|
|
296
|
-
export:
|
|
297
|
-
ready: Siap
|
|
298
|
-
show:
|
|
299
|
-
download_data: Unduh datanya
|
|
300
|
-
request_data: Meminta data
|
|
301
293
|
datepicker:
|
|
302
294
|
help_text: 'Format yang diharapkan: %{datepicker_format}'
|
|
303
295
|
devise:
|
|
@@ -363,6 +355,12 @@ id:
|
|
|
363
355
|
this_application_will_not_be_able_to: 'Aplikasi ini tidak akan dapat:'
|
|
364
356
|
update_profile: Perbarui profil Anda
|
|
365
357
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> ingin menggunakan akun Anda"
|
|
358
|
+
download_your_data:
|
|
359
|
+
export:
|
|
360
|
+
ready: Siap
|
|
361
|
+
show:
|
|
362
|
+
download_data: Unduh datanya
|
|
363
|
+
request_data: Meminta data
|
|
366
364
|
endorsable:
|
|
367
365
|
endorsements: Endorsemen
|
|
368
366
|
errors:
|
|
@@ -492,7 +490,7 @@ id:
|
|
|
492
490
|
email_subject: "%{nickname} memperbarui profil mereka"
|
|
493
491
|
notification_title: Halaman <a href="%{resource_path}">profil</a> dari %{name} (%{nickname}), yang Anda ikuti, telah diperbarui.
|
|
494
492
|
export_mailer:
|
|
495
|
-
|
|
493
|
+
download_your_data_export:
|
|
496
494
|
download: Unduh
|
|
497
495
|
export:
|
|
498
496
|
ready: Silakan temukan terlampir versi zip dari ekspor Anda.
|
|
@@ -526,12 +524,10 @@ id:
|
|
|
526
524
|
button: Berhenti mengikuti
|
|
527
525
|
error: Terjadi kesalahan saat berhenti mengikuti sumber daya ini.
|
|
528
526
|
forms:
|
|
529
|
-
current_file: File saat ini
|
|
530
527
|
current_image: Gambar saat ini
|
|
531
528
|
default_image: Gambar default
|
|
532
529
|
errors:
|
|
533
530
|
error: Ada kesalahan di bidang ini.
|
|
534
|
-
remove_this_file: Hapus file ini
|
|
535
531
|
gamification:
|
|
536
532
|
all_badges_link: Lihat semua lencana yang tersedia.
|
|
537
533
|
badges:
|
|
@@ -644,7 +640,6 @@ id:
|
|
|
644
640
|
no_user_groups: Belum menjadi anggota grup apa pun.
|
|
645
641
|
roles:
|
|
646
642
|
admin: Administrator
|
|
647
|
-
creator: Pencipta
|
|
648
643
|
member: Anggota
|
|
649
644
|
update:
|
|
650
645
|
error: Terjadi masalah saat memperbarui grup
|
|
@@ -759,13 +754,11 @@ id:
|
|
|
759
754
|
no_notifications: Belum ada pemberitahuan.
|
|
760
755
|
notifications_settings:
|
|
761
756
|
show:
|
|
762
|
-
email_on_notification: Saya ingin menerima email setiap kali saya menerima pemberitahuan.
|
|
763
757
|
everything_followed: Semua yang saya ikuti
|
|
764
758
|
newsletter_notifications: Saya ingin menerima buletin
|
|
765
759
|
newsletters: Nawala
|
|
766
760
|
own_activity: Aktivitas saya sendiri, seperti ketika seseorang berkomentar di proposal saya atau menyebut saya
|
|
767
761
|
receive_notifications_about: Saya ingin mendapatkan pemberitahuan tentang
|
|
768
|
-
send_notifications_by_email: Kirim pemberitahuan melalui email
|
|
769
762
|
update_notifications_settings: Simpan perubahan
|
|
770
763
|
update:
|
|
771
764
|
error: Terjadi kesalahan saat memperbarui pengaturan notifikasi Anda.
|
|
@@ -822,7 +815,6 @@ id:
|
|
|
822
815
|
form:
|
|
823
816
|
legend: Setujui persyaratan dan ketentuan penggunaan
|
|
824
817
|
refuse:
|
|
825
|
-
modal_body: Jika Anda menolak, Anda tidak akan dapat menggunakan platform, Anda dapat <a href="%{data_portability_path}">mengunduh data Anda</a> dan / atau <a href="%{delete_path}">menghapus akun Anda</a>.
|
|
826
818
|
modal_btn_continue: Terima persyaratan dan lanjutkan
|
|
827
819
|
modal_btn_exit: Saya akan memeriksanya nanti
|
|
828
820
|
modal_button: Menolak persyaratan
|
|
@@ -990,7 +982,6 @@ id:
|
|
|
990
982
|
invitations:
|
|
991
983
|
edit:
|
|
992
984
|
header: Selesaikan membuat akun Anda
|
|
993
|
-
nickname_help: Pengenal unik Anda dalam %{organization}.
|
|
994
985
|
submit_button: Menyimpan
|
|
995
986
|
subtitle: Jika Anda menerima undangan, atur nama panggilan dan kata sandi Anda.
|
|
996
987
|
invitation_removed: Undangan Anda telah dihapus.
|
|
@@ -1057,7 +1048,6 @@ id:
|
|
|
1057
1048
|
passwords:
|
|
1058
1049
|
edit:
|
|
1059
1050
|
change_my_password: Ubah kata sandi saya
|
|
1060
|
-
change_your_password: Ubah kata sandi Anda
|
|
1061
1051
|
confirm_new_password: Konfirmasi password baru
|
|
1062
1052
|
new_password: Kata sandi baru
|
|
1063
1053
|
new:
|
|
@@ -1135,10 +1125,6 @@ id:
|
|
|
1135
1125
|
timestamp_error_message: Maaf, itu terlalu cepat! Silakan kirim ulang.
|
|
1136
1126
|
layouts:
|
|
1137
1127
|
decidim:
|
|
1138
|
-
cookie_warning:
|
|
1139
|
-
description_html: Situs ini menggunakan cookie. Dengan melanjutkan menelusuri situs, Anda menyetujui penggunaan cookie kami. Cari tahu lebih banyak tentang itu %{link}.
|
|
1140
|
-
link_label: sini
|
|
1141
|
-
ok: saya setuju
|
|
1142
1128
|
edit_link:
|
|
1143
1129
|
edit: Edit
|
|
1144
1130
|
footer:
|