GNOME Bugzilla – Bug 314764
Use gettext's plural feature
Last modified: 2005-09-01 16:36:20 UTC
Version details: Gnome HEAD 1. I strongly suggest using gettext's plural capabilities for strings like these: #: ../libgimp/gimpprocbrowserdialog.c:457 msgid "1 procedure matches your query" #: ../libgimp/gimpprocbrowserdialog.c:460 #, c-format msgid "%d procedures match your query" because then, the plurals header for each language will ensure the translator has the appropriate number of field to fill in. In my case, there are zero plurals fields, in some European languages, there are several. Please see the gettext manual, especially this node on plural forms: http://www.gnu.org/software/gettext/manual/html_mono/gettext.html#SEC150 from Clytie, Vietnamese translator
If you could provide a patch, that would it make it more likely that we would do such a change.
I have done this change now. If you find other places that need a similar change, please let us know. 2005-09-01 Sven Neumann <sven@gimp.org> * app/dialogs/quit-dialog.c * libgimp/gimpprocbrowserdialog.c: use ngettext() for plural forms (bug #314764).