decidim-elections 0.25.1 → 0.26.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/elections/election_m_cell.rb +1 -1
- data/app/cells/decidim/votings/content_blocks/highlighted_votings_cell.rb +12 -0
- data/app/cells/decidim/votings/content_blocks/landing_page/description_cell.rb +1 -1
- data/app/cells/decidim/votings/voting_m_cell.rb +1 -1
- data/app/commands/decidim/elections/admin/add_user_as_trustee.rb +1 -1
- data/app/commands/decidim/elections/admin/report_missing_trustee.rb +68 -0
- data/app/commands/decidim/elections/admin/setup_election.rb +1 -1
- data/app/commands/decidim/elections/admin/start_tally.rb +1 -1
- data/app/commands/decidim/votings/admin/create_ballot_style.rb +8 -5
- data/app/commands/decidim/votings/admin/destroy_ballot_style.rb +11 -3
- data/app/commands/decidim/votings/admin/update_ballot_style.rb +6 -1
- data/app/commands/decidim/votings/census/admin/create_dataset.rb +13 -5
- data/app/controllers/concerns/decidim/monitoring_committee_polling_station_closures/admin/filterable.rb +1 -1
- data/app/controllers/concerns/decidim/polling_stations/admin/filterable.rb +1 -1
- data/app/controllers/decidim/elections/admin/steps_controller.rb +26 -7
- data/app/controllers/decidim/votings/admin/ballot_styles_controller.rb +1 -1
- data/app/forms/decidim/elections/admin/action_form.rb +4 -0
- data/app/forms/decidim/elections/admin/report_missing_trustee_form.rb +22 -0
- data/app/forms/decidim/elections/admin/setup_form.rb +4 -0
- data/app/models/decidim/elections/action.rb +1 -1
- data/app/models/decidim/elections/trustee.rb +4 -0
- data/app/models/decidim/votings/ballot_style.rb +6 -0
- data/app/models/decidim/votings/census/dataset.rb +2 -0
- data/app/models/decidim/votings/monitoring_committee_member.rb +6 -0
- data/app/models/decidim/votings/polling_officer.rb +5 -0
- data/app/models/decidim/votings/polling_station.rb +6 -0
- data/app/packs/entrypoints/decidim_elections_admin_trustees_process.js +1 -0
- data/app/packs/src/decidim/elections/admin/pending_action.js +1 -1
- data/app/packs/src/decidim/elections/admin/trustees_process.js +125 -0
- data/app/packs/src/decidim/elections/election_log.js +89 -73
- data/app/packs/src/decidim/elections/trustee/key_ceremony.js +3 -3
- data/app/packs/src/decidim/elections/trustee/tally.js +3 -3
- data/app/packs/src/decidim/elections/trustee/trustee_zone.js +29 -18
- data/app/packs/src/decidim/elections/voter/casting-vote.js +1 -1
- data/app/packs/src/decidim/elections/voter/setup-vote.js +5 -5
- data/app/packs/src/decidim/elections/voter/verify-vote.js +1 -1
- data/app/packs/src/decidim/votings/in-person-vote.js +1 -1
- data/app/presenters/decidim/elections/admin_log/election_presenter.rb +34 -9
- data/app/presenters/decidim/elections/admin_log/trustee_presenter.rb +50 -0
- data/app/presenters/decidim/elections/trustee_presenter.rb +5 -1
- data/app/presenters/decidim/votings/admin_log/ballot_style_presenter.rb +35 -0
- data/app/presenters/decidim/votings/admin_log/monitoring_committee_member_presenter.rb +50 -0
- data/app/presenters/decidim/votings/admin_log/polling_officer_presenter.rb +50 -0
- data/app/presenters/decidim/votings/admin_log/polling_station_presenter.rb +29 -0
- data/app/presenters/decidim/votings/admin_log/voting_presenter.rb +1 -1
- data/app/presenters/decidim/votings/census/admin_log/dataset_presenter.rb +7 -6
- data/app/services/decidim/votings/voting_search.rb +2 -2
- data/app/views/decidim/elections/admin/steps/_create_election.html.erb +3 -3
- data/app/views/decidim/elections/admin/steps/_key_ceremony.html.erb +44 -9
- data/app/views/decidim/elections/admin/steps/_tally.html.erb +60 -10
- data/app/views/decidim/elections/admin/steps/index.html.erb +17 -15
- data/app/views/decidim/elections/elections/_filters_small_view.html.erb +3 -3
- data/app/views/decidim/elections/elections/election_log.html.erb +1 -1
- data/app/views/decidim/elections/elections/show.html.erb +1 -1
- data/app/views/decidim/elections/trustee_zone/elections/show.html.erb +1 -1
- data/app/views/decidim/elections/trustee_zone/trustees/show.html.erb +1 -1
- data/app/views/decidim/elections/votes/_onboarding_modal.html.erb +1 -1
- data/app/views/decidim/elections/votes/_show_casted.html.erb +1 -1
- data/app/views/decidim/elections/votes/_show_casting.html.erb +1 -1
- data/app/views/decidim/elections/votes/new.html.erb +3 -3
- data/app/views/decidim/elections/votes/verify.html.erb +1 -1
- data/app/views/decidim/votings/admin/votings/index.html.erb +1 -1
- data/app/views/decidim/votings/polling_officer_zone/closures/_modal_ballots_count_error.html.erb +3 -2
- data/app/views/decidim/votings/polling_officer_zone/closures/_modal_ballots_results_count_error.html.erb +3 -2
- data/app/views/decidim/votings/polling_officer_zone/closures/_sign_form.html.erb +4 -3
- data/app/views/decidim/votings/polling_officer_zone/closures/edit.html.erb +1 -1
- data/app/views/decidim/votings/polling_officer_zone/closures/new.html.erb +1 -1
- data/app/views/decidim/votings/polling_officer_zone/in_person_votes/new.html.erb +1 -1
- data/app/views/decidim/votings/polling_officer_zone/in_person_votes/show.html.erb +1 -1
- data/app/views/decidim/votings/votings/_filters_small_view.html.erb +3 -3
- data/app/views/decidim/votings/votings/_promoted_voting.html.erb +1 -1
- data/config/assets.rb +1 -0
- data/config/locales/ar.yml +12 -0
- data/config/locales/ca.yml +45 -11
- data/config/locales/cs.yml +41 -11
- data/config/locales/de.yml +0 -13
- data/config/locales/en.yml +41 -11
- data/config/locales/es-MX.yml +45 -11
- data/config/locales/es-PY.yml +45 -11
- data/config/locales/es.yml +45 -11
- data/config/locales/eu.yml +23 -11
- data/config/locales/fi-plain.yml +41 -11
- data/config/locales/fi.yml +41 -11
- data/config/locales/fr-CA.yml +408 -11
- data/config/locales/fr.yml +457 -60
- data/config/locales/ga-IE.yml +0 -4
- data/config/locales/gl.yml +19 -3
- data/config/locales/hu.yml +108 -0
- data/config/locales/it.yml +33 -11
- data/config/locales/ja.yml +381 -17
- data/config/locales/lb-LU.yml +24 -0
- data/config/locales/nl.yml +232 -7
- data/config/locales/no.yml +498 -1
- data/config/locales/pl.yml +6 -11
- data/config/locales/pt-BR.yml +1 -14
- data/config/locales/pt.yml +40 -9
- data/config/locales/ro-RO.yml +57 -12
- data/config/locales/sv.yml +104 -6
- data/config/locales/tr-TR.yml +4 -9
- data/config/locales/val-ES.yml +1 -0
- data/config/locales/zh-CN.yml +0 -5
- data/lib/decidim/elections/component.rb +2 -1
- data/lib/decidim/elections/test/factories.rb +2 -2
- data/lib/decidim/elections/version.rb +1 -1
- metadata +32 -22
data/config/locales/cs.yml
CHANGED
@@ -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
|
-
|
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
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
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
|
@@ -1010,6 +1022,24 @@ cs:
|
|
1010
1022
|
invalid: Při aktualizaci tohoto hlasování došlo k chybě
|
1011
1023
|
success: Hlasování bylo úspěšně aktualizováno
|
1012
1024
|
admin_log:
|
1025
|
+
ballot_style:
|
1026
|
+
create: "%{user_name} vytvořil styl voleb s kódem %{ballot_style_code} ve %{space_name}"
|
1027
|
+
delete: "%{user_name} odstranil styl voleb s kódem %{ballot_style_code} ve %{space_name}"
|
1028
|
+
update: "%{user_name} aktualizoval styl voleb s kódem %{ballot_style_code} ve %{space_name}"
|
1029
|
+
census:
|
1030
|
+
create: "%{user_name} vytvořil sčítání pro %{space_name}"
|
1031
|
+
delete: "%{user_name} odstranil sčítání pro %{space_name}"
|
1032
|
+
update: "%{user_name} aktualizoval sčítání pro %{space_name}"
|
1033
|
+
monitoring_committee_member:
|
1034
|
+
create: "%{user_name} přiřadil uživatele %{monitoring_committee_member_user} jako člena monitorovacího výboru ve %{space_name}"
|
1035
|
+
delete: "%{user_name} odebral uživatele %{monitoring_committee_member_user} jako člena monitorovacího výboru ve %{space_name}"
|
1036
|
+
polling_officer:
|
1037
|
+
create: "%{user_name} přiřadil uživatele %{polling_officer_user} jako volebního úředníka ve %{space_name}"
|
1038
|
+
delete: "%{user_name} zrušil přiřazení uživatele %{polling_officer_user} jako volebního úředníka ve %{space_name}"
|
1039
|
+
polling_station:
|
1040
|
+
create: "%{user_name} vytvořil hlasovací místo %{resource_name} ve %{space_name}"
|
1041
|
+
delete: "%{user_name} odstranil hlasovací místo %{resource_name} ve %{space_name}"
|
1042
|
+
update: "%{user_name} aktualizoval hlasovací místo %{resource_name} ve %{space_name}"
|
1013
1043
|
voting:
|
1014
1044
|
create: "%{user_name} vytvořil %{resource_name} hlasování"
|
1015
1045
|
publish: "%{user_name} zveřejnil %{resource_name} hlasování"
|
@@ -1019,7 +1049,7 @@ cs:
|
|
1019
1049
|
census:
|
1020
1050
|
create:
|
1021
1051
|
invalid: Při nahrávání seznamu osob došlo k chybě, opakujte akci později.
|
1022
|
-
invalid_csv_header:
|
1052
|
+
invalid_csv_header: Hlavičky CSV chybí nebo nejsou správné - přečtěte si prosím pečlivě pokyny
|
1023
1053
|
creating_data:
|
1024
1054
|
info_message: "<strong>Počkejte prosím</strong>, zpracováno %{processed_count} z %{raw_count} řádků ze souboru %{file}."
|
1025
1055
|
delete:
|
data/config/locales/de.yml
CHANGED
@@ -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
|
@@ -981,7 +969,6 @@ de:
|
|
981
969
|
census:
|
982
970
|
create:
|
983
971
|
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
972
|
creating_data:
|
986
973
|
info_message: "<strong>Bitte warten</strong>, %{processed_count} von %{raw_count} Zeilen aus der Datei %{file} wurden verarbeitet."
|
987
974
|
delete:
|
data/config/locales/en.yml
CHANGED
@@ -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
|
-
|
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
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
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
|
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:
|
data/config/locales/es-MX.yml
CHANGED
@@ -253,8 +253,8 @@ es-MX:
|
|
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-MX:
|
|
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
|
-
|
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-MX:
|
|
328
334
|
success: El garante %{trustee} se ha actualizado correctamente
|
329
335
|
admin_log:
|
330
336
|
election:
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
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
|
@@ -343,6 +355,10 @@ es-MX:
|
|
343
355
|
upcoming: Próximas
|
344
356
|
end_date: Termina
|
345
357
|
footer:
|
358
|
+
remaining_time:
|
359
|
+
one: "Quedan <strong>%{count} hora %{minutes} minutos</strong> restantes para votar."
|
360
|
+
other: "Quedan <strong>%{count} horas %{minutes} minutos</strong> restantes para votar."
|
361
|
+
zero: "Quedan <strong>%{minutes} minutos</strong> restantes para votar."
|
346
362
|
view: Ver
|
347
363
|
vote: Votar
|
348
364
|
label:
|
@@ -988,6 +1004,24 @@ es-MX:
|
|
988
1004
|
invalid: Hubo un problema al actualizar esta votación
|
989
1005
|
success: Votación actualizada correctamente
|
990
1006
|
admin_log:
|
1007
|
+
ballot_style:
|
1008
|
+
create: "%{user_name} creó un estilo de papeleta con código %{ballot_style_code} en el espacio %{space_name}"
|
1009
|
+
delete: "%{user_name} eliminó el estilo de la papeleta con el código %{ballot_style_code} en el espacio %{space_name}"
|
1010
|
+
update: "%{user_name} actualizó el estilo de la papeleta con el código %{ballot_style_code} en el espacio %{space_name}"
|
1011
|
+
census:
|
1012
|
+
create: "%{user_name} creó el censo para el espacio %{space_name}"
|
1013
|
+
delete: "%{user_name} eliminó el censo del espacio %{space_name}"
|
1014
|
+
update: "%{user_name} actualizó el censo del espacio %{space_name}"
|
1015
|
+
monitoring_committee_member:
|
1016
|
+
create: "%{user_name} asignó al usuario %{monitoring_committee_member_user} como miembro del comité de seguimiento en el espacio %{space_name}"
|
1017
|
+
delete: "%{user_name} desasignó el usuario %{monitoring_committee_member_user} como miembro del comité de seguimiento en el espacio %{space_name}"
|
1018
|
+
polling_officer:
|
1019
|
+
create: "%{user_name} asignó al usuario %{polling_officer_user} como gestor de mesa en el espacio %{space_name}"
|
1020
|
+
delete: "%{user_name} desasignó al usuario %{polling_officer_user} como gestor de mesa en el espacio %{space_name}"
|
1021
|
+
polling_station:
|
1022
|
+
create: "%{user_name} creó el punto de votación %{resource_name} en el espacio %{space_name}"
|
1023
|
+
delete: "%{user_name} eliminó el punto de votación %{resource_name} en el espacio %{space_name}"
|
1024
|
+
update: "%{user_name} actualizó el punto de votación %{resource_name} en el espacio %{space_name}"
|
991
1025
|
voting:
|
992
1026
|
create: "%{user_name} creó la votación %{resource_name}"
|
993
1027
|
publish: "%{user_name} publicó la votación %{resource_name}"
|
@@ -997,7 +1031,7 @@ es-MX:
|
|
997
1031
|
census:
|
998
1032
|
create:
|
999
1033
|
invalid: Se ha producido un error al subir el censo, por favor inténtalo de nuevo más tarde.
|
1000
|
-
invalid_csv_header:
|
1034
|
+
invalid_csv_header: Los encabezados CSV faltan o no son correctos - por favor lee las instrucciones cuidadosamente
|
1001
1035
|
creating_data:
|
1002
1036
|
info_message: "<strong>Por favor espera</strong>, procesadas %{processed_count} de %{raw_count} filas del fichero %{file}."
|
1003
1037
|
delete:
|
data/config/locales/es-PY.yml
CHANGED
@@ -253,8 +253,8 @@ es-PY:
|
|
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-PY:
|
|
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
|
-
|
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-PY:
|
|
328
334
|
success: El garante %{trustee} se ha actualizado correctamente
|
329
335
|
admin_log:
|
330
336
|
election:
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
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
|
@@ -343,6 +355,10 @@ es-PY:
|
|
343
355
|
upcoming: Próximas
|
344
356
|
end_date: Termina
|
345
357
|
footer:
|
358
|
+
remaining_time:
|
359
|
+
one: "Quedan <strong>%{count} hora %{minutes} minutos</strong> restantes para votar."
|
360
|
+
other: "Quedan <strong>%{count} horas %{minutes} minutos</strong> restantes para votar."
|
361
|
+
zero: "Quedan <strong>%{minutes} minutos</strong> restantes para votar."
|
346
362
|
view: Ver
|
347
363
|
vote: Votar
|
348
364
|
label:
|
@@ -988,6 +1004,24 @@ es-PY:
|
|
988
1004
|
invalid: Hubo un problema al actualizar esta votación
|
989
1005
|
success: Votación actualizada correctamente
|
990
1006
|
admin_log:
|
1007
|
+
ballot_style:
|
1008
|
+
create: "%{user_name} creó un estilo de papeleta con código %{ballot_style_code} en el espacio %{space_name}"
|
1009
|
+
delete: "%{user_name} eliminó el estilo de la papeleta con el código %{ballot_style_code} en el espacio %{space_name}"
|
1010
|
+
update: "%{user_name} actualizó el estilo de la papeleta con el código %{ballot_style_code} en el espacio %{space_name}"
|
1011
|
+
census:
|
1012
|
+
create: "%{user_name} creó el censo para el espacio %{space_name}"
|
1013
|
+
delete: "%{user_name} eliminó el censo del espacio %{space_name}"
|
1014
|
+
update: "%{user_name} actualizó el censo del espacio %{space_name}"
|
1015
|
+
monitoring_committee_member:
|
1016
|
+
create: "%{user_name} asignó al usuario %{monitoring_committee_member_user} como miembro del comité de seguimiento en el espacio %{space_name}"
|
1017
|
+
delete: "%{user_name} desasignó el usuario %{monitoring_committee_member_user} como miembro del comité de seguimiento en el espacio %{space_name}"
|
1018
|
+
polling_officer:
|
1019
|
+
create: "%{user_name} asignó al usuario %{polling_officer_user} como gestor de mesa en el espacio %{space_name}"
|
1020
|
+
delete: "%{user_name} desasignó al usuario %{polling_officer_user} como gestor de mesa en el espacio %{space_name}"
|
1021
|
+
polling_station:
|
1022
|
+
create: "%{user_name} creó el punto de votación %{resource_name} en el espacio %{space_name}"
|
1023
|
+
delete: "%{user_name} eliminó el punto de votación %{resource_name} en el espacio %{space_name}"
|
1024
|
+
update: "%{user_name} actualizó el punto de votación %{resource_name} en el espacio %{space_name}"
|
991
1025
|
voting:
|
992
1026
|
create: "%{user_name} creó la votación %{resource_name}"
|
993
1027
|
publish: "%{user_name} publicó la votación %{resource_name}"
|
@@ -997,7 +1031,7 @@ es-PY:
|
|
997
1031
|
census:
|
998
1032
|
create:
|
999
1033
|
invalid: Se ha producido un error al subir el censo, por favor inténtalo de nuevo más tarde.
|
1000
|
-
invalid_csv_header:
|
1034
|
+
invalid_csv_header: Los encabezados CSV faltan o no son correctos - por favor lee las instrucciones cuidadosamente
|
1001
1035
|
creating_data:
|
1002
1036
|
info_message: "<strong>Por favor espera</strong>, procesadas %{processed_count} de %{raw_count} filas del fichero %{file}."
|
1003
1037
|
delete:
|
data/config/locales/es.yml
CHANGED
@@ -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
|
-
|
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
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
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
|
@@ -343,6 +355,10 @@ es:
|
|
343
355
|
upcoming: Próximas
|
344
356
|
end_date: Termina
|
345
357
|
footer:
|
358
|
+
remaining_time:
|
359
|
+
one: "Quedan <strong>%{count} hora %{minutes} minutos</strong> restantes para votar."
|
360
|
+
other: "Quedan <strong>%{count} horas %{minutes} minutos</strong> restantes para votar."
|
361
|
+
zero: "Quedan <strong>%{minutes} minutos</strong> restantes para votar."
|
346
362
|
view: Ver
|
347
363
|
vote: Votar
|
348
364
|
label:
|
@@ -988,6 +1004,24 @@ es:
|
|
988
1004
|
invalid: Hubo un problema al actualizar esta votación
|
989
1005
|
success: Votación actualizada correctamente
|
990
1006
|
admin_log:
|
1007
|
+
ballot_style:
|
1008
|
+
create: "%{user_name} creó un estilo de papeleta con código %{ballot_style_code} en el espacio %{space_name}"
|
1009
|
+
delete: "%{user_name} eliminó el estilo de la papeleta con el código %{ballot_style_code} en el espacio %{space_name}"
|
1010
|
+
update: "%{user_name} actualizó el estilo de la papeleta con el código %{ballot_style_code} en el espacio %{space_name}"
|
1011
|
+
census:
|
1012
|
+
create: "%{user_name} creó el censo para el espacio %{space_name}"
|
1013
|
+
delete: "%{user_name} eliminó el censo del espacio %{space_name}"
|
1014
|
+
update: "%{user_name} actualizó el censo del espacio %{space_name}"
|
1015
|
+
monitoring_committee_member:
|
1016
|
+
create: "%{user_name} asignó al usuario %{monitoring_committee_member_user} como miembro del comité de seguimiento en el espacio %{space_name}"
|
1017
|
+
delete: "%{user_name} desasignó el usuario %{monitoring_committee_member_user} como miembro del comité de seguimiento en el espacio %{space_name}"
|
1018
|
+
polling_officer:
|
1019
|
+
create: "%{user_name} asignó al usuario %{polling_officer_user} como gestor de mesa en el espacio %{space_name}"
|
1020
|
+
delete: "%{user_name} desasignó al usuario %{polling_officer_user} como gestor de mesa en el espacio %{space_name}"
|
1021
|
+
polling_station:
|
1022
|
+
create: "%{user_name} creó el punto de votación %{resource_name} en el espacio %{space_name}"
|
1023
|
+
delete: "%{user_name} eliminó el punto de votación %{resource_name} en el espacio %{space_name}"
|
1024
|
+
update: "%{user_name} actualizó el punto de votación %{resource_name} en el espacio %{space_name}"
|
991
1025
|
voting:
|
992
1026
|
create: "%{user_name} creó la votación %{resource_name}"
|
993
1027
|
publish: "%{user_name} publicó la votación %{resource_name}"
|
@@ -997,7 +1031,7 @@ es:
|
|
997
1031
|
census:
|
998
1032
|
create:
|
999
1033
|
invalid: Se ha producido un error al subir el censo, por favor inténtalo de nuevo más tarde.
|
1000
|
-
invalid_csv_header:
|
1034
|
+
invalid_csv_header: Los encabezados CSV faltan o no son correctos - por favor lee las instrucciones cuidadosamente
|
1001
1035
|
creating_data:
|
1002
1036
|
info_message: "<strong>Por favor espera</strong>, procesadas %{processed_count} de %{raw_count} filas del fichero %{file}."
|
1003
1037
|
delete:
|
data/config/locales/eu.yml
CHANGED
@@ -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
|
-
|
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
|
@@ -990,6 +984,24 @@ eu:
|
|
990
984
|
invalid: Arazo bat izan da bozketa hau eguneratzean
|
991
985
|
success: Bozketa zuzen eguneratu da
|
992
986
|
admin_log:
|
987
|
+
ballot_style:
|
988
|
+
create: "%{user_name} k sortu du boto-paper bat kode honekin: %{ballot_style_code} espazio honetan: %{space_name}"
|
989
|
+
delete: "%{user_name} k ezabatu du boto-paper mota hau kode honekin: %{ballot_style_code} espazio honetan: %{space_name}"
|
990
|
+
update: "%{user_name} k eguneratu du boto-paper mota kode honekin: %{ballot_style_code} espazio honetan: %{space_name}"
|
991
|
+
census:
|
992
|
+
create: "%{user_name} k sortu du errolda espazio honetarako: %{space_name}"
|
993
|
+
delete: "%{user_name} k ezabatu du errolda espazio honetarako: %{space_name}"
|
994
|
+
update: "%{user_name} k eguneratu du errolda espazio honetarako: %{space_name}"
|
995
|
+
monitoring_committee_member:
|
996
|
+
create: "%{user_name} k esleitu du %{monitoring_committee_member_user} erabiltzailea jarraipeb-batzordeko kide gisa espazio honetan: %{space_name}"
|
997
|
+
delete: "%{user_name} k desesleitu du %{monitoring_committee_member_user} erabiltzailea jarraipeb-batzordeko kide gisa espazio honetan: %{space_name}"
|
998
|
+
polling_officer:
|
999
|
+
create: "%{user_name} k esleitu du %{polling_officer_user} erabiltzailea jarraipen-batzordeko kide gisa espazio honetan: %{space_name}"
|
1000
|
+
delete: "%{user_name} k desesleitu du %{polling_officer_user} erabiltzailea jarraipen-batzordeko kide gisa espazio honetan: %{space_name}"
|
1001
|
+
polling_station:
|
1002
|
+
create: "%{user_name} k sortu du %{resource_name} bozketa-gunea %{space_name} espazioan"
|
1003
|
+
delete: "%{user_name} k ezabatu du %{resource_name} bozketa-gunea %{space_name} espazioan"
|
1004
|
+
update: "%{user_name} k eguneratu du %{resource_name} bozketa-gunea %{space_name} espazioan"
|
993
1005
|
voting:
|
994
1006
|
create: "%{user_name}-k sortu du %{resource_name} bozketa"
|
995
1007
|
publish: "%{user_name}-k argitaratu du %{resource_name} bozketa"
|
@@ -999,7 +1011,7 @@ eu:
|
|
999
1011
|
census:
|
1000
1012
|
create:
|
1001
1013
|
invalid: Arazo bai izan da errolda igotzean, mesedez, saiatu berriro geroago.
|
1002
|
-
invalid_csv_header: CSV goiburuak ez
|
1014
|
+
invalid_csv_header: CSV goiburuak galdu dira edo ez dira zuzenak - mesedez, irakurri arretaz jarraibideak
|
1003
1015
|
creating_data:
|
1004
1016
|
info_message: "<strong>Mesedez itxaron</strong>, %{processed_count} prozesatuak %{raw_count} tik %{file} fitxeroko ilara."
|
1005
1017
|
delete:
|