diff --git a/app/views/admin/poll/booth_assignments/show.html.erb b/app/views/admin/poll/booth_assignments/show.html.erb
index 5f80f2617..c69631dee 100644
--- a/app/views/admin/poll/booth_assignments/show.html.erb
+++ b/app/views/admin/poll/booth_assignments/show.html.erb
@@ -21,7 +21,7 @@
<%= link_to t("admin.poll_booth_assignments.show.recounts"), "#tab-recounts" %>
- <%= link_to "Results", "#tab-results" %>
+ <%= link_to t("admin.poll_booth_assignments.show.results"), "#tab-results" %>
diff --git a/app/views/admin/poll/results/_result.html.erb b/app/views/admin/poll/results/_result.html.erb
index 074c26ebf..64da2c9b2 100644
--- a/app/views/admin/poll/results/_result.html.erb
+++ b/app/views/admin/poll/results/_result.html.erb
@@ -1,8 +1,8 @@
- | <%= t("admin.results.index.table_whites") %> |
- <%= t("admin.results.index.table_nulls") %> |
- <%= t("admin.results.index.table_total") %> |
+ <%= t("admin.results.result.table_whites") %> |
+ <%= t("admin.results.result.table_nulls") %> |
+ <%= t("admin.results.result.table_total") %> |
@@ -20,8 +20,8 @@
- | <%= t("admin.results.index.table_answer") %> |
- <%= t("admin.results.index.table_votes") %> |
+ <%= t("admin.results.result.table_answer") %> |
+ <%= t("admin.results.result.table_votes") %> |
diff --git a/app/views/admin/poll/results/_results_by_booth.html.erb b/app/views/admin/poll/results/_results_by_booth.html.erb
index 3c240f8d3..8778a7434 100644
--- a/app/views/admin/poll/results/_results_by_booth.html.erb
+++ b/app/views/admin/poll/results/_results_by_booth.html.erb
@@ -1,8 +1,8 @@
- | Urna |
- Resultados |
+ <%= t("admin.results.results_by_booth.booth") %> |
+ <%= t("admin.results.results_by_booth.results") %> |
@@ -10,8 +10,9 @@
| <%= booth_assignment.booth.name %> |
- <%= link_to "See results",
- admin_poll_booth_assignment_path(@poll, booth_assignment, anchor: "tab-results") %>
+ <%= link_to t("admin.results.results_by_booth.see_results"),
+ admin_poll_booth_assignment_path(@poll, booth_assignment,
+ anchor: "tab-results") %>
|
<% end %>
diff --git a/config/locales/en/admin.yml b/config/locales/en/admin.yml
index 87bbb6685..2b6f2988e 100644
--- a/config/locales/en/admin.yml
+++ b/config/locales/en/admin.yml
@@ -537,6 +537,7 @@ en:
no_officers: "There are no officers for this booth"
recounts: "Recounts"
recounts_list: "Recount list for this booth"
+ results: "Results"
date: "Date"
count_final: "Final recount (by officer)"
count_by_system: "Votes (automatic)"
@@ -647,11 +648,16 @@ en:
index:
title: "Results"
no_results: "There are no results"
+ result:
table_whites: "Totally blank ballots"
table_nulls: "Invalid ballots"
table_total: "Total ballots"
table_answer: Answer
table_votes: Votes
+ results_by_booth:
+ booth: Booth
+ results: Results
+ see_results: See results
booths:
index:
title: "List of booths"
diff --git a/config/locales/es/admin.yml b/config/locales/es/admin.yml
index 0aa73ffb2..26e2d18dc 100644
--- a/config/locales/es/admin.yml
+++ b/config/locales/es/admin.yml
@@ -537,6 +537,7 @@ es:
no_officers: "No hay presidentes de mesa para esta urna"
recounts: "Recuentos"
recounts_list: "Lista de recuentos de esta urna"
+ results: "Resultados"
date: "Fecha"
count_final: "Recuento final (presidente de mesa)"
count_by_system: "Votos (automático)"
@@ -649,11 +650,16 @@ es:
index:
title: "Resultados"
no_results: "No hay resultados"
+ result:
table_whites: Papeletas totalmente en blanco
table_nulls: Papeletas nulas
table_total: Papeletas totales
table_answer: Respuesta
table_votes: Votos
+ results_by_booth:
+ booth: Urna
+ results: Resultados
+ see_results: Ver resultados
booths:
index:
title: "Lista de urnas"