diff options
| author | Werner Koch <[email protected]> | 2004-10-01 12:53:09 +0000 |
|---|---|---|
| committer | Werner Koch <[email protected]> | 2004-10-01 12:53:09 +0000 |
| commit | a90acadd51081fcb69460cb2222ed4be20e903d3 (patch) | |
| tree | 1a1dcb031fa5b8b3c100e6b8fba1b32b74afaf17 /tools/gpgconf.c | |
| parent | * gpgv.c (i18n_init): Always use LC_ALL. (diff) | |
| download | gnupg-a90acadd51081fcb69460cb2222ed4be20e903d3.tar.gz gnupg-a90acadd51081fcb69460cb2222ed4be20e903d3.zip | |
* gpgconf-comp.c (my_dgettext): Also switch codeset and directory
for the other used domains (i.e. dirmngr).
* gpgconf.c (main): Fixed translation markers.
Diffstat (limited to 'tools/gpgconf.c')
| -rw-r--r-- | tools/gpgconf.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/gpgconf.c b/tools/gpgconf.c index e3e1b9f1a..dd505e99d 100644 --- a/tools/gpgconf.c +++ b/tools/gpgconf.c @@ -172,8 +172,9 @@ main (int argc, char **argv) case aChangeOptions: if (!fname) { - fputs (N_("usage: gpgconf [options] "), stderr); - fputs (N_("Need one component argument"), stderr); + fputs (_("usage: gpgconf [options] "), stderr); + putc ('\n',stderr); + fputs (_("Need one component argument"), stderr); putc ('\n',stderr); exit (2); } @@ -182,7 +183,7 @@ main (int argc, char **argv) int idx = gc_component_find (fname); if (idx < 0) { - fputs (N_("Component not found"), stderr); + fputs (_("Component not found"), stderr); putc ('\n', stderr); exit (1); } |
