aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <[email protected]>2019-08-21 17:43:08 +0000
committerDaniel Kahn Gillmor <[email protected]>2019-08-21 17:50:01 +0000
commitc4b9eba1d6a63b73238dcbb644b365dc53563f3d (patch)
tree41455fb0cde012aa2cfe588226c3da648a8f2cd1
parentgpg: In a list of card keys show the standard keys. (diff)
downloadgnupg-dkg-fix-T4682.tar.gz
gnupg-dkg-fix-T4682.zip
gpg: Adjust female-gendered salutation from Mrs. to Ms.dkg-fix-T4682
* g10/card-util.c (current_card_status): String changes. (change_sex): Description change. -- Since the 19th century, "Mrs." has an implication not only of female gender, but also of marital status (married, as opposed to unmarried, which is typically denoted as "Miss"). "Ms." is explicitly silent about marital status. See Wikipedia for background: https://en.wikipedia.org/wiki/Ms. Gnupg-Bug-Id: 4682 Signed-off-by: Daniel Kahn Gillmor <[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 fbb941915..78699914f 100644
--- a/g10/card-util.c
+++ b/g10/card-util.c
@@ -587,7 +587,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])
@@ -1177,7 +1177,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);