-
-
Notifications
You must be signed in to change notification settings - Fork 1k
fix(person): Improvements to Dutch name generation, in particular regarding affixes #1778
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
79931b0
(#1777) Dutch name generation: simplify treatment of tussenvoegsel
amarillion c966380
Add a few typical Dutch academic prefixes
amarillion 52c307c
Roman numerals are extremely uncommon in Dutch names
amarillion e6d0299
Sort list of names (review)
amarillion ff4dee0
Add extra sources for names
amarillion 5bae2cb
Modified the list of names so it's not exactly the same as the source…
amarillion cb94028
Fix sorting
amarillion 915b439
Merge branch 'next' into 1777-dutch-names
aa41222
Merge branch 'next' into 1777-dutch-names
ST-DDT File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| export default ['Dhr.', 'Mevr. Dr.', 'Bsc', 'Msc', 'Prof.']; | ||
| export default ['Dhr.', 'Mevr. Dr.', 'Bsc', 'Msc', 'Prof.', 'Ir.', 'Drs.']; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,52 +1,121 @@ | ||
| // Top 100 most common dutch last names in 2007 (including spelling variants) | ||
| // Source: https://nl.wikipedia.org/wiki/Lijst_van_meest_voorkomende_achternamen_van_Nederland | ||
| export default [ | ||
| 'Bakker', | ||
| 'Beek', | ||
| 'Berg', | ||
| 'Boer', | ||
| 'Bos', | ||
| 'Bosch', | ||
| 'Brink', | ||
| 'Broek', | ||
| 'Brouwer', | ||
| 'Bruin', | ||
| 'Dam', | ||
| 'Dekker', | ||
| 'Dijk', | ||
| 'Dijkstra', | ||
| 'Graaf', | ||
| 'Groot', | ||
| 'Haan', | ||
| 'Hendriks', | ||
| 'Heuvel', | ||
| 'Hoek', | ||
| 'Jacobs', | ||
| 'de Jong', | ||
| 'Jansen', | ||
| 'de Vries', | ||
| 'van den Berg', | ||
| 'van de Berg', | ||
| 'van der Berg', | ||
| 'van Dijk', | ||
| 'Bakker', | ||
| 'Janssen', | ||
| 'Jong', | ||
| 'Klein', | ||
| 'Kok', | ||
| 'Koning', | ||
| 'Koster', | ||
| 'Leeuwen', | ||
| 'Linden', | ||
| 'Maas', | ||
| 'Meer', | ||
| 'Visser', | ||
| 'Smit', | ||
| 'Meijer', | ||
| 'Meyer', | ||
| 'de Boer', | ||
| 'Mulder', | ||
| 'de Groot', | ||
| 'Bos', | ||
| 'Vos', | ||
| 'Peters', | ||
| 'Ruiter', | ||
| 'Schouten', | ||
| 'Smit', | ||
| 'Hendriks', | ||
| 'van Leeuwen', | ||
| 'Dekker', | ||
| 'Brouwer', | ||
| 'de Wit', | ||
| 'Dijkstra', | ||
| 'Smits', | ||
| 'Stichting', | ||
| 'Veen', | ||
| 'Ven', | ||
| 'de Graaf', | ||
| 'van der Meer', | ||
| 'van de Meer', | ||
| 'van der Linden', | ||
| 'Kok', | ||
| 'Jacobs', | ||
| 'de Haan', | ||
| 'Vermeulen', | ||
| 'Visser', | ||
| 'Vliet', | ||
| 'Vos', | ||
| 'Vries', | ||
| 'Wal', | ||
| 'van den Heuvel', | ||
| 'van der Veen', | ||
| 'van de Veen', | ||
| 'van den Broek', | ||
| 'de Bruijn', | ||
| 'de Bruyn', | ||
| 'de Bruin', | ||
| 'van der Heijden', | ||
| 'van der Heyden', | ||
| 'Schouten', | ||
| 'van Beek', | ||
| 'Willems', | ||
| 'Wit', | ||
| 'van Vliet', | ||
| 'van de Ven', | ||
| 'van der Ven', | ||
| 'Hoekstra', | ||
| 'Maas', | ||
| 'Verhoeven', | ||
| 'Koster', | ||
| 'van Dam', | ||
| 'van der Wal', | ||
| 'van de Wal', | ||
| 'Prins', | ||
| 'Blom', | ||
| 'Huisman', | ||
| 'Peeters', | ||
| 'de Jonge', | ||
| 'Kuipers', | ||
| 'van Veen', | ||
| 'Post', | ||
| 'Kuiper', | ||
| 'Veenstra', | ||
| 'Kramer', | ||
| 'van den Brink', | ||
| 'van de Brink', | ||
| 'Scholten', | ||
| 'van Wijk', | ||
| 'Postma', | ||
| 'Martens', | ||
| 'Vink', | ||
| 'de Ruiter', | ||
| 'Timmermans', | ||
| 'Groen', | ||
| 'Gerritsen', | ||
| 'Jonker', | ||
| 'van Loon', | ||
| 'Boer', | ||
| 'van der Velde', | ||
| 'van den Velde', | ||
| 'van de Velde', | ||
| 'Willemsen', | ||
| 'Smeets', | ||
| 'de Lange', | ||
| 'de Vos', | ||
| 'Bosch', | ||
| 'van Dongen', | ||
| 'Schipper', | ||
| 'de Koning', | ||
| 'van der Laan', | ||
| 'Koning', | ||
| 'van der Velden', | ||
| 'van de Velden', | ||
| 'van den Velden', | ||
| 'Driessen', | ||
| 'van Doorn', | ||
| 'Hermans', | ||
| 'Evers', | ||
| 'van den Bosch', | ||
| 'van der Meulen', | ||
| 'Hofman', | ||
| 'Bosman', | ||
| 'Wolters', | ||
| 'Sanders', | ||
| 'van der Horst', | ||
| 'Mol', | ||
| 'Kuijpers', | ||
| 'Kuypers', | ||
| 'Molenaar', | ||
| 'van de Pol', | ||
| 'van den Pol', | ||
| 'van der Pol', | ||
| 'de Leeuw', | ||
| 'Verbeek', | ||
| ]; | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| export default ['Dhr.', 'Bsc', 'Msc', 'Prof.']; | ||
| export default ['Dhr.', 'Bsc', 'Msc', 'Prof.', 'Ir.', 'Drs.']; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| export default ['Jr.', 'Sr.', 'I', 'II', 'III', 'IV', 'V']; | ||
| export default ['Jr.', 'Sr.']; |
This file was deleted.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.