decidim-core 0.29.3 → 0.30.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/amendable/amend_button_card/show.erb +6 -4
- data/app/cells/decidim/amendable/amend_button_card_cell.rb +8 -0
- data/app/cells/decidim/amendable/amendments/show.erb +1 -1
- data/app/cells/decidim/amendable/promote_button_card/show.erb +2 -0
- data/app/cells/decidim/author/flag.erb +6 -0
- data/app/cells/decidim/author/flag_user.erb +14 -0
- data/app/cells/decidim/author_cell.rb +1 -1
- data/app/cells/decidim/card_l/extra_data.erb +1 -0
- data/app/cells/decidim/card_metadata_cell.rb +9 -16
- data/app/cells/decidim/comments_button_cell.rb +14 -2
- data/app/cells/decidim/content_blocks/highlighted_elements_cell.rb +2 -0
- data/app/cells/decidim/content_blocks/highlighted_elements_with_cell_for_list_cell.rb +1 -1
- data/app/cells/decidim/endorsement_block/show.erb +0 -1
- data/app/cells/decidim/endorsement_block_cell.rb +6 -0
- data/app/cells/decidim/endorsement_buttons/button_content.erb +1 -1
- data/app/cells/decidim/endorsement_buttons/select_identity_button.erb +1 -1
- data/app/cells/decidim/endorsement_buttons/show.erb +7 -7
- data/app/cells/decidim/endorsement_buttons/verification_modal.erb +4 -2
- data/app/cells/decidim/endorsers_list/empty.erb +3 -0
- data/app/cells/decidim/endorsers_list/full.erb +17 -5
- data/app/cells/decidim/endorsers_list/show.erb +19 -10
- data/app/cells/decidim/endorsers_list_cell.rb +19 -6
- data/app/cells/decidim/flag_modal/flag_user.erb +34 -0
- data/app/cells/decidim/flag_modal/show.erb +52 -0
- data/app/cells/decidim/flag_modal_cell.rb +56 -0
- data/app/cells/decidim/follow_button/show.erb +1 -2
- data/app/cells/decidim/follow_button_cell.rb +5 -0
- data/app/cells/decidim/map/show.erb +3 -0
- data/app/cells/decidim/map/template.erb +14 -0
- data/app/cells/decidim/map_cell.rb +39 -0
- data/app/cells/decidim/notification_actions/buttons_cell.rb +1 -1
- data/app/cells/decidim/onboarding_action_message/show.erb +15 -0
- data/app/cells/decidim/onboarding_action_message_cell.rb +81 -0
- data/app/cells/decidim/participatory_space_dropdown_metadata/show.erb +3 -5
- data/app/cells/decidim/participatory_space_private_user/show.erb +23 -0
- data/app/cells/decidim/participatory_space_private_user_cell.rb +21 -0
- data/app/cells/decidim/profile_actions/show.erb +1 -1
- data/app/cells/decidim/profile_sidebar/show.erb +167 -0
- data/app/cells/decidim/profile_sidebar_cell.rb +68 -0
- data/app/cells/decidim/progress_bar/show.erb +2 -2
- data/app/cells/decidim/report_button/already_reported_modal.erb +2 -2
- data/app/cells/decidim/report_button/flag_modal.erb +27 -13
- data/app/cells/decidim/report_button_cell.rb +9 -2
- data/app/cells/decidim/resource_history/show.erb +20 -0
- data/app/cells/decidim/resource_history_cell.rb +66 -0
- data/app/cells/decidim/resource_types_filter/show.erb +1 -1
- data/app/cells/decidim/resource_types_filter_cell.rb +6 -6
- data/app/cells/decidim/share_button_cell.rb +0 -4
- data/app/cells/decidim/share_widget/modal.erb +26 -0
- data/app/cells/decidim/share_widget/show.erb +2 -0
- data/app/cells/decidim/share_widget_cell.rb +20 -0
- data/app/cells/decidim/tags/show.erb +7 -4
- data/app/cells/decidim/tags_cell.rb +11 -72
- data/app/cells/decidim/user_activity/show.erb +1 -1
- data/app/commands/decidim/amendable/create_draft.rb +2 -2
- data/app/commands/decidim/create_ephemeral_user.rb +52 -0
- data/app/commands/decidim/create_omniauth_registration.rb +21 -17
- data/app/commands/decidim/create_report.rb +7 -6
- data/app/commands/decidim/create_user_group.rb +6 -2
- data/app/commands/decidim/destroy_ephemeral_user.rb +47 -0
- data/app/commands/decidim/search.rb +0 -14
- data/app/commands/decidim/update_account.rb +11 -3
- data/app/commands/decidim/update_notifications_settings.rb +1 -0
- data/app/commands/decidim/update_resources_taxonomies.rb +67 -0
- data/app/commands/decidim/update_user_group.rb +7 -1
- data/app/constraints/decidim/current_component.rb +1 -1
- data/app/controllers/concerns/decidim/ajax_permission_handler.rb +21 -0
- data/app/controllers/concerns/decidim/devise_authentication_methods.rb +3 -6
- data/app/controllers/concerns/decidim/devise_controllers.rb +2 -0
- data/app/controllers/concerns/decidim/disable_redirection_to_external_host.rb +1 -1
- data/app/controllers/concerns/decidim/ephemeral_session_checker.rb +87 -0
- data/app/controllers/concerns/decidim/filter_resource.rb +4 -2
- data/app/controllers/concerns/decidim/has_members_page.rb +25 -0
- data/app/controllers/concerns/decidim/headers/browser_feature_permissions.rb +50 -0
- data/app/controllers/concerns/decidim/locale_switcher.rb +2 -2
- data/app/controllers/concerns/decidim/needs_password_change.rb +0 -1
- data/app/controllers/concerns/decidim/needs_permission.rb +2 -1
- data/app/controllers/concerns/decidim/needs_tos_accepted.rb +4 -5
- data/app/controllers/concerns/decidim/onboarding_action_methods.rb +52 -0
- data/app/controllers/decidim/application_controller.rb +10 -0
- data/app/controllers/decidim/authorization_modals_controller.rb +8 -2
- data/app/controllers/decidim/components/base_controller.rb +3 -7
- data/app/controllers/decidim/devise/confirmations_controller.rb +4 -0
- data/app/controllers/decidim/devise/omniauth_registrations_controller.rb +8 -1
- data/app/controllers/decidim/devise/registrations_controller.rb +1 -1
- data/app/controllers/decidim/devise/sessions_controller.rb +2 -0
- data/app/controllers/decidim/download_your_data_controller.rb +33 -2
- data/app/controllers/decidim/editor_images_controller.rb +1 -11
- data/app/controllers/decidim/follows_controller.rb +1 -1
- data/app/controllers/decidim/geolocation_controller.rb +19 -0
- data/app/controllers/decidim/homepage_controller.rb +0 -1
- data/app/controllers/decidim/open_data_controller.rb +33 -8
- data/app/controllers/decidim/profiles_controller.rb +2 -2
- data/app/controllers/decidim/reports_controller.rb +1 -1
- data/app/controllers/decidim/user_activities_controller.rb +1 -1
- data/app/controllers/decidim/user_conversations_controller.rb +1 -11
- data/app/events/decidim/soft_delete_resource_event.rb +15 -0
- data/app/forms/decidim/account_form.rb +2 -5
- data/app/forms/decidim/amendable/form.rb +4 -2
- data/app/forms/decidim/ephemeral_user_form.rb +22 -0
- data/app/forms/decidim/notifications_settings_form.rb +1 -0
- data/app/forms/decidim/omniauth_registration_form.rb +14 -1
- data/app/helpers/concerns/decidim/flash_helper_extensions.rb +17 -2
- data/app/helpers/decidim/action_authorization_helper.rb +75 -14
- data/app/helpers/decidim/amendments_helper.rb +0 -9
- data/app/helpers/decidim/application_helper.rb +6 -2
- data/app/helpers/decidim/breadcrumb_helper.rb +6 -0
- data/app/helpers/decidim/cache_helper.rb +1 -1
- data/app/helpers/decidim/check_boxes_tree_helper.rb +25 -53
- data/app/helpers/decidim/decidim_form_helper.rb +0 -44
- data/app/helpers/decidim/endorsable_helper.rb +0 -10
- data/app/helpers/decidim/layout_helper.rb +6 -0
- data/app/helpers/decidim/messaging/conversation_helper.rb +2 -3
- data/app/helpers/decidim/meta_tags_helper.rb +32 -23
- data/app/helpers/decidim/modal_helper.rb +23 -0
- data/app/helpers/decidim/omniauth_helper.rb +5 -5
- data/app/helpers/decidim/onboarding_action_helper.rb +13 -0
- data/app/helpers/decidim/orders_helper.rb +1 -2
- data/app/helpers/decidim/participatory_space_helpers.rb +1 -1
- data/app/helpers/decidim/passwords_helper.rb +2 -2
- data/app/helpers/decidim/taxonomies_helper.rb +40 -0
- data/app/jobs/decidim/download_your_data_export_job.rb +2 -19
- data/app/jobs/decidim/event_publisher_job.rb +18 -9
- data/app/jobs/decidim/export_job.rb +5 -1
- data/app/jobs/decidim/export_participatory_space_job.rb +4 -1
- data/app/jobs/decidim/open_data_job.rb +4 -4
- data/app/mailers/decidim/export_mailer.rb +7 -12
- data/app/mailers/decidim/reported_mailer.rb +0 -1
- data/app/models/decidim/action_log.rb +20 -1
- data/app/models/decidim/category.rb +4 -0
- data/app/models/decidim/component.rb +25 -3
- data/app/models/decidim/metric.rb +2 -1
- data/app/models/decidim/moderation.rb +16 -0
- data/app/models/decidim/newsletter.rb +12 -8
- data/app/models/decidim/organization.rb +7 -3
- data/app/models/decidim/participatory_space_private_user.rb +20 -0
- data/app/models/decidim/private_export.rb +24 -0
- data/app/models/decidim/push_notification_message.rb +1 -1
- data/app/models/decidim/report.rb +1 -1
- data/app/models/decidim/scope.rb +4 -0
- data/app/models/decidim/share_token.rb +36 -10
- data/app/models/decidim/taxonomization.rb +23 -0
- data/app/models/decidim/taxonomy.rb +139 -0
- data/app/models/decidim/taxonomy_filter.rb +130 -0
- data/app/models/decidim/taxonomy_filter_item.rb +33 -0
- data/app/models/decidim/user.rb +13 -23
- data/app/models/decidim/user_base_entity.rb +12 -4
- data/app/models/decidim/user_moderation.rb +9 -0
- data/app/models/decidim/user_report.rb +4 -0
- data/app/packs/entrypoints/decidim_core.js +1 -0
- data/app/packs/entrypoints/decidim_geocoding.js +2 -0
- data/app/packs/images/decidim/brands/facebook.svg +10 -0
- data/app/packs/images/decidim/brands/google.svg +7 -1
- data/app/packs/images/decidim/brands/twitter-x.svg +3 -0
- data/app/packs/src/decidim/check_boxes_tree.js +0 -1
- data/app/packs/src/decidim/clipboard.js +18 -9
- data/app/packs/src/decidim/confirm.js +79 -59
- data/app/packs/src/decidim/datepicker/datepicker_functions.js +3 -3
- data/app/packs/src/decidim/decidim_application.js +1 -0
- data/app/packs/src/decidim/form_remote.js +1 -1
- data/app/packs/src/decidim/geocoding/reverse_geocoding.js +60 -0
- data/app/packs/src/decidim/impersonation.js +1 -1
- data/app/packs/src/decidim/index.js +13 -5
- data/app/packs/src/decidim/map/provider/here.js +1 -1
- data/app/packs/src/decidim/onboarding_pending_action.js +24 -0
- data/app/packs/src/decidim/session_timeouter.js +1 -1
- data/app/packs/src/decidim/sticky_footer.js +29 -0
- data/app/packs/src/decidim/sticky_header.js +6 -31
- data/app/packs/src/decidim/user_registrations.js +13 -0
- data/app/packs/src/decidim/utilities/dom.js +148 -0
- data/app/packs/src/decidim/vendor/leaflet-tilelayer-here.js +212 -0
- data/app/packs/stylesheets/decidim/_accordion.scss +30 -0
- data/app/packs/stylesheets/decidim/_buttons.scss +19 -0
- data/app/packs/stylesheets/decidim/_content_blocks.scss +0 -4
- data/app/packs/stylesheets/decidim/_dropdown.scss +1 -1
- data/app/packs/stylesheets/decidim/_endorsers_list.scss +26 -20
- data/app/packs/stylesheets/decidim/_forms.scss +2 -2
- data/app/packs/stylesheets/decidim/_header.scss +2 -6
- data/app/packs/stylesheets/decidim/_layout.scss +32 -2
- data/app/packs/stylesheets/decidim/_login.scss +53 -6
- data/app/packs/stylesheets/decidim/_modal.scss +42 -0
- data/app/packs/stylesheets/decidim/_modal_tos_refuse.scss +4 -0
- data/app/packs/stylesheets/decidim/_participatory_spaces.scss +46 -0
- data/app/packs/stylesheets/decidim/_profile.scss +1 -1
- data/app/packs/stylesheets/decidim/_success_image.scss +64 -0
- data/app/packs/stylesheets/decidim/_tribute.scss +36 -0
- data/app/packs/stylesheets/decidim/application.scss +1 -1
- data/app/packs/stylesheets/decidim/geocoding_addons.scss +5 -0
- data/app/packs/stylesheets/decidim/map.scss +7 -10
- data/app/packs/stylesheets/decidim/resource_history.scss +31 -0
- data/app/permissions/decidim/permissions.rb +8 -2
- data/app/presenters/decidim/admin_log/base_user_presenter.rb +67 -0
- data/app/presenters/decidim/admin_log/component_presenter.rb +32 -3
- data/app/presenters/decidim/admin_log/moderation_presenter.rb +30 -3
- data/app/presenters/decidim/admin_log/share_token_presenter.rb +39 -0
- data/app/presenters/decidim/admin_log/taxonomy_filter_presenter.rb +57 -0
- data/app/presenters/decidim/admin_log/taxonomy_presenter.rb +48 -0
- data/app/presenters/decidim/admin_log/user_group_presenter.rb +6 -6
- data/app/presenters/decidim/admin_log/user_presenter.rb +4 -18
- data/app/presenters/decidim/log/user_presenter.rb +0 -1
- data/app/presenters/decidim/log/value_types/date_presenter.rb +1 -0
- data/app/presenters/decidim/log/value_types/taxonomy_presenter.rb +29 -0
- data/app/presenters/decidim/participatory_space_private_user_presenter.rb +50 -0
- data/app/presenters/decidim/taxonomy_filter_presenter.rb +19 -0
- data/app/presenters/decidim/taxonomy_presenter.rb +14 -0
- data/app/presenters/decidim/user_presenter.rb +1 -1
- data/app/queries/decidim/metrics/blocked_users_metric_manage.rb +2 -2
- data/app/queries/decidim/metrics/users_metric_manage.rb +2 -2
- data/app/queries/decidim/public_activities.rb +1 -12
- data/app/queries/decidim/stats_users_count.rb +2 -2
- data/app/resolvers/decidim/meta_image_url_resolver.rb +128 -0
- data/app/serializers/decidim/exporters/open_data_blocked_user_serializer.rb +25 -0
- data/app/serializers/decidim/exporters/open_data_metric_serializer.rb +22 -0
- data/app/serializers/decidim/exporters/open_data_moderation_serializer.rb +30 -0
- data/app/serializers/decidim/exporters/open_data_taxonomy_serializer.rb +30 -0
- data/app/serializers/decidim/exporters/open_data_user_group_serializer.rb +38 -0
- data/app/serializers/decidim/exporters/open_data_user_serializer.rb +39 -0
- data/app/serializers/decidim/exporters/participatory_space_serializer.rb +104 -0
- data/app/serializers/decidim/exporters/serializer.rb +25 -0
- data/app/serializers/decidim/schema_org_breadcrumb_list_serializer.rb +52 -0
- data/app/services/decidim/action_authorizer.rb +32 -3
- data/app/services/decidim/base_diff_renderer.rb +1 -3
- data/app/services/decidim/download_your_data_exporter.rb +58 -24
- data/app/services/decidim/onboarding_manager.rb +272 -0
- data/app/services/decidim/open_data_exporter.rb +139 -13
- data/app/services/decidim/static_map_generator.rb +1 -1
- data/app/services/decidim/traceability.rb +13 -0
- data/app/uploaders/decidim/application_uploader.rb +1 -1
- data/app/validators/etiquette_validator.rb +9 -2
- data/app/validators/passthru_validator.rb +1 -1
- data/app/validators/translated_etiquette_validator.rb +32 -0
- data/app/views/decidim/account/_password_fields.html.erb +2 -2
- data/app/views/decidim/application/_accordion_section.html.erb +14 -0
- data/app/views/decidim/application/_collection.html.erb +30 -18
- data/app/views/decidim/devise/omniauth_registrations/new.html.erb +5 -1
- data/app/views/decidim/devise/omniauth_registrations/new_tos_fields.html.erb +29 -0
- data/app/views/decidim/devise/registrations/new.html.erb +10 -22
- data/app/views/decidim/devise/sessions/new.html.erb +24 -29
- data/app/views/decidim/devise/shared/_omniauth_buttons.html.erb +2 -4
- data/app/views/decidim/devise/shared/_tos_fields.html.erb +16 -0
- data/app/views/decidim/download_your_data/_export.html.erb +15 -0
- data/app/views/decidim/download_your_data/show.html.erb +51 -5
- data/app/views/decidim/endorsements/update_buttons_and_counters.js.erb +16 -19
- data/app/views/decidim/export_mailer/download_your_data_export.html.erb +2 -2
- data/app/views/decidim/export_mailer/export.html.erb +5 -1
- data/app/views/decidim/last_activities/index.html.erb +1 -1
- data/app/views/decidim/notifications_settings/show.html.erb +22 -0
- data/app/views/decidim/open_data/_how_to_open_accordion_section.html.erb +15 -0
- data/app/views/decidim/open_data/index.html.erb +108 -0
- data/app/views/decidim/pages/show.html.erb +2 -1
- data/app/views/decidim/participatory_space_private_users/_participatory_space_private_user.html.erb +1 -0
- data/app/views/decidim/reported_mailer/hide.html.erb +1 -17
- data/app/views/decidim/reported_mailer/report.html.erb +1 -1
- data/app/views/decidim/searches/_count.html.erb +1 -1
- data/app/views/decidim/searches/_filters.html.erb +38 -40
- data/app/views/decidim/shared/_login_modal.html.erb +26 -20
- data/app/views/decidim/shared/_orders.html.erb +2 -2
- data/app/views/decidim/shared/_resource_actions.html.erb +21 -0
- data/app/views/decidim/shared/filters/_check_boxes_tree.html.erb +1 -2
- data/app/views/decidim/shared/filters/_collection.html.erb +1 -1
- data/app/views/decidim/shared/filters/_dropdown_label.html.erb +7 -4
- data/app/views/layouts/decidim/_application.html.erb +0 -1
- data/app/views/layouts/decidim/_js_configuration.html.erb +1 -0
- data/app/views/layouts/decidim/_logo.html.erb +1 -1
- data/app/views/layouts/decidim/_logo_mobile.html.erb +1 -1
- data/app/views/layouts/decidim/_meta_tags_config.html.erb +6 -11
- data/app/views/layouts/decidim/_schema_org_breadcrumb_list.html.erb +3 -0
- data/app/views/layouts/decidim/_wrapper.html.erb +15 -9
- data/app/views/layouts/decidim/footer/_main_legal.html.erb +1 -1
- data/app/views/layouts/decidim/footer/_main_links.html.erb +1 -1
- data/app/views/layouts/decidim/header/_close_ephemeral_session.html.erb +25 -0
- data/app/views/layouts/decidim/header/_main.html.erb +14 -10
- data/app/views/layouts/decidim/header/_menu_breadcrumb_items.html.erb +2 -0
- data/app/views/layouts/decidim/shared/_layout_item.html.erb +1 -1
- data/config/assets.rb +2 -1
- data/config/locales/ar.yml +29 -74
- data/config/locales/bg.yml +27 -74
- data/config/locales/bs-BA.yml +0 -2
- data/config/locales/ca.yml +369 -90
- data/config/locales/cs.yml +370 -84
- data/config/locales/de.yml +348 -72
- data/config/locales/el.yml +16 -58
- data/config/locales/en.yml +349 -70
- data/config/locales/eo.yml +0 -4
- data/config/locales/es-MX.yml +362 -86
- data/config/locales/es-PY.yml +367 -91
- data/config/locales/es.yml +369 -90
- data/config/locales/eu.yml +422 -140
- data/config/locales/fi-plain.yml +360 -76
- data/config/locales/fi.yml +364 -77
- data/config/locales/fr-CA.yml +172 -83
- data/config/locales/fr.yml +172 -80
- data/config/locales/ga-IE.yml +4 -25
- data/config/locales/gl.yml +15 -58
- data/config/locales/hu.yml +24 -62
- data/config/locales/id-ID.yml +16 -57
- data/config/locales/is-IS.yml +0 -25
- data/config/locales/it.yml +31 -94
- data/config/locales/ja.yml +226 -97
- data/config/locales/lb.yml +23 -76
- data/config/locales/lt.yml +18 -64
- data/config/locales/lv.yml +16 -58
- data/config/locales/nl.yml +18 -75
- data/config/locales/no.yml +18 -70
- data/config/locales/pl.yml +24 -72
- data/config/locales/pt-BR.yml +35 -63
- data/config/locales/pt.yml +18 -70
- data/config/locales/ro-RO.yml +109 -188
- data/config/locales/ru.yml +8 -43
- data/config/locales/sk.yml +19 -70
- data/config/locales/sl.yml +0 -4
- data/config/locales/sr-CS.yml +0 -2
- data/config/locales/sv.yml +127 -79
- data/config/locales/tr-TR.yml +24 -74
- data/config/locales/uk.yml +1 -29
- data/config/locales/zh-CN.yml +16 -68
- data/config/locales/zh-TW.yml +17 -62
- data/config/routes.rb +4 -10
- data/db/migrate/20181025082245_add_timestamps_to_components.rb +2 -0
- data/db/migrate/20240628111905_add_visible_to_components.rb +7 -0
- data/db/migrate/20240704115429_create_decidim_taxonomies.rb +23 -0
- data/db/migrate/20240717093514_add_registered_only_to_decidim_share_tokens.rb +7 -0
- data/db/migrate/20240722215500_change_object_changes_on_versions.rb +39 -0
- data/db/migrate/20240806065417_create_decidim_taxonomy_filters.rb +23 -0
- data/db/migrate/20240822161348_add_deleted_at_to_decidim_components.rb +8 -0
- data/db/migrate/20240906162524_add_part_of_to_taxonomies.rb +26 -0
- data/db/migrate/20241001135825_add_role_to_participatory_space_private_users.rb +7 -0
- data/db/migrate/20241001140408_add_published_to_participatory_space_private_users.rb +7 -0
- data/db/migrate/20241022002600_create_private_exports.rb +18 -0
- data/db/migrate/20241028114430_add_component_counter_to_taxonomy_filters.rb +7 -0
- data/db/migrate/20241111104357_add_names_and_space_boolean_to_taxonomy_filters.rb +9 -0
- data/db/migrate/20241127093708_add_taxonomy_to_metrics.rb +7 -0
- data/db/migrate/20241204121445_add_participatory_space_manifests_from_taxonomy_filters.rb +9 -0
- data/decidim-core.gemspec +14 -17
- data/lib/decidim/action_authorization.rb +3 -2
- data/lib/decidim/amendable.rb +1 -1
- data/lib/decidim/api/input_filters/category_input_filter.rb +5 -3
- data/lib/decidim/api/input_filters/component_input_filter.rb +33 -20
- data/lib/decidim/api/input_filters/user_entity_input_filter.rb +53 -44
- data/lib/decidim/api/input_sorts/component_input_sort.rb +15 -13
- data/lib/decidim/api/input_sorts/user_entity_input_sort.rb +4 -4
- data/lib/decidim/api/interfaces/author_interface.rb +3 -2
- data/lib/decidim/api/interfaces/coauthorable_interface.rb +5 -5
- data/lib/decidim/api/interfaces/endorsable_interface.rb +2 -2
- data/lib/decidim/api/interfaces/participatory_space_interface.rb +5 -10
- data/lib/decidim/api/interfaces/taxonomizable_interface.rb +13 -0
- data/lib/decidim/api/types/amendment_type.rb +5 -7
- data/lib/decidim/api/types/area_api_type.rb +3 -3
- data/lib/decidim/api/types/attachment_type.rb +3 -3
- data/lib/decidim/api/types/category_type.rb +2 -2
- data/lib/decidim/api/types/decidim_type.rb +5 -1
- data/lib/decidim/api/types/fingerprint_type.rb +1 -1
- data/lib/decidim/api/types/localized_string_type.rb +1 -1
- data/lib/decidim/api/types/metric_history_type.rb +2 -0
- data/lib/decidim/api/types/metric_type.rb +1 -1
- data/lib/decidim/api/types/organization_type.rb +5 -0
- data/lib/decidim/api/types/participatory_space_link_type.rb +2 -2
- data/lib/decidim/api/types/participatory_space_manifest_type.rb +1 -1
- data/lib/decidim/api/types/quantifiable_translated_field_type.rb +1 -1
- data/lib/decidim/api/types/scope_api_type.rb +2 -3
- data/lib/decidim/api/types/session_type.rb +1 -2
- data/lib/decidim/api/types/taxonomy_type.rb +15 -0
- data/lib/decidim/api/types/trace_version_type.rb +2 -2
- data/lib/decidim/api/types/translated_field_type.rb +3 -5
- data/lib/decidim/api/types/user_group_type.rb +7 -20
- data/lib/decidim/api/types/user_type.rb +7 -20
- data/lib/decidim/asset_router/storage.rb +6 -11
- data/lib/decidim/assets/tailwind/tailwind.config.js.erb +2 -1
- data/lib/decidim/attachment_attributes.rb +1 -1
- data/lib/decidim/attribute_encryptor.rb +1 -1
- data/lib/decidim/attribute_object/nested_validator.rb +1 -1
- data/lib/decidim/attributes/integer_with_units.rb +27 -0
- data/lib/decidim/attributes/time_with_zone.rb +1 -5
- data/lib/decidim/attributes.rb +2 -0
- data/lib/decidim/authorization_form_builder.rb +0 -7
- data/lib/decidim/coauthorable.rb +1 -1
- data/lib/decidim/command.rb +3 -3
- data/lib/decidim/commands/destroy_resource.rb +5 -1
- data/lib/decidim/commands/resource_handler.rb +2 -2
- data/lib/decidim/commands/restore_resource.rb +45 -0
- data/lib/decidim/commands/soft_delete_resource.rb +63 -0
- data/lib/decidim/component_manifest.rb +7 -0
- data/lib/decidim/content_parsers/blob_parser.rb +8 -10
- data/lib/decidim/content_parsers/user_parser.rb +1 -1
- data/lib/decidim/core/api.rb +2 -0
- data/lib/decidim/core/engine.rb +21 -7
- data/lib/decidim/core/menu.rb +0 -5
- data/lib/decidim/core/seeds.rb +42 -2
- data/lib/decidim/core/test/factories.rb +105 -2
- data/lib/decidim/core/test/shared_examples/admin_resource_gallery_examples.rb +85 -0
- data/lib/decidim/core/test/shared_examples/comments_examples.rb +393 -38
- data/lib/decidim/core/test/shared_examples/components_controller_hide_shared_examples.rb +11 -0
- data/lib/decidim/core/test/shared_examples/components_controller_reorder_shared_examples.rb +21 -0
- data/lib/decidim/core/test/shared_examples/download_open_data_shared_context.rb +36 -0
- data/lib/decidim/core/test/shared_examples/download_open_data_shared_examples.rb +45 -0
- data/lib/decidim/core/test/shared_examples/download_your_data_shared_examples.rb +17 -0
- data/lib/decidim/core/test/shared_examples/etiquette_validator_examples.rb +25 -0
- data/lib/decidim/core/test/shared_examples/follows_examples.rb +43 -0
- data/lib/decidim/core/test/shared_examples/has_taxonomies.rb +94 -0
- data/lib/decidim/core/test/shared_examples/manage_share_tokens_examples.rb +237 -0
- data/lib/decidim/core/test/shared_examples/map_examples.rb +2 -0
- data/lib/decidim/core/test/shared_examples/open_data_exporter_examples.rb +102 -0
- data/lib/decidim/core/test/shared_examples/participatory_space_members_page_examples.rb +46 -0
- data/lib/decidim/core/test/shared_examples/participatory_space_search_examples.rb +98 -0
- data/lib/decidim/core/test/shared_examples/permissions.rb +7 -7
- data/lib/decidim/core/test/shared_examples/preview_with_share_token_examples.rb +94 -0
- data/lib/decidim/core/test/shared_examples/reports_examples.rb +15 -53
- data/lib/decidim/core/test/shared_examples/resource_endorsed_event_examples.rb +2 -2
- data/lib/decidim/core/test/shared_examples/resource_search_examples.rb +75 -69
- data/lib/decidim/core/test/shared_examples/searchable_resources_shared_context.rb +1 -1
- data/lib/decidim/core/test/shared_examples/simple_event.rb +33 -19
- data/lib/decidim/core/test/shared_examples/social_share_examples.rb +7 -14
- data/lib/decidim/core/test/shared_examples/softdeleteable_components_examples.rb +173 -0
- data/lib/decidim/core/test/shared_examples/system_endorse_resource_examples.rb +54 -8
- data/lib/decidim/core/test/shared_examples/taxonomizable_interface_examples.rb +20 -0
- data/lib/decidim/core/test/shared_examples/taxonomizable_resource_examples.rb +37 -0
- data/lib/decidim/core/test/shared_examples/taxonomy_settings.rb +49 -0
- data/lib/decidim/core/test/shared_examples/translated_event_examples.rb +1 -1
- data/lib/decidim/core/test/shared_examples/uncommentable_component_examples.rb +0 -26
- data/lib/decidim/core/test/shared_examples/versions_controller_examples.rb +2 -28
- data/lib/decidim/core/test/shared_examples/with_endorsable_permissions_examples.rb +1 -1
- data/lib/decidim/core/test.rb +9 -5
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/core.rb +58 -0
- data/lib/decidim/download_your_data_serializers/download_your_data_identity_serializer.rb +0 -4
- data/lib/decidim/download_your_data_serializers/download_your_data_participatory_space_private_user_serializer.rb +3 -1
- data/lib/decidim/download_your_data_serializers/download_your_data_report_serializer.rb +2 -1
- data/lib/decidim/download_your_data_serializers/download_your_data_user_serializer.rb +6 -7
- data/lib/decidim/download_your_data_serializers.rb +19 -0
- data/lib/decidim/exporters/csv.rb +6 -0
- data/lib/decidim/exporters/export_manifest.rb +14 -0
- data/lib/decidim/exporters/pdf.rb +26 -22
- data/lib/decidim/filter_form_builder.rb +12 -15
- data/lib/decidim/form_builder.rb +6 -129
- data/lib/decidim/has_category.rb +5 -1
- data/lib/decidim/has_private_users.rb +4 -0
- data/lib/decidim/has_taxonomy_settings.rb +47 -0
- data/lib/decidim/has_upload_validations.rb +1 -1
- data/lib/decidim/legacy_form_builder.rb +118 -0
- data/lib/decidim/maintenance/import_models/application_record.rb +93 -0
- data/lib/decidim/maintenance/import_models/area.rb +82 -0
- data/lib/decidim/maintenance/import_models/area_type.rb +12 -0
- data/lib/decidim/maintenance/import_models/assembly_type.rb +49 -0
- data/lib/decidim/maintenance/import_models/categorization.rb +14 -0
- data/lib/decidim/maintenance/import_models/category.rb +107 -0
- data/lib/decidim/maintenance/import_models/participatory_process_type.rb +21 -0
- data/lib/decidim/maintenance/import_models/scope.rb +163 -0
- data/lib/decidim/maintenance/import_models.rb +19 -0
- data/lib/decidim/maintenance/taxonomy_importer.rb +132 -0
- data/lib/decidim/maintenance/taxonomy_plan.rb +78 -0
- data/lib/decidim/maintenance.rb +12 -0
- data/lib/decidim/map/autocomplete.rb +52 -8
- data/lib/decidim/map/dynamic_map.rb +1 -1
- data/lib/decidim/map/provider/dynamic_map/here.rb +40 -1
- data/lib/decidim/map/provider/geocoding/here.rb +9 -3
- data/lib/decidim/map/provider/static_map/here.rb +0 -34
- data/lib/decidim/map.rb +3 -6
- data/lib/decidim/moderation_tools.rb +16 -19
- data/lib/decidim/newsletter_encryptor.rb +1 -1
- data/lib/decidim/nicknamizable.rb +1 -1
- data/lib/decidim/paddable.rb +1 -1
- data/lib/decidim/participable.rb +10 -10
- data/lib/decidim/participatory_space_user.rb +10 -0
- data/lib/decidim/private_download_helper.rb +15 -0
- data/lib/decidim/record_encryptor.rb +51 -46
- data/lib/decidim/reportable.rb +2 -6
- data/lib/decidim/resourceable.rb +16 -0
- data/lib/decidim/seeds.rb +18 -20
- data/lib/decidim/settings_manifest.rb +34 -1
- data/lib/decidim/soft_deletable.rb +17 -0
- data/lib/decidim/taxonomizable.rb +72 -0
- data/lib/decidim/translatable_attributes.rb +1 -5
- data/lib/decidim/view_model.rb +0 -1
- data/lib/tasks/decidim_download_your_data_tasks.rake +2 -4
- data/lib/tasks/decidim_procfile.rake +6 -0
- data/lib/tasks/decidim_tasks.rake +1 -0
- data/lib/tasks/decidim_taxonomies.rake +155 -0
- data/lib/tasks/upgrade/{decidim_fix_categorization.rake → clean.rake} +25 -18
- data/lib/tasks/upgrade/decidim_active_storage_migration_tasks.rake +1 -1
- data/lib/tasks/upgrade/decidim_fix_nickname_uniqueness.rake +20 -23
- data/lib/tasks/upgrade/migrations.rake +91 -0
- metadata +202 -110
- data/app/cells/decidim/amendable/amenders_list/show.erb +0 -0
- data/app/cells/decidim/content_blocks/base/content.erb +0 -0
- data/app/cells/decidim/endorsers_list/full_endorsers_list.erb +0 -3
- data/app/cells/decidim/endorsers_list_button/content.erb +0 -1
- data/app/cells/decidim/endorsers_list_button_cell.rb +0 -15
- data/app/cells/decidim/report_user_button/already_reported_modal.erb +0 -11
- data/app/cells/decidim/report_user_button/flag_modal.erb +0 -46
- data/app/cells/decidim/report_user_button/show.erb +0 -2
- data/app/cells/decidim/report_user_button_cell.rb +0 -59
- data/app/cells/decidim/scopes_picker/scope_picker_prompt.erb +0 -3
- data/app/cells/decidim/scopes_picker/scope_picker_values.erb +0 -5
- data/app/cells/decidim/scopes_picker/show.erb +0 -14
- data/app/cells/decidim/scopes_picker_cell.rb +0 -92
- data/app/commands/decidim/update_user_interests.rb +0 -41
- data/app/controllers/decidim/scopes_controller.rb +0 -84
- data/app/controllers/decidim/user_interests_controller.rb +0 -30
- data/app/forms/decidim/user_interest_scope_form.rb +0 -25
- data/app/forms/decidim/user_interests_form.rb +0 -17
- data/app/helpers/decidim/categories_helper.rb +0 -26
- data/app/helpers/decidim/scopes_helper.rb +0 -105
- data/app/jobs/decidim/hide_child_resources_job.rb +0 -24
- data/app/packs/images/decidim/vendor/leaflet/layers-2x.png +0 -0
- data/app/packs/images/decidim/vendor/leaflet/layers.png +0 -0
- data/app/packs/images/decidim/vendor/leaflet/marker-icon-2x.png +0 -0
- data/app/packs/images/decidim/vendor/leaflet/marker-icon.png +0 -0
- data/app/packs/images/decidim/vendor/leaflet/marker-shadow.png +0 -0
- data/app/packs/stylesheets/decidim/_hashtags.scss +0 -5
- data/app/packs/stylesheets/decidim/legacy/MarkerCluster.Default.scss +0 -67
- data/app/packs/stylesheets/decidim/legacy/MarkerCluster.scss +0 -18
- data/app/packs/stylesheets/decidim/legacy/leaflet.scss +0 -705
- data/app/validators/scope_belongs_to_component_validator.rb +0 -16
- data/app/views/decidim/account/_user_groups.html.erb +0 -0
- data/app/views/decidim/scopes/_scopes_picker_input.html.erb +0 -19
- data/app/views/decidim/scopes/picker.html.erb +0 -53
- data/app/views/decidim/shared/_comments.html.erb +0 -0
- data/app/views/decidim/shared/_share_modal.html.erb +0 -26
- data/app/views/decidim/shared/_tags.html.erb +0 -1
- data/app/views/decidim/user_interests/_areas.html.erb +0 -14
- data/app/views/decidim/user_interests/_scopes.html.erb +0 -22
- data/app/views/decidim/user_interests/show.html.erb +0 -22
- data/config/initializers/foundation_rails_helper.rb +0 -4
- data/config/locales/ca-IT.yml +0 -2111
- data/lib/decidim/core/test/shared_examples/has_category.rb +0 -38
- data/lib/decidim/core/test/shared_examples/has_scope.rb +0 -11
- data/lib/decidim/core/test/shared_examples/manage_component_share_tokens.rb +0 -83
- data/lib/decidim/core/test/shared_examples/preview_component_with_share_token_examples.rb +0 -49
- data/lib/decidim/core/test/shared_examples/scope_helper_examples.rb +0 -93
- data/lib/decidim/seven_zip_wrapper.rb +0 -29
- data/lib/tasks/upgrade/clean_hidden_resources.rake +0 -33
data/config/locales/no.yml
CHANGED
@@ -29,8 +29,6 @@
|
|
29
29
|
password_confirmation: Bekreft ditt passord
|
30
30
|
personal_url: Din profilside
|
31
31
|
remove_avatar: Fjern profilbilde
|
32
|
-
user_group:
|
33
|
-
avatar: Profilbilde
|
34
32
|
models:
|
35
33
|
decidim/attachment_created_event: Vedlegg
|
36
34
|
decidim/component_published_event: Aktive komponent
|
@@ -46,7 +44,6 @@
|
|
46
44
|
attributes:
|
47
45
|
decidim/user:
|
48
46
|
current_password: Nåværende passord
|
49
|
-
email: Epost
|
50
47
|
name: Kallenavn
|
51
48
|
password: Passord
|
52
49
|
password_confirmation: Bekreft passord
|
@@ -173,15 +170,13 @@
|
|
173
170
|
dismiss: Avvis varsling
|
174
171
|
amendments:
|
175
172
|
accepted:
|
176
|
-
error: En feil oppstod under godkjenningen av endringen.
|
177
173
|
success: Endringen ble godtatt.
|
178
174
|
amendable:
|
179
175
|
button: Endre %{model_name}
|
180
|
-
error: Det
|
176
|
+
error: Det oppstod et problem med å endre denne ressursen.
|
181
177
|
promote_button: Promoter til %{model_name}
|
182
178
|
promote_confirm_text: Er du sikker på at du vil forfremme denne emendasjonen?
|
183
179
|
created:
|
184
|
-
error: En feil oppstod mens du lagde endrings utkast.
|
185
180
|
success: Endrings utkastet har blitt opprettet.
|
186
181
|
destroy_draft:
|
187
182
|
error: Det oppsto et problem med å slette endrings utkastet.
|
@@ -250,10 +245,8 @@
|
|
250
245
|
dummy_authorization_handler:
|
251
246
|
fields:
|
252
247
|
allowed_postal_codes: Godkjente postnr (adskilt med komma)
|
253
|
-
allowed_scope_id: Tillatt tema
|
254
248
|
document_number: Dokumentnummer
|
255
249
|
postal_code: Postnummer
|
256
|
-
scope_id: Tema
|
257
250
|
name: Eksempel autorisering
|
258
251
|
dummy_authorization_workflow:
|
259
252
|
name: Dummy autoriserings arbeidskraft
|
@@ -335,8 +328,6 @@
|
|
335
328
|
dummy_global_translatable_text: Dummy Oversettbar tekst
|
336
329
|
enable_pads_creation: Aktiver oppretting av pads
|
337
330
|
resources_permissions_enabled: Ressurs tillatelser aktivert
|
338
|
-
scope_id: Tema
|
339
|
-
scopes_enabled: Aktiverte temaer
|
340
331
|
step:
|
341
332
|
amendment_creation_enabled: Oppretting av endringer aktivert
|
342
333
|
amendment_promotion_enabled: Forfremmelse av endringer aktivert
|
@@ -378,16 +369,10 @@
|
|
378
369
|
view_all: Vis alle
|
379
370
|
metrics:
|
380
371
|
name: Organisasjonens målinger
|
381
|
-
participatory_space_metrics:
|
382
|
-
name: Deltakelse i tall
|
383
372
|
stats:
|
384
373
|
name: Organisasjonsstatistikk
|
385
374
|
sub_hero:
|
386
375
|
name: Underhelt banner
|
387
|
-
core:
|
388
|
-
application_helper:
|
389
|
-
filter_category_values:
|
390
|
-
all: Alle
|
391
376
|
devise:
|
392
377
|
omniauth_registrations:
|
393
378
|
new:
|
@@ -406,7 +391,6 @@
|
|
406
391
|
username_help: Navnet du skriver her vil vises i alle innleggene dine. Du kan enten skrive både fornavn og etternavn, eller bare fore fornavnet ditt, hvis du ikke har lyst til å oppgi fullt navn.
|
407
392
|
sessions:
|
408
393
|
new:
|
409
|
-
are_you_new?: Er du ny på plattformen?
|
410
394
|
register: Opprett en konto
|
411
395
|
shared:
|
412
396
|
newsletter_modal:
|
@@ -414,8 +398,6 @@
|
|
414
398
|
check: Sjekk og fortsett
|
415
399
|
uncheck: Hold usjekket
|
416
400
|
title: Varsler om nyhetsbrev
|
417
|
-
omniauth_buttons:
|
418
|
-
or: Eller
|
419
401
|
doorkeeper:
|
420
402
|
authorizations:
|
421
403
|
new:
|
@@ -433,9 +415,6 @@
|
|
433
415
|
download_your_data:
|
434
416
|
export:
|
435
417
|
ready: Klar
|
436
|
-
show:
|
437
|
-
download_data: Last ned informasjonen
|
438
|
-
request_data: Etterspør informasjonen
|
439
418
|
editor_images:
|
440
419
|
drag_and_drop_help: Legg til bilder ved å dra og slippe eller lime dem inn.
|
441
420
|
endorsements:
|
@@ -583,10 +562,7 @@
|
|
583
562
|
notification_title: <a href="%{resource_path}">Profilsiden</a> til %{name} (%{nickname}), som du følger er blitt oppdatert.
|
584
563
|
export_mailer:
|
585
564
|
download_your_data_export:
|
586
|
-
click_button: 'Klikk på neste link for å laste ned dataen.<br/>Filen vil være tilgjengelig til %{date}.<br/>Du vil trenge <a href="https://www.7-zip.org/">7-Zip</a> (for Windows), <a href="https://www.keka.io/en/">Keka</a> (for MacOS) eller <a href="https://peazip.github.io">PeaZip</a> (for Linux) for å åpne den. Passord: %{password}'
|
587
565
|
download: Last ned
|
588
|
-
export:
|
589
|
-
ready: Vennligst finn vedlagte en zip-versjon av eksporten din.
|
590
566
|
subject: Eksporten din "%{name}" er klar
|
591
567
|
filters:
|
592
568
|
linked_classes:
|
@@ -638,7 +614,7 @@
|
|
638
614
|
badges:
|
639
615
|
followers:
|
640
616
|
conditions:
|
641
|
-
|
617
|
+
- Å være aktiv og følge andre vil sikkert få andre til å følge deg.
|
642
618
|
description: Dette merke er oppnådd på du når en spesifikk mengde følgere. %{organization_name} er et sosialt of politisk nettverk, veve nettet ditt for å kommunisere med andre folk på plattformen.
|
643
619
|
description_another: Denne deltakeren har %{score} følgere.
|
644
620
|
description_own: "%{score} folk følger deg."
|
@@ -791,8 +767,6 @@
|
|
791
767
|
new_conversation: Ny samtale
|
792
768
|
next: Neste
|
793
769
|
title: Samtaler
|
794
|
-
reply_form:
|
795
|
-
placeholder: Ditt svar...
|
796
770
|
show:
|
797
771
|
back: Tilbake til alle samtaler
|
798
772
|
chat_with: Samtale med
|
@@ -919,23 +893,24 @@
|
|
919
893
|
conversations: Samtaler
|
920
894
|
followers: Følgere
|
921
895
|
following: Følger
|
922
|
-
group_admins: Administrer administrator
|
923
|
-
group_members: Administrere medlemmer
|
924
896
|
groups: Grupper
|
925
897
|
members: Medlemmer
|
926
898
|
officialized: Offisiell deltaker
|
927
899
|
send_private_message: Send privat melding
|
900
|
+
sidebar:
|
901
|
+
badges:
|
902
|
+
info: Merker tjenes med å utføre spesifikke aktivitet i plattformen.
|
903
|
+
title: Merker
|
928
904
|
user:
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
resend_email_confirmation_instructions: Send email bekreftelse instruksjoner på nytt
|
905
|
+
create_user_group: Opprett gruppe
|
906
|
+
edit_profile: Rediger profil
|
907
|
+
edit_user_group: Rediger gruppeprofil
|
908
|
+
invite_user: Inviter deltaker
|
909
|
+
join_user_group: Forespør om å bli med i gruppen
|
910
|
+
leave_user_group: Forlat gruppe
|
911
|
+
manage_user_group_admins: Administrer administrator
|
912
|
+
manage_user_group_users: Administrere medlemmer
|
913
|
+
resend_email_confirmation_instructions: Send email bekreftelse instruksjoner på nytt
|
939
914
|
reported_mailer:
|
940
915
|
hide:
|
941
916
|
hello: Hei %{name},
|
@@ -957,23 +932,13 @@
|
|
957
932
|
subject: En ressurs er blitt rapportert
|
958
933
|
reports:
|
959
934
|
create:
|
960
|
-
error: Det oppstod en feil under opprettelsen av rapporten. Vennligs, prøv igjen senere.
|
961
935
|
success: Rapporten har blitt opprettet og vil bli gjennomgått av en administrator.
|
962
936
|
resource_endorsements:
|
963
937
|
create:
|
964
938
|
error: Det oppstod et problem under påtegning.
|
965
939
|
scopes:
|
966
940
|
global: Alle tema
|
967
|
-
picker:
|
968
|
-
cancel: Avbryt
|
969
|
-
change: Endre valgt tema
|
970
|
-
choose: Velg
|
971
|
-
currently_selected: Nåværende valgt tema
|
972
|
-
title: Velg %{field}
|
973
941
|
prompt: Velg et tema
|
974
|
-
scopes: Tema
|
975
|
-
scopes_picker_input:
|
976
|
-
select_scope: 'Velg et tema (for øyeblikket: %{current})'
|
977
942
|
search:
|
978
943
|
results: Søkeresultater
|
979
944
|
results_found_for_term: '%{count} Resultater for søket: "%{term}"'
|
@@ -1018,16 +983,14 @@
|
|
1018
983
|
title: Rapporter et problem
|
1019
984
|
flag_user_modal:
|
1020
985
|
already_reported: Dette innholdet er allerede rapportert og vil bli vurdert av en administrator.
|
986
|
+
close: Lukk
|
987
|
+
description: Hva er upassende med brukeren?
|
1021
988
|
offensive: Inneholder rasisme, sexisme, banning, personangrep, dødstrusler, selvmordsforespørsler eller andre former for hatefullt språk.
|
1022
989
|
report: Rapporter
|
1023
990
|
spam: Inneholder klikkeagn, reklame, svindel eller skriptbotter.
|
991
|
+
title: Rapporter upassende bruker
|
1024
992
|
floating_help:
|
1025
993
|
help: Hjelp
|
1026
|
-
participatory_space_filters:
|
1027
|
-
filters:
|
1028
|
-
areas: Områder
|
1029
|
-
scope: Tema
|
1030
|
-
select_an_area: Velg et område
|
1031
994
|
public_participation:
|
1032
995
|
public_participation: Vis min deltagelse offentlig
|
1033
996
|
reference:
|
@@ -1054,9 +1017,6 @@
|
|
1054
1017
|
pages_count: Sider
|
1055
1018
|
participants_count: Deltakere
|
1056
1019
|
users_count: Deltakere
|
1057
|
-
tags:
|
1058
|
-
filter_results_for_category: 'Filtrer resultater for kategori: %{resource}'
|
1059
|
-
filter_results_for_scope: 'Filtrere resultater for tema: %{resource}'
|
1060
1020
|
translation_bar:
|
1061
1021
|
help_text: "<strong>Advarsel:</strong> Innhold kan automatisk bli oversatt og ikke alltid være 100 % nøyaktig."
|
1062
1022
|
show_original: Vis originaltekst
|
@@ -1075,13 +1035,6 @@
|
|
1075
1035
|
send: Send
|
1076
1036
|
update:
|
1077
1037
|
error: Melding ikke sendt. Prøv igjen senere
|
1078
|
-
user_interests:
|
1079
|
-
show:
|
1080
|
-
my_interests: Mine interesser
|
1081
|
-
update_my_interests: Oppdater interessene mine
|
1082
|
-
update:
|
1083
|
-
error: Det oppstod et problem med å oppdatere interessene dine.
|
1084
|
-
success: Interessene dine er oppdatert.
|
1085
1038
|
user_report_mailer:
|
1086
1039
|
notify:
|
1087
1040
|
body_1: Brukeren %{user} er rapportert av %{token}
|
@@ -1225,9 +1178,6 @@
|
|
1225
1178
|
long_words: inneholder ord som er for lange (over 35 tegn)
|
1226
1179
|
must_start_with_caps: må starte med en stor bokstav
|
1227
1180
|
not_locked: var ikke låst
|
1228
|
-
not_saved:
|
1229
|
-
one: 'Det oppstod en feil under behandling av forespørselen din:'
|
1230
|
-
other: 'Det oppsto flere feil med å behandle forespørselen din:'
|
1231
1181
|
too_many_marks: bruker for mange påfølgende skilletegn (f.eks. ! og ?)
|
1232
1182
|
too_much_caps: bruker for mange store bokstaver (over 25% av teksten)
|
1233
1183
|
forms:
|
@@ -1252,7 +1202,6 @@
|
|
1252
1202
|
footer:
|
1253
1203
|
cc_by_license: Creative Commons lisens
|
1254
1204
|
decidim_logo: Decidim logo
|
1255
|
-
download_open_data: Last ned Åpen Data filer
|
1256
1205
|
log_in: Logg inn
|
1257
1206
|
made_with_open_source: Nettsted laget med <a target="_blank" href="https://github.com/decidim/decidim">fri programvare</a>.
|
1258
1207
|
header:
|
@@ -1290,7 +1239,6 @@
|
|
1290
1239
|
authorizations: Fullmakter
|
1291
1240
|
delete_my_account: Slett kontoen min
|
1292
1241
|
my_data: Min data
|
1293
|
-
my_interests: Mine interesser
|
1294
1242
|
notifications_settings: Varslingsinnstillinger
|
1295
1243
|
title: Deltaker innstillinger
|
1296
1244
|
user_groups: Grupper
|
data/config/locales/pl.yml
CHANGED
@@ -33,8 +33,6 @@ pl:
|
|
33
33
|
personal_url: Prywatny adres URL
|
34
34
|
remove_avatar: Usuń awatar
|
35
35
|
tos_agreement: Warunki korzystania z Platformy
|
36
|
-
user_group:
|
37
|
-
avatar: Awatar
|
38
36
|
models:
|
39
37
|
decidim/attachment_created_event: Załącznik
|
40
38
|
decidim/component_published_event: Aktywny komponent
|
@@ -59,7 +57,6 @@ pl:
|
|
59
57
|
with_participatory_space: Przestrzeń partycypacji
|
60
58
|
decidim/user:
|
61
59
|
current_password: Obecne hasło
|
62
|
-
email: E-mail
|
63
60
|
name: Pseudonim
|
64
61
|
password: Hasło
|
65
62
|
password_confirmation: Potwierdzenie hasła
|
@@ -278,16 +275,14 @@ pl:
|
|
278
275
|
dismiss: Odrzuć powiadomienie
|
279
276
|
amendments:
|
280
277
|
accepted:
|
281
|
-
error: Wystąpił błąd podczas akceptowania poprawki.
|
282
278
|
success: Poprawka została zaakceptowana.
|
283
279
|
amendable:
|
284
280
|
button: '%{model_name} - popraw'
|
285
|
-
error: Wystąpił błąd podczas
|
281
|
+
error: Wystąpił błąd podczas zmiany tego zasobu.
|
286
282
|
promote_button: '%{model_name} - promuj'
|
287
283
|
promote_confirm_text: Czy na pewno chcesz promować tę wersję?
|
288
284
|
promote_help_text: Możesz promować tę korektę i opublikować ją jako niezależny %{model_name}.
|
289
285
|
created:
|
290
|
-
error: Wystąpił błąd podczas tworzenia projektu poprawki.
|
291
286
|
success: Projekt poprawki został pomyślnie utworzony.
|
292
287
|
destroy_draft:
|
293
288
|
error: Wystąpił błąd podczas usuwania szkicu poprawki.
|
@@ -337,7 +332,6 @@ pl:
|
|
337
332
|
error: Wystąpił błąd podczas aktualizowania szkicu poprawki.
|
338
333
|
success: Szkic poprawki został pomyślnie zaktualizowany.
|
339
334
|
withdraw:
|
340
|
-
error: Wystąpił błąd podczas wycofywania poprawki.
|
341
335
|
success: Poprawka została pomyślnie wycofana.
|
342
336
|
wizard_step_form:
|
343
337
|
steps:
|
@@ -384,10 +378,8 @@ pl:
|
|
384
378
|
explanation: Uzyskaj weryfikację, wprowadzając numer dokumentu kończący się na "X".
|
385
379
|
fields:
|
386
380
|
allowed_postal_codes: Dozwolone kody pocztowe (oddzielone przecinkami)
|
387
|
-
allowed_scope_id: Dozwolony zakres
|
388
381
|
document_number: Numer dokumentu
|
389
382
|
postal_code: Kod pocztowy
|
390
|
-
scope_id: Niniejsze rozporządzenie stosuje się od dnia 1 stycznia 2018 r.
|
391
383
|
name: Przykładowa autoryzacja
|
392
384
|
dummy_authorization_workflow:
|
393
385
|
name: Przykładowy proces autoryzacji
|
@@ -481,8 +473,6 @@ pl:
|
|
481
473
|
dummy_global_translatable_text: Przykładowy tekst do tłumaczenia
|
482
474
|
enable_pads_creation: Włącz tworzenie padów
|
483
475
|
resources_permissions_enabled: Włączono uprawnienia do zasobów
|
484
|
-
scope_id: Zakres
|
485
|
-
scopes_enabled: Zakresy włączone
|
486
476
|
step:
|
487
477
|
amendment_creation_enabled: Tworzenie poprawek włączone
|
488
478
|
amendment_promotion_enabled: Promowanie poprawek włączone
|
@@ -567,8 +557,6 @@ pl:
|
|
567
557
|
application_helper:
|
568
558
|
filter_area_values:
|
569
559
|
all: Wszystkie
|
570
|
-
filter_category_values:
|
571
|
-
all: Wszystkie
|
572
560
|
filter_scope_values:
|
573
561
|
all: Wszystkie
|
574
562
|
devise:
|
@@ -597,7 +585,6 @@ pl:
|
|
597
585
|
username_help: Publiczne imię wyświetlane przy Twoich wpisach. W celu zagwarantowania anonimowości może być dowolna nazwa.
|
598
586
|
sessions:
|
599
587
|
new:
|
600
|
-
are_you_new?: Nowy na platformie?
|
601
588
|
register: Utwórz konto
|
602
589
|
sign_in_disabled: Możesz uzyskać dostęp za pomocą konta zewnętrznego.
|
603
590
|
sign_up_disabled: Tworzenie konta jest wyłączone, możesz użyć istniejącego konta, aby uzyskać dostęp.
|
@@ -615,8 +602,6 @@ pl:
|
|
615
602
|
uczestnictwa w procesach na platformie.<br>Jeśli mimo wszystko nie chcesz otrzymywać newsletterów, doskonale rozumiemy twoją decyzję.</p>
|
616
603
|
<p>Dziękujemy za uwagę!</p>
|
617
604
|
title: Powiadomienia newslettera
|
618
|
-
omniauth_buttons:
|
619
|
-
or: Lub
|
620
605
|
password_fields:
|
621
606
|
hidden_password: Twoje hasło jest ukryte
|
622
607
|
hide_password: Ukryj hasło
|
@@ -641,27 +626,17 @@ pl:
|
|
641
626
|
download_your_data:
|
642
627
|
export:
|
643
628
|
ready: Gotowy
|
644
|
-
show:
|
645
|
-
download_data: Pobierz dane
|
646
|
-
download_data_description_html: |-
|
647
|
-
Plik zawierający wszystkie informacje związane z twoim kontem zostanie wysłany na adres <strong>%{user_email}</strong>.
|
648
|
-
W e-mailu znajdziesz plik .zip i hasło potrzebne do otworzenia go.<br/><br/>Aby rozpakować plik, będziesz potrzebować programu <a href="https://www.7-zip.org/">7-Zip</a> (dla systemu Windows) albo <a href="https://www.keka.io/">Keka</a> (dla systemu MacOS).
|
649
|
-
Jeśli korzystasz z systemu Linux, w większości przypadków program będzie zainstalowany domyślnie. Jeśli nie, możesz użyć programu <a href="https://gitlab.gnome.org/GNOME/file-roller">File Roller</a> albo <a href="https://peazip.github.io">PeaZip</a>).
|
650
|
-
request_data: Poproś o dane
|
651
629
|
editor_images:
|
652
630
|
create:
|
653
631
|
error: Wystąpił błąd podczas przesyłania obrazu.
|
654
632
|
success: Obraz przesłany pomyślnie.
|
655
633
|
drag_and_drop_help: Dodaj obrazy, przeciągając i upuszczając lub wklejając je.
|
656
634
|
endorsement_buttons_cell:
|
657
|
-
already_endorsed: Nie lubię tego
|
658
635
|
endorse: Lubię to
|
659
636
|
endorsements:
|
660
637
|
identities:
|
661
638
|
done: Gotowe
|
662
639
|
select_identity: Wybierz tożsamość
|
663
|
-
endorsers_list:
|
664
|
-
endorsed_by: Polubione przez…
|
665
640
|
errors:
|
666
641
|
files:
|
667
642
|
file_cannot_be_processed: Plik nie może zostać przetworzony
|
@@ -833,10 +808,7 @@ pl:
|
|
833
808
|
notification_title: Uczestnik %{name} (%{nickname}) został oficjalnie zarejestrowany.
|
834
809
|
export_mailer:
|
835
810
|
download_your_data_export:
|
836
|
-
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}'
|
837
811
|
download: Pobieranie
|
838
|
-
export:
|
839
|
-
ready: Mail zawiera załączony plik eksportu.
|
840
812
|
subject: Twój eksport "%{name}" jest gotowy
|
841
813
|
filters:
|
842
814
|
linked_classes:
|
@@ -878,8 +850,8 @@ pl:
|
|
878
850
|
attachment_link:
|
879
851
|
explanation: Wytyczne dotyczące linków do załącznika
|
880
852
|
help_messages:
|
881
|
-
|
882
|
-
|
853
|
+
- Akceptowane są tylko poprawne formaty URL.
|
854
|
+
- Pamiętaj, że linki muszą być publiczne, aby wszyscy uczestnicy mieli do nich dostęp.
|
883
855
|
errors:
|
884
856
|
decidim/user:
|
885
857
|
password: Hasło jest za krótkie.
|
@@ -889,7 +861,6 @@ pl:
|
|
889
861
|
file:
|
890
862
|
explanation: 'Wytyczne dotyczące pliku:'
|
891
863
|
message_1: Ma być obrazem lub dokumentem.
|
892
|
-
message_2: W przypadku obrazów używaj najlepiej tych o orientacji poziomej, usługa przycina obraz.
|
893
864
|
icon:
|
894
865
|
explanation: 'Wytyczne dla ikony:'
|
895
866
|
message_1: Musi być obrazem kwadratowym.
|
@@ -929,7 +900,7 @@ pl:
|
|
929
900
|
badges:
|
930
901
|
followers:
|
931
902
|
conditions:
|
932
|
-
|
903
|
+
- Bycie aktywnym i obserwowanie innych użytkowników z pewnością sprawi, że inne osoby będą obserwować Ciebie.
|
933
904
|
description: Ta odznaka jest przyznawana, gdy będziesz miał określoną liczbę obserwujących. %{organization_name} jest siecią społeczną i polityczną, rozwijaj swoje kontakty by komunikować się z innymi osobami na platformie.
|
934
905
|
description_another: Ten użytkownik ma %{score} obserwujących.
|
935
906
|
description_own: "%{score} użytkowników obserwuje Ciebie."
|
@@ -1018,7 +989,7 @@ pl:
|
|
1018
989
|
success: Opuszczono grupę.
|
1019
990
|
members:
|
1020
991
|
accept_or_reject_join_requests: 'Następujący użytkownicy zgłosili się, aby dołączyć do tej grupy. Zaakceptuj lub odrzuć ich prośby:'
|
1021
|
-
accept_request:
|
992
|
+
accept_request: Zaakceptować
|
1022
993
|
reject_request: Odrzuć
|
1023
994
|
new:
|
1024
995
|
create_user_group: Utwórz grupę
|
@@ -1176,11 +1147,11 @@ pl:
|
|
1176
1147
|
participants:
|
1177
1148
|
description: Liczba aktywnych użytkowników w organizacji
|
1178
1149
|
object: użytkownicy
|
1179
|
-
title:
|
1150
|
+
title: Użytkownicy
|
1180
1151
|
users:
|
1181
1152
|
description: Liczba użytkowników w organizacji
|
1182
1153
|
object: użytkownicy
|
1183
|
-
title:
|
1154
|
+
title: Użytkownicy
|
1184
1155
|
newsletter_mailer:
|
1185
1156
|
newsletter:
|
1186
1157
|
no_reply_notice: Ta wiadomość została wysłana z adresu do powiadomień, który nie akceptuje poczty przychodzącej. Prosimy na nią nie odpowiadać.
|
@@ -1360,13 +1331,17 @@ pl:
|
|
1360
1331
|
members: Członkowie
|
1361
1332
|
officialized: Oficjalny użytkownik
|
1362
1333
|
send_private_message: Wyślij wiadomość prywatną
|
1334
|
+
sidebar:
|
1335
|
+
badges:
|
1336
|
+
info: Odznaki zdobywa się wykonując określoną czynność na platformie.
|
1337
|
+
title: Odznaki
|
1363
1338
|
user:
|
1364
1339
|
actions:
|
1365
1340
|
create_user_group: Utwórz grupę
|
1366
1341
|
disabled_message: Wiadomość
|
1367
1342
|
edit_profile: Edytuj profil
|
1368
1343
|
edit_user_group: Edytuj profil grupy
|
1369
|
-
invite_user: Zaproś
|
1344
|
+
invite_user: Zaproś uczestnika
|
1370
1345
|
join_user_group: Poproś o dołączenie do grupy
|
1371
1346
|
leave_user_group: Opuścić grupę
|
1372
1347
|
manage_user_group: Zarządzanie grupą
|
@@ -1375,7 +1350,16 @@ pl:
|
|
1375
1350
|
message: Wiadomość
|
1376
1351
|
resend_email_confirmation_instructions: Wyślij ponownie instrukcje dotyczące potwierdzenia adresu e-mail
|
1377
1352
|
confirmation_instructions_sent: Wysłano instrukcje dotyczące potwierdzenia adresu e-mail.
|
1353
|
+
create_user_group: Utwórz grupę
|
1354
|
+
edit_profile: Edytuj profil
|
1355
|
+
edit_user_group: Edytuj profil grupy
|
1378
1356
|
fill_in_email_to_confirm_it: Podaj adres e-mail grupy, aby go potwierdzić.
|
1357
|
+
invite_user: Zaproś użytkownika
|
1358
|
+
join_user_group: Poproś o dołączenie do grupy
|
1359
|
+
leave_user_group: Opuścić grupę
|
1360
|
+
manage_user_group_admins: Zarządzaj administratorami
|
1361
|
+
manage_user_group_users: Zarządzaj członkami
|
1362
|
+
resend_email_confirmation_instructions: Wyślij ponownie instrukcje dotyczące potwierdzenia adresu e-mail
|
1379
1363
|
reported_mailer:
|
1380
1364
|
hide:
|
1381
1365
|
hello: Witaj %{name},
|
@@ -1397,23 +1381,13 @@ pl:
|
|
1397
1381
|
subject: Zasób został zgłoszony
|
1398
1382
|
reports:
|
1399
1383
|
create:
|
1400
|
-
error: Wystąpił błąd podczas tworzenia zgłoszenia. Proszę spróbować ponownie.
|
1401
1384
|
success: Zgłoszenie zostało utworzone z powodzeniem i zostanie zweryfikowane przez administratora.
|
1402
1385
|
resource_endorsements:
|
1403
1386
|
create:
|
1404
1387
|
error: Wystąpił błąd podczas udzielania rekomendacji.
|
1405
1388
|
scopes:
|
1406
1389
|
global: Zakres globalny
|
1407
|
-
picker:
|
1408
|
-
cancel: Anuluj
|
1409
|
-
change: Zmień wybrany zakres
|
1410
|
-
choose: Wybierz
|
1411
|
-
currently_selected: Aktualnie wybrany zakres
|
1412
|
-
title: Wybierz %{field}
|
1413
1390
|
prompt: Wybierz zakres
|
1414
|
-
scopes: Zakresy
|
1415
|
-
scopes_picker_input:
|
1416
|
-
select_scope: 'Wybierz zakres (obecny: %{current})'
|
1417
1391
|
search:
|
1418
1392
|
name: Szukaj
|
1419
1393
|
results: Wyniki wyszukiwania
|
@@ -1467,11 +1441,14 @@ pl:
|
|
1467
1441
|
flag_user_modal:
|
1468
1442
|
already_reported: Ta treść została już zgłoszona i zostanie sprawdzona przez administratora.
|
1469
1443
|
block: Zablokuj tego uczestnika
|
1444
|
+
close: Zamknij
|
1445
|
+
description: Jaki jest powód zgłoszenia użytkownika?
|
1470
1446
|
does_not_belong: Zawiera nielegalną aktywność, groźby samobójstwa, dane o charakterze prywatnym lub inne treści, które według Ciebie nie powinny pojawić się w %{organization_name}.
|
1471
1447
|
hide: Ukryj całą zawartość
|
1472
1448
|
offensive: Promuje rasizm, seksizm, kłamstwa, ataki osobiste, groźby śmierci, prośby samobójcze lub jakąkolwiek formę mowy nienawiści.
|
1473
1449
|
report: Zgłoś
|
1474
1450
|
spam: Zawiera clickbaity, reklamy, oszustwa lub skrypty botów.
|
1451
|
+
title: Zgłoś użytkownika
|
1475
1452
|
floating_help:
|
1476
1453
|
help: Pomoc
|
1477
1454
|
follow_button:
|
@@ -1481,12 +1458,6 @@ pl:
|
|
1481
1458
|
sign_up: Utwórz konto
|
1482
1459
|
mentions_modal:
|
1483
1460
|
remove_recipient: Usuń odbiorcę %{name}
|
1484
|
-
participatory_space_filters:
|
1485
|
-
filters:
|
1486
|
-
area: Obszar
|
1487
|
-
areas: Kategorie
|
1488
|
-
scope: Niniejsze rozporządzenie stosuje się od dnia 1 stycznia 2018 r.
|
1489
|
-
select_an_area: Wybierz kategorię
|
1490
1461
|
progress: Postęp
|
1491
1462
|
public_participation:
|
1492
1463
|
public_participation: Wyświetl publicznie moje uczestnictwo
|
@@ -1515,9 +1486,6 @@ pl:
|
|
1515
1486
|
pages_count: Stron
|
1516
1487
|
participants_count: Użytkowników
|
1517
1488
|
users_count: Uczestników
|
1518
|
-
tags:
|
1519
|
-
filter_results_for_category: 'Filtruj wyniki dla kategorii: %{resource}'
|
1520
|
-
filter_results_for_scope: 'Filtruj wyniki dla zakresu: %{resource}'
|
1521
1489
|
translation_bar:
|
1522
1490
|
help_text: "<strong>Uwaga:</strong> Zawartość może być tłumaczeniem automatycznym i może nie być w 100% dokładna."
|
1523
1491
|
show_original: Pokaż oryginalny tekst
|
@@ -1540,15 +1508,6 @@ pl:
|
|
1540
1508
|
send: Wyślij
|
1541
1509
|
update:
|
1542
1510
|
error: Wiadomość nie została wysłana. Spróbuj ponownie później
|
1543
|
-
user_interests:
|
1544
|
-
show:
|
1545
|
-
my_interests: Moje zainteresowania
|
1546
|
-
no_scopes: Ta organizacja nie ma jeszcze żadnego zakresu!
|
1547
|
-
select_your_interests: Wybierz tematy, które Cię interesują, aby widzieć wydarzenia z nimi związane w zakładce Oś czasu na Twoim profilu.
|
1548
|
-
update_my_interests: Zaktualizuj moje zainteresowania
|
1549
|
-
update:
|
1550
|
-
error: Wystąpił błąd podczas aktualizowania Twoich zainteresowań.
|
1551
|
-
success: Twoje zainteresowania zostały zaktualizowane.
|
1552
1511
|
user_report_mailer:
|
1553
1512
|
notify:
|
1554
1513
|
body_1: Użytkownik %{user} został zgłoszony przez %{token}
|
@@ -1832,11 +1791,6 @@ pl:
|
|
1832
1791
|
nesting_too_deep: nie może wchodzić w skład podkategorii
|
1833
1792
|
not_found: nie może zostać znaleziony. Czy utworzyłeś(aś) wcześniej konto?
|
1834
1793
|
not_locked: nie był zablokowany
|
1835
|
-
not_saved:
|
1836
|
-
one: 'Wystąpił błąd podczas przetwarzania Twojego żądania:'
|
1837
|
-
few: 'Podczas przetwarzania Twojego żądania wystąpiły błędy:'
|
1838
|
-
many: 'Podczas przetwarzania Twojego żądania wystąpiły błędy:'
|
1839
|
-
other: 'Podczas przetwarzania Twojego żądania wystąpiły błędy:'
|
1840
1794
|
too_many_marks: używa zbyt wielu kolejnych znaków interpunkcyjnych (np.! i?)
|
1841
1795
|
too_much_caps: używa zbyt dużej liczby wielkich liter (ponad 25% tekstu)
|
1842
1796
|
too_short: jest za krótkie (poniżej %{count} znaków)
|
@@ -1915,7 +1869,6 @@ pl:
|
|
1915
1869
|
data_consent_settings: Ustawienia cookies
|
1916
1870
|
decidim_logo: Logo Decidim
|
1917
1871
|
decidim_title: Decidim
|
1918
|
-
download_open_data: Pobierz pliki Open Data
|
1919
1872
|
log_in: Zaloguj się
|
1920
1873
|
made_with_open_source: Strona internetowa powstała z użyciem <a target="_blank" href="https://github.com/decidim/decidim">free software</a>.
|
1921
1874
|
resources: Zasoby
|
@@ -1962,7 +1915,6 @@ pl:
|
|
1962
1915
|
authorizations: Autoryzacje
|
1963
1916
|
delete_my_account: Usuń moje konto
|
1964
1917
|
my_data: Moje dane
|
1965
|
-
my_interests: Moje zainteresowania
|
1966
1918
|
notifications_settings: Ustawienia powiadomień
|
1967
1919
|
profile: Profil
|
1968
1920
|
title: Ustawienia użytkownika
|