-
-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
182 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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 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 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
121 changes: 121 additions & 0 deletions
121
src/modules/person/data/azerbaijan/AzerbaijaniFirstNames.h
This file contains 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 |
---|---|---|
@@ -0,0 +1,121 @@ | ||
#pragma once | ||
|
||
#include <string> | ||
#include <vector> | ||
|
||
namespace faker | ||
{ | ||
const std::vector<std::string> azerbaijaniMalesFirstNames = { | ||
"Anar", | ||
"Amid", | ||
"Afəl", | ||
"Abbas", | ||
"Abdulla", | ||
"Adil", | ||
"Akif", | ||
"Aqil", | ||
"Bəhram", | ||
"Nurlan", | ||
"Rafiq", | ||
"Tərlan", | ||
"Zaur", | ||
"Emin", | ||
"Emil", | ||
"Kamran", | ||
"Elnur", | ||
"Natiq", | ||
"Rəşad", | ||
"Rəşid", | ||
"Tahir", | ||
"Əhməd", | ||
"Zahir", | ||
"İlham", | ||
"İlqar", | ||
"Nahid", | ||
"Nihad", | ||
"Faiq", | ||
"İxtiyar", | ||
"Şəhriyar", | ||
"Şaiq", | ||
"Bəxtiyar", | ||
"Bəhruz", | ||
"Tunar", | ||
"Nadir", | ||
}; | ||
|
||
const std::vector<std::string> azerbaijaniFemalesFirstNames = { | ||
"Anna", | ||
"Adeliya", | ||
"Afaq", | ||
"Afət", | ||
"Afərim", | ||
"Aidə", | ||
"Aygün", | ||
"Aynur", | ||
"Alsu", | ||
"Ayan", | ||
"Aytən", | ||
"Aygül", | ||
"Aydan", | ||
"Aylin", | ||
"Bahar", | ||
"Banu", | ||
"Bəyaz", | ||
"Billurə", | ||
"Cansu", | ||
"Ceyla", | ||
"Damla", | ||
"Dəniz", | ||
"Diana", | ||
"Dilarə", | ||
"Ella", | ||
"Elza", | ||
"Elyanora", | ||
"Ellada", | ||
"Elvira", | ||
"Elnarə", | ||
"Esmira", | ||
"Estella", | ||
"Fatimə", | ||
"Fəxriyyə", | ||
"Fərəh", | ||
"Fərqanə", | ||
"Fidan", | ||
"Firuzə", | ||
"Gövhər", | ||
"Günay", | ||
"Gülay", | ||
"Gülçin", | ||
"Gülər", | ||
"Gülsüm", | ||
"Humay", | ||
"Hüriyə", | ||
"Hülya", | ||
"Jalə", | ||
"Jasmin", | ||
"Kübra", | ||
"Ləman", | ||
"Lamiyə", | ||
"Lalə", | ||
"Liliya", | ||
"Laura", | ||
"Leyla", | ||
"Maya", | ||
"Mehriban", | ||
"Mələk", | ||
"Nuray", | ||
"Nurgün", | ||
"Nərgiz", | ||
"Nigar", | ||
"Ofelya", | ||
"Pəri", | ||
"Röya", | ||
"Səbinə", | ||
"Selcan", | ||
"Tansu", | ||
"Tuba", | ||
"Ülviyyə", | ||
"Ulduz", | ||
"Ülkər", | ||
}; | ||
} |
This file contains 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#pragma once | ||
|
||
#include <string> | ||
#include <vector> | ||
|
||
namespace faker | ||
{ | ||
const std::vector<std::string> azerbaijaniMalesLastNames = { | ||
"Əhmədov", | ||
"Ələkbərov", | ||
"Əliyev", | ||
"Vəliyev", | ||
"Soltanov", | ||
"Quliyev", | ||
"Məmmədov", | ||
"Xəlilov", | ||
"Nəzərov", | ||
"Rəhimov", | ||
}; | ||
|
||
const std::vector<std::string> azerbaijaniFemalesLastNames = { | ||
"Qasımova", | ||
"Əfəndiyeva", | ||
"Soltanova", | ||
"Abdullayeva", | ||
"Rəşidova", | ||
"Ələkbərova", | ||
"Əliyeva", | ||
"Tahirova", | ||
"Seyidova", | ||
"Vəsiyeva", | ||
}; | ||
} |
20 changes: 20 additions & 0 deletions
20
src/modules/person/data/azerbaijan/AzerbaijaniPeopleNames.h
This file contains 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#pragma once | ||
|
||
#include "../NameFormats.h" | ||
#include "../PeopleNames.h" | ||
#include "AzerbaijaniFirstNames.h" | ||
#include "AzerbaijaniLastNames.h" | ||
|
||
namespace faker | ||
{ | ||
const NameFormats azerbaijaniPersonNameFormats{{ | ||
{"{lastName} {firstName}", 1}, | ||
{"{firstName} {lastName}", 1}, | ||
}}; | ||
|
||
const PeopleNames azerbaijaniPeopleNames{ | ||
{azerbaijaniMalesFirstNames, {}, azerbaijaniMalesLastNames, {}, {}}, | ||
{azerbaijaniFemalesFirstNames, {}, azerbaijaniFemalesLastNames, {}, {}}, | ||
azerbaijaniPersonNameFormats}; | ||
|
||
} |