From ad551e0b00f89c42062c2e7f4a500ad3dca76cf3 Mon Sep 17 00:00:00 2001 From: Marta Nicholson Date: Fri, 8 Oct 2021 16:44:10 +0100 Subject: [PATCH] Translation.io tags missing --- app/presenters/contributor_presenter.rb | 8 ++++---- app/views/plans/request_feedback.html.erb | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/presenters/contributor_presenter.rb b/app/presenters/contributor_presenter.rb index 91ce18bab2..e2b1c03689 100644 --- a/app/presenters/contributor_presenter.rb +++ b/app/presenters/contributor_presenter.rb @@ -40,13 +40,13 @@ def roles_for_radio(contributor:) def role_symbol_to_string(symbol:) case symbol when :data_curation - "Data Manager" + _("Data Manager") when :project_administration - "Project Administrator" + _("Project Administrator") when :investigation - "Principal Investigator" + _("Principal Investigator") else - "Other" + _("Other") end end diff --git a/app/views/plans/request_feedback.html.erb b/app/views/plans/request_feedback.html.erb index 0878409a09..dedb6f8c81 100644 --- a/app/views/plans/request_feedback.html.erb +++ b/app/views/plans/request_feedback.html.erb @@ -1,4 +1,4 @@ -<% title "#{@plan.title} - Request feedback" %> +<% title _("#{@plan.title} - Request feedback") %>