From e1f2853af7c115dfb92ce17db7ea324a4f0fbe7c Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 10 Dec 2009 13:14:55 +0100 Subject: [PATCH] docs: add ngettext() into TODO file Signed-off-by: Karel Zak --- TODO | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/TODO b/TODO index bcedb9eb..cc3c0f9f 100644 --- a/TODO +++ b/TODO @@ -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) -- 2.39.5