decidim-initiatives 0.29.2 → 0.30.0.rc2

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 (112) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives_settings_form/show.erb +1 -1
  3. data/app/commands/decidim/initiatives/create_initiative.rb +16 -4
  4. data/app/commands/decidim/initiatives/update_initiative.rb +23 -9
  5. data/app/controllers/concerns/decidim/initiatives/needs_initiative.rb +1 -1
  6. data/app/controllers/decidim/initiatives/admin/application_controller.rb +2 -0
  7. data/app/controllers/decidim/initiatives/admin/component_share_tokens_controller.rb +18 -0
  8. data/app/controllers/decidim/initiatives/admin/initiative_share_tokens_controller.rb +18 -0
  9. data/app/controllers/decidim/initiatives/admin/initiatives_controller.rb +8 -8
  10. data/app/controllers/decidim/initiatives/create_initiative_controller.rb +3 -2
  11. data/app/controllers/decidim/initiatives/initiative_types_controller.rb +1 -1
  12. data/app/controllers/decidim/initiatives/initiatives_controller.rb +3 -0
  13. data/app/forms/decidim/initiatives/admin/initiative_answer_form.rb +1 -1
  14. data/app/forms/decidim/initiatives/vote_form.rb +1 -1
  15. data/app/helpers/decidim/initiatives/initiative_helper.rb +1 -39
  16. data/app/helpers/decidim/initiatives/initiatives_helper.rb +8 -5
  17. data/app/helpers/decidim/initiatives/scopes_helper.rb +43 -0
  18. data/app/jobs/decidim/initiatives/export_initiatives_job.rb +5 -1
  19. data/app/models/decidim/initiative.rb +40 -27
  20. data/app/models/decidim/initiatives_type_scope.rb +9 -0
  21. data/app/permissions/decidim/initiatives/admin/permissions.rb +7 -0
  22. data/app/permissions/decidim/initiatives/permissions.rb +10 -3
  23. data/app/queries/decidim/initiatives/outdated_validating_initiatives.rb +1 -1
  24. data/app/queries/decidim/initiatives/support_period_finished_initiatives.rb +2 -2
  25. data/app/serializers/decidim/initiatives/download_your_data_initiative_serializer.rb +15 -0
  26. data/app/serializers/decidim/initiatives/initiative_serializer.rb +5 -24
  27. data/app/serializers/decidim/initiatives/open_data_initiative_serializer.rb +54 -0
  28. data/app/services/decidim/initiatives/data_encryptor.rb +1 -1
  29. data/app/services/decidim/initiatives/pdf_signature_example.rb +0 -2
  30. data/app/views/decidim/initiatives/admin/initiatives/edit.html.erb +1 -2
  31. data/app/views/decidim/initiatives/admin/initiatives/index.html.erb +7 -0
  32. data/app/views/decidim/initiatives/committee_requests/new.html.erb +1 -2
  33. data/app/views/decidim/initiatives/create_initiative/fill_data.html.erb +3 -3
  34. data/app/views/decidim/initiatives/create_initiative/select_initiative_type.html.erb +10 -2
  35. data/app/views/decidim/initiatives/initiatives/_form.html.erb +3 -3
  36. data/app/views/decidim/initiatives/initiatives/_new_initiative_button.html.erb +16 -13
  37. data/app/views/decidim/initiatives/initiatives/_vote_button.html.erb +9 -3
  38. data/app/views/decidim/initiatives/initiatives/_vote_cabin.html.erb +0 -1
  39. data/app/views/decidim/initiatives/initiatives/show.html.erb +7 -8
  40. data/app/views/layouts/decidim/admin/_manage_initiatives.html.erb +11 -0
  41. data/app/views/layouts/decidim/admin/initiatives.html.erb +1 -9
  42. data/config/assets.rb +1 -3
  43. data/config/locales/ar.yml +7 -8
  44. data/config/locales/bg.yml +2 -22
  45. data/config/locales/ca.yml +55 -21
  46. data/config/locales/cs.yml +55 -21
  47. data/config/locales/de.yml +55 -21
  48. data/config/locales/el.yml +2 -9
  49. data/config/locales/en.yml +53 -19
  50. data/config/locales/es-MX.yml +55 -21
  51. data/config/locales/es-PY.yml +55 -21
  52. data/config/locales/es.yml +55 -21
  53. data/config/locales/eu.yml +55 -21
  54. data/config/locales/fi-plain.yml +55 -21
  55. data/config/locales/fi.yml +55 -21
  56. data/config/locales/fr-CA.yml +9 -22
  57. data/config/locales/fr.yml +9 -22
  58. data/config/locales/ga-IE.yml +0 -3
  59. data/config/locales/gl.yml +2 -10
  60. data/config/locales/hu.yml +2 -20
  61. data/config/locales/id-ID.yml +2 -8
  62. data/config/locales/is-IS.yml +0 -9
  63. data/config/locales/it.yml +2 -11
  64. data/config/locales/ja.yml +55 -21
  65. data/config/locales/lb.yml +2 -7
  66. data/config/locales/lt.yml +2 -22
  67. data/config/locales/lv.yml +2 -9
  68. data/config/locales/nl.yml +2 -11
  69. data/config/locales/no.yml +2 -13
  70. data/config/locales/pl.yml +2 -21
  71. data/config/locales/pt-BR.yml +2 -27
  72. data/config/locales/pt.yml +2 -11
  73. data/config/locales/ro-RO.yml +2 -19
  74. data/config/locales/ru.yml +0 -9
  75. data/config/locales/sk.yml +2 -8
  76. data/config/locales/sl.yml +0 -1
  77. data/config/locales/sv.yml +13 -21
  78. data/config/locales/tr-TR.yml +2 -11
  79. data/config/locales/uk.yml +0 -9
  80. data/config/locales/zh-CN.yml +2 -10
  81. data/config/locales/zh-TW.yml +2 -21
  82. data/db/migrate/20241127104718_add_taxonomy_to_initiatives_type_scope.rb +7 -0
  83. data/decidim-initiatives.gemspec +1 -3
  84. data/lib/decidim/api/initiative_api_type.rb +9 -10
  85. data/lib/decidim/api/initiative_committee_member_type.rb +3 -4
  86. data/lib/decidim/api/initiative_type.rb +15 -21
  87. data/lib/decidim/api/initiative_type_interface.rb +1 -5
  88. data/lib/decidim/exporters/initiative_votes_pdf.rb +163 -0
  89. data/lib/decidim/initiatives/admin_engine.rb +68 -49
  90. data/lib/decidim/initiatives/application_form_pdf.rb +181 -0
  91. data/lib/decidim/initiatives/engine.rb +6 -0
  92. data/lib/decidim/initiatives/menu.rb +8 -0
  93. data/lib/decidim/initiatives/participatory_space.rb +8 -1
  94. data/lib/decidim/initiatives/test/factories.rb +5 -8
  95. data/lib/decidim/initiatives/version.rb +1 -1
  96. data/lib/decidim/initiatives.rb +7 -1
  97. metadata +25 -59
  98. data/app/cells/decidim/initiatives_votes/vote/show.erb +0 -39
  99. data/app/cells/decidim/initiatives_votes/vote_cell.rb +0 -58
  100. data/app/packs/entrypoints/decidim_initiatives_initiatives_votes.js +0 -1
  101. data/app/packs/entrypoints/decidim_initiatives_initiatives_votes.scss +0 -1
  102. data/app/packs/entrypoints/decidim_initiatives_print.js +0 -1
  103. data/app/packs/entrypoints/decidim_initiatives_print.scss +0 -1
  104. data/app/packs/stylesheets/decidim/initiatives/initiatives-votes.scss +0 -96
  105. data/app/packs/stylesheets/decidim/initiatives/print-initiative.scss +0 -172
  106. data/app/views/decidim/initiatives/admin/initiatives/_signatures.html.erb +0 -87
  107. data/app/views/decidim/initiatives/admin/initiatives/export_pdf_signatures.html.erb +0 -8
  108. data/app/views/decidim/initiatives/admin/initiatives/export_pdf_signatures.pdf.erb +0 -5
  109. data/app/views/decidim/initiatives/initiatives/_linked_initiatives.html.erb +0 -0
  110. data/app/views/decidim/initiatives/initiatives/print.html.erb +0 -161
  111. data/app/views/layouts/decidim/admin/initiatives_votes.pdf.erb +0 -11
  112. data/config/initializers/wicked_pdf.rb +0 -22
@@ -92,7 +92,7 @@ en:
92
92
  accepted: Enough signatures
93
93
  created: Created
94
94
  discarded: Discarded
95
- published: Published
95
+ open: Open
96
96
  rejected: Not enough signatures
97
97
  validating: Technical validation
98
98
  type_id_eq:
@@ -101,7 +101,7 @@ en:
101
101
  title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Search %{collection} by title, description, ID or author name.
102
102
  initiatives_settings:
103
103
  update:
104
- error: An error has occurred.
104
+ error: There was a problem updating the initiatives settings.
105
105
  success: The initiatives settings have been successfully updated.
106
106
  menu:
107
107
  attachments: Attachments
@@ -137,22 +137,30 @@ en:
137
137
  name: Initiative type
138
138
  initiatives_votes:
139
139
  fields:
140
+ date_and_time: Date and time
140
141
  date_of_birth: Date of birth
141
142
  document_number: Document number
142
143
  hash: Hash
143
144
  initiative_end_date: End date
144
145
  initiative_id: Initiative ID
146
+ initiative_scope: Scope
145
147
  initiative_signatures_count: Number of signatures
146
148
  initiative_start_date: Start date
147
149
  initiative_title: Initiative title
148
150
  name_and_surname: Name and surname
151
+ nickname: Nickname
149
152
  postal_code: Postal code
150
- scope: Scope
151
- time_and_date: Time and date
153
+ signature_count: Signature count
152
154
  timestamp: Timestamp
155
+ taxonomy_filters:
156
+ space_filter_for:
157
+ initiatives: All initiatives
153
158
  titles:
154
159
  initiatives: Initiatives
155
160
  initiatives_types: Initiative types
161
+ download_your_data:
162
+ show:
163
+ initiatives: Initiatives export
156
164
  events:
157
165
  initiatives:
158
166
  admin:
@@ -276,7 +284,7 @@ en:
276
284
  unpublish:
277
285
  success: The initiative has been successfully unpublished.
278
286
  update:
279
- error: An error has occurred.
287
+ error: There was a problem updating the initiative.
280
288
  success: The initiative has been successfully updated.
281
289
  initiatives_settings:
282
290
  edit:
@@ -290,7 +298,7 @@ en:
290
298
  title: Settings for initiatives
291
299
  initiatives_type_scopes:
292
300
  create:
293
- error: An error has occurred.
301
+ error: There was a problem creating a new scope for the given initiative.
294
302
  success: A new scope for the given initiative type has been created.
295
303
  destroy:
296
304
  success: The scope has been successfully removed.
@@ -301,11 +309,11 @@ en:
301
309
  create: Create
302
310
  title: Create initiative type scope
303
311
  update:
304
- error: An error has occurred.
312
+ error: There was a problem updating the scope.
305
313
  success: The scope has been successfully updated.
306
314
  initiatives_types:
307
315
  create:
308
- error: An error has occurred.
316
+ error: There was a problem creating the initiative type.
309
317
  success: A new initiative type has been successfully created. You need to define at least one scope for this initiative type so it can be used.
310
318
  destroy:
311
319
  success: The initiative type has been successfully removed.
@@ -322,7 +330,7 @@ en:
322
330
  create: Create
323
331
  title: New initiative type
324
332
  update:
325
- error: An error has occurred.
333
+ error: There was a problem updating the initiative type.
326
334
  success: The initiative type has been successfully updated.
327
335
  admin_log:
328
336
  initiative:
@@ -340,7 +348,7 @@ en:
340
348
  accepted: Enough signatures
341
349
  created: Created
342
350
  discarded: Discarded
343
- published: Published
351
+ open: Open
344
352
  rejected: Not enough signatures
345
353
  validating: Technical validation
346
354
  application_helper:
@@ -438,10 +446,10 @@ en:
438
446
  email_subject: "%{applicant_nickname} wants to join your initiative"
439
447
  notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> applied for the promoter committee of your initiative <a href="%{resource_url}">%{resource_title}</a>. To accept or reject click <a href="%{resource_url}/edit">here</a>.
440
448
  form:
441
- add_documents: Add documents
449
+ add_attachments: Add attachments
442
450
  add_image: Add image
443
- attachment_legend: "(Optional) Add an attachment"
444
- edit_documents: Edit documents
451
+ attachment_legend: Add a document or an image
452
+ edit_attachments: Edit attachments
445
453
  edit_image: Edit image
446
454
  image_legend: "(Optional) Add an image"
447
455
  index:
@@ -530,9 +538,7 @@ en:
530
538
  phone_number: Phone Number
531
539
  place_date: Place, Date
532
540
  postal_code: Postal Code/ZIP
533
- print: Print
534
541
  province: Province/State
535
- section: 'If requested by the organization, please print and fill out this form to submit where indicated:'
536
542
  signature: Signature
537
543
  result:
538
544
  answer_title: This initiative has been answered.
@@ -554,7 +560,6 @@ en:
554
560
  other: " signatures"
555
561
  vote_cabin:
556
562
  already_voted: Already signed
557
- verification_required: Verify your account to sign the initiative
558
563
  vote: Sign
559
564
  votes_blocked: Signing disabled
560
565
  votes_count:
@@ -589,7 +594,7 @@ en:
589
594
  accepted: Enough signatures
590
595
  created: Created
591
596
  discarded: Discarded
592
- published: Published
597
+ open: Open
593
598
  rejected: Not enough signatures
594
599
  validating: Technical validation
595
600
  states:
@@ -597,17 +602,46 @@ en:
597
602
  expired: Expired
598
603
  unavailable_scope: Unavailable scope
599
604
  update:
600
- error: An error has occurred.
605
+ error: There was a problem updating the initiative.
601
606
  success: The initiative has been successfully updated.
602
607
  menu:
603
608
  initiatives: Initiatives
609
+ open_data:
610
+ help:
611
+ initiatives:
612
+ answer: The answer that this initiative has received (if any)
613
+ answer_url: The URL of the answer (if any)
614
+ answered_at: The date of the answer (if any)
615
+ area: The area of this initiative
616
+ authors: The authors of this initiative
617
+ comments_count: The number of comments that this initiative has
618
+ created_at: The date this space was created
619
+ description: The description of the initiative
620
+ first_progress_notification_at: The date when the first progress notification was sent
621
+ follows_count: The number of users following this space
622
+ hashtag: The initiative hashtag, used for Twitter/X
623
+ offline_votes: The number of signatures that this inititative received outside of this platform
624
+ online_votes: The number of signatures that this initiative received online (directly through the platform)
625
+ published_at: The date this space was published
626
+ reference: The unique reference of the space
627
+ scope: The scope of the initiative
628
+ second_progress_notification_at: The date when the second progress notification was sent
629
+ signature_end_date: The date when the signature collection period ends
630
+ signature_start_date: The date when the signature collection period started
631
+ signature_type: The type of signature collection (online or in-person)
632
+ signatures: The number of signatures that this initiative has
633
+ state: The state that this initiative has in this moment
634
+ title: The title of the initiative
635
+ type: The type of the initiative
636
+ updated_at: The last date this space was updated
637
+ url: The URL of the space
604
638
  resources:
605
639
  initiative:
606
640
  actions:
607
641
  comment: Comment
608
642
  initiatives_type:
609
643
  actions:
610
- create: Create
644
+ create: Create an initiative
611
645
  title: Actions
612
646
  vote: Sign
613
647
  layouts:
@@ -92,7 +92,7 @@ es-MX:
92
92
  accepted: Con las firmas necesarias
93
93
  created: Creada
94
94
  discarded: Descartada
95
- published: Publicada
95
+ open: Abierta
96
96
  rejected: No ha conseguido las firmas necesarias
97
97
  validating: Validación técnica
98
98
  type_id_eq:
@@ -101,7 +101,7 @@ es-MX:
101
101
  title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Buscar %{collection} por título, descripción, ID o autoría.
102
102
  initiatives_settings:
103
103
  update:
104
- error: Se ha producido un error.
104
+ error: Se produjo un problema al actualizar la configuración de las iniciativas.
105
105
  success: La configuración de las iniciativas se ha actualizado correctamente.
106
106
  menu:
107
107
  attachments: Adjuntos
@@ -137,22 +137,30 @@ es-MX:
137
137
  name: Tipo de iniciativa
138
138
  initiatives_votes:
139
139
  fields:
140
+ date_and_time: Fecha y hora
140
141
  date_of_birth: Fecha de nacimiento
141
142
  document_number: Número del Documento
142
143
  hash: Picadillo
143
144
  initiative_end_date: Fecha final
144
145
  initiative_id: ID de la iniciativa
146
+ initiative_scope: Ámbito
145
147
  initiative_signatures_count: Número de firmas
146
148
  initiative_start_date: Fecha de inicio
147
149
  initiative_title: Título de la iniciativa
148
150
  name_and_surname: Nombre y apellido
151
+ nickname: Alias
149
152
  postal_code: código postal
150
- scope: Alcance
151
- time_and_date: Hora y fecha
153
+ signature_count: Recuento de firmas
152
154
  timestamp: Marca de tiempo
155
+ taxonomy_filters:
156
+ space_filter_for:
157
+ initiatives: Todas las iniciativas
153
158
  titles:
154
159
  initiatives: Iniciativas
155
160
  initiatives_types: Tipos de Iniciativa
161
+ download_your_data:
162
+ show:
163
+ initiatives: Exportar las iniciativas
156
164
  events:
157
165
  initiatives:
158
166
  admin:
@@ -191,8 +199,8 @@ es-MX:
191
199
  badges:
192
200
  initiatives:
193
201
  conditions:
194
- - Ir al espacio de participación de Iniciativas
195
- - Sigue los pasos para crear una nueva iniciativa.
202
+ - Ir al espacio de participación de Iniciativas
203
+ - Sigue los pasos para crear una nueva iniciativa.
196
204
  description: Este distintivo se otorga cuando lanzas nuevas iniciativas, asociándote con otros para llevarlas a cabo.
197
205
  description_another: Este usuario ha publicado %{score} iniciativas.
198
206
  description_own: Tienes %{score} iniciativas publicadas.
@@ -276,7 +284,7 @@ es-MX:
276
284
  unpublish:
277
285
  success: La iniciativa se ha despublicado correctamente.
278
286
  update:
279
- error: Se ha producido un error.
287
+ error: Se ha producido un error al actualizar la iniciativa.
280
288
  success: La iniciativa se ha actualizado correctamente.
281
289
  initiatives_settings:
282
290
  edit:
@@ -290,7 +298,7 @@ es-MX:
290
298
  title: Configuración de iniciativas
291
299
  initiatives_type_scopes:
292
300
  create:
293
- error: Se ha producido un error.
301
+ error: Se ha producido un error al crear un nuevo ámbito para la iniciativa seleccionada.
294
302
  success: Se ha creado un nuevo ámbito para el tipo de iniciativa dado.
295
303
  destroy:
296
304
  success: El ámbito ha sido eliminado con éxito.
@@ -301,11 +309,11 @@ es-MX:
301
309
  create: Crear
302
310
  title: Crear alcance del tipo de iniciativa
303
311
  update:
304
- error: Se ha producido un error.
312
+ error: Se ha producido un error al actualizar el ámbito.
305
313
  success: El ámbito ha sido actualizado con éxito.
306
314
  initiatives_types:
307
315
  create:
308
- error: Se ha producido un error.
316
+ error: Se ha producido un error al crear el tipo de iniciativa.
309
317
  success: Un nuevo tipo de iniciativa ha sido creado con éxito. Necesitas definir al menos un ámbito para este tipo de iniciativa para que se pueda utilizar.
310
318
  destroy:
311
319
  success: El tipo de iniciativa se ha eliminado correctamente.
@@ -322,7 +330,7 @@ es-MX:
322
330
  create: Crear
323
331
  title: Nuevo tipo de iniciativa
324
332
  update:
325
- error: Se ha producido un error.
333
+ error: Se ha producido un error al actualizar el tipo de iniciativa.
326
334
  success: El tipo de iniciativa se ha actualizado correctamente.
327
335
  admin_log:
328
336
  initiative:
@@ -340,7 +348,7 @@ es-MX:
340
348
  accepted: Ha conseguido las firmas
341
349
  created: Creado
342
350
  discarded: Descartado
343
- published: Publicado
351
+ open: Abierta
344
352
  rejected: No ha conseguido las firmas necesarias
345
353
  validating: Validación técnica
346
354
  application_helper:
@@ -438,10 +446,10 @@ es-MX:
438
446
  email_subject: "%{applicant_nickname} quiere unirse a tu iniciativa"
439
447
  notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> ha solicitado unirse al comité promotor de tu iniciativa <a href="%{resource_url}">%{resource_title}</a>. Para aceptar o rechazar la solicitud haz clic <a href="%{resource_url}/edit">aquí</a>.
440
448
  form:
441
- add_documents: Añadir documentos
449
+ add_attachments: Agregar archivo(s) adjunto(s)
442
450
  add_image: Añadir imagen
443
- attachment_legend: "(Opcional) Añadir un archivo adjunto"
444
- edit_documents: Editar documentos
451
+ attachment_legend: Añadir un documento o una imagen
452
+ edit_attachments: Editar los archivos adjuntos
445
453
  edit_image: Editar imagen
446
454
  image_legend: "(Opcional) Añadir una imágen"
447
455
  index:
@@ -530,9 +538,7 @@ es-MX:
530
538
  phone_number: Número de teléfono
531
539
  place_date: Lugar, fecha
532
540
  postal_code: Código postal
533
- print: Impresión
534
541
  province: Provincia
535
- section: 'Si lo solicita la organización, por favor imprime y rellena este formulario para enviar donde se indique:'
536
542
  signature: Firma
537
543
  result:
538
544
  answer_title: Se ha respondido a esta iniciativa.
@@ -554,7 +560,6 @@ es-MX:
554
560
  other: " firmas"
555
561
  vote_cabin:
556
562
  already_voted: Ha sido firmado
557
- verification_required: Verifica tu cuenta para firmar la iniciativa.
558
563
  vote: Firmar
559
564
  votes_blocked: Firma desactivada
560
565
  votes_count:
@@ -589,7 +594,7 @@ es-MX:
589
594
  accepted: Con las firmas necesarias
590
595
  created: Creada
591
596
  discarded: Descartada
592
- published: Publicada
597
+ open: Abiertas
593
598
  rejected: No ha conseguido las firmas
594
599
  validating: Validación técnica
595
600
  states:
@@ -597,17 +602,46 @@ es-MX:
597
602
  expired: Caducado
598
603
  unavailable_scope: Alcance no disponible
599
604
  update:
600
- error: Se ha producido un error.
605
+ error: Se ha producido un error al actualizar la iniciativa.
601
606
  success: La iniciativa se ha actualizado correctamente.
602
607
  menu:
603
608
  initiatives: Iniciativas
609
+ open_data:
610
+ help:
611
+ initiatives:
612
+ answer: La respuesta que ha recibido esta iniciativa (si la hay)
613
+ answer_url: La URL de la respuesta (si la hay)
614
+ answered_at: La fecha de la respuesta (si existe)
615
+ area: El área de esta iniciativa
616
+ authors: Las autoras de esta iniciativa
617
+ comments_count: El número de comentarios que tiene esta iniciativa
618
+ created_at: La fecha en la que se creó esta iniciativa
619
+ description: La descripción de la iniciativa
620
+ first_progress_notification_at: La fecha en la que se envió la primera notificación de progreso
621
+ follows_count: El número de usuarias que siguen esta iniciativa
622
+ hashtag: La etiqueta que utiliza la iniciativa en Twitter/X
623
+ offline_votes: El número de firmas que esta iniciativa recogió presencialmente (en papel)
624
+ online_votes: El número de firmas digitales que recogió esta iniciativa (directamente a través de la plataforma)
625
+ published_at: La fecha en la que se publicó esta iniciativa
626
+ reference: La referencia única de la iniciativa
627
+ scope: El ámbito territorial de la iniciativa
628
+ second_progress_notification_at: La fecha en la que se envió la segunda notificación de progreso
629
+ signature_end_date: La fecha en la que terminó el período de recogida de firmas
630
+ signature_start_date: La fecha en la que se inició el período de recogida de firmas
631
+ signature_type: El tipo de recogida de firmas (presencial, digital o mixta)
632
+ signatures: El número de firmas que recogió esta iniciativa
633
+ state: El estado en que se encuentra esta iniciativa en este momento
634
+ title: El título de la iniciativa
635
+ type: El tipo de iniciativa
636
+ updated_at: La fecha de la última actualización de esta iniciativa
637
+ url: La URL de la iniciativa
604
638
  resources:
605
639
  initiative:
606
640
  actions:
607
641
  comment: Comentar
608
642
  initiatives_type:
609
643
  actions:
610
- create: Crear
644
+ create: Crear una iniciativa
611
645
  title: Comportamiento
612
646
  vote: Votar
613
647
  layouts:
@@ -92,7 +92,7 @@ es-PY:
92
92
  accepted: Con las firmas necesarias
93
93
  created: Creada
94
94
  discarded: Descartada
95
- published: Publicada
95
+ open: Abierta
96
96
  rejected: No ha conseguido las firmas necesarias
97
97
  validating: Validación técnica
98
98
  type_id_eq:
@@ -101,7 +101,7 @@ es-PY:
101
101
  title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Buscar %{collection} por título, descripción, ID o autoría.
102
102
  initiatives_settings:
103
103
  update:
104
- error: Se ha producido un error.
104
+ error: Se produjo un problema al actualizar la configuración de las iniciativas.
105
105
  success: La configuración de las iniciativas se ha actualizado correctamente.
106
106
  menu:
107
107
  attachments: Adjuntos
@@ -137,22 +137,30 @@ es-PY:
137
137
  name: Tipo de iniciativa
138
138
  initiatives_votes:
139
139
  fields:
140
+ date_and_time: Fecha y hora
140
141
  date_of_birth: Fecha de nacimiento
141
142
  document_number: Número del Documento
142
143
  hash: Picadillo
143
144
  initiative_end_date: Fecha final
144
145
  initiative_id: ID de la iniciativa
146
+ initiative_scope: Ámbito
145
147
  initiative_signatures_count: Número de firmas
146
148
  initiative_start_date: Fecha de inicio
147
149
  initiative_title: Título de la iniciativa
148
150
  name_and_surname: Nombre y apellido
151
+ nickname: Alias
149
152
  postal_code: código postal
150
- scope: Alcance
151
- time_and_date: Hora y fecha
153
+ signature_count: Recuento de firmas
152
154
  timestamp: Marca de tiempo
155
+ taxonomy_filters:
156
+ space_filter_for:
157
+ initiatives: Todas las iniciativas
153
158
  titles:
154
159
  initiatives: Iniciativas
155
160
  initiatives_types: Tipos de Iniciativa
161
+ download_your_data:
162
+ show:
163
+ initiatives: Exportar las iniciativas
156
164
  events:
157
165
  initiatives:
158
166
  admin:
@@ -191,8 +199,8 @@ es-PY:
191
199
  badges:
192
200
  initiatives:
193
201
  conditions:
194
- - Ir al espacio de participación de Iniciativas.
195
- - Sigue los pasos para crear una nueva iniciativa.
202
+ - Ir al espacio de participación de Iniciativas.
203
+ - Sigue los pasos para crear una nueva iniciativa.
196
204
  description: Este distintivo se otorga cuando lanza nuevas iniciativas, asociándose con otros para llevarlas a cabo.
197
205
  description_another: Este usuario ha publicado %{score} iniciativas.
198
206
  description_own: Tienes %{score} iniciativas publicadas.
@@ -276,7 +284,7 @@ es-PY:
276
284
  unpublish:
277
285
  success: La iniciativa se ha despublicado correctamente.
278
286
  update:
279
- error: Se ha producido un error.
287
+ error: Se ha producido un error al actualizar la iniciativa.
280
288
  success: La iniciativa se ha actualizado correctamente.
281
289
  initiatives_settings:
282
290
  edit:
@@ -290,7 +298,7 @@ es-PY:
290
298
  title: Configuración de iniciativas
291
299
  initiatives_type_scopes:
292
300
  create:
293
- error: Se ha producido un error.
301
+ error: Se ha producido un error al crear un nuevo ámbito para la iniciativa seleccionada.
294
302
  success: Se ha creado un nuevo ámbito para el tipo de iniciativa dado.
295
303
  destroy:
296
304
  success: El ámbito ha sido eliminado con éxito.
@@ -301,11 +309,11 @@ es-PY:
301
309
  create: Crear
302
310
  title: Crear alcance del tipo de iniciativa
303
311
  update:
304
- error: Se ha producido un error.
312
+ error: Se ha producido un error al actualizar el ámbito.
305
313
  success: El ámbito ha sido actualizado con éxito.
306
314
  initiatives_types:
307
315
  create:
308
- error: Se ha producido un error.
316
+ error: Se ha producido un error al crear el tipo de iniciativa.
309
317
  success: Un nuevo tipo de iniciativa ha sido creado con éxito. Necesitas definir al menos un ámbito para este tipo de iniciativa para que se pueda utilizar.
310
318
  destroy:
311
319
  success: El tipo de iniciativa se ha eliminado correctamente.
@@ -322,7 +330,7 @@ es-PY:
322
330
  create: Crear
323
331
  title: Nuevo tipo de iniciativa
324
332
  update:
325
- error: Se ha producido un error.
333
+ error: Se ha producido un error al actualizar el tipo de iniciativa.
326
334
  success: El tipo de iniciativa se ha actualizado correctamente.
327
335
  admin_log:
328
336
  initiative:
@@ -340,7 +348,7 @@ es-PY:
340
348
  accepted: Ha conseguido las firmas
341
349
  created: Creado
342
350
  discarded: Descartado
343
- published: Publicado
351
+ open: Abierta
344
352
  rejected: No ha conseguido las firmas necesarias
345
353
  validating: Validación técnica
346
354
  application_helper:
@@ -438,10 +446,10 @@ es-PY:
438
446
  email_subject: "%{applicant_nickname} quiere unirse a tu iniciativa"
439
447
  notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> ha solicitado unirse al comité promotor de tu iniciativa <a href="%{resource_url}">%{resource_title}</a>. Para aceptar o rechazar la solicitud haz clic <a href="%{resource_url}/edit">aquí</a>.
440
448
  form:
441
- add_documents: Añadir documentos
449
+ add_attachments: Agregar archivo(s) adjunto(s)
442
450
  add_image: Añadir imagen
443
- attachment_legend: "(Opcional) Añadir un archivo adjunto"
444
- edit_documents: Editar documentos
451
+ attachment_legend: Añadir un documento o una imagen
452
+ edit_attachments: Editar los archivos adjuntos
445
453
  edit_image: Editar imagen
446
454
  image_legend: "(Opcional) Añadir una imágen"
447
455
  index:
@@ -530,9 +538,7 @@ es-PY:
530
538
  phone_number: Número de teléfono
531
539
  place_date: Lugar, fecha
532
540
  postal_code: Código postal
533
- print: Impresión
534
541
  province: Provincia
535
- section: 'Si lo solicita la organización, por favor imprime y rellena este formulario para enviar donde se indique:'
536
542
  signature: Firma
537
543
  result:
538
544
  answer_title: Se ha respondido a esta iniciativa.
@@ -554,7 +560,6 @@ es-PY:
554
560
  other: " firmas"
555
561
  vote_cabin:
556
562
  already_voted: Ha sido firmado
557
- verification_required: Verifica tu cuenta para firmar la iniciativa.
558
563
  vote: Firmar
559
564
  votes_blocked: Firma desactivada
560
565
  votes_count:
@@ -589,7 +594,7 @@ es-PY:
589
594
  accepted: Con las firmas necesarias
590
595
  created: Creada
591
596
  discarded: Descartada
592
- published: Publicada
597
+ open: Abiertas
593
598
  rejected: No ha conseguido las firmas
594
599
  validating: Validación técnica
595
600
  states:
@@ -597,17 +602,46 @@ es-PY:
597
602
  expired: Caducado
598
603
  unavailable_scope: Alcance no disponible
599
604
  update:
600
- error: Se ha producido un error.
605
+ error: Se ha producido un error al actualizar la iniciativa.
601
606
  success: La iniciativa se ha actualizado correctamente.
602
607
  menu:
603
608
  initiatives: Iniciativas
609
+ open_data:
610
+ help:
611
+ initiatives:
612
+ answer: La respuesta que ha recibido esta iniciativa (si la hay)
613
+ answer_url: La URL de la respuesta (si la hay)
614
+ answered_at: La fecha de la respuesta (si existe)
615
+ area: El área de esta iniciativa
616
+ authors: Las autoras de esta iniciativa
617
+ comments_count: El número de comentarios que tiene esta iniciativa
618
+ created_at: La fecha en la que se creó esta iniciativa
619
+ description: La descripción de la iniciativa
620
+ first_progress_notification_at: La fecha en la que se envió la primera notificación de progreso
621
+ follows_count: El número de usuarias que siguen esta iniciativa
622
+ hashtag: La etiqueta que utiliza la iniciativa en Twitter/X
623
+ offline_votes: El número de firmas que esta iniciativa recogió presencialmente (en papel)
624
+ online_votes: El número de firmas digitales que recogió esta iniciativa (directamente a través de la plataforma)
625
+ published_at: La fecha en la que se publicó esta iniciativa
626
+ reference: La referencia única de la iniciativa
627
+ scope: El ámbito territorial de la iniciativa
628
+ second_progress_notification_at: La fecha en la que se envió la segunda notificación de progreso
629
+ signature_end_date: La fecha en la que terminó el período de recogida de firmas
630
+ signature_start_date: La fecha en la que se inició el período de recogida de firmas
631
+ signature_type: El tipo de recogida de firmas (presencial, digital o mixta)
632
+ signatures: El número de firmas que recogió esta iniciativa
633
+ state: El estado en que se encuentra esta iniciativa en este momento
634
+ title: El título de la iniciativa
635
+ type: El tipo de iniciativa
636
+ updated_at: La fecha de la última actualización de esta iniciativa
637
+ url: La URL de la iniciativa
604
638
  resources:
605
639
  initiative:
606
640
  actions:
607
641
  comment: Comentar
608
642
  initiatives_type:
609
643
  actions:
610
- create: Crear
644
+ create: Crear una iniciativa
611
645
  title: Comportamiento
612
646
  vote: Votar
613
647
  layouts: