decidim-core 0.29.3 → 0.29.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (140) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/activity/show.erb +6 -6
  3. data/app/cells/decidim/address/show.erb +3 -3
  4. data/app/cells/decidim/author/show.erb +2 -4
  5. data/app/cells/decidim/content_blocks/participatory_space_extra_data/extra_data.erb +2 -2
  6. data/app/cells/decidim/content_blocks/participatory_space_main_data/title.erb +11 -2
  7. data/app/cells/decidim/footer_topics/show.erb +2 -2
  8. data/app/cells/decidim/group_admins/show.erb +3 -1
  9. data/app/cells/decidim/group_members/show.erb +6 -2
  10. data/app/cells/decidim/images_panel/show.erb +5 -2
  11. data/app/cells/decidim/participatory_space_dropdown_metadata/metadata.erb +4 -4
  12. data/app/cells/decidim/report_button/flag_modal.erb +11 -9
  13. data/app/cells/decidim/report_user_button/flag_modal.erb +11 -10
  14. data/app/cells/decidim/upload_modal/files.erb +4 -4
  15. data/app/cells/decidim/upload_modal_cell.rb +5 -3
  16. data/app/commands/decidim/amendable/accept.rb +2 -1
  17. data/app/commands/decidim/create_report.rb +5 -1
  18. data/app/commands/decidim/invite_user.rb +1 -1
  19. data/app/controllers/concerns/decidim/headers/browser_feature_permissions.rb +50 -0
  20. data/app/controllers/concerns/decidim/participatory_space_context.rb +4 -1
  21. data/app/controllers/decidim/amendments_controller.rb +3 -3
  22. data/app/controllers/decidim/application_controller.rb +1 -0
  23. data/app/controllers/decidim/reports_controller.rb +6 -1
  24. data/app/forms/decidim/omniauth_registration_form.rb +1 -1
  25. data/app/forms/decidim/registration_form.rb +1 -1
  26. data/app/helpers/decidim/amendments_helper.rb +2 -1
  27. data/app/helpers/decidim/filters_helper.rb +25 -0
  28. data/app/helpers/decidim/layout_helper.rb +6 -0
  29. data/app/helpers/decidim/menu_helper.rb +2 -2
  30. data/app/helpers/decidim/paginate_helper.rb +1 -1
  31. data/app/helpers/decidim/tooltip_helper.rb +4 -1
  32. data/app/mailers/decidim/notifications_digest_mailer.rb +7 -1
  33. data/app/mailers/decidim/reported_mailer.rb +17 -2
  34. data/app/packs/images/decidim/default-avatar.svg +1 -1
  35. data/app/packs/src/decidim/callout.js +13 -8
  36. data/app/packs/src/decidim/confirm.js +79 -59
  37. data/app/packs/src/decidim/datepicker/generate_datepicker.js +2 -0
  38. data/app/packs/src/decidim/datepicker/generate_timepicker.js +2 -0
  39. data/app/packs/src/decidim/direct_uploads/upload_field.js +3 -4
  40. data/app/packs/src/decidim/direct_uploads/upload_modal.js +8 -9
  41. data/app/packs/src/decidim/dropdown_menu.js +18 -0
  42. data/app/packs/src/decidim/editor/common/suggestion.js +11 -1
  43. data/app/packs/src/decidim/form_remote.js +1 -1
  44. data/app/packs/src/decidim/impersonation.js +1 -1
  45. data/app/packs/src/decidim/index.js +5 -1
  46. data/app/packs/src/decidim/input_character_counter.js +1 -1
  47. data/app/packs/src/decidim/session_timeouter.js +1 -1
  48. data/app/packs/src/decidim/utilities/dom.js +148 -0
  49. data/app/packs/stylesheets/decidim/_activity.scss +4 -4
  50. data/app/packs/stylesheets/decidim/_cards.scss +4 -0
  51. data/app/packs/stylesheets/decidim/_filters.scss +1 -1
  52. data/app/packs/stylesheets/decidim/_header.scss +64 -37
  53. data/app/packs/stylesheets/decidim/_layout.scss +2 -2
  54. data/app/packs/stylesheets/decidim/_modal.scss +1 -5
  55. data/app/packs/stylesheets/decidim/_modal_update.scss +5 -1
  56. data/app/permissions/decidim/default_permissions.rb +2 -0
  57. data/app/permissions/decidim/permissions.rb +13 -1
  58. data/app/presenters/decidim/notification_to_mailer_presenter.rb +7 -3
  59. data/app/queries/decidim/last_activity.rb +25 -0
  60. data/app/views/decidim/errors/internal_server_error.html.erb +1 -1
  61. data/app/views/decidim/errors/not_found.html.erb +1 -1
  62. data/app/views/decidim/messaging/conversations/_reply_form.html.erb +1 -2
  63. data/app/views/decidim/messaging/conversations/_start.html.erb +1 -1
  64. data/app/views/decidim/newsletters/unsubscribe.html.erb +16 -4
  65. data/app/views/decidim/reported_mailer/hidden_manually.html.erb +25 -0
  66. data/app/views/decidim/searches/_filters.html.erb +48 -13
  67. data/app/views/decidim/shared/_component_announcement.html.erb +1 -1
  68. data/app/views/decidim/shared/_confirm_modal.html.erb +3 -5
  69. data/app/views/decidim/shared/_filters.html.erb +6 -4
  70. data/app/views/decidim/shared/_results_per_page.html.erb +1 -1
  71. data/app/views/kaminari/decidim/_page.html.erb +1 -1
  72. data/app/views/kaminari/decidim/_paginator.html.erb +1 -1
  73. data/app/views/layouts/decidim/_js_configuration.html.erb +1 -0
  74. data/app/views/layouts/decidim/_logo.html.erb +2 -2
  75. data/app/views/layouts/decidim/footer/_main.html.erb +1 -1
  76. data/app/views/layouts/decidim/footer/_main_intro.html.erb +1 -1
  77. data/app/views/layouts/decidim/footer/_mini.html.erb +2 -2
  78. data/app/views/layouts/decidim/header/_main.html.erb +2 -2
  79. data/app/views/layouts/decidim/header/_main_links_desktop.html.erb +6 -0
  80. data/app/views/layouts/decidim/header/_main_links_dropdown.html.erb +2 -0
  81. data/app/views/layouts/decidim/header/_main_links_mobile_account.html.erb +1 -1
  82. data/app/views/layouts/decidim/header/_menu_breadcrumb_main_dropdown_desktop.html.erb +5 -11
  83. data/app/views/layouts/decidim/header/_menu_breadcrumb_mobile_tablet.html.erb +5 -5
  84. data/app/views/layouts/decidim/header/_mobile_language_choose.html.erb +1 -1
  85. data/config/locales/ar.yml +0 -9
  86. data/config/locales/bg-BG.yml +2 -2
  87. data/config/locales/bg.yml +0 -11
  88. data/config/locales/ca-IT.yml +41 -6
  89. data/config/locales/ca.yml +41 -6
  90. data/config/locales/cs.yml +33 -10
  91. data/config/locales/de.yml +63 -25
  92. data/config/locales/el.yml +0 -10
  93. data/config/locales/en.yml +41 -6
  94. data/config/locales/es-MX.yml +42 -7
  95. data/config/locales/es-PY.yml +42 -7
  96. data/config/locales/es.yml +41 -6
  97. data/config/locales/eu.yml +79 -43
  98. data/config/locales/fi-plain.yml +55 -8
  99. data/config/locales/fi.yml +56 -9
  100. data/config/locales/fr-CA.yml +43 -9
  101. data/config/locales/fr-LU.yml +3 -3
  102. data/config/locales/fr.yml +43 -9
  103. data/config/locales/gl.yml +0 -8
  104. data/config/locales/hu.yml +0 -11
  105. data/config/locales/id-ID.yml +0 -8
  106. data/config/locales/is-IS.yml +0 -6
  107. data/config/locales/it.yml +124 -8
  108. data/config/locales/ja.yml +45 -11
  109. data/config/locales/lb-LU.yml +2 -2
  110. data/config/locales/lb.yml +0 -8
  111. data/config/locales/lt.yml +0 -11
  112. data/config/locales/lv.yml +0 -8
  113. data/config/locales/nl.yml +0 -8
  114. data/config/locales/no.yml +0 -8
  115. data/config/locales/pl.yml +0 -11
  116. data/config/locales/pt-BR.yml +1 -10
  117. data/config/locales/pt.yml +0 -8
  118. data/config/locales/ro-RO.yml +0 -14
  119. data/config/locales/ru.yml +0 -8
  120. data/config/locales/sk-SK.yml +3 -3
  121. data/config/locales/sk.yml +2 -8
  122. data/config/locales/sv.yml +56 -16
  123. data/config/locales/tr-TR.yml +1 -8
  124. data/config/locales/uk.yml +0 -7
  125. data/config/locales/zh-CN.yml +0 -8
  126. data/config/locales/zh-TW.yml +0 -11
  127. data/db/migrate/20171212103803_create_unique_nicknames.rb +1 -1
  128. data/db/migrate/20180221101934_fix_nickname_index.rb +1 -1
  129. data/db/migrate/20180706104107_add_nickname_to_managed_users.rb +1 -1
  130. data/db/migrate/20181001124950_move_users_groups_to_users_table.rb +1 -1
  131. data/db/migrate/20190412131728_fix_user_names.rb +1 -1
  132. data/lib/decidim/assets/tailwind/tailwind.config.js.erb +2 -1
  133. data/lib/decidim/core/test/factories.rb +2 -2
  134. data/lib/decidim/core/test/shared_examples/announcements_examples.rb +4 -0
  135. data/lib/decidim/core/version.rb +1 -1
  136. data/lib/decidim/form_builder.rb +14 -0
  137. data/lib/decidim/nicknamizable.rb +6 -9
  138. data/lib/tasks/upgrade/decidim_fix_nickname_uniqueness.rake +1 -1
  139. metadata +11 -7
  140. /data/app/views/decidim/reported_mailer/{hide.html.erb → hidden_automatically.html.erb} +0 -0
@@ -160,6 +160,13 @@ de:
160
160
  x_seconds:
161
161
  one: 1 Sekunde
162
162
  other: "%{count} Sekunden"
163
+ widget:
164
+ label:
165
+ date: Datum für %{label} auswählen
166
+ time: Zeit für %{label} auswählen
167
+ picker:
168
+ date_button: Kalenderauswahl für %{label} öffnen
169
+ time_button: Öffne Zeitauswahl für %{label}
163
170
  decidim:
164
171
  accessibility:
165
172
  external_link: Externer Link
@@ -176,7 +183,7 @@ de:
176
183
  close: Fenster schließen
177
184
  ok: Ja, ich möchte mein Konto löschen
178
185
  question: Sind Sie sicher, dass Sie Ihr Konto löschen möchten?
179
- title: Mein Konto löschen
186
+ title: Konto löschen
180
187
  explanation: Bitte geben Sie den Grund an, warum Sie Ihr Konto löschen möchten (optional).
181
188
  leaving_authorizations_behind: Einige Daten, die an Ihre Autorisierung gebunden sind, werden aus Sicherheitsgründen gespeichert. Wenn Sie ein anderes Konto erstellen und erneut autorisieren, werden diese Daten auf Ihr neues Konto wiederhergestellt.
182
189
  destroy:
@@ -460,7 +467,7 @@ de:
460
467
  unauthorized:
461
468
  explanation: Leider können Sie diese Aktion nicht ausführen, da einige Ihrer Autorisierungsdaten nicht übereinstimmen.
462
469
  invalid_field: "%{field} Wert %{value} ist nicht gültig."
463
- ok: Ok
470
+ ok: OK
464
471
  title: Nicht berechtigt
465
472
  unconfirmed:
466
473
  confirmation_instructions: 'Wenn Sie die Bestätigungsanweisungen nicht erhalten haben, können Sie sie erneut anfordern:'
@@ -687,14 +694,14 @@ de:
687
694
  success: Bild erfolgreich hochgeladen.
688
695
  drag_and_drop_help: Sie können Bilder per Drag & Drop hinzufügen oder per Copy & Paste.
689
696
  endorsement_buttons_cell:
690
- already_endorsed: Gefällt mir nicht
691
- endorse: Gefällt mir
697
+ already_endorsed: Nicht unterstützen
698
+ endorse: Unterstützen
692
699
  endorsements:
693
700
  identities:
694
701
  done: Erledigt
695
702
  select_identity: Identität auswählen
696
703
  endorsers_list:
697
- endorsed_by: Gefällt
704
+ endorsed_by: Unterstützt von
698
705
  errors:
699
706
  files:
700
707
  file_cannot_be_processed: Datei konnte nicht verarbeitet werden
@@ -720,68 +727,68 @@ de:
720
727
  amendments:
721
728
  amendment_accepted:
722
729
  affected_user:
723
- email_intro: 'Eine Änderung an %{amendable_title} wurde akzeptiert. Sie können das auf dieser Seite sehen:'
730
+ email_intro: 'Eine Änderung an %{amendable_title} wurde akzeptiert. Sehen Sie es sich auf dieser Seite an:'
724
731
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von %{amendable_title} sind.
725
732
  email_subject: Akzeptierte Änderung für %{amendable_title} von %{emendation_author_nickname}
726
733
  notification_title: Die <a href="%{emendation_path}">Änderung</a> von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> für <a href="%{amendable_path}">%{amendable_title}</a> wurde angenommen.
727
734
  follower:
728
- email_intro: 'Eine Änderung für %{amendable_title} wurde akzeptiert. Sie können das auf dieser Seite sehen:'
735
+ email_intro: 'Eine Änderung für %{amendable_title} wurde akzeptiert. Sehen Sie es sich auf dieser Seite an:'
729
736
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
730
737
  email_subject: Akzeptierte Änderung für %{amendable_title} von %{emendation_author_nickname}
731
738
  notification_title: Die <a href="%{emendation_path}">Änderung</a> von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> für <a href="%{amendable_path}">%{amendable_title}</a> wurde akzeptiert.
732
739
  amendment_created:
733
740
  affected_user:
734
- email_intro: 'Eine neue Änderung wurde für %{amendable_title} vorgeschlagen. Sie können das auf dieser Seite sehen:'
741
+ email_intro: 'Eine neue Änderung wurde für %{amendable_title} vorgeschlagen. Sehen Sie es sich auf dieser Seite an:'
735
742
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von %{amendable_title} sind.
736
743
  email_subject: Neuer Änderungsantrag für %{amendable_title}
737
744
  notification_title: Neue Änderung für <a href="%{amendable_path}">%{amendable_title}</a> erstellt.
738
745
  follower:
739
- email_intro: 'Eine neue Änderung für %{amendable_title} wurde erstellt. Sie können das auf dieser Seite sehen:'
746
+ email_intro: 'Eine neue Änderung für %{amendable_title} wurde erstellt. Sehen Sie es sich auf dieser Seite an:'
740
747
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
741
748
  email_subject: Neuer Änderungsantrag für %{amendable_title}
742
749
  notification_title: Eine neue Änderung für <a href="%{amendable_path}">%{amendable_title}</a> wurde erstellt.
743
750
  amendment_promoted:
744
751
  affected_user:
745
- email_intro: 'Eine abgelehnte Änderung an %{amendable_title} wurde als neue/n %{amendable_type} veröffentlicht. Sie können das auf dieser Seite sehen:'
752
+ email_intro: 'Eine abgelehnte Änderung an %{amendable_title} wurde als neue/n %{amendable_type} veröffentlicht. Sehen Sie es sich auf dieser Seite an:'
746
753
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von %{amendable_title} sind.
747
754
  email_subject: Eine Änderung von %{emendation_author_nickname} wurde als neue/n %{amendable_type} veröffentlicht
748
755
  notification_title: Die <a href="%{emendation_path}">abgelehnte Änderung</a> für <a href="%{amendable_path}">%{amendable_title}</a> wurde von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> als neue/n %{amendable_type} veröffentlicht.
749
756
  follower:
750
- email_intro: 'Eine abgelehnte Änderung für %{amendable_title} wurde als neue/n %{amendable_type} veröffentlicht. Sie können das auf dieser Seite sehen:'
757
+ email_intro: 'Eine abgelehnte Änderung für %{amendable_title} wurde als neue/n %{amendable_type} veröffentlicht. Sehen Sie es sich auf dieser Seite an:'
751
758
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
752
759
  email_subject: Eine Änderung von %{emendation_author_nickname} wurde als neue/n/s %{amendable_type} veröffentlicht
753
760
  notification_title: Eine <a href="%{emendation_path}">abgelehnte Änderung</a> für <a href="%{amendable_path}">%{amendable_title}</a> wurde von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> als neue/n/s %{amendable_type} veröffentlicht.
754
761
  amendment_rejected:
755
762
  affected_user:
756
- email_intro: 'Eine Änderung an %{amendable_title} wurde abgelehnt. Sie können das auf dieser Seite sehen:'
763
+ email_intro: 'Eine Änderung an %{amendable_title} wurde abgelehnt. Sehen Sie es sich auf dieser Seite an:'
757
764
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von %{amendable_title} sind.
758
765
  email_subject: Abgelehnter Änderungsantrag für %{amendable_title} von %{emendation_author_nickname}
759
766
  notification_title: Die <a href="%{emendation_path}">Änderung</a> von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> für <a href="%{amendable_path}">%{amendable_title}</a> wurde abgelehnt.
760
767
  follower:
761
- email_intro: 'Eine Änderung für %{amendable_title} wurde abgelehnt. Sie können das auf dieser Seite sehen:'
768
+ email_intro: 'Eine Änderung für %{amendable_title} wurde abgelehnt. Sehen Sie es sich auf dieser Seite an:'
762
769
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title}. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
763
770
  email_subject: Abgelehnte Änderung für %{amendable_title} von %{emendation_author_nickname}
764
771
  notification_title: Die <a href="%{emendation_path}">Änderung</a> für <a href="%{amendable_path}">%{amendable_title}</a> von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> wurde abgelehnt.
765
772
  emendation_promoted:
766
773
  follower:
767
- email_intro: 'Eine Änderung wurde für %{amendable_title} abgelehnt. Sie können es auf dieser Seite sehen:'
774
+ email_intro: 'Eine Änderung wurde für %{amendable_title} abgelehnt. Sehen Sie es sich auf dieser Seite an:'
768
775
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title} mitverfasst haben.
769
776
  email_subject: Eine Änderung von %{emendation_author_nickname} ist als neuer %{amendable_type} veröffentlicht worden
770
777
  attachments:
771
778
  attachment_created:
772
- email_intro: 'Ein neues Dokument wurde zu %{resource_title} hinzugefügt. Sie können es auf dieser Seite sehen:'
779
+ email_intro: 'Ein neues Dokument wurde zu %{resource_title} hinzugefügt. Sehen Sie es sich auf dieser Seite an:'
773
780
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{resource_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
774
781
  email_subject: Eine Aktualisierung auf %{resource_title}
775
782
  notification_title: Ein <a href="%{resource_path}">neues Dokument</a> wurde zu <a href="%{attached_to_url}">%{resource_title}</a>hinzugefügt
776
783
  components:
777
784
  component_published:
778
- email_intro: 'Die Komponente %{resource_title} ist jetzt für %{participatory_space_title} aktiv. Sie können das auf dieser Seite sehen:'
785
+ email_intro: 'Die Komponente %{resource_title} ist jetzt für %{participatory_space_title} aktiv. Sehen Sie es sich auf dieser Seite an:'
779
786
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
780
787
  email_subject: Eine Aktualisierung auf %{participatory_space_title}
781
788
  notification_title: Die Komponente %{resource_title} ist jetzt für <a href="%{resource_path}">%{participatory_space_title}</a> aktiv
782
789
  email_event:
783
790
  email_greeting: Hallo %{user_name},
784
- email_intro: 'Es wurde ein Update auf "%{resource_title}" vorgenommen. Sie können das auf dieser Seite sehen:'
791
+ email_intro: 'Es wurde ein Update auf "%{resource_title}" vorgenommen. Sehen Sie es sich auf dieser Seite an:'
785
792
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
786
793
  email_subject: Eine Aktualisierung auf %{resource_title}
787
794
  gamification:
@@ -988,7 +995,12 @@ de:
988
995
  title: Was sind Abzeichen?
989
996
  group_admins:
990
997
  actions:
991
- are_you_sure: Sind Sie sicher? Dadurch wird der Teilnehmer nicht aus der Gruppe entfernt.
998
+ confirm_modal:
999
+ ok_add: Neuen Admin hinzufügen
1000
+ ok_remove: Admin entfernen
1001
+ title_add: Neuer Admin bestätigen
1002
+ title_remove: Admin entfernen
1003
+ confirm_remove_from_admin: Sind Sie sicher, dass Sie den Admin dieser Gruppe entfernen möchten?
992
1004
  demote_admin: Entferne Admin
993
1005
  demote:
994
1006
  error: Beim Entfernen dieses Teilnehmers aus der Adminliste ist ein Fehler aufgetreten.
@@ -1018,7 +1030,11 @@ de:
1018
1030
  error: Bei der Annahme dieser Beitrittsanfrage ist ein Fehler aufgetreten.
1019
1031
  success: Beitrittsanfrage erfolgreich angenommen.
1020
1032
  actions:
1021
- are_you_sure: Sind Sie sich sicher?
1033
+ confirm_modal:
1034
+ ok_remove: Mitglied entfernen
1035
+ title_remove: Mitglied entfernen
1036
+ confirm_promote_to_admin: Sind Sie sicher, dass Sie dieses Konto als Admin hinzufügen möchten?
1037
+ confirm_remove_from_group: Sind Sie sicher, dass Sie dieses Konto von der Gruppe entfernen möchten?
1022
1038
  promote_to_admin: Zum Admin ernennen
1023
1039
  remove_from_group: Benutzer entfernen
1024
1040
  index:
@@ -1256,11 +1272,12 @@ de:
1256
1272
  main_image: Hauptbild
1257
1273
  newsletters:
1258
1274
  unsubscribe:
1259
- check_subscription: Wenn Sie Ihre Einstellungen ändern möchten, können Sie dies auf der <a href="%{link}" target="_blank">Konfigurationsseite</a> tun.
1275
+ check_subscription_html: Wenn Sie diese wieder erhalten möchten, können Sie Ihr Abonnement jederzeit auf der <a href="%{link}" target="_blank">Einstellungsseite</a> wieder aktivieren.
1260
1276
  error: Es gab ein Problem beim Kündigen des Abonnements.
1277
+ subscription_preferences: Wir haben Ihre Abonnement-Einstellungen aktualisiert und Sie erhalten keine Newsletter mehr von %{organization_name}.
1261
1278
  success: Sie haben sich erfolgreich abgemeldet.
1262
1279
  token_error: Der Link ist abgelaufen.
1263
- unsubscribe: Abmelden
1280
+ unsubscribe: Newsletter kündigen
1264
1281
  newsletters_opt_in:
1265
1282
  unauthorized: Entschuldigung, dieser Link ist nicht mehr verfügbar.
1266
1283
  update:
@@ -1268,7 +1285,6 @@ de:
1268
1285
  success: Newslettereinstellungen wurden erfolgreich aktualisiert.
1269
1286
  newsletters_opt_in_mailer:
1270
1287
  notify:
1271
- body_1: Die Verarbeitung personenbezogener Daten und deren Schutz wird für uns alle immer wichtiger. Mit der neuen Datenschutz-Grundverordnung (DSGV) vom 25. Mai 2018 haben Einzelpersonen eine bessere Kontrolle über ihre personenbezogenen Daten. Aus diesem Grund benötigen wir Ihr "OK" um weiterhin relevante Informationen über die Aktivitäten der %{organization_name}zu senden.
1272
1288
  body_2: 'Wie können Sie uns Ihre Zustimmung geben? Klicken Sie einfach auf den folgenden Knopf:'
1273
1289
  body_3: Mit dieser Zustimmung können Sie weiterhin Informationen über die Dienste der Plattform erhalten. Wenn wir im Gegenteil keine positive Bestätigung von Ihnen erhalten, werden wir Ihnen keine Nachrichten mehr senden. Wenn Sie bestätigen, dass Sie weiterhin informiert werden möchten, haben Sie jederzeit die Möglichkeit, den Vorgang abzubrechen.
1274
1290
  button: Ja, ich möchte weiterhin relevante Informationen erhalten
@@ -1427,11 +1443,24 @@ de:
1427
1443
  confirmation_instructions_sent: E-Mail-Bestätigungsanweisungen gesendet.
1428
1444
  fill_in_email_to_confirm_it: Bitte geben Sie die E-Mail-Adresse Ihrer Gruppe zur Bestätigung ein.
1429
1445
  reported_mailer:
1430
- hide:
1446
+ hidden_automatically:
1447
+ content: Gemeldeter Inhalt
1448
+ details: Details
1431
1449
  hello: Hallo %{name},
1432
1450
  manage_moderations: Moderationen verwalten
1451
+ participatory_space: Beteiligungsbereich
1452
+ reason: Begründung
1433
1453
  report_html: <p>Der folgende <a href="%{url}">Inhalt</a> wurde automatisch ausgeblendet.</p>
1434
1454
  subject: Eine Ressource wurde automatisch ausgeblendet
1455
+ hidden_manually:
1456
+ content: Gemeldeter Inhalt
1457
+ details: Details
1458
+ hello: Hallo %{name},
1459
+ manage_moderations: Moderationen verwalten
1460
+ participatory_space: Beteiligungsbereich
1461
+ reason: Begründung
1462
+ report_html: <p>Der folgende <a href="%{url}">Inhalt</a> wurde durch %{moderator} ausgeblendet.</p>
1463
+ subject: Eine Ressource wurde durch %{moderator} ausgeblendet
1435
1464
  report:
1436
1465
  authors: Autoren
1437
1466
  content: Gemeldeter Inhalt
@@ -1449,6 +1478,8 @@ de:
1449
1478
  create:
1450
1479
  error: Beim Erstellen des Berichts ist ein Fehler aufgetreten. Bitte, versuche es noch einmal.
1451
1480
  success: Der Bericht wurde erfolgreich erstellt und wird von einem Administrator überprüft.
1481
+ hide:
1482
+ success: Diese Ressource wurde ausgeblendet.
1452
1483
  parent_hidden:
1453
1484
  report_details: Die übergeordnete Ressource wurde ausgeblendet
1454
1485
  resource_endorsements:
@@ -1474,6 +1505,7 @@ de:
1474
1505
  searches:
1475
1506
  filters:
1476
1507
  jump_to: 'Springen zu:'
1508
+ resource: "%{label} nach %{collection}"
1477
1509
  search: Suchen
1478
1510
  state:
1479
1511
  active: Aktiv
@@ -1494,8 +1526,9 @@ de:
1494
1526
  confirm_modal:
1495
1527
  cancel: Abbrechen
1496
1528
  close_modal: Fenster schließen
1497
- ok: Ok
1529
+ ok: OK
1498
1530
  title: Bestätigen
1531
+ confirm_unload: Diese Seite enthält ungespeicherte Änderungen. Möchten Sie die Seite dennoch verlassen?
1499
1532
  embed:
1500
1533
  title: Eingebetteter Videoinhalt
1501
1534
  extended_navigation_bar:
@@ -1960,14 +1993,17 @@ de:
1960
1993
  edit: Bearbeiten
1961
1994
  footer:
1962
1995
  cc_by_license: Creative Commons Lizenz
1996
+ current_organization_img: "%{organization} (zur Startseite)"
1963
1997
  data_consent_settings: Cookie Einstellungen
1964
1998
  decidim_logo: Decidim-Logo
1965
1999
  decidim_title: Decidim
1966
2000
  download_open_data: Open Data Dateien herunterladen
2001
+ help: Hilfe
1967
2002
  log_in: Anmelden
1968
2003
  made_with_open_source: Website mit <a target="_blank" href="https://github.com/decidim/decidim">freier Software erstellt</a>.
1969
2004
  resources: Ressourcen
1970
2005
  sign_up: Konto erstellen
2006
+ social_media: Social Media
1971
2007
  terms_of_service: Nutzungsbedingungen
1972
2008
  header:
1973
2009
  log_in: Anmelden
@@ -2007,10 +2043,12 @@ de:
2007
2043
  profile: Mein Konto
2008
2044
  public_profile: Mein öffentliches Profil
2009
2045
  title: Profil-Links
2046
+ unread_conversations: Sie haben ungelesene Unterhaltungen
2047
+ unread_notifications: Sie haben ungelesene Benachrichtigungen
2010
2048
  user_profile:
2011
2049
  account: Konto
2012
2050
  authorizations: Berechtigungen
2013
- delete_my_account: Löschen Sie mein Konto
2051
+ delete_my_account: Konto löschen
2014
2052
  my_data: Meine Daten
2015
2053
  my_interests: Meine Interessen
2016
2054
  notifications_settings: Benachrichtigungseinstellungen
@@ -520,7 +520,6 @@ el:
520
520
  drag_and_drop_help: Προσθήκη εικόνων σύροντας τις & ρίχνοντας ή επικολλώντας αυτές.
521
521
  endorsement_buttons_cell:
522
522
  already_endorsed: Δεν μου αρέσει
523
- endorse: Μου αρέσει
524
523
  endorsements:
525
524
  identities:
526
525
  done: Τέλος
@@ -739,7 +738,6 @@ el:
739
738
  title: Τι είναι τα εμβλήματα;
740
739
  group_admins:
741
740
  actions:
742
- are_you_sure: Είσαι βέβαιοι; Αυτό δεν θα καταργήσει τον συμμετέχοντα από την ομάδα.
743
741
  demote_admin: Κατάργηση διαχειριστή
744
742
  demote:
745
743
  error: Υπήρξε ένα πρόβλημα κατά την κατάργηση αυτού του συμμετέχοντα από τη λίστα διαχειριστών.
@@ -768,7 +766,6 @@ el:
768
766
  error: Υπήρξε ένα πρόβλημα κατά την αποδοχή αυτού του αιτήματος συμμετοχής.
769
767
  success: Το αίτημα συμμετοχής έγινε δεκτό με επιτυχία.
770
768
  actions:
771
- are_you_sure: Είστε βέβαιοι;
772
769
  promote_to_admin: Ορισμός διαχειριστή
773
770
  remove_from_group: Κατάργηση συμμετέχοντα
774
771
  index:
@@ -959,10 +956,8 @@ el:
959
956
  unsubscribe:
960
957
  success: Καταργήσατε την εγγραφή σας με επιτυχία.
961
958
  token_error: Ο σύνδεσμος έχει λήξει.
962
- unsubscribe: Κατάργηση εγγραφής
963
959
  newsletters_opt_in_mailer:
964
960
  notify:
965
- body_1: Η επεξεργασία των προσωπικών δεδομένων και η προστασία τους καθίστανται όλο και πιο σημαντικές για όλους μας. Με τον νέο Γενικό Κανονισμό για την Προστασία Δεδομένων (ΓΚΠΔ) της 25ης Μαΐου 2018, τα άτομα έχουν καλύτερο έλεγχο των προσωπικών τους δεδομένων. Για αυτόν τον λόγο, χρειαζόμαστε τη συγκατάθεσή σας για να συνεχίσουμε να στέλνουμε σχετικές πληροφορίες σχετικά με τις δραστηριότητες του οργανισμού %{organization_name}.
966
961
  body_2: 'Πώς μπορείτε να μας παρέχετε τη συγκατάθεσή σας; Απλώς κάντε κλικ στο παρακάτω κουμπί:'
967
962
  body_3: Με αυτήν τη συγκατάθεση, θα μπορείτε να συνεχίσετε να λαμβάνετε πληροφορίες σχετικά με τις υπηρεσίες της πλατφόρμας. Εάν, αντίθετα, δεν λάβουμε θετική επιβεβαίωση εκ μέρους σας, θα σταματήσουμε να σας στέλνουμε τα μηνύματά μας. Εάν επιβεβαιώσετε ότι θέλετε να συνεχίσετε να ενημερώνεστε, θα έχετε πάντα την επιλογή να ακυρώσετε τη συγκατάθεσή σας ανά πάσα στιγμή.
968
963
  button: Ναι, θέλω να συνεχίσω να λαμβάνω σχετικές πληροφορίες
@@ -1082,11 +1077,6 @@ el:
1082
1077
  confirmation_instructions_sent: Στάλθηκαν οι οδηγίες επιβεβαίωσης email.
1083
1078
  fill_in_email_to_confirm_it: Συμπληρώστε τη διεύθυνση email της ομάδας σας για να την επιβεβαιώσετε.
1084
1079
  reported_mailer:
1085
- hide:
1086
- hello: Γεια σας %{name},
1087
- manage_moderations: Διαχείριση εποπτεύσεων
1088
- report_html: <p>Το παρακάτω <a href="%{url}">περιεχόμενο</a> αποκρύφτηκε αυτόματα.</p>
1089
- subject: Ένας πόρος αποκρύφτηκε αυτόματα
1090
1080
  report:
1091
1081
  authors: Συγγραφείς
1092
1082
  content: Αναφερόμενο περιεχόμενο
@@ -160,6 +160,13 @@ en:
160
160
  x_seconds:
161
161
  one: 1 second
162
162
  other: "%{count} seconds"
163
+ widget:
164
+ label:
165
+ date: Select date for %{label}
166
+ time: Select time for %{label}
167
+ picker:
168
+ date_button: Open calendar picker for %{label}
169
+ time_button: Open time picker for %{label}
163
170
  decidim:
164
171
  accessibility:
165
172
  external_link: External link
@@ -990,7 +997,12 @@ en:
990
997
  title: What are the badges?
991
998
  group_admins:
992
999
  actions:
993
- are_you_sure: Are you sure? This will not remove the participant from the group.
1000
+ confirm_modal:
1001
+ ok_add: Add an administrator
1002
+ ok_remove: Remove the administrator
1003
+ title_add: Confirm the new administrator
1004
+ title_remove: Remove the administrator
1005
+ confirm_remove_from_admin: Are you sure you want to remove the administrator from this group?
994
1006
  demote_admin: Remove admin
995
1007
  demote:
996
1008
  error: There was a problem removing this participant from the admins list.
@@ -1020,7 +1032,11 @@ en:
1020
1032
  error: There was a problem accepting this join request.
1021
1033
  success: Join request successfully accepted.
1022
1034
  actions:
1023
- are_you_sure: Are you sure?
1035
+ confirm_modal:
1036
+ ok_remove: Remove the member
1037
+ title_remove: Remove the member
1038
+ confirm_promote_to_admin: Are you sure you want to add this user as an administrator?
1039
+ confirm_remove_from_group: Are you sure you want to remove the user from this group?
1024
1040
  promote_to_admin: Make admin
1025
1041
  remove_from_group: Remove participant
1026
1042
  index:
@@ -1258,11 +1274,12 @@ en:
1258
1274
  main_image: Main image
1259
1275
  newsletters:
1260
1276
  unsubscribe:
1261
- check_subscription: If you want to change your preferences, you can do so in the <a href="%{link}" target="_blank">configuration page</a>.
1277
+ check_subscription_html: If you'd like to start receiving them again, you can re-enable your subscription anytime from the <a href="%{link}" target="_blank">settings page</a>.
1262
1278
  error: There was a problem unsubscribing.
1279
+ subscription_preferences: We have updated your subscription preferences, and you will no longer receive newsletters from %{organization_name}.
1263
1280
  success: You are unsubscribed successfully.
1264
1281
  token_error: The link has expired.
1265
- unsubscribe: Unsubscribe
1282
+ unsubscribe: Unsubscribe from newsletter
1266
1283
  newsletters_opt_in:
1267
1284
  unauthorized: Sorry, this link is no longer available.
1268
1285
  update:
@@ -1270,7 +1287,7 @@ en:
1270
1287
  success: Newsletter settings successfully updated.
1271
1288
  newsletters_opt_in_mailer:
1272
1289
  notify:
1273
- body_1: The processing of personal data and its protection is becoming increasingly important for all of us. With the new General Data Protection Regulation (GDPR) of May 25, 2018, individuals have better control over their personal data. For this reason we need your "OK" to continue sending relevant information about the activities of the %{organization_name}.
1290
+ body_1: The processing of personal data and its protection is becoming increasingly important for all of us. With the General Data Protection Regulation (GDPR) of May 25, 2018, individuals have better control over their personal data. For this reason we need your "OK" to continue sending relevant information about the activities of the %{organization_name}.
1274
1291
  body_2: 'How can you give us your consent? Just click the following button:'
1275
1292
  body_3: With this consent you will be able to continue receiving information about the services of the platform. If, on the contrary, we do not receive a positive confirmation on your part we will stop sending you our messages. If you confirm that you want to keep being informed, you will always have the option to cancel at any time.
1276
1293
  button: Yes, I want to continue receiving relevant information
@@ -1429,7 +1446,7 @@ en:
1429
1446
  confirmation_instructions_sent: Email confirmation instructions sent.
1430
1447
  fill_in_email_to_confirm_it: Please, fill in your group's email to confirm it.
1431
1448
  reported_mailer:
1432
- hide:
1449
+ hidden_automatically:
1433
1450
  content: Reported content
1434
1451
  details: Details
1435
1452
  hello: Hello %{name},
@@ -1438,6 +1455,15 @@ en:
1438
1455
  reason: Reason
1439
1456
  report_html: <p>The following <a href="%{url}">content</a> has been hidden automatically.</p>
1440
1457
  subject: A resource has been hidden automatically
1458
+ hidden_manually:
1459
+ content: Reported content
1460
+ details: Details
1461
+ hello: Hello %{name},
1462
+ manage_moderations: Manage moderations
1463
+ participatory_space: Participatory space
1464
+ reason: Reason
1465
+ report_html: <p>The following <a href="%{url}">content</a> has been hidden by %{moderator}.</p>
1466
+ subject: A resource has been hidden by %{moderator}
1441
1467
  report:
1442
1468
  authors: Authors
1443
1469
  content: Reported content
@@ -1455,6 +1481,8 @@ en:
1455
1481
  create:
1456
1482
  error: An error ocurred while creating the report. Please, try it again.
1457
1483
  success: The report has been created successfully and it will be reviewed by an admin.
1484
+ hide:
1485
+ success: This resource has been hidden.
1458
1486
  parent_hidden:
1459
1487
  report_details: The parent resource was hidden
1460
1488
  resource_endorsements:
@@ -1480,6 +1508,7 @@ en:
1480
1508
  searches:
1481
1509
  filters:
1482
1510
  jump_to: 'Jump to:'
1511
+ resource: "%{label} among %{collection}"
1483
1512
  search: Search
1484
1513
  state:
1485
1514
  active: Active
@@ -1502,6 +1531,7 @@ en:
1502
1531
  close_modal: Close modal
1503
1532
  ok: OK
1504
1533
  title: Confirm
1534
+ confirm_unload: This page contains unsaved changes. Are you sure you want to leave this page?
1505
1535
  embed:
1506
1536
  title: Embedded video content
1507
1537
  extended_navigation_bar:
@@ -1966,14 +1996,17 @@ en:
1966
1996
  edit: Edit
1967
1997
  footer:
1968
1998
  cc_by_license: Creative Commons License
1999
+ current_organization_img: "%{organization} (Back home)"
1969
2000
  data_consent_settings: Cookie settings
1970
2001
  decidim_logo: Decidim Logo
1971
2002
  decidim_title: Decidim
1972
2003
  download_open_data: Download Open Data files
2004
+ help: Help
1973
2005
  log_in: Log in
1974
2006
  made_with_open_source: Website made with <a target="_blank" href="https://github.com/decidim/decidim">free software</a>.
1975
2007
  resources: Resources
1976
2008
  sign_up: Create an account
2009
+ social_media: Social media
1977
2010
  terms_of_service: Terms of Service
1978
2011
  header:
1979
2012
  log_in: Log in
@@ -2013,6 +2046,8 @@ en:
2013
2046
  profile: My account
2014
2047
  public_profile: My public profile
2015
2048
  title: Profile links
2049
+ unread_conversations: You have unread conversations
2050
+ unread_notifications: You have unread notifications
2016
2051
  user_profile:
2017
2052
  account: Account
2018
2053
  authorizations: Authorizations
@@ -160,6 +160,13 @@ es-MX:
160
160
  x_seconds:
161
161
  one: 1 segundo
162
162
  other: "%{count} segundos"
163
+ widget:
164
+ label:
165
+ date: Seleccionar fecha para %{label}
166
+ time: Seleccionar hora para %{label}
167
+ picker:
168
+ date_button: Abrir el selector de calendario para %{label}
169
+ time_button: Abrir selector de hora para %{label}
163
170
  decidim:
164
171
  accessibility:
165
172
  external_link: Enlace externo
@@ -986,7 +993,12 @@ es-MX:
986
993
  title: '¿Qué son las insignias?'
987
994
  group_admins:
988
995
  actions:
989
- are_you_sure: '¿Seguro? Esto no eliminará a la participante del grupo.'
996
+ confirm_modal:
997
+ ok_add: Añadir una administradora
998
+ ok_remove: Eliminar la administradora
999
+ title_add: Confirmar la nueva administradora
1000
+ title_remove: Eliminar la administradora
1001
+ confirm_remove_from_admin: '¿Seguro que quieres eliminar a la administradora de este grupo?'
990
1002
  demote_admin: Eliminar permisos de administración
991
1003
  demote:
992
1004
  error: Se ha producido un error al eliminar esta participante de la lista de administradoras.
@@ -1016,7 +1028,11 @@ es-MX:
1016
1028
  error: Se ha producido un error al aceptar esta solicitud de incorporación al grupo.
1017
1029
  success: Solicitud de unirse correctamente aceptada.
1018
1030
  actions:
1019
- are_you_sure: '¿Estás seguro?'
1031
+ confirm_modal:
1032
+ ok_remove: Eliminar miembro
1033
+ title_remove: Eliminar miembro
1034
+ confirm_promote_to_admin: '¿Seguro que quieres agregar esta usuaria como administradora?'
1035
+ confirm_remove_from_group: '¿Seguro que quieres eliminar a esta usuaria de este grupo?'
1020
1036
  promote_to_admin: Hacer administrador
1021
1037
  remove_from_group: Eliminar usuario
1022
1038
  index:
@@ -1254,11 +1270,12 @@ es-MX:
1254
1270
  main_image: Imagen principal
1255
1271
  newsletters:
1256
1272
  unsubscribe:
1257
- check_subscription: Si quieres cambiar tus preferencias, puedes hacerlo en la <a href="%{link}" target="_blank">página de configuración</a>.
1273
+ check_subscription_html: Si quieres volver a recibirlos, puedes volver a activar tu suscripción en cualquier momento desde la <a href="%{link}" target="_blank">página de configuración</a>.
1258
1274
  error: Se ha producido un error al cancelar la suscripción.
1275
+ subscription_preferences: Hemos actualizado tus preferencias de suscripción y ya no recibirás boletines informativos de %{organization_name}.
1259
1276
  success: Te has dado de baja exitosamente.
1260
1277
  token_error: El enlace ha expirado.
1261
- unsubscribe: Darse de baja
1278
+ unsubscribe: Cancelar la suscripción al boletín informativo
1262
1279
  newsletters_opt_in:
1263
1280
  unauthorized: Lo sentimos, este enlace ya no está disponible.
1264
1281
  update:
@@ -1266,7 +1283,7 @@ es-MX:
1266
1283
  success: La configuración del boletín de noticias se ha actualizado correctamente.
1267
1284
  newsletters_opt_in_mailer:
1268
1285
  notify:
1269
- body_1: El procesamiento de datos personales y su protección es cada vez más importante para todos nosotros. Con el nuevo Reglamento General de Protección de Datos (RGPD) del 25 de mayo de 2018, las personas tienen un mejor control sobre sus datos personales. Por este motivo, necesitamos tu "OK" para seguir enviando información relevante sobre las actividades del %{organization_name}.
1286
+ body_1: El procesamiento de datos personales y su protección es cada vez más importante para todas nosotras. Con el Reglamento General de Protección de Datos (RGPD) del 25 de mayo de 2018, las personas tienen un mayor control sobre sus datos personales. Por este motivo, necesitamos tu autorización para seguir enviándote información relevante sobre las actividades del %{organization_name}.
1270
1287
  body_2: '¿Cómo puedes darnos tu consentimiento? Simplemente haz clic en el siguiente botón:'
1271
1288
  body_3: Con este consentimiento, podrás continuar recibiendo información sobre los servicios de la plataforma. Si, por el contrario, no recibimos una confirmación positiva de tu parte, dejaremos de enviarte nuestros mensajes. Si confirmas que deseas mantenerte informado, siempre tendrás la opción de cancelar en cualquier momento.
1272
1289
  button: Sí, deseo continuar recibiendo información relevante
@@ -1425,15 +1442,24 @@ es-MX:
1425
1442
  confirmation_instructions_sent: Instrucciones de confirmación enviadas por correo electrónico.
1426
1443
  fill_in_email_to_confirm_it: Por favor, introduce el correo electrónico de tu grupo para confirmarlo.
1427
1444
  reported_mailer:
1428
- hide:
1445
+ hidden_automatically:
1429
1446
  content: Contenido reportado
1430
1447
  details: Detalles
1431
1448
  hello: Hola %{name},
1432
- manage_moderations: Gestionar moderaciones
1449
+ manage_moderations: Gestiona moderaciones
1433
1450
  participatory_space: Espacio de participación
1434
1451
  reason: Motivo
1435
1452
  report_html: <p>El siguiente <a href="%{url}">contenido</a> se ha ocultado automáticamente.</p>
1436
1453
  subject: Un contenido se ha ocultado de forma automática
1454
+ hidden_manually:
1455
+ content: Contenido reportado
1456
+ details: Detalles
1457
+ hello: Hola %{name},
1458
+ manage_moderations: Gestiona moderaciones
1459
+ participatory_space: Espacio de participación
1460
+ reason: Razón
1461
+ report_html: <p>El siguiente <a href="%{url}">contenido</a> se ha ocultado automáticamente por %{moderator}.</p>
1462
+ subject: Un recurso ha sido oculto por %{moderator}
1437
1463
  report:
1438
1464
  authors: Autoras
1439
1465
  content: Contenido reportado
@@ -1451,6 +1477,8 @@ es-MX:
1451
1477
  create:
1452
1478
  error: Se ha producido un error al denunciar el contenido. Por favor, inténtalo otra vez.
1453
1479
  success: La denuncia se ha creado correctament y será revisada por un administrador.
1480
+ hide:
1481
+ success: Se ha ocultado este recurso.
1454
1482
  parent_hidden:
1455
1483
  report_details: El recurso principal estaba oculto
1456
1484
  resource_endorsements:
@@ -1476,6 +1504,7 @@ es-MX:
1476
1504
  searches:
1477
1505
  filters:
1478
1506
  jump_to: 'Salta a:'
1507
+ resource: "%{label} entre %{collection}"
1479
1508
  search: Buscar
1480
1509
  state:
1481
1510
  active: Activo
@@ -1498,6 +1527,7 @@ es-MX:
1498
1527
  close_modal: Cerrar el modal
1499
1528
  ok: De acuerdo
1500
1529
  title: Confirmar
1530
+ confirm_unload: Esta página contiene cambios sin guardar. ¿Seguro que quieres abandonar esta página?
1501
1531
  embed:
1502
1532
  title: Contenido de vídeo incrustado
1503
1533
  extended_navigation_bar:
@@ -1961,14 +1991,17 @@ es-MX:
1961
1991
  edit: Editar
1962
1992
  footer:
1963
1993
  cc_by_license: Con licencia Creative Commons
1994
+ current_organization_img: "%{organization} (Ir a la página principal)"
1964
1995
  data_consent_settings: Configuración de cookies
1965
1996
  decidim_logo: Logo Decidim
1966
1997
  decidim_title: Decidim
1967
1998
  download_open_data: Descargar ficheros de datos abiertos
1999
+ help: Ayuda
1968
2000
  log_in: Entra
1969
2001
  made_with_open_source: Sitio web creado con <a target="_blank" href="https://github.com/decidim/decidim">software libre</a>.
1970
2002
  resources: Recursos
1971
2003
  sign_up: Crea una cuenta
2004
+ social_media: Redes Sociales
1972
2005
  terms_of_service: Términos y condiciones de uso
1973
2006
  header:
1974
2007
  log_in: Entra
@@ -2008,6 +2041,8 @@ es-MX:
2008
2041
  profile: Mi cuenta
2009
2042
  public_profile: Mi perfil público
2010
2043
  title: Enlaces de perfil
2044
+ unread_conversations: Tienes conversaciones sin leer
2045
+ unread_notifications: Tienes notificaciones sin leer
2011
2046
  user_profile:
2012
2047
  account: Cuenta
2013
2048
  authorizations: Autorizaciones