From 1a77e6b7876eb2137f16dab7b49106c2a5fef203 Mon Sep 17 00:00:00 2001
From: Lloyd Hilaiel <lloyd@hilaiel.com>
Date: Sat, 7 Jul 2012 15:43:49 -0600
Subject: [PATCH] It's not always clear what does %s stand for - use named
 parameters as hints to translators

---
 resources/static/dialog/views/verify_primary_user.ejs | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/resources/static/dialog/views/verify_primary_user.ejs b/resources/static/dialog/views/verify_primary_user.ejs
index 33deb1387..695924ac8 100644
--- a/resources/static/dialog/views/verify_primary_user.ejs
+++ b/resources/static/dialog/views/verify_primary_user.ejs
@@ -8,10 +8,12 @@
   </h3>
 
   <p>
-    <%= format(gettext("Persona lets you use your %s account to sign into sites like %s."), [idpName, siteName]) %>
+    <%= format(gettext("Persona lets you use your %(emailProvider) account to sign into sites like %(aWebsite)."),
+               { emailProvider: idpName, aWebsite: siteName }) %>
   </p>
   <p>
-    <%= format(gettext("Once you verify your account there, you will be signed in to %s."), [siteName]) %>
+    <%= format(gettext("Once you verify your account there, you will be signed in to %(aWebsite)."),
+               {aWebsite : siteName}) %>
   </p>
     <p class="submit cf buttonrow">
         <button id="verifyWithPrimary"><%= format(gettext("sign in with %s"), [idpName]) %></button>
-- 
GitLab