diff options
author | Werner Koch <wk@gnupg.org> | 1998-01-26 23:09:01 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1998-01-26 23:09:01 +0100 |
commit | b113394658bbaa292ca8f6e9c1c4382e2f4235cd (patch) | |
tree | 4ad41d5d7954c81676ae79d38679601b43273ec6 /util/argparse.c | |
parent | rel 0.2.0 (diff) | |
download | gnupg2-b113394658bbaa292ca8f6e9c1c4382e2f4235cd.tar.xz gnupg2-b113394658bbaa292ca8f6e9c1c4382e2f4235cd.zip |
added initial i18n stuff
Diffstat (limited to 'util/argparse.c')
-rw-r--r-- | util/argparse.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util/argparse.c b/util/argparse.c index 89c873ce0..09c820a72 100644 --- a/util/argparse.c +++ b/util/argparse.c @@ -27,6 +27,7 @@ #include <string.h> #include "util.h" +#include "i18n.h" /********************************* @@ -544,7 +545,7 @@ show_help( ARGPARSE_OPTS *opts, unsigned flags ) indent += 10; puts("Options:"); for(i=0; opts[i].short_opt; i++ ) { - s = opts[i].description; + s = _(opts[i].description); if( s && *s== '\r' ) /* hide this line */ continue; if( opts[i].short_opt < 256 ) |