aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2019-08-22 08:25:59 +0000
committerWerner Koch <[email protected]>2019-08-22 08:25:59 +0000
commitf812e09904ebc0c24a24574385eb7623a9a81967 (patch)
tree45ce775e959b12d3818e448d8d4f8aaf261048d2
parentscd:nks: Extend keypairinfo with usage flags. (diff)
downloadgnupg-f812e09904ebc0c24a24574385eb7623a9a81967.tar.gz
gnupg-f812e09904ebc0c24a24574385eb7623a9a81967.zip
gpg: Use modern spelling for the female salutation.
-- GnuPG-bug-id: 4682 Signed-off-by: Werner Koch <[email protected]>
-rw-r--r--g10/card-util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/card-util.c b/g10/card-util.c
index 7a27e4df2..c02811b5e 100644
--- a/g10/card-util.c
+++ b/g10/card-util.c
@@ -576,7 +576,7 @@ current_card_status (ctrl_t ctrl, estream_t fp,
print_name (fp, "Language prefs ...: ", info.disp_lang);
tty_fprintf (fp, "Salutation .......: %s\n",
info.disp_sex == 1? _("Mr."):
- info.disp_sex == 2? _("Mrs.") : "");
+ info.disp_sex == 2? _("Ms.") : "");
print_name (fp, "URL of public key : ", info.pubkey_url);
print_name (fp, "Login data .......: ", info.login_data);
if (info.private_do[0])
@@ -1157,7 +1157,7 @@ change_sex (void)
int rc;
data = cpr_get ("cardedit.change_sex",
- _("Salutation (M = Mr., F = Mrs., or space): "));
+ _("Salutation (M = Mr., F = Ms., or space): "));
if (!data)
return -1;
trim_spaces (data);