decidim-core 0.28.0 → 0.28.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/activity_cell.rb +2 -2
- data/app/cells/decidim/address/online.erb +27 -9
- data/app/cells/decidim/address/show.erb +27 -12
- data/app/cells/decidim/address_cell.rb +29 -0
- data/app/cells/decidim/announcement/show.erb +2 -2
- data/app/cells/decidim/author/show.erb +5 -5
- data/app/cells/decidim/authorization_modal/show.erb +8 -4
- data/app/cells/decidim/authorization_modal_cell.rb +1 -0
- data/app/cells/decidim/card/show.erb +1 -1
- data/app/cells/decidim/card_metadata/show.erb +2 -2
- data/app/cells/decidim/card_metadata_cell.rb +3 -3
- data/app/cells/decidim/coauthorships_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/menu_breadcrumb_last_activity_cell.rb +6 -0
- data/app/cells/decidim/content_blocks/participatory_space_hero_cell.rb +20 -4
- data/app/cells/decidim/content_blocks/participatory_space_hero_settings_form/show.erb +8 -0
- data/app/cells/decidim/content_blocks/participatory_space_hero_settings_form_cell.rb +13 -0
- data/app/cells/decidim/content_blocks/participatory_space_metadata_cell.rb +1 -1
- data/app/cells/decidim/data_consent/category.erb +1 -1
- data/app/cells/decidim/footer_pages_cell.rb +3 -3
- data/app/cells/decidim/nav_links/show.erb +2 -2
- data/app/cells/decidim/notification/moderated.erb +12 -0
- data/app/cells/decidim/notification_cell.rb +5 -1
- data/app/cells/decidim/profile/details.erb +1 -1
- data/app/cells/decidim/profile/tabs.erb +3 -2
- data/app/cells/decidim/progress_bar/show.erb +1 -1
- data/app/cells/decidim/progress_bar_cell.rb +2 -0
- data/app/cells/decidim/report_button/flag_modal.erb +5 -1
- data/app/cells/decidim/resource_types_filter/show.erb +3 -3
- data/app/cells/decidim/statistic/show.erb +2 -2
- data/app/cells/decidim/tags_cell.rb +3 -1
- data/app/cells/decidim/upload_modal/modal.erb +1 -2
- data/app/commands/decidim/create_omniauth_registration.rb +1 -3
- data/app/commands/decidim/messaging/reply_to_conversation.rb +3 -0
- data/app/commands/decidim/messaging/start_conversation.rb +3 -0
- data/app/controllers/concerns/decidim/devise_authentication_methods.rb +36 -0
- data/app/controllers/concerns/decidim/force_authentication.rb +1 -1
- data/app/controllers/concerns/decidim/paginable.rb +1 -1
- data/app/controllers/concerns/decidim/use_organization_time_zone.rb +1 -1
- data/app/controllers/decidim/devise/omniauth_registrations_controller.rb +1 -22
- data/app/controllers/decidim/devise/sessions_controller.rb +1 -24
- data/app/controllers/decidim/gamification/badges_controller.rb +2 -0
- data/app/controllers/decidim/links_controller.rb +15 -2
- data/app/events/decidim/welcome_notification_event.rb +6 -9
- data/app/helpers/concerns/decidim/flash_helper_extensions.rb +2 -2
- data/app/helpers/decidim/application_helper.rb +0 -18
- data/app/helpers/decidim/cells_paginate_helper.rb +1 -1
- data/app/helpers/decidim/check_boxes_tree_helper.rb +7 -8
- data/app/helpers/decidim/layout_helper.rb +1 -1
- data/app/helpers/decidim/map_helper.rb +1 -1
- data/app/helpers/decidim/menu_helper.rb +2 -0
- data/app/helpers/decidim/newsletters_helper.rb +83 -16
- data/app/helpers/decidim/paginate_helper.rb +1 -1
- data/app/helpers/decidim/sanitize_helper.rb +9 -0
- data/app/helpers/decidim/social_share_button_helper.rb +1 -1
- data/app/helpers/decidim/user_profile_helper.rb +7 -2
- data/app/mailers/decidim/application_mailer.rb +40 -6
- data/app/mailers/decidim/messaging/conversation_mailer.rb +3 -72
- data/app/models/decidim/push_notification_message.rb +38 -0
- data/app/packs/entrypoints/decidim_overrides.scss +2 -0
- data/app/packs/images/decidim/.keep +0 -0
- data/app/packs/src/decidim/a11y.js +15 -1
- data/app/packs/src/decidim/abide_form_validator_fixer.js +44 -0
- data/app/packs/src/decidim/account_form.js +1 -1
- data/app/packs/src/decidim/data_consent/consent_manager.test.js +1 -1
- data/app/packs/src/decidim/data_consent/index.js +1 -1
- data/app/packs/src/decidim/direct_uploads/upload_field.js +1 -1
- data/app/packs/src/decidim/direct_uploads/upload_modal.js +5 -5
- data/app/packs/src/decidim/editor/extensions/hashtag/index.js +1 -1
- data/app/packs/src/decidim/editor/extensions/mention/index.js +1 -1
- data/app/packs/src/decidim/editor/extensions/video_embed/index.js +3 -0
- data/app/packs/src/decidim/editor/test/editor/create.test.js +1 -1
- data/app/packs/src/decidim/editor/test/extensions/bold.test.js +2 -3
- data/app/packs/src/decidim/editor/test/extensions/character_count.test.js +2 -2
- data/app/packs/src/decidim/editor/test/extensions/decidim_kit.test.js +2 -3
- data/app/packs/src/decidim/editor/test/extensions/dialog.test.js +2 -2
- data/app/packs/src/decidim/editor/test/extensions/emoji.test.js +2 -2
- data/app/packs/src/decidim/editor/test/extensions/hashtag.test.js +2 -2
- data/app/packs/src/decidim/editor/test/extensions/heading.test.js +2 -2
- data/app/packs/src/decidim/editor/test/extensions/image.test.js +4 -4
- data/app/packs/src/decidim/editor/test/extensions/indent.test.js +2 -2
- data/app/packs/src/decidim/editor/test/extensions/link.test.js +3 -3
- data/app/packs/src/decidim/editor/test/extensions/mention.test.js +2 -2
- data/app/packs/src/decidim/editor/test/extensions/ordered_list.test.js +2 -2
- data/app/packs/src/decidim/editor/test/extensions/video_embed.test.js +3 -3
- data/app/packs/src/decidim/editor/test/helpers.js +5 -4
- data/app/packs/src/decidim/editor/test/toolbar/basic.test.js +2 -2
- data/app/packs/src/decidim/editor/test/toolbar/content.test.js +2 -2
- data/app/packs/src/decidim/editor/test/toolbar/full.test.js +3 -3
- data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_basic.js +6 -6
- data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_basic_block.js +2 -2
- data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_basic_formatting.js +1 -1
- data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_basic_indent.js +2 -2
- data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_basic_link.js +2 -2
- data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_basic_list.js +2 -2
- data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_basic_styling.js +2 -2
- data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_content.js +7 -7
- data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_content_styling.js +2 -2
- data/app/packs/src/decidim/editor/test/toolbar/shared/context.js +1 -1
- data/app/packs/src/decidim/editor/test/utilities/paste_transform.test.js +2 -2
- data/app/packs/src/decidim/external_domain_warning.js +13 -0
- data/app/packs/src/decidim/external_domain_warning.test.js +1 -1
- data/app/packs/src/decidim/external_link.js +48 -9
- data/app/packs/src/decidim/external_link.test.js +1 -1
- data/app/packs/src/decidim/focus_guard.js +8 -20
- data/app/packs/src/decidim/form_filter.component_for_testing.js +1 -1
- data/app/packs/src/decidim/form_filter.js +3 -3
- data/app/packs/src/decidim/geocoding/attach_input.js +1 -1
- data/app/packs/src/decidim/i18n.test.js +1 -1
- data/app/packs/src/decidim/index.js +33 -2
- data/app/packs/src/decidim/input_hashtags.js +1 -1
- data/app/packs/src/decidim/input_mentions.js +1 -1
- data/app/packs/src/decidim/input_multiple_mentions.js +1 -1
- data/app/packs/src/decidim/sw/index.js +3 -3
- data/app/packs/src/decidim/user_registrations.js +1 -1
- data/app/packs/src/decidim/vizzs/index.js +1 -1
- data/app/packs/stylesheets/decidim/_accordion.scss +2 -2
- data/app/packs/stylesheets/decidim/_cards.scss +4 -4
- data/app/packs/stylesheets/decidim/_dropdown.scss +2 -2
- data/app/packs/stylesheets/decidim/_layout.scss +7 -7
- data/app/packs/stylesheets/decidim/_modal_update.scss +1 -3
- data/app/packs/stylesheets/decidim/application.scss +0 -3
- data/app/packs/stylesheets/decidim/decidim_application.scss +4 -0
- data/app/packs/stylesheets/decidim/legacy/leaflet.scss +88 -107
- data/app/presenters/decidim/admin_log/oauth_application_resource_presenter.rb +1 -1
- data/app/presenters/decidim/admin_log/organization_presenter.rb +1 -1
- data/app/presenters/decidim/log/diff_presenter.rb +1 -1
- data/app/presenters/decidim/log/resource_presenter.rb +7 -1
- data/app/presenters/decidim/notification_to_mailer_presenter.rb +9 -0
- data/app/services/decidim/events_manager.rb +6 -0
- data/app/services/decidim/iframe_disabler.rb +4 -0
- data/app/services/decidim/log/diff_changeset_calculator.rb +1 -1
- data/app/services/decidim/push_notification_message_sender.rb +40 -0
- data/app/services/decidim/send_push_notification.rb +22 -8
- data/app/uploaders/decidim/background_image_uploader.rb +11 -0
- data/app/views/decidim/account/show.html.erb +2 -2
- data/app/views/decidim/application/_collection.html.erb +2 -2
- data/app/views/decidim/application/_document.html.erb +3 -3
- data/app/views/decidim/devise/registrations/new.html.erb +2 -2
- data/app/views/decidim/endorsements/update_buttons_and_counters.js.erb +2 -1
- data/app/views/decidim/gamification/badges/index.html.erb +34 -33
- data/app/views/decidim/links/_modal.html.erb +1 -1
- data/app/views/decidim/links/new.html.erb +3 -1
- data/app/views/decidim/manifests/show.json.erb +1 -1
- data/app/views/decidim/messaging/conversations/create.js.erb +1 -1
- data/app/views/decidim/notifications_digest_mailer/_email_content.html.erb +7 -0
- data/app/views/decidim/notifications_settings/show.html.erb +6 -6
- data/app/views/decidim/offline/show.html.erb +15 -9
- data/app/views/decidim/pages/_tabbed.html.erb +2 -2
- data/app/views/decidim/searches/_filters.html.erb +2 -2
- data/app/views/decidim/shared/_filters.html.erb +2 -2
- data/app/views/decidim/shared/_orders.html.erb +2 -2
- data/app/views/decidim/shared/filters/_collection.html.erb +5 -3
- data/app/views/decidim/shared/filters/_dropdown_label.html.erb +21 -19
- data/app/views/layouts/decidim/_head.html.erb +1 -0
- data/app/views/layouts/decidim/_js_configuration.html.erb +3 -1
- data/app/views/layouts/decidim/_wrapper.html.erb +1 -1
- data/app/views/layouts/decidim/footer/_main_links.html.erb +3 -1
- data/app/views/layouts/decidim/footer/_main_social_media_links.html.erb +5 -5
- data/app/views/layouts/decidim/footer/_mini.html.erb +2 -2
- data/app/views/layouts/decidim/header/_main_links_desktop.html.erb +4 -2
- data/app/views/layouts/decidim/header/_menu_breadcrumb_items.html.erb +2 -0
- data/app/views/layouts/decidim/header/_menu_breadcrumb_mobile_tablet.html.erb +1 -1
- data/app/views/layouts/decidim/shared/_layout_user_profile.html.erb +2 -2
- data/config/assets.rb +1 -0
- data/config/locales/ar.yml +60 -8
- data/config/locales/bg.yml +909 -2
- data/config/locales/ca.yml +31 -24
- data/config/locales/cs.yml +7 -3
- data/config/locales/de.yml +37 -30
- data/config/locales/el.yml +11 -7
- data/config/locales/en.yml +10 -3
- data/config/locales/es-MX.yml +17 -10
- data/config/locales/es-PY.yml +17 -10
- data/config/locales/es.yml +59 -52
- data/config/locales/eu.yml +26 -10
- data/config/locales/fi-plain.yml +11 -4
- data/config/locales/fi.yml +14 -7
- data/config/locales/fr-CA.yml +14 -7
- data/config/locales/fr.yml +14 -7
- data/config/locales/ga-IE.yml +9 -0
- data/config/locales/gl.yml +5 -2
- data/config/locales/he-IL.yml +1 -0
- data/config/locales/hu.yml +264 -8
- data/config/locales/id-ID.yml +0 -2
- data/config/locales/it.yml +9 -6
- data/config/locales/ja.yml +14 -7
- data/config/locales/kaa.yml +5 -0
- data/config/locales/lb.yml +9 -6
- data/config/locales/lt.yml +8 -12
- data/config/locales/lv.yml +8 -3
- data/config/locales/nl.yml +8 -3
- data/config/locales/no.yml +9 -6
- data/config/locales/pl.yml +616 -2
- data/config/locales/pt-BR.yml +202 -19
- data/config/locales/pt.yml +9 -6
- data/config/locales/ro-RO.yml +10 -5
- data/config/locales/ru.yml +15 -2
- data/config/locales/sk.yml +8 -3
- data/config/locales/sl.yml +8 -0
- data/config/locales/sv.yml +32 -6
- data/config/locales/tr-TR.yml +24 -9
- data/config/locales/uk.yml +22 -2
- data/config/locales/zh-CN.yml +0 -6
- data/config/locales/zh-TW.yml +10 -11
- data/decidim-core.gemspec +90 -0
- data/lib/decidim/asset_router/storage.rb +2 -0
- data/lib/decidim/attribute_encryptor.rb +6 -4
- data/lib/decidim/attributes/time_with_zone.rb +1 -1
- data/lib/decidim/core/engine.rb +7 -6
- data/lib/decidim/core/seeds.rb +37 -33
- data/lib/decidim/core/test/factories.rb +296 -89
- data/lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb +6 -26
- data/lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb +8 -26
- data/lib/decidim/core/test/shared_examples/comments_examples.rb +76 -6
- data/lib/decidim/core/test/shared_examples/has_attachment_collections.rb +8 -6
- data/lib/decidim/core/test/shared_examples/has_attachments.rb +8 -8
- data/lib/decidim/core/test/shared_examples/has_category.rb +27 -0
- data/lib/decidim/core/test/shared_examples/has_reference.rb +1 -1
- data/lib/decidim/core/test/shared_examples/has_space_in_mcell_examples.rb +1 -1
- data/lib/decidim/core/test/shared_examples/logo_email.rb +2 -2
- data/lib/decidim/core/test/shared_examples/map_examples.rb +3 -0
- data/lib/decidim/core/test/shared_examples/resource_endorsed_event_examples.rb +5 -2
- data/lib/decidim/core/test/shared_examples/resource_locator_presenter_examples.rb +134 -0
- data/lib/decidim/core/test/shared_examples/simple_event.rb +18 -2
- data/lib/decidim/core/test.rb +1 -0
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/core.rb +7 -1
- data/lib/decidim/engine_router.rb +17 -4
- data/lib/decidim/events/base_event.rb +7 -3
- data/lib/decidim/events/simple_event.rb +3 -17
- data/lib/decidim/form_builder.rb +8 -2
- data/lib/decidim/has_category.rb +1 -1
- data/lib/decidim/has_conversations.rb +91 -0
- data/lib/decidim/organization_settings.rb +10 -2
- data/lib/decidim/participable.rb +17 -0
- data/lib/decidim/upgrade/wysiwyg_migrator.rb +7 -0
- data/lib/decidim/view_model.rb +1 -0
- data/lib/decidim/webpacker/webpack/.modernizrrc +9 -0
- data/lib/premailer/adapter/decidim.rb +5 -4
- data/lib/tasks/decidim_reminders_tasks.rake +1 -0
- data/lib/tasks/upgrade/decidim_fix_categorization.rake +15 -0
- metadata +26 -27
- data/app/views/decidim/searches/index.js.erb +0 -7
- data/config/brakeman.ignore +0 -37
- data/config/environment.rb +0 -3
data/config/locales/ca.yml
CHANGED
@@ -80,7 +80,7 @@ ca:
|
|
80
80
|
'true': 'Sí'
|
81
81
|
carrierwave:
|
82
82
|
errors:
|
83
|
-
file_cannot_be_processed: No s'ha pogut
|
83
|
+
file_cannot_be_processed: No s'ha pogut processar el fitxer
|
84
84
|
file_resolution_too_large: La resolució de l'arxiu és massa gran
|
85
85
|
file_size_too_large: La mida del fitxer és massa gran
|
86
86
|
not_inside_organization: L'arxiu no està relacionat amb cap organització
|
@@ -144,6 +144,7 @@ ca:
|
|
144
144
|
external_link: Enllaç extern
|
145
145
|
front_page_link: Anar a la pàgina principal
|
146
146
|
logo: "Logo oficial de %{organization}"
|
147
|
+
opens_in_new_tab: Obrir en una pestanya nova
|
147
148
|
skip_button: Vés al contingut principal
|
148
149
|
account:
|
149
150
|
blocked: Aquest compte ha estat bloquejat degut a una violació dels termes i condicions d'ús
|
@@ -278,7 +279,7 @@ ca:
|
|
278
279
|
user_moderation:
|
279
280
|
unreport: "%{user_name} ha desfet el report %{resource_type} - %{unreported_user_name}"
|
280
281
|
admin_terms_of_service:
|
281
|
-
default_body: "<h2>TERMES I CONDICIONS D'ÚS DEL SERVEI D'ADMINISTRACIÓ</h2><p>Donem per fet que has rebut l'habitual explicació per part del Servei d'Administració general de la plataforma. En general es redueix a aquestes tres coses:</p><ol><li>Respecta la privadesa d'altri.</li><li>Pensa abans de fer clic.</li><li>A un gran poder
|
282
|
+
default_body: "<h2>TERMES I CONDICIONS D'ÚS DEL SERVEI D'ADMINISTRACIÓ</h2><p>Donem per fet que has rebut l'habitual explicació per part del Servei d'Administració general de la plataforma. En general es redueix a aquestes tres coses:</p><ol><li>Respecta la privadesa d'altri.</li><li>Pensa abans de fer clic.</li><li>A un gran poder li correspon gran responsabilitat.</li></ol>"
|
282
283
|
alert:
|
283
284
|
dismiss: Descartar notificació
|
284
285
|
amendments:
|
@@ -512,7 +513,7 @@ ca:
|
|
512
513
|
global_menu:
|
513
514
|
name: Menú global
|
514
515
|
hero:
|
515
|
-
name: Imatge
|
516
|
+
name: Imatge principal i botó d'acció
|
516
517
|
hero_settings_form:
|
517
518
|
background_image: Imatge de fons
|
518
519
|
welcome_text: Text de benvinguda
|
@@ -689,29 +690,29 @@ ca:
|
|
689
690
|
amendment_accepted:
|
690
691
|
affected_user:
|
691
692
|
email_intro: 'S''ha acceptat una esmena per %{amendable_title}. Pots veure-ho des d''aquesta pàgina:'
|
692
|
-
email_outro: Has rebut aquesta notificació perquè
|
693
|
+
email_outro: Has rebut aquesta notificació perquè s'ha acceptat una esmena presentada a l'apartat "%{amendable_title}" que administres.
|
693
694
|
email_subject: Esmena acceptada per %{amendable_title} a %{emendation_author_nickname}
|
694
695
|
notification_title: L'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> ha estat acceptada per <a href="%{amendable_path}">%{amendable_title}</a>.
|
695
696
|
follower:
|
696
697
|
email_intro: 'S''ha acceptat una esmena per %{amendable_title}. Pots veure-ho en aquesta pàgina:'
|
697
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint %{amendable_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
698
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'esmena "%{amendable_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
698
699
|
email_subject: Esmena acceptada per %{amendable_title} de %{emendation_author_nickname}
|
699
700
|
notification_title: L'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> ha estat acceptada per <a href="%{amendable_path}">%{amendable_title}</a>.
|
700
701
|
amendment_created:
|
701
702
|
affected_user:
|
702
703
|
email_intro: 'S''ha creat una nova esmena per a %{amendable_title}. La pots veure des d''aquesta pàgina:'
|
703
|
-
email_outro: Has rebut aquesta notificació perquè
|
704
|
+
email_outro: Has rebut aquesta notificació perquè s'ha presentat una esmena a l'apartat "%{amendable_title}" que administres.
|
704
705
|
email_subject: Nova esmena per a %{amendable_title}
|
705
706
|
notification_title: S'ha creat una nova esmena per a <a href="%{amendable_path}">%{amendable_title}</a>.
|
706
707
|
follower:
|
707
708
|
email_intro: 'S''ha creat una nova esmena per a %{amendable_title}. La pots veure des d''aquesta pàgina:'
|
708
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint %{amendable_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
709
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'esmena "%{amendable_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
709
710
|
email_subject: Nova esmena per a %{amendable_title}
|
710
711
|
notification_title: S'ha creat una nova esmena per a <a href="%{amendable_path}">%{amendable_title}</a>.
|
711
712
|
amendment_promoted:
|
712
713
|
affected_user:
|
713
714
|
email_intro: 'Una esmena rebutjada per %{amendable_title} ha estat publicada com una nova %{amendable_type}. La pots veure des d''aquesta pàgina:'
|
714
|
-
email_outro: Has rebut aquesta notificació perquè
|
715
|
+
email_outro: Has rebut aquesta notificació perquè s'ha promogut una esmena a l'apartat "%{amendable_title}" que administres.
|
715
716
|
email_subject: Una nova esmena feta per %{emendation_author_nickname} s'ha publicat com a nova %{amendable_type}
|
716
717
|
notification_title: Una <a href="%{emendation_path}">esmena rebutjada</a> per <a href="%{amendable_path}">%{amendable_title}</a> ha estat publicada com un nou %{amendable_type} per <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
717
718
|
follower:
|
@@ -722,7 +723,7 @@ ca:
|
|
722
723
|
amendment_rejected:
|
723
724
|
affected_user:
|
724
725
|
email_intro: 'Una esmena s''ha rebutjat per %{amendable_title}. La pots veure des d''aquesta pàgina:'
|
725
|
-
email_outro: Has rebut aquesta notificació perquè
|
726
|
+
email_outro: Has rebut aquesta notificació perquè s'ha rebutjat una esmena a l'apartat "%{amendable_title}" que administres.
|
726
727
|
email_subject: Esmena rebutjada per %{amendable_title} a %{emendation_author_nickname}
|
727
728
|
notification_title: L'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> ha estat rebutjada per <a href="%{amendable_path}">%{amendable_title}</a>.
|
728
729
|
follower:
|
@@ -733,13 +734,13 @@ ca:
|
|
733
734
|
attachments:
|
734
735
|
attachment_created:
|
735
736
|
email_intro: 'S''ha afegit un nou document a %{resource_title}. Pots veure''l des d''aquesta pàgina:'
|
736
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint %{resource_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
737
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint "%{resource_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
737
738
|
email_subject: S'ha produït una actualització per a %{resource_title}
|
738
739
|
notification_title: S'ha afegit un <a href="%{resource_path}"> nou document</a> a <a href="%{attached_to_url}">%{resource_title}</a>
|
739
740
|
components:
|
740
741
|
component_published:
|
741
742
|
email_intro: 'Ja està actiu el component %{resource_title} per %{participatory_space_title}. Pots veure''l des d''aquesta pàgina:'
|
742
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint %{participatory_space_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
743
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{participatory_space_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
743
744
|
email_subject: Una actualització a %{participatory_space_title}
|
744
745
|
notification_title: Ja està actiu el component %{resource_title} per <a href="%{resource_path}">%{participatory_space_title}</a>
|
745
746
|
email_event:
|
@@ -771,17 +772,17 @@ ca:
|
|
771
772
|
notification_title: T'han convidat a unir-te al grup <a href="%{resource_path}">%{user_group_name}</a>. Comprova els <a href="%{groups_profile_tab_path}">grups de la pàgina</a> en el teu perfil per acceptar la invitació!
|
772
773
|
join_request_accepted:
|
773
774
|
email_intro: Felicitats! Una administradora del grup <a href="%{resource_url}">%{user_group_name}</a> ha acceptat la teva sol·licitud per unir-te.
|
774
|
-
email_outro: Has rebut aquesta notificació perquè s'ha actualitzat la teva sol·licitud per a formar
|
775
|
+
email_outro: Has rebut aquesta notificació perquè s'ha actualitzat la teva sol·licitud per a formar part del grup.
|
775
776
|
email_subject: La teva sol·licitud per a unir-te al grup %{user_group_name} ha estat acceptada!
|
776
777
|
notification_title: Has estat acceptada al grup <a href="%{resource_path}">%{user_group_name}</a>.
|
777
778
|
join_request_created:
|
778
779
|
email_intro: Algú ha sol·licitat unir-se al grup %{user_group_name}. Pots acceptar-la o rebutjar-la des de <a href="%{resource_url}"> la pàgina de membres</a>.
|
779
|
-
email_outro: Has rebut aquesta notificació perquè
|
780
|
+
email_outro: Has rebut aquesta notificació perquè administres el grup "%{user_group_name}".
|
780
781
|
email_subject: Algú ha sol·licitat unir-se al grup %{user_group_name}!
|
781
782
|
notification_title: Algú ha sol·licitat unir-se al grup %{user_group_name}. Pots acceptar o rebutjar la sol·licitud des de <a href="%{resource_path}">els membres del grup de la pàgina</a>.
|
782
783
|
join_request_rejected:
|
783
784
|
email_intro: Una administradora del grup <a href="%{resource_url}">%{user_group_name}</a> ha rebutjat la teva sol·licitud per unir-te.
|
784
|
-
email_outro: Has rebut aquesta notificació perquè la teva sol·licitud d'incorporació s'ha actualitzat.
|
785
|
+
email_outro: Has rebut aquesta notificació perquè la teva sol·licitud d'incorporació al grup s'ha actualitzat.
|
785
786
|
email_subject: La teva sol·licitud per unir-te al grup %{user_group_name} ha estat rebutjada!
|
786
787
|
notification_title: La teva sol·licitud per unir-te al grup <a href="%{resource_path}">%{user_group_name}</a> ha estat rebutjada.
|
787
788
|
promoted_to_admin:
|
@@ -801,7 +802,7 @@ ca:
|
|
801
802
|
notification_title: S'ha creat el grup d'usuàries %{user_group_name}. Ara pots verificar-ho al <a href="%{groups_admin_path}">taulell d'administració</a>.
|
802
803
|
user_group_updated:
|
803
804
|
email_intro: El grup d'usuàries %{user_group_name} ha actualitzat el seu perfil perdent-ne la verificació. Pots tornar a verificar-lo a través del <a href="%{groups_admin_url}"> taulell d'administració</a>.
|
804
|
-
email_outro: Has rebut aquesta notificació perquè
|
805
|
+
email_outro: Has rebut aquesta notificació perquè admnistres la plataforma.
|
805
806
|
email_subject: Un grup d'usuàries ha actualitzat el seu perfil
|
806
807
|
notification_title: El grup d'usuàries %{user_group_name} ha actualitzat el seu perfil perdent-ne la verificació. Pots tornar a verificar-lo a través del <a href="%{groups_admin_path}"> taulell d'administració</a>.
|
807
808
|
nickname_event:
|
@@ -811,25 +812,25 @@ ca:
|
|
811
812
|
reports:
|
812
813
|
resource_hidden:
|
813
814
|
email_intro: Una administradora ha eliminat el teu %{resource_type} degut a que has estat reportada com a %{report_reasons}.
|
814
|
-
email_outro: Has rebut aquesta notificació perquè
|
815
|
+
email_outro: Has rebut aquesta notificació perquè s'ha eliminiat un contingut que havies creat.
|
815
816
|
email_subject: S'ha eliminat el/la teu/teva %{resource_type}
|
816
817
|
notification_title: |-
|
817
818
|
Una administradora ha eliminat el teu %{resource_type} degut a que has estat reportada com a %{report_reasons}..</br>
|
818
819
|
<i>%{resource_content}</i>
|
819
820
|
resource_endorsed:
|
820
821
|
email_intro: '%{endorser_name} %{endorser_nickname}, a qui segueixes, acaba d''adherir-se a "%{resource_title}" que et pot resultar interessant, revisa-la i contribueix:'
|
821
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint a %{endorser_nickname}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
822
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint a "%{endorser_nickname}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
822
823
|
email_subject: "%{endorser_nickname} s'ha adherit a una proposta"
|
823
824
|
notification_title: <a href="%{endorser_path}">%{endorser_name} %{endorser_nickname}</a> s'ha adherit a <a href="%{resource_path}">%{resource_title}</a> (%{resource_type}).
|
824
825
|
users:
|
825
826
|
profile_updated:
|
826
827
|
email_intro: La pàgina <a href="%{resource_url}"> de perfil </a> de %{name} (%{nickname}), a qui estàs seguint, s'ha actualitzat.
|
827
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint a %{nickname}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
828
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint a "%{nickname}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
828
829
|
email_subject: "%{nickname} ha actualitzat el seu perfil"
|
829
830
|
notification_title: El <a href="%{resource_path}"> perfi l</a> de %{name} (%{nickname}), a qui estàs seguint, s'ha actualitzat.
|
830
831
|
user_officialized:
|
831
832
|
email_intro: La participant %{name} (%{nickname}) ha estat oficialitzada.
|
832
|
-
email_outro: Has rebut aquesta notificació perquè
|
833
|
+
email_outro: Has rebut aquesta notificació perquè administres la plataforma.
|
833
834
|
email_subject: "S'ha oficialitzat a %{name}"
|
834
835
|
notification_title: La participant %{name} (%{nickname}) ha estat oficialitzada.
|
835
836
|
export_mailer:
|
@@ -912,6 +913,7 @@ ca:
|
|
912
913
|
filename: Nom del fitxer
|
913
914
|
remove: Eliminar
|
914
915
|
replace: Reemplaçar
|
916
|
+
save: Desar
|
915
917
|
title: Títol
|
916
918
|
title_required: Un títol és necessari!
|
917
919
|
uploaded: Pujat
|
@@ -1091,13 +1093,13 @@ ca:
|
|
1091
1093
|
messaging:
|
1092
1094
|
conversation_mailer:
|
1093
1095
|
comanagers_new_conversation:
|
1094
|
-
admin_in_group: Reps aquesta notificació perquè
|
1096
|
+
admin_in_group: Reps aquesta notificació perquè administres el grup "%{group}".
|
1095
1097
|
greeting: Hola, %{recipient}!
|
1096
1098
|
intro: "%{manager} ha iniciat una nova conversa en nom de %{group}. Fes clic aquí per veure-la:"
|
1097
1099
|
outro: Gaudeix de la plataforma!
|
1098
1100
|
subject: "%{manager} ha iniciat una nova conversa com a %{group}"
|
1099
1101
|
comanagers_new_message:
|
1100
|
-
admin_in_group: Reps aquesta notificació perquè
|
1102
|
+
admin_in_group: Reps aquesta notificació perquè administres el grup "%{group}".
|
1101
1103
|
greeting: Hola, %{recipient}!
|
1102
1104
|
intro: "%{manager} ha publicat nous missatge a una conversa en nom de %{group}. Fes clic aquí per veure-la:"
|
1103
1105
|
outro: Gaudeix de la plataforma!
|
@@ -1108,13 +1110,13 @@ ca:
|
|
1108
1110
|
outro: Gaudeix de la plataforma!
|
1109
1111
|
subject: "%{sender} ha iniciat una conversa amb tu"
|
1110
1112
|
new_group_conversation:
|
1111
|
-
admin_in_group: Reps aquesta notificació perquè
|
1113
|
+
admin_in_group: Reps aquesta notificació perquè administres el grup "%{group}".
|
1112
1114
|
greeting: Hola, %{recipient}!
|
1113
1115
|
intro: "%{sender} ha iniciat una nova conversa amb el %{group}. Fes clic aquí per veure-la:"
|
1114
1116
|
outro: Gaudeix de la plataforma!
|
1115
1117
|
subject: "%{sender} ha iniciat una nova conversa amb %{group}"
|
1116
1118
|
new_group_message:
|
1117
|
-
admin_in_group: Reps aquesta notificació perquè
|
1119
|
+
admin_in_group: Reps aquesta notificació perquè administres el grup "%{group}".
|
1118
1120
|
greeting: Hola, %{recipient}!
|
1119
1121
|
intro: "%{sender} ha publicat nous missatge a una conversa amb el grup %{group}. Fes clic aquí per veure-la:"
|
1120
1122
|
outro: Gaudeix de la plataforma!
|
@@ -1234,6 +1236,7 @@ ca:
|
|
1234
1236
|
no_notifications: Encara no hi ha notificacions.
|
1235
1237
|
show:
|
1236
1238
|
missing_event: Vaja, aquesta notificació pertany a un element que ja no està disponible. Pots descartar-la.
|
1239
|
+
moderated: Contingut moderat
|
1237
1240
|
notifications_digest_mailer:
|
1238
1241
|
header:
|
1239
1242
|
daily: Resum diari de notificacions
|
@@ -1274,7 +1277,8 @@ ca:
|
|
1274
1277
|
offline:
|
1275
1278
|
name: Sense connexió
|
1276
1279
|
show:
|
1277
|
-
|
1280
|
+
message_1: Sembla que no tens connexió a Internet.
|
1281
|
+
message_2: Si us plau, torneu-ho a provar més tard.
|
1278
1282
|
retry: Torna-ho a provar
|
1279
1283
|
open_data:
|
1280
1284
|
not_available_yet: Els fitxers Open Data encara no estan disponibles, torna-ho a provar d'aquí a uns minuts.
|
@@ -1453,6 +1457,8 @@ ca:
|
|
1453
1457
|
close_modal: Tancar el modal
|
1454
1458
|
ok: D'acord
|
1455
1459
|
title: Confirmar
|
1460
|
+
embed:
|
1461
|
+
title: Contingut del vídeo incrustat
|
1456
1462
|
extended_navigation_bar:
|
1457
1463
|
more: Més
|
1458
1464
|
unfold: Desplegar
|
@@ -2038,6 +2044,7 @@ ca:
|
|
2038
2044
|
long_with_particles: "%d %B, de %Y a les %H:%M"
|
2039
2045
|
short: "%d/%m/%Y %H:%M"
|
2040
2046
|
time_of_day: "%H:%M"
|
2047
|
+
tooltip: "%d-%m-%Y %H:%M %p %Z (GMT %:z)"
|
2041
2048
|
versions:
|
2042
2049
|
directions:
|
2043
2050
|
left: Esborrats
|
data/config/locales/cs.yml
CHANGED
@@ -170,6 +170,7 @@ cs:
|
|
170
170
|
external_link: Externí odkaz
|
171
171
|
front_page_link: Přejít na titulní stránku
|
172
172
|
logo: "Oficiální logo %{organization}"
|
173
|
+
opens_in_new_tab: Otevře se v nové kartě
|
173
174
|
skip_button: Přeskočit na hlavní obsah
|
174
175
|
account:
|
175
176
|
blocked: Tento účet byl zablokován kvůli porušení smluvních podmínek
|
@@ -387,7 +388,6 @@ cs:
|
|
387
388
|
'1': Vytvořte svůj pozměňovací návrh
|
388
389
|
'2': Porovnejte váš pozměňovací návrh
|
389
390
|
'3': Dokončete váš pozměňovací návrh
|
390
|
-
'4': Zveřejněte svůj pozměňovací návrh
|
391
391
|
anonymous_user: Anonymní
|
392
392
|
application:
|
393
393
|
document:
|
@@ -549,7 +549,7 @@ cs:
|
|
549
549
|
global_menu:
|
550
550
|
name: Globální menu
|
551
551
|
hero:
|
552
|
-
name:
|
552
|
+
name: Obrázek hrdiny a CTA
|
553
553
|
hero_settings_form:
|
554
554
|
background_image: Obrázek pozadí
|
555
555
|
welcome_text: Uvítací text
|
@@ -955,6 +955,7 @@ cs:
|
|
955
955
|
filename: Název souboru
|
956
956
|
remove: Odebrat
|
957
957
|
replace: Nahradit
|
958
|
+
save: Uložit
|
958
959
|
title: Název
|
959
960
|
title_required: Název je povinný!
|
960
961
|
uploaded: Nahráno
|
@@ -1317,7 +1318,8 @@ cs:
|
|
1317
1318
|
offline:
|
1318
1319
|
name: Offline
|
1319
1320
|
show:
|
1320
|
-
|
1321
|
+
message_1: Vypadá to, že jste v režimu offline.
|
1322
|
+
message_2: Prosím, zkuste to znovu později.
|
1321
1323
|
retry: Zkusit znovu
|
1322
1324
|
open_data:
|
1323
1325
|
not_available_yet: Soubory Open Data nejsou dosud k dispozici. Zkuste to prosím znovu za pár minut.
|
@@ -1496,6 +1498,8 @@ cs:
|
|
1496
1498
|
close_modal: Zavřít okno
|
1497
1499
|
ok: OK
|
1498
1500
|
title: Potvrdit
|
1501
|
+
embed:
|
1502
|
+
title: Vložený obsah videa
|
1499
1503
|
extended_navigation_bar:
|
1500
1504
|
more: Více
|
1501
1505
|
unfold: Rozvinout
|
data/config/locales/de.yml
CHANGED
@@ -81,9 +81,9 @@ de:
|
|
81
81
|
carrierwave:
|
82
82
|
errors:
|
83
83
|
file_cannot_be_processed: Datei konnte nicht verarbeitet werden
|
84
|
-
file_resolution_too_large: Die Datei-Auflösung ist zu
|
84
|
+
file_resolution_too_large: Die Datei-Auflösung ist zu gross
|
85
85
|
file_size_too_large: Datei ist zu groß
|
86
|
-
not_inside_organization: Die Datei ist keiner Organisation
|
86
|
+
not_inside_organization: Die Datei ist keiner Organisation angefügt.
|
87
87
|
date:
|
88
88
|
formats:
|
89
89
|
decidim_short: "%d/%m/%Y"
|
@@ -144,6 +144,7 @@ de:
|
|
144
144
|
external_link: Externer Link
|
145
145
|
front_page_link: Zur Startseite gehen
|
146
146
|
logo: "Offizielles Logo von %{organization}"
|
147
|
+
opens_in_new_tab: In neuem Tab öffnen
|
147
148
|
skip_button: Zu Hauptinhalten überspringen
|
148
149
|
account:
|
149
150
|
blocked: Dieses Konto wurde wegen Verletzung der Nutzungsbedingungen gesperrt
|
@@ -359,7 +360,7 @@ de:
|
|
359
360
|
'1': Erstellen Sie Ihre Änderung
|
360
361
|
'2': Vergleichen Sie Ihren Änderungsvorschlag
|
361
362
|
'3': Vervollständigen Sie Ihren Änderungsvorschlag
|
362
|
-
'4':
|
363
|
+
'4': Änderung veröffentlichen
|
363
364
|
anonymous_user: Anonym
|
364
365
|
application:
|
365
366
|
document:
|
@@ -511,11 +512,11 @@ de:
|
|
511
512
|
button_url: URL des Call to Action
|
512
513
|
description: Beschreibung
|
513
514
|
footer_sub_hero:
|
514
|
-
name:
|
515
|
+
name: Abschnitt mit Plattformslogan
|
515
516
|
global_menu:
|
516
517
|
name: Globales Menü
|
517
518
|
hero:
|
518
|
-
name:
|
519
|
+
name: Banner-Bild und Handlungsaufforderung
|
519
520
|
hero_settings_form:
|
520
521
|
background_image: Hintergrundbild
|
521
522
|
welcome_text: Willkommenstext
|
@@ -566,7 +567,7 @@ de:
|
|
566
567
|
stats:
|
567
568
|
name: Organisationsstatistiken
|
568
569
|
sub_hero:
|
569
|
-
name:
|
570
|
+
name: Banner unter dem Hauptbild (Beschreibungstext)
|
570
571
|
core:
|
571
572
|
actions:
|
572
573
|
login_before_access: Bitte melden Sie sich mit Ihrem Konto an, um auf diese Seite zuzugreifen.
|
@@ -901,7 +902,7 @@ de:
|
|
901
902
|
message_1: Vorzugsweise ein Querformat ohne Text.
|
902
903
|
message_2: Der Dienst schneidet die Datei zu.
|
903
904
|
file_validation:
|
904
|
-
allowed_file_extensions: 'Erlaubte
|
905
|
+
allowed_file_extensions: 'Erlaubte Dateiformate: %{extensions}'
|
905
906
|
max_file_dimension: 'Maximale Dateigröße: %{resolution} Pixel'
|
906
907
|
max_file_size: 'Maximale Dateigröße: %{megabytes}MB'
|
907
908
|
files:
|
@@ -917,6 +918,7 @@ de:
|
|
917
918
|
filename: Dateiname
|
918
919
|
remove: Entfernen
|
919
920
|
replace: Ersetzen
|
921
|
+
save: Speichern
|
920
922
|
title: Titel
|
921
923
|
title_required: Titel ist erforderlich!
|
922
924
|
uploaded: Hochgeladen
|
@@ -1239,6 +1241,7 @@ de:
|
|
1239
1241
|
no_notifications: Noch keine Benachrichtigungen
|
1240
1242
|
show:
|
1241
1243
|
missing_event: Hoppla, diese Benachrichtigung gehört zu einem Artikel, der nicht mehr verfügbar ist. Du kannst sie verwerfen.
|
1244
|
+
moderated: Inhalt moderiert
|
1242
1245
|
notifications_digest_mailer:
|
1243
1246
|
header:
|
1244
1247
|
daily: Tägliche Zusammenfassung
|
@@ -1279,7 +1282,8 @@ de:
|
|
1279
1282
|
offline:
|
1280
1283
|
name: Offline
|
1281
1284
|
show:
|
1282
|
-
|
1285
|
+
message_1: Es sieht so aus, als ob Sie momentan offline sind.
|
1286
|
+
message_2: Bitte später erneut versuchen.
|
1283
1287
|
retry: Wiederholen
|
1284
1288
|
open_data:
|
1285
1289
|
not_available_yet: Die Open Data-Dateien sind noch nicht verfügbar. Bitte versuchen Sie es in einigen Minuten erneut.
|
@@ -1307,7 +1311,7 @@ de:
|
|
1307
1311
|
participate_title: Beteiligen Sie sich an den Prozessen auf dieser Plattform
|
1308
1312
|
welcome: Willkommen bei %{organization}!
|
1309
1313
|
statistics:
|
1310
|
-
headline: Aktueller
|
1314
|
+
headline: Aktueller Status von %{organization}
|
1311
1315
|
sub_hero:
|
1312
1316
|
register: Registrieren
|
1313
1317
|
register_title: Registrieren Sie sich um ein Konto anzulegen
|
@@ -1458,6 +1462,8 @@ de:
|
|
1458
1462
|
close_modal: Fenster schließen
|
1459
1463
|
ok: Ok
|
1460
1464
|
title: Bestätigen
|
1465
|
+
embed:
|
1466
|
+
title: Eingebetteter Videoinhalt
|
1461
1467
|
extended_navigation_bar:
|
1462
1468
|
more: Mehr
|
1463
1469
|
unfold: Entfalten
|
@@ -1467,15 +1473,15 @@ de:
|
|
1467
1473
|
flag_modal:
|
1468
1474
|
already_reported: Dieser Inhalt wurde bereits gemeldet und wird von einem Administrator überprüft.
|
1469
1475
|
close: Schließen
|
1470
|
-
description:
|
1476
|
+
description: Wieso ist dieser Inhalt problematisch / unangemessen?
|
1471
1477
|
does_not_belong: Enthält illegale Aktivitäten, Selbstmorddrohungen, persönliche Informationen oder etwas anderes, von dem Sie denken, dass es nicht auf %{organization_name} gehört.
|
1472
1478
|
hide: Verbergen
|
1473
1479
|
hide_content: Diesen Inhalt verbergen
|
1474
1480
|
offensive: Enthält Rassismus, Sexismus, Verunglimpfungen, persönliche Angriffe, Morddrohungen, Selbstmordanträge oder jede Form von Hassreden.
|
1475
1481
|
reason: Begründung
|
1476
|
-
report:
|
1482
|
+
report: Meldung erfassen
|
1477
1483
|
spam: Enthält Clickbait, Werbung, Scams oder Script Bots.
|
1478
|
-
title:
|
1484
|
+
title: Unangemessenen Inhalt melden
|
1479
1485
|
flag_user_modal:
|
1480
1486
|
already_reported: Dieser Inhalt wurde bereits gemeldet und wird von einem Administrator überprüft.
|
1481
1487
|
block: Diesen Teilnehmer blockieren
|
@@ -1638,27 +1644,27 @@ de:
|
|
1638
1644
|
updated_not_active: Ihr Passwort wurde erfolgreich vergeben.
|
1639
1645
|
mailer:
|
1640
1646
|
confirmation_instructions:
|
1641
|
-
action:
|
1647
|
+
action: Konto bestätigen
|
1642
1648
|
greeting: Willkommen %{recipient}!
|
1643
|
-
instruction: 'Sie
|
1644
|
-
subject:
|
1649
|
+
instruction: 'Bitte bestätigen Sie Ihre E-Mail-Adresse über den folgenden Link:'
|
1650
|
+
subject: E-Mail bestätigen
|
1645
1651
|
email_changed:
|
1646
1652
|
greeting: Hallo %{recipient}!
|
1647
|
-
message:
|
1653
|
+
message: Ihre E-Mail-Adresse wurde zu %{email} geändert.
|
1648
1654
|
subject: E-Mail geändert
|
1649
1655
|
invitation_instructions:
|
1650
|
-
accept:
|
1651
|
-
accept_until: Diese Einladung
|
1656
|
+
accept: Einladung annehmen
|
1657
|
+
accept_until: Diese Einladung ist bis %{due_date} gültig.
|
1652
1658
|
decline: Einladung ablehnen
|
1653
1659
|
hello: Hallo %{email},
|
1654
1660
|
ignore: |-
|
1655
1661
|
Wenn Sie die Einladung nicht annehmen möchten, ignorieren Sie diese E-Mail.<br />
|
1656
|
-
Ihr Konto wird erst erstellt, wenn Sie auf den
|
1662
|
+
Ihr Konto wird erst erstellt, wenn Sie auf den angegebenen Link zugreifen und Ihren Kontonamen und Ihr Passwort festlegen.
|
1657
1663
|
invited_you_as_admin: "%{invited_by} hat Sie als Admin von %{application} eingeladen. Sie können die Einladung über den folgenden Link akzeptieren."
|
1658
|
-
invited_you_as_private_user: "%{invited_by} hat Sie als privaten
|
1664
|
+
invited_you_as_private_user: "%{invited_by} hat Sie als privaten Teilnehmenden zu %{application} eingeladen. Sie können die Einladung über den folgenden Link akzeptieren."
|
1659
1665
|
someone_invited_you: Jemand hat Sie zu %{application} eingeladen. Sie können die EInladung über den folgenden Link akzeptieren.
|
1660
1666
|
someone_invited_you_as_admin: Jemand hat Sie als Admin zu %{application} eingeladen. Sie können die Einladung über den folgenden Link akzeptieren.
|
1661
|
-
someone_invited_you_as_private_user: Jemand hat Sie als
|
1667
|
+
someone_invited_you_as_private_user: Jemand hat Sie als privaten Teilnehmenden zu %{application} eingeladen. Sie können die Einladung über den folgenden Link akzeptieren.
|
1662
1668
|
subject: Anweisungen zur Einladung
|
1663
1669
|
invite_admin:
|
1664
1670
|
subject: Sie wurden eingeladen %{organization} zu verwalten
|
@@ -1670,21 +1676,21 @@ de:
|
|
1670
1676
|
subject: Sie wurden eingeladen %{organization} zu verwalten
|
1671
1677
|
password_change:
|
1672
1678
|
greeting: Hallo %{recipient}!
|
1673
|
-
message:
|
1679
|
+
message: Ihr Passwort wurde erfolgreich geändert.
|
1674
1680
|
subject: Passwort geändert
|
1675
1681
|
reset_password_instructions:
|
1676
|
-
action:
|
1682
|
+
action: Mein Passwort ändern
|
1677
1683
|
greeting: Hallo %{recipient}!
|
1678
|
-
instruction: Jemand hat einen Link angefordert, um Ihr Passwort zu ändern
|
1679
|
-
instruction_2: Wenn Sie dies nicht angefordert haben,
|
1680
|
-
instruction_3: Ihr Passwort ändert sich erst, wenn Sie auf den
|
1681
|
-
subject: Passwort
|
1684
|
+
instruction: 'Jemand hat einen Link angefordert, um Ihr Passwort zu ändern. Falls Sie das selbst waren, folgen Sie diesem Link:'
|
1685
|
+
instruction_2: Wenn Sie dies nicht angefordert haben, können Sie diese E-Mail ignorieren.
|
1686
|
+
instruction_3: Ihr Passwort ändert sich erst, wenn Sie auf den angezeigten Link zugreifen und ein neues Passwort erstellen.
|
1687
|
+
subject: Passwort zurücksetzen
|
1682
1688
|
unlock_instructions:
|
1683
|
-
action:
|
1689
|
+
action: Mein Konto entsperren
|
1684
1690
|
greeting: Hallo %{recipient}!
|
1685
1691
|
instruction: 'Klicken Sie auf den folgenden Link, um Ihr Konto zu entsperren:'
|
1686
1692
|
message: Ihr Konto wurde aufgrund einer übermäßigen Anzahl fehlgeschlagener Anmeldeversuche gesperrt.
|
1687
|
-
subject:
|
1693
|
+
subject: Anweisungen zur Entsperrung
|
1688
1694
|
omniauth_callbacks:
|
1689
1695
|
failure: 'Sie konnten nicht mit Ihrem %{kind}-Account angemeldet werden. Grund: "%{reason}".'
|
1690
1696
|
success: Sie haben sich erfolgreich mit Ihrem %{kind}-Account angemeldet.
|
@@ -1699,7 +1705,7 @@ de:
|
|
1699
1705
|
title: Passwort ändern
|
1700
1706
|
new:
|
1701
1707
|
forgot_your_password: Haben Sie Ihr Passwort vergessen?
|
1702
|
-
send_me_reset_password_instructions:
|
1708
|
+
send_me_reset_password_instructions: Schicken Sie mir eine Anweisung zum Zurücksetzen des Passwortes
|
1703
1709
|
no_token: Sie können nicht auf diese Seite zugreifen, ohne von einer E-Mail zum Zurücksetzen des Kennworts zu stammen. Wenn Sie eine E-Mail zum Zurücksetzen des Passworts erhalten, vergewissern Sie sich bitte, dass Sie die vollständige URL verwendet haben.
|
1704
1710
|
send_instructions: Sie erhalten eine E-Mail mit Anweisungen zum Zurücksetzen Ihres Passworts in wenigen Minuten.
|
1705
1711
|
send_paranoid_instructions: Wenn Ihre E-Mail-Adresse in unserer Datenbank vorhanden ist, erhalten Sie innerhalb weniger Minuten einen Link zur Passwortwiederherstellung unter Ihrer E-Mail-Adresse.
|
@@ -2044,6 +2050,7 @@ de:
|
|
2044
2050
|
long_with_particles: "%d. %B %Y %H:%M"
|
2045
2051
|
short: "%d.%m.%Y %H:%M"
|
2046
2052
|
time_of_day: "%H:%M"
|
2053
|
+
tooltip: "%d-%m-%Y %H:%M %p %Z (GMT %:z)"
|
2047
2054
|
versions:
|
2048
2055
|
directions:
|
2049
2056
|
left: Löschungen
|
data/config/locales/el.yml
CHANGED
@@ -78,10 +78,7 @@ el:
|
|
78
78
|
'true': 'Ναι'
|
79
79
|
carrierwave:
|
80
80
|
errors:
|
81
|
-
file_cannot_be_processed: Το αρχείο δεν μπορεί να επεξεργαστεί
|
82
|
-
file_resolution_too_large: Η ανάλυση του αρχείου είναι πολύ μεγάλη
|
83
81
|
file_size_too_large: Το μέγεθος του αρχείου είναι πολύ μεγάλο
|
84
|
-
not_inside_organization: Το αρχείο δεν είναι συνδεδεμένο σε κανέναν οργανισμό
|
85
82
|
date:
|
86
83
|
formats:
|
87
84
|
decidim_short: "%d/%m/%Y"
|
@@ -287,7 +284,6 @@ el:
|
|
287
284
|
'1': Δημιουργήστε την τροποποίησή σας
|
288
285
|
'2': Συγκρίνετε την τροποποίησή σας
|
289
286
|
'3': Ολοκληρώστε την τροποποίησή σας
|
290
|
-
'4': Δημοσιεύστε την τροποποίησή σας
|
291
287
|
anonymous_user: Ανώνυμη
|
292
288
|
application:
|
293
289
|
document:
|
@@ -426,8 +422,6 @@ el:
|
|
426
422
|
description: Περιγραφή
|
427
423
|
footer_sub_hero:
|
428
424
|
name: Δευτερεύον κύριο διαφημιστικό πλαίσιο υποσέλιδου
|
429
|
-
hero:
|
430
|
-
name: Κύρια εικόνα
|
431
425
|
hero_settings_form:
|
432
426
|
background_image: Εικόνα φόντου
|
433
427
|
welcome_text: Κείμενο καλωσορίσματος
|
@@ -481,6 +475,7 @@ el:
|
|
481
475
|
registrations:
|
482
476
|
new:
|
483
477
|
already_have_an_account?: Έχετε ήδη λογαριασμό;
|
478
|
+
log_in: Σύνδεση
|
484
479
|
newsletter: Λάβετε ένα περιστασιακό ενημερωτικό δελτίο με σχετικές πληροφορίες
|
485
480
|
newsletter_title: Άδεια επικοινωνίας
|
486
481
|
sign_up: Εγγραφή
|
@@ -711,6 +706,7 @@ el:
|
|
711
706
|
file:
|
712
707
|
explanation: 'Οδηγίες για αρχείο:'
|
713
708
|
message_1: Πρέπει να είναι εικόνα ή έγγραφο.
|
709
|
+
message_2: Για εικόνες, χρησιμοποιήστε κατά προτίμηση οριζόντιας διάταξης, η υπηρεσία περικόπτει την εικόνα.
|
714
710
|
image:
|
715
711
|
explanation: 'Οδηγίες για εικόνα:'
|
716
712
|
message_1: Προτιμώμενη εικόνα οριζόντιας διάταξης που δεν περιέχει κείμενο.
|
@@ -1005,7 +1001,6 @@ el:
|
|
1005
1001
|
success: Οι ρυθμίσεις ειδοποιήσεων ενημερώθηκαν με επιτυχία.
|
1006
1002
|
offline:
|
1007
1003
|
show:
|
1008
|
-
message: Φαίνεται ότι είστε εκτός σύνδεσης. Παρακαλώ, δοκιμάστε ξανά αργότερα.
|
1009
1004
|
retry: Δοκιμάστε ξανά
|
1010
1005
|
open_data:
|
1011
1006
|
not_available_yet: Τα αρχεία Open Data δεν είναι ακόμη διαθέσιμα. Δοκιμάστε ξανά σε λίγα λεπτά.
|
@@ -1029,11 +1024,13 @@ el:
|
|
1029
1024
|
register: Εγγραφή
|
1030
1025
|
hero:
|
1031
1026
|
participate: Συμμετοχή
|
1027
|
+
participate_title: Συμμετάσχετε στις διαδικασίες της πλατφόρμας
|
1032
1028
|
welcome: Καλώς ορίσατε στον οργανισμό %{organization}!
|
1033
1029
|
statistics:
|
1034
1030
|
headline: Τρέχουσα κατάσταση του οργανισμού %{organization}
|
1035
1031
|
sub_hero:
|
1036
1032
|
register: Εγγραφή
|
1033
|
+
register_title: Εγγραφείτε για να δημιουργήσετε ένα λογαριασμό
|
1037
1034
|
index:
|
1038
1035
|
standalone_pages: Σελίδες
|
1039
1036
|
subheading: Περιηγηθείτε στις σελίδες βοήθειας του %{name}
|
@@ -1341,10 +1338,14 @@ el:
|
|
1341
1338
|
signed_up_but_unconfirmed: Ένα μήνυμα με σύνδεσμο επιβεβαίωσης έχει σταλεί στη διεύθυνση email σας. Ακολουθήστε τον σύνδεσμο για να ενεργοποιήσετε τον λογαριασμό σας.
|
1342
1339
|
update_needs_confirmation: Ενημερώσατε τον λογαριασμό σας με επιτυχία, αλλά πρέπει να επαληθεύσουμε τη νέα σας διεύθυνση email. Ελέγξτε το email σας και ακολουθήστε τον σύνδεσμο επιβεβαίωσης για να επιβεβαιώσετε τη νέα σας διεύθυνση email.
|
1343
1340
|
updated: Ο λογαριασμός σας ενημερώθηκε με επιτυχία.
|
1341
|
+
sessions:
|
1342
|
+
new:
|
1343
|
+
log_in: Σύνδεση
|
1344
1344
|
shared:
|
1345
1345
|
links:
|
1346
1346
|
back: Πίσω
|
1347
1347
|
forgot_your_password: Ξεχάσατε τον κωδικό πρόσβασής σας;
|
1348
|
+
log_in: Σύνδεση
|
1348
1349
|
sign_up: Εγγραφή
|
1349
1350
|
minimum_password_length:
|
1350
1351
|
one: "(%{count} χαρακτήρας ελάχιστο)"
|
@@ -1392,8 +1393,11 @@ el:
|
|
1392
1393
|
cc_by_license: Άδεια Creative Commons
|
1393
1394
|
decidim_logo: Λογότυπο decidim
|
1394
1395
|
download_open_data: Λήψη αρχείων Open Data
|
1396
|
+
log_in: Σύνδεση
|
1395
1397
|
made_with_open_source: Ο ιστότοπος δημιουργήθηκε με <a target="_blank" href="https://github.com/decidim/decidim">δωρεάν λογισμικό</a>.
|
1396
1398
|
sign_up: Εγγραφή
|
1399
|
+
header:
|
1400
|
+
log_in: Σύνδεση
|
1397
1401
|
impersonation_warning:
|
1398
1402
|
close_session: Κλείσιμο συνεδρίας
|
1399
1403
|
description_html: Διαχειρίζεστε τον συμμετέχοντα <b>%{user_name}</b>.
|
data/config/locales/en.yml
CHANGED
@@ -144,6 +144,7 @@ en:
|
|
144
144
|
external_link: External link
|
145
145
|
front_page_link: Go to front page
|
146
146
|
logo: "%{organization}'s official logo"
|
147
|
+
opens_in_new_tab: Opens in new tab
|
147
148
|
skip_button: Skip to main content
|
148
149
|
account:
|
149
150
|
blocked: This account has been blocked due to terms of service violation
|
@@ -515,7 +516,7 @@ en:
|
|
515
516
|
global_menu:
|
516
517
|
name: Global menu
|
517
518
|
hero:
|
518
|
-
name: Hero image
|
519
|
+
name: Hero image and CTA
|
519
520
|
hero_settings_form:
|
520
521
|
background_image: Background image
|
521
522
|
welcome_text: Welcome text
|
@@ -919,6 +920,7 @@ en:
|
|
919
920
|
filename: Filename
|
920
921
|
remove: Remove
|
921
922
|
replace: Replace
|
923
|
+
save: Save
|
922
924
|
title: Title
|
923
925
|
title_required: Title is required!
|
924
926
|
uploaded: Uploaded
|
@@ -1241,6 +1243,7 @@ en:
|
|
1241
1243
|
no_notifications: No notifications yet.
|
1242
1244
|
show:
|
1243
1245
|
missing_event: Oops, this notification belongs to an item that is no longer available. You can discard it.
|
1246
|
+
moderated: Content moderated
|
1244
1247
|
notifications_digest_mailer:
|
1245
1248
|
header:
|
1246
1249
|
daily: Daily Notification Digest
|
@@ -1281,7 +1284,8 @@ en:
|
|
1281
1284
|
offline:
|
1282
1285
|
name: Offline
|
1283
1286
|
show:
|
1284
|
-
|
1287
|
+
message_1: It looks like you are currently offline.
|
1288
|
+
message_2: Please, try again later.
|
1285
1289
|
retry: Retry
|
1286
1290
|
open_data:
|
1287
1291
|
not_available_yet: The Open Data files are not yet available, please try again in a few minutes.
|
@@ -1446,7 +1450,7 @@ en:
|
|
1446
1450
|
past: Past
|
1447
1451
|
filters_small_view:
|
1448
1452
|
filter: Filter
|
1449
|
-
filter_and_search: Filter and
|
1453
|
+
filter_and_search: Filter and search
|
1450
1454
|
filter_by: Filter by
|
1451
1455
|
results:
|
1452
1456
|
view_all: View all (%{count})
|
@@ -1460,6 +1464,8 @@ en:
|
|
1460
1464
|
close_modal: Close modal
|
1461
1465
|
ok: OK
|
1462
1466
|
title: Confirm
|
1467
|
+
embed:
|
1468
|
+
title: Embedded video content
|
1463
1469
|
extended_navigation_bar:
|
1464
1470
|
more: More
|
1465
1471
|
unfold: Unfold
|
@@ -2046,6 +2052,7 @@ en:
|
|
2046
2052
|
long_with_particles: "%B %d, %Y at %H:%M"
|
2047
2053
|
short: "%d/%m/%Y %H:%M"
|
2048
2054
|
time_of_day: "%H:%M"
|
2055
|
+
tooltip: "%d-%m-%Y %H:%M %p %Z (GMT %:z)"
|
2049
2056
|
versions:
|
2050
2057
|
directions:
|
2051
2058
|
left: Deletions
|