diff options
author | David Cabo <david@calibea.com> | 2012-05-26 20:33:36 +0200 |
---|---|---|
committer | David Cabo <david@calibea.com> | 2012-05-28 12:57:01 +0200 |
commit | 3828c38ea024166c89bbfa079c4b58573753f2f2 (patch) | |
tree | de1673572bab36df31d2a04ba59e0975bcf9c4dd | |
parent | 76cc2a422a01dddf5cd64fc7cf005d24c8bb12cb (diff) |
Fix missing i18n string in clarification email
-rw-r--r-- | app/views/request_mailer/not_clarified_alert.rhtml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/views/request_mailer/not_clarified_alert.rhtml b/app/views/request_mailer/not_clarified_alert.rhtml index 82d15ba76..2408452b3 100644 --- a/app/views/request_mailer/not_clarified_alert.rhtml +++ b/app/views/request_mailer/not_clarified_alert.rhtml @@ -1,5 +1,7 @@ -<%=@info_request.public_body.name%> <%=('has asked you to explain part of your')%> <%=@info_request.law_used_short%> <%= _('request.')%> -<%= _('To do this, first click on the link below.')%> +<%= _('{{public_body}} has asked you to explain part of your {{law_used}} request.', + :public_body => @info_request.public_body.name, + :law_used => @info_request.law_used_short ) %> +<%= _('To do this, first click on the link below.') %> <%=@url%> |