docs: add ngettext() into TODO file

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2009-12-10 13:14:55 +01:00
parent 04c944419d
commit e1f2853af7
1 changed files with 9 additions and 0 deletions

9
TODO
View File

@ -45,6 +45,15 @@ fdisk(s)
misc
----
* use ngettext() for strings with plurals, for example
/* include/nls.h */
#define P_(id, id_plural, n) ngettext(id, id_plural, n)
printf(P_("%d used sector",
"%d used sectors", sectors),
sectors);
* check for program_invocation_short_name in ./configure.ac and add
lib/progname.c fallback for libc without this feature (for example
use the 1st field from /proc/#/cmdline)