diff options
author | Werner Koch <[email protected]> | 2021-02-18 13:43:25 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2021-02-18 13:43:43 +0000 |
commit | 0be4861762c21ebfb4c2e28bb9a3e5cfbc08e1a9 (patch) | |
tree | d4d128349fb37e14337a2e10657e626e65a74f19 /agent/call-pinentry.c | |
parent | po: Update all po files from 2.2.27 (diff) | |
download | gnupg-0be4861762c21ebfb4c2e28bb9a3e5cfbc08e1a9.tar.gz gnupg-0be4861762c21ebfb4c2e28bb9a3e5cfbc08e1a9.zip |
po: Change translatability of a fallback string.
* agent/call-pinentry.c (setup_genpin): Do not make the fallback
translatable.
Diffstat (limited to 'agent/call-pinentry.c')
-rw-r--r-- | agent/call-pinentry.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/agent/call-pinentry.c b/agent/call-pinentry.c index 5afe0f8bf..dd60c2e4c 100644 --- a/agent/call-pinentry.c +++ b/agent/call-pinentry.c @@ -965,7 +965,7 @@ setup_genpin (ctrl_t ctrl) non-translated string. */ tooltip = L_("pinentry.genpin.tooltip"); if (!strcmp ("pinentry.genpin.tooltip", tooltip)) - tooltip = L_("Suggest a random passphrase."); + tooltip = "Suggest a random passphrase."; } tmpstr = try_percent_escape (tooltip, "\t\r\n\f\v"); xfree (tmpstr2); @@ -1018,9 +1018,9 @@ setup_qualitybar (ctrl_t ctrl) will be used. */ tooltip = L_("pinentry.qualitybar.tooltip"); if (!strcmp ("pinentry.qualitybar.tooltip", tooltip)) - tooltip = L_("The quality of the text entered above.\n" - "Please ask your administrator for " - "details about the criteria."); + tooltip = ("The quality of the text entered above.\n" + "Please ask your administrator for " + "details about the criteria."); } tmpstr = try_percent_escape (tooltip, "\t\r\n\f\v"); xfree (tmpstr2); |