diff --git a/app/views/admin/poll/polls/_questions.html.erb b/app/views/admin/poll/polls/_questions.html.erb
index 08b094ddf..1cd8597bb 100644
--- a/app/views/admin/poll/polls/_questions.html.erb
+++ b/app/views/admin/poll/polls/_questions.html.erb
@@ -10,10 +10,7 @@
| <%= link_to question.title, admin_question_path(question) %> |
- <%= link_to t('shared.edit'),
- edit_admin_question_path(question),
- class: "button hollow" %>
- <%= link_to t('shared.delete'),
+ <%= link_to t('admin.polls.show.remove_question'),
admin_question_path(question),
class: "button hollow alert",
method: :delete %>
diff --git a/config/locales/admin.en.yml b/config/locales/admin.en.yml
index a99f0d969..edba441f8 100755
--- a/config/locales/admin.en.yml
+++ b/config/locales/admin.en.yml
@@ -189,6 +189,7 @@ en:
booths_title: "List of booths"
officers_title: "List of officers"
questions_title: "List of questions"
+ remove_question: "Remove question from poll"
name: "Name"
location: "Location"
email: "Email"
diff --git a/config/locales/admin.es.yml b/config/locales/admin.es.yml
index d58fa4230..fedb0a4e3 100644
--- a/config/locales/admin.es.yml
+++ b/config/locales/admin.es.yml
@@ -185,10 +185,11 @@ es:
no_booths: "No hay urnas en esta votación."
no_questions: "No hay preguntas asignadas a esta votación todavía."
no_officers: "No hay presidentes de mesa asignados."
- remove_booth: "Deasignar urna"
+ remove_booth: "Desasignar urna"
booths_title: "Listado de urnas"
officers_title: "Listado de presidentes de mesa"
questions_title: "Listado de preguntas"
+ remove_question: "Desasignar pregunta"
name: "Nombre"
location: "Ubicación"
email: "Email"
|