decidim-initiatives 0.29.3 → 0.30.0.rc1

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 (113) 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 +34 -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 +3 -22
  45. data/config/locales/ca.yml +58 -24
  46. data/config/locales/cs.yml +55 -21
  47. data/config/locales/de.yml +56 -22
  48. data/config/locales/el.yml +2 -9
  49. data/config/locales/en.yml +53 -19
  50. data/config/locales/es-MX.yml +60 -26
  51. data/config/locales/es-PY.yml +60 -26
  52. data/config/locales/es.yml +60 -26
  53. data/config/locales/eu.yml +80 -46
  54. data/config/locales/fi-plain.yml +57 -23
  55. data/config/locales/fi.yml +55 -21
  56. data/config/locales/fr-CA.yml +12 -24
  57. data/config/locales/fr.yml +12 -24
  58. data/config/locales/ga-IE.yml +0 -3
  59. data/config/locales/gl.yml +4 -12
  60. data/config/locales/hu.yml +4 -21
  61. data/config/locales/id-ID.yml +3 -9
  62. data/config/locales/is-IS.yml +1 -13
  63. data/config/locales/it.yml +4 -17
  64. data/config/locales/ja.yml +56 -22
  65. data/config/locales/lb.yml +6 -8
  66. data/config/locales/lt.yml +3 -22
  67. data/config/locales/lv.yml +2 -9
  68. data/config/locales/nl.yml +3 -12
  69. data/config/locales/no.yml +3 -13
  70. data/config/locales/pl.yml +4 -22
  71. data/config/locales/pt-BR.yml +5 -29
  72. data/config/locales/pt.yml +3 -11
  73. data/config/locales/ro-RO.yml +3 -20
  74. data/config/locales/ru.yml +1 -13
  75. data/config/locales/sk.yml +3 -9
  76. data/config/locales/sl.yml +4 -1
  77. data/config/locales/sv.yml +17 -25
  78. data/config/locales/tr-TR.yml +4 -12
  79. data/config/locales/uk.yml +1 -13
  80. data/config/locales/zh-CN.yml +2 -10
  81. data/config/locales/zh-TW.yml +3 -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 -60
  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
  113. data/config/locales/ca-IT.yml +0 -628
@@ -92,7 +92,7 @@ fi:
92
92
  accepted: Tarpeeksi allekirjoituksia
93
93
  created: Luotu
94
94
  discarded: Perutut
95
- published: Julkaistut
95
+ open: Avoimet
96
96
  rejected: Liian vähän allekirjoituksia
97
97
  validating: Teknisessä validoinnissa
98
98
  type_id_eq:
@@ -101,7 +101,7 @@ fi:
101
101
  title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Etsi kohteita %{collection} otsikon, kuvauksen, ID-numeron tai laatijan nimellä.
102
102
  initiatives_settings:
103
103
  update:
104
- error: Tapahtui virhe.
104
+ error: Aloitteiden asetusten päivittäminen epäonnistui.
105
105
  success: Aloitteiden asetusten päivitys onnistui.
106
106
  menu:
107
107
  attachments: Liitteet
@@ -137,22 +137,30 @@ fi:
137
137
  name: Aloitetyyppi
138
138
  initiatives_votes:
139
139
  fields:
140
+ date_and_time: Päivämäärä ja aika
140
141
  date_of_birth: Syntymäaika
141
142
  document_number: Asiakirjan numero
142
143
  hash: Tiiviste-luku
143
144
  initiative_end_date: Päättymispäivä
144
145
  initiative_id: Aloitteen ID-tunnus
146
+ initiative_scope: Teema
145
147
  initiative_signatures_count: Allekirjoitusten lukumäärä
146
148
  initiative_start_date: Aloituspäivä
147
149
  initiative_title: Aloitteen otsikko
148
150
  name_and_surname: Nimi ja sukunimi
151
+ nickname: Nimimerkki
149
152
  postal_code: Postinumero
150
- scope: Teema
151
- time_and_date: Aika ja päivämäärä
153
+ signature_count: Allekirjoitusten määrä
152
154
  timestamp: Aikaleima
155
+ taxonomy_filters:
156
+ space_filter_for:
157
+ initiatives: Kaikki aloitteet
153
158
  titles:
154
159
  initiatives: Aloitteet
155
160
  initiatives_types: Aloitetyypit
161
+ download_your_data:
162
+ show:
163
+ initiatives: Aloitteiden vienti
156
164
  events:
157
165
  initiatives:
158
166
  admin:
@@ -191,8 +199,8 @@ fi:
191
199
  badges:
192
200
  initiatives:
193
201
  conditions:
194
- - Siirry aloitteiden osallistumistilaan
195
- - Luo uusi aloite ohjeiden mukaisesti
202
+ - Siirry aloitteiden osallistumistilaan
203
+ - Luo uusi aloite ohjeiden mukaisesti
196
204
  description: Tämä kunniamerkki myönnetään, kun laadit uusia aloitteita ja keräät verkoston ihmisiä toteuttamaan niitä.
197
205
  description_another: Tämä käyttäjä on julkaissut %{score} aloitetta.
198
206
  description_own: Olet julkaissut %{score} aloitetta.
@@ -276,7 +284,7 @@ fi:
276
284
  unpublish:
277
285
  success: Aloitteen julkaisun peruminen onnistui.
278
286
  update:
279
- error: Tapahtui virhe.
287
+ error: Aloitteen päivittäminen epäonnistui.
280
288
  success: Aloitteen päivitys onnistui.
281
289
  initiatives_settings:
282
290
  edit:
@@ -290,7 +298,7 @@ fi:
290
298
  title: Aloitteiden asetukset
291
299
  initiatives_type_scopes:
292
300
  create:
293
- error: Tapahtui virhe.
301
+ error: Teeman luominen aloitteelle epäonnistui.
294
302
  success: Aloitetyypille on luotu uusi teema.
295
303
  destroy:
296
304
  success: Teeman poisto onnistui.
@@ -301,11 +309,11 @@ fi:
301
309
  create: Luo
302
310
  title: Luo aloitetyypin teema
303
311
  update:
304
- error: Tapahtui virhe.
312
+ error: Teeman päivittäminen epäonnistui.
305
313
  success: Teeman päivitys onnistui.
306
314
  initiatives_types:
307
315
  create:
308
- error: Tapahtui virhe.
316
+ error: Aloitetyypin luonti epäonnistui.
309
317
  success: Uuden aloitetyypin luonti onnistui. Sinun on määritettävä vähintään yksi teema tälle aloitetyypille, jotta sitä voi käyttää.
310
318
  destroy:
311
319
  success: Aloitetyypin poisto onnistui.
@@ -322,7 +330,7 @@ fi:
322
330
  create: Luo
323
331
  title: Uusi aloitetyyppi
324
332
  update:
325
- error: Tapahtui virhe.
333
+ error: Aloitetyypin päivitys epäonnistui.
326
334
  success: Aloitetyypin päivitys onnistui.
327
335
  admin_log:
328
336
  initiative:
@@ -340,7 +348,7 @@ fi:
340
348
  accepted: Tarpeeksi allekirjoituksia
341
349
  created: Luotu
342
350
  discarded: Peruttu
343
- published: Julkaistu
351
+ open: Avoimet
344
352
  rejected: Liian vähän allekirjoituksia
345
353
  validating: Teknisessä tarkastuksessa
346
354
  application_helper:
@@ -438,10 +446,10 @@ fi:
438
446
  email_subject: "%{applicant_nickname} haluaa liittyä mukaan aloitteeseesi"
439
447
  notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> haki jäseneksi aloitteesi <a href="%{resource_url}">%{resource_title}</a> kannatuskomiteaan. Voit hyväksyä tai hylätä pyynnön <a href="%{resource_url}/edit">aloitteen muokkaussivulta</a>.
440
448
  form:
441
- add_documents: Lisää asiakirjoja
449
+ add_attachments: Lisää liitteitä
442
450
  add_image: Lisää kuva
443
- attachment_legend: "(Valinnainen) Lisää liitetiedosto"
444
- edit_documents: Muokkaa asiakirjoja
451
+ attachment_legend: Lisää asiakirja tai kuva
452
+ edit_attachments: Muokkaa liitteitä
445
453
  edit_image: Muokkaa kuvaa
446
454
  image_legend: "(Vapaaehtoinen) Lisää kuva"
447
455
  index:
@@ -530,9 +538,7 @@ fi:
530
538
  phone_number: Puhelinnumero
531
539
  place_date: Paikka, Päivämäärä
532
540
  postal_code: Postinumero
533
- print: Tulosta
534
541
  province: Lääni tai maakunta
535
- section: 'Pyydettäessä tulostakaa ja täyttäkää tämä lomake lähettääksenne sen osoitettuun paikkaan:'
536
542
  signature: Allekirjoitus
537
543
  result:
538
544
  answer_title: Tähän aloitteeseen on vastattu.
@@ -554,7 +560,6 @@ fi:
554
560
  other: " allekirjoitusta"
555
561
  vote_cabin:
556
562
  already_voted: Allekirjoitettu aikaisemmin
557
- verification_required: Vahvista tilisi allekirjoittaaksesi aloitteen
558
563
  vote: Allekirjoita
559
564
  votes_blocked: Allekirjoitus poistettu käytöstä
560
565
  votes_count:
@@ -589,7 +594,7 @@ fi:
589
594
  accepted: Tarpeeksi allekirjoituksia
590
595
  created: Luotu
591
596
  discarded: Peruttu
592
- published: Julkaistu
597
+ open: Avoimet
593
598
  rejected: Liian vähän allekirjoituksia
594
599
  validating: Teknisessä tarkastuksessa
595
600
  states:
@@ -597,17 +602,46 @@ fi:
597
602
  expired: Vanhentuneet
598
603
  unavailable_scope: Teema ei ole saatavilla
599
604
  update:
600
- error: Tapahtui virhe.
605
+ error: Aloitteen päivitys epäonnistui.
601
606
  success: Aloitteen päivitys onnistui.
602
607
  menu:
603
608
  initiatives: Aloitteet
609
+ open_data:
610
+ help:
611
+ initiatives:
612
+ answer: Aloitteen vastaus, mikäli siihen on vastattu
613
+ answer_url: Vastauksen URL-osoite, mikäli aloitteeseen on vastattu
614
+ answered_at: Vastauksen ajankohta, mikäli aloitteeseen on vastattu
615
+ area: Alue, johon aloite liittyy
616
+ authors: Aloitteen laatijat
617
+ comments_count: Aloitteen kommenttien määrä
618
+ created_at: Tilan luontiaika
619
+ description: Aloitteen kuvaus
620
+ first_progress_notification_at: Ajankohta, jolloin ensimmäinen edistymisheräte lähetettiin
621
+ follows_count: Tilaa seuraavien käyttäjien määrä
622
+ hashtag: Aloitetta vastaava aihetunniste (hashtag), jota käytetään Twitter/X-palvelussa
623
+ offline_votes: Aloitteen keräämien allekirjoitusten määrä alustan ulkopuolella
624
+ online_votes: Aloitteen keräämien allekirjoitusten määrä verkkoalustalla (suoraan tämän alustan kautta)
625
+ published_at: Tilan julkaisuaika
626
+ reference: Tilan yksilöivä viite
627
+ scope: Aloitteen teema
628
+ second_progress_notification_at: Ajankohta, jolloin toinen edistymisheräte lähetettiin
629
+ signature_end_date: Päivämäärä, jolloin aloitteen allekirjoitusten keräysaika päättyy
630
+ signature_start_date: Päivämäärä, jolloin aloitteen allekirjoitusten keräysaika alkaa
631
+ signature_type: Allekirjoitusten keräystapa (verkossa vai fyysisesti)
632
+ signatures: Aloitteen keräämien allekirjoitusten määrä
633
+ state: Aloitteen tila tällä hetkellä
634
+ title: Aloitteen otsikko
635
+ type: Aloitteen tyyppi
636
+ updated_at: Osallistumistilan viimeisimmän päivityksen ajankohta
637
+ url: Tilan URL-osoite
604
638
  resources:
605
639
  initiative:
606
640
  actions:
607
641
  comment: Kommentoi
608
642
  initiatives_type:
609
643
  actions:
610
- create: Luo
644
+ create: Luo aloite
611
645
  title: Toimet
612
646
  vote: Allekirjoita
613
647
  layouts:
@@ -92,7 +92,7 @@ fr-CA:
92
92
  accepted: Assez de signatures
93
93
  created: Créée
94
94
  discarded: Rejetée
95
- published: Publiée
95
+ open: Ouverte
96
96
  rejected: Pas assez de signatures
97
97
  validating: Validation technique
98
98
  type_id_eq:
@@ -101,7 +101,6 @@ fr-CA:
101
101
  title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Rechercher %{collection} par titre, description, ID ou nom de l'auteur.
102
102
  initiatives_settings:
103
103
  update:
104
- error: Une erreur est survenue.
105
104
  success: Les paramètres des pétitions ont bien été mis à jour.
106
105
  menu:
107
106
  attachments: Pièces jointes
@@ -137,6 +136,7 @@ fr-CA:
137
136
  name: Type d'initiative
138
137
  initiatives_votes:
139
138
  fields:
139
+ date_and_time: Date et heure
140
140
  date_of_birth: Date de naissance
141
141
  document_number: Numéro de document
142
142
  hash: Hash
@@ -147,8 +147,6 @@ fr-CA:
147
147
  initiative_title: Titre de l'initiative
148
148
  name_and_surname: Nom et surnom
149
149
  postal_code: Code postal
150
- scope: Secteur
151
- time_and_date: Heure et date
152
150
  timestamp: Horodatage
153
151
  titles:
154
152
  initiatives: Pétitions
@@ -191,8 +189,8 @@ fr-CA:
191
189
  badges:
192
190
  initiatives:
193
191
  conditions:
194
- - Accéder à l'espace Initiatives
195
- - Suivez les étapes pour créer une nouvelle initiative
192
+ - Accéder à l'espace Initiatives
193
+ - Suivez les étapes pour créer une nouvelle initiative
196
194
  description: Ce badge vous est attribué lorsque vous lancez de nouvelles initiatives, en partenariat avec d’autres pour les mener à bien.
197
195
  description_another: Ce participant a publié %{score} initiatives.
198
196
  description_own: Vous avez publié %{score} pétitions.
@@ -262,7 +260,6 @@ fr-CA:
262
260
  new: Nouvelle
263
261
  photos: Photos
264
262
  update:
265
- error: Une erreur est survenue.
266
263
  success: La pétition a été mise à jour avec succès.
267
264
  initiatives_settings:
268
265
  edit:
@@ -276,7 +273,6 @@ fr-CA:
276
273
  title: Paramètres des initiatives
277
274
  initiatives_type_scopes:
278
275
  create:
279
- error: Une erreur est survenue.
280
276
  success: Un nouveau secteur pour ce type de pétition a été créé.
281
277
  destroy:
282
278
  success: Le secteur a été supprimé avec succès.
@@ -287,11 +283,8 @@ fr-CA:
287
283
  create: Créer
288
284
  title: Créer un type de secteur pour les initiatives
289
285
  update:
290
- error: Une erreur est survenue.
291
286
  success: Le secteur a été mis à jour avec succès.
292
287
  initiatives_types:
293
- create:
294
- error: Une erreur est survenue.
295
288
  destroy:
296
289
  success: Le type de pétition a été supprimé avec succès.
297
290
  edit:
@@ -307,7 +300,6 @@ fr-CA:
307
300
  create: Créer
308
301
  title: Nouveau type d'initiative
309
302
  update:
310
- error: Une erreur est survenue.
311
303
  success: Le type de pétition a été mis à jour avec succès.
312
304
  admin_log:
313
305
  initiative:
@@ -325,7 +317,7 @@ fr-CA:
325
317
  accepted: Assez de signatures
326
318
  created: Créée
327
319
  discarded: Retirée
328
- published: Publiée
320
+ open: Ouverte
329
321
  rejected: Pas assez de signatures
330
322
  validating: Validation technique
331
323
  application_helper:
@@ -362,6 +354,7 @@ fr-CA:
362
354
  finish:
363
355
  back: Retour
364
356
  back_to_initiatives: Retour à l'index des initiatives
357
+ callout_text: Bravo ! Votre pétition a été créée avec succès.
365
358
  confirm: Vous allez envoyer la pétition à un administrateur pour qu'il la consulte et la publie. Une fois publiée, vous ne serez plus en mesure de l'éditer. Êtes-vous sûr que votre pétition est prête ?
366
359
  edit_my_initiative: Modifier mon initiative
367
360
  go_to_my_initiatives: Consulter mes initiatives
@@ -422,10 +415,10 @@ fr-CA:
422
415
  email_subject: "%{applicant_nickname} veut rejoindre le comité de promotion de votre pétition"
423
416
  notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> a postulé pour faire partie du comité de promotion de votre pétition <a href="%{resource_url}">%{resource_title}</a>. Pour accepter ou rejeter la demande, cliquez <a href="%{resource_url}/edit">ici</a>.
424
417
  form:
425
- add_documents: Ajouter des documents
418
+ add_attachments: Ajouter des pièces jointes
426
419
  add_image: Ajouter une image
427
- attachment_legend: "(Facultatif) Ajouter une pièce jointe"
428
- edit_documents: Modifier les documents
420
+ attachment_legend: Ajouter un document ou une image
421
+ edit_attachments: Modifier les pièces jointes
429
422
  edit_image: Modifier l'Image
430
423
  image_legend: "(Facultatif) Ajouter une image"
431
424
  index:
@@ -514,9 +507,7 @@ fr-CA:
514
507
  phone_number: Numéro de téléphone
515
508
  place_date: Lieu, Date
516
509
  postal_code: Code Postal/ZIP
517
- print: Impression
518
510
  province: Province/état
519
- section: 'Si l''organisme le demande, veuillez imprimer et remplir ce formulaire pour soumettre si indiqué:'
520
511
  signature: Signature
521
512
  result:
522
513
  answer_title: Cette pétition a reçu une réponse.
@@ -538,7 +529,6 @@ fr-CA:
538
529
  other: " signatures"
539
530
  vote_cabin:
540
531
  already_voted: Déjà signée
541
- verification_required: Vérifiez votre compte pour signer l'initiative
542
532
  vote: Signer
543
533
  votes_blocked: Signatures désactivées
544
534
  votes_count:
@@ -573,7 +563,7 @@ fr-CA:
573
563
  accepted: Assez de signatures
574
564
  created: Créé le
575
565
  discarded: Abandonné
576
- published: Publié
566
+ open: Ouverte
577
567
  rejected: Pas assez de signatures
578
568
  validating: Validation technique
579
569
  states:
@@ -581,7 +571,6 @@ fr-CA:
581
571
  expired: Expirées
582
572
  unavailable_scope: Portée indisponible
583
573
  update:
584
- error: Une erreur est survenue.
585
574
  success: La pétition a été mise à jour avec succès.
586
575
  menu:
587
576
  initiatives: Pétitions
@@ -591,14 +580,13 @@ fr-CA:
591
580
  comment: Commenter
592
581
  initiatives_type:
593
582
  actions:
594
- create: Créer
595
583
  title: Actions
596
- vote: Signer
584
+ vote: Vote
597
585
  layouts:
598
586
  decidim:
599
587
  initiative_creation_header:
600
588
  fill_data: Complétez votre initiative
601
- finish: terminer
589
+ finish: Publiez votre initiative
602
590
  promotal_committee: Comité de promotion
603
591
  select_initiative_type: Sélectionnez le type de d'initiative
604
592
  initiative_signature_creation_header:
@@ -92,7 +92,7 @@ fr:
92
92
  accepted: Assez de signatures
93
93
  created: Créée
94
94
  discarded: Rejetée
95
- published: Publiée
95
+ open: Ouverte
96
96
  rejected: Pas assez de signatures
97
97
  validating: Validation technique
98
98
  type_id_eq:
@@ -101,7 +101,6 @@ fr:
101
101
  title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Rechercher %{collection} par titre, description, ID ou nom de l'auteur.
102
102
  initiatives_settings:
103
103
  update:
104
- error: Une erreur est survenue.
105
104
  success: Les paramètres des pétitions ont bien été mis à jour.
106
105
  menu:
107
106
  attachments: Pièces jointes
@@ -137,6 +136,7 @@ fr:
137
136
  name: Type de pétition
138
137
  initiatives_votes:
139
138
  fields:
139
+ date_and_time: Date et heure
140
140
  date_of_birth: Date de naissance
141
141
  document_number: Numéro de document
142
142
  hash: Hash
@@ -147,8 +147,6 @@ fr:
147
147
  initiative_title: Titre de la pétition
148
148
  name_and_surname: Nom et surnom
149
149
  postal_code: Code postal
150
- scope: Secteur
151
- time_and_date: Heure et date
152
150
  timestamp: Horodatage
153
151
  titles:
154
152
  initiatives: Pétitions
@@ -191,8 +189,8 @@ fr:
191
189
  badges:
192
190
  initiatives:
193
191
  conditions:
194
- - Accéder à l'espace de Pétitions
195
- - Suivez les étapes pour créer une nouvelle pétition
192
+ - Accéder à l'espace de Pétitions
193
+ - Suivez les étapes pour créer une nouvelle pétition
196
194
  description: Ce badge vous est attribué lorsque vous lancez de nouvelles pétitions, en partenariat avec d’autres pour les mener à bien.
197
195
  description_another: Ce participant a publié %{score} pétitions.
198
196
  description_own: Vous avez publié %{score} pétitions.
@@ -262,7 +260,6 @@ fr:
262
260
  new: Nouvelle
263
261
  photos: Photos
264
262
  update:
265
- error: Une erreur est survenue.
266
263
  success: La pétition a été mise à jour avec succès.
267
264
  initiatives_settings:
268
265
  edit:
@@ -276,7 +273,6 @@ fr:
276
273
  title: Paramètres des initiatives
277
274
  initiatives_type_scopes:
278
275
  create:
279
- error: Une erreur est survenue.
280
276
  success: Un nouveau secteur pour ce type de pétition a été créé.
281
277
  destroy:
282
278
  success: Le secteur a été supprimé avec succès.
@@ -287,11 +283,8 @@ fr:
287
283
  create: Créer
288
284
  title: Créer un secteur pour ce type de pétition
289
285
  update:
290
- error: Une erreur est survenue.
291
286
  success: Le secteur a été mis à jour avec succès.
292
287
  initiatives_types:
293
- create:
294
- error: Une erreur est survenue.
295
288
  destroy:
296
289
  success: Le type de pétition a été supprimé avec succès.
297
290
  edit:
@@ -307,7 +300,6 @@ fr:
307
300
  create: Créer
308
301
  title: Nouveau type de pétition
309
302
  update:
310
- error: Une erreur est survenue.
311
303
  success: Le type de pétition a été mis à jour avec succès.
312
304
  admin_log:
313
305
  initiative:
@@ -325,7 +317,7 @@ fr:
325
317
  accepted: Assez de signatures
326
318
  created: Créée
327
319
  discarded: Retirée
328
- published: Publiée
320
+ open: Ouverte
329
321
  rejected: Pas assez de signatures
330
322
  validating: Validation technique
331
323
  application_helper:
@@ -362,6 +354,7 @@ fr:
362
354
  finish:
363
355
  back: Retour
364
356
  back_to_initiatives: Retour à l'index des pétitions
357
+ callout_text: Bravo ! Votre pétition a été créée avec succès.
365
358
  confirm: Vous allez envoyer la pétition à un administrateur pour qu'il la consulte et la publie. Une fois publiée, vous ne serez plus en mesure de l'éditer. Êtes-vous sûr que votre pétition est prête ?
366
359
  edit_my_initiative: Modifier ma pétition
367
360
  go_to_my_initiatives: Consulter mes pétitions
@@ -422,10 +415,10 @@ fr:
422
415
  email_subject: "%{applicant_nickname} veut rejoindre le comité de promotion de votre pétition"
423
416
  notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> a postulé pour faire partie du comité de promotion de votre pétition <a href="%{resource_url}">%{resource_title}</a>. Pour accepter ou rejeter la demande, cliquez <a href="%{resource_url}/edit">ici</a>.
424
417
  form:
425
- add_documents: Ajouter des documents
418
+ add_attachments: Ajouter des pièces jointes
426
419
  add_image: Ajouter une image
427
- attachment_legend: "(Facultatif) Ajouter une pièce jointe"
428
- edit_documents: Modifier les documents
420
+ attachment_legend: Ajouter un document ou une image
421
+ edit_attachments: Modifier les pièces jointes
429
422
  edit_image: Modifier l'Image
430
423
  image_legend: "(Facultatif) Ajouter une image"
431
424
  index:
@@ -514,9 +507,7 @@ fr:
514
507
  phone_number: Numéro de téléphone
515
508
  place_date: Lieu, Date
516
509
  postal_code: Code Postal/ZIP
517
- print: Impression
518
510
  province: Province/état
519
- section: 'Si l''organisme le demande, veuillez imprimer et remplir ce formulaire pour soumettre si indiqué:'
520
511
  signature: Signature
521
512
  result:
522
513
  answer_title: Cette pétition a reçu une réponse.
@@ -538,7 +529,6 @@ fr:
538
529
  other: " signatures"
539
530
  vote_cabin:
540
531
  already_voted: Déjà signée
541
- verification_required: Vérifiez votre compte pour signer la pétition
542
532
  vote: Signer
543
533
  votes_blocked: Signatures désactivées
544
534
  votes_count:
@@ -573,7 +563,7 @@ fr:
573
563
  accepted: Assez de signatures
574
564
  created: Créé le
575
565
  discarded: Retirée
576
- published: Publié
566
+ open: Ouverte
577
567
  rejected: Pas assez de signatures
578
568
  validating: Validation technique
579
569
  states:
@@ -581,7 +571,6 @@ fr:
581
571
  expired: Expirées
582
572
  unavailable_scope: Portée indisponible
583
573
  update:
584
- error: Une erreur est survenue.
585
574
  success: La pétition a été mise à jour avec succès.
586
575
  menu:
587
576
  initiatives: Pétitions
@@ -591,14 +580,13 @@ fr:
591
580
  comment: Commenter
592
581
  initiatives_type:
593
582
  actions:
594
- create: Créer
595
583
  title: Actions
596
- vote: Signer
584
+ vote: Vote
597
585
  layouts:
598
586
  decidim:
599
587
  initiative_creation_header:
600
588
  fill_data: Complétez votre pétition
601
- finish: terminer
589
+ finish: Publiez votre pétition
602
590
  promotal_committee: Comité de promotion
603
591
  select_initiative_type: Sélectionnez le type de pétition
604
592
  initiative_signature_creation_header:
@@ -51,7 +51,6 @@ ga:
51
51
  hash: Hais
52
52
  initiative_end_date: Dáta deiridh
53
53
  postal_code: Cód poist
54
- scope: Scóip
55
54
  initiatives:
56
55
  actions:
57
56
  answer: Freagair
@@ -139,7 +138,6 @@ ga:
139
138
  initiative:
140
139
  title: 'Teideal:'
141
140
  postal_code: Cód poist
142
- print: Clóbhuail
143
141
  show:
144
142
  edit: Eagar
145
143
  vote_cabin:
@@ -159,7 +157,6 @@ ga:
159
157
  comment: Tabhair Trácht
160
158
  initiatives_type:
161
159
  actions:
162
- create: Cruthaigh
163
160
  title: Gníomhartha
164
161
  vote: Sínigh
165
162
  layouts:
@@ -87,8 +87,6 @@ gl:
87
87
  initiative_title: Título da iniciativa
88
88
  name_and_surname: Nome e apelidos
89
89
  postal_code: Código postal
90
- scope: Alcance
91
- time_and_date: Hora e data
92
90
  timestamp: Timestamp
93
91
  titles:
94
92
  initiatives: Iniciativas
@@ -115,8 +113,8 @@ gl:
115
113
  badges:
116
114
  initiatives:
117
115
  conditions:
118
- - Ir ao espazo de participación de Intiatives
119
- - Segue os pasos para crear unha nova iniciativa
116
+ - Ir ao espazo de participación de Intiatives
117
+ - Segue os pasos para crear unha nova iniciativa
120
118
  description: Este distintivo concedeuse cando se lanzan novas iniciativas, se asocian con outras persoas para realizalas.
121
119
  description_another: Este usuario obtivo %{score} iniciativas publicadas.
122
120
  name: Iniciativas publicadas
@@ -191,7 +189,6 @@ gl:
191
189
  admin_states:
192
190
  created: Creada
193
191
  discarded: Descartou
194
- published: Publicado
195
192
  validating: Validación técnica
196
193
  application_helper:
197
194
  filter_state_values:
@@ -239,8 +236,6 @@ gl:
239
236
  email_outro: Recibiches esta notificación porque estás seguindo %{author_nickname}. Podes deixar de recibir notificacións seguindo a ligazón anterior.
240
237
  email_subject: Iniciativa aprobada por %{author_nickname}
241
238
  notification_title: A <a href="%{resource_path}">%{resource_title}</a> iniciativa foi aprobada por <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
242
- form:
243
- attachment_legend: "(Opcional) Engade un anexo"
244
239
  initiative_signatures:
245
240
  fill_personal_data:
246
241
  continue: Continuar
@@ -288,7 +283,6 @@ gl:
288
283
  recent: Máis recente
289
284
  print:
290
285
  city: Cidade
291
- print: Imprimir
292
286
  result:
293
287
  initiative_rejected_reason: Esta iniciativa foi rexeitada debido á súa falta de apoios.
294
288
  signatures_count:
@@ -296,7 +290,6 @@ gl:
296
290
  other: " sinaturas"
297
291
  vote_cabin:
298
292
  already_voted: Xa está asinado
299
- verification_required: Verifica a túa conta para asinar a iniciativa
300
293
  vote: Iniciar sesión
301
294
  votes_blocked: A sinatura está desactivada
302
295
  votes_count:
@@ -323,14 +316,13 @@ gl:
323
316
  resources:
324
317
  initiatives_type:
325
318
  actions:
326
- create: Crear
327
319
  title: Accións
328
- vote: Iniciar sesión
320
+ vote: Vota
329
321
  layouts:
330
322
  decidim:
331
323
  initiative_creation_header:
332
324
  fill_data: Crear
333
- finish: Finalizar
325
+ finish: Rematar
334
326
  promotal_committee: Comité de promoción
335
327
  select_initiative_type: Elixe
336
328
  initiative_signature_creation_header: