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/ca.yml
CHANGED
@@ -75,7 +75,7 @@ ca:
|
|
75
75
|
'true': 'Sí'
|
76
76
|
carrierwave:
|
77
77
|
errors:
|
78
|
-
file_cannot_be_processed: No s'ha pogut
|
78
|
+
file_cannot_be_processed: No s'ha pogut processar el fitxer
|
79
79
|
file_resolution_too_large: La resolució de l'arxiu és massa gran
|
80
80
|
file_size_too_large: La mida del fitxer és massa gran
|
81
81
|
not_inside_organization: L'arxiu no està relacionat amb cap organització
|
@@ -252,7 +252,7 @@ ca:
|
|
252
252
|
user_moderation:
|
253
253
|
unreport: "%{user_name} ha desfet el report %{resource_type} - %{unreported_user_name}"
|
254
254
|
admin_terms_of_use:
|
255
|
-
default_body: "<h2>TERMES D'ÚS PER ADMINS</h2><p>Donem per fet que has rebut l'habitual explicació de l'administrador del sistema local. En general es redueix a aquestes tres coses:</p><ol><li>Respectar la privadesa dels altres.</li><li>Penseu abans de fer clic.</li><li>A un gran poder
|
255
|
+
default_body: "<h2>TERMES D'ÚS PER ADMINS</h2><p>Donem per fet que has rebut l'habitual explicació de l'administrador del sistema local. En general es redueix a aquestes tres coses:</p><ol><li>Respectar la privadesa dels altres.</li><li>Penseu abans de fer clic.</li><li>A un gran poder li correspon gran responsabilitat.</li></ol>"
|
256
256
|
alert:
|
257
257
|
dismiss: Descartar notificació
|
258
258
|
amendments:
|
@@ -621,29 +621,29 @@ ca:
|
|
621
621
|
amendment_accepted:
|
622
622
|
affected_user:
|
623
623
|
email_intro: 'S''ha acceptat una esmena per %{amendable_title}. Pots veure-ho des d''aquesta pàgina:'
|
624
|
-
email_outro: Has rebut aquesta notificació perquè
|
624
|
+
email_outro: Has rebut aquesta notificació perquè s'ha acceptat una esmena presentada a l'apartat "%{amendable_title}" que administres.
|
625
625
|
email_subject: Esmena acceptada per %{amendable_title} a %{emendation_author_nickname}
|
626
626
|
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>.
|
627
627
|
follower:
|
628
628
|
email_intro: 'S''ha acceptat una esmena per %{amendable_title}. Pots veure-ho en aquesta pàgina:'
|
629
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint %{amendable_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
629
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'esmena "%{amendable_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
630
630
|
email_subject: Esmena acceptada per %{amendable_title} de %{emendation_author_nickname}
|
631
631
|
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>.
|
632
632
|
amendment_created:
|
633
633
|
affected_user:
|
634
634
|
email_intro: 'S''ha creat una nova esmena per a %{amendable_title}. La pots veure des d''aquesta pàgina:'
|
635
|
-
email_outro: Has rebut aquesta notificació perquè
|
635
|
+
email_outro: Has rebut aquesta notificació perquè s'ha presentat una esmena a l'apartat "%{amendable_title}" que administres.
|
636
636
|
email_subject: Nova esmena per a %{amendable_title}
|
637
637
|
notification_title: S'ha creat una nova esmena per a <a href="%{amendable_path}">%{amendable_title}</a>.
|
638
638
|
follower:
|
639
639
|
email_intro: 'S''ha creat una nova esmena per a %{amendable_title}. La pots veure des d''aquesta pàgina:'
|
640
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint %{amendable_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
640
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'esmena "%{amendable_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
641
641
|
email_subject: Nova esmena per a %{amendable_title}
|
642
642
|
notification_title: S'ha creat una nova esmena per a <a href="%{amendable_path}">%{amendable_title}</a>.
|
643
643
|
amendment_promoted:
|
644
644
|
affected_user:
|
645
645
|
email_intro: 'Una esmena rebutjada per %{amendable_title} ha estat publicada com una nova %{amendable_type}. La pots veure des d''aquesta pàgina:'
|
646
|
-
email_outro: Has rebut aquesta notificació perquè
|
646
|
+
email_outro: Has rebut aquesta notificació perquè s'ha promogut una esmena a l'apartat "%{amendable_title}" que administres.
|
647
647
|
email_subject: Una nova esmena feta per %{emendation_author_nickname} s'ha publicat com a nova %{amendable_type}
|
648
648
|
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>.
|
649
649
|
follower:
|
@@ -654,7 +654,7 @@ ca:
|
|
654
654
|
amendment_rejected:
|
655
655
|
affected_user:
|
656
656
|
email_intro: 'Una esmena s''ha rebutjat per %{amendable_title}. La pots veure des d''aquesta pàgina:'
|
657
|
-
email_outro: Has rebut aquesta notificació perquè
|
657
|
+
email_outro: Has rebut aquesta notificació perquè s'ha rebutjat una esmena a l'apartat "%{amendable_title}" que administres.
|
658
658
|
email_subject: Esmena rebutjada per %{amendable_title} a %{emendation_author_nickname}
|
659
659
|
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>.
|
660
660
|
follower:
|
@@ -665,13 +665,13 @@ ca:
|
|
665
665
|
attachments:
|
666
666
|
attachment_created:
|
667
667
|
email_intro: 'S''ha afegit un nou document a %{resource_title}. Pots veure''l des d''aquesta pàgina:'
|
668
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint %{resource_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
668
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint "%{resource_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
669
669
|
email_subject: S'ha produït una actualització per a %{resource_title}
|
670
670
|
notification_title: S'ha afegit un <a href="%{resource_path}"> nou document</a> a <a href="%{attached_to_url}">%{resource_title}</a>
|
671
671
|
components:
|
672
672
|
component_published:
|
673
673
|
email_intro: 'Ja està actiu el component %{resource_title} per %{participatory_space_title}. Pots veure''l des d''aquesta pàgina:'
|
674
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint %{participatory_space_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
674
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{participatory_space_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
675
675
|
email_subject: Una actualització a %{participatory_space_title}
|
676
676
|
notification_title: Ja està actiu el component %{resource_title} per <a href="%{resource_path}">%{participatory_space_title}</a>
|
677
677
|
email_event:
|
@@ -703,17 +703,17 @@ ca:
|
|
703
703
|
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ó!
|
704
704
|
join_request_accepted:
|
705
705
|
email_intro: Felicitats! Una administradora del grup <a href="%{resource_url}">%{user_group_name}</a> ha acceptat la teva sol·licitud per unir-te.
|
706
|
-
email_outro: Has rebut aquesta notificació perquè s'ha actualitzat la teva sol·licitud per a formar
|
706
|
+
email_outro: Has rebut aquesta notificació perquè s'ha actualitzat la teva sol·licitud per a formar part del grup.
|
707
707
|
email_subject: La teva sol·licitud per a unir-te al grup %{user_group_name} ha estat acceptada!
|
708
708
|
notification_title: Has estat acceptada al grup <a href="%{resource_path}">%{user_group_name}</a>.
|
709
709
|
join_request_created:
|
710
710
|
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>.
|
711
|
-
email_outro: Has rebut aquesta notificació perquè
|
711
|
+
email_outro: Has rebut aquesta notificació perquè administres el grup "%{user_group_name}".
|
712
712
|
email_subject: Algú ha sol·licitat unir-se al grup %{user_group_name}!
|
713
713
|
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>.
|
714
714
|
join_request_rejected:
|
715
715
|
email_intro: Una administradora del grup <a href="%{resource_url}">%{user_group_name}</a> ha rebutjat la teva sol·licitud per unir-te.
|
716
|
-
email_outro: Has rebut aquesta notificació perquè la teva sol·licitud d'incorporació s'ha actualitzat.
|
716
|
+
email_outro: Has rebut aquesta notificació perquè la teva sol·licitud d'incorporació al grup s'ha actualitzat.
|
717
717
|
email_subject: La teva sol·licitud per unir-te al grup %{user_group_name} ha estat rebutjada!
|
718
718
|
notification_title: La teva sol·licitud per unir-te al grup <a href="%{resource_path}">%{user_group_name}</a> ha estat rebutjada.
|
719
719
|
promoted_to_admin:
|
@@ -733,7 +733,7 @@ ca:
|
|
733
733
|
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>.
|
734
734
|
user_group_updated:
|
735
735
|
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>.
|
736
|
-
email_outro: Has rebut aquesta notificació perquè
|
736
|
+
email_outro: Has rebut aquesta notificació perquè admnistres la plataforma.
|
737
737
|
email_subject: Un grup d'usuàries ha actualitzat el seu perfil
|
738
738
|
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>.
|
739
739
|
nickname_event:
|
@@ -743,25 +743,25 @@ ca:
|
|
743
743
|
reports:
|
744
744
|
resource_hidden:
|
745
745
|
email_intro: Una administradora ha eliminat el teu %{resource_type} degut a que has estat reportada com a %{report_reasons}.
|
746
|
-
email_outro: Has rebut aquesta notificació perquè
|
746
|
+
email_outro: Has rebut aquesta notificació perquè s'ha eliminiat un contingut que havies creat.
|
747
747
|
email_subject: S'ha eliminat el/la teu/teva %{resource_type}
|
748
748
|
notification_title: |-
|
749
749
|
Una administradora ha eliminat el teu %{resource_type} degut a que has estat reportada com a %{report_reasons}..</br>
|
750
750
|
<i>%{resource_content}</i>
|
751
751
|
resource_endorsed:
|
752
752
|
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:'
|
753
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint a %{endorser_nickname}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
753
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint a "%{endorser_nickname}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
754
754
|
email_subject: "%{endorser_nickname} s'ha adherit a una proposta"
|
755
755
|
notification_title: <a href="%{endorser_path}">%{endorser_name} %{endorser_nickname}</a> s'ha adherit a <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 qui estàs seguint, s'ha actualitzat.
|
759
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint a %{nickname}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
759
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint a "%{nickname}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
760
760
|
email_subject: "%{nickname} ha actualitzat el seu perfil"
|
761
761
|
notification_title: El <a href="%{resource_path}"> perfi l</a> de %{name} (%{nickname}), a qui estàs seguint, s'ha actualitzat.
|
762
762
|
user_officialized:
|
763
763
|
email_intro: La participant %{name} (%{nickname}) ha estat oficialitzada.
|
764
|
-
email_outro: Has rebut aquesta notificació perquè
|
764
|
+
email_outro: Has rebut aquesta notificació perquè administres la plataforma.
|
765
765
|
email_subject: "S'ha oficialitzat a %{name}"
|
766
766
|
notification_title: La participant %{name} (%{nickname}) ha estat oficialitzada.
|
767
767
|
export_mailer:
|
@@ -1019,13 +1019,13 @@ ca:
|
|
1019
1019
|
messaging:
|
1020
1020
|
conversation_mailer:
|
1021
1021
|
comanagers_new_conversation:
|
1022
|
-
admin_in_group: Reps aquesta notificació perquè
|
1022
|
+
admin_in_group: Reps aquesta notificació perquè administres el grup "%{group}".
|
1023
1023
|
greeting: Hola, %{recipient}!
|
1024
1024
|
intro: "%{manager} ha iniciat una nova conversa en nom de %{group}. Fes clic aquí per veure-la:"
|
1025
1025
|
outro: Gaudeix de Decidim!
|
1026
1026
|
subject: "%{manager} ha iniciat una nova conversa com a %{group}"
|
1027
1027
|
comanagers_new_message:
|
1028
|
-
admin_in_group: Reps aquesta notificació perquè
|
1028
|
+
admin_in_group: Reps aquesta notificació perquè administres el grup "%{group}".
|
1029
1029
|
greeting: Hola, %{recipient}!
|
1030
1030
|
intro: "%{manager} ha publicat nous missatge a una conversa en nom de %{group}. Fes clic aquí per veure-la:"
|
1031
1031
|
outro: Gaudeix de Decidim!
|
@@ -1036,13 +1036,13 @@ ca:
|
|
1036
1036
|
outro: Gaudeix de Decidim!
|
1037
1037
|
subject: "%{sender} ha iniciat una conversa amb tu"
|
1038
1038
|
new_group_conversation:
|
1039
|
-
admin_in_group: Reps aquesta notificació perquè
|
1039
|
+
admin_in_group: Reps aquesta notificació perquè administres el grup "%{group}".
|
1040
1040
|
greeting: Hola, %{recipient}!
|
1041
1041
|
intro: "%{sender} ha iniciat una nova conversa amb el %{group}. Fes clic aquí per veure-la:"
|
1042
1042
|
outro: Gaudeix de Decidim!
|
1043
1043
|
subject: "%{sender} ha iniciat una nova conversa amb %{group}"
|
1044
1044
|
new_group_message:
|
1045
|
-
admin_in_group: Reps aquesta notificació perquè
|
1045
|
+
admin_in_group: Reps aquesta notificació perquè administres el grup "%{group}".
|
1046
1046
|
greeting: Hola, %{recipient}!
|
1047
1047
|
intro: "%{sender} ha publicat nous missatge a una conversa amb el grup %{group}. Fes clic aquí per veure-la:"
|
1048
1048
|
outro: Gaudeix de Decidim!
|
@@ -1164,6 +1164,7 @@ ca:
|
|
1164
1164
|
no_notifications: Encara no hi ha notificacions.
|
1165
1165
|
show:
|
1166
1166
|
missing_event: Vaja, aquesta notificació pertany a un element que ja no està disponible. Pots descartar-la.
|
1167
|
+
moderated: Contingut moderat
|
1167
1168
|
notifications_digest_mailer:
|
1168
1169
|
header:
|
1169
1170
|
daily: Resum diari de notificacions
|
data/config/locales/cs.yml
CHANGED
data/config/locales/de.yml
CHANGED
@@ -76,9 +76,9 @@ de:
|
|
76
76
|
carrierwave:
|
77
77
|
errors:
|
78
78
|
file_cannot_be_processed: Datei konnte nicht verarbeitet werden
|
79
|
-
file_resolution_too_large: Die Datei-Auflösung ist zu
|
79
|
+
file_resolution_too_large: Die Datei-Auflösung ist zu gross
|
80
80
|
file_size_too_large: Datei ist zu groß
|
81
|
-
not_inside_organization: Die Datei ist keiner Organisation
|
81
|
+
not_inside_organization: Die Datei ist keiner Organisation angefügt.
|
82
82
|
date:
|
83
83
|
formats:
|
84
84
|
decidim_short: "%d/%m/%Y"
|
@@ -333,7 +333,7 @@ de:
|
|
333
333
|
'1': Erstellen Sie Ihre Änderung
|
334
334
|
'2': Vergleichen Sie Ihren Änderungsvorschlag
|
335
335
|
'3': Vervollständigen Sie Ihren Änderungsvorschlag
|
336
|
-
'4':
|
336
|
+
'4': Änderung veröffentlichen
|
337
337
|
anonymous_user: Anonym
|
338
338
|
application:
|
339
339
|
collection:
|
@@ -489,7 +489,7 @@ de:
|
|
489
489
|
button_url: URL des Call to Action
|
490
490
|
description: Beschreibung
|
491
491
|
footer_sub_hero:
|
492
|
-
name:
|
492
|
+
name: Abschnitt mit Plattformslogan
|
493
493
|
hero:
|
494
494
|
name: Hauptbild
|
495
495
|
hero_settings_form:
|
@@ -516,7 +516,7 @@ de:
|
|
516
516
|
stats:
|
517
517
|
name: Organisationsstatistiken
|
518
518
|
sub_hero:
|
519
|
-
name:
|
519
|
+
name: Banner unter dem Hauptbild (Beschreibungstext)
|
520
520
|
core:
|
521
521
|
actions:
|
522
522
|
login_before_access: Bitte melden Sie sich mit Ihrem Konto an, um auf diese Seite zuzugreifen
|
@@ -829,7 +829,7 @@ de:
|
|
829
829
|
message_1: Vorzugsweise ein Querformat ohne Text.
|
830
830
|
message_2: Der Dienst schneidet die Datei zu.
|
831
831
|
file_validation:
|
832
|
-
allowed_file_extensions: 'Erlaubte
|
832
|
+
allowed_file_extensions: 'Erlaubte Dateiformate: %{extensions}'
|
833
833
|
max_file_dimension: 'Maximale Dateigröße: %{resolution} Pixel'
|
834
834
|
max_file_size: 'Maximale Dateigröße: %{megabytes}MB'
|
835
835
|
files:
|
@@ -1167,6 +1167,7 @@ de:
|
|
1167
1167
|
no_notifications: Noch keine Benachrichtigungen
|
1168
1168
|
show:
|
1169
1169
|
missing_event: Hoppla, diese Benachrichtigung gehört zu einem Artikel, der nicht mehr verfügbar ist. Du kannst sie verwerfen.
|
1170
|
+
moderated: Inhalt moderiert
|
1170
1171
|
notifications_digest_mailer:
|
1171
1172
|
header:
|
1172
1173
|
daily: Tägliche Zusammenfassung
|
@@ -1240,7 +1241,7 @@ de:
|
|
1240
1241
|
metrics:
|
1241
1242
|
headline: Teilnahme an Zahlen
|
1242
1243
|
statistics:
|
1243
|
-
headline: Aktueller
|
1244
|
+
headline: Aktueller Status von %{organization}
|
1244
1245
|
sub_hero:
|
1245
1246
|
register: Registrieren
|
1246
1247
|
index:
|
@@ -1396,13 +1397,13 @@ de:
|
|
1396
1397
|
flag_modal:
|
1397
1398
|
already_reported: Dieser Inhalt wurde bereits gemeldet und wird von einem Administrator überprüft.
|
1398
1399
|
close: Schließen
|
1399
|
-
description:
|
1400
|
-
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}.
|
1400
|
+
description: Wieso ist dieser Inhalt problematisch / unangemessen?
|
1401
|
+
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.
|
1401
1402
|
offensive: Enthält Rassismus, Sexismus, Verunglimpfungen, persönliche Angriffe, Morddrohungen, Selbstmordanträge oder jede Form von Hassreden.
|
1402
1403
|
reason: Begründung
|
1403
|
-
report:
|
1404
|
+
report: Meldung erfassen
|
1404
1405
|
spam: Enthält Clickbait, Werbung, Scams oder Script Bots.
|
1405
|
-
title:
|
1406
|
+
title: Unangemessenen Inhalt melden
|
1406
1407
|
flag_user_modal:
|
1407
1408
|
already_reported: Dieser Inhalt wurde bereits gemeldet und wird von einem Administrator überprüft.
|
1408
1409
|
close: Schließen
|
@@ -1543,7 +1544,7 @@ de:
|
|
1543
1544
|
show:
|
1544
1545
|
version_index: Version %{index}
|
1545
1546
|
welcome_notification:
|
1546
|
-
default_body: <p>
|
1547
|
+
default_body: <p>Guten Tag {{name}}, vielen Dank dafür, dass Sie {{organization}} beigetreten sind und herzlich willkommen!</p><ul><li>Wenn Sie einen kurzen Überblick darüber bekommen möchten, was Sie hier tun können, schauen Sie sich den <a href="{{help_url}}">Hilfe-Abschnitt </a> an.</li><li>Sobald Sie ihn gelesen haben, bekommen Sie Ihr erstes Abzeichen. Hier finden Sie eine<a href="{{badges_url}}">Liste aller Abzeichen</a>, die Sie bei der Teilnahme auf {{organization}}</li> erhalten können<li>Folgen Sie anderen Menschen, teilen Sie die Erfahrung der Zusammenarbeit und Teilnahme auf {{organization}} mit ihnen. Machen Sie Vorschläge und Kommentare, nehmen Sie an Debatten teil, denken Sie darüber nach, wie Sie zum Gemeinwohl beitragen können, liefern Sie Argumente zum Überzeugen, hören und lesen Sie, um sich überzeugen zu lassen, drücken Sie Ihre Ideen auf konkrete und direkte Weise aus, reagieren Sie mit Geduld und Entschlossenheit, verteidigen Sie Ihre Ideen und bleiben Sie offen für die Zusammenarbeit und die Ideen anderer Menschen.</li></ul>
|
1547
1548
|
default_subject: Danke, dass Sie {{organization}} beigetreten sind!
|
1548
1549
|
wizard_step_form:
|
1549
1550
|
wizard_aside:
|
@@ -1585,27 +1586,27 @@ de:
|
|
1585
1586
|
updated_not_active: Ihr Passwort wurde erfolgreich vergeben.
|
1586
1587
|
mailer:
|
1587
1588
|
confirmation_instructions:
|
1588
|
-
action:
|
1589
|
+
action: Konto bestätigen
|
1589
1590
|
greeting: Willkommen %{recipient}!
|
1590
|
-
instruction: 'Sie
|
1591
|
-
subject:
|
1591
|
+
instruction: 'Bitte bestätigen Sie Ihre E-Mail-Adresse über den folgenden Link:'
|
1592
|
+
subject: E-Mail bestätigen
|
1592
1593
|
email_changed:
|
1593
1594
|
greeting: Hallo %{recipient}!
|
1594
|
-
message:
|
1595
|
+
message: Ihre E-Mail-Adresse wurde zu %{email} geändert.
|
1595
1596
|
subject: E-Mail geändert
|
1596
1597
|
invitation_instructions:
|
1597
|
-
accept:
|
1598
|
-
accept_until: Diese Einladung
|
1598
|
+
accept: Einladung annehmen
|
1599
|
+
accept_until: Diese Einladung ist bis %{due_date} gültig.
|
1599
1600
|
decline: Einladung ablehnen
|
1600
1601
|
hello: Hallo %{email},
|
1601
1602
|
ignore: |-
|
1602
1603
|
Wenn Sie die Einladung nicht annehmen möchten, ignorieren Sie diese E-Mail.<br />
|
1603
1604
|
Ihr Konto wird erst erstellt, wenn Sie auf den obigen Link zugreifen und Ihren Kontonamen und Ihr Passwort festlegen.
|
1604
1605
|
invited_you_as_admin: "%{invited_by} hat Sie als Admin von %{application} eingeladen. Sie können die Einladung über den folgenden Link akzeptieren."
|
1605
|
-
invited_you_as_private_user: "%{invited_by} hat Sie als privaten
|
1606
|
+
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."
|
1606
1607
|
someone_invited_you: Jemand hat Sie zu %{application} eingeladen. Sie können die EInladung über den folgenden Link akzeptieren.
|
1607
1608
|
someone_invited_you_as_admin: Jemand hat Sie als Admin zu %{application} eingeladen. Sie können die Einladung über den folgenden Link akzeptieren.
|
1608
|
-
someone_invited_you_as_private_user: Jemand hat Sie als
|
1609
|
+
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.
|
1609
1610
|
subject: Anweisungen zur Einladung
|
1610
1611
|
invite_admin:
|
1611
1612
|
subject: Du wurdest eingeladen, %{organization} zu verwalten
|
@@ -1620,18 +1621,18 @@ de:
|
|
1620
1621
|
message: Wir kontaktieren Sie, um Sie darüber zu informieren, dass Ihr Passwort geändert wurde.
|
1621
1622
|
subject: Passwort geändert
|
1622
1623
|
reset_password_instructions:
|
1623
|
-
action:
|
1624
|
+
action: Mein Passwort ändern
|
1624
1625
|
greeting: Hallo %{recipient}!
|
1625
|
-
instruction: Jemand hat einen Link angefordert, um Ihr Passwort zu ändern
|
1626
|
+
instruction: 'Jemand hat einen Link angefordert, um Ihr Passwort zu ändern. Falls Sie das selbst waren, folgen Sie diesem Link:'
|
1626
1627
|
instruction_2: Wenn Sie dies nicht angefordert haben, ignorieren Sie diese E-Mail.
|
1627
|
-
instruction_3: Ihr Passwort ändert sich erst, wenn Sie auf den
|
1628
|
-
subject: Passwort
|
1628
|
+
instruction_3: Ihr Passwort ändert sich erst, wenn Sie auf den angezeigten Link zugreifen und ein neues Passwort erstellen.
|
1629
|
+
subject: Passwort zurücksetzen
|
1629
1630
|
unlock_instructions:
|
1630
|
-
action:
|
1631
|
+
action: Mein Konto entsperren
|
1631
1632
|
greeting: Hallo %{recipient}!
|
1632
1633
|
instruction: 'Klicken Sie auf den folgenden Link, um Ihr Konto zu entsperren:'
|
1633
1634
|
message: Ihr Konto wurde aufgrund einer übermäßigen Anzahl fehlgeschlagener Anmeldeversuche gesperrt.
|
1634
|
-
subject:
|
1635
|
+
subject: Anweisungen zur Entsperrung
|
1635
1636
|
omniauth_callbacks:
|
1636
1637
|
failure: 'Sie konnten nicht mit Ihrem %{kind}-Account angemeldet werden. Grund: "%{reason}".'
|
1637
1638
|
success: Sie haben sich erfolgreich mit Ihrem %{kind}-Account angemeldet.
|
@@ -1645,7 +1646,7 @@ de:
|
|
1645
1646
|
title: Passwort ändern
|
1646
1647
|
new:
|
1647
1648
|
forgot_your_password: Haben Sie Ihr Passwort vergessen?
|
1648
|
-
send_me_reset_password_instructions:
|
1649
|
+
send_me_reset_password_instructions: Schicken Sie mir eine Anweisung zum Zurücksetzen des Passwortes
|
1649
1650
|
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.
|
1650
1651
|
send_instructions: Sie erhalten eine E-Mail mit Anweisungen zum Zurücksetzen Ihres Passworts in wenigen Minuten.
|
1651
1652
|
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.
|
data/config/locales/el.yml
CHANGED
@@ -74,10 +74,7 @@ el:
|
|
74
74
|
'true': 'Ναι'
|
75
75
|
carrierwave:
|
76
76
|
errors:
|
77
|
-
file_cannot_be_processed: Το αρχείο δεν μπορεί να επεξεργαστεί
|
78
|
-
file_resolution_too_large: Η ανάλυση του αρχείου είναι πολύ μεγάλη
|
79
77
|
file_size_too_large: Το μέγεθος του αρχείου είναι πολύ μεγάλο
|
80
|
-
not_inside_organization: Το αρχείο δεν είναι συνδεδεμένο σε κανέναν οργανισμό
|
81
78
|
date:
|
82
79
|
formats:
|
83
80
|
decidim_short: "%d/%m/%Y"
|
@@ -291,7 +288,6 @@ el:
|
|
291
288
|
'1': Δημιουργήστε την τροποποίησή σας
|
292
289
|
'2': Συγκρίνετε την τροποποίησή σας
|
293
290
|
'3': Ολοκληρώστε την τροποποίησή σας
|
294
|
-
'4': Δημοσιεύστε την τροποποίησή σας
|
295
291
|
anonymous_user: Ανώνυμη
|
296
292
|
application:
|
297
293
|
collection:
|
@@ -487,6 +483,7 @@ el:
|
|
487
483
|
newsletter: Λάβετε ένα περιστασιακό ενημερωτικό δελτίο με σχετικές πληροφορίες
|
488
484
|
newsletter_title: Άδεια επικοινωνίας
|
489
485
|
nickname_help: Το ψευδώνυμό σας στο %{organization}. Μπορεί να περιέχει μόνο γράμματα, αριθμούς, '-' και '_'.
|
486
|
+
sign_in: Σύνδεση
|
490
487
|
sign_up: Εγγραφή
|
491
488
|
sign_up_as:
|
492
489
|
legend: Εγγραφή ως
|
@@ -745,6 +742,7 @@ el:
|
|
745
742
|
file:
|
746
743
|
explanation: 'Οδηγίες για αρχείο:'
|
747
744
|
message_1: Πρέπει να είναι εικόνα ή έγγραφο.
|
745
|
+
message_2: Για εικόνες, χρησιμοποιήστε κατά προτίμηση οριζόντιας διάταξης, η υπηρεσία περικόπτει την εικόνα.
|
748
746
|
image:
|
749
747
|
explanation: 'Οδηγίες για εικόνα:'
|
750
748
|
message_1: Προτιμώμενη εικόνα οριζόντιας διάταξης που δεν περιέχει κείμενο.
|
@@ -1475,6 +1473,8 @@ el:
|
|
1475
1473
|
updated: Ο λογαριασμός σας ενημερώθηκε με επιτυχία.
|
1476
1474
|
sessions:
|
1477
1475
|
already_signed_out: Η έξοδος ολοκληρώθηκε με επιτυχία.
|
1476
|
+
new:
|
1477
|
+
sign_in: Σύνδεση
|
1478
1478
|
signed_in: Η είσοδος ολοκληρώθηκε με επιτυχία.
|
1479
1479
|
signed_out: Η έξοδος ολοκληρώθηκε με επιτυχία.
|
1480
1480
|
shared:
|
@@ -1483,6 +1483,7 @@ el:
|
|
1483
1483
|
didn_t_receive_confirmation_instructions: Δεν λάβατε οδηγίες επιβεβαίωσης;
|
1484
1484
|
didn_t_receive_unlock_instructions: Δεν λάβατε οδηγίες ξεκλειδώματος;
|
1485
1485
|
forgot_your_password: Ξεχάσατε τον κωδικό πρόσβασής σας;
|
1486
|
+
sign_in: Σύνδεση
|
1486
1487
|
sign_in_with_provider: Είσοδος με %{provider}
|
1487
1488
|
sign_up: Εγγραφή
|
1488
1489
|
minimum_password_length:
|
data/config/locales/en.yml
CHANGED
@@ -1171,6 +1171,7 @@ en:
|
|
1171
1171
|
no_notifications: No notifications yet.
|
1172
1172
|
show:
|
1173
1173
|
missing_event: Oops, this notification belongs to an item that is no longer available. You can discard it.
|
1174
|
+
moderated: Content moderated
|
1174
1175
|
notifications_digest_mailer:
|
1175
1176
|
header:
|
1176
1177
|
daily: Daily Notification Digest
|
data/config/locales/eo.yml
CHANGED
data/config/locales/es-MX.yml
CHANGED
@@ -75,7 +75,7 @@ es-MX:
|
|
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
|
@@ -333,7 +333,7 @@ es-MX:
|
|
333
333
|
'1': Crea tu enmienda
|
334
334
|
'2': Compara tu enmienda
|
335
335
|
'3': Completa tu enmienda
|
336
|
-
'4':
|
336
|
+
'4': Publica tu enmienda
|
337
337
|
anonymous_user: Anónimo
|
338
338
|
application:
|
339
339
|
collection:
|
@@ -535,7 +535,7 @@ es-MX:
|
|
535
535
|
username_help: Nombre público que aparece en tus mensajes. Con el objetivo de garantizar el anonimato, puede ser cualquier nombre.
|
536
536
|
registrations:
|
537
537
|
create:
|
538
|
-
error:
|
538
|
+
error: Se ha producido un error al crear tu cuenta.
|
539
539
|
new:
|
540
540
|
already_have_an_account?: '¿Ya tienes una cuenta?'
|
541
541
|
newsletter: Quiero recibir un boletín ocasional con información relevante
|
@@ -1167,6 +1167,7 @@ es-MX:
|
|
1167
1167
|
no_notifications: No hay notificaciones aún.
|
1168
1168
|
show:
|
1169
1169
|
missing_event: Vaya, esta notificación pertenece a un elemento que ya no está disponible. Puedes descartarla.
|
1170
|
+
moderated: Contenido moderado
|
1170
1171
|
notifications_digest_mailer:
|
1171
1172
|
header:
|
1172
1173
|
daily: Resumen diario de notificaciones
|
@@ -1664,7 +1665,7 @@ es-MX:
|
|
1664
1665
|
sessions:
|
1665
1666
|
already_signed_out: Sesión finalizada con éxito.
|
1666
1667
|
new:
|
1667
|
-
sign_in:
|
1668
|
+
sign_in: Iniciar sesión
|
1668
1669
|
signed_in: Sesión iniciada con éxito.
|
1669
1670
|
signed_out: Sesión finalizada con éxito.
|
1670
1671
|
shared:
|
@@ -1673,7 +1674,7 @@ es-MX:
|
|
1673
1674
|
didn_t_receive_confirmation_instructions: '¿No has recibido las instrucciones de confirmación?'
|
1674
1675
|
didn_t_receive_unlock_instructions: '¿No has recibido instrucciones de desbloqueo?'
|
1675
1676
|
forgot_your_password: '¿Olvidaste tu contraseña?'
|
1676
|
-
sign_in:
|
1677
|
+
sign_in: Iniciar sesión
|
1677
1678
|
sign_in_with_provider: Inicia sesión con %{provider}
|
1678
1679
|
sign_up: Regístrate
|
1679
1680
|
minimum_password_length:
|
data/config/locales/es-PY.yml
CHANGED
@@ -75,7 +75,7 @@ es-PY:
|
|
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
|
@@ -333,7 +333,7 @@ es-PY:
|
|
333
333
|
'1': Crea tu enmienda
|
334
334
|
'2': Compara tu enmienda
|
335
335
|
'3': Completa tu enmienda
|
336
|
-
'4':
|
336
|
+
'4': Publica tu enmienda
|
337
337
|
anonymous_user: Anónimo
|
338
338
|
application:
|
339
339
|
collection:
|
@@ -535,7 +535,7 @@ es-PY:
|
|
535
535
|
username_help: Nombre público que aparece en tus mensajes. Con el objetivo de garantizar el anonimato, puede ser cualquier nombre.
|
536
536
|
registrations:
|
537
537
|
create:
|
538
|
-
error:
|
538
|
+
error: Se ha producido un error al crear tu cuenta.
|
539
539
|
new:
|
540
540
|
already_have_an_account?: '¿Ya tienes una cuenta?'
|
541
541
|
newsletter: Quiero recibir un boletín ocasional con información relevante
|
@@ -1167,6 +1167,7 @@ es-PY:
|
|
1167
1167
|
no_notifications: No hay notificaciones aún.
|
1168
1168
|
show:
|
1169
1169
|
missing_event: Vaya, esta notificación pertenece a un elemento que ya no está disponible. Puedes descartarla.
|
1170
|
+
moderated: Contenido moderado
|
1170
1171
|
notifications_digest_mailer:
|
1171
1172
|
header:
|
1172
1173
|
daily: Resumen diario de notificaciones
|
@@ -1664,7 +1665,7 @@ es-PY:
|
|
1664
1665
|
sessions:
|
1665
1666
|
already_signed_out: Firmado con éxito.
|
1666
1667
|
new:
|
1667
|
-
sign_in:
|
1668
|
+
sign_in: Iniciar sesión
|
1668
1669
|
signed_in: Firmado con éxito
|
1669
1670
|
signed_out: Firmado con éxito.
|
1670
1671
|
shared:
|
@@ -1673,7 +1674,7 @@ es-PY:
|
|
1673
1674
|
didn_t_receive_confirmation_instructions: '¿No recibió las instrucciones de confirmación?'
|
1674
1675
|
didn_t_receive_unlock_instructions: '¿No recibió instrucciones de desbloqueo?'
|
1675
1676
|
forgot_your_password: '¿Olvidaste tu contraseña?'
|
1676
|
-
sign_in:
|
1677
|
+
sign_in: Iniciar sesión
|
1677
1678
|
sign_in_with_provider: Inicia sesión con %{provider}
|
1678
1679
|
sign_up: Regístrate
|
1679
1680
|
minimum_password_length:
|