Commit d5fb31da authored by Baptiste Mispelon's avatar Baptiste Mispelon
Browse files

[1.8.x] Used full variable names instead of abbreviation in examples

Thanks to Andrew Ingram for the report.
Backport of 683ece0e from master.
parent ec23572f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1001,9 +1001,9 @@ interface within your Python code::
The ``ngettext`` function provides an interface to pluralize words and
phrases::

    var object_cnt = 1 // or 0, or 2, or 3, ...
    var object_count = 1 // or 0, or 2, or 3, ...
    s = ngettext('literal for the singular case',
            'literal for the plural case', object_cnt);
            'literal for the plural case', object_count);

``interpolate``
~~~~~~~~~~~~~~~