diff options
author | Werner Koch <wk@gnupg.org> | 2004-10-01 18:51:18 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2004-10-01 18:51:18 +0200 |
commit | 545ddc6f3d7d79e48bd72f10efefe18b7585865b (patch) | |
tree | 036e681d54fc9fb8c8be9cb3724aa20b481b3103 | |
parent | post release preparations (diff) | |
download | gnupg2-545ddc6f3d7d79e48bd72f10efefe18b7585865b.tar.xz gnupg2-545ddc6f3d7d79e48bd72f10efefe18b7585865b.zip |
Made all strings for --log-file read the same.
-rw-r--r-- | tools/ChangeLog | 4 | ||||
-rw-r--r-- | tools/gpgconf-comp.c | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/tools/ChangeLog b/tools/ChangeLog index c18562f01..ccfd39293 100644 --- a/tools/ChangeLog +++ b/tools/ChangeLog @@ -1,5 +1,9 @@ 2004-10-01 Werner Koch <wk@g10code.com> + * gpgconf-comp.c: Made all strings for --log-file read the same. + +2004-10-01 Werner Koch <wk@g10code.com> + * gpgconf-comp.c (my_dgettext): Also switch codeset and directory for the other used domains (i.e. dirmngr). diff --git a/tools/gpgconf-comp.c b/tools/gpgconf-comp.c index e69b177e4..67623ccfd 100644 --- a/tools/gpgconf-comp.c +++ b/tools/gpgconf-comp.c @@ -534,7 +534,7 @@ static gc_option_t gc_options_scdaemon[] = "gnupg", "|LEVEL|set the debugging level to LEVEL", GC_ARG_TYPE_STRING, GC_BACKEND_SCDAEMON }, { "log-file", GC_OPT_FLAG_NONE, GC_LEVEL_ADVANCED, - "gnupg", "|FILE|write logs to FILE", + "gnupg", N_("|FILE|write server mode logs to FILE"), GC_ARG_TYPE_PATHNAME, GC_BACKEND_SCDAEMON }, { "Security", @@ -583,7 +583,7 @@ static gc_option_t gc_options_gpg[] = "gnupg", "|LEVEL|set the debugging level to LEVEL", GC_ARG_TYPE_STRING, GC_BACKEND_GPG }, { "log-file", GC_OPT_FLAG_NONE, GC_LEVEL_ADVANCED, - "gnupg", "|FILE|write logs to FILE", + "gnupg", N_("|FILE|write server mode logs to FILE"), GC_ARG_TYPE_PATHNAME, GC_BACKEND_GPG }, /* { "faked-system-time", GC_OPT_FLAG_NONE, GC_LEVEL_INVISIBLE, */ /* NULL, NULL, */ @@ -636,7 +636,7 @@ static gc_option_t gc_options_gpgsm[] = "gnupg", "|LEVEL|set the debugging level to LEVEL", GC_ARG_TYPE_STRING, GC_BACKEND_GPGSM }, { "log-file", GC_OPT_FLAG_NONE, GC_LEVEL_ADVANCED, - "gnupg", "|FILE|write logs to FILE", + "gnupg", N_("|FILE|write server mode logs to FILE"), GC_ARG_TYPE_PATHNAME, GC_BACKEND_GPGSM }, { "faked-system-time", GC_OPT_FLAG_NONE, GC_LEVEL_INVISIBLE, NULL, NULL, @@ -712,7 +712,7 @@ static gc_option_t gc_options_dirmngr[] = "dirmngr", "do not detach from the console", GC_ARG_TYPE_NONE, GC_BACKEND_DIRMNGR }, { "log-file", GC_OPT_FLAG_NONE, GC_LEVEL_ADVANCED, - "dirmngr", "|FILE|write logs to FILE", + "dirmngr", N_("|FILE|write server mode logs to FILE"), GC_ARG_TYPE_PATHNAME, GC_BACKEND_DIRMNGR }, { "debug-wait", GC_OPT_FLAG_NONE, GC_LEVEL_INVISIBLE, NULL, NULL, |