]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1226865 - more fixes to Localiser's Guide (replace wrongly HTML-encoded >)
authorGervase Markham <gerv@gerv.net>
Sat, 23 Jul 2016 14:00:46 +0000 (15:00 +0100)
committerGervase Markham <gerv@mozilla.org>
Sat, 23 Jul 2016 14:00:46 +0000 (15:00 +0100)
docs/en/rst/localizing/caveats.rst

index 3275562b954197f5106cd4ff3a5b0ad9f2bd6139..b08dc4f4729869bd71b78063145b23c8255e6d5f 100644 (file)
@@ -54,7 +54,7 @@ lines of template code:
             <li>
               The account has been added to the
               [% groups_added_to.join(', ') FILTER html %]
-              group[% 's' IF groups_added_to.size &gt; 1 %].
+              group[% 's' IF groups_added_to.size > 1 %].
             </li>
           [% END %]
 
@@ -73,7 +73,7 @@ Again, insert a "+" sign:
             &lt;li&gt;
               The account has been added to the
               [%<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;
           [% END %]
   </pre>
@@ -101,7 +101,7 @@ would give for instance the following:
           [% IF groups_added_to.size %]
             <li>
               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 %].
             </li>
           [% END %]
@@ -165,7 +165,7 @@ Let's say we have the following:
     <p>
       Sorry, there
 
-      [% IF comp.bug_count &gt; 1 %]
+      [% IF comp.bug_count > 1 %]
         are [% comp.bug_count %] [%+ terms.bugs %]
       [% ELSE %]
          is [% comp.bug_count %] [%+ terms.bug %]
@@ -173,7 +173,7 @@ Let's say we have the following:
 
       pending for this component. You should reassign
 
-      [% IF comp.bug_count &gt; 1 %]
+      [% IF comp.bug_count > 1 %]
          these [% terms.bugs %]
       [% ELSE %]
          this [% terms.bug %]
@@ -228,7 +228,7 @@ Then, the previous code should look like:
 
       for this component. You should reassign
 
-      [% IF comp.bug_count &gt; 1 %]
+      [% IF comp.bug_count > 1 %]
          these [% terms.bugs %]
       [% ELSE %]
          this [% terms.bug %]