Commit 70ed4083 authored by Gervase Markham's avatar Gervase Markham Committed by Gervase Markham

Bug 1226865 - more fixes to Localiser's Guide (replace wrongly HTML-encoded >)

parent 99d31503
...@@ -54,7 +54,7 @@ lines of template code: ...@@ -54,7 +54,7 @@ lines of template code:
<li> <li>
The account has been added to the The account has been added to the
[% groups_added_to.join(', ') FILTER html %] [% groups_added_to.join(', ') FILTER html %]
group[% 's' IF groups_added_to.size &gt; 1 %]. group[% 's' IF groups_added_to.size > 1 %].
</li> </li>
[% END %] [% END %]
...@@ -73,7 +73,7 @@ Again, insert a "+" sign: ...@@ -73,7 +73,7 @@ Again, insert a "+" sign:
&lt;li&gt; &lt;li&gt;
The account has been added to the The account has been added to the
[%<mark>+</mark> groups_added_to.join(', ') FILTER html %] [%<mark>+</mark> groups_added_to.join(', ') FILTER html %]
group[% 's' IF groups_added_to.size &gt; 1 %]. group[% 's' IF groups_added_to.size > 1 %].
&lt;/li&gt; &lt;/li&gt;
[% END %] [% END %]
</pre> </pre>
...@@ -101,7 +101,7 @@ would give for instance the following: ...@@ -101,7 +101,7 @@ would give for instance the following:
[% IF groups_added_to.size %] [% IF groups_added_to.size %]
<li> <li>
Le compte a été ajouté Le compte a été ajouté
[% IF groups_added_to.size &gt; 1 %] [% IF groups_added_to.size > 1 %]
aux groupes[% ELSE %]au groupe[% END %][%+ groups_added_to.join(', ') FILTER html %]. aux groupes[% ELSE %]au groupe[% END %][%+ groups_added_to.join(', ') FILTER html %].
</li> </li>
[% END %] [% END %]
...@@ -165,7 +165,7 @@ Let's say we have the following: ...@@ -165,7 +165,7 @@ Let's say we have the following:
<p> <p>
Sorry, there Sorry, there
[% IF comp.bug_count &gt; 1 %] [% IF comp.bug_count > 1 %]
are [% comp.bug_count %] [%+ terms.bugs %] are [% comp.bug_count %] [%+ terms.bugs %]
[% ELSE %] [% ELSE %]
is [% comp.bug_count %] [%+ terms.bug %] is [% comp.bug_count %] [%+ terms.bug %]
...@@ -173,7 +173,7 @@ Let's say we have the following: ...@@ -173,7 +173,7 @@ Let's say we have the following:
pending for this component. You should reassign pending for this component. You should reassign
[% IF comp.bug_count &gt; 1 %] [% IF comp.bug_count > 1 %]
these [% terms.bugs %] these [% terms.bugs %]
[% ELSE %] [% ELSE %]
this [% terms.bug %] this [% terms.bug %]
...@@ -228,7 +228,7 @@ Then, the previous code should look like: ...@@ -228,7 +228,7 @@ Then, the previous code should look like:
for this component. You should reassign for this component. You should reassign
[% IF comp.bug_count &gt; 1 %] [% IF comp.bug_count > 1 %]
these [% terms.bugs %] these [% terms.bugs %]
[% ELSE %] [% ELSE %]
this [% terms.bug %] this [% terms.bug %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment