decidim-core 0.30.3 → 0.30.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 (96) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/activity_cell.rb +6 -0
  3. data/app/cells/decidim/card_g/show.erb +1 -1
  4. data/app/cells/decidim/notification/deleted.erb +12 -0
  5. data/app/cells/decidim/notification/not_available.erb +12 -0
  6. data/app/cells/decidim/notification_cell.rb +5 -1
  7. data/app/cells/decidim/share_widget/modal.erb +2 -1
  8. data/app/commands/decidim/destroy_account.rb +49 -4
  9. data/app/controllers/decidim/download_your_data_controller.rb +5 -2
  10. data/app/events/decidim/welcome_notification_event.rb +1 -1
  11. data/app/jobs/decidim/remove_search_indexes_job.rb +18 -0
  12. data/app/mailers/decidim/notifications_digest_mailer.rb +18 -1
  13. data/app/models/decidim/component.rb +3 -0
  14. data/app/models/decidim/notification.rb +10 -0
  15. data/app/models/decidim/private_export.rb +4 -0
  16. data/app/models/decidim/user.rb +4 -0
  17. data/app/models/decidim/user_base_entity.rb +1 -1
  18. data/app/packs/src/decidim/editor/extensions/link/index.js +0 -1
  19. data/app/packs/src/decidim/editor/index.js +5 -1
  20. data/app/packs/src/decidim/editor/test/extensions/link.test.js +2 -2
  21. data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_basic_link.js +1 -1
  22. data/app/packs/src/decidim/map/controller/markers.js +3 -1
  23. data/app/packs/stylesheets/decidim/_footer.scss +5 -0
  24. data/app/packs/stylesheets/decidim/_modal.scss +5 -1
  25. data/app/packs/stylesheets/decidim/_modal_fingerprint.scss +1 -1
  26. data/app/presenters/decidim/log/user_presenter.rb +2 -1
  27. data/app/presenters/decidim/user_presenter.rb +6 -1
  28. data/app/services/decidim/download_your_data_exporter.rb +15 -4
  29. data/app/services/decidim/open_data_exporter.rb +2 -1
  30. data/app/views/decidim/download_your_data/_export.html.erb +1 -1
  31. data/app/views/decidim/export_mailer/download_your_data_export.html.erb +1 -1
  32. data/app/views/decidim/export_mailer/export.html.erb +1 -1
  33. data/app/views/decidim/pages/_tabbed.html.erb +1 -1
  34. data/app/views/decidim/shared/_orders.html.erb +1 -1
  35. data/app/views/layouts/decidim/header/_main_links_mobile_account.html.erb +15 -1
  36. data/config/locales/ar.yml +0 -4
  37. data/config/locales/bg.yml +0 -8
  38. data/config/locales/ca-IT.yml +17 -13
  39. data/config/locales/ca.yml +15 -11
  40. data/config/locales/cs.yml +9 -19
  41. data/config/locales/de.yml +5 -21
  42. data/config/locales/el.yml +0 -3
  43. data/config/locales/en.yml +21 -17
  44. data/config/locales/es-MX.yml +14 -10
  45. data/config/locales/es-PY.yml +14 -10
  46. data/config/locales/es.yml +13 -9
  47. data/config/locales/eu.yml +54 -51
  48. data/config/locales/fa-IR.yml +3 -0
  49. data/config/locales/fi-plain.yml +12 -8
  50. data/config/locales/fi.yml +12 -8
  51. data/config/locales/fr-CA.yml +23 -12
  52. data/config/locales/fr.yml +23 -12
  53. data/config/locales/ga-IE.yml +0 -4
  54. data/config/locales/gl.yml +0 -3
  55. data/config/locales/hu.yml +0 -6
  56. data/config/locales/id-ID.yml +0 -3
  57. data/config/locales/it.yml +3 -4
  58. data/config/locales/ja.yml +26 -22
  59. data/config/locales/ko.yml +3 -0
  60. data/config/locales/lb.yml +0 -3
  61. data/config/locales/lt.yml +0 -5
  62. data/config/locales/lv.yml +0 -3
  63. data/config/locales/mt.yml +3 -0
  64. data/config/locales/nl.yml +0 -3
  65. data/config/locales/no.yml +0 -3
  66. data/config/locales/pl.yml +11 -7
  67. data/config/locales/pt-BR.yml +552 -5
  68. data/config/locales/pt.yml +0 -3
  69. data/config/locales/ro-RO.yml +453 -126
  70. data/config/locales/ru.yml +0 -4
  71. data/config/locales/sk.yml +0 -3
  72. data/config/locales/sl.yml +0 -1
  73. data/config/locales/sv.yml +28 -13
  74. data/config/locales/tr-TR.yml +0 -5
  75. data/config/locales/uk.yml +0 -3
  76. data/config/locales/vi.yml +3 -0
  77. data/config/locales/zh-CN.yml +0 -3
  78. data/config/locales/zh-TW.yml +0 -5
  79. data/db/migrate/20250819110800_convert_private_exports_id_to_uuid.rb +55 -0
  80. data/decidim-core.gemspec +1 -0
  81. data/lib/decidim/core/engine.rb +1 -0
  82. data/lib/decidim/core/seeds.rb +3 -3
  83. data/lib/decidim/core/test/factories.rb +27 -2
  84. data/lib/decidim/core/test/shared_examples/comments_examples.rb +59 -5
  85. data/lib/decidim/core/test/shared_examples/fingerprint_examples.rb +13 -0
  86. data/lib/decidim/core/test/shared_examples/process_announcements_examples.rb +35 -1
  87. data/lib/decidim/core/version.rb +1 -1
  88. data/lib/decidim/events/base_event.rb +4 -0
  89. data/lib/decidim/has_private_users.rb +1 -0
  90. data/lib/decidim/seeds.rb +1 -1
  91. data/lib/decidim/webpacker/configuration.rb +5 -1
  92. data/lib/tasks/upgrade/clean.rake +11 -0
  93. data/lib/tasks/upgrade/decidim_fix_action_log.rake +28 -0
  94. data/lib/tasks/upgrade/decidim_remove_deleted_users_left_data_tasks.rake +30 -0
  95. data/lib/tasks/upgrade/fix_deleted_private_follows.rake +26 -0
  96. metadata +27 -6
@@ -204,6 +204,7 @@ en:
204
204
  success: Your account was successfully deleted.
205
205
  download_your_data_export:
206
206
  export_expired: The export has expired. Try to generate a new export.
207
+ export_not_found: The export you have accessed does not exist, or you do not have access to download it
207
208
  file_no_exists: File does not exist
208
209
  notice: The download of your data is currently in progress. You will receive an email when it is complete.
209
210
  email_change:
@@ -763,7 +764,7 @@ en:
763
764
  created_at: The date when this conversation was created
764
765
  id: The unique identifier for this conversation
765
766
  messages: The messages of this conversation
766
- updated_at: The date when this converstaion was last updated
767
+ updated_at: The date when this conversation was last updated
767
768
  notifications:
768
769
  created_at: The date and time when the notification was created
769
770
  event_class: The class of the event that triggered the notification
@@ -794,7 +795,7 @@ en:
794
795
  phone: The phone number of this user group
795
796
  verified_at: The date and time when this user group was verified
796
797
  users:
797
- about: The biography of this user
798
+ about: The profile description of this participant
798
799
  accepted_tos_version: The date when the Terms of Service of this platform was accepted by the user
799
800
  admin: Whether this user is an administrator
800
801
  confirmation_sent_at: The date and time when the confirmation was sent
@@ -805,7 +806,7 @@ en:
805
806
  delete_reason: The reason given for deleting this user
806
807
  deleted_at: The date and time when this user was deleted
807
808
  email: The email address of this user
808
- followers_count: The number of participants that are following to this user
809
+ followers_count: The number of participants that are following this user
809
810
  following_count: The number of participants this user is following
810
811
  id: The unique identifier of this user
811
812
  invitation_accepted_at: The date and time when the invitation was accepted
@@ -813,16 +814,16 @@ en:
813
814
  invitation_sent_at: The date and time when the invitation was sent
814
815
  invitations_count: The number of invitations sent to this user
815
816
  invited_by: The user who invited this user
816
- last_sign_in_at: The date and time of the last login
817
- last_sign_in_ip: The IP address of the last login
817
+ last_sign_in_at: The date and time of the previous login
818
+ last_sign_in_ip: The IP address of the previous login
818
819
  locale: The locale (language) that this user has selected
819
820
  managed: Whether this user is managed by another user
820
821
  name: The name of this user
821
- newsletter_notifications_at: The date and time when this user last received a newsletter
822
+ newsletter_notifications_at: The date and time when this participant subscribed to receive a newsletter
822
823
  nickname: The nickname of this user
823
824
  notification_settings: The notification settings that this user has selected
824
825
  notifications_sending_frequency: The frequency of the notifications that this user receives
825
- officialized_as: The name of the officialization (Counsellor, Mayor, etc)
826
+ officialized_as: The name of the officialization (Councillor, Mayor, etc)
826
827
  officialized_at: The date and time when this user was officialized
827
828
  organization: The organization that this user belongs to
828
829
  password_updated_at: The date when their password was changed for the last time
@@ -874,7 +875,7 @@ en:
874
875
  files:
875
876
  file_cannot_be_processed: File cannot be processed
876
877
  file_resolution_too_large: File resolution is too large
877
- not_inside_organization: The file is not attached to any organization
878
+ not_inside_organization: The file is not attached to any organization.
878
879
  internal_server_error:
879
880
  copied: Text copied!
880
881
  copy_error_message_clarification: Copy error message to clipboard
@@ -1117,7 +1118,7 @@ en:
1117
1118
  file:
1118
1119
  explanation: 'Guidance for file:'
1119
1120
  message_1: Has to be an image or a document.
1120
- message_2: If it is an image, it preferably be a landscape image that does not have any text. The service crops the image.
1121
+ message_2: If it is an image, it preferably be a landscape image that does not have any text. The platform crops the image.
1121
1122
  icon:
1122
1123
  explanation: 'Guidance for icon:'
1123
1124
  message_1: Has to be a square image.
@@ -1299,6 +1300,7 @@ en:
1299
1300
  create_with_space: "%{user_name} created %{resource_name} in %{space_name}"
1300
1301
  delete: "%{user_name} deleted %{resource_name}"
1301
1302
  delete_with_space: "%{user_name} deleted %{resource_name} in %{space_name}"
1303
+ publish: "%{user_name} published %{resource_name}"
1302
1304
  publish_with_space: "%{user_name} published %{resource_name} in %{space_name}"
1303
1305
  unknown_action: "%{user_name} performed some action on %{resource_name}"
1304
1306
  unknown_action_with_space: "%{user_name} performed some action on %{resource_name} in %{space_name}"
@@ -1485,11 +1487,13 @@ en:
1485
1487
  same_language: The content has been posted in your preferred language (%{language}), this is why no automated translation is displayed in this email.
1486
1488
  translated_text: 'Automatically translated text:'
1487
1489
  notifications:
1488
- action_error: There was a problem updating the notifications.
1490
+ action_error: There was a problem updating the notification settings.
1489
1491
  no_notifications: No notifications yet.
1490
1492
  show:
1493
+ deleted: Content has been deleted by the author.
1491
1494
  missing_event: Oops, this notification belongs to an item that is no longer available. You can discard it.
1492
- moderated: Content moderated
1495
+ moderated: Content has been hidden through moderation.
1496
+ not_available: Oops, this notification belongs to an item that is no longer available. You can discard it.
1493
1497
  notifications_digest_mailer:
1494
1498
  header:
1495
1499
  daily: Daily Notification Digest
@@ -1498,7 +1502,7 @@ en:
1498
1502
  hello: Hello %{name},
1499
1503
  intro:
1500
1504
  daily: 'These are the notifications from the last day based on the activity you are following:'
1501
- real_time: 'These is a notification on the activity you are following:'
1505
+ real_time: 'This is a notification on the activity you are following:'
1502
1506
  weekly: 'These are the notifications from the last week based on the activity you are following:'
1503
1507
  outro: You have received these notifications because you are following this content or its authors. You can unfollow them from their respective pages.
1504
1508
  see_more: See more notifications
@@ -1652,9 +1656,9 @@ en:
1652
1656
  title: How to open and work with these files
1653
1657
  license:
1654
1658
  body_1_html: This %{organization_name} database is made available under the %{link_database}. Any rights in individual contents of the database are licensed under the %{link_contents}.
1655
- license_contents_link: http://opendatacommons.org/licenses/dbcl/1.0/
1659
+ license_contents_link: https://opendatacommons.org/licenses/dbcl/1.0/
1656
1660
  license_contents_name: Database Contents License
1657
- license_database_link: http://opendatacommons.org/licenses/odbl/1.0/
1661
+ license_database_link: https://opendatacommons.org/licenses/odbl/1.0/
1658
1662
  license_database_name: Open Database License
1659
1663
  title: License
1660
1664
  title: Open Data
@@ -1677,7 +1681,7 @@ en:
1677
1681
  footer_sub_hero:
1678
1682
  footer_sub_hero_body_html: Let's build a more open, transparent and collaborative society.<br /> Join, participate and decide.
1679
1683
  footer_sub_hero_headline: Welcome to %{organization} participatory platform.
1680
- register: Register
1684
+ register: Create an account
1681
1685
  hero:
1682
1686
  participate: Participate
1683
1687
  participate_title: Participate in the platform's processes
@@ -1685,7 +1689,7 @@ en:
1685
1689
  statistics:
1686
1690
  headline: Current state of %{organization}
1687
1691
  sub_hero:
1688
- register: Register
1692
+ register: Create an account
1689
1693
  register_title: Create an account
1690
1694
  index:
1691
1695
  standalone_pages: Pages
@@ -2308,7 +2312,7 @@ en:
2308
2312
  language_chooser:
2309
2313
  choose_language: Choose language
2310
2314
  navigation:
2311
- aria_label: Navigation menu- %{title}
2315
+ aria_label: 'Navigation menu: %{title}'
2312
2316
  notifications_dashboard:
2313
2317
  mark_all_as_read: Mark all as read
2314
2318
  mark_as_read: Mark as read
@@ -204,6 +204,7 @@ es-MX:
204
204
  success: Tu cuenta se ha eliminado correctamente.
205
205
  download_your_data_export:
206
206
  export_expired: La exportación ha caducado. Intenta generar una nueva exportación.
207
+ export_not_found: La exportación a la que has accedido no existe o no tienes acceso o permisos para descargarla
207
208
  file_no_exists: El archivo no existe
208
209
  notice: La descarga de tus datos está en curso. Recibirás un correo electrónico cuando se complete.
209
210
  email_change:
@@ -790,7 +791,7 @@ es-MX:
790
791
  phone: El número de teléfono de este grupo de usuarias
791
792
  verified_at: La fecha y hora en que se verificó este grupo de usuarias
792
793
  users:
793
- about: La biografía de esta usuaria
794
+ about: La descripción del perfil de esta participante
794
795
  accepted_tos_version: La fecha en que la usuaria aceptó los Términos y Condiciones de uso de esta plataforma
795
796
  admin: Si esta usuaria es una administradora
796
797
  confirmation_sent_at: La fecha y hora en que se envió la confirmación
@@ -814,7 +815,7 @@ es-MX:
814
815
  locale: La configuración regional (idioma) que ha seleccionado esta usuaria
815
816
  managed: Si se trata de una cuenta de usuaria gestionada (impersonada) o no
816
817
  name: El nombre de usuaria de la usuaria
817
- newsletter_notifications_at: La fecha y hora cuando esta usuaria recibió un boletín informativo por última vez
818
+ newsletter_notifications_at: La fecha y hora cuando esta usuaria se suscribió para recibir el boletín informativo
818
819
  nickname: El alias de la usuaria
819
820
  notification_settings: Los ajustes de notificación que ha seleccionado esta usuaria
820
821
  notifications_sending_frequency: La frecuencia con la que esta usuaria recibe las notificaciones
@@ -870,7 +871,7 @@ es-MX:
870
871
  files:
871
872
  file_cannot_be_processed: No se ha podido procesar el archivo
872
873
  file_resolution_too_large: La resolución del archivo es demasiado grande
873
- not_inside_organization: El archivo no está relacionado con ninguna organización
874
+ not_inside_organization: El archivo no está vinculado a ninguna organización.
874
875
  internal_server_error:
875
876
  copied: '¡Texto copiado!'
876
877
  copy_error_message_clarification: Mensaje de error copiado al portapapeles
@@ -1295,6 +1296,7 @@ es-MX:
1295
1296
  create_with_space: "%{user_name} creó %{resource_name} en %{space_name}"
1296
1297
  delete: "%{user_name} eliminó %{resource_name}"
1297
1298
  delete_with_space: "%{user_name} eliminó %{resource_name} en %{space_name}"
1299
+ publish: "%{user_name} publicó %{resource_name}"
1298
1300
  publish_with_space: "%{user_name} ha publicado %{resource_name} en %{space_name}"
1299
1301
  unknown_action: "%{user_name} realizó una acción en %{resource_name}"
1300
1302
  unknown_action_with_space: "%{user_name} realizó una acción en %{resource_name} en %{space_name}"
@@ -1481,11 +1483,13 @@ es-MX:
1481
1483
  same_language: El contenido ha sido publicado en tu idioma preferido (%{language}), por eso no se muestra ninguna traducción automática en este correo electrónico.
1482
1484
  translated_text: 'Texto traducido automáticamente:'
1483
1485
  notifications:
1484
- action_error: Se ha producido un error al actualizar las notificaciones.
1486
+ action_error: Se ha producido un error al actualizar la configuración de las notificaciones.
1485
1487
  no_notifications: No hay notificaciones aún.
1486
1488
  show:
1489
+ deleted: El contenido ha sido eliminado por la autora.
1487
1490
  missing_event: Vaya, esta notificación pertenece a un elemento que ya no está disponible. Puedes descartarla.
1488
- moderated: Contenido moderado
1491
+ moderated: El contenido se ha ocultado mediante la moderación.
1492
+ not_available: Vaya, esta notificación pertenece a un elemento que ya no está disponible. Puedes descartarla.
1489
1493
  notifications_digest_mailer:
1490
1494
  header:
1491
1495
  daily: Resumen diario de notificaciones
@@ -1648,9 +1652,9 @@ es-MX:
1648
1652
  title: Cómo abrir y trabajar con estos archivos
1649
1653
  license:
1650
1654
  body_1_html: Esta base de datos de "%{organization_name}" está disponible bajo %{link_database}. Cualquier derecho sobre los contenidos individuales de la base de datos está bajo la licencia %{link_contents}.
1651
- license_contents_link: https://opendatacommons.org/licenses/dbcl/1-0/
1655
+ license_contents_link: https://opendatacommons.org/licenses/dbcl/1.0/
1652
1656
  license_contents_name: Licencia de los contenidos en la base de datos
1653
- license_database_link: https://opendatacommons.org/licenses/odbl/1-0/
1657
+ license_database_link: https://opendatacommons.org/licenses/odbl/1.0/
1654
1658
  license_database_name: Licencia Abierta para bases de datos
1655
1659
  title: Licencia
1656
1660
  title: Datos abiertos
@@ -1673,7 +1677,7 @@ es-MX:
1673
1677
  footer_sub_hero:
1674
1678
  footer_sub_hero_body_html: Construyamos una sociedad más abierta, transparente y colaborativa. <br /> Únete, participa y decide.
1675
1679
  footer_sub_hero_headline: Bienvenido/a a la plataforma participativa %{organization}.
1676
- register: Regístrate
1680
+ register: Crear una cuenta
1677
1681
  hero:
1678
1682
  participate: Participar
1679
1683
  participate_title: Participa en los procesos de la plataforma
@@ -1681,7 +1685,7 @@ es-MX:
1681
1685
  statistics:
1682
1686
  headline: Estado actual de %{organization}
1683
1687
  sub_hero:
1684
- register: Regístrate
1688
+ register: Crear una cuenta
1685
1689
  register_title: Crea una cuenta
1686
1690
  index:
1687
1691
  standalone_pages: Páginas
@@ -2021,7 +2025,7 @@ es-MX:
2021
2025
  invite_collaborator:
2022
2026
  subject: Te han invitado a colaborar en %{organization}
2023
2027
  invite_private_user:
2024
- subject: Te han invitado a participar en un proceso participativo privado en %{organization}
2028
+ subject: Te han invitado a participar en un espacio de participación privado en %{organization}
2025
2029
  organization_admin_invitation_instructions:
2026
2030
  subject: Te han invitado a administrar %{organization}
2027
2031
  password_change:
@@ -204,6 +204,7 @@ es-PY:
204
204
  success: Tu cuenta se ha eliminado correctamente.
205
205
  download_your_data_export:
206
206
  export_expired: La exportación ha caducado. Intenta generar una nueva exportación.
207
+ export_not_found: La exportación a la que has accedido no existe o no tienes acceso o permisos para descargarla
207
208
  file_no_exists: El archivo no existe
208
209
  notice: La descarga de tus datos está en curso. Recibirás un correo electrónico cuando se complete.
209
210
  email_change:
@@ -790,7 +791,7 @@ es-PY:
790
791
  phone: El número de teléfono de este grupo de usuarias
791
792
  verified_at: La fecha y hora en que se verificó este grupo de usuarias
792
793
  users:
793
- about: La biografía de esta usuaria
794
+ about: La descripción del perfil de esta participante
794
795
  accepted_tos_version: La fecha en que la usuaria aceptó los Términos y Condiciones de uso de esta plataforma
795
796
  admin: Si esta usuaria es una administradora
796
797
  confirmation_sent_at: La fecha y hora en que se envió la confirmación
@@ -814,7 +815,7 @@ es-PY:
814
815
  locale: La configuración regional (idioma) que ha seleccionado esta usuaria
815
816
  managed: Si se trata de una cuenta de usuaria gestionada (impersonada) o no
816
817
  name: El nombre de usuaria de la usuaria
817
- newsletter_notifications_at: La fecha y hora cuando esta usuaria recibió un boletín informativo por última vez
818
+ newsletter_notifications_at: La fecha y hora cuando esta usuaria se suscribió para recibir el boletín informativo
818
819
  nickname: El alias de la usuaria
819
820
  notification_settings: Los ajustes de notificación que ha seleccionado esta usuaria
820
821
  notifications_sending_frequency: La frecuencia con la que esta usuaria recibe las notificaciones
@@ -870,7 +871,7 @@ es-PY:
870
871
  files:
871
872
  file_cannot_be_processed: No se ha podido procesar el archivo
872
873
  file_resolution_too_large: La resolución del archivo es demasiado grande
873
- not_inside_organization: El archivo no está relacionado con ninguna organización
874
+ not_inside_organization: El archivo no está vinculado a ninguna organización.
874
875
  internal_server_error:
875
876
  copied: '¡Texto copiado!'
876
877
  copy_error_message_clarification: Mensaje de error copiado al portapapeles
@@ -1295,6 +1296,7 @@ es-PY:
1295
1296
  create_with_space: "%{user_name} creó %{resource_name} en %{space_name}"
1296
1297
  delete: "%{user_name} eliminó %{resource_name}"
1297
1298
  delete_with_space: "%{user_name} eliminó %{resource_name} en %{space_name}"
1299
+ publish: "%{user_name} publicó %{resource_name}"
1298
1300
  publish_with_space: "%{user_name} ha publicado %{resource_name} en %{space_name}"
1299
1301
  unknown_action: "%{user_name} realizó una acción en %{resource_name}"
1300
1302
  unknown_action_with_space: "%{user_name} realizó una acción en %{resource_name} en %{space_name}"
@@ -1481,11 +1483,13 @@ es-PY:
1481
1483
  same_language: El contenido ha sido publicado en tu idioma preferido (%{language}), por eso no se muestra ninguna traducción automática en este correo electrónico.
1482
1484
  translated_text: 'Texto traducido automáticamente:'
1483
1485
  notifications:
1484
- action_error: Se ha producido un error al actualizar las notificaciones.
1486
+ action_error: Se ha producido un error al actualizar la configuración de las notificaciones.
1485
1487
  no_notifications: No hay notificaciones aún.
1486
1488
  show:
1489
+ deleted: El contenido ha sido eliminado por la autora.
1487
1490
  missing_event: Vaya, esta notificación pertenece a un elemento que ya no está disponible. Puedes descartarla.
1488
- moderated: Contenido moderado
1491
+ moderated: El contenido se ha ocultado mediante la moderación.
1492
+ not_available: Vaya, esta notificación pertenece a un elemento que ya no está disponible. Puedes descartarla.
1489
1493
  notifications_digest_mailer:
1490
1494
  header:
1491
1495
  daily: Resumen diario de notificaciones
@@ -1648,9 +1652,9 @@ es-PY:
1648
1652
  title: Cómo abrir y trabajar con estos archivos
1649
1653
  license:
1650
1654
  body_1_html: Esta base de datos de "%{organization_name}" está disponible bajo %{link_database}. Cualquier derecho sobre los contenidos individuales de la base de datos está bajo la licencia %{link_contents}.
1651
- license_contents_link: https://opendatacommons.org/licenses/dbcl/1-0/
1655
+ license_contents_link: https://opendatacommons.org/licenses/dbcl/1.0/
1652
1656
  license_contents_name: Licencia de los contenidos en la base de datos
1653
- license_database_link: https://opendatacommons.org/licenses/odbl/1-0/
1657
+ license_database_link: https://opendatacommons.org/licenses/odbl/1.0/
1654
1658
  license_database_name: Licencia Abierta para bases de datos
1655
1659
  title: Licencia
1656
1660
  title: Datos abiertos
@@ -1673,7 +1677,7 @@ es-PY:
1673
1677
  footer_sub_hero:
1674
1678
  footer_sub_hero_body_html: Construyamos una sociedad más abierta, transparente y colaborativa. <br /> Únete, participa y decide.
1675
1679
  footer_sub_hero_headline: Bienvenido a la plataforma participativa %{organization}.
1676
- register: Regístrate
1680
+ register: Crear una cuenta
1677
1681
  hero:
1678
1682
  participate: Participar
1679
1683
  participate_title: Participa en los procesos de la plataforma
@@ -1681,7 +1685,7 @@ es-PY:
1681
1685
  statistics:
1682
1686
  headline: Estado actual de %{organization}
1683
1687
  sub_hero:
1684
- register: Regístrate
1688
+ register: Crear una cuenta
1685
1689
  register_title: Crea una cuenta
1686
1690
  index:
1687
1691
  standalone_pages: Páginas
@@ -2021,7 +2025,7 @@ es-PY:
2021
2025
  invite_collaborator:
2022
2026
  subject: Te han invitado a colaborar en %{organization}
2023
2027
  invite_private_user:
2024
- subject: Te han invitado a participar en un proceso participativo privado en %{organization}
2028
+ subject: Te han invitado a participar en un espacio de participación privado en %{organization}
2025
2029
  organization_admin_invitation_instructions:
2026
2030
  subject: Te han invitado a administrar %{organization}
2027
2031
  password_change:
@@ -204,6 +204,7 @@ es:
204
204
  success: Tu cuenta se ha eliminado correctamente.
205
205
  download_your_data_export:
206
206
  export_expired: La exportación ha caducado. Intenta generar una nueva exportación.
207
+ export_not_found: La exportación a la que has accedido no existe o no tienes acceso o permisos para descargarla
207
208
  file_no_exists: El archivo no existe
208
209
  notice: La descarga de tus datos está en curso. Recibirás un correo electrónico cuando se complete.
209
210
  email_change:
@@ -787,7 +788,7 @@ es:
787
788
  phone: El número de teléfono de este grupo de usuarias
788
789
  verified_at: La fecha y hora en que se verificó este grupo de usuarias
789
790
  users:
790
- about: La biografía de esta usuaria
791
+ about: La descripción del perfil de esta participante
791
792
  accepted_tos_version: La fecha en que la usuaria aceptó los Términos y Condiciones de uso de esta plataforma
792
793
  admin: Si esta usuaria es una administradora
793
794
  confirmation_sent_at: La fecha y hora en que se envió la confirmación
@@ -811,7 +812,7 @@ es:
811
812
  locale: La configuración regional (idioma) que ha seleccionado esta usuaria
812
813
  managed: Si se trata de una cuenta de usuaria gestionada (impersonada) o no
813
814
  name: El nombre de usuaria de la usuaria
814
- newsletter_notifications_at: La fecha y hora cuando esta usuaria recibió un boletín informativo por última vez
815
+ newsletter_notifications_at: La fecha y hora cuando esta usuaria se suscribió para recibir el boletín informativo
815
816
  nickname: El alias de la usuaria
816
817
  notification_settings: Los ajustes de notificación que ha seleccionado esta usuaria
817
818
  notifications_sending_frequency: La frecuencia con la que esta usuaria recibe las notificaciones
@@ -867,7 +868,7 @@ es:
867
868
  files:
868
869
  file_cannot_be_processed: No se ha podido procesar el archivo
869
870
  file_resolution_too_large: La resolución del archivo es demasiado grande
870
- not_inside_organization: El archivo no está relacionado con ninguna organización
871
+ not_inside_organization: El archivo no está vinculado a ninguna organización.
871
872
  internal_server_error:
872
873
  copied: '¡Texto copiado!'
873
874
  copy_error_message_clarification: Mensaje de error copiado al portapapeles
@@ -1292,6 +1293,7 @@ es:
1292
1293
  create_with_space: "%{user_name} creó %{resource_name} en %{space_name}"
1293
1294
  delete: "%{user_name} eliminó %{resource_name}"
1294
1295
  delete_with_space: "%{user_name} eliminó %{resource_name} en %{space_name}"
1296
+ publish: "%{user_name} publicó %{resource_name}"
1295
1297
  publish_with_space: "%{user_name} ha publicado %{resource_name} en %{space_name}"
1296
1298
  unknown_action: "%{user_name} realizó una acción en %{resource_name}"
1297
1299
  unknown_action_with_space: "%{user_name} realizó una acción en %{resource_name} en %{space_name}"
@@ -1478,11 +1480,13 @@ es:
1478
1480
  same_language: El contenido ha sido publicado en tu idioma preferido (%{language}), por eso no se muestra ninguna traducción automática en este correo electrónico.
1479
1481
  translated_text: 'Texto traducido automáticamente:'
1480
1482
  notifications:
1481
- action_error: Se ha producido un error al actualizar las notificaciones.
1483
+ action_error: Se ha producido un error al actualizar la configuración de las notificaciones.
1482
1484
  no_notifications: Aún no hay notificaciones.
1483
1485
  show:
1486
+ deleted: El contenido ha sido eliminado por la autora.
1484
1487
  missing_event: Vaya, esta notificación pertenece a un elemento que ya no está disponible. Puedes descartarla.
1485
- moderated: Contenido moderado
1488
+ moderated: El contenido se ha ocultado mediante la moderación.
1489
+ not_available: Vaya, esta notificación pertenece a un elemento que ya no está disponible. Puedes descartarla.
1486
1490
  notifications_digest_mailer:
1487
1491
  header:
1488
1492
  daily: Resumen diario de notificaciones
@@ -1645,9 +1649,9 @@ es:
1645
1649
  title: Cómo abrir y trabajar con estos archivos
1646
1650
  license:
1647
1651
  body_1_html: Esta base de datos de "%{organization_name}" está disponible bajo %{link_database}. Cualquier derecho sobre los contenidos individuales de la base de datos está bajo la licencia %{link_contents}.
1648
- license_contents_link: https://opendatacommons.org/licenses/dbcl/1-0/
1652
+ license_contents_link: https://opendatacommons.org/licenses/dbcl/1.0/
1649
1653
  license_contents_name: Licencia de los contenidos en la base de datos
1650
- license_database_link: https://opendatacommons.org/licenses/odbl/1-0/
1654
+ license_database_link: https://opendatacommons.org/licenses/odbl/1.0/
1651
1655
  license_database_name: Licencia Abierta para bases de datos
1652
1656
  title: Licencia
1653
1657
  title: Datos abiertos
@@ -1670,7 +1674,7 @@ es:
1670
1674
  footer_sub_hero:
1671
1675
  footer_sub_hero_body_html: Construyamos una sociedad más abierta, transparente y colaborativa. <br /> Únete, participa y decide.
1672
1676
  footer_sub_hero_headline: Bienvenida a la plataforma participativa %{organization}.
1673
- register: Regístrate
1677
+ register: Crear una cuenta
1674
1678
  hero:
1675
1679
  participate: Participa
1676
1680
  participate_title: Participa en los procesos de la plataforma
@@ -1678,7 +1682,7 @@ es:
1678
1682
  statistics:
1679
1683
  headline: Estado actual de %{organization}
1680
1684
  sub_hero:
1681
- register: Regístrate
1685
+ register: Crear una cuenta
1682
1686
  register_title: Crea una cuenta
1683
1687
  index:
1684
1688
  standalone_pages: Páginas