diff options
author | Werner Koch <wk@gnupg.org> | 2019-08-22 10:23:22 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2019-08-22 10:24:16 +0200 |
commit | b3226d91d045bceb045da8fe30e43a4d6db61453 (patch) | |
tree | 8af1cd24e186ea8d0f395e31a7f6eee0f4db70f3 /g10/card-util.c | |
parent | gpg: Factor export_ssh_key. (diff) | |
download | gnupg2-b3226d91d045bceb045da8fe30e43a4d6db61453.tar.xz gnupg2-b3226d91d045bceb045da8fe30e43a4d6db61453.zip |
gpg: Use modern spelling for the female salutation.
--
GnuPG-bug-id: 4682
Signed-off-by: Werner Koch <wk@gnupg.org>
Diffstat (limited to 'g10/card-util.c')
-rw-r--r-- | g10/card-util.c | 4 |
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); |