Skip to content
This repository has been archived by the owner on Dec 11, 2020. It is now read-only.

Commit

Permalink
Improve german titles
Browse files Browse the repository at this point in the history
Always include "Herr" or "Frau" in the title (formal salutation always includes the gender in German)
  • Loading branch information
chrisschaetzlein committed Apr 27, 2016
1 parent ccef654 commit 765e46e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Faker/Provider/de_DE/Person.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ class Person extends \Faker\Provider\Person
'Zander', 'Zeller', 'Ziegler', 'Zimmer', 'Zimmermann',
);

protected static $titleMale = array('Herr', 'Dr.', 'Ing.', 'Dipl.-Ing.', 'Prof.', 'Univ.Prof.');
protected static $titleFemale = array('Frau', 'Dr.', 'Ing.', 'Dipl.-Ing.', 'Prof.', 'Univ.Prof.');
protected static $titleMale = array('Herr', 'Herr Dr.', 'Herr Prof.', 'Herr Prof. Dr.');
protected static $titleFemale = array('Frau', 'Frau Dr.', 'Frau Prof.', 'Frau Prof. Dr.');

protected static $suffix = array('B.Sc.', 'B.A.', 'B.Eng.', 'MBA.');

Expand Down

0 comments on commit 765e46e

Please sign in to comment.