Note: This bug is displayed in read-only format because the product is no longer active in Red Hat Bugzilla.

Bug 106195

Summary: Please use ngettext for handling plurals in redhat-config-packages
Product: [Retired] Red Hat Linux Beta Reporter: Christian Rose <menthos>
Component: redhat-config-packagesAssignee: Jeremy Katz <katzj>
Status: CLOSED DEFERRED QA Contact: David Lawrence <dkl>
Severity: medium Docs Contact:
Priority: medium    
Version: beta2   
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
URL: http://developer.gnome.org/doc/tutorials/gnome-i18n/developer.html#plurals
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2003-10-20 21:55:26 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 106150    

Description Christian Rose 2003-10-03 15:40:31 UTC
#: src/InstallDruid.py:265
#, python-format
msgid "%d package is queued for installation\n"

#: src/InstallDruid.py:267 src/InstallProgressDialog.py:169
#, python-format
msgid "%d packages are queued for installation\n"

#: src/InstallDruid.py:269
#, python-format
msgid "%d package is queued for removal\n"

#: src/InstallDruid.py:271 src/InstallProgressDialog.py:171
#, python-format
msgid "%d packages are queued for removal\n"

#: src/size_string.py:7
msgid " Byte"

#: src/size_string.py:9
msgid " Bytes"

#: src/InstallProgressDialog.glade.h:4
#, no-c-format
msgid ""
"<span  weight=\"bold\" size=\"larger\">Completed system preparation</span>\n"
"\n"
"%d packages are queued for installation\n"
"%d packages are queued for removal\n"
"\n"
"This will take %s of diskspace."


As mentioned in
http://developer.gnome.org/doc/tutorials/gnome-i18n/developer.html#plurals,
this way of handling plurals is broken for many locales. A way to solve
this is by using ngettext instead as mentioned in that document.
A simple code example of code using ngettext:

  g_printf (ngettext ("Found %d file.", "Found %d files.", nbr_of_files),
nbr_of_files);

Something similar should work in Python too.

Comment 1 Jeremy Katz 2003-10-20 21:55:26 UTC
python 2.2 doesn't support ngettext.  2.3 does so will revisit then.