diff options
Diffstat (limited to 'gettext-runtime/src/ngettext.c')
-rw-r--r-- | gettext-runtime/src/ngettext.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gettext-runtime/src/ngettext.c b/gettext-runtime/src/ngettext.c index ee81ddb..be021c9 100644 --- a/gettext-runtime/src/ngettext.c +++ b/gettext-runtime/src/ngettext.c @@ -1,5 +1,5 @@ /* ngettext - retrieve plural form string from message catalog and print it. - Copyright (C) 1995-1997, 2000-2005 Free Software Foundation, Inc. + Copyright (C) 1995-1997, 2000-2006 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -34,7 +34,7 @@ #include "basename.h" #include "xalloc.h" #include "exit.h" - +#include "propername.h" #include "gettext.h" #define _(str) gettext (str) @@ -126,8 +126,8 @@ main (int argc, char *argv[]) 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\ "), - "1995-1997, 2000-2005"); - printf (_("Written by %s.\n"), "Ulrich Drepper"); + "1995-1997, 2000-2006"); + printf (_("Written by %s.\n"), proper_name ("Ulrich Drepper")); exit (EXIT_SUCCESS); } |