diff options
author | Bruno Haible <bruno@clisp.org> | 2006-04-03 11:34:43 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:13:06 +0200 |
commit | e7a1c186677ebdb9c20de3a90f79b2b1be276ae5 (patch) | |
tree | a8074eabe5a69503d441866716292802a689ddc8 /gettext-tools/src/msgexec.c | |
parent | 16bde7d00ca46de35d98c79ab9991a889abc96b9 (diff) | |
download | external_gettext-e7a1c186677ebdb9c20de3a90f79b2b1be276ae5.zip external_gettext-e7a1c186677ebdb9c20de3a90f79b2b1be276ae5.tar.gz external_gettext-e7a1c186677ebdb9c20de3a90f79b2b1be276ae5.tar.bz2 |
Internationalization of author names.
Diffstat (limited to 'gettext-tools/src/msgexec.c')
-rw-r--r-- | gettext-tools/src/msgexec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gettext-tools/src/msgexec.c b/gettext-tools/src/msgexec.c index 051650a..7f09506 100644 --- a/gettext-tools/src/msgexec.c +++ b/gettext-tools/src/msgexec.c @@ -51,6 +51,7 @@ #include "pipe.h" #include "wait-process.h" #include "xsetenv.h" +#include "propername.h" #include "gettext.h" #define _(str) gettext (str) @@ -180,7 +181,7 @@ This is free software; see the source for copying conditions. There is NO\n\ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\ "), "2001-2006"); - printf (_("Written by %s.\n"), "Bruno Haible"); + printf (_("Written by %s.\n"), proper_name ("Bruno Haible")); exit (EXIT_SUCCESS); } |