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 @@ 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:
@@ -423,10 +415,10 @@ fr-CA:
423
415
  email_subject: "%{applicant_nickname} veut rejoindre le comité de promotion de votre pétition"
424
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>.
425
417
  form:
426
- add_documents: Ajouter des documents
418
+ add_attachments: Ajouter des pièces jointes
427
419
  add_image: Ajouter une image
428
- attachment_legend: "(Facultatif) Ajouter une pièce jointe"
429
- edit_documents: Modifier les documents
420
+ attachment_legend: Ajouter un document ou une image
421
+ edit_attachments: Modifier les pièces jointes
430
422
  edit_image: Modifier l'Image
431
423
  image_legend: "(Facultatif) Ajouter une image"
432
424
  index:
@@ -515,9 +507,7 @@ fr-CA:
515
507
  phone_number: Numéro de téléphone
516
508
  place_date: Lieu, Date
517
509
  postal_code: Code Postal/ZIP
518
- print: Impression
519
510
  province: Province/état
520
- section: 'Si l''organisme le demande, veuillez imprimer et remplir ce formulaire pour soumettre si indiqué:'
521
511
  signature: Signature
522
512
  result:
523
513
  answer_title: Cette pétition a reçu une réponse.
@@ -539,7 +529,6 @@ fr-CA:
539
529
  other: " signatures"
540
530
  vote_cabin:
541
531
  already_voted: Déjà signée
542
- verification_required: Vérifiez votre compte pour signer l'initiative
543
532
  vote: Signer
544
533
  votes_blocked: Signatures désactivées
545
534
  votes_count:
@@ -574,7 +563,7 @@ fr-CA:
574
563
  accepted: Assez de signatures
575
564
  created: Créé le
576
565
  discarded: Abandonné
577
- published: Publié
566
+ open: Ouverte
578
567
  rejected: Pas assez de signatures
579
568
  validating: Validation technique
580
569
  states:
@@ -582,7 +571,6 @@ fr-CA:
582
571
  expired: Expirées
583
572
  unavailable_scope: Portée indisponible
584
573
  update:
585
- error: Une erreur est survenue.
586
574
  success: La pétition a été mise à jour avec succès.
587
575
  menu:
588
576
  initiatives: Pétitions
@@ -592,7 +580,6 @@ fr-CA:
592
580
  comment: Commenter
593
581
  initiatives_type:
594
582
  actions:
595
- create: Créer
596
583
  title: Actions
597
584
  vote: Vote
598
585
  layouts:
@@ -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:
@@ -423,10 +415,10 @@ fr:
423
415
  email_subject: "%{applicant_nickname} veut rejoindre le comité de promotion de votre pétition"
424
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>.
425
417
  form:
426
- add_documents: Ajouter des documents
418
+ add_attachments: Ajouter des pièces jointes
427
419
  add_image: Ajouter une image
428
- attachment_legend: "(Facultatif) Ajouter une pièce jointe"
429
- edit_documents: Modifier les documents
420
+ attachment_legend: Ajouter un document ou une image
421
+ edit_attachments: Modifier les pièces jointes
430
422
  edit_image: Modifier l'Image
431
423
  image_legend: "(Facultatif) Ajouter une image"
432
424
  index:
@@ -515,9 +507,7 @@ fr:
515
507
  phone_number: Numéro de téléphone
516
508
  place_date: Lieu, Date
517
509
  postal_code: Code Postal/ZIP
518
- print: Impression
519
510
  province: Province/état
520
- section: 'Si l''organisme le demande, veuillez imprimer et remplir ce formulaire pour soumettre si indiqué:'
521
511
  signature: Signature
522
512
  result:
523
513
  answer_title: Cette pétition a reçu une réponse.
@@ -539,7 +529,6 @@ fr:
539
529
  other: " signatures"
540
530
  vote_cabin:
541
531
  already_voted: Déjà signée
542
- verification_required: Vérifiez votre compte pour signer la pétition
543
532
  vote: Signer
544
533
  votes_blocked: Signatures désactivées
545
534
  votes_count:
@@ -574,7 +563,7 @@ fr:
574
563
  accepted: Assez de signatures
575
564
  created: Créé le
576
565
  discarded: Retirée
577
- published: Publié
566
+ open: Ouverte
578
567
  rejected: Pas assez de signatures
579
568
  validating: Validation technique
580
569
  states:
@@ -582,7 +571,6 @@ fr:
582
571
  expired: Expirées
583
572
  unavailable_scope: Portée indisponible
584
573
  update:
585
- error: Une erreur est survenue.
586
574
  success: La pétition a été mise à jour avec succès.
587
575
  menu:
588
576
  initiatives: Pétitions
@@ -592,7 +580,6 @@ fr:
592
580
  comment: Commenter
593
581
  initiatives_type:
594
582
  actions:
595
- create: Créer
596
583
  title: Actions
597
584
  vote: Vote
598
585
  layouts:
@@ -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,7 +316,6 @@ gl:
323
316
  resources:
324
317
  initiatives_type:
325
318
  actions:
326
- create: Crear
327
319
  title: Accións
328
320
  vote: Vota
329
321
  layouts:
@@ -88,7 +88,6 @@ hu:
88
88
  accepted: Elég aláírások
89
89
  created: Létrehozva
90
90
  discarded: Elvetve
91
- published: Közzétéve
92
91
  rejected: Nincsen elég aláírás
93
92
  validating: Technikai érvényesítés
94
93
  type_id_eq:
@@ -97,7 +96,6 @@ hu:
97
96
  title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Keresés a(z) %{collection} elemei között cím, leírás, azonosító vagy szerző alapján.
98
97
  initiatives_settings:
99
98
  update:
100
- error: Hiba történt.
101
99
  success: A kezdeményezés beállítása sikeres.
102
100
  menu:
103
101
  attachments: Csatolmányok
@@ -138,8 +136,6 @@ hu:
138
136
  initiative_title: Kezdeményezés címe
139
137
  name_and_surname: Keresztnév és Vezetéknév
140
138
  postal_code: Irányítószám
141
- scope: Hatáskör
142
- time_and_date: Idő és dátum
143
139
  timestamp: Időbélyeg
144
140
  titles:
145
141
  initiatives: Kezdeményezések
@@ -182,8 +178,8 @@ hu:
182
178
  badges:
183
179
  initiatives:
184
180
  conditions:
185
- - Menjen az Intiatives részvételi helyére
186
- - Kövesse az új kezdeményezés létrehozásához szükséges lépéseket
181
+ - Menjen az Intiatives részvételi helyére
182
+ - Kövesse az új kezdeményezés létrehozásához szükséges lépéseket
187
183
  description: Ezt a jelvényt akkor kapja meg, ha új kezdeményezéseket indít el, és másokkal partnerséget hajt végre.
188
184
  description_another: Ez a résztvevő %{score} kezdeményezést tett közzé.
189
185
  description_own: '%{score} kezdeményezésed van közzétéve.'
@@ -253,7 +249,6 @@ hu:
253
249
  new: Új
254
250
  photos: Fotók
255
251
  update:
256
- error: Hiba történt.
257
252
  success: A kezdeményezés frissítése sikeres.
258
253
  initiatives_settings:
259
254
  edit:
@@ -267,7 +262,6 @@ hu:
267
262
  title: Kezdeményezések beállításai
268
263
  initiatives_type_scopes:
269
264
  create:
270
- error: Hiba történt.
271
265
  success: Az adott kezdeményezési típushoz új hatáskört hoztunk létre.
272
266
  destroy:
273
267
  success: A hatáskör eltávolítása sikeres volt.
@@ -278,11 +272,8 @@ hu:
278
272
  create: Létrehozás
279
273
  title: Kezdeményezési típus hatáskörének létrehozása
280
274
  update:
281
- error: Hiba történt.
282
275
  success: A hatáskör frissítése sikeres.
283
276
  initiatives_types:
284
- create:
285
- error: Hiba történt.
286
277
  destroy:
287
278
  success: A kezdeményezéstípus eltávolítása sikeres.
288
279
  edit:
@@ -296,7 +287,6 @@ hu:
296
287
  create: Létrehozás
297
288
  title: Új kezdeményezéstípus
298
289
  update:
299
- error: Hiba történt.
300
290
  success: A kezdeményezéstípus frissítése sikeres.
301
291
  admin_log:
302
292
  initiative:
@@ -314,7 +304,6 @@ hu:
314
304
  accepted: Elegendő aláírás
315
305
  created: Létrehozva
316
306
  discarded: Elvetve
317
- published: Közzétéve
318
307
  rejected: Nincs elegendő aláírás
319
308
  validating: Technikai érvényesítés
320
309
  application_helper:
@@ -410,8 +399,6 @@ hu:
410
399
  email_outro: 'Ezt az értesítést azért kaptad, mert Te vagy a %{resource_title} kezdeményezés elindítója.'
411
400
  email_subject: "%{applicant_nickname} szeretne csatlakozni a kezdeményezésedhez"
412
401
  notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> a <a href="%{resource_url}"> %{resource_title}</a> kezdeményezésed előterjesztő bizottságába jelentkezett. Az elfogadáshoz vagy elutasításhoz kattints <a href="%{resource_url}/edit">ide</a>.
413
- form:
414
- attachment_legend: "(Opcionális) Csatolmány hozzáadása"
415
402
  initiative_signatures:
416
403
  fill_personal_data:
417
404
  continue: Tovább
@@ -485,9 +472,7 @@ hu:
485
472
  phone_number: Telefonszám
486
473
  place_date: Hely, dátum
487
474
  postal_code: Irányítószám
488
- print: Nyomtatás
489
475
  province: Megye
490
- section: 'Ha a szervezet kéri, kérjük, nyomtassa ki és töltse ki ezt az űrlapot, és küldje be a megadott helyre:'
491
476
  signature: Aláírás
492
477
  result:
493
478
  initiative_rejected_reason: A kezdeményezést a támogatás hiánya miatt elutasították.
@@ -500,7 +485,6 @@ hu:
500
485
  other: " aláírások"
501
486
  vote_cabin:
502
487
  already_voted: Már aláírtad
503
- verification_required: Ellenőrizze fiókját, hogy aláírja a kezdeményezést
504
488
  vote: Aláírás
505
489
  votes_blocked: Aláírás letiltva
506
490
  votes_count:
@@ -528,7 +512,6 @@ hu:
528
512
  accepted: Elegendő aláírás
529
513
  created: Létrehozva
530
514
  discarded: Elvetve
531
- published: Közzétéve
532
515
  rejected: Nincs elegendő aláírás
533
516
  validating: Technikai érvényesítés
534
517
  states:
@@ -543,7 +526,6 @@ hu:
543
526
  comment: Megjegyzés
544
527
  initiatives_type:
545
528
  actions:
546
- create: Létrehozás
547
529
  title: Hozzászólások
548
530
  vote: Szavazás
549
531
  layouts: