--- a/src/util.c Tue May 06 00:05:01 2003 +0000 +++ b/src/util.c Tue May 06 00:07:21 2003 +0000 @@ -714,7 +714,7 @@ { switch (mode) { case 0: /* full help text */ - printf("Gaim %s\n" + printf(_("Gaim %s\n" "Usage: %s [OPTION]...\n\n" " -a, --acct display account editor window\n" " -w, --away[=MESG] make away on signon (optional argument MESG specifies\n" @@ -726,10 +726,10 @@ " -f, --file=FILE use FILE as config\n" " -d, --debug print debugging messages to stdout\n" " -v, --version display the current version and exit\n" - " -h, --help display this help and exit\n", VERSION, name); + " -h, --help display this help and exit\n"), VERSION, name); break; case 1: /* short message */ - printf("Gaim %s. Try `%s -h' for more information.\n", VERSION, name); + printf(_("Gaim %s. Try `%s -h' for more information.\n"), VERSION, name); break; } }