Kaydet (Commit) 683ece0e authored tarafından Baptiste Mispelon's avatar Baptiste Mispelon

Used full variable names instead of abbreviation in examples

Thanks to Andrew Ingram for the report.
üst 25b52d04
......@@ -1021,9 +1021,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``
~~~~~~~~~~~~~~~
......
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