diff options
Diffstat (limited to 'agent')
-rw-r--r-- | agent/gpg-agent.c | 7 | ||||
-rw-r--r-- | agent/preset-passphrase.c | 4 | ||||
-rw-r--r-- | agent/protect-tool.c | 4 |
3 files changed, 9 insertions, 6 deletions
diff --git a/agent/gpg-agent.c b/agent/gpg-agent.c index 31d79d508..2e8156721 100644 --- a/agent/gpg-agent.c +++ b/agent/gpg-agent.c @@ -326,8 +326,11 @@ my_strusage (int level) break; case 13: p = VERSION; break; case 17: p = PRINTABLE_OS_NAME; break; - case 19: p = _("Please report bugs to <" PACKAGE_BUGREPORT ">.\n"); - break; + /* TRANSLATORS: @EMAIL@ will get replaced by the actual bug + reporting address. This is so that we can change the + reporting address without breaking the translations. */ + case 19: p = _("Please report bugs to <@EMAIL@>.\n"); break; + case 20: if (!ver_gcry) ver_gcry = make_libversion ("libgcrypt", gcry_check_version); diff --git a/agent/preset-passphrase.c b/agent/preset-passphrase.c index 77646d87e..8e3b3e2c5 100644 --- a/agent/preset-passphrase.c +++ b/agent/preset-passphrase.c @@ -91,8 +91,8 @@ my_strusage (int level) break; case 13: p = VERSION; break; case 17: p = PRINTABLE_OS_NAME; break; - case 19: p = _("Please report bugs to <" PACKAGE_BUGREPORT ">.\n"); - break; + case 19: p = _("Please report bugs to <@EMAIL@>.\n"); break; + case 1: case 40: p = _("Usage: gpg-preset-passphrase [options] KEYGRIP (-h for help)\n"); diff --git a/agent/protect-tool.c b/agent/protect-tool.c index 27f4f9d0a..78234d22d 100644 --- a/agent/protect-tool.c +++ b/agent/protect-tool.c @@ -157,8 +157,8 @@ my_strusage (int level) break; case 13: p = VERSION; break; case 17: p = PRINTABLE_OS_NAME; break; - case 19: p = _("Please report bugs to <" PACKAGE_BUGREPORT ">.\n"); - break; + case 19: p = _("Please report bugs to <@EMAIL@>.\n"); break; + case 1: case 40: p = _("Usage: gpg-protect-tool [options] (-h for help)\n"); break; |