updates notice

This commit is contained in:
rgarcia
2017-02-15 15:45:43 +01:00
committed by Javi Martín
parent 74706027cb
commit 5dea0e039e
3 changed files with 4 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ en:
booth: booth:
new: new:
title: "Choose your booth" title: "Choose your booth"
success: "You are officing booth %{booth}" success: "You are officing the booth located at %{booth}. If this is not correct, do not continue and call the help phone number. Thank you."
results: results:
flash: flash:
create: "Results saved" create: "Results saved"

View File

@@ -19,7 +19,7 @@ es:
booth: booth:
new: new:
title: "Escoge tu urna" title: "Escoge tu urna"
success: "Estás presidiendo la urna %{booth}" success: "Estás ahora mismo en la mesa ubicada en %{booth}. Si esto no es correcto no sigas adelante y llama al teléfono de incidencias. Gracias."
results: results:
flash: flash:
create: "Datos guardados" create: "Datos guardados"

View File

@@ -30,7 +30,7 @@ feature "Booth" do
login_through_form_as(officer.user) login_through_form_as(officer.user)
expect(page).to have_content "You are officing booth #{booth.name}" expect(page).to have_content "You are officing the booth located at #{booth.name}."
end end
scenario "Officer with multiple booth assignments today" do scenario "Officer with multiple booth assignments today" do
@@ -54,7 +54,7 @@ feature "Booth" do
select booth2.name, from: "booth_id" select booth2.name, from: "booth_id"
click_button "Enter" click_button "Enter"
expect(page).to have_content "You are officing booth #{booth2.name}" expect(page).to have_content "You are officing the booth located at #{booth2.name}."
end end
end end