From 91098aaeb62ac2b2905660fe93824ae30a0195cf Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Tue, 28 Jul 2026 15:15:37 +1200 Subject: [PATCH] Update salutations This aligns the English salutations with the ones in the fork after https://github.com/iliaal/nameparser/pull/3 is merged to the fork --- src/Language/English.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/Language/English.php b/src/Language/English.php index d2b8893..f415730 100644 --- a/src/Language/English.php +++ b/src/Language/English.php @@ -55,23 +55,33 @@ class English implements LanguageInterface ]; public const SALUTATIONS = [ + 'dame' => 'Dame', + 'dhr' => 'Dhr.', 'dr' => 'Dr.', 'fr' => 'Fr.', 'hon' => 'Hon.', 'honorable' => 'Hon.', 'the honorable' => 'Hon.', + 'rt hon' => 'Rt Hon.', + 'lady' => 'Lady', + 'lord' => 'Lord', 'madam' => 'Madam', 'master' => 'Mr.', + 'mevr' => 'Mevr.', 'miss' => 'Miss', 'missus' => 'Mrs.', 'mister' => 'Mr.', 'mr' => 'Mr.', 'mrs' => 'Mrs.', 'ms' => 'Ms.', + 'mw' => 'Mevr.', 'mx' => 'Mx.', 'rev' => 'Rev.', + 'reverend' => 'Rev.', 'sir' => 'Sir', + 'pastor' => 'Pr.', 'prof' => 'Prof.', + 'professor' => 'Prof.', 'his honour' => 'His Honour', 'her honour' => 'Her Honour', ];