decidim-elections 0.25.0.rc4 → 0.26.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) 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/create_monitoring_committee_member.rb +1 -1
  12. data/app/commands/decidim/votings/admin/create_polling_officer.rb +1 -1
  13. data/app/commands/decidim/votings/admin/destroy_ballot_style.rb +11 -3
  14. data/app/commands/decidim/votings/admin/update_ballot_style.rb +6 -1
  15. data/app/commands/decidim/votings/census/admin/create_dataset.rb +13 -5
  16. data/app/controllers/concerns/decidim/monitoring_committee_polling_station_closures/admin/filterable.rb +1 -1
  17. data/app/controllers/concerns/decidim/polling_stations/admin/filterable.rb +1 -1
  18. data/app/controllers/decidim/elections/admin/steps_controller.rb +26 -7
  19. data/app/controllers/decidim/votings/admin/ballot_styles_controller.rb +1 -1
  20. data/app/forms/decidim/elections/admin/action_form.rb +4 -0
  21. data/app/forms/decidim/elections/admin/report_missing_trustee_form.rb +22 -0
  22. data/app/forms/decidim/elections/admin/setup_form.rb +4 -0
  23. data/app/models/decidim/elections/action.rb +1 -1
  24. data/app/models/decidim/elections/trustee.rb +4 -0
  25. data/app/models/decidim/votings/ballot_style.rb +6 -0
  26. data/app/models/decidim/votings/census/dataset.rb +2 -0
  27. data/app/models/decidim/votings/monitoring_committee_member.rb +6 -0
  28. data/app/models/decidim/votings/polling_officer.rb +5 -0
  29. data/app/models/decidim/votings/polling_station.rb +6 -0
  30. data/app/packs/entrypoints/decidim_elections_admin_trustees_process.js +1 -0
  31. data/app/packs/src/decidim/elections/admin/pending_action.js +1 -1
  32. data/app/packs/src/decidim/elections/admin/trustees_process.js +125 -0
  33. data/app/packs/src/decidim/elections/election_log.js +89 -73
  34. data/app/packs/src/decidim/elections/trustee/key_ceremony.js +3 -3
  35. data/app/packs/src/decidim/elections/trustee/tally.js +3 -3
  36. data/app/packs/src/decidim/elections/trustee/trustee_zone.js +29 -18
  37. data/app/packs/src/decidim/elections/voter/casting-vote.js +1 -1
  38. data/app/packs/src/decidim/elections/voter/setup-vote.js +5 -5
  39. data/app/packs/src/decidim/elections/voter/verify-vote.js +1 -1
  40. data/app/packs/src/decidim/votings/in-person-vote.js +1 -1
  41. data/app/presenters/decidim/elections/admin_log/election_presenter.rb +34 -9
  42. data/app/presenters/decidim/elections/admin_log/trustee_presenter.rb +50 -0
  43. data/app/presenters/decidim/elections/trustee_presenter.rb +5 -1
  44. data/app/presenters/decidim/votings/admin_log/ballot_style_presenter.rb +35 -0
  45. data/app/presenters/decidim/votings/admin_log/monitoring_committee_member_presenter.rb +50 -0
  46. data/app/presenters/decidim/votings/admin_log/polling_officer_presenter.rb +50 -0
  47. data/app/presenters/decidim/votings/admin_log/polling_station_presenter.rb +29 -0
  48. data/app/presenters/decidim/votings/admin_log/voting_presenter.rb +1 -1
  49. data/app/presenters/decidim/votings/census/admin_log/dataset_presenter.rb +7 -6
  50. data/app/services/decidim/votings/voting_search.rb +2 -2
  51. data/app/views/decidim/elections/admin/steps/_create_election.html.erb +3 -3
  52. data/app/views/decidim/elections/admin/steps/_key_ceremony.html.erb +44 -9
  53. data/app/views/decidim/elections/admin/steps/_tally.html.erb +60 -10
  54. data/app/views/decidim/elections/admin/steps/index.html.erb +17 -15
  55. data/app/views/decidim/elections/elections/_filters_small_view.html.erb +3 -3
  56. data/app/views/decidim/elections/elections/election_log.html.erb +1 -1
  57. data/app/views/decidim/elections/elections/show.html.erb +1 -1
  58. data/app/views/decidim/elections/trustee_zone/elections/show.html.erb +1 -1
  59. data/app/views/decidim/elections/trustee_zone/trustees/show.html.erb +1 -1
  60. data/app/views/decidim/elections/votes/_onboarding_modal.html.erb +1 -1
  61. data/app/views/decidim/elections/votes/_show_casted.html.erb +1 -1
  62. data/app/views/decidim/elections/votes/_show_casting.html.erb +1 -1
  63. data/app/views/decidim/elections/votes/new.html.erb +3 -3
  64. data/app/views/decidim/elections/votes/verify.html.erb +1 -1
  65. data/app/views/decidim/votings/admin/votings/index.html.erb +1 -1
  66. data/app/views/decidim/votings/polling_officer_zone/closures/_modal_ballots_count_error.html.erb +3 -2
  67. data/app/views/decidim/votings/polling_officer_zone/closures/_modal_ballots_results_count_error.html.erb +3 -2
  68. data/app/views/decidim/votings/polling_officer_zone/closures/_sign_form.html.erb +4 -3
  69. data/app/views/decidim/votings/polling_officer_zone/closures/edit.html.erb +1 -1
  70. data/app/views/decidim/votings/polling_officer_zone/closures/new.html.erb +1 -1
  71. data/app/views/decidim/votings/polling_officer_zone/in_person_votes/new.html.erb +1 -1
  72. data/app/views/decidim/votings/polling_officer_zone/in_person_votes/show.html.erb +1 -1
  73. data/app/views/decidim/votings/votings/_filters_small_view.html.erb +3 -3
  74. data/app/views/decidim/votings/votings/_promoted_voting.html.erb +1 -1
  75. data/config/assets.rb +1 -0
  76. data/config/locales/ca.yml +67 -80
  77. data/config/locales/cs.yml +41 -11
  78. data/config/locales/de.yml +0 -13
  79. data/config/locales/en.yml +41 -11
  80. data/config/locales/es-MX.yml +151 -13
  81. data/config/locales/es-PY.yml +151 -13
  82. data/config/locales/es.yml +192 -11
  83. data/config/locales/eu.yml +1344 -0
  84. data/config/locales/fi-plain.yml +41 -11
  85. data/config/locales/fi.yml +41 -11
  86. data/config/locales/fr-CA.yml +124 -5
  87. data/config/locales/fr.yml +124 -5
  88. data/config/locales/ga-IE.yml +371 -0
  89. data/config/locales/gl.yml +34 -1
  90. data/config/locales/it.yml +33 -11
  91. data/config/locales/ja.yml +545 -16
  92. data/config/locales/lb-LU.yml +24 -0
  93. data/config/locales/lb.yml +25 -0
  94. data/config/locales/nl.yml +224 -6
  95. data/config/locales/pl.yml +6 -11
  96. data/config/locales/pt-BR.yml +1 -14
  97. data/config/locales/pt.yml +1169 -2
  98. data/config/locales/ro-RO.yml +267 -51
  99. data/config/locales/sv.yml +89 -8
  100. data/config/locales/tr-TR.yml +0 -4
  101. data/config/locales/val-ES.yml +1 -0
  102. data/config/locales/zh-CN.yml +0 -4
  103. data/lib/decidim/elections/component.rb +2 -1
  104. data/lib/decidim/elections/engine.rb +4 -0
  105. data/lib/decidim/elections/test/factories.rb +2 -2
  106. data/lib/decidim/elections/version.rb +1 -1
  107. metadata +33 -22
data/config/assets.rb CHANGED
@@ -8,6 +8,7 @@ Decidim::Webpacker.register_entrypoints(
8
8
  decidim_elections_election_log: "#{base_path}/app/packs/entrypoints/decidim_elections_election_log.js",
9
9
  decidim_elections_onboarding: "#{base_path}/app/packs/entrypoints/decidim_elections_onboarding.js",
10
10
  decidim_elections_admin_pending_action: "#{base_path}/app/packs/entrypoints/decidim_elections_admin_pending_action.js",
11
+ decidim_elections_admin_trustees_process: "#{base_path}/app/packs/entrypoints/decidim_elections_admin_trustees_process.js",
11
12
  decidim_elections_admin_vote_statistics: "#{base_path}/app/packs/entrypoints/decidim_elections_admin_vote_statistics.js",
12
13
  decidim_elections_trustee_key_ceremony: "#{base_path}/app/packs/entrypoints/decidim_elections_trustee_key_ceremony.js",
13
14
  decidim_elections_trustee_tally: "#{base_path}/app/packs/entrypoints/decidim_elections_trustee_tally.js",
@@ -254,7 +254,6 @@ ca:
254
254
  trustees: Garants
255
255
  key_ceremony:
256
256
  title: Cerimònia de claus
257
- trustees: Garants
258
257
  key_ceremony_ended:
259
258
  errors:
260
259
  time_before: L'elecció està llesta per començar. Has d'esperar fins a %{hours} hores abans de l'hora d'inici (%{start_time}) per iniciar el període de votació.
@@ -275,7 +274,6 @@ ca:
275
274
  title: Resultats publicats
276
275
  tally:
277
276
  title: Procés de recompte
278
- trustees: Garants
279
277
  tally_ended:
280
278
  answer: Resposta
281
279
  not_selected: No seleccionat
@@ -326,16 +324,6 @@ ca:
326
324
  update:
327
325
  invalid: S'ha produït un error en actualitzar el garant %{trustee}
328
326
  success: El garant %{trustee} s'ha actualitzat correctament
329
- admin_log:
330
- election:
331
- end_vote: "%{user_name} ha finalittzat el període de votació per l'elecció %{resource_name} al Bulletin Board"
332
- publish: "%{user_name} ha publicat la votació %{resource_name}"
333
- publish_results: "%{user_name} ha publicat els resultats de l'elecció %{resource_name} al Bulletin Board"
334
- setup: "%{user_name} ha creat l'elecció %{resource_name} al Bulletin Board"
335
- start_key_ceremony: "%{user_name} va començar la cerimònia de claus per l'elecció %{resource_name} al Bulletin Board"
336
- start_tally: "%{user_name} ha iniciat el recompte per a l'elecció %{resource_name} al Bulletin Board"
337
- start_vote: "%{user_name} ha iniciat el període de votació per a l'elecció %{resource_name} al Bulletin Board"
338
- unpublish: "%{user_name} ha despublicat la votació %{resource_name}"
339
327
  election_m:
340
328
  badge_name:
341
329
  finished: Acabada
@@ -797,7 +785,7 @@ ca:
797
785
  monitoring_committee_election_results: Valida els resultats
798
786
  monitoring_committee_members: Membres
799
787
  monitoring_committee_polling_station_closures: Valida els certificats
800
- monitoring_committee_verify_elections: Valida les eleccions
788
+ monitoring_committee_verify_elections: Verificar eleccions
801
789
  polling_officers: Gestors de mesa
802
790
  polling_stations: Punts de votació
803
791
  models:
@@ -832,30 +820,30 @@ ca:
832
820
  monitoring_committee_election_results:
833
821
  actions:
834
822
  title: Accions
835
- view: Mostra
823
+ view: Mostrar
836
824
  index:
837
825
  title: Escull l'elecció per veure-hi els resultats
838
826
  results:
839
- bulletin_board: Butlletí d'informació
827
+ bulletin_board: Bulletin Board
840
828
  election_totals: Totals de l'elecció
841
829
  polling_stations: Punts de votació
842
830
  result_types:
843
831
  blank_answers: Respostes en blanc
844
- blank_ballots: Vots en blanc
845
- null_ballots: Vots nuls
846
- total_ballots: Vots totals
847
- valid_ballots: Vots vàlids
832
+ blank_ballots: Paperetes en blanc
833
+ null_ballots: Paperetes nul·les
834
+ total_ballots: Total de paperetes
835
+ valid_ballots: Paperetes vàlides
848
836
  selected: Seleccionat
849
837
  title: Resultats de l'elecció <i>%{election_title}</i>
850
838
  totals: Totals
851
839
  show:
852
- change_election: Canvia d'elecció
853
- publish_results: Publica els resultats
854
- publishing: Estem publicant els resultats...
840
+ change_election: Canviar elecció
841
+ publish_results: Publicar resultats
842
+ publishing: Publicant resultats...
855
843
  update:
856
844
  invalid: Hi ha hagut un problema en publicar els resultats
857
- rejected: El Butlletí d'Informació ha rebutjat la publicació dels resultats. Prova-ho de nou, o contacta amb l'administració del sistema.
858
- success: Hem publicat correctament els resultats
845
+ rejected: El Bulletin Board ha rebutjat la publicació dels resultats. Prova-ho de nou, o contacta amb l'administrador del sistema.
846
+ success: Resultats publicats correctament
859
847
  monitoring_committee_members:
860
848
  create:
861
849
  invalid: Hi ha hagut un problema en crear aquest membre del comitè de seguiment
@@ -876,33 +864,33 @@ ca:
876
864
  monitoring_committee_polling_station_closures:
877
865
  actions:
878
866
  title: Accions
879
- validate: Valida
880
- view: Mostra
867
+ validate: Validar
868
+ view: Mostrar
881
869
  closures:
882
- change_election: Canvia d'elecció
870
+ change_election: Canviar elecció
883
871
  signed: Signat?
884
872
  title: Punts de votació de l'elecció <i>%{election_title}</i>
885
873
  validated: Validat?
886
874
  edit:
887
- change_polling_station: Torna als punts de votació
875
+ change_polling_station: Tornar als punts de votació
888
876
  monitoring_committee_notes: Observacions
889
877
  monitoring_committee_notes_placeholder: Informa de qualsevol incidència aquí
890
878
  title: Els resultats de l'elecció <i>%{election_title}</i> en el punt de votació <i>%{polling_station_title}</i>
891
879
  elections:
892
880
  title: Escull una elecció per validar
893
881
  show:
894
- change_polling_station: Torna als punts de votació
882
+ change_polling_station: Tornar als punts de votació
895
883
  monitoring_committee_notes: Annotacions del Comitè de Seguiment
896
884
  validate:
897
- error: Hi ha hagut un problema en validar la cloenda
898
- success: Hem validat correctament la cloenda
885
+ error: Hi ha hagut un problema en validar el tancament
886
+ success: El tancament s'ha validat correctament
899
887
  monitoring_committee_verify_elections:
900
888
  index:
901
- download: Baixa
902
- how_to_checksum: 'Per assegurar-nos que el fitxer descarregat no estigui corromput o compromè durant el procès de baixada, executa el següent ordre en la consola i comprova que la resposta de sortida coincideixi amb la comprovació de suma que s''informa a dalt:'
903
- how_to_download: Per verificar l'elecció, baixa el fitxer verificable de la taula de dalt.
889
+ download: Descarregar
890
+ how_to_checksum: 'Per a assegurar-se que l''arxiu descarregat no ha estat danyat o manipulat durant el procés de descàrrega, executa el següent comando en la teva consola i comprova que la sortida coincideixi amb la suma de verificació reportada a dalt:'
891
+ how_to_download: Per verificar l'elecció, descarrega el fitxer verificable de la taula de dalt.
904
892
  how_to_run_verifier: 'Una vegada que has descarregat el fitxer i te''n has assegurat que és correcte, pots executar-hi el verificador universal. Clona <a href=''https://github.com/decidim/decidim-bulletin-board''>el repositori</a> i, des de la carpeta d''arrel, executa la següent ordre:'
905
- how_to_title: Com es verifica la validesa d'una elecció
893
+ how_to_title: Com verificar la validesa d'una elecció
906
894
  not_available: Encara no està disponible
907
895
  title: Eleccions
908
896
  polling_officers:
@@ -999,7 +987,6 @@ ca:
999
987
  census:
1000
988
  create:
1001
989
  invalid: Hi ha hagut un error en pujar el cens, prova-ho de nou més tard.
1002
- invalid_csv_header: La capçalera CSV no té el nombre correcte de camps. Consulta les instruccions amb atenció
1003
990
  creating_data:
1004
991
  info_message: "<strong>Si us plau espera</strong>, processades %{processed_count} de %{raw_count} fileres al fitxer de %{file}."
1005
992
  delete:
@@ -1056,7 +1043,7 @@ ca:
1056
1043
  download: Descarregar
1057
1044
  subject: L'exportació dels codis d'accés a la votació de %{voting_title} està disponible
1058
1045
  vote_flow:
1059
- already_voted_in_person: La participant ja ha votat de forma presencial i no se l'insta a votar.
1046
+ already_voted_in_person: La participant ja ha votat de forma presencial i no dret a vot.
1060
1047
  datum_not_found: No hi ha cap votant amb aquestes dades.
1061
1048
  content_blocks:
1062
1049
  highlighted_votings:
@@ -1088,13 +1075,13 @@ ca:
1088
1075
  closures:
1089
1076
  back_to_polling_stations: Tornar als punts de votació
1090
1077
  certify:
1091
- add_images: Afegeix imatges
1092
- error: S'ha produït un error en annexar el certificat. Torneu a provar-ho.
1093
- form_legend: Puja una imatge del Certificat de Cloenda Electoral
1094
- heading: Recompte de vots - Puja certificat
1095
- info_text: Puja una imatge del Certificat de Cloenda Electoral.
1096
- submit: Puja el certificat
1097
- success: Hem pujat el certificat correctament.
1078
+ add_images: Afegir imatges
1079
+ error: S'ha produït un error en adjuntar el certificat. Si us plau, prova de nou.
1080
+ form_legend: Puja una imatge del certificat de tancament electoral
1081
+ heading: Recompte de vots - Pujar certificat
1082
+ info_text: Si us plau, puja una imatge del certificat de tancament electoral.
1083
+ submit: Pujar el certificat
1084
+ success: El certificat s'ha pujat correctament.
1098
1085
  create:
1099
1086
  error: S'ha produït un error en crear el tancament. Si us plau, intenta-ho més tard.
1100
1087
  success: Tancament creat correctament.
@@ -1130,18 +1117,18 @@ ca:
1130
1117
  total_ballots_count: Nombre de paperetes
1131
1118
  show:
1132
1119
  heading: Recompte de vots
1133
- info_text: Cloenda electoral del punt de votació.
1120
+ info_text: Tancament electoral del punt de votació.
1134
1121
  sign:
1135
- cancel: Cancel·la
1136
- check_box: Ho he revisat i és idèntic que el certificat físic de cloenda electoral
1137
- close_modal: Clou
1138
- confirm: D'acord, continua
1139
- error: Ha occorregut un error. Torna a provar-ho.
1140
- heading: Recompte de vots - Signa la cloenda
1141
- info_text: D'ara en endavant ja no podríeu modificar cap informació perquè l'acció no es pot desfer.
1142
- submit: Signa la cloenda
1143
- success: Has signat correctament la cloenda.
1144
- title: No es pot desfer l'acció
1122
+ cancel: Cancel·lar
1123
+ check_box: Ho he revisat i és idèntic al certificat físic de tancament electoral
1124
+ close_modal: Tancar
1125
+ confirm: D'acord, continuar
1126
+ error: Hi ha hagut un error. Si us plau, torna-ho a provar.
1127
+ heading: Recompte de vots - Signar el tancament
1128
+ info_text: Si continues ja no podràs modificar cap informació, aquesta acció no es pot desfer.
1129
+ submit: Signar el tancament
1130
+ success: Tancament signat correctament.
1131
+ title: Aquesta acció no es pot desfer
1145
1132
  update:
1146
1133
  error: S'ha produït un error en actualitzar els resultats del tancament. Intenta-ho de nou més tard.
1147
1134
  success: Resultats de tancament actualitzats correctament.
@@ -1149,16 +1136,16 @@ ca:
1149
1136
  complete_voting:
1150
1137
  available_answers: 'Respostes disponibles:'
1151
1138
  census_verified: La participant encara no ha votat.
1152
- complete_voting: Completa el vot
1153
- identify_another: Identifica una altra participant
1154
- questions_title: 'Se l''insta a votar les següents preguntes:'
1155
- questions_title_voted: 'La participant ja ha votat en línia i se l''insta a votar les següents preguntes:'
1139
+ complete_voting: Completar el vot
1140
+ identify_another: Identificar una altra participant
1141
+ questions_title: ' dret a votar les següents preguntes:'
1142
+ questions_title_voted: 'La participant ja ha votat en línia i dret a votar les següents preguntes:'
1156
1143
  voted: La participant ha votat
1157
1144
  create:
1158
- error: No hem registrat el vot. Prova-ho de nou.
1145
+ error: El vot no ha estat registrat. Si us plau, prova-ho de nou.
1159
1146
  in_person_form:
1160
1147
  census_not_present: La participant no és a la llista del cens.
1161
- census_not_present_description: Ha d'anar a l'oficina del cens o contactar l'assistència.
1148
+ census_not_present_description: Ha de dirigir-se a l'oficina de reclamacions del cens o al servei d'assistència tècnica.
1162
1149
  date_of_birth: Data de naixement
1163
1150
  day: Dia
1164
1151
  day_placeholder: DD
@@ -1166,27 +1153,27 @@ ca:
1166
1153
  document_number_placeholder: Número d'ID
1167
1154
  month: Mes
1168
1155
  month_placeholder: MM
1169
- select: Escull el tipus de document
1170
- title: 'Escull el tipus de document i introdueix el número de document de la participant:'
1171
- validate_document: Valida el document
1156
+ select: Selecciona el tipus de document
1157
+ title: 'Selecciona el tipus de document i introdueix el número de document de la participant:'
1158
+ validate_document: Validar el document
1172
1159
  year: Any
1173
1160
  year_placeholder: AAAA
1174
1161
  new:
1175
- back: Torna als punts de votació
1176
- title: Identifica i verifica participant
1162
+ back: Tornar als punts de votació
1163
+ title: Identificar i verificar una participant
1177
1164
  show:
1178
- back: Torna als punts de votació
1165
+ back: Tornar als punts de votació
1179
1166
  title: En espera del registre de vot presencial
1180
1167
  update:
1181
- error: Hi ha hagut un problema en registrar el vot. Prova-ho de nou.
1168
+ error: Hi ha hagut un problema en registrar el vot. Si us plau, prova-ho de nou.
1182
1169
  success:
1183
- accepted: Hem registrat el vot correctament.
1184
- rejected: El Butlletí d'Informació no ha acceptat el vot. Contacta amb l'administrador del sistema.
1170
+ accepted: El vot s'ha registrat correctament.
1171
+ rejected: El Bulletin Board no ha acceptat el vot. Si us plau, contacta amb l'administrador del sistema.
1185
1172
  verify_document:
1186
- census_present: Hem trobat la participant al cens.
1173
+ census_present: La participant es troba al cens.
1187
1174
  name: Nom
1188
1175
  title: 'Comprova que les dades següents són correctes:'
1189
- verify_document: Verifica el document
1176
+ verify_document: Verificar el document
1190
1177
  menu:
1191
1178
  polling_officer_zone: Zona del gestor de mesa
1192
1179
  polling_officers:
@@ -1214,15 +1201,15 @@ ca:
1214
1201
  president: President
1215
1202
  unassigned: Sense assignar
1216
1203
  polling_station_closure_recount:
1217
- nota_option: En blanc, o cap dels de dalt
1218
- polling_officer_notes: 'Annotacions del gestor de mesa:'
1219
- polling_officer_notes_blank: Cap annotació
1220
- recount_summary: 'Sumari del recompte:'
1204
+ nota_option: En blanc / Cap de les anteriors
1205
+ polling_officer_notes: 'Anotacions del gestor de mesa:'
1206
+ polling_officer_notes_blank: Cap anotació
1207
+ recount_summary: 'Resum del recompte:'
1221
1208
  signed: Signat
1222
- total_ballots: 'Vots en total:'
1223
- total_blank_ballots: 'Vots en blanc en total:'
1224
- total_null_ballots: 'Vots nuls en total:'
1225
- total_valid_ballots: 'Vots vàlids en total:'
1209
+ total_ballots: 'Total de paperetes:'
1210
+ total_blank_ballots: 'Total de paperetes en blanc:'
1211
+ total_null_ballots: 'Total de paperetes nul·les:'
1212
+ total_valid_ballots: 'Total de paperetes vàlides:'
1226
1213
  polling_stations:
1227
1214
  actions:
1228
1215
  confirm_destroy: N'estàs segura?
@@ -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: Volební 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
@@ -1012,6 +1024,24 @@ cs:
1012
1024
  invalid: Při aktualizaci tohoto hlasování došlo k chybě
1013
1025
  success: Hlasování bylo úspěšně aktualizováno
1014
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}"
1015
1045
  voting:
1016
1046
  create: "%{user_name} vytvořil %{resource_name} hlasování"
1017
1047
  publish: "%{user_name} zveřejnil %{resource_name} hlasování"
@@ -1021,7 +1051,7 @@ cs:
1021
1051
  census:
1022
1052
  create:
1023
1053
  invalid: Při nahrávání seznamu osob došlo k chybě, opakujte akci později.
1024
- 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
1025
1055
  creating_data:
1026
1056
  info_message: "<strong>Počkejte prosím</strong>, zpracováno %{processed_count} z %{raw_count} řádků ze souboru %{file}."
1027
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
@@ -979,7 +967,6 @@ de:
979
967
  census:
980
968
  create:
981
969
  invalid: Beim Hochladen der Erhebung ist ein Problem aufgetreten, bitte versuchen Sie es später erneut.
982
- invalid_csv_header: Der CSV-Header hat nicht die richtige Anzahl Felder - bitte lesen Sie die Anweisungen sorgfältig
983
970
  creating_data:
984
971
  info_message: "<strong>Bitte warten</strong>, %{processed_count} von %{raw_count} Zeilen aus der Datei %{file} wurden verarbeitet."
985
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: