From 3c20384c9f35d54c979835032706288307e13a2f Mon Sep 17 00:00:00 2001 From: Austin King <shout@ozten.com> Date: Mon, 30 Jan 2012 11:18:18 -0800 Subject: [PATCH] Gettext and format were in wrong order... Fixes#996 --- lib/browserid/prove_template.ejs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/browserid/prove_template.ejs b/lib/browserid/prove_template.ejs index 5cba2343a..d9bd31486 100644 --- a/lib/browserid/prove_template.ejs +++ b/lib/browserid/prove_template.ejs @@ -1,5 +1,5 @@ -<%= gettext( - format('Thanks for verifying your email address. This message is being sent to you to complete your sign-in to %s.', [site])) %> +<%= format( + gettext('Thanks for verifying your email address. This message is being sent to you to complete your sign-in to %s.'), [site]) %> <%= gettext('Finish registration by clicking this link:') %> <%= link %> -- GitLab