decidim-elections 0.25.2 → 0.26.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/elections/election_m_cell.rb +1 -1
  3. data/app/cells/decidim/votings/content_blocks/highlighted_votings_cell.rb +12 -0
  4. data/app/cells/decidim/votings/content_blocks/landing_page/description_cell.rb +1 -1
  5. data/app/cells/decidim/votings/voting_m_cell.rb +1 -1
  6. data/app/commands/decidim/elections/admin/add_user_as_trustee.rb +1 -1
  7. data/app/commands/decidim/elections/admin/report_missing_trustee.rb +68 -0
  8. data/app/commands/decidim/elections/admin/setup_election.rb +1 -1
  9. data/app/commands/decidim/elections/admin/start_tally.rb +1 -1
  10. data/app/commands/decidim/votings/admin/create_ballot_style.rb +8 -5
  11. data/app/commands/decidim/votings/admin/destroy_ballot_style.rb +11 -3
  12. data/app/commands/decidim/votings/admin/update_ballot_style.rb +6 -1
  13. data/app/commands/decidim/votings/census/admin/create_dataset.rb +13 -5
  14. data/app/controllers/concerns/decidim/monitoring_committee_polling_station_closures/admin/filterable.rb +1 -1
  15. data/app/controllers/concerns/decidim/polling_stations/admin/filterable.rb +1 -1
  16. data/app/controllers/decidim/elections/admin/steps_controller.rb +26 -7
  17. data/app/controllers/decidim/votings/admin/ballot_styles_controller.rb +1 -1
  18. data/app/forms/decidim/elections/admin/action_form.rb +4 -0
  19. data/app/forms/decidim/elections/admin/report_missing_trustee_form.rb +22 -0
  20. data/app/forms/decidim/elections/admin/setup_form.rb +4 -0
  21. data/app/models/decidim/elections/action.rb +1 -1
  22. data/app/models/decidim/elections/trustee.rb +4 -0
  23. data/app/models/decidim/votings/ballot_style.rb +6 -0
  24. data/app/models/decidim/votings/census/dataset.rb +2 -0
  25. data/app/models/decidim/votings/monitoring_committee_member.rb +6 -0
  26. data/app/models/decidim/votings/polling_officer.rb +5 -0
  27. data/app/models/decidim/votings/polling_station.rb +6 -0
  28. data/app/packs/entrypoints/decidim_elections_admin_trustees_process.js +1 -0
  29. data/app/packs/src/decidim/elections/admin/pending_action.js +1 -1
  30. data/app/packs/src/decidim/elections/admin/trustees_process.js +125 -0
  31. data/app/packs/src/decidim/elections/election_log.js +89 -73
  32. data/app/packs/src/decidim/elections/trustee/key_ceremony.js +3 -3
  33. data/app/packs/src/decidim/elections/trustee/tally.js +3 -3
  34. data/app/packs/src/decidim/elections/trustee/trustee_zone.js +29 -18
  35. data/app/packs/src/decidim/elections/voter/casting-vote.js +1 -1
  36. data/app/packs/src/decidim/elections/voter/setup-vote.js +5 -5
  37. data/app/packs/src/decidim/elections/voter/verify-vote.js +1 -1
  38. data/app/packs/src/decidim/votings/in-person-vote.js +1 -1
  39. data/app/presenters/decidim/elections/admin_log/election_presenter.rb +34 -9
  40. data/app/presenters/decidim/elections/admin_log/trustee_presenter.rb +50 -0
  41. data/app/presenters/decidim/elections/trustee_presenter.rb +5 -1
  42. data/app/presenters/decidim/votings/admin_log/ballot_style_presenter.rb +35 -0
  43. data/app/presenters/decidim/votings/admin_log/monitoring_committee_member_presenter.rb +50 -0
  44. data/app/presenters/decidim/votings/admin_log/polling_officer_presenter.rb +50 -0
  45. data/app/presenters/decidim/votings/admin_log/polling_station_presenter.rb +29 -0
  46. data/app/presenters/decidim/votings/admin_log/voting_presenter.rb +1 -1
  47. data/app/presenters/decidim/votings/census/admin_log/dataset_presenter.rb +7 -6
  48. data/app/services/decidim/votings/voting_search.rb +2 -2
  49. data/app/views/decidim/elections/admin/steps/_create_election.html.erb +3 -3
  50. data/app/views/decidim/elections/admin/steps/_key_ceremony.html.erb +44 -9
  51. data/app/views/decidim/elections/admin/steps/_tally.html.erb +60 -10
  52. data/app/views/decidim/elections/admin/steps/index.html.erb +17 -15
  53. data/app/views/decidim/elections/elections/_filters_small_view.html.erb +3 -3
  54. data/app/views/decidim/elections/elections/election_log.html.erb +1 -1
  55. data/app/views/decidim/elections/elections/show.html.erb +1 -1
  56. data/app/views/decidim/elections/trustee_zone/elections/show.html.erb +1 -1
  57. data/app/views/decidim/elections/trustee_zone/trustees/show.html.erb +1 -1
  58. data/app/views/decidim/elections/votes/_onboarding_modal.html.erb +1 -1
  59. data/app/views/decidim/elections/votes/_show_casted.html.erb +1 -1
  60. data/app/views/decidim/elections/votes/_show_casting.html.erb +1 -1
  61. data/app/views/decidim/elections/votes/new.html.erb +3 -3
  62. data/app/views/decidim/elections/votes/verify.html.erb +1 -1
  63. data/app/views/decidim/votings/admin/votings/index.html.erb +1 -1
  64. data/app/views/decidim/votings/polling_officer_zone/closures/_modal_ballots_count_error.html.erb +3 -2
  65. data/app/views/decidim/votings/polling_officer_zone/closures/_modal_ballots_results_count_error.html.erb +3 -2
  66. data/app/views/decidim/votings/polling_officer_zone/closures/_sign_form.html.erb +4 -3
  67. data/app/views/decidim/votings/polling_officer_zone/closures/edit.html.erb +1 -1
  68. data/app/views/decidim/votings/polling_officer_zone/closures/new.html.erb +1 -1
  69. data/app/views/decidim/votings/polling_officer_zone/in_person_votes/new.html.erb +1 -1
  70. data/app/views/decidim/votings/polling_officer_zone/in_person_votes/show.html.erb +1 -1
  71. data/app/views/decidim/votings/votings/_filters_small_view.html.erb +3 -3
  72. data/app/views/decidim/votings/votings/_promoted_voting.html.erb +1 -1
  73. data/config/assets.rb +1 -0
  74. data/config/locales/ca.yml +2 -17
  75. data/config/locales/cs.yml +45 -13
  76. data/config/locales/de.yml +0 -15
  77. data/config/locales/en.yml +41 -11
  78. data/config/locales/es-MX.yml +2 -17
  79. data/config/locales/es-PY.yml +2 -17
  80. data/config/locales/es.yml +43 -15
  81. data/config/locales/eu.yml +24 -17
  82. data/config/locales/fi-plain.yml +41 -13
  83. data/config/locales/fi.yml +41 -13
  84. data/config/locales/fr-CA.yml +32 -14
  85. data/config/locales/fr.yml +32 -14
  86. data/config/locales/ga-IE.yml +0 -9
  87. data/config/locales/gl.yml +21 -9
  88. data/config/locales/hu.yml +0 -5
  89. data/config/locales/it.yml +36 -12
  90. data/config/locales/ja.yml +234 -16
  91. data/config/locales/lb-LU.yml +24 -0
  92. data/config/locales/nl.yml +224 -11
  93. data/config/locales/no.yml +0 -5
  94. data/config/locales/pl.yml +13 -12
  95. data/config/locales/pt-BR.yml +5 -16
  96. data/config/locales/pt.yml +43 -10
  97. data/config/locales/ro-RO.yml +24 -17
  98. data/config/locales/sv.yml +3 -8
  99. data/config/locales/tr-TR.yml +3 -9
  100. data/config/locales/val-ES.yml +1 -0
  101. data/config/locales/zh-CN.yml +0 -4
  102. data/lib/decidim/elections/component.rb +2 -1
  103. data/lib/decidim/elections/test/factories.rb +2 -2
  104. data/lib/decidim/elections/version.rb +1 -1
  105. metadata +31 -21
@@ -269,8 +269,8 @@ cs:
269
269
  title: Volba vytvořena
270
270
  trustees: Důvěrníci
271
271
  key_ceremony:
272
+ continue: Pokračovat
272
273
  title: Slavnostní ceremoniál
273
- trustees: Důvěrníci
274
274
  key_ceremony_ended:
275
275
  errors:
276
276
  time_before: Volby jsou připraveny k zahájení. Musíte počkat %{hours} hodin před začátkem období hlasování (%{start_time}).
@@ -290,8 +290,14 @@ cs:
290
290
  submit: Odeslat
291
291
  title: Výsledky publikovány
292
292
  tally:
293
+ continue: Pokračovat
294
+ invalid: Došlo k problému s nahlášením chybějícího důvěrníka
295
+ mark_as_missing: Označit jako chybějící
296
+ mark_as_missing_description: Tohoto procesu by se měli účastnit všichni důvěrníci, ale pokud se některý důvěrník nemůže procesu účastnit, můžete ho označit jako chybějícího.
297
+ success: Zpráva o chybějícím důvěrníkovi byla úspěšně odeslána na vývěsku
298
+ tally_completion: Proces bude dokončen, jakmile budou všichni důvěrníci aktivní nebo budou označeni jako chybějící. K dokončení procesu je zapotřebí alespoň %{quorum} důvěrníků.
293
299
  title: Proces volebního přepočítání
294
- trustees: Důvěrníci
300
+ undo_mark_as_missing: Správce, který byl omylem označen jako chybějící, se bude moci zúčastnit před dokončením procesu. Může postupovat jako obvykle a chybějící označení bude ignorováno.
295
301
  tally_ended:
296
302
  answer: Odpověď
297
303
  not_selected: Nevybráno
@@ -344,14 +350,20 @@ cs:
344
350
  success: Důvěrník %{trustee} úspěšně aktualizován
345
351
  admin_log:
346
352
  election:
347
- end_vote: "%{user_name} ukončil hlasovací období pro volby v %{resource_name} na Vývěsce"
348
- publish: "%{user_name} zveřejnil volby %{resource_name}"
349
- publish_results: "%{user_name} zveřejnil výsledky voleb %{resource_name} na volební vývěsce"
350
- setup: "%{user_name} vytvořil %{resource_name} volby na Vývěsce"
351
- start_key_ceremony: "%{user_name} zahájil Úvodní volební ceremoniál na Vývěsce %{resource_name}"
352
- start_tally: "%{user_name} zahájil Volební přepočítání pro volby v %{resource_name} na Vývěsce"
353
- start_vote: "%{user_name} zahájil hlasovací období pro volby %{resource_name} na Vývěsce"
354
- unpublish: "%{user_name} zrušil zveřejnění volby %{resource_name}"
353
+ create: "%{user_name} vytvořil volby %{resource_name} z %{space_name}"
354
+ delete: "%{user_name} odstranil volby %{resource_name} ze %{space_name}"
355
+ end_vote: "%{user_name} ukončil hlasovací období pro zvolení %{resource_name} ve %{space_name} na Vývěsce"
356
+ publish: "%{user_name} publikoval volbu %{resource_name} z %{space_name}"
357
+ publish_results: "%{user_name} zveřejnil výsledky voleb %{resource_name} v %{space_name} na Vývěsce"
358
+ report_missing_trustee: "%{user_name} nahlásil %{trustee_name} jako chybějícího správce během volby %{resource_name} %{space_name} na Vývěsce"
359
+ setup: "%{user_name} vytvořil volbu %{resource_name} z %{space_name} na Vývěsce"
360
+ start_key_ceremony: "%{user_name} zahájil klíčový ceremoniál pro volby %{resource_name} z %{space_name} na Vývěsce"
361
+ start_tally: "%{user_name} zahájil volební přepočítání pro volby %{resource_name} %{space_name} na Vývěsce"
362
+ start_vote: "%{user_name} zahájil hlasovací období pro volby %{resource_name} z %{space_name} na Vývěsce"
363
+ unpublish: "%{user_name} zrušil publikaci %{resource_name} z volby %{space_name}"
364
+ update: "%{user_name} aktualizoval volbu %{resource_name} z %{space_name}"
365
+ trustee:
366
+ create: "%{user_name} přiřadil uživatele %{trustee_user} jako důvěrníka"
355
367
  election_m:
356
368
  badge_name:
357
369
  finished: Dokončeno
@@ -361,8 +373,9 @@ cs:
361
373
  footer:
362
374
  remaining_time:
363
375
  one: "Na hlasování zbývá <strong>%{count} hodina a %{minutes} minut</strong>."
376
+ few: "Na hlasování zbývá <strong>%{count} hodiny a %{minutes} minut</strong>."
377
+ many: "Na hlasování zbývá <strong>%{count} hodin a %{minutes} minut</strong>."
364
378
  other: "Na hlasování zbývá <strong>%{count} hodin a %{minutes} minut</strong>."
365
- zero: "Na hlasování zbývá <strong>%{minutes} minut</strong>."
366
379
  view: Zobrazit
367
380
  vote: Hlasovat
368
381
  label:
@@ -445,8 +458,9 @@ cs:
445
458
  title: Výsledky voleb
446
459
  votes:
447
460
  one: "%{count} hlas"
461
+ few: "%{count} hlasy"
462
+ many: "%{count} hlasů"
448
463
  other: "%{count} hlasů"
449
- zero: "%{count} hlasů"
450
464
  show:
451
465
  action_button:
452
466
  change_vote: Změňte svůj hlas
@@ -1010,6 +1024,24 @@ cs:
1010
1024
  invalid: Při aktualizaci tohoto hlasování došlo k chybě
1011
1025
  success: Hlasování bylo úspěšně aktualizováno
1012
1026
  admin_log:
1027
+ ballot_style:
1028
+ create: "%{user_name} vytvořil styl voleb s kódem %{ballot_style_code} ve %{space_name}"
1029
+ delete: "%{user_name} odstranil styl voleb s kódem %{ballot_style_code} ve %{space_name}"
1030
+ update: "%{user_name} aktualizoval styl voleb s kódem %{ballot_style_code} ve %{space_name}"
1031
+ census:
1032
+ create: "%{user_name} vytvořil sčítání pro %{space_name}"
1033
+ delete: "%{user_name} odstranil sčítání pro %{space_name}"
1034
+ update: "%{user_name} aktualizoval sčítání pro %{space_name}"
1035
+ monitoring_committee_member:
1036
+ create: "%{user_name} přiřadil uživatele %{monitoring_committee_member_user} jako člena monitorovacího výboru ve %{space_name}"
1037
+ delete: "%{user_name} odebral uživatele %{monitoring_committee_member_user} jako člena monitorovacího výboru ve %{space_name}"
1038
+ polling_officer:
1039
+ create: "%{user_name} přiřadil uživatele %{polling_officer_user} jako volebního úředníka ve %{space_name}"
1040
+ delete: "%{user_name} zrušil přiřazení uživatele %{polling_officer_user} jako volebního úředníka ve %{space_name}"
1041
+ polling_station:
1042
+ create: "%{user_name} vytvořil hlasovací místo %{resource_name} ve %{space_name}"
1043
+ delete: "%{user_name} odstranil hlasovací místo %{resource_name} ve %{space_name}"
1044
+ update: "%{user_name} aktualizoval hlasovací místo %{resource_name} ve %{space_name}"
1013
1045
  voting:
1014
1046
  create: "%{user_name} vytvořil %{resource_name} hlasování"
1015
1047
  publish: "%{user_name} zveřejnil %{resource_name} hlasování"
@@ -1019,7 +1051,7 @@ cs:
1019
1051
  census:
1020
1052
  create:
1021
1053
  invalid: Při nahrávání seznamu osob došlo k chybě, opakujte akci později.
1022
- invalid_csv_header: Záhlaví CSV nemá správný počet polí - přečtěte si prosím pečlivě pokyny
1054
+ invalid_csv_header: Hlavičky CSV chybí nebo nejsou správné - přečtěte si prosím pečlivě pokyny
1023
1055
  creating_data:
1024
1056
  info_message: "<strong>Počkejte prosím</strong>, zpracováno %{processed_count} z %{raw_count} řádků ze souboru %{file}."
1025
1057
  delete:
@@ -254,7 +254,6 @@ de:
254
254
  trustees: Wahlhelfer
255
255
  key_ceremony:
256
256
  title: Schlüsselzeremonie
257
- trustees: Wahlhelfer
258
257
  key_ceremony_ended:
259
258
  errors:
260
259
  time_before: Die Wahl ist startbereit. Sie können die Abstimmungsperiode frühestens %{hours} Stunden vor der Startzeit (%{start_time}) eröffnen.
@@ -275,7 +274,6 @@ de:
275
274
  title: Ergebnisse veröffentlicht
276
275
  tally:
277
276
  title: Stimmenzähl-Prozess
278
- trustees: Wahlhelfer
279
277
  tally_ended:
280
278
  answer: Antwort
281
279
  not_selected: Nicht ausgewählt
@@ -326,16 +324,6 @@ de:
326
324
  update:
327
325
  invalid: Es ist ein Problem beim Aktualisieren des Wahlhelfers %{trustee} aufgetreten
328
326
  success: Wahlhelfer %{trustee} erfolgreich aktualisiert
329
- admin_log:
330
- election:
331
- end_vote: "%{user_name} hat die Abstimmungsperiode für die Wahl %{resource_name} im Bulletin Board beendet"
332
- publish: "%{user_name} hat die %{resource_name} Wahl veröffentlicht"
333
- publish_results: "%{user_name} hat die Resultate für die Wahl %{resource_name} im Bulletin Board veröffentlicht"
334
- setup: "%{user_name} hat die Wahl %{resource_name} auf dem Bulletin Board erstellt"
335
- start_key_ceremony: "%{user_name} hat die Schlüssel-Zeremonie für die Wahl %{resource_name} im Bulletin Board eröffnet"
336
- start_tally: "%{user_name} hat die Stimmenzählung für die Wahl %{resource_name} im Bulletin Board eröffnet"
337
- start_vote: "%{user_name} hat die Abstimmungsperiode für die Wahl %{resource_name} im Bulletin Board eröffnet"
338
- unpublish: "%{user_name} hat die %{resource_name} Wahl zurückgezogen"
339
327
  election_m:
340
328
  badge_name:
341
329
  finished: Abgeschlossen
@@ -346,7 +334,6 @@ de:
346
334
  remaining_time:
347
335
  one: "<strong>%{count} Stunde %{minutes} Minuten</strong> verbleiben zur Abstimmung."
348
336
  other: "<strong>%{count} Stunden %{minutes} Minuten</strong> verbleiben zur Abstimmung."
349
- zero: "<strong>%{minutes} Minuten</strong> verbleibend zur Abstimmung."
350
337
  view: Ansicht
351
338
  vote: Abstimmung
352
339
  label:
@@ -428,7 +415,6 @@ de:
428
415
  votes:
429
416
  one: "%{count} Stimme"
430
417
  other: "%{count} Stimmen"
431
- zero: "%{count} Stimmen"
432
418
  show:
433
419
  action_button:
434
420
  change_vote: Stimme ändern
@@ -981,7 +967,6 @@ de:
981
967
  census:
982
968
  create:
983
969
  invalid: Beim Hochladen der Erhebung ist ein Problem aufgetreten, bitte versuchen Sie es später erneut.
984
- invalid_csv_header: Der CSV-Header hat nicht die richtige Anzahl Felder - bitte lesen Sie die Anweisungen sorgfältig
985
970
  creating_data:
986
971
  info_message: "<strong>Bitte warten</strong>, %{processed_count} von %{raw_count} Zeilen aus der Datei %{file} wurden verarbeitet."
987
972
  delete:
@@ -254,8 +254,8 @@ en:
254
254
  title: Election created
255
255
  trustees: Trustees
256
256
  key_ceremony:
257
+ continue: Continue
257
258
  title: Key ceremony
258
- trustees: Trustees
259
259
  key_ceremony_ended:
260
260
  errors:
261
261
  time_before: The election is ready to start. You have to wait until %{hours} hours before the starting time (%{start_time}) to start the voting period.
@@ -275,8 +275,14 @@ en:
275
275
  submit: Submit
276
276
  title: Results published
277
277
  tally:
278
+ continue: Continue
279
+ invalid: There was a problem reporting the missing trustee
280
+ mark_as_missing: Mark as missing
281
+ mark_as_missing_description: All the trustees should participate in this process, but if a trustee can't take part in the process, you can mark it as missing.
282
+ success: Missing trustee report was successfully sent to the Bulletin Board
283
+ tally_completion: The process will be completed when all the trustees are active or marked as missing. At least %{quorum} trustees are required to complete the process.
278
284
  title: Tally process
279
- trustees: Trustees
285
+ undo_mark_as_missing: A trustee marked as missing by mistake will be able to participate before the completion of the process. They can proceed as usual and the missing mark will be ignored.
280
286
  tally_ended:
281
287
  answer: Answer
282
288
  not_selected: Not selected
@@ -329,14 +335,20 @@ en:
329
335
  success: Trustee %{trustee} successfully updated
330
336
  admin_log:
331
337
  election:
332
- end_vote: "%{user_name} ended the voting period for the %{resource_name} election on the Bulletin Board"
333
- publish: "%{user_name} published the %{resource_name} election"
334
- publish_results: "%{user_name} published the results for the election %{resource_name} on the Bulletin Board"
335
- setup: "%{user_name} created the %{resource_name} election on the Bulletin Board"
336
- start_key_ceremony: "%{user_name} started the key ceremony for the %{resource_name} election on the Bulletin Board"
337
- start_tally: "%{user_name} started the tally for the %{resource_name} election on the Bulletin Board"
338
- start_vote: "%{user_name} started the voting period for the %{resource_name} election on the Bulletin Board"
339
- unpublish: "%{user_name} unpublished the %{resource_name} election"
338
+ create: "%{user_name} created the election %{resource_name} of %{space_name}"
339
+ delete: "%{user_name} deleted the election %{resource_name} of %{space_name}"
340
+ end_vote: "%{user_name} ended the voting period for the election %{resource_name} of %{space_name} on the Bulletin Board"
341
+ publish: "%{user_name} published the election %{resource_name} of %{space_name}"
342
+ publish_results: "%{user_name} published the results for the election %{resource_name} of %{space_name} on the Bulletin Board"
343
+ report_missing_trustee: "%{user_name} reported %{trustee_name} as a missing trustee during the tally for the election %{resource_name} of %{space_name} on the Bulletin Board"
344
+ setup: "%{user_name} created the election %{resource_name} of %{space_name} on the Bulletin Board"
345
+ start_key_ceremony: "%{user_name} started the key ceremony for the election %{resource_name} of %{space_name} on the Bulletin Board"
346
+ start_tally: "%{user_name} started the tally for the election %{resource_name} of %{space_name} on the Bulletin Board"
347
+ start_vote: "%{user_name} started the voting period for the election %{resource_name} of %{space_name} on the Bulletin Board"
348
+ unpublish: "%{user_name} unpublished the %{resource_name} of %{space_name} election"
349
+ update: "%{user_name} updated the election %{resource_name} of %{space_name}"
350
+ trustee:
351
+ create: "%{user_name} assigned the user %{trustee_user} as Trustee"
340
352
  election_m:
341
353
  badge_name:
342
354
  finished: Finished
@@ -993,6 +1005,24 @@ en:
993
1005
  invalid: There was a problem updating this voting
994
1006
  success: Voting successfully updated
995
1007
  admin_log:
1008
+ ballot_style:
1009
+ create: "%{user_name} created a ballot style with code %{ballot_style_code} in the space %{space_name}"
1010
+ delete: "%{user_name} deleted the ballot style with code %{ballot_style_code} in the space %{space_name}"
1011
+ update: "%{user_name} updated the ballot style with code %{ballot_style_code} in the space %{space_name}"
1012
+ census:
1013
+ create: "%{user_name} created the census for the space %{space_name}"
1014
+ delete: "%{user_name} deleted the census for the space %{space_name}"
1015
+ update: "%{user_name} updated the census for the space %{space_name}"
1016
+ monitoring_committee_member:
1017
+ create: "%{user_name} assigned the user %{monitoring_committee_member_user} as monitoring committee member in the space %{space_name}"
1018
+ delete: "%{user_name} unassigned the user %{monitoring_committee_member_user} as monitoring committee member in the space %{space_name}"
1019
+ polling_officer:
1020
+ create: "%{user_name} assigned the user %{polling_officer_user} as polling officer in the space %{space_name}"
1021
+ delete: "%{user_name} unassigned the user %{polling_officer_user} as polling officer in the space %{space_name}"
1022
+ polling_station:
1023
+ create: "%{user_name} created the polling station %{resource_name} in the space %{space_name}"
1024
+ delete: "%{user_name} deleted the polling station %{resource_name} in the space %{space_name}"
1025
+ update: "%{user_name} updated the polling station %{resource_name} in the space %{space_name}"
996
1026
  voting:
997
1027
  create: "%{user_name} created the %{resource_name} voting"
998
1028
  publish: "%{user_name} published the %{resource_name} voting"
@@ -1002,7 +1032,7 @@ en:
1002
1032
  census:
1003
1033
  create:
1004
1034
  invalid: An error occurred uploading the census, please try again later.
1005
- invalid_csv_header: The CSV header does not have the correct number of fields - please read the instructions carefully
1035
+ invalid_csv_header: The CSV headers are missing or not correct - please read the instructions carefully
1006
1036
  creating_data:
1007
1037
  info_message: "<strong>Please wait</strong>, processed %{processed_count} of %{raw_count} rows from %{file} file."
1008
1038
  delete:
@@ -254,7 +254,6 @@ es-MX:
254
254
  trustees: Garantes
255
255
  key_ceremony:
256
256
  title: Ceremonia de claves
257
- trustees: Garantes
258
257
  key_ceremony_ended:
259
258
  errors:
260
259
  time_before: La elección está lista para comenzar. Tienes que esperar hasta %{hours} horas antes de la hora de inicio (%{start_time}) para comenzar el periodo de votación.
@@ -275,7 +274,6 @@ es-MX:
275
274
  title: Resultados publicados
276
275
  tally:
277
276
  title: Proceso de recuento
278
- trustees: Garantes
279
277
  tally_ended:
280
278
  answer: Respuesta
281
279
  not_selected: No seleccionado
@@ -326,16 +324,6 @@ es-MX:
326
324
  update:
327
325
  invalid: Se ha producido un error al actualizar el garante %{trustee}
328
326
  success: El garante %{trustee} se ha actualizado correctamente
329
- admin_log:
330
- election:
331
- end_vote: "%{user_name} terminó el período de votación para la elección %{resource_name} en el Bulletin Board"
332
- publish: "%{user_name} ha publicado la votación %{resource_name}"
333
- publish_results: "%{user_name} publicó los resultados de la elección %{resource_name} en el Bulletin Board"
334
- setup: "%{user_name} creó la elección %{resource_name} en el Bulletin Board"
335
- start_key_ceremony: "%{user_name} comenzó la ceremonia de claves para las elecciones %{resource_name} en el Bulletin Board"
336
- start_tally: "%{user_name} comenzó el recuento para la elección %{resource_name} en el Bulletin Board"
337
- start_vote: "%{user_name} comenzó el período de votación para la elección %{resource_name} en el Bulletin Board"
338
- unpublish: "%{user_name} ha despublicado la votación %{resource_name}"
339
327
  election_m:
340
328
  badge_name:
341
329
  finished: Finalizada
@@ -344,9 +332,8 @@ es-MX:
344
332
  end_date: Termina
345
333
  footer:
346
334
  remaining_time:
347
- one: "Quedan <strong>%{count} hora %{minutes} minutos</strong> restantes para votar."
348
- other: "Quedan <strong>%{count} horas %{minutes} minutos</strong> restantes para votar."
349
- zero: "Quedan <strong>%{minutes} minutos</strong> restantes para votar."
335
+ one: "<strong>%{count} hora %{minutes} minutos</strong> restantes para votar."
336
+ other: "<strong>%{count} horas %{minutes} minutos</strong> restantes para votar."
350
337
  view: Ver
351
338
  vote: Votar
352
339
  label:
@@ -428,7 +415,6 @@ es-MX:
428
415
  votes:
429
416
  one: "%{count} voto"
430
417
  other: "%{count} votos"
431
- zero: "%{count} votos"
432
418
  show:
433
419
  action_button:
434
420
  change_vote: Cambia tu voto
@@ -1001,7 +987,6 @@ es-MX:
1001
987
  census:
1002
988
  create:
1003
989
  invalid: Se ha producido un error al subir el censo, por favor inténtalo de nuevo más tarde.
1004
- invalid_csv_header: La cabecera CSV no tiene el número correcto de campos - por favor lee las instrucciones cuidadosamente
1005
990
  creating_data:
1006
991
  info_message: "<strong>Por favor espera</strong>, procesadas %{processed_count} de %{raw_count} filas del fichero %{file}."
1007
992
  delete:
@@ -254,7 +254,6 @@ es-PY:
254
254
  trustees: Garantes
255
255
  key_ceremony:
256
256
  title: Ceremonia de claves
257
- trustees: Garantes
258
257
  key_ceremony_ended:
259
258
  errors:
260
259
  time_before: La elección está lista para comenzar. Tienes que esperar hasta %{hours} horas antes de la hora de inicio (%{start_time}) para comenzar el periodo de votación.
@@ -275,7 +274,6 @@ es-PY:
275
274
  title: Resultados publicados
276
275
  tally:
277
276
  title: Proceso de recuento
278
- trustees: Garantes
279
277
  tally_ended:
280
278
  answer: Respuesta
281
279
  not_selected: No seleccionado
@@ -326,16 +324,6 @@ es-PY:
326
324
  update:
327
325
  invalid: Se ha producido un error al actualizar el garante %{trustee}
328
326
  success: El garante %{trustee} se ha actualizado correctamente
329
- admin_log:
330
- election:
331
- end_vote: "%{user_name} terminó el período de votación para la elección %{resource_name} en el Bulletin Board"
332
- publish: "%{user_name} ha publicado la votación %{resource_name}"
333
- publish_results: "%{user_name} publicó los resultados de la elección %{resource_name} en el Bulletin Board"
334
- setup: "%{user_name} creó la elección %{resource_name} en el Bulletin Board"
335
- start_key_ceremony: "%{user_name} comenzó la ceremonia de claves para las elecciones %{resource_name} en el Bulletin Board"
336
- start_tally: "%{user_name} comenzó el recuento para la elección %{resource_name} en el Bulletin Board"
337
- start_vote: "%{user_name} comenzó el período de votación para la elección %{resource_name} en el Bulletin Board"
338
- unpublish: "%{user_name} ha despublicado la votación %{resource_name}"
339
327
  election_m:
340
328
  badge_name:
341
329
  finished: Finalizada
@@ -344,9 +332,8 @@ es-PY:
344
332
  end_date: Termina
345
333
  footer:
346
334
  remaining_time:
347
- one: "Quedan <strong>%{count} hora %{minutes} minutos</strong> restantes para votar."
348
- other: "Quedan <strong>%{count} horas %{minutes} minutos</strong> restantes para votar."
349
- zero: "Quedan <strong>%{minutes} minutos</strong> restantes para votar."
335
+ one: "<strong>%{count} hora %{minutes} minutos</strong> restantes para votar."
336
+ other: "<strong>%{count} horas %{minutes} minutos</strong> restantes para votar."
350
337
  view: Ver
351
338
  vote: Votar
352
339
  label:
@@ -428,7 +415,6 @@ es-PY:
428
415
  votes:
429
416
  one: "%{count} voto"
430
417
  other: "%{count} votos"
431
- zero: "%{count} votos"
432
418
  show:
433
419
  action_button:
434
420
  change_vote: Cambia tu voto
@@ -1001,7 +987,6 @@ es-PY:
1001
987
  census:
1002
988
  create:
1003
989
  invalid: Se ha producido un error al subir el censo, por favor inténtalo de nuevo más tarde.
1004
- invalid_csv_header: La cabecera CSV no tiene el número correcto de campos - por favor lee las instrucciones cuidadosamente
1005
990
  creating_data:
1006
991
  info_message: "<strong>Por favor espera</strong>, procesadas %{processed_count} de %{raw_count} filas del fichero %{file}."
1007
992
  delete:
@@ -253,8 +253,8 @@ es:
253
253
  title: Elección creada
254
254
  trustees: Garantes
255
255
  key_ceremony:
256
+ continue: Continuar
256
257
  title: Ceremonia de claves
257
- trustees: Garantes
258
258
  key_ceremony_ended:
259
259
  errors:
260
260
  time_before: La elección está lista para comenzar. Tienes que esperar hasta %{hours} horas antes de la hora de inicio (%{start_time}) para comenzar el periodo de votación.
@@ -274,8 +274,14 @@ es:
274
274
  submit: Enviar
275
275
  title: Resultados publicados
276
276
  tally:
277
+ continue: Continuar
278
+ invalid: Hubo un problema al reportar al garante ausente
279
+ mark_as_missing: Marcar como ausente
280
+ mark_as_missing_description: Todos los garantes deberían participar en este proceso, pero si uno de ellos no puede tomar parte en él, puedes marcarlo como ausente.
281
+ success: El reporte del garante que falta fue enviado con éxito al Bulletin Board
282
+ tally_completion: El proceso se completará cuando todos los garantes estén activos o marcados como ausentes. Se requiere al menos %{quorum} garantes para completar el proceso.
277
283
  title: Proceso de recuento
278
- trustees: Garantes
284
+ undo_mark_as_missing: Un garante marcado como ausente por error podrá participar antes de completar el proceso. Pueden proceder como de costumbre y la marca de ausente será ignorada.
279
285
  tally_ended:
280
286
  answer: Respuesta
281
287
  not_selected: No seleccionado
@@ -328,14 +334,20 @@ es:
328
334
  success: El garante %{trustee} se ha actualizado correctamente
329
335
  admin_log:
330
336
  election:
331
- end_vote: "%{user_name} terminó el período de votación para la elección %{resource_name} en el Bulletin Board"
332
- publish: "%{user_name} ha publicado la votación %{resource_name}"
333
- publish_results: "%{user_name} publicó los resultados de la elección %{resource_name} en el Bulletin Board"
334
- setup: "%{user_name} creó la elección %{resource_name} en el Bulletin Board"
335
- start_key_ceremony: "%{user_name} comenzó la ceremonia de claves para las elecciones %{resource_name} en el Bulletin Board"
336
- start_tally: "%{user_name} comenzó el recuento para la elección %{resource_name} en el Bulletin Board"
337
- start_vote: "%{user_name} comenzó el período de votación para la elección %{resource_name} en el Bulletin Board"
338
- unpublish: "%{user_name} ha despublicado la votación %{resource_name}"
337
+ create: "%{user_name} creó la elección %{resource_name} de %{space_name}"
338
+ delete: "%{user_name} eliminó la elección %{resource_name} de %{space_name}"
339
+ end_vote: "%{user_name} terminó el período de votación para la elección %{resource_name} de %{space_name} en el Bulletin Board"
340
+ publish: "%{user_name} publicó la elección %{resource_name} de %{space_name}"
341
+ publish_results: "%{user_name} publicó los resultados para la elección %{resource_name} de %{space_name} en el Bulletin Board"
342
+ report_missing_trustee: "%{user_name} reportó a %{trustee_name} como garante ausente durante el recuento de la elección %{resource_name} de %{space_name} en el Bulletin Board"
343
+ setup: "%{user_name} creó la elección %{resource_name} de %{space_name} en el Bulletin Board"
344
+ start_key_ceremony: "%{user_name} comenzó la ceremonia claves para la elección %{resource_name} de %{space_name} en el Bulletin Board"
345
+ start_tally: "%{user_name} comenzó el recuento de la elección %{resource_name} de %{space_name} en el Bulletin Board"
346
+ start_vote: "%{user_name} comenzó el período de votación para la elección %{resource_name} de %{space_name} en el Bulletin Board"
347
+ unpublish: "%{user_name} ha despublicado el %{resource_name} de la elección de %{space_name}"
348
+ update: "%{user_name} actualizó la elección %{resource_name} de %{space_name}"
349
+ trustee:
350
+ create: "%{user_name} asignó al usuario %{trustee_user} como garante"
339
351
  election_m:
340
352
  badge_name:
341
353
  finished: Finalizada
@@ -344,9 +356,8 @@ es:
344
356
  end_date: Termina
345
357
  footer:
346
358
  remaining_time:
347
- one: "Quedan <strong>%{count} hora %{minutes} minutos</strong> restantes para votar."
348
- other: "Quedan <strong>%{count} horas %{minutes} minutos</strong> restantes para votar."
349
- zero: "Quedan <strong>%{minutes} minutos</strong> restantes para votar."
359
+ one: "<strong>%{count} hora %{minutes} minutos</strong> restantes para votar."
360
+ other: "<strong>%{count} horas %{minutes} minutos</strong> restantes para votar."
350
361
  view: Ver
351
362
  vote: Votar
352
363
  label:
@@ -428,7 +439,6 @@ es:
428
439
  votes:
429
440
  one: "%{count} voto"
430
441
  other: "%{count} votos"
431
- zero: "%{count} votos"
432
442
  show:
433
443
  action_button:
434
444
  change_vote: Cambia tu voto
@@ -992,6 +1002,24 @@ es:
992
1002
  invalid: Hubo un problema al actualizar esta votación
993
1003
  success: Votación actualizada correctamente
994
1004
  admin_log:
1005
+ ballot_style:
1006
+ create: "%{user_name} creó un estilo de papeleta con código %{ballot_style_code} en el espacio %{space_name}"
1007
+ delete: "%{user_name} eliminó el estilo de la papeleta con el código %{ballot_style_code} en el espacio %{space_name}"
1008
+ update: "%{user_name} actualizó el estilo de la papeleta con el código %{ballot_style_code} en el espacio %{space_name}"
1009
+ census:
1010
+ create: "%{user_name} creó el censo para el espacio %{space_name}"
1011
+ delete: "%{user_name} eliminó el censo del espacio %{space_name}"
1012
+ update: "%{user_name} actualizó el censo del espacio %{space_name}"
1013
+ monitoring_committee_member:
1014
+ create: "%{user_name} asignó al usuario %{monitoring_committee_member_user} como miembro del comité de seguimiento en el espacio %{space_name}"
1015
+ delete: "%{user_name} desasignó el usuario %{monitoring_committee_member_user} como miembro del comité de seguimiento en el espacio %{space_name}"
1016
+ polling_officer:
1017
+ create: "%{user_name} asignó al usuario %{polling_officer_user} como gestor de mesa en el espacio %{space_name}"
1018
+ delete: "%{user_name} desasignó al usuario %{polling_officer_user} como gestor de mesa en el espacio %{space_name}"
1019
+ polling_station:
1020
+ create: "%{user_name} creó el punto de votación %{resource_name} en el espacio %{space_name}"
1021
+ delete: "%{user_name} eliminó el punto de votación %{resource_name} en el espacio %{space_name}"
1022
+ update: "%{user_name} actualizó el punto de votación %{resource_name} en el espacio %{space_name}"
995
1023
  voting:
996
1024
  create: "%{user_name} creó la votación %{resource_name}"
997
1025
  publish: "%{user_name} publicó la votación %{resource_name}"
@@ -1001,7 +1029,7 @@ es:
1001
1029
  census:
1002
1030
  create:
1003
1031
  invalid: Se ha producido un error al subir el censo, por favor inténtalo de nuevo más tarde.
1004
- invalid_csv_header: La cabecera CSV no tiene el número correcto de campos - por favor lee las instrucciones cuidadosamente
1032
+ invalid_csv_header: Los encabezados CSV faltan o no son correctos - por favor lee las instrucciones cuidadosamente
1005
1033
  creating_data:
1006
1034
  info_message: "<strong>Por favor espera</strong>, procesadas %{processed_count} de %{raw_count} filas del fichero %{file}."
1007
1035
  delete:
@@ -253,8 +253,8 @@ eu:
253
253
  title: Bozketa sortuta
254
254
  trustees: Bermatzaileak
255
255
  key_ceremony:
256
+ continue: Jarraitu
256
257
  title: Gakoen zeremonia
257
- trustees: Bermatzaileak
258
258
  key_ceremony_ended:
259
259
  errors:
260
260
  time_before: Bozketa hasteko prest dago. (%{start_time}) hasierako ordua baino %{hours} ordu itxaron behar duzu bozketaldia hasteko.
@@ -274,8 +274,9 @@ eu:
274
274
  submit: Bidali
275
275
  title: Argitaratutako emaitzak
276
276
  tally:
277
+ continue: Jarraitu
278
+ mark_as_missing: Marka desagertu da
277
279
  title: Zenbatzeko prozesua
278
- trustees: Bermatzaileak
279
280
  tally_ended:
280
281
  answer: Erantzuna
281
282
  not_selected: Ez hautatua
@@ -328,14 +329,7 @@ eu:
328
329
  success: '%{trustee} bermatzailea zuzen eguneratu da'
329
330
  admin_log:
330
331
  election:
331
- end_vote: "%{user_name} amaitu zen hautatzeko bozketa-aldia %{resource_name} Iragarki Taulan"
332
- publish: "%{user_name}-k argitaratu du %{resource_name} bozketa"
333
- publish_results: "%{user_name} argitaratu zituen %{resource_name} aukeraren emaitzak Iragarki Taulan"
334
- setup: "%{user_name} -k sortu zuen %{resource_name} aukera Iragarki Taulan"
335
- start_key_ceremony: "%{user_name} -k hasi zuen gakoen zeremonia %{resource_name} aukeretarako Iragarki Taulan"
336
- start_tally: "%{user_name} -k hasi zuen kontaketa %{resource_name} aukerarako Iragarki Taulan"
337
- start_vote: "%{user_name} -k hasi zuen bozketa-aldia %{resource_name} aukerarako Iragarki Taulan"
338
- unpublish: "%{user_name} -k desargitaratu zuen %{resource_name} bozketa"
332
+ create: "%{user_name} k %{space_name} ko %{resource_name} aukera sortu zuen"
339
333
  election_m:
340
334
  badge_name:
341
335
  finished: Amaituta
@@ -343,10 +337,6 @@ eu:
343
337
  upcoming: Hurrengoak
344
338
  end_date: Amaitu
345
339
  footer:
346
- remaining_time:
347
- one: "<strong>%{count} ordu %{minutes} minutu </strong> geratzen da bozkatzeko."
348
- other: "<strong>%{count} ordu %{minutes} minutu </strong> geratzen da bozkatzeko."
349
- zero: "<strong>%{minutes} ordu minutu </strong> geratzen da bozkatzeko."
350
340
  view: Ikusi
351
341
  vote: Eman botoa
352
342
  label:
@@ -426,9 +416,8 @@ eu:
426
416
  selected: Hautatua
427
417
  title: Hautaketaren emaitzak
428
418
  votes:
429
- one: "%{count} boto"
419
+ one: "Boto %{count}"
430
420
  other: "%{count} boto"
431
- zero: "%{count} boto"
432
421
  show:
433
422
  action_button:
434
423
  change_vote: Aldatu zure botoa
@@ -990,6 +979,24 @@ eu:
990
979
  invalid: Arazo bat izan da bozketa hau eguneratzean
991
980
  success: Bozketa zuzen eguneratu da
992
981
  admin_log:
982
+ ballot_style:
983
+ create: "%{user_name} k sortu du boto-paper bat kode honekin: %{ballot_style_code} espazio honetan: %{space_name}"
984
+ delete: "%{user_name} k ezabatu du boto-paper mota hau kode honekin: %{ballot_style_code} espazio honetan: %{space_name}"
985
+ update: "%{user_name} k eguneratu du boto-paper mota kode honekin: %{ballot_style_code} espazio honetan: %{space_name}"
986
+ census:
987
+ create: "%{user_name} k sortu du errolda espazio honetarako: %{space_name}"
988
+ delete: "%{user_name} k ezabatu du errolda espazio honetarako: %{space_name}"
989
+ update: "%{user_name} k eguneratu du errolda espazio honetarako: %{space_name}"
990
+ monitoring_committee_member:
991
+ create: "%{user_name} k esleitu du %{monitoring_committee_member_user} erabiltzailea jarraipeb-batzordeko kide gisa espazio honetan: %{space_name}"
992
+ delete: "%{user_name} k desesleitu du %{monitoring_committee_member_user} erabiltzailea jarraipeb-batzordeko kide gisa espazio honetan: %{space_name}"
993
+ polling_officer:
994
+ create: "%{user_name} k esleitu du %{polling_officer_user} erabiltzailea jarraipen-batzordeko kide gisa espazio honetan: %{space_name}"
995
+ delete: "%{user_name} k desesleitu du %{polling_officer_user} erabiltzailea jarraipen-batzordeko kide gisa espazio honetan: %{space_name}"
996
+ polling_station:
997
+ create: "%{user_name} k sortu du %{resource_name} bozketa-gunea %{space_name} espazioan"
998
+ delete: "%{user_name} k ezabatu du %{resource_name} bozketa-gunea %{space_name} espazioan"
999
+ update: "%{user_name} k eguneratu du %{resource_name} bozketa-gunea %{space_name} espazioan"
993
1000
  voting:
994
1001
  create: "%{user_name}-k sortu du %{resource_name} bozketa"
995
1002
  publish: "%{user_name}-k argitaratu du %{resource_name} bozketa"
@@ -999,7 +1006,7 @@ eu:
999
1006
  census:
1000
1007
  create:
1001
1008
  invalid: Arazo bai izan da errolda igotzean, mesedez, saiatu berriro geroago.
1002
- invalid_csv_header: CSV goiburuak ez du eremu-kopuru zuzena - Mesedez, irakurri argibideak arreta handiz
1009
+ invalid_csv_header: CSV goiburuak galdu dira edo ez dira zuzenak - mesedez, irakurri arretaz jarraibideak
1003
1010
  creating_data:
1004
1011
  info_message: "<strong>Mesedez itxaron</strong>, %{processed_count} prozesatuak %{raw_count} tik %{file} fitxeroko ilara."
1005
1012
  delete: