From 17dcc7a899b8872b931b8a64b8a78e6450fbf527 Mon Sep 17 00:00:00 2001 From: frosch Date: Sat, 14 Jul 2012 14:21:25 +0000 Subject: (svn r24400) -Add: Plural 'names' to the output of strgen -export-plurals. --- src/strgen/strgen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/strgen/strgen.cpp') diff --git a/src/strgen/strgen.cpp b/src/strgen/strgen.cpp index a905a599b..84e791677 100644 --- a/src/strgen/strgen.cpp +++ b/src/strgen/strgen.cpp @@ -463,9 +463,9 @@ int CDECL main(int argc, char *argv[]) return 0; case 'L': - printf("count\tdescription\n"); + printf("count\tdescription\tnames\n"); for (const PluralForm *pf = _plural_forms; pf < endof(_plural_forms); pf++) { - printf("%i\t\"%s\"\n", pf->plural_count, pf->description); + printf("%i\t\"%s\"\t%s\n", pf->plural_count, pf->description, pf->names); } return 0; -- cgit v1.2.3-54-g00ecf