decidim-core 0.27.5 → 0.27.7
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/card_cell.rb +2 -2
- data/app/cells/decidim/card_m/top.erb +1 -1
- data/app/cells/decidim/card_m_cell.rb +1 -1
- data/app/cells/decidim/follow_button_cell.rb +1 -1
- data/app/cells/decidim/notification/moderated.erb +24 -0
- data/app/cells/decidim/notification_cell.rb +5 -1
- data/app/cells/decidim/scopes_picker/scope_picker_values.erb +1 -1
- data/app/cells/decidim/tags_cell.rb +3 -1
- data/app/cells/decidim/user_profile_cell.rb +1 -1
- data/app/commands/decidim/create_omniauth_registration.rb +2 -4
- 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/links_controller.rb +13 -1
- data/app/controllers/decidim/widgets_controller.rb +6 -0
- data/app/events/decidim/welcome_notification_event.rb +6 -9
- data/app/helpers/decidim/cells_paginate_helper.rb +1 -1
- data/app/helpers/decidim/check_boxes_tree_helper.rb +4 -4
- data/app/helpers/decidim/newsletters_helper.rb +83 -16
- data/app/helpers/decidim/resource_helper.rb +1 -1
- data/app/helpers/decidim/sanitize_helper.rb +9 -0
- 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 +39 -0
- data/app/packs/images/decidim/.keep +0 -0
- 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/vizzs/index.js +1 -1
- data/app/packs/stylesheets/decidim/plugins/leaflet.scss +118 -114
- 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/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/log/diff_changeset_calculator.rb +1 -1
- data/app/services/decidim/push_notification_message_sender.rb +36 -0
- data/app/services/decidim/send_push_notification.rb +22 -8
- data/app/views/decidim/devise/registrations/new.html.erb +2 -2
- data/app/views/decidim/links/new.html.erb +2 -0
- data/app/views/decidim/notifications_digest_mailer/_email_content.html.erb +7 -0
- data/app/views/decidim/shared/_address_details.html.erb +2 -2
- data/app/views/layouts/decidim/_js_configuration.html.erb +1 -0
- data/config/locales/ar.yml +4 -3
- data/config/locales/bg.yml +484 -1
- data/config/locales/ca.yml +23 -22
- data/config/locales/cs.yml +0 -1
- data/config/locales/de.yml +28 -27
- data/config/locales/el.yml +5 -4
- data/config/locales/en.yml +1 -0
- data/config/locales/eo.yml +3 -0
- data/config/locales/es-MX.yml +6 -5
- data/config/locales/es-PY.yml +6 -5
- data/config/locales/es.yml +25 -24
- data/config/locales/eu.yml +12 -2
- data/config/locales/fi-plain.yml +1 -0
- data/config/locales/fi.yml +4 -3
- data/config/locales/fr-CA.yml +5 -4
- data/config/locales/fr.yml +3 -2
- data/config/locales/ga-IE.yml +5 -0
- data/config/locales/gl.yml +3 -0
- data/config/locales/he-IL.yml +1 -0
- data/config/locales/hu.yml +41 -9
- data/config/locales/it.yml +5 -4
- data/config/locales/ja.yml +5 -3
- data/config/locales/lb.yml +5 -4
- data/config/locales/lt.yml +4 -4
- data/config/locales/lv.yml +4 -1
- data/config/locales/nl.yml +4 -1
- data/config/locales/no.yml +5 -4
- data/config/locales/pl.yml +168 -1
- data/config/locales/pt-BR.yml +113 -22
- data/config/locales/pt.yml +5 -4
- data/config/locales/ro-RO.yml +1 -3
- data/config/locales/ru.yml +13 -0
- data/config/locales/sk.yml +6 -1
- data/config/locales/sl.yml +5 -0
- data/config/locales/sv.yml +26 -3
- data/config/locales/tr-TR.yml +3 -3
- data/config/locales/uk.yml +15 -0
- data/config/locales/zh-CN.yml +0 -4
- data/config/locales/zh-TW.yml +4 -4
- data/decidim-core.gemspec +78 -0
- data/lib/decidim/acts_as_tree.rb +14 -1
- data/lib/decidim/asset_router/storage.rb +4 -0
- data/lib/decidim/attribute_encryptor.rb +6 -4
- data/lib/decidim/core/engine.rb +7 -3
- data/lib/decidim/core/test/factories.rb +314 -95
- 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 +32 -0
- data/lib/decidim/core/test/shared_examples/embed_resource_examples.rb +187 -11
- data/lib/decidim/core/test/shared_examples/has_attachment_collections.rb +8 -6
- data/lib/decidim/core/test/shared_examples/has_attachments.rb +4 -4
- 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 -2
- data/lib/decidim/core/test/shared_examples/resource_endorsed_event_examples.rb +6 -3
- data/lib/decidim/core/test/shared_examples/resource_locator_presenter_examples.rb +134 -0
- data/lib/decidim/core/test/shared_examples/searchable_results_examples.rb +1 -1
- data/lib/decidim/core/test/shared_examples/simple_event.rb +50 -2
- data/lib/decidim/core/test.rb +1 -0
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/core.rb +1 -0
- data/lib/decidim/engine_router.rb +17 -4
- data/lib/decidim/events/base_event.rb +9 -2
- data/lib/decidim/events/simple_event.rb +3 -17
- data/lib/decidim/form_builder.rb +13 -1
- 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/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 +29 -27
- data/config/environment.rb +0 -3
data/config/locales/es.yml
CHANGED
@@ -75,7 +75,7 @@ es:
|
|
75
75
|
'true': 'Sí'
|
76
76
|
carrierwave:
|
77
77
|
errors:
|
78
|
-
file_cannot_be_processed: No se ha podido
|
78
|
+
file_cannot_be_processed: No se ha podido procesar el archivo
|
79
79
|
file_resolution_too_large: La resolución del archivo es demasiado grande
|
80
80
|
file_size_too_large: El tamaño del archivo es demasiado grande
|
81
81
|
not_inside_organization: El archivo no está relacionado con ninguna organización
|
@@ -97,7 +97,7 @@ es:
|
|
97
97
|
half_a_minute: medio minuto
|
98
98
|
less_than_x_minutes:
|
99
99
|
one: hace menos de un minuto
|
100
|
-
other:
|
100
|
+
other: hace menos de %{count} minutos
|
101
101
|
less_than_x_seconds:
|
102
102
|
one: hace menos de un segundo
|
103
103
|
other: hace menos de %{count} segundos
|
@@ -330,7 +330,7 @@ es:
|
|
330
330
|
'1': Crea tu enmienda
|
331
331
|
'2': Compara tu enmienda
|
332
332
|
'3': Completa tu enmienda
|
333
|
-
'4':
|
333
|
+
'4': Publica tu enmienda
|
334
334
|
anonymous_user: Anónima
|
335
335
|
application:
|
336
336
|
collection:
|
@@ -532,7 +532,7 @@ es:
|
|
532
532
|
username_help: Nombre público que aparece en tus aportaciones. Con el objetivo de garantizar el anonimato, puede ser cualquier nombre.
|
533
533
|
registrations:
|
534
534
|
create:
|
535
|
-
error:
|
535
|
+
error: Se ha producido un error al crear tu cuenta.
|
536
536
|
new:
|
537
537
|
already_have_an_account?: '¿Ya tienes una cuenta?'
|
538
538
|
newsletter: Quiero recibir un boletín ocasional con información relevante
|
@@ -621,57 +621,57 @@ es:
|
|
621
621
|
amendment_accepted:
|
622
622
|
affected_user:
|
623
623
|
email_intro: 'Se ha aceptado una enmienda para %{amendable_title}. Puedes verla desde esta página:'
|
624
|
-
email_outro: Has recibido esta notificación porque
|
624
|
+
email_outro: Has recibido esta notificación porque se ha aceptado una enmienda al apartado "%{amendable_title}" que administras.
|
625
625
|
email_subject: Enmienda aceptada para %{amendable_title} de %{emendation_author_nickname}
|
626
626
|
notification_title: La <a href="%{emendation_path}">enmienda</a> creada por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> ha sido aceptada para <a href="%{amendable_path}">%{amendable_title}</a>.
|
627
627
|
follower:
|
628
628
|
email_intro: 'Se ha aceptado una enmienda para %{amendable_title}. Puedes verla desde esta página:'
|
629
|
-
email_outro: Has recibido esta notificación porque estás siguiendo
|
629
|
+
email_outro: Has recibido esta notificación porque estás siguiendo la enmienda "%{amendable_title}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
630
630
|
email_subject: Enmienda aceptada para %{amendable_title} de %{emendation_author_nickname}
|
631
631
|
notification_title: La <a href="%{emendation_path}">enmienda</a> creada por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> ha sido aceptada para <a href="%{amendable_path}">%{amendable_title}</a>.
|
632
632
|
amendment_created:
|
633
633
|
affected_user:
|
634
634
|
email_intro: 'Se ha creado una nueva enmienda para %{amendable_title}. Puedes verla desde esta página:'
|
635
|
-
email_outro: Has recibido esta notificación porque
|
635
|
+
email_outro: Has recibido esta notificación porque se ha presentado una esmena al apartado "%{amendable_title}" que administras.
|
636
636
|
email_subject: Nueva enmienda para %{amendable_title}
|
637
637
|
notification_title: Se ha creado una nueva enmienda para <a href="%{amendable_path}">%{amendable_title}</a>.
|
638
638
|
follower:
|
639
639
|
email_intro: 'Se ha creado una nueva enmienda para %{amendable_title}. Puedes verla desde esta página:'
|
640
|
-
email_outro: Has recibido esta notificación porque estás siguiendo
|
640
|
+
email_outro: Has recibido esta notificación porque estás siguiendo la enmienda "%{amendable_title}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
641
641
|
email_subject: Nueva enmienda para %{amendable_title}
|
642
642
|
notification_title: Se ha creado una nueva enmienda para <a href="%{amendable_path}">%{amendable_title}</a>.
|
643
643
|
amendment_promoted:
|
644
644
|
affected_user:
|
645
645
|
email_intro: 'Una enmienda rechazada para %{amendable_title} ha sido publicada como una nueva %{amendable_type}. Puedes verla desde esta página:'
|
646
|
-
email_outro: Has recibido esta notificación porque
|
646
|
+
email_outro: Has recibido esta notificación porque se ha promocionado una esmena al apartado "%{amendable_title}" que administras.
|
647
647
|
email_subject: Se ha publicado una enmienda de %{emendation_author_nickname} como nuevo %{amendable_type}
|
648
648
|
notification_title: Un <a href="%{emendation_path}">rechazó la enmienda</a> para <a href="%{amendable_path}">%{amendable_title}</a> se ha publicado como un nuevo %{amendable_type} por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
649
649
|
follower:
|
650
650
|
email_intro: 'Una enmienda rechazada para %{amendable_title} ha sido publicada como nueva %{amendable_type}. Puedes verla desde esta página:'
|
651
|
-
email_outro: Has recibido esta notificación porque estás siguiendo
|
651
|
+
email_outro: Has recibido esta notificación porque estás siguiendo la enmienda "%{amendable_title}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
652
652
|
email_subject: Se ha publicado una enmienda de %{emendation_author_nickname} como nuevo %{amendable_type}
|
653
653
|
notification_title: Un <a href="%{emendation_path}">rechazó la enmienda</a> para <a href="%{amendable_path}">%{amendable_title}</a> se ha publicado como un nuevo %{amendable_type} por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
654
654
|
amendment_rejected:
|
655
655
|
affected_user:
|
656
656
|
email_intro: 'Una enmienda ha sido rechazada por %{amendable_title}. Puedes verla desde esta página:'
|
657
|
-
email_outro: Has recibido esta notificación porque
|
657
|
+
email_outro: Has recibido esta notificación porque se ha rechazado una enmienda al apartado "%{amendable_title}" que administras.
|
658
658
|
email_subject: Enmienda rechazada por %{amendable_title} de %{emendation_author_nickname}
|
659
659
|
notification_title: La <a href="%{emendation_path}">enmienda</a> creada por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> ha sido rechazada por <a href="%{amendable_path}">%{amendable_title}</a>.
|
660
660
|
follower:
|
661
661
|
email_intro: 'Una enmienda ha sido rechazada por %{amendable_title}. Puedes verla desde esta página:'
|
662
|
-
email_outro: Has recibido esta notificación porque estás siguiendo
|
662
|
+
email_outro: Has recibido esta notificación porque estás siguiendo la enmienda "%{amendable_title}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
663
663
|
email_subject: Una enmienda rechazada por %{amendable_title} de %{emendation_author_nickname}
|
664
664
|
notification_title: La <a href="%{emendation_path}">enmienda</a> creada por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> ha sido rechazada por <a href="%{amendable_path}">%{amendable_title}</a>.
|
665
665
|
attachments:
|
666
666
|
attachment_created:
|
667
667
|
email_intro: 'Se ha añadido un nuevo documento a %{resource_title}. Puedes verlo desde esta página:'
|
668
|
-
email_outro: Has recibido esta notificación porque estás siguiendo %{resource_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
668
|
+
email_outro: Has recibido esta notificación porque estás siguiendo "%{resource_title}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
669
669
|
email_subject: Se ha producido una actualización para %{resource_title}
|
670
670
|
notification_title: Se ha añadido un <a href="%{resource_path}">nuevo documento</a> a <a href="%{attached_to_url}">%{resource_title}</a>
|
671
671
|
components:
|
672
672
|
component_published:
|
673
673
|
email_intro: 'Ya está activo el componente %{resource_title} para %{participatory_space_title}. Puedes verlo desde esta página:'
|
674
|
-
email_outro: Has recibido esta notificación porque estás siguiendo %{participatory_space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
674
|
+
email_outro: Has recibido esta notificación porque estás siguiendo el espacio "%{participatory_space_title}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
675
675
|
email_subject: Una actualización en %{participatory_space_title}
|
676
676
|
notification_title: Ya está activo el componente %{resource_title} para <a href="%{resource_path}">%{participatory_space_title}</a>
|
677
677
|
email_event:
|
@@ -703,17 +703,17 @@ es:
|
|
703
703
|
notification_title: Te han invitado a unirte al grupo <a href="%{resource_path}">%{user_group_name}</a> . Revisa la pestaña <a href="%{groups_profile_tab_path}">Grupos</a> en tu perfil para aceptar la invitación!
|
704
704
|
join_request_accepted:
|
705
705
|
email_intro: '¡Felicidades! Una administradora del grupo <a href="%{resource_url}">%{user_group_name}</a> ha aceptado tu solicitud para unirte a él.'
|
706
|
-
email_outro: Has recibido esta notificación porque tu solicitud de incorporación se ha actualizado.
|
706
|
+
email_outro: Has recibido esta notificación porque tu solicitud de incorporación al grupo se ha actualizado.
|
707
707
|
email_subject: Tu solicitud para unirte al grupo %{user_group_name} ha sido aceptada!
|
708
708
|
notification_title: Has sido aceptada al grupo <a href="%{resource_path}">%{user_group_name}</a>.
|
709
709
|
join_request_created:
|
710
710
|
email_intro: Alguien pidió unirse al grupo %{user_group_name}. Puedes aceptarla o rechazarla desde <a href="%{resource_url}">miembros del grupo en la página</a>.
|
711
|
-
email_outro: Has recibido esta notificación porque
|
711
|
+
email_outro: Has recibido esta notificación porque administras el grupo "%{user_group_name}".
|
712
712
|
email_subject: Alguien ha solicitado unirse al grupo %{user_group_name}
|
713
713
|
notification_title: Alguien ha solicitado unirse al grupo %{user_group_name}. Puedes aceptar o rechazar la solicitud desde <a href="%{resource_path}">la página de miembros del grupo</a>.
|
714
714
|
join_request_rejected:
|
715
715
|
email_intro: Una administradora del grupo <a href="%{resource_url}">%{user_group_name}</a> ha rechazado tu solicitud para unirte a él.
|
716
|
-
email_outro: Has recibido esta notificación porque tu solicitud de incorporación se ha actualizado.
|
716
|
+
email_outro: Has recibido esta notificación porque tu solicitud de incorporación al grupo se ha actualizado.
|
717
717
|
email_subject: Tu solicitud para unirte al grupo %{user_group_name} ha sido rechazada!
|
718
718
|
notification_title: Tu solicitud para unirte al grupo <a href="%{resource_path}">%{user_group_name}</a> ha sido rechazada.
|
719
719
|
promoted_to_admin:
|
@@ -728,12 +728,12 @@ es:
|
|
728
728
|
notification_title: Has sido eliminado del grupo <a href="%{resource_path}">%{user_group_name}</a>.
|
729
729
|
user_group_created:
|
730
730
|
email_intro: Se ha creado un nuevo grupo con el nombre %{user_group_name}. Ahora puedes verificarlo, si procede, en el <a href="%{groups_admin_url}">panel de administración</a>.
|
731
|
-
email_outro: Has recibido esta notificación porque
|
731
|
+
email_outro: Has recibido esta notificación porque administras la plataforma.
|
732
732
|
email_subject: Se ha creado un nuevo grupo
|
733
733
|
notification_title: Se ha creado el grupo %{user_group_name}. Ahora puedes verificarlo en el <a href="%{groups_admin_path}">panel de administración</a>.
|
734
734
|
user_group_updated:
|
735
735
|
email_intro: El grupo %{user_group_name} ha actualizado su perfil perdiendo la verificación. Puedes volver a verificarlo a través del <a href="%{groups_admin_url}">panel de administración</a>.
|
736
|
-
email_outro: Has recibido esta notificación porque
|
736
|
+
email_outro: Has recibido esta notificación porque administras la plataforma.
|
737
737
|
email_subject: Un grupo ha actualizado su perfil
|
738
738
|
notification_title: El grupo %{user_group_name} ha actualizado su perfil perdiendo la verificación. Puedes volver a verificarlo a través del <a href="%{groups_admin_path}">panel de administración</a>.
|
739
739
|
nickname_event:
|
@@ -743,25 +743,25 @@ es:
|
|
743
743
|
reports:
|
744
744
|
resource_hidden:
|
745
745
|
email_intro: Una administradora eliminó su %{resource_type} porque ha sido reportado como %{report_reasons}.
|
746
|
-
email_outro: Has recibido esta notificación porque
|
746
|
+
email_outro: Has recibido esta notificación porque se ha eliminado un contenido que creaste.
|
747
747
|
email_subject: Tu %{resource_type} ha sido eliminado
|
748
748
|
notification_title: |-
|
749
749
|
Una administradora eliminó tu %{resource_type} porque ha sido reportado como %{report_reasons}.</br>
|
750
750
|
<i>%{resource_content}</i>
|
751
751
|
resource_endorsed:
|
752
752
|
email_intro: '%{endorser_name} %{endorser_nickname}, a quien sigues, acaba de adherirse a "%{resource_title}" que puede ser interesante para ti, compruébalo y contribuye:'
|
753
|
-
email_outro: Has recibido esta notificación porque estás siguiendo a %{endorser_nickname}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
753
|
+
email_outro: Has recibido esta notificación porque estás siguiendo a "%{endorser_nickname}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
754
754
|
email_subject: "%{endorser_nickname} se ha adherido a una propuesta"
|
755
755
|
notification_title: <a href="%{endorser_path}">%{endorser_name} %{endorser_nickname}</a> se ha adherido a la propuesta <a href="%{resource_path}">%{resource_title}</a> (%{resource_type}).
|
756
756
|
users:
|
757
757
|
profile_updated:
|
758
758
|
email_intro: La página <a href="%{resource_url}"> de perfil </a> de %{name} (%{nickname}), a quien estás siguiendo, se ha actualizado.
|
759
|
-
email_outro: Has recibido esta notificación porque estás siguiendo a %{nickname}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
759
|
+
email_outro: Has recibido esta notificación porque estás siguiendo a "%{nickname}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
760
760
|
email_subject: "%{nickname} ha actualizado su perfil"
|
761
761
|
notification_title: La página <a href="%{resource_path}"> de perfil </a> de %{name} (%{nickname}), a quien estás siguiendo, se ha actualizado.
|
762
762
|
user_officialized:
|
763
763
|
email_intro: La participante %{name} (%{nickname}) ha sido oficializada.
|
764
|
-
email_outro: Has recibido esta notificación porque
|
764
|
+
email_outro: Has recibido esta notificación porque administras la plataforma.
|
765
765
|
email_subject: "Se ha oficializado a %{name}"
|
766
766
|
notification_title: La participante %{name} (%{nickname}) ha sido oficializada.
|
767
767
|
export_mailer:
|
@@ -1164,6 +1164,7 @@ es:
|
|
1164
1164
|
no_notifications: Aún no hay notificaciones.
|
1165
1165
|
show:
|
1166
1166
|
missing_event: Vaya, esta notificación pertenece a un elemento que ya no está disponible. Puedes descartarla.
|
1167
|
+
moderated: Contenido moderado
|
1167
1168
|
notifications_digest_mailer:
|
1168
1169
|
header:
|
1169
1170
|
daily: Resumen diario de notificaciones
|
@@ -1267,7 +1268,7 @@ es:
|
|
1267
1268
|
required_review:
|
1268
1269
|
alert: Hemos actualizado nuestros Términos de Servicio, por favor revísalos.
|
1269
1270
|
body: Por favor dedica un momento a revisar la actualización de nuestras Términos de Servicio. De lo contrario, no podrás usar la plataforma.
|
1270
|
-
title: 'Requerido:
|
1271
|
+
title: 'Requerido: revisa las actualizaciones en nuestros términos y condiciones de uso'
|
1271
1272
|
participatory_space_private_users:
|
1272
1273
|
not_allowed: No tienes permiso para visualizar este contenido
|
1273
1274
|
passwords:
|
data/config/locales/eu.yml
CHANGED
@@ -78,7 +78,7 @@ eu:
|
|
78
78
|
file_cannot_be_processed: Fitxategia ezin izan da prozesatu
|
79
79
|
file_resolution_too_large: Fitxategiaren erresoluzioa handiegia da
|
80
80
|
file_size_too_large: Fitxategiaren taimaina handiegia da
|
81
|
-
not_inside_organization: Artxiboa ez dago
|
81
|
+
not_inside_organization: Artxiboa ez dago erakunde batekin erlazionatuta
|
82
82
|
date:
|
83
83
|
formats:
|
84
84
|
decidim_short: "%d/%m/%Y"
|
@@ -104,6 +104,12 @@ eu:
|
|
104
104
|
x_minutes:
|
105
105
|
one: Minutu 1
|
106
106
|
other: "Minutu %{count}"
|
107
|
+
x_months:
|
108
|
+
one: Hilabete bat
|
109
|
+
other: "%{count} hilabete"
|
110
|
+
x_seconds:
|
111
|
+
one: Segundo bat
|
112
|
+
other: "%{count} segundo"
|
107
113
|
decidim:
|
108
114
|
accessibility:
|
109
115
|
external_link: Kanpoko lotura
|
@@ -780,6 +786,9 @@ eu:
|
|
780
786
|
title: Hatz-marka
|
781
787
|
value: Balioa
|
782
788
|
followers:
|
789
|
+
followers_count:
|
790
|
+
one: "%{count} jarraitzaile"
|
791
|
+
other: "%{count} jarraitzaileak"
|
783
792
|
no_followers: Ez da jarraitzailerik oraindik.
|
784
793
|
following:
|
785
794
|
no_followings: Ez du inork edo ezer oraindik jarraitzen.
|
@@ -1152,6 +1161,7 @@ eu:
|
|
1152
1161
|
no_notifications: Oraindik ez dago jakinarazpenik.
|
1153
1162
|
show:
|
1154
1163
|
missing_event: Aiba, jakinarazpen hau dagoeneko eskuragarri ez dagoen item batena da. Baztertu dezakezu.
|
1164
|
+
moderated: Eduki moderatua
|
1155
1165
|
notifications_digest_mailer:
|
1156
1166
|
header:
|
1157
1167
|
daily: Jakinarazpenen eguneroko laburpena
|
@@ -1817,7 +1827,7 @@ eu:
|
|
1817
1827
|
widget:
|
1818
1828
|
see_more: Ikusi gehiago
|
1819
1829
|
locale:
|
1820
|
-
name:
|
1830
|
+
name: Euskera
|
1821
1831
|
name_with_error: Euskera (akatsa!)
|
1822
1832
|
password_validator:
|
1823
1833
|
blacklisted: Zerrenda beltzean
|
data/config/locales/fi-plain.yml
CHANGED
@@ -1166,6 +1166,7 @@ fi-pl:
|
|
1166
1166
|
no_notifications: Ei vielä ilmoituksia.
|
1167
1167
|
show:
|
1168
1168
|
missing_event: Hups, tämä ilmoitus kuuluu kohteeseen, joka ei ole enää käytettävissä. Voit merkitä sen luetuksi.
|
1169
|
+
moderated: Sisältö moderoitu
|
1169
1170
|
notifications_digest_mailer:
|
1170
1171
|
header:
|
1171
1172
|
daily: Päivittäinen ilmoitusyhteenveto
|
data/config/locales/fi.yml
CHANGED
@@ -777,7 +777,7 @@ fi:
|
|
777
777
|
linked_classes:
|
778
778
|
all: Kaikki
|
779
779
|
collaborative_draft: Yhdessä koostettu luonnos
|
780
|
-
dummy_resource:
|
780
|
+
dummy_resource: Esimerkkitietueet
|
781
781
|
meeting: Tapaamiset
|
782
782
|
project: Hankkeet
|
783
783
|
proposal: Ehdotukset
|
@@ -820,7 +820,7 @@ fi:
|
|
820
820
|
message_1: On oltava kuva tai asiakirja.
|
821
821
|
message_2: Kuvina käytä mieluiten vaakasuintaisia kuvia, palvelu rajaa kuvaa.
|
822
822
|
icon:
|
823
|
-
explanation: '
|
823
|
+
explanation: 'Kuvakkeen ohjeistus:'
|
824
824
|
message_1: On oltava neliömuotoinen kuva.
|
825
825
|
message_2: Tämän kuvan suositeltu koko on 512x512.
|
826
826
|
image:
|
@@ -1166,6 +1166,7 @@ fi:
|
|
1166
1166
|
no_notifications: Ei vielä ilmoituksia.
|
1167
1167
|
show:
|
1168
1168
|
missing_event: Hups, tämä ilmoitus kuuluu kohteeseen, joka ei ole enää käytettävissä. Voit merkitä sen luetuksi.
|
1169
|
+
moderated: Sisältö moderoitu
|
1169
1170
|
notifications_digest_mailer:
|
1170
1171
|
header:
|
1171
1172
|
daily: Päivittäinen ilmoitusyhteenveto
|
@@ -1438,7 +1439,7 @@ fi:
|
|
1438
1439
|
title: Valitse tulosten määrä sivua kohti
|
1439
1440
|
share_modal:
|
1440
1441
|
close_window: Sulje ikkuna
|
1441
|
-
copy_share_link:
|
1442
|
+
copy_share_link: Kopioi
|
1442
1443
|
copy_share_link_clarification: Kopioi jakolinkki leikepöydälle
|
1443
1444
|
copy_share_link_copied: Kopioitu!
|
1444
1445
|
copy_share_link_message: Linkin kopiointi leikepöydälle onnistui.
|
data/config/locales/fr-CA.yml
CHANGED
@@ -75,10 +75,10 @@ fr-CA:
|
|
75
75
|
'true': 'Oui'
|
76
76
|
carrierwave:
|
77
77
|
errors:
|
78
|
-
file_cannot_be_processed: Le fichier
|
78
|
+
file_cannot_be_processed: Le fichier ne peut pas être traité
|
79
79
|
file_resolution_too_large: La résolution du fichier est trop grande
|
80
80
|
file_size_too_large: Le fichier est trop volumineux
|
81
|
-
not_inside_organization: Le fichier n'est
|
81
|
+
not_inside_organization: Le fichier n'est attaché à aucune organisation
|
82
82
|
date:
|
83
83
|
formats:
|
84
84
|
decidim_short: "%d/%m/%Y"
|
@@ -1162,6 +1162,7 @@ fr-CA:
|
|
1162
1162
|
no_notifications: Il n'y a pas encore de notifications.
|
1163
1163
|
show:
|
1164
1164
|
missing_event: Oups, cette notification est liée à un élément qui n'est plus disponible. Vous pouvez la supprimer.
|
1165
|
+
moderated: Contenu modéré
|
1165
1166
|
notifications_digest_mailer:
|
1166
1167
|
header:
|
1167
1168
|
daily: Résumé quotidien des notifications
|
@@ -1659,7 +1660,7 @@ fr-CA:
|
|
1659
1660
|
sessions:
|
1660
1661
|
already_signed_out: Déconnecté(e) avec succès.
|
1661
1662
|
new:
|
1662
|
-
sign_in:
|
1663
|
+
sign_in: S'identifier
|
1663
1664
|
signed_in: Connexion réussie.
|
1664
1665
|
signed_out: Déconnecté(e) avec succès.
|
1665
1666
|
shared:
|
@@ -1668,7 +1669,7 @@ fr-CA:
|
|
1668
1669
|
didn_t_receive_confirmation_instructions: Vous n'avez pas reçu d'instructions de confirmation?
|
1669
1670
|
didn_t_receive_unlock_instructions: Si la plateforme vous indique que votre compte est bloqué, cliquez ici pour recevoir les instructions de déblocage
|
1670
1671
|
forgot_your_password: Mot de passe oublié?
|
1671
|
-
sign_in:
|
1672
|
+
sign_in: S'identifier
|
1672
1673
|
sign_in_with_provider: Se connecter avec %{provider}
|
1673
1674
|
sign_up: S'inscrire
|
1674
1675
|
minimum_password_length:
|
data/config/locales/fr.yml
CHANGED
@@ -75,10 +75,10 @@ fr:
|
|
75
75
|
'true': 'Oui'
|
76
76
|
carrierwave:
|
77
77
|
errors:
|
78
|
-
file_cannot_be_processed: Le fichier
|
78
|
+
file_cannot_be_processed: Le fichier ne peut pas être traité
|
79
79
|
file_resolution_too_large: La résolution du fichier est trop grande
|
80
80
|
file_size_too_large: Le fichier est trop volumineux
|
81
|
-
not_inside_organization: Le fichier n'est
|
81
|
+
not_inside_organization: Le fichier n'est attaché à aucune organisation
|
82
82
|
date:
|
83
83
|
formats:
|
84
84
|
decidim_short: "%d/%m/%Y"
|
@@ -1162,6 +1162,7 @@ fr:
|
|
1162
1162
|
no_notifications: Il n'y a pas encore de notifications.
|
1163
1163
|
show:
|
1164
1164
|
missing_event: Oups, cette notification est liée à un élément qui n'est plus disponible. Vous pouvez la supprimer.
|
1165
|
+
moderated: Contenu modéré
|
1165
1166
|
notifications_digest_mailer:
|
1166
1167
|
header:
|
1167
1168
|
daily: Résumé quotidien des notifications
|
data/config/locales/ga-IE.yml
CHANGED
@@ -113,6 +113,7 @@ ga:
|
|
113
113
|
devise:
|
114
114
|
registrations:
|
115
115
|
new:
|
116
|
+
sign_in: Logáil isteach
|
116
117
|
sign_up: Cláraigh
|
117
118
|
shared:
|
118
119
|
omniauth_buttons:
|
@@ -327,9 +328,13 @@ ga:
|
|
327
328
|
registrations:
|
328
329
|
new:
|
329
330
|
sign_up: Cláraigh
|
331
|
+
sessions:
|
332
|
+
new:
|
333
|
+
sign_in: Logáil isteach
|
330
334
|
shared:
|
331
335
|
links:
|
332
336
|
back: Ar Ais
|
337
|
+
sign_in: Logáil isteach
|
333
338
|
sign_up: Cláraigh
|
334
339
|
layouts:
|
335
340
|
decidim:
|
data/config/locales/gl.yml
CHANGED
@@ -551,6 +551,9 @@ gl:
|
|
551
551
|
default_image: Imaxe predeterminada
|
552
552
|
errors:
|
553
553
|
error: Hai un erro neste campo.
|
554
|
+
file_help:
|
555
|
+
file:
|
556
|
+
message_2: Nas imaxes, emprega preferiblemente as apaisadas, o servizo recorta a imaxe.
|
554
557
|
upload:
|
555
558
|
labels:
|
556
559
|
add_attachment: Engadir ficheiro anexo
|
@@ -0,0 +1 @@
|
|
1
|
+
he:
|
data/config/locales/hu.yml
CHANGED
@@ -44,7 +44,7 @@ hu:
|
|
44
44
|
decidim/promote_to_admin: A csoport adminisztrátora
|
45
45
|
decidim/promoted_to_admin_event: Csoportadminisztrátorrá jelölve
|
46
46
|
decidim/removed_from_group: Eltávolítva a csoportból
|
47
|
-
decidim/resource_endorsed_event: Erőforrás
|
47
|
+
decidim/resource_endorsed_event: Erőforrás támogatva
|
48
48
|
decidim/resource_hidden_event: Rejtett erőforrás
|
49
49
|
decidim/user_group_created_event: Felhasználói csoport létrehozva
|
50
50
|
decidim/welcome_notification_event: Üdvözlő üzenet
|
@@ -63,7 +63,7 @@ hu:
|
|
63
63
|
other: Módosítások
|
64
64
|
decidim/endorsement:
|
65
65
|
one: Jóváhagyás
|
66
|
-
other:
|
66
|
+
other: Támogatások
|
67
67
|
decidim/user:
|
68
68
|
one: Résztvevő
|
69
69
|
other: Résztvevők
|
@@ -75,7 +75,6 @@ hu:
|
|
75
75
|
'true': 'Igen'
|
76
76
|
carrierwave:
|
77
77
|
errors:
|
78
|
-
file_cannot_be_processed: A fájl nem nyitható meg
|
79
78
|
file_resolution_too_large: A fájl felbontása túl nagy
|
80
79
|
file_size_too_large: Túl nagy a fájl mérete
|
81
80
|
not_inside_organization: A fájl nincs csatolva egyetlen szervezethez sem
|
@@ -317,7 +316,6 @@ hu:
|
|
317
316
|
'1': Készítse el a módosítását
|
318
317
|
'2': Módosításod összehasonlítása
|
319
318
|
'3': Módosításod befejezése
|
320
|
-
'4': Módosításod publikálása
|
321
319
|
anonymous_user: Névtelen
|
322
320
|
application:
|
323
321
|
collection:
|
@@ -340,7 +338,7 @@ hu:
|
|
340
338
|
other: megjegyzések
|
341
339
|
endorsements:
|
342
340
|
one: jóváhagyás
|
343
|
-
other:
|
341
|
+
other: támogatások
|
344
342
|
official_author: Hivatalos
|
345
343
|
authorization_handlers:
|
346
344
|
another_dummy_authorization_handler:
|
@@ -518,11 +516,14 @@ hu:
|
|
518
516
|
subtitle: A regisztráció befejezéséhez töltsd ki a következő űrlapot
|
519
517
|
username_help: Bejegyzésekben megjelenő nyilvános megnevezés. Az anonimitás megőrzése érdekében bármilyen név lehet.
|
520
518
|
registrations:
|
519
|
+
create:
|
520
|
+
error: Hiba történt a fiók létrehozásakor.
|
521
521
|
new:
|
522
522
|
already_have_an_account?: Már van egy fiókod?
|
523
523
|
newsletter: Hírlevél fogadása a legfontosabb információkkal
|
524
524
|
newsletter_title: Kapcsolatfelvételi engedély
|
525
525
|
nickname_help: A beceneved itt %{organization} csak betűket, számokat '-' és '_' jeleket tartalmazhat.
|
526
|
+
sign_in: Bejelentkezés
|
526
527
|
sign_up: Regisztráció
|
527
528
|
sign_up_as:
|
528
529
|
legend: Regisztrálj mint
|
@@ -574,6 +575,7 @@ hu:
|
|
574
575
|
ready: Kész
|
575
576
|
show:
|
576
577
|
download_data: Töltsd le az adatokat
|
578
|
+
download_data_description: Minden, a fiókodhoz kapcsolód információt összesítő fájl elküldésre kerül a <strong>%{user_email}</strong> címre. Ez az email egy zip fájlt fog tartalmazni és egy jelszót a megnyitásához <br/><br/> A fájl kibontásához szükséged lesz egy programra pl <a href="https://www.7-zip.org/">7-Zip</a> Windowson vagy <a href="https://www.keka.io/">Keka</a> Macen. Ha Linuxot használsz, akkor biztos telepítve van egy megfelelő program. Ha nincs, akkor használni tudod a következőt <a href="https://gitlab.gnome.org/GNOME/file-roller">File Roller</a> vagy ezt <a href="https://peazip.github.io">PeaZip</a>).
|
577
579
|
request_data: Adatkérés
|
578
580
|
editor_images:
|
579
581
|
create:
|
@@ -581,10 +583,11 @@ hu:
|
|
581
583
|
success: Kép sikeresen feltöltve
|
582
584
|
drag_and_drop_help: Képek hozzáadása húzással és ejtéssel vagy beillesztéssel.
|
583
585
|
endorsable:
|
586
|
+
endorsements: Támogatások
|
584
587
|
endorsements_count: Támogatások száma
|
585
588
|
endorsement_buttons_cell:
|
586
|
-
already_endorsed:
|
587
|
-
endorse:
|
589
|
+
already_endorsed: Támogatva
|
590
|
+
endorse: Támogat
|
588
591
|
endorsements:
|
589
592
|
identities:
|
590
593
|
done: Kész
|
@@ -732,7 +735,7 @@ hu:
|
|
732
735
|
resource_endorsed:
|
733
736
|
email_intro: '%{endorser_name}% {endorser_nickname}, akit követsz, éppen jóváhagyta a "%{resource_title}" -t, és úgy gondoljuk, hogy ez érdekes lehet számodra. Nézd meg, és járulj hozzá:'
|
734
737
|
email_outro: Azért kaptad ezt az értesítést, mert %{endorser_nickname} követed. Az előző hivatkozást követve abbahagyhatod az értesítések fogadását.
|
735
|
-
email_subject: "%{endorser_nickname}
|
738
|
+
email_subject: "%{endorser_nickname} támogatásról biztosított"
|
736
739
|
notification_title: A <a href="%{resource_path}">%{resource_title}</a> %{resource_type} a(z) <a href="%{endorser_path}">%{endorser_name} %{endorser_nickname}</a> hagyta jóvá.
|
737
740
|
users:
|
738
741
|
profile_updated:
|
@@ -742,8 +745,10 @@ hu:
|
|
742
745
|
notification_title: '%{name} (%{nickname}) (akit egyébként követsz) <a href="%{resource_path}">profil oldala</a> frissült.'
|
743
746
|
user_officialized:
|
744
747
|
email_outro: Azért kapta ezt az értesítést, mert Ön a szervezet adminisztrátora.
|
748
|
+
email_subject: "%{name} regisztrációja hivatalossá lett téva"
|
745
749
|
export_mailer:
|
746
750
|
download_your_data_export:
|
751
|
+
click_button: 'Kattintson a következő linkre az adatainak letöltéséhez. <br/> A fájl elérhető marad eddig %{date}<br/> Szüksége lesz egy a zip fájlt kicsomagoló programra. <a href="https://www.7-zip.org/"> 7-Zip</a>Windowson,<a href="https://www.keka.io/en/">Keka</a> (Mac-en) vagy <a href="https://peazip.github.io">PeaZip</a> (Linuxon). Jelszó: %{password}'
|
747
752
|
download: Letöltés
|
748
753
|
export:
|
749
754
|
ready: Mellékelve találod az exportálás tömörített változatát.
|
@@ -773,6 +778,7 @@ hu:
|
|
773
778
|
create:
|
774
779
|
button: Követés
|
775
780
|
error: Hiba történt az erőforrás követése során.
|
781
|
+
participatory_space: ' <span class="show-for-sr">%{resource_name}</span> követése'
|
776
782
|
destroy:
|
777
783
|
button: Követés törlése
|
778
784
|
error: Hiba történt az erőforrás követésének visszavonásakor.
|
@@ -792,6 +798,8 @@ hu:
|
|
792
798
|
explanation: 'Útmutató:'
|
793
799
|
message_1: A képnek négyzet alakúnak kell lennie.
|
794
800
|
message_2: A javasolt képméret 512x512 px.
|
801
|
+
image:
|
802
|
+
message_1: Olyan fekvő kép használata ajánlott, amely nem tartalmaz szöveget.
|
795
803
|
file_validation:
|
796
804
|
max_file_size: 'Maximális fájlméret: %{megabytes} MB'
|
797
805
|
upload:
|
@@ -1075,6 +1083,7 @@ hu:
|
|
1075
1083
|
newsletter_mailer:
|
1076
1084
|
newsletter:
|
1077
1085
|
note: Ezt az emailt azért kapta meg, mert feliratkozott a(z) %{organization_name}hírlevelekre. Megváltoztathatja a beállításokat az <a href="%{link}">értesítések oldalon</a>.
|
1086
|
+
see_on_website: Nem látja megfelelően az e-mail tartalmát? Tekintse meg a <a href="%{link}" target="_blank">weboldalon</a>.
|
1078
1087
|
unsubscribe: Az ilyen emailek fogadásának kikapcsolása, <a href="%{link}" target="_blank" class="unsubscribe">Leiratkozás</a>.
|
1079
1088
|
newsletter_templates:
|
1080
1089
|
basic_only_text:
|
@@ -1151,10 +1160,12 @@ hu:
|
|
1151
1160
|
close_meeting_reminder: Szeretnék e-mailben emlékeztetőt kapni a zárt megbeszélésekről és nem nyilvános jelentésekről
|
1152
1161
|
notifications_sending_frequencies:
|
1153
1162
|
daily: Napi
|
1163
|
+
none: Egyik sem
|
1154
1164
|
real_time: Valósidejű
|
1155
1165
|
weekly: Heti
|
1156
1166
|
notifications_sending_frequency: Milyen gyakran szeretne e-mailt kapni az értesítésekről?
|
1157
1167
|
own_activity: Saját tevékenységem - amikor valaki megjegyzést fűz a javaslatomhoz, vagy megemlíti a nevemet
|
1168
|
+
push_notifications: Push értesítések
|
1158
1169
|
push_notifications_reminder: Ahhoz, hogy értesítéseket kapjon a platformtól, először engedélyeznie kell azokat a böngésző beállításaiban.
|
1159
1170
|
receive_notifications_about: Értesítést szeretnék kapni
|
1160
1171
|
update_notifications_settings: Változások mentése
|
@@ -1214,11 +1225,13 @@ hu:
|
|
1214
1225
|
error: Hiba történt az általános szerződési feltételek elfogadása során.
|
1215
1226
|
success: Remek! Elfogadtad a feltételeket.
|
1216
1227
|
form:
|
1228
|
+
agreement: Elfogadom a feltételeket
|
1217
1229
|
legend: Elfogadom a felhasználási feltételeket
|
1218
1230
|
refuse:
|
1219
1231
|
modal_body: Ha elutasítja, akkor nem fogja tudni használni a platformot. <a href="%{download_your_data_path}">Töltse le az adatait</a> és/vagy <a href="%{delete_path}">törölje a fiókját</a>.
|
1220
1232
|
modal_btn_continue: Feltételek elfogadása és folytatás
|
1221
1233
|
modal_btn_exit: Később átnézem
|
1234
|
+
modal_button: Feltételek elutasítása
|
1222
1235
|
modal_close: Felugró ablak bezárása
|
1223
1236
|
modal_title: Tényleg elutasítod az ÁSZF frissített szövegét?
|
1224
1237
|
required_review:
|
@@ -1232,6 +1245,7 @@ hu:
|
|
1232
1245
|
success: Jelszó sikeresen frissítve
|
1233
1246
|
profile:
|
1234
1247
|
deleted: Törölt résztvevő
|
1248
|
+
inaccessible_message: Ez a profil a Felhasználási Feltételek megsértése okán nem elérhető!
|
1235
1249
|
view: Nézet
|
1236
1250
|
profiles:
|
1237
1251
|
default_officialization_text_for_user_groups: Ez a felhasználói csoport nyilvánosan ellenőrzött, annak neve igazoltan megfelel a valódi nevének
|
@@ -1244,6 +1258,8 @@ hu:
|
|
1244
1258
|
following: Követés
|
1245
1259
|
groups: Csoportok
|
1246
1260
|
members: Belépés
|
1261
|
+
officialized: Hivatalos résztvevő
|
1262
|
+
send_private_message: Privát üzenet küldése
|
1247
1263
|
timeline: Idővonal
|
1248
1264
|
view_full_profile: Teljes profil megtekintése
|
1249
1265
|
sidebar:
|
@@ -1287,7 +1303,7 @@ hu:
|
|
1287
1303
|
success: A jelentést létrehozása sikeres, de még egy adminisztrátora felülvizsgálja.
|
1288
1304
|
resource_endorsements:
|
1289
1305
|
create:
|
1290
|
-
error: Hiba történt a
|
1306
|
+
error: Hiba történt a támogatási művelet során.
|
1291
1307
|
scopes:
|
1292
1308
|
global: Globális hatáskör
|
1293
1309
|
picker:
|
@@ -1357,6 +1373,7 @@ hu:
|
|
1357
1373
|
already_reported: Ezt a tartalmat már jelentették, az adminisztrátor éppen felülvizsgálja.
|
1358
1374
|
close: Bezár
|
1359
1375
|
description: Mi nem megfelelő a felhasználóval kapcsolatban?
|
1376
|
+
does_not_belong: 'Illegális tevékenységet, öngyilkosságra való felhívást, személyes adatokat vagy más olyan dolgot tartalmaz, ami nem tartozik ide: %{organization_name}.'
|
1360
1377
|
offensive: Rasszizmust, szexizmust, gyalázkodást, személyeskedést, halálos fenyegetést, öngyilkosságra való felhívást vagy gyűlöletbeszédet tartalmaz.
|
1361
1378
|
report: Jelentés
|
1362
1379
|
spam: Klikkvadászat, reklám, átverés vagy script bot.
|
@@ -1396,6 +1413,7 @@ hu:
|
|
1396
1413
|
share_link: Hivatkozás megosztása
|
1397
1414
|
statistics:
|
1398
1415
|
comments_count: Hozzászólások
|
1416
|
+
endorsements_count: Támogatások
|
1399
1417
|
followers_count: Követők
|
1400
1418
|
headline: Statisztikák
|
1401
1419
|
no_stats: Még nincsenek statisztikák.
|
@@ -1408,9 +1426,14 @@ hu:
|
|
1408
1426
|
help_text: "<strong>Figyelem:</strong> A tartalmat automatikusan fordíthatták, és nem 100% -ban pontos."
|
1409
1427
|
show_original: Eredeti szöveg mutatása
|
1410
1428
|
show_translated: Automatikusan lefordított szöveg mutatása
|
1429
|
+
user_activity:
|
1430
|
+
index:
|
1431
|
+
no_activities_warning: Ez a résztvevő még nem végzett tevékenységet.
|
1411
1432
|
user_contact_disabled: Ez a résztvevő nem fogad el közvetlen üzeneteket.
|
1412
1433
|
user_conversations:
|
1413
1434
|
create:
|
1435
|
+
error: Az üzenet létrehozása sikertelen. Próbálkozzon újra később
|
1436
|
+
existing_error: Az üzenet létrehozása sikertelen. A beszélgetés már létezik, kérjük, próbálkozzon újra most.
|
1414
1437
|
success: A beszélgetés sikeresen elindult!
|
1415
1438
|
index:
|
1416
1439
|
add_max_users: 'Felhasználók hozzáadása a beszélgetéshez: legfeljebb 9 felhasználó'
|
@@ -1605,6 +1628,8 @@ hu:
|
|
1605
1628
|
updated: Fiókja sikeresen frissült.
|
1606
1629
|
sessions:
|
1607
1630
|
already_signed_out: Kijelentkezett sikeresen.
|
1631
|
+
new:
|
1632
|
+
sign_in: Bejelentkezés
|
1608
1633
|
signed_in: Sikeresen bejelentkezett.
|
1609
1634
|
signed_out: Kijelentkezett sikeresen.
|
1610
1635
|
shared:
|
@@ -1613,6 +1638,7 @@ hu:
|
|
1613
1638
|
didn_t_receive_confirmation_instructions: Nem kapott megerősítési utasítást?
|
1614
1639
|
didn_t_receive_unlock_instructions: Nem kapott feloldási utasítást?
|
1615
1640
|
forgot_your_password: Elfelejtette a jelszavát?
|
1641
|
+
sign_in: Bejelentkezés
|
1616
1642
|
sign_in_with_provider: Jelentkezzen be %{provider}
|
1617
1643
|
sign_up: Regisztrálj
|
1618
1644
|
minimum_password_length:
|
@@ -1629,6 +1655,7 @@ hu:
|
|
1629
1655
|
public: Nyilvános információk.
|
1630
1656
|
errors:
|
1631
1657
|
messages:
|
1658
|
+
allowed_file_content_types: 'csak a következő kiterjesztésű fájlok engedélyezettek: %{types}'
|
1632
1659
|
already_confirmed: már megerősítették, kérjük, próbáljon meg bejelentkezni
|
1633
1660
|
confirmation_period_expired: meg kell erősíteni %{period}, kérem, kérjen újat
|
1634
1661
|
content_type_allowlist_error: érvénytelen fájltípus
|
@@ -1644,6 +1671,7 @@ hu:
|
|
1644
1671
|
not_saved:
|
1645
1672
|
one: 'Hiba történt a kérelmed feldolgozásakor:'
|
1646
1673
|
other: 'Több hiba történt a művelet végrehajtása során:'
|
1674
|
+
password_confirmation_message: 'A jelszó megerősítése nem egyezik meg a jelszóval'
|
1647
1675
|
too_many_marks: túl sok egymást követő írásjelet használ (pl. és!)
|
1648
1676
|
too_much_caps: túl sok nagybetűt használ (a szöveg több mint 25% -a)
|
1649
1677
|
forms:
|
@@ -1738,6 +1766,7 @@ hu:
|
|
1738
1766
|
facebook: "%{organization} a Facebookon"
|
1739
1767
|
github: "%{organization} a GitHubon"
|
1740
1768
|
instagram: "%{organization} az Instagramon"
|
1769
|
+
x: "%{organization} az X-en"
|
1741
1770
|
youtube: "%{organization} a YouTube-on"
|
1742
1771
|
timeout_modal:
|
1743
1772
|
body: Ön %{minutes} percig inaktív volt. Ha továbbra is inaktív marad, a saját biztonsága érdekében automatikusan kijelentkeztetjük.
|
@@ -1804,6 +1833,7 @@ hu:
|
|
1804
1833
|
weibo: Sina Weibo
|
1805
1834
|
whatsapp_app: Whatsapp
|
1806
1835
|
whatsapp_web: Whatsapp
|
1836
|
+
x: X
|
1807
1837
|
xing: Xing
|
1808
1838
|
time:
|
1809
1839
|
formats:
|
@@ -1839,7 +1869,9 @@ hu:
|
|
1839
1869
|
views:
|
1840
1870
|
pagination:
|
1841
1871
|
first: "« Első"
|
1872
|
+
first_title: Hivatkozás az első oldalra
|
1842
1873
|
last: Utolsó »
|
1874
|
+
last_title: Hivatkozás az utolsó oldalra
|
1843
1875
|
next: Következő ›
|
1844
1876
|
next_title: Lépés a következő oldalra
|
1845
1877
|
pagination: Lapozó
|