From 0dfc8969874e507d2b73659a0c797098025fd25d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arth=C3=BAr=20=C3=93lafsson?= Date: Tue, 19 Jul 2016 14:00:06 +0000 Subject: [PATCH] Fix a mixup between male and female last names in Icelandic. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Last names for females usually end in "dóttir", meaning "daughter". Last names for males usually end in "son". --- src/Faker/Provider/is_IS/Person.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Faker/Provider/is_IS/Person.php b/src/Faker/Provider/is_IS/Person.php index 1b4d564977..0fdea6833e 100644 --- a/src/Faker/Provider/is_IS/Person.php +++ b/src/Faker/Provider/is_IS/Person.php @@ -78,7 +78,7 @@ public function lastName() */ public function lastNameMale() { - return $this->lastName().'dóttir'; + return $this->lastName().'son'; } /** @@ -88,7 +88,7 @@ public function lastNameMale() */ public function lastNameFemale() { - return $this->lastName().'son'; + return $this->lastName().'dóttir'; } /**