Skip to content
Snippets Groups Projects
Commit 1a77e6b7 authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

It's not always clear what does %s stand for - use named parameters as hints to translators

parent e779a7d4
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment