decidim-core 0.22.0 → 0.23.3
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of decidim-core might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/assets/config/decidim_core_manifest.js +5 -0
- data/app/assets/javascripts/decidim.js.es6 +2 -0
- data/app/assets/javascripts/decidim/ajax_modals.js.es6 +3 -3
- data/app/assets/javascripts/decidim/confirm.js.es6 +3 -2
- data/app/assets/javascripts/decidim/core/bundle.js +1 -1
- data/app/assets/javascripts/decidim/core/bundle.js.map +1 -1
- data/app/assets/javascripts/decidim/diff_mode_dropdown.js.es6 +18 -4
- data/app/assets/javascripts/decidim/editor.js.es6 +4 -4
- data/app/assets/javascripts/decidim/geocoding.js.es6 +60 -0
- data/app/assets/javascripts/decidim/geocoding/attach_input.js.es6 +106 -0
- data/app/assets/javascripts/decidim/geocoding/format_address.js.es6 +29 -0
- data/app/assets/javascripts/decidim/geocoding/provider/here.js.es6 +107 -0
- data/app/assets/javascripts/decidim/geocoding/provider/photon.js.es6 +77 -0
- data/app/assets/javascripts/decidim/map.js.es6 +34 -124
- data/app/assets/javascripts/decidim/map/controller.js.es6 +92 -0
- data/app/assets/javascripts/decidim/map/controller/markers.js.es6 +65 -0
- data/app/assets/javascripts/decidim/map/controller/static.es6 +48 -0
- data/app/assets/javascripts/decidim/map/factory.js.es6 +51 -0
- data/app/assets/javascripts/decidim/map/icon.js.es6 +31 -0
- data/app/assets/javascripts/decidim/map/legacy.js.es6 +87 -0
- data/app/assets/javascripts/decidim/map/provider/default.js.es6 +22 -0
- data/app/assets/javascripts/decidim/map/provider/here.js.es6 +22 -0
- data/app/assets/javascripts/decidim/security/selfxss_warning.js.es6 +19 -0
- data/app/assets/stylesheets/decidim/_decidim.scss +2 -0
- data/app/assets/stylesheets/decidim/layouts/_home.scss +5 -0
- data/app/assets/stylesheets/decidim/modules/_cards.scss +15 -0
- data/app/assets/stylesheets/decidim/modules/_forms.scss +14 -0
- data/app/assets/stylesheets/decidim/modules/_layout.scss +11 -3
- data/app/assets/stylesheets/decidim/modules/_map.scss +35 -0
- data/app/assets/stylesheets/decidim/modules/_progress-bar.scss +4 -0
- data/app/assets/stylesheets/decidim/modules/_reveal.scss +5 -0
- data/app/assets/stylesheets/decidim/modules/_status-labels.scss +2 -1
- data/app/cells/decidim/author/flag.erb +1 -1
- data/app/cells/decidim/author/profile_inline.erb +2 -2
- data/app/cells/decidim/author_cell.rb +5 -2
- data/app/cells/decidim/card_cell.rb +21 -7
- data/app/cells/decidim/card_m/show.erb +1 -1
- data/app/cells/decidim/card_m_cell.rb +6 -4
- data/app/cells/decidim/collapsible_authors_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/sub_hero/show.erb +3 -1
- data/app/cells/decidim/diff/diff_mode_html.erb +5 -5
- data/app/cells/decidim/follow_button/show.erb +6 -6
- data/app/cells/decidim/follow_button_cell.rb +8 -0
- data/app/cells/decidim/progress_bar/show.erb +11 -4
- data/app/cells/decidim/progress_bar_cell.rb +20 -1
- data/app/cells/decidim/tos_page/announcement.erb +0 -1
- data/app/cells/decidim/tos_page/form.erb +17 -0
- data/app/cells/decidim/translation_bar/show.erb +6 -0
- data/app/cells/decidim/translation_bar_cell.rb +52 -0
- data/app/cells/decidim/version_cell.rb +1 -1
- data/app/cells/decidim/versions_list_cell.rb +1 -1
- data/app/commands/decidim/amendable/accept.rb +9 -3
- data/app/commands/decidim/amendable/create_draft.rb +2 -0
- data/app/commands/decidim/amendable/update_draft.rb +2 -0
- data/app/commands/decidim/attachment_methods.rb +20 -5
- data/app/commands/decidim/destroy_account.rb +1 -0
- data/app/commands/decidim/gallery_methods.rb +16 -9
- data/app/commands/decidim/messaging/reply_to_conversation.rb +1 -1
- data/app/commands/decidim/multiple_attachments_methods.rb +56 -0
- data/app/controllers/concerns/decidim/devise_controllers.rb +1 -0
- data/app/controllers/concerns/decidim/filter_resource.rb +24 -6
- data/app/controllers/concerns/decidim/flaggable.rb +20 -0
- data/app/controllers/concerns/decidim/force_authentication.rb +1 -0
- data/app/controllers/concerns/decidim/impersonate_users.rb +1 -1
- data/app/controllers/concerns/decidim/needs_snippets.rb +20 -0
- data/app/controllers/concerns/decidim/paginable.rb +5 -1
- data/app/controllers/concerns/decidim/withdrawable.rb +20 -0
- data/app/controllers/decidim/application_controller.rb +16 -0
- data/app/controllers/decidim/components/base_controller.rb +6 -1
- data/app/controllers/decidim/cookie_policy_controller.rb +6 -3
- data/app/controllers/decidim/messaging/conversations_controller.rb +5 -2
- data/app/forms/decidim/account_form.rb +5 -1
- data/app/forms/decidim/amendable/create_form.rb +1 -1
- data/app/forms/decidim/amendable/form.rb +44 -3
- data/app/forms/decidim/attachment_form.rb +6 -1
- data/app/forms/decidim/user_group_form.rb +5 -1
- data/app/helpers/decidim/cells_helper.rb +3 -15
- data/app/helpers/decidim/check_boxes_tree_helper.rb +21 -12
- data/app/helpers/decidim/cookies_helper.rb +1 -1
- data/app/helpers/decidim/decidim_form_helper.rb +1 -1
- data/app/helpers/decidim/filter_params_helper.rb +30 -0
- data/app/helpers/decidim/map_helper.rb +86 -23
- data/app/helpers/decidim/orders_helper.rb +6 -1
- data/app/helpers/decidim/paginate_helper.rb +1 -8
- data/app/helpers/decidim/sanitize_helper.rb +8 -0
- data/app/helpers/decidim/scopes_helper.rb +5 -5
- data/app/helpers/decidim/translations_helper.rb +7 -1
- data/app/jobs/decidim/data_portability_export_job.rb +3 -3
- data/app/jobs/decidim/machine_translation_fields_job.rb +30 -0
- data/app/jobs/decidim/machine_translation_resource_job.rb +113 -0
- data/app/jobs/decidim/machine_translation_save_job.rb +33 -0
- data/app/jobs/decidim/open_data_job.rb +1 -1
- data/app/mailers/decidim/application_mailer.rb +1 -0
- data/app/mailers/decidim/reported_mailer.rb +8 -1
- data/app/models/decidim/action_log.rb +1 -1
- data/app/models/decidim/area.rb +3 -0
- data/app/models/decidim/area_type.rb +4 -0
- data/app/models/decidim/attachment.rb +30 -2
- data/app/models/decidim/attachment_collection.rb +3 -0
- data/app/models/decidim/authorization.rb +3 -0
- data/app/models/decidim/category.rb +4 -0
- data/app/models/decidim/component.rb +7 -0
- data/app/models/decidim/content_block.rb +11 -1
- data/app/models/decidim/contextual_help_section.rb +4 -0
- data/app/models/decidim/follow.rb +3 -1
- data/app/models/decidim/messaging/message.rb +1 -1
- data/app/models/decidim/moderation.rb +1 -1
- data/app/models/decidim/newsletter.rb +3 -0
- data/app/models/decidim/oauth_application.rb +2 -0
- data/app/models/decidim/organization.rb +54 -10
- data/app/models/decidim/scope.rb +4 -1
- data/app/models/decidim/scope_type.rb +3 -0
- data/app/models/decidim/share_token.rb +49 -0
- data/app/models/decidim/static_page.rb +4 -1
- data/app/models/decidim/static_page_topic.rb +3 -0
- data/app/models/decidim/user.rb +11 -3
- data/app/models/decidim/user_base_entity.rb +6 -2
- data/app/permissions/decidim/permissions.rb +9 -0
- data/app/presenters/decidim/admin_log/component_presenter.rb +2 -2
- data/app/presenters/decidim/admin_log/moderation_presenter.rb +2 -2
- data/app/presenters/decidim/admin_log/organization_presenter.rb +2 -2
- data/app/presenters/decidim/admin_log/user_presenter.rb +2 -2
- data/app/presenters/decidim/log/base_presenter.rb +10 -2
- data/app/presenters/decidim/log/value_types/default_presenter.rb +1 -1
- data/app/presenters/decidim/official_author_presenter.rb +36 -0
- data/app/presenters/decidim/resource_locator_presenter.rb +63 -12
- data/app/queries/decidim/similar_emendations.rb +4 -4
- data/app/scrubbers/decidim/newsletter_scrubber.rb +31 -0
- data/app/scrubbers/decidim/user_input_scrubber.rb +1 -1
- data/app/serializers/decidim/importers/participatory_space_components_importer.rb +1 -1
- data/app/services/decidim/base_diff_renderer.rb +17 -0
- data/app/services/decidim/open_data_exporter.rb +2 -0
- data/app/services/decidim/resource_search.rb +95 -6
- data/app/services/decidim/static_map_generator.rb +10 -26
- data/app/services/decidim/tokenizer.rb +38 -0
- data/app/services/decidim/traceability.rb +3 -0
- data/app/uploaders/decidim/application_uploader.rb +19 -1
- data/app/uploaders/decidim/attachment_uploader.rb +23 -17
- data/app/uploaders/decidim/banner_image_uploader.rb +1 -1
- data/app/uploaders/decidim/hero_image_uploader.rb +1 -1
- data/app/uploaders/decidim/homepage_image_uploader.rb +1 -1
- data/app/uploaders/decidim/image_uploader.rb +6 -2
- data/app/uploaders/decidim/oauth_application_logo_uploader.rb +1 -1
- data/app/uploaders/decidim/official_image_footer_uploader.rb +1 -1
- data/app/uploaders/decidim/official_image_header_uploader.rb +1 -1
- data/app/uploaders/decidim/organization_logo_uploader.rb +1 -1
- data/app/uploaders/decidim/record_image_uploader.rb +15 -0
- data/app/validators/etiquette_validator.rb +0 -7
- data/app/validators/geocoding_validator.rb +9 -4
- data/app/validators/passthru_validator.rb +111 -0
- data/app/validators/scope_belongs_to_component_validator.rb +16 -0
- data/app/validators/uploader_content_type_validator.rb +44 -0
- data/app/views/decidim/authorization_modals/_content.html.erb +2 -2
- data/app/views/decidim/devise/registrations/new.html.erb +3 -1
- data/app/views/decidim/devise/sessions/new.html.erb +3 -1
- data/app/views/decidim/messaging/conversations/_error_modal.html.erb +21 -0
- data/app/views/decidim/messaging/conversations/error.js.erb +10 -0
- data/app/views/decidim/newsletter_mailer/newsletter.html.erb +1 -1
- data/app/views/decidim/notification_mailer/event_received.html.erb +2 -2
- data/app/views/decidim/pages/_standalone.html.erb +1 -1
- data/app/views/decidim/pages/_tabbed.html.erb +1 -1
- data/app/views/decidim/reported_mailer/report.html.erb +49 -3
- data/app/views/decidim/scopes/_scopes_picker_input.html.erb +15 -14
- data/app/views/decidim/searches/_filters.html.erb +1 -0
- data/app/views/decidim/shared/_login_modal.html.erb +14 -3
- data/app/views/decidim/shared/_static_map.html.erb +1 -1
- data/app/views/layouts/decidim/_head.html.erb +2 -0
- data/app/views/layouts/decidim/_js_configuration.html.erb +7 -1
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +3 -4
- data/config/locales/bg.yml +1508 -0
- data/config/locales/ca.yml +36 -9
- data/config/locales/cs.yml +54 -27
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +156 -128
- data/config/locales/el.yml +0 -4
- data/config/locales/en.yml +30 -3
- data/config/locales/eo.yml +92 -0
- data/config/locales/es-MX.yml +29 -2
- data/config/locales/es-PY.yml +28 -1
- data/config/locales/es.yml +44 -17
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +9 -4
- data/config/locales/fi-plain.yml +28 -1
- data/config/locales/fi.yml +34 -7
- data/config/locales/fr-CA.yml +32 -4
- data/config/locales/fr.yml +65 -37
- data/config/locales/ga-IE.yml +0 -8
- data/config/locales/gl.yml +10 -5
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +7 -5
- data/config/locales/id-ID.yml +3 -4
- data/config/locales/is-IS.yml +3 -9
- data/config/locales/is.yml +463 -0
- data/config/locales/it.yml +37 -9
- data/config/locales/ja-JP.yml +25 -16
- data/config/locales/ja.yml +1605 -0
- data/config/locales/ko-KR.yml +1 -0
- data/config/locales/ko.yml +1 -0
- data/config/locales/lt.yml +1 -0
- data/config/locales/{lv-LV.yml → lv.yml} +2 -5
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +34 -12
- data/config/locales/no.yml +150 -8
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +89 -72
- data/config/locales/pt-BR.yml +4 -5
- data/config/locales/pt.yml +10 -4
- data/config/locales/ro-RO.yml +10 -4
- data/config/locales/ru.yml +3 -10
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +3 -5
- data/config/locales/sl.yml +8 -7
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +0 -9
- data/config/locales/sv.yml +19 -8
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +588 -247
- data/config/locales/uk.yml +3 -11
- data/config/locales/vi-VN.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +1584 -0
- data/config/locales/zh-TW.yml +1 -0
- data/db/migrate/20200525184143_add_enable_machine_translation_to_decidim_organizations.rb +7 -0
- data/db/migrate/20200702073419_create_decidim_share_tokens.rb +16 -0
- data/db/migrate/20200707132401_add_comments_max_length_to_decidim_organization.rb +7 -0
- data/db/migrate/20200730142511_add_file_upload_settings_to_decidim_organizations.rb +36 -0
- data/db/migrate/20200806092109_add_machine_translation_display_priority_to_organizations.rb +17 -0
- data/db/migrate/20201004160335_remove_notifications_with_continuity_badge.rb +9 -0
- data/db/seeds.rb +12 -6
- data/lib/decidim/authorable.rb +22 -1
- data/lib/decidim/authorization_form_builder.rb +7 -0
- data/lib/decidim/coauthorable.rb +22 -0
- data/lib/decidim/component_manifest.rb +1 -1
- data/lib/decidim/content_processor.rb +52 -29
- data/lib/decidim/content_renderers/base_renderer.rb +1 -1
- data/lib/decidim/content_renderers/hashtag_renderer.rb +2 -0
- data/lib/decidim/content_renderers/link_renderer.rb +4 -1
- data/lib/decidim/content_renderers/user_group_renderer.rb +3 -1
- data/lib/decidim/content_renderers/user_renderer.rb +3 -1
- data/lib/decidim/core.rb +67 -12
- data/lib/decidim/core/engine.rb +65 -21
- data/lib/decidim/core/test.rb +8 -0
- data/lib/decidim/core/test/factories.rb +34 -8
- data/lib/decidim/core/test/shared_examples/admin_log_presenter_examples.rb +34 -0
- data/lib/decidim/core/test/shared_examples/amendable/accept_amendment_examples.rb +4 -4
- data/lib/decidim/core/test/shared_examples/amendable_proposals_interface_examples.rb +8 -8
- data/lib/decidim/core/test/shared_examples/comments_examples.rb +52 -1
- data/lib/decidim/core/test/shared_examples/counts_commentators_as_newsletter_participants.rb +31 -0
- data/lib/decidim/core/test/shared_examples/embed_resource_examples.rb +49 -0
- data/lib/decidim/core/test/shared_examples/follows_examples.rb +3 -3
- data/lib/decidim/core/test/shared_examples/manage_component_share_tokens.rb +83 -0
- data/lib/decidim/core/test/shared_examples/map_examples.rb +186 -0
- data/lib/decidim/core/test/shared_examples/preview_component_with_share_token_examples.rb +55 -0
- data/lib/decidim/core/test/shared_examples/resource_search_examples.rb +200 -0
- data/lib/decidim/core/test/shared_examples/scopable_resource_examples.rb +43 -0
- data/lib/decidim/core/test/shared_examples/scope_helper_examples.rb +12 -1
- data/lib/decidim/core/test/shared_examples/searchable_participatory_space_examples.rb +2 -2
- data/lib/decidim/core/test/shared_examples/searchable_results_examples.rb +15 -2
- data/lib/decidim/core/test/shared_examples/simple_event.rb +7 -0
- data/lib/decidim/core/test/shared_examples/system_endorse_resource_examples.rb +1 -0
- data/lib/decidim/core/test/shared_examples/traceable_interface_examples.rb +1 -1
- data/lib/decidim/core/test/shared_examples/uncommentable_component_examples.rb +1 -1
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/diffy_extension.rb +21 -0
- data/lib/decidim/events/base_event.rb +29 -11
- data/lib/decidim/exporters.rb +7 -0
- data/lib/decidim/exporters/csv.rb +15 -1
- data/lib/decidim/exporters/excel.rb +1 -1
- data/lib/decidim/exporters/export_manifest.rb +29 -0
- data/lib/decidim/exporters/pdf.rb +56 -0
- data/lib/decidim/file_validator_humanizer.rb +98 -0
- data/lib/decidim/form_builder.rb +68 -56
- data/lib/decidim/geocodable.rb +79 -0
- data/lib/decidim/has_attachments.rb +10 -0
- data/lib/decidim/has_private_users.rb +1 -1
- data/lib/decidim/has_upload_validations.rb +36 -0
- data/lib/decidim/map.rb +214 -0
- data/lib/decidim/map/autocomplete.rb +67 -0
- data/lib/decidim/map/dynamic_map.rb +89 -0
- data/lib/decidim/map/frontend.rb +97 -0
- data/lib/decidim/map/geocoding.rb +115 -0
- data/lib/decidim/map/provider.rb +12 -0
- data/lib/decidim/map/provider/autocomplete/here.rb +20 -0
- data/lib/decidim/map/provider/autocomplete/osm.rb +20 -0
- data/lib/decidim/map/provider/dynamic_map/here.rb +51 -0
- data/lib/decidim/map/provider/dynamic_map/osm.rb +13 -0
- data/lib/decidim/map/provider/geocoding/here.rb +58 -0
- data/lib/decidim/map/provider/geocoding/osm.rb +30 -0
- data/lib/decidim/map/provider/here.rb +21 -0
- data/lib/decidim/map/provider/osm.rb +22 -0
- data/lib/decidim/map/provider/static_map/here.rb +35 -0
- data/lib/decidim/map/provider/static_map/osm.rb +29 -0
- data/lib/decidim/map/static_map.rb +133 -0
- data/lib/decidim/map/utility.rb +38 -0
- data/lib/decidim/newsletter_participant.rb +2 -4
- data/lib/decidim/organization_settings.rb +267 -0
- data/lib/decidim/paddable.rb +11 -4
- data/lib/decidim/resource_manifest.rb +1 -1
- data/lib/decidim/scopable.rb +9 -6
- data/lib/decidim/scopable_component.rb +29 -1
- data/lib/decidim/scopable_participatory_space.rb +19 -0
- data/lib/decidim/scopable_resource.rb +21 -0
- data/lib/decidim/search_resource_fields_mapper.rb +17 -4
- data/lib/decidim/searchable.rb +6 -0
- data/lib/decidim/settings_manifest.rb +2 -1
- data/lib/decidim/shareable_with_token.rb +27 -0
- data/lib/decidim/snippets.rb +30 -0
- data/lib/decidim/translatable_attributes.rb +42 -4
- data/lib/decidim/translatable_resource.rb +78 -0
- data/lib/decidim/view_model.rb +1 -0
- data/lib/premailer/adapter/decidim.rb +33 -0
- data/lib/tasks/decidim_locales_tasks.rake +35 -0
- data/lib/tasks/decidim_tasks.rake +1 -0
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.bg.js +14 -0
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.da.js +14 -0
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.eo.js +17 -0
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.et.js +18 -0
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.fr-CA.js +16 -0
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.ga.js +15 -0
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.hr.js +13 -0
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.is.js +14 -0
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.ja.js +16 -0
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.lt.js +16 -0
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.lv.js +17 -0
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.mt.js +15 -0
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.sl.js +14 -0
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.sr.js +16 -0
- metadata +149 -30
- data/app/cells/decidim/tos_page/sticky_form.erb +0 -29
- data/app/helpers/decidim/multi_translation_helper.rb +0 -0
- data/lib/decidim/hashtaggable.rb +0 -24
data/config/locales/ca.yml
CHANGED
@@ -65,6 +65,7 @@ ca:
|
|
65
65
|
errors:
|
66
66
|
general: Error en processar la imatge
|
67
67
|
image_too_big: La imatge és massa gran
|
68
|
+
not_inside_organization: L'arxiu no està relacionat amb cap organització
|
68
69
|
date:
|
69
70
|
formats:
|
70
71
|
decidim_short: "%d/%m/%Y"
|
@@ -261,8 +262,11 @@ ca:
|
|
261
262
|
dummy_authorization_handler:
|
262
263
|
explanation: Verifica't introduint un número de document que finalitzi amb "X"
|
263
264
|
fields:
|
265
|
+
allowed_postal_codes: Codis postals permesos (separats per comes)
|
266
|
+
allowed_scope_id: Àmbit permès
|
264
267
|
document_number: Número de document
|
265
268
|
postal_code: Codi postal
|
269
|
+
scope_id: Àmbit
|
266
270
|
name: Autorització d'exemple
|
267
271
|
dummy_authorization_workflow:
|
268
272
|
name: Flux de treball d'autorització d'exemple
|
@@ -321,7 +325,7 @@ ca:
|
|
321
325
|
see_more: "(veure més)"
|
322
326
|
components:
|
323
327
|
component_order_selector:
|
324
|
-
no_content: No
|
328
|
+
no_content: No hem pogut trobar cap contingut amb aquest criteri
|
325
329
|
order:
|
326
330
|
all_types: Tots els tipus
|
327
331
|
collaborative_draft: Esborrany col·laboratiu
|
@@ -342,11 +346,14 @@ ca:
|
|
342
346
|
global:
|
343
347
|
amendments_enabled: Esmenes habilitades
|
344
348
|
comments_enabled: Comentaris habilitats
|
349
|
+
comments_max_length: Longitud màxima dels comentaris
|
345
350
|
dummy_global_attribute_1: Atribut de prova 1
|
346
351
|
dummy_global_attribute_2: Atribut de prova 2
|
347
352
|
dummy_global_translatable_text: Text traduïble de proves
|
348
353
|
enable_pads_creation: Habilitar la creació de pads
|
349
354
|
resources_permissions_enabled: Permisos de recursos habilitats
|
355
|
+
scope_id: Àmbit
|
356
|
+
scopes_enabled: Àmbits habilitats
|
350
357
|
step:
|
351
358
|
amendment_creation_enabled: Creació d'esmenes habilitada
|
352
359
|
amendment_promotion_enabled: Promoció d'esmenes habilitada
|
@@ -881,10 +888,15 @@ ca:
|
|
881
888
|
show: Mostrar la conversa amb %{sender}
|
882
889
|
create:
|
883
890
|
error: No s'ha iniciat la conversa. Torna-ho a provar més tard
|
891
|
+
error_modal:
|
892
|
+
close: Tanca la finestra
|
893
|
+
correct_errors: Si us plau, corregiu els errors i torneu-ho a intentar.
|
894
|
+
intro: 'Hi ha els següents errors al vostre missatge:'
|
895
|
+
ok: D'acord
|
884
896
|
index:
|
885
|
-
ago:
|
897
|
+
ago: fa
|
886
898
|
close: Tanca modal
|
887
|
-
from:
|
899
|
+
from: De
|
888
900
|
groups: Els meus grups
|
889
901
|
last_message: Darrer missatge
|
890
902
|
new_conversation: Nova conversa
|
@@ -904,7 +916,7 @@ ca:
|
|
904
916
|
send: Enviar
|
905
917
|
title: Comença una conversa
|
906
918
|
update:
|
907
|
-
error:
|
919
|
+
error: El missatge no ha estat enviat degut a un error
|
908
920
|
metrics:
|
909
921
|
download:
|
910
922
|
csv: Descarrega les dades (csv)
|
@@ -1049,7 +1061,7 @@ ca:
|
|
1049
1061
|
error: S'ha produït un error en acceptar els Termes i Condicions.
|
1050
1062
|
success: Genial! Has acceptat els Termes i Condicions.
|
1051
1063
|
form:
|
1052
|
-
agreement: Estic d'acord amb aquests
|
1064
|
+
agreement: Estic d'acord amb aquests termes
|
1053
1065
|
legend: Accepto els termes i condicions
|
1054
1066
|
refuse:
|
1055
1067
|
modal_body: Si no acceptes, no podràs utilitzar la plataforma, pots <a href="%{data_portability_path}">descarregar les teves dades</a> i / o <a href="%{delete_path}">esborrar el teu compte de</a>.
|
@@ -1104,8 +1116,14 @@ ca:
|
|
1104
1116
|
report_html: <p>El següent <a href="%{url}">contingut</a> s'ha ocultat automàticament.</p>
|
1105
1117
|
subject: Un contingut s'ha ocultat automàticament
|
1106
1118
|
report:
|
1119
|
+
authors: Autores
|
1120
|
+
content: Contingut reportat
|
1121
|
+
date: Reportat el
|
1122
|
+
details: Detalls
|
1107
1123
|
hello: Hola %{name},
|
1108
1124
|
manage_moderations: Gestiona moderacions
|
1125
|
+
participatory_space: Espai de participació
|
1126
|
+
reason: Motiu
|
1109
1127
|
report_html: <p>El següent <a href="%{url}">contingut</a> ha estat reportat.</p>
|
1110
1128
|
subject: Un contingut ha estat denunciat
|
1111
1129
|
reports:
|
@@ -1150,6 +1168,10 @@ ca:
|
|
1150
1168
|
one: "%{count} resultat"
|
1151
1169
|
other: "%{count} resultats"
|
1152
1170
|
view_all: Mostra-ho tot (%{count})
|
1171
|
+
security:
|
1172
|
+
selfxss_warning:
|
1173
|
+
description: Aquesta funció de navegador està pensada per a desenvolupadors i no hauries d'enganxar res aquí si se t'ha demanat que ho facis. Enganxar contingut en aquesta finestra pot comprometre la teva privacitat i donar accés a hackers al teu compte.
|
1174
|
+
title: Aturar!
|
1153
1175
|
shared:
|
1154
1176
|
confirm_modal:
|
1155
1177
|
cancel: Cancel·lar
|
@@ -1174,7 +1196,7 @@ ca:
|
|
1174
1196
|
offensive: Conté racisme, sexisme, insults, atacs personals, amenaces de mort o de suïcidi o qualsevol forma de discurs d'odi.
|
1175
1197
|
report: Denunciar
|
1176
1198
|
spam: Conté "clickbait", publicitat o estafes.
|
1177
|
-
title:
|
1199
|
+
title: Reportar contingut inapropiat
|
1178
1200
|
floating_help:
|
1179
1201
|
close: Tanca l'ajuda
|
1180
1202
|
help: Ajuda
|
@@ -1201,8 +1223,12 @@ ca:
|
|
1201
1223
|
share: Compartir
|
1202
1224
|
share_link: Compartir l'enllaç
|
1203
1225
|
tags:
|
1204
|
-
filter_results_for_category: 'Resultats al filtrar per
|
1226
|
+
filter_results_for_category: 'Resultats al filtrar per la categoria: %{resource}'
|
1205
1227
|
filter_results_for_scope: 'Resultats al filtrar per l''àmbit: %{resource}'
|
1228
|
+
translation_bar:
|
1229
|
+
help_text: "<strong>Advertència:</strong> Pot ser que el contingut sigui traduït automàticament i no sigui 100% acurat."
|
1230
|
+
show_original: Mostra el text original
|
1231
|
+
show_translated: Mostra el text de la traducció automàtica
|
1206
1232
|
user_activity:
|
1207
1233
|
index:
|
1208
1234
|
no_activities_warning: Aquesta participant encara no ha tingut cap activitat.
|
@@ -1216,8 +1242,8 @@ ca:
|
|
1216
1242
|
add_max_users: 'Afegir usuàries a la conversa: màxim 9 usuàries'
|
1217
1243
|
add_users_placeholder: Cercar...
|
1218
1244
|
close: Tancar
|
1219
|
-
conversations_info: Les converses son privades. Ningú més les pot veure.
|
1220
|
-
from:
|
1245
|
+
conversations_info: Les converses son privades. Ningú més les pot veure. Es pot iniciar una conversa amb qualsevol participant o grup registrat a la plataforma.
|
1246
|
+
from: De
|
1221
1247
|
last_message: Darrer missatge
|
1222
1248
|
modal_title: Nova conversa
|
1223
1249
|
new_conversation: Nova conversa
|
@@ -1511,6 +1537,7 @@ ca:
|
|
1511
1537
|
see_more: Veure més
|
1512
1538
|
locale:
|
1513
1539
|
name: Català
|
1540
|
+
name_with_error: Anglès (error!)
|
1514
1541
|
password_validator:
|
1515
1542
|
domain_included_in_password: és massa semblant a aquest nom de domini
|
1516
1543
|
email_included_in_password: és massa similar al teu correu electrònic
|
data/config/locales/cs.yml
CHANGED
@@ -32,7 +32,7 @@ cs:
|
|
32
32
|
decidim/gamification/level_up_event: Vy jste vyrovnali
|
33
33
|
decidim/join_request_accepted_event: Připojit žádost přijatou
|
34
34
|
decidim/join_request_rejected_event: Připojit žádost zamítnuta
|
35
|
-
decidim/profile_updated_event:
|
35
|
+
decidim/profile_updated_event: Profil aktualizován
|
36
36
|
decidim/promote_to_admin: Propagováno na správu skupiny
|
37
37
|
decidim/removed_from_group: Odstraněna ze skupiny
|
38
38
|
decidim/resource_endorsed_event: Prostředky scháleny
|
@@ -73,6 +73,7 @@ cs:
|
|
73
73
|
errors:
|
74
74
|
general: Chyba při zpracování obrázku
|
75
75
|
image_too_big: Obraz je příliš velký
|
76
|
+
not_inside_organization: Soubor není připojen k žádné organizaci
|
76
77
|
date:
|
77
78
|
formats:
|
78
79
|
decidim_short: "%d/%m/%Y"
|
@@ -139,12 +140,12 @@ cs:
|
|
139
140
|
create_via_csv: "%{user_name} pozval %{resource_name} aby se stal soukromým účastníkem"
|
140
141
|
delete: "%{user_name} uživatele %{resource_name} odstranil jako soukromého uživatele"
|
141
142
|
scope:
|
142
|
-
create: "%{user_name}
|
143
|
-
create_with_parent: "%{user_name} vytvořil %{resource_name}
|
143
|
+
create: "%{user_name} vytvořil oblast působnosti %{resource_name}"
|
144
|
+
create_with_parent: "%{user_name} vytvořil oblast působnosti %{resource_name} uvnitř oblasti působnosti %{parent_scope}"
|
144
145
|
delete: "%{user_name} odstranil %{resource_name} rozsah"
|
145
146
|
delete_with_parent: "%{user_name} odstranilo %{resource_name} rozsah uvnitř rozsahu %{parent_scope}"
|
146
|
-
update: "%{user_name} aktualizoval
|
147
|
-
update_with_parent: "%{user_name} aktualizoval %{resource_name}
|
147
|
+
update: "%{user_name} aktualizoval oblast působnosti %{resource_name}"
|
148
|
+
update_with_parent: "%{user_name} aktualizoval oblast působnosti %{resource_name} uvnitř oblasti působnosti %{parent_scope}"
|
148
149
|
static_page:
|
149
150
|
create: "%{user_name} vytvořila %{resource_name} statickou stránku"
|
150
151
|
delete: "%{user_name} odstranila %{resource_name} statickou stránku"
|
@@ -160,7 +161,7 @@ cs:
|
|
160
161
|
verify: "%{user_name} ověřilo %{resource_name} uživatelskou skupinu"
|
161
162
|
verify_via_csv: "%{user_name} ověřilo %{resource_name} skupinu uživatelů prostřednictvím souboru CSV"
|
162
163
|
admin_terms_of_use:
|
163
|
-
default_body: "<h2>
|
164
|
+
default_body: "<h2>ADMINISTRÁTORSKÉ ZÁSADY POUŽITÍ</h2><p>Věříme, že jste obdrželi obvyklou lekci od místního správce systému. Obvykle se zredukuje na tyto tři věci:</p><ol><li>Respektujte soukromí ostatních.</li><li>Zamysleme se před kliknutím.</li><li>S velkou mocí přichází velká odpovědnost.</li></ol>"
|
164
165
|
alert:
|
165
166
|
dismiss: Odmítnout oznámení
|
166
167
|
amendments:
|
@@ -239,9 +240,9 @@ cs:
|
|
239
240
|
wizard_step_form:
|
240
241
|
steps:
|
241
242
|
'1': Vytvořte svůj pozměňovací návrh
|
242
|
-
'2':
|
243
|
+
'2': Porovnejte váš pozměňovací návrh
|
243
244
|
'3': Dokončete váš pozměňovací návrh
|
244
|
-
'4':
|
245
|
+
'4': Zveřejněte svůj pozměňovací návrh
|
245
246
|
anonymous_user: Anonymní
|
246
247
|
application:
|
247
248
|
collection:
|
@@ -278,8 +279,11 @@ cs:
|
|
278
279
|
dummy_authorization_handler:
|
279
280
|
explanation: Ověřte se zavedením čísla dokumentu končícího "X"
|
280
281
|
fields:
|
282
|
+
allowed_postal_codes: Povolené poštovní směrovací kódy (oddělené čárkami)
|
283
|
+
allowed_scope_id: Povolená oblast působnosti
|
281
284
|
document_number: Číslo dokumentu
|
282
285
|
postal_code: Poštovní směrovací číslo
|
286
|
+
scope_id: Oblast působnosti
|
283
287
|
name: Příklad autorizace
|
284
288
|
dummy_authorization_workflow:
|
285
289
|
name: Pracovní postup autorizace
|
@@ -361,11 +365,14 @@ cs:
|
|
361
365
|
global:
|
362
366
|
amendments_enabled: Změny povoleny
|
363
367
|
comments_enabled: Komentáře povoleny
|
368
|
+
comments_max_length: Maximální délka komentářů
|
364
369
|
dummy_global_attribute_1: Zástupný atribut 1
|
365
370
|
dummy_global_attribute_2: Zástupný atribut 2
|
366
371
|
dummy_global_translatable_text: Zástupný text k přeložení
|
367
372
|
enable_pads_creation: Povolit vytvoření sdíleného textu
|
368
373
|
resources_permissions_enabled: Oprávnění zdrojů povoleno
|
374
|
+
scope_id: Oblast působnosti
|
375
|
+
scopes_enabled: Oblasti působnosti povoleny
|
369
376
|
step:
|
370
377
|
amendment_creation_enabled: Umožnit změnu a doplnění
|
371
378
|
amendment_promotion_enabled: Propagace změn byla povolena
|
@@ -419,7 +426,7 @@ cs:
|
|
419
426
|
create:
|
420
427
|
email_already_exists: Jiný účet používá stejnou e-mailovou adresu
|
421
428
|
new:
|
422
|
-
complete_profile:
|
429
|
+
complete_profile: Dokončit profil
|
423
430
|
nickname_help: Vaše přezdívka v %{organization}
|
424
431
|
sign_up: Prosím, vyplňte svůj profil
|
425
432
|
subtitle: Pro dokončení registrace vyplňte prosím následující formulář
|
@@ -451,7 +458,7 @@ cs:
|
|
451
458
|
buttons:
|
452
459
|
check: Zkontrolujte a pokračujte
|
453
460
|
close_modal: Zavřít okno
|
454
|
-
uncheck:
|
461
|
+
uncheck: Ponechat nezaškrtnuté
|
455
462
|
notice: |-
|
456
463
|
<p>Hej, jste si jisti, že nechcete dostávat zpravodaj?<br>
|
457
464
|
Zaškrtněte prosím zaškrtávací políčko níže.<br>
|
@@ -514,7 +521,7 @@ cs:
|
|
514
521
|
notification_title: <a href="%{emendation_path}">změna</a> vytvořeny <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> byl přijat <a href="%{amendable_path}">%{amendable_title}</a>.
|
515
522
|
amendment_created:
|
516
523
|
affected_user:
|
517
|
-
email_intro: 'Nová změna byla vytvořena pro
|
524
|
+
email_intro: 'Nová změna byla vytvořena pro %{amendable_title}. Můžete ji vidět z této stránky:'
|
518
525
|
email_outro: Toto oznámení jste obdrželi, protože jste autorem %{amendable_title}.
|
519
526
|
email_subject: Nový pozměňovací návrh pro. \ %{amendable_title}
|
520
527
|
notification_title: Byl vytvořen nový pozměňovací návrh pro <a href="%{amendable_path}">%{amendable_title}</a>.
|
@@ -828,8 +835,8 @@ cs:
|
|
828
835
|
resource_type: Typ
|
829
836
|
log:
|
830
837
|
base_presenter:
|
831
|
-
create: "%{user_name} vytvořil
|
832
|
-
create_with_space: "%{user_name} vytvořil
|
838
|
+
create: "%{user_name} vytvořil %{resource_name}"
|
839
|
+
create_with_space: "%{user_name} vytvořil %{resource_name} v %{space_name}"
|
833
840
|
delete: "%{user_name} odstraněno %{resource_name}"
|
834
841
|
delete_with_space: "%{user_name} smazán %{resource_name} v %{space_name}"
|
835
842
|
unknown_action: "%{user_name} provedla nějakou akci na %{resource_name}"
|
@@ -842,7 +849,7 @@ cs:
|
|
842
849
|
area_type_presenter:
|
843
850
|
not_found: 'Typ oblasti nebyl nalezen v databázi (ID: %{id})'
|
844
851
|
scope_presenter:
|
845
|
-
not_found: '
|
852
|
+
not_found: 'Oblast působnosti nebyla nalezena v databázi (ID: %{id})'
|
846
853
|
scope_type_presenter:
|
847
854
|
not_found: 'Typ oboru nebyl nalezen v databázi (ID: %{id})'
|
848
855
|
managed_users:
|
@@ -858,7 +865,7 @@ cs:
|
|
858
865
|
no_members: Tato skupina uživatelů zatím nemá žádného člena.
|
859
866
|
menu:
|
860
867
|
help: Pomoc
|
861
|
-
home:
|
868
|
+
home: Úvod
|
862
869
|
messaging:
|
863
870
|
conversation_mailer:
|
864
871
|
comanagers_new_conversation:
|
@@ -906,6 +913,11 @@ cs:
|
|
906
913
|
show: Zobrazit konverzaci s %{sender}
|
907
914
|
create:
|
908
915
|
error: Konverzace se nespustí. Zkuste to později znovu
|
916
|
+
error_modal:
|
917
|
+
close: Zavřít okno
|
918
|
+
correct_errors: Opravte chyby a zkuste to znovu.
|
919
|
+
intro: 'Došlo k následujícím chybám ve vaší zprávě:'
|
920
|
+
ok: OK
|
909
921
|
index:
|
910
922
|
ago: před
|
911
923
|
close: Zavřít okno
|
@@ -929,7 +941,7 @@ cs:
|
|
929
941
|
send: Poslat
|
930
942
|
title: Spusťte konverzaci
|
931
943
|
update:
|
932
|
-
error: Zpráva nebyla odeslána
|
944
|
+
error: Zpráva nebyla odeslána z důvodu chyby
|
933
945
|
metrics:
|
934
946
|
download:
|
935
947
|
csv: Stáhnout data (csv)
|
@@ -1011,7 +1023,7 @@ cs:
|
|
1011
1023
|
not_available_yet: Soubory Open Data nejsou dosud k dispozici. Zkuste to prosím znovu za pár minut.
|
1012
1024
|
own_user_groups:
|
1013
1025
|
index:
|
1014
|
-
pending:
|
1026
|
+
pending: Čekající
|
1015
1027
|
rejected: Odmítnuto
|
1016
1028
|
verified: Ověřeno
|
1017
1029
|
pad_iframe:
|
@@ -1028,7 +1040,7 @@ cs:
|
|
1028
1040
|
meetings_explanation: Zjistěte, kde a kdy se můžete účastnit veřejných setkání.
|
1029
1041
|
more_info: Více informací
|
1030
1042
|
proposals: Návrhy
|
1031
|
-
proposals_explanation:
|
1043
|
+
proposals_explanation: Vytvářejte návrhy, podporujte stávající a prosazujte změny, které chcete vidět.
|
1032
1044
|
footer_sub_hero:
|
1033
1045
|
footer_sub_hero_body: Vybudujme otevřenější, transparentnější a spolupracující společnost.<br /> Přihlaste se, zúčastněte se a rozhodněte se.
|
1034
1046
|
footer_sub_hero_headline: Vítejte na %{organization} participační platformě.
|
@@ -1040,7 +1052,7 @@ cs:
|
|
1040
1052
|
headline: Metriky
|
1041
1053
|
statistics:
|
1042
1054
|
answers_count: Dokončené průzkumy
|
1043
|
-
assemblies_count:
|
1055
|
+
assemblies_count: Shromáždění
|
1044
1056
|
comments_count: Komentáře
|
1045
1057
|
conferences_count: Konference
|
1046
1058
|
debates_count: Debaty
|
@@ -1129,13 +1141,19 @@ cs:
|
|
1129
1141
|
report_html: <p>Následující <a href="%{url}">obsah</a> byl automaticky skryt.</p>
|
1130
1142
|
subject: Zdroj byl automaticky skryt
|
1131
1143
|
report:
|
1144
|
+
authors: Autoři
|
1145
|
+
content: Nahlášený obsah
|
1146
|
+
date: Nahlášeno dne
|
1147
|
+
details: Detaily
|
1132
1148
|
hello: Zdravím %{name},
|
1133
1149
|
manage_moderations: Správa moderování
|
1150
|
+
participatory_space: Účastnický prostor
|
1151
|
+
reason: Důvod
|
1134
1152
|
report_html: <p>Byl nahlášen následující <a href="%{url}">obsah</a>.</p>
|
1135
1153
|
subject: Byl ohlášen zdroj
|
1136
1154
|
reports:
|
1137
1155
|
create:
|
1138
|
-
error: Při vytváření
|
1156
|
+
error: Při vytváření shromáždění došlo k chybě. Zkuste to znovu.
|
1139
1157
|
success: Zpráva byla úspěšně vytvořena a bude kontrolována administrátorem.
|
1140
1158
|
resource_endorsements:
|
1141
1159
|
create:
|
@@ -1177,6 +1195,10 @@ cs:
|
|
1177
1195
|
many: "%{count} výsledků"
|
1178
1196
|
other: "%{count} výsledků"
|
1179
1197
|
view_all: Zobrazit všechny (%{count})
|
1198
|
+
security:
|
1199
|
+
selfxss_warning:
|
1200
|
+
description: Tato funkce prohlížeče je určena pro vývojáře a pokud jste o to byli požádáni, neměli byste sem nic vkládat. Vkládání obsahu do tohoto okna může ohrozit vaše soukromí a umožnit hackerům přístup k vašemu účtu.
|
1201
|
+
title: Zastavit!
|
1180
1202
|
shared:
|
1181
1203
|
confirm_modal:
|
1182
1204
|
cancel: Zrušit
|
@@ -1209,7 +1231,7 @@ cs:
|
|
1209
1231
|
sign_in_before_follow: Před provedením této akce se prosím přihlaste
|
1210
1232
|
login_modal:
|
1211
1233
|
close_modal: Zavřít okno
|
1212
|
-
please_sign_in:
|
1234
|
+
please_sign_in: Přihlaste se, prosím
|
1213
1235
|
sign_up: Přihlásit se
|
1214
1236
|
participatory_space_filters:
|
1215
1237
|
filters:
|
@@ -1230,6 +1252,10 @@ cs:
|
|
1230
1252
|
tags:
|
1231
1253
|
filter_results_for_category: 'Filtrovat výsledky pro kategorii: %{resource}'
|
1232
1254
|
filter_results_for_scope: 'Výsledky filtru pro rozsah: %{resource}'
|
1255
|
+
translation_bar:
|
1256
|
+
help_text: "<strong>Upozornění:</strong> Obsah může být automaticky přeložen a nemusí být 100% přesný."
|
1257
|
+
show_original: Zobrazit původní text
|
1258
|
+
show_translated: Zobrazit automaticky přeložený text
|
1233
1259
|
user_activity:
|
1234
1260
|
index:
|
1235
1261
|
no_activities_warning: Tento účastník zatím nemá žádnou aktivitu.
|
@@ -1376,7 +1402,7 @@ cs:
|
|
1376
1402
|
password_change:
|
1377
1403
|
greeting: Dobrý den %{recipient}!
|
1378
1404
|
message: Kontaktujeme vás, abyste vás upozornili, že vaše heslo bylo změněno.
|
1379
|
-
subject:
|
1405
|
+
subject: Heslo změněno
|
1380
1406
|
reset_password_instructions:
|
1381
1407
|
action: Změňte heslo
|
1382
1408
|
greeting: Dobrý den %{recipient}!
|
@@ -1469,7 +1495,7 @@ cs:
|
|
1469
1495
|
must_start_with_caps: musí začínat velkým písmenem
|
1470
1496
|
nesting_too_deep: nemůže být uvnitř podkategorie
|
1471
1497
|
not_found: nemůže být nalezeno. Zaregistrovali jste se dříve?
|
1472
|
-
not_locked:
|
1498
|
+
not_locked: nebyl uzamčen
|
1473
1499
|
not_saved:
|
1474
1500
|
one: 'Při zpracování vašeho požadavku došlo k chybě:'
|
1475
1501
|
few: 'Při zpracování vašeho požadavku došlo k několika chybám:'
|
@@ -1495,8 +1521,8 @@ cs:
|
|
1495
1521
|
decidim:
|
1496
1522
|
cookie_warning:
|
1497
1523
|
description_html: Tento web používá cookies. Pokračováním v procházení webu souhlasíte s používáním souborů cookie. Zjistěte více o tom %{link}.
|
1498
|
-
link_label:
|
1499
|
-
ok:
|
1524
|
+
link_label: Zjistěte více o cookies
|
1525
|
+
ok: Souhlasím
|
1500
1526
|
edit_link:
|
1501
1527
|
edit: Upravit
|
1502
1528
|
footer:
|
@@ -1526,7 +1552,7 @@ cs:
|
|
1526
1552
|
youtube: "%{organization} na YouTube"
|
1527
1553
|
user_menu:
|
1528
1554
|
account: 'Uživatelský účet: %{name}'
|
1529
|
-
admin_dashboard:
|
1555
|
+
admin_dashboard: Ovládací panel
|
1530
1556
|
conversations: Konverzace
|
1531
1557
|
notifications: Oznámení
|
1532
1558
|
profile: Můj účet
|
@@ -1545,6 +1571,7 @@ cs:
|
|
1545
1571
|
see_more: Vidět víc
|
1546
1572
|
locale:
|
1547
1573
|
name: Čeština
|
1574
|
+
name_with_error: Čeština
|
1548
1575
|
password_validator:
|
1549
1576
|
domain_included_in_password: je příliš podobné tomuto názvu domény
|
1550
1577
|
email_included_in_password: je příliš podobný e-mailu
|
@@ -1603,7 +1630,7 @@ cs:
|
|
1603
1630
|
choose_diff_view_html: 'Režim HTML zobrazení:'
|
1604
1631
|
choose_diff_view_mode: 'Mód srovnávacího zobrazení:'
|
1605
1632
|
option_escaped: Escapované
|
1606
|
-
option_split: Vedle sebe
|
1633
|
+
option_split: Vedle sebe
|
1607
1634
|
option_unescaped: Neošetřené Esc
|
1608
1635
|
option_unified: Sjednocené
|
1609
1636
|
views:
|
@@ -0,0 +1 @@
|
|
1
|
+
da:
|
data/config/locales/de.yml
CHANGED
@@ -65,6 +65,7 @@ de:
|
|
65
65
|
errors:
|
66
66
|
general: Fehler bei der Bildverarbeitung
|
67
67
|
image_too_big: Das Bild ist zu groß
|
68
|
+
not_inside_organization: Die Datei ist keiner Organisation hinzugefügt
|
68
69
|
date:
|
69
70
|
formats:
|
70
71
|
decidim_short: "%d/%m/%Y"
|
@@ -104,55 +105,55 @@ de:
|
|
104
105
|
cancel: Stornieren
|
105
106
|
admin_log:
|
106
107
|
area:
|
107
|
-
create: "%{user_name} hat den %{resource_name}
|
108
|
-
delete: "%{user_name} hat den %{resource_name}
|
109
|
-
update: "%{user_name} hat den %{resource_name}
|
108
|
+
create: "%{user_name} hat den Bereich %{resource_name} erstellt"
|
109
|
+
delete: "%{user_name} hat den Bereich %{resource_name} gelöscht"
|
110
|
+
update: "%{user_name} hat den Bereich %{resource_name} aktualisiert"
|
110
111
|
component:
|
111
|
-
create: "%{user_name} hat die %{resource_name}
|
112
|
-
delete: "%{user_name} hat die %{resource_name}
|
113
|
-
publish: "%{user_name}
|
114
|
-
unpublish: "%{user_name}
|
112
|
+
create: "%{user_name} hat die Komponente %{resource_name} zu %{space_name} hinzugefügt"
|
113
|
+
delete: "%{user_name} hat die Komponente %{resource_name} aus %{space_name} entfernt"
|
114
|
+
publish: "%{user_name} hat die Komponente %{resource_name} in %{space_name} veröffentlicht"
|
115
|
+
unpublish: "%{user_name} hat die Komponente %{resource_name} in %{space_name} auf \"unveröffentlicht\" gesetzt"
|
115
116
|
moderation:
|
116
|
-
hide: "%{user_name}
|
117
|
-
unreport: "%{user_name}
|
117
|
+
hide: "%{user_name} hat eine Ressource vom Typ %{resource_type} in %{space_name} versteckt"
|
118
|
+
unreport: "%{user_name} hat die Meldung einer Ressource vom Typ %{resource_type} in %{space_name} aufgehoben"
|
118
119
|
newsletter:
|
119
|
-
create: "%{user_name} hat den %{resource_name}
|
120
|
-
delete: "%{user_name}
|
121
|
-
deliver: "%{user_name}
|
122
|
-
update: "%{user_name}
|
120
|
+
create: "%{user_name} hat den Newsletter %{resource_name} erstellt"
|
121
|
+
delete: "%{user_name} hat den Newsletter %{resource_name} gelöscht"
|
122
|
+
deliver: "%{user_name} hat den Newsletter %{resource_name} abgesendet"
|
123
|
+
update: "%{user_name} hat den Newsletter %{resource_name} aktualisiert"
|
123
124
|
oauth_application:
|
124
|
-
create: "%{user_name} hat die %{resource_name}
|
125
|
-
delete: "%{user_name}
|
126
|
-
update: "%{user_name} hat die %{resource_name}
|
125
|
+
create: "%{user_name} hat die OAuth-Applikation %{resource_name} erstellt"
|
126
|
+
delete: "%{user_name} hat die OAuth-Applikation %{resource_name} gelöscht"
|
127
|
+
update: "%{user_name} hat die OAuth-Applikation %{resource_name} aktualisiert"
|
127
128
|
organization:
|
128
|
-
update: "%{user_name}
|
129
|
+
update: "%{user_name} hat die Organisationseinstellungen aktualisiert"
|
129
130
|
participatory_space_private_user:
|
130
|
-
create: "%{user_name}
|
131
|
+
create: "%{user_name} hat %{resource_name} als privaten Benutzer eingeladen"
|
131
132
|
create_via_csv: "%{user_name} hat %{resource_name} per CSV als privaten Benutzer eingeladen"
|
132
|
-
delete: "%{user_name} den Benutzer %{resource_name} als privaten Benutzer entfernt"
|
133
|
+
delete: "%{user_name} hat den Benutzer %{resource_name} als privaten Benutzer entfernt"
|
133
134
|
scope:
|
134
|
-
create: "%{user_name} hat den %{resource_name}
|
135
|
-
create_with_parent: "%{user_name}
|
136
|
-
delete: "%{user_name}
|
137
|
-
delete_with_parent: "%{user_name}
|
138
|
-
update: "%{user_name} hat den %{resource_name}
|
139
|
-
update_with_parent: "%{user_name} hat den %{resource_name}
|
135
|
+
create: "%{user_name} hat den Bereich %{resource_name} erstellt"
|
136
|
+
create_with_parent: "%{user_name} hat den Bereich %{resource_name} im übergeordneten Bereich %{parent_scope} erstellt"
|
137
|
+
delete: "%{user_name} hat den Bereich %{resource_name} gelöscht"
|
138
|
+
delete_with_parent: "%{user_name} hat den Bereich %{resource_name} aus dem übergeordneten Bereich %{parent_scope} gelöscht"
|
139
|
+
update: "%{user_name} hat den Bereich %{resource_name} aktualisiert"
|
140
|
+
update_with_parent: "%{user_name} hat den Bereich %{resource_name} im übergeordneten Bereich %{parent_scope} aktualisiert"
|
140
141
|
static_page:
|
141
|
-
create: "%{user_name} hat die %{resource_name}
|
142
|
-
delete: "%{user_name}
|
143
|
-
update: "%{user_name} hat die %{resource_name}
|
142
|
+
create: "%{user_name} hat die statische Seite %{resource_name} erstellt"
|
143
|
+
delete: "%{user_name} hat die statische Seite %{resource_name} gelöscht"
|
144
|
+
update: "%{user_name} hat die statische Seite %{resource_name} aktualisiert"
|
144
145
|
user:
|
145
|
-
invite: "%{user_name} den Benutzer %{resource_name} mit der Rolle %{role}eingeladen"
|
146
|
-
officialize: "%{user_name} den Benutzer %{resource_name}offiziell anerkannt"
|
147
|
-
remove_from_admin: "%{user_name}
|
146
|
+
invite: "%{user_name} hat den Benutzer %{resource_name} mit der Rolle %{role} eingeladen"
|
147
|
+
officialize: "%{user_name} den Benutzer %{resource_name} offiziell anerkannt"
|
148
|
+
remove_from_admin: "%{user_name} hat den Benutzer %{resource_name} mit der Rolle %{role} entfernt"
|
148
149
|
show_email: "%{user_name} hat die E-Mail des Teilnehmers %{resource_name} abgerufen"
|
149
|
-
unofficialize: "%{user_name}
|
150
|
+
unofficialize: "%{user_name} hat die offizielle Anerkennung des Benutzers %{resource_name} widerrufen"
|
150
151
|
user_group:
|
151
|
-
reject: "%{user_name}
|
152
|
-
verify: "%{user_name} die %{resource_name}
|
153
|
-
verify_via_csv: "%{user_name} die %{resource_name}
|
152
|
+
reject: "%{user_name} hat die Gruppen-Verifikation %{resource_name} abgelehnt"
|
153
|
+
verify: "%{user_name} hat die Gruppe %{resource_name} verifiziert"
|
154
|
+
verify_via_csv: "%{user_name} hat die Gruppe %{resource_name} über eine CSV-Datei verifiziert"
|
154
155
|
admin_terms_of_use:
|
155
|
-
default_body: "<h2>NUTZUNGSBEDINGUNGEN</h2><p>Wahrscheinlich haben Sie bereits vom lokalen Systemadministrator gehört. Meist lässt das sich auf die folgenden drei Punkte konzentrieren:</p><ol><li>Respektieren Sie die Privatsphäre anderer.</li><li>Denken Sie nach, bevor Sie klicken.</li><li>Große Macht erfordert große Verantwortung.</li></ol>"
|
156
|
+
default_body: "<h2>ADMIN-NUTZUNGSBEDINGUNGEN</h2><p>Wahrscheinlich haben Sie bereits vom lokalen Systemadministrator gehört. Meist lässt das sich auf die folgenden drei Punkte konzentrieren:</p><ol><li>Respektieren Sie die Privatsphäre anderer.</li><li>Denken Sie nach, bevor Sie klicken.</li><li>Große Macht erfordert große Verantwortung.</li></ol>"
|
156
157
|
alert:
|
157
158
|
dismiss: Benachrichtigung schließen
|
158
159
|
amendments:
|
@@ -161,10 +162,10 @@ de:
|
|
161
162
|
success: Die Änderung wurde erfolgreich angenommen.
|
162
163
|
amendable:
|
163
164
|
amended_by: Geändert durch
|
164
|
-
button: '%{model_name}ändern'
|
165
|
+
button: '%{model_name} ändern'
|
165
166
|
error: Bei der Änderung dieser Ressource ist ein Fehler aufgetreten.
|
166
167
|
help_text: Verbessern Sie diese %{model_name} indem Sie ihre %{amendable_fields}ändern
|
167
|
-
promote_button:
|
168
|
+
promote_button: Zu %{model_name} befördern
|
168
169
|
promote_confirm_text: Möchten Sie diese Erweiterung wirklich fördern?
|
169
170
|
promote_help_text: Sie können diese Erweiterung fördern und als unabhängige %{model_name}
|
170
171
|
section_heading: Änderungen (%{count})
|
@@ -190,15 +191,15 @@ de:
|
|
190
191
|
help_text: Überprüfen Sie die Änderungen und akzeptieren Sie diese Änderung oder lehnen Sie diese ab. Eine Benachrichtigung wird an den / die Verfasser gesendet.
|
191
192
|
announcement:
|
192
193
|
accepted: |-
|
193
|
-
|
194
|
-
|
194
|
+
Diese Änderung für %{amendable_type} %{proposal_link}
|
195
|
+
wurde am <strong>%{date}</strong> akzeptiert.
|
195
196
|
evaluating: |-
|
196
|
-
Diese Änderung für
|
197
|
-
wird bewertet.
|
198
|
-
promoted:
|
199
|
-
rejected:
|
197
|
+
Diese Änderung für %{amendable_type} %{proposal_link}
|
198
|
+
wird derzeit bewertet.
|
199
|
+
promoted: Befördert zu %{amendable_type}.
|
200
|
+
rejected: Diese Änderung für %{amendable_type} %{proposal_link} wurde am <strong>%{date}</strong> abgelehnt.
|
200
201
|
withdrawn: |-
|
201
|
-
Diese Änderung für
|
202
|
+
Diese Änderung für %{amendable_type} %{proposal_link}
|
202
203
|
wurde vom Autor zurückgezogen.
|
203
204
|
new:
|
204
205
|
amendment_author: Änderungsautor
|
@@ -245,7 +246,7 @@ de:
|
|
245
246
|
documents:
|
246
247
|
related_documents: Zugehörige Dokumente
|
247
248
|
photos:
|
248
|
-
related_photos:
|
249
|
+
related_photos: Zugehörige Bilder
|
249
250
|
author:
|
250
251
|
avatar: Profilbild
|
251
252
|
comments:
|
@@ -264,8 +265,11 @@ de:
|
|
264
265
|
dummy_authorization_handler:
|
265
266
|
explanation: Lassen Sie sich verifizieren, indem Sie eine Dokumentennummer eingeben, die mit "X" endet
|
266
267
|
fields:
|
268
|
+
allowed_postal_codes: Erlaubte Postleitzahlen (durch Komma getrennt)
|
269
|
+
allowed_scope_id: Erlaubter Umfang
|
267
270
|
document_number: Dokumentnummer
|
268
271
|
postal_code: Postleitzahl
|
272
|
+
scope_id: Umfang
|
269
273
|
name: Beispiel Berechtigung
|
270
274
|
dummy_authorization_workflow:
|
271
275
|
name: Arbeitsablauf Dummy Berechtigung
|
@@ -345,11 +349,14 @@ de:
|
|
345
349
|
global:
|
346
350
|
amendments_enabled: Änderungen aktiviert
|
347
351
|
comments_enabled: Kommentare aktiviert
|
352
|
+
comments_max_length: Maximallänge der Kommentare
|
348
353
|
dummy_global_attribute_1: Dummy-Attribut 1
|
349
354
|
dummy_global_attribute_2: Dummy-Attribut 2
|
350
355
|
dummy_global_translatable_text: Übersetzbarer Blindtext
|
351
356
|
enable_pads_creation: Aktivieren Sie die Pads-Erstellung
|
352
357
|
resources_permissions_enabled: Ressourcenberechtigungen aktiviert
|
358
|
+
scope_id: Bereich
|
359
|
+
scopes_enabled: Bereiche aktiviert
|
353
360
|
step:
|
354
361
|
amendment_creation_enabled: Änderungserstellung aktiviert
|
355
362
|
amendment_promotion_enabled: Hervorheben von Änderungen aktiviert
|
@@ -411,10 +418,10 @@ de:
|
|
411
418
|
registrations:
|
412
419
|
new:
|
413
420
|
already_have_an_account?: Haben Sie bereits ein Konto?
|
414
|
-
newsletter:
|
415
|
-
newsletter_title:
|
421
|
+
newsletter: Gelegentlich einen Newsletter mit relevanten Informationen erhalten
|
422
|
+
newsletter_title: Kontakterlaubnis
|
416
423
|
nickname_help: Ihr Pseudonym in %{organization}
|
417
|
-
password_help: "Mindestens %{minimun_characters} Zeichen, nicht zu
|
424
|
+
password_help: "Mindestens %{minimun_characters} Zeichen, nicht zu gewöhnlich (z.B. 123456) und darf nicht Ihr Benutzername oder Ihre E-Mail-Adresse sein."
|
418
425
|
sign_in: Anmelden
|
419
426
|
sign_up: Registrieren
|
420
427
|
sign_up_as:
|
@@ -435,7 +442,7 @@ de:
|
|
435
442
|
buttons:
|
436
443
|
check: Überprüfen und fortfahren
|
437
444
|
close_modal: Modal schließen
|
438
|
-
uncheck:
|
445
|
+
uncheck: Ohne Kontakterlaubnis fortfahren
|
439
446
|
notice: |-
|
440
447
|
<p>Hey, sind Sie sicher, dass Sie keinen Newsletter erhalten möchten?<br>
|
441
448
|
Bitte überlegen Sie sich noch einmal das Kontrollkästchen für den Newsletter doch anzukreuzen.<br>
|
@@ -483,133 +490,133 @@ de:
|
|
483
490
|
amendments:
|
484
491
|
amendment_accepted:
|
485
492
|
affected_user:
|
486
|
-
email_intro: 'Eine
|
487
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von %{amendable_title}.
|
488
|
-
email_subject:
|
489
|
-
notification_title: Die <a href="%{emendation_path}"
|
493
|
+
email_intro: 'Eine Änderung an %{amendable_title} wurde akzeptiert. Sie können das auf dieser Seite sehen:'
|
494
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von %{amendable_title} sind.
|
495
|
+
email_subject: Akzeptierte Änderung für %{amendable_title} von %{emendation_author_nickname}
|
496
|
+
notification_title: Die <a href="%{emendation_path}">Änderung</a> von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> für <a href="%{amendable_path}">%{amendable_title}</a> wurde angenommen.
|
490
497
|
follower:
|
491
|
-
email_intro: 'Eine
|
492
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title}. Sie
|
493
|
-
email_subject:
|
494
|
-
notification_title: Die <a href="%{emendation_path}"
|
498
|
+
email_intro: 'Eine Änderung für %{amendable_title} wurde akzeptiert. Sie können das auf dieser Seite sehen:'
|
499
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
500
|
+
email_subject: Akzeptierte Änderung für %{amendable_title} von %{emendation_author_nickname}
|
501
|
+
notification_title: Die <a href="%{emendation_path}">Änderung</a> von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> für <a href="%{amendable_path}">%{amendable_title}</a> wurde akzeptiert.
|
495
502
|
amendment_created:
|
496
503
|
affected_user:
|
497
|
-
email_intro: 'Eine neue
|
498
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von %{amendable_title}.
|
504
|
+
email_intro: 'Eine neue Änderung wurde für %{amendable_title} vorgeschlagen. Sie können das auf dieser Seite sehen:'
|
505
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von %{amendable_title} sind.
|
499
506
|
email_subject: Neuer Änderungsantrag für %{amendable_title}
|
500
|
-
notification_title:
|
507
|
+
notification_title: Neue Änderung für <a href="%{amendable_path}">%{amendable_title}</a> erstellt.
|
501
508
|
follower:
|
502
|
-
email_intro: 'Eine neue
|
503
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title}. Sie
|
509
|
+
email_intro: 'Eine neue Änderung für %{amendable_title} wurde erstellt. Sie können das auf dieser Seite sehen:'
|
510
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
504
511
|
email_subject: Neuer Änderungsantrag für %{amendable_title}
|
505
|
-
notification_title: Eine neue Änderung
|
512
|
+
notification_title: Eine neue Änderung für <a href="%{amendable_path}">%{amendable_title}</a> wurde erstellt.
|
506
513
|
amendment_promoted:
|
507
514
|
affected_user:
|
508
|
-
email_intro: 'Eine
|
509
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von %{amendable_title}.
|
510
|
-
email_subject: Eine Änderung von %{emendation_author_nickname} wurde als neue %{amendable_type}
|
511
|
-
notification_title:
|
515
|
+
email_intro: 'Eine abgelehnte Änderung an %{amendable_title} wurde als neue/n %{amendable_type} veröffentlicht. Sie können das auf dieser Seite sehen:'
|
516
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von %{amendable_title} sind.
|
517
|
+
email_subject: Eine Änderung von %{emendation_author_nickname} wurde als neue/n %{amendable_type} veröffentlicht
|
518
|
+
notification_title: Die <a href="%{emendation_path}">abgelehnte Änderung</a> für <a href="%{amendable_path}">%{amendable_title}</a> wurde von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> als neue/n %{amendable_type} veröffentlicht.
|
512
519
|
follower:
|
513
|
-
email_intro: 'Eine für %{amendable_title}
|
514
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title}. Sie
|
515
|
-
email_subject: Eine Änderung von %{emendation_author_nickname} wurde als neue %{amendable_type}
|
516
|
-
notification_title:
|
520
|
+
email_intro: 'Eine abgelehnte Änderung für %{amendable_title} wurde als neue/n %{amendable_type} veröffentlicht. Sie können das auf dieser Seite sehen:'
|
521
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
522
|
+
email_subject: Eine Änderung von %{emendation_author_nickname} wurde als neue/n/s %{amendable_type} veröffentlicht
|
523
|
+
notification_title: Eine <a href="%{emendation_path}">abgelehnte Änderung</a> für <a href="%{amendable_path}">%{amendable_title}</a> wurde von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> als neue/n/s %{amendable_type} veröffentlicht.
|
517
524
|
amendment_rejected:
|
518
525
|
affected_user:
|
519
|
-
email_intro: 'Eine
|
520
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von %{amendable_title}.
|
521
|
-
email_subject:
|
522
|
-
notification_title: Die <a href="%{emendation_path}">Änderung</a>
|
526
|
+
email_intro: 'Eine Änderung an %{amendable_title} wurde abgelehnt. Sie können das auf dieser Seite sehen:'
|
527
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von %{amendable_title} sind.
|
528
|
+
email_subject: Abgelehnter Änderungsantrag für %{amendable_title} von %{emendation_author_nickname}
|
529
|
+
notification_title: Die <a href="%{emendation_path}">Änderung</a> von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> für <a href="%{amendable_path}">%{amendable_title}</a> wurde abgelehnt.
|
523
530
|
follower:
|
524
|
-
email_intro: 'Eine
|
525
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title}. Sie
|
526
|
-
email_subject:
|
527
|
-
notification_title: Die <a href="%{emendation_path}">Änderung</a>
|
531
|
+
email_intro: 'Eine Änderung für %{amendable_title} wurde abgelehnt. Sie können das auf dieser Seite sehen:'
|
532
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title}. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
533
|
+
email_subject: Abgelehnte Änderung für %{amendable_title} von %{emendation_author_nickname}
|
534
|
+
notification_title: Die <a href="%{emendation_path}">Änderung</a> für <a href="%{amendable_path}">%{amendable_title}</a> von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> wurde abgelehnt.
|
528
535
|
attachments:
|
529
536
|
attachment_created:
|
530
537
|
email_intro: 'Ein neues Dokument wurde zu %{resource_title} hinzugefügt. Sie können es auf dieser Seite sehen:'
|
531
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{resource_title} folgen.
|
538
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{resource_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
532
539
|
email_subject: Eine Aktualisierung auf %{resource_title}
|
533
540
|
notification_title: Ein <a href="%{resource_path}">neues Dokument</a> wurde zu <a href="%{attached_to_url}">%{resource_title}</a>hinzugefügt
|
534
541
|
components:
|
535
542
|
component_published:
|
536
|
-
email_intro: 'Die Komponente %{resource_title} ist jetzt für %{participatory_space_title} aktiv. Sie können
|
537
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title} folgen.
|
543
|
+
email_intro: 'Die Komponente %{resource_title} ist jetzt für %{participatory_space_title} aktiv. Sie können das auf dieser Seite sehen:'
|
544
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
538
545
|
email_subject: Eine Aktualisierung auf %{participatory_space_title}
|
539
546
|
notification_title: Die Komponente %{resource_title} ist jetzt für <a href="%{resource_path}">%{participatory_space_title}</a> aktiv
|
540
547
|
email_event:
|
541
548
|
email_greeting: Hallo %{user_name},
|
542
|
-
email_intro: 'Es wurde ein Update auf "%{resource_title}" vorgenommen. Sie können
|
543
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" folgen. Sie
|
549
|
+
email_intro: 'Es wurde ein Update auf "%{resource_title}" vorgenommen. Sie können das auf dieser Seite sehen:'
|
550
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
544
551
|
email_subject: Eine Aktualisierung auf %{resource_title}
|
545
552
|
gamification:
|
546
553
|
badge_earned:
|
547
|
-
email_intro:
|
554
|
+
email_intro: Gratulation! Sie haben das Abzeichen <a href="%{resource_url}">%{badge_name}</a> (Level %{current_level}) verdient.
|
548
555
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie auf unserer Website aktiv waren.
|
549
|
-
email_subject: '
|
550
|
-
notification_title:
|
556
|
+
email_subject: 'Sie haben ein neues Abzeichen erhalten: %{badge_name}!'
|
557
|
+
notification_title: Gratulation! Sie haben das Abzeichen <a href="%{resource_path}">%{badge_name}</a> (Level %{current_level}) verdient.
|
551
558
|
level_up:
|
552
|
-
email_intro:
|
559
|
+
email_intro: Gratulation! Sie haben Level %{current_level} auf dem Abzeichen <a href="%{resource_url}">%{badge_name}</a> erreicht!
|
553
560
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie auf unserer Website aktiv waren.
|
554
|
-
email_subject:
|
555
|
-
notification_title:
|
561
|
+
email_subject: Sie haben Level %{current_level} auf dem Abzeichen %{badge_name} erreicht!
|
562
|
+
notification_title: Gratulation! Sie haben Level %{current_level} auf dem Abzeichen <a href="%{resource_path}">%{badge_name}</a> erreicht!
|
556
563
|
groups:
|
557
564
|
demoted_membership:
|
558
565
|
email_intro: Ein Administrator der Gruppe <a href="%{resource_url}">%{user_group_name}</a> hat Ihre Administratorrechte für diese Gruppe entfernt.
|
559
566
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie Mitglied dieser Gruppe sind.
|
560
|
-
email_subject: Du bist kein Administrator der %{user_group_name}
|
561
|
-
notification_title: Sie sind nicht mehr
|
567
|
+
email_subject: Du bist kein Administrator der Gruppe %{user_group_name} mehr!
|
568
|
+
notification_title: Sie sind nicht mehr Administrator in der Gruppe <a href="%{resource_path}">%{user_group_name}</a>.
|
562
569
|
invited_to_group:
|
563
|
-
email_intro: Ein Administrator der Gruppe <a href="%{resource_url}">%{user_group_name}</a> hat Sie
|
564
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie zu einer Gruppe eingeladen wurden. Überprüfen Sie
|
565
|
-
email_subject:
|
566
|
-
notification_title: Sie wurden eingeladen, der <a href="%{resource_path}">%{user_group_name}</a>
|
570
|
+
email_intro: Ein Administrator der Gruppe <a href="%{resource_url}">%{user_group_name}</a> hat Sie in die Gruppe eingeladen.
|
571
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie zu einer Gruppe eingeladen wurden. Überprüfen Sie das Tab "Gruppen" in Ihrem Profil, um die Einladung zu akzeptieren.
|
572
|
+
email_subject: Sie wurden eingeladen, der Gruppe %{user_group_name} beizutreten!
|
573
|
+
notification_title: Sie wurden eingeladen, der Gruppe <a href="%{resource_path}">%{user_group_name}</a> beizutreten. Besuchen Sie die <a href="%{groups_profile_tab_path}">Gruppen-Seite</a> in Ihrem Profil, um die Einladung zu akzeptieren!
|
567
574
|
join_request_accepted:
|
568
|
-
email_intro:
|
569
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Ihre
|
570
|
-
email_subject:
|
575
|
+
email_intro: Herzlichen Glückwunsch! Ein Administrator der Gruppe <a href="%{resource_url}">%{user_group_name}</a> hat Ihre Anfrage akzeptiert, der Gruppe beizutreten.
|
576
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Ihre Beitrittsanfrage aktualisiert wurde.
|
577
|
+
email_subject: Sie wurden in die Gruppe %{user_group_name} aufgenommen!
|
571
578
|
notification_title: Sie wurden in die Gruppe <a href="%{resource_path}">%{user_group_name}</a> aufgenommen.
|
572
579
|
join_request_created:
|
573
|
-
email_intro: Jemand hat darum gebeten, der Gruppe %{user_group_name} beizutreten. Sie können
|
580
|
+
email_intro: Jemand hat darum gebeten, der Gruppe %{user_group_name} beizutreten. Sie können die Anfrage auf der <a href="%{resource_url}">Gruppenmitglieder-Seite</a> akzeptieren oder ablehnen.
|
574
581
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie die Gruppe %{user_group_name} verwalten können.
|
575
582
|
email_subject: Jemand hat darum gebeten, der Gruppe %{user_group_name} beizutreten!
|
576
|
-
notification_title: Jemand hat darum gebeten, der Gruppe %{user_group_name} beizutreten. Sie können
|
583
|
+
notification_title: Jemand hat darum gebeten, der Gruppe %{user_group_name} beizutreten. Sie können die Anfrage auf der <a href="%{resource_path}">Gruppenmitglieder-Seite</a> akzeptieren oder ablehnen.
|
577
584
|
join_request_rejected:
|
578
|
-
email_intro: Ein Administrator der Gruppe <a href="%{resource_url}">%{user_group_name}</a> Ihre Anfrage abgelehnt, der Gruppe beizutreten.
|
579
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Ihre
|
585
|
+
email_intro: Ein Administrator der Gruppe <a href="%{resource_url}">%{user_group_name}</a> hat Ihre Anfrage abgelehnt, der Gruppe beizutreten.
|
586
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Ihre Beitrittsanfrage aktualisiert wurde.
|
580
587
|
email_subject: Ihre Anfrage, der Gruppe %{user_group_name} beizutreten, wurde abgelehnt!
|
581
588
|
notification_title: Ihre Anfrage, der Gruppe <a href="%{resource_path}">%{user_group_name}</a> beizutreten, wurde abgelehnt.
|
582
589
|
promoted_to_admin:
|
583
590
|
email_intro: Ein Administrator der Gruppe <a href="%{resource_url}">%{user_group_name}</a> hat Ihnen Administratorrechte für diese Gruppe erteilt.
|
584
591
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie Mitglied dieser Gruppe sind.
|
585
|
-
email_subject: Du bist jetzt ein Admin der %{user_group_name}
|
586
|
-
notification_title: Sie sind jetzt ein Administrator der <a href="%{resource_path}">%{user_group_name}</a
|
592
|
+
email_subject: Du bist jetzt ein Admin der Gruppe %{user_group_name}!
|
593
|
+
notification_title: Sie sind jetzt ein Administrator in der Gruppe <a href="%{resource_path}">%{user_group_name}</a>.
|
587
594
|
removed_from_group:
|
588
|
-
email_intro: Ein Admin der <a href="%{resource_url}">%{user_group_name}</a>
|
595
|
+
email_intro: Ein Admin der Gruppe <a href="%{resource_url}">%{user_group_name}</a> hat Sie aus der Gruppe entfernt.
|
589
596
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie Mitglied dieser Gruppe waren.
|
590
|
-
email_subject: Du wurdest aus der Gruppe %{user_group_name}!
|
591
|
-
notification_title: Sie wurden aus der Gruppe <a href="%{resource_path}">%{user_group_name}</a
|
597
|
+
email_subject: Du wurdest aus der Gruppe %{user_group_name} entfernt!
|
598
|
+
notification_title: Sie wurden aus der Gruppe <a href="%{resource_path}">%{user_group_name}</a> entfernt.
|
592
599
|
user_group_created:
|
593
|
-
email_intro: Eine neue Benutzergruppe
|
600
|
+
email_intro: Eine neue Benutzergruppe mit dem Namen %{user_group_name} wurde erstellt. Sie können sie über das <a href="%{groups_admin_url}">Admin-Panel</a> verifizieren.
|
594
601
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Administrator der Plattform sind.
|
595
602
|
email_subject: Eine neue Benutzergruppe wurde erstellt
|
596
|
-
notification_title: Die Benutzergruppe %{user_group_name} wurde erstellt. Sie können sie über
|
603
|
+
notification_title: Die Benutzergruppe %{user_group_name} wurde erstellt. Sie können sie über das <a href="%{groups_admin_path}">Admin-Panel</a> verifizieren.
|
597
604
|
user_group_updated:
|
598
|
-
email_intro: Die Benutzergruppe mit dem Namen %{user_group_name} hat ihr Profil aktualisiert, wodurch diese erneut verifiziert werden muss. Sie können sie über
|
605
|
+
email_intro: Die Benutzergruppe mit dem Namen %{user_group_name} hat ihr Profil aktualisiert, wodurch diese erneut verifiziert werden muss. Sie können sie über das <a href="%{groups_admin_url}">Admin-Panel</a> verifizieren.
|
599
606
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Administrator der Plattform sind.
|
600
607
|
email_subject: Eine Benutzergruppe hat ihr Profil aktualisiert
|
601
|
-
notification_title: Die Benutzergruppe %{user_group_name} hat ihr Profil aktualisiert, wodurch diese erneut verifiziert werden muss. Sie können sie über
|
608
|
+
notification_title: Die Benutzergruppe %{user_group_name} hat ihr Profil aktualisiert, wodurch diese erneut verifiziert werden muss. Sie können sie über das <a href="%{groups_admin_path}">Admin-Panel</a> verifizieren.
|
602
609
|
notification_event:
|
603
610
|
notification_title: Ein Ereignis trat auf <a href="%{resource_path}">%{resource_title}</a>.
|
604
611
|
resource_endorsed:
|
605
|
-
email_intro: '%{endorser_name} %{endorser_nickname}, dem Sie folgen, hat gerade
|
606
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{endorser_nickname} folgen.
|
612
|
+
email_intro: '%{endorser_name} %{endorser_nickname}, dem Sie folgen, hat gerade "%{resource_title}" unterstützt, und wir denken, das könnte interessant für Sie sein. Schauen Sie es sich an und reden Sie mit:'
|
613
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{endorser_nickname} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
607
614
|
email_subject: "%{endorser_nickname} hat eine neue Befürwortung ausgesprochen"
|
608
615
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> %{resource_type} wurde von <a href="%{endorser_path}">%{endorser_name} %{endorser_nickname}</a> befürwortet.
|
609
616
|
users:
|
610
617
|
profile_updated:
|
611
618
|
email_intro: Die <a href="%{resource_url}">Profilseite</a> von %{name} (%{nickname}), der Sie folgen, wurde aktualisiert.
|
612
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{nickname}. Sie
|
619
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{nickname} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
613
620
|
email_subject: "%{nickname} hat ihr Profil aktualisiert"
|
614
621
|
notification_title: Die <a href="%{resource_path}">Profilseite</a> von %{name} (%{nickname}), der Sie folgen, wurde aktualisiert.
|
615
622
|
export_mailer:
|
@@ -622,7 +629,7 @@ de:
|
|
622
629
|
filters:
|
623
630
|
linked_classes:
|
624
631
|
all: Alle
|
625
|
-
collaborative_draft:
|
632
|
+
collaborative_draft: Kollaborativer Entwurf
|
626
633
|
dummy_resource: Dummy-Ressourcen
|
627
634
|
meeting: Meetings
|
628
635
|
project: Projekte
|
@@ -647,7 +654,7 @@ de:
|
|
647
654
|
create:
|
648
655
|
button: Folgen
|
649
656
|
error: Beim Folgen dieser Ressource ist ein Fehler aufgetreten.
|
650
|
-
participatory_space:
|
657
|
+
participatory_space: Sie folgen <span class="show-for-sr">%{resource_name}</span> bereits
|
651
658
|
destroy:
|
652
659
|
button: Entfolgen
|
653
660
|
error: Beim Entfolgen dieser Ressource ist ein Fehler aufgetreten.
|
@@ -793,8 +800,8 @@ de:
|
|
793
800
|
help:
|
794
801
|
main_topic:
|
795
802
|
default_page:
|
796
|
-
content: "<p>In %{organization} Sie durch die
|
797
|
-
title: Was kann ich in %{organization}?
|
803
|
+
content: "<p>In %{organization} können Sie durch die Felder, die Sie im oberen Menü sehen, an verschiedenen Themen teilnehmen: Prozesse, Gremien, Initiativen, Beratungen.</p> <p>In jedem Bereich finden Sie verschiedene Optionen für die Teilnahme: Vorschläge machen - einzeln oder mit anderen -, an Debatten teilnehmen, Prioritäten für umzusetzende Projekte setzen, persönliche Treffen und andere Aktionen besuchen.</p>\n"
|
804
|
+
title: Was kann ich in %{organization} tun?
|
798
805
|
description: Lesen Sie mehr über %{organization}
|
799
806
|
title: Allgemeine Hilfe
|
800
807
|
last_activities:
|
@@ -884,6 +891,11 @@ de:
|
|
884
891
|
show: Gespräch mit %{sender} anzeigen
|
885
892
|
create:
|
886
893
|
error: Die Unterhaltung wurde nicht gestartet. Versuchen Sie es später noch einmal
|
894
|
+
error_modal:
|
895
|
+
close: Dialog schließen
|
896
|
+
correct_errors: Bitte korrigiere diese Fehler und versuche es erneut.
|
897
|
+
intro: 'Es gab folgende Fehler bei Ihrer Nachricht:'
|
898
|
+
ok: OK
|
887
899
|
index:
|
888
900
|
ago: vor
|
889
901
|
close: Modal schließen
|
@@ -907,7 +919,7 @@ de:
|
|
907
919
|
send: Senden
|
908
920
|
title: Ein Gespräch beginnen
|
909
921
|
update:
|
910
|
-
error: Nachricht
|
922
|
+
error: Nachricht wurde aufgrund eines Fehlers nicht gesendet
|
911
923
|
metrics:
|
912
924
|
download:
|
913
925
|
csv: Daten herunterladen (csv)
|
@@ -1107,8 +1119,14 @@ de:
|
|
1107
1119
|
report_html: <p>Der folgende <a href="%{url}">Inhalt</a> wurde automatisch ausgeblendet.</p>
|
1108
1120
|
subject: Eine Ressource wurde automatisch ausgeblendet
|
1109
1121
|
report:
|
1122
|
+
authors: Autoren
|
1123
|
+
content: Gemeldeter Inhalt
|
1124
|
+
date: Gemeldet am
|
1125
|
+
details: Einzelheiten
|
1110
1126
|
hello: Hallo %{name},
|
1111
1127
|
manage_moderations: Moderationen verwalten
|
1128
|
+
participatory_space: Beteiligungsbereich
|
1129
|
+
reason: Grund
|
1112
1130
|
report_html: <p>Der folgende <a href="%{url}">Inhalt</a> wurde gemeldet.</p>
|
1113
1131
|
subject: Eine Ressource wurde gemeldet
|
1114
1132
|
reports:
|
@@ -1153,6 +1171,10 @@ de:
|
|
1153
1171
|
one: "%{count} Ergebnis"
|
1154
1172
|
other: "%{count} Ergebnisse"
|
1155
1173
|
view_all: Alle anzeigen (%{count})
|
1174
|
+
security:
|
1175
|
+
selfxss_warning:
|
1176
|
+
description: Diese Browser-Funktion ist nur für Entwickler gedacht und Sie sollten hier keine Daten einfügen, wenn Sie darum gebeten wurden. Das Einfügen von Inhalten in dieses Fenster kann Ihre Privatsphäre beeinträchtigen und Hackern Zugriff auf Ihr Konto ermöglichen.
|
1177
|
+
title: Stop!
|
1156
1178
|
shared:
|
1157
1179
|
confirm_modal:
|
1158
1180
|
cancel: Abbrechen
|
@@ -1206,6 +1228,10 @@ de:
|
|
1206
1228
|
tags:
|
1207
1229
|
filter_results_for_category: 'Ergebnisse nach Kategorie filtern: %{resource}'
|
1208
1230
|
filter_results_for_scope: 'Ergebnisse nach Anwendungsbereich filtern: %{resource}'
|
1231
|
+
translation_bar:
|
1232
|
+
help_text: "<strong>Warnung:</strong> Inhalt könnte automatisch übersetzt werden und nicht 100% korrekt sein."
|
1233
|
+
show_original: Originaltext anzeigen
|
1234
|
+
show_translated: Automatisch übersetzter Text anzeigen
|
1209
1235
|
user_activity:
|
1210
1236
|
index:
|
1211
1237
|
no_activities_warning: Dieser Benutzer hat noch keine Aktivität gehabt.
|
@@ -1265,6 +1291,7 @@ de:
|
|
1265
1291
|
versions:
|
1266
1292
|
resource_version:
|
1267
1293
|
of_versions: "(von %{number})"
|
1294
|
+
see_other_versions: Andere Versionen anzeigen
|
1268
1295
|
version: Versionsnummer %{number}
|
1269
1296
|
versions_list:
|
1270
1297
|
show:
|
@@ -1341,13 +1368,13 @@ de:
|
|
1341
1368
|
someone_invited_you_as_private_user: Jemand hat dich als private_user von %{application}eingeladen, du kannst es über den folgenden Link akzeptieren.
|
1342
1369
|
subject: Anweisungen zur Einladung
|
1343
1370
|
invite_admin:
|
1344
|
-
subject: Du wurdest eingeladen, %{organization}zu verwalten
|
1371
|
+
subject: Du wurdest eingeladen, %{organization} zu verwalten
|
1345
1372
|
invite_collaborator:
|
1346
1373
|
subject: Du wurdest eingeladen, an %{organization}
|
1347
1374
|
invite_private_user:
|
1348
|
-
subject: Du wurdest zu einem privaten Partizipationsprozess auf %{organization}eingeladen
|
1375
|
+
subject: Du wurdest zu einem privaten Partizipationsprozess auf %{organization} eingeladen
|
1349
1376
|
organization_admin_invitation_instructions:
|
1350
|
-
subject: Du wurdest eingeladen, %{organization}zu verwalten
|
1377
|
+
subject: Du wurdest eingeladen, %{organization} zu verwalten
|
1351
1378
|
password_change:
|
1352
1379
|
greeting: Hallo %{recipient}!
|
1353
1380
|
message: Wir kontaktieren Sie, um Sie darüber zu informieren, dass Ihr Passwort geändert wurde.
|
@@ -1374,7 +1401,7 @@ de:
|
|
1374
1401
|
change_your_password: Ändern Sie Ihr Passwort
|
1375
1402
|
confirm_new_password: Bestätige neues Passwort
|
1376
1403
|
new_password: Neues Passwort
|
1377
|
-
password_help: "Mindestens %{minimun_characters} Zeichen, nicht zu
|
1404
|
+
password_help: "Mindestens %{minimun_characters} Zeichen, nicht zu gewöhnlich (z. B. 123456) und darf nicht Ihr Benutzername oder Ihre E-Mail-Adresse sein."
|
1378
1405
|
new:
|
1379
1406
|
forgot_your_password: Haben Sie Ihr Passwort vergessen?
|
1380
1407
|
send_me_reset_password_instructions: Senden Sie mir das Passwort zurück
|
@@ -1403,15 +1430,15 @@ de:
|
|
1403
1430
|
update_needs_confirmation: Sie haben Ihr Konto erfolgreich aktualisiert, aber wir müssen Ihre neue E-Mail-Adresse bestätigen. Bitte überprüfen Sie Ihre E-Mail und folgen Sie dem Bestätigungslink, um Ihre neue E-Mail-Adresse zu bestätigen.
|
1404
1431
|
updated: Ihr Konto wurde erfolgreich aktualisiert.
|
1405
1432
|
sessions:
|
1406
|
-
already_signed_out: Erfolgreich
|
1433
|
+
already_signed_out: Erfolgreich abgemeldet.
|
1407
1434
|
new:
|
1408
1435
|
sign_in: Einloggen
|
1409
1436
|
signed_in: Erfolgreich angemeldet
|
1410
|
-
signed_out: Erfolgreich
|
1437
|
+
signed_out: Erfolgreich abgemeldet.
|
1411
1438
|
shared:
|
1412
1439
|
links:
|
1413
1440
|
back: Zurück
|
1414
|
-
didn_t_receive_confirmation_instructions: Haben Sie keine
|
1441
|
+
didn_t_receive_confirmation_instructions: Haben Sie keine Bestätigungs-Mail erhalten?
|
1415
1442
|
didn_t_receive_unlock_instructions: Haben Sie keine Entsperrungsanweisungen erhalten?
|
1416
1443
|
forgot_your_password: Haben Sie Ihr Passwort vergessen?
|
1417
1444
|
sign_in: Einloggen
|
@@ -1514,6 +1541,7 @@ de:
|
|
1514
1541
|
see_more: Mehr sehen
|
1515
1542
|
locale:
|
1516
1543
|
name: Deutsch
|
1544
|
+
name_with_error: Englisch (Fehler!)
|
1517
1545
|
password_validator:
|
1518
1546
|
domain_included_in_password: ist diesem Domainnamen zu ähnlich
|
1519
1547
|
email_included_in_password: ist Ihrer E-Mail zu ähnlich
|