-
-
Notifications
You must be signed in to change notification settings - Fork 151
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
1 parent
d9264f7
commit c5c59e7
Showing
8 changed files
with
103 additions
and
9 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
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,34 @@ | ||
#pragma once | ||
|
||
#include <string> | ||
#include <vector> | ||
|
||
namespace faker | ||
{ | ||
const std::vector<std::string> brazilianMalesFirstNames = { | ||
"Alessandro", "Alexandre", "Anthony", "Antônio", "Arthur", "Benjamin", "Benício", "Bernardo", | ||
"Breno", "Bryan", "Caio", "Calebe", "Carlos", "Cauã", "César", "Daniel", | ||
"Danilo", "Davi", "Davi Lucca", "Deneval", "Eduardo", "Elísio", "Emanuel", "Enzo", | ||
"Enzo Gabriel", "Fabiano", "Fabrício", "Feliciano", "Felipe", "Frederico", "Fábio", "Félix", | ||
"Gabriel", "Gael", "Guilherme", "Gustavo", "Gúbio", "Heitor", "Henrique", "Hugo", | ||
"Hélio", "Isaac", "Joaquim", "João", "João Lucas", "João Miguel", "João Pedro", "Júlio", | ||
"Júlio César", "Kléber", "Ladislau", "Leonardo", "Lorenzo", "Lucas", "Lucca", "Marcelo", | ||
"Marcos", "Matheus", "Miguel", "Murilo", "Nataniel", "Nicolas", "Noah", "Norberto", | ||
"Pablo", "Paulo", "Pedro", "Pedro Henrique", "Pietro", "Rafael", "Raul", "Ricardo", | ||
"Roberto", "Salvador", "Samuel", "Silas", "Sirineu", "Tertuliano", "Théo", "Vicente", | ||
"Vitor", "Víctor", "Warley", "Washington", "Yago", "Yango", "Yuri", "Ígor"}; | ||
|
||
const std::vector<std::string> brazilianFemalesFirstNames = { | ||
"Alessandra", "Alice", "Aline", "Alícia", "Ana Clara", "Ana Júlia", "Ana Laura", | ||
"Ana Luiza", "Antonella", "Beatriz", "Bruna", "Carla", "Cecília", "Clara", | ||
"Célia", "Dalila", "Eduarda", "Elisa", "Eloá", "Emanuelly", "Esther", | ||
"Fabrícia", "Felícia", "Giovanna", "Helena", "Heloísa", "Isabel", "Isabela", | ||
"Isabella", "Isabelly", "Isis", "Janaína", "Joana", "Júlia", "Karla", | ||
"Lara", "Larissa", "Laura", "Lavínia", "Liz", "Lorena", "Lorraine", | ||
"Luiza", "Lívia", "Maitê", "Manuela", "Marcela", "Margarida", "Maria", | ||
"Maria Alice", "Maria Cecília", "Maria Clara", "Maria Eduarda", "Maria Helena", "Maria Júlia", "Maria Luiza", | ||
"Mariana", "Marina", "Marli", "Meire", "Melissa", "Morgana", "Márcia", | ||
"Mércia", "Natália", "Núbia", "Ofélia", "Paula", "Rafaela", "Rebeca", | ||
"Roberta", "Sara", "Sarah", "Sophia", "Suélen", "Sílvia", "Talita", | ||
"Valentina", "Vitória", "Yasmin"}; | ||
} |
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,12 @@ | ||
#pragma once | ||
|
||
#include <string> | ||
#include <vector> | ||
|
||
namespace faker | ||
{ | ||
const std::vector<std::string> brazilianLastNames = { | ||
"Silva", "Souza", "Carvalho", "Santos", "Reis", "Xavier", "Franco", | ||
"Braga", "Macedo", "Batista", "Barros", "Moraes", "Costa", "Pereira", | ||
"Melo", "Saraiva", "Nogueira", "Oliveira", "Martins", "Moreira", "Albuquerque"}; | ||
} |
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 "BrazilianFirstNames.h" | ||
#include "BrazilianLastNames.h" | ||
#include "BrazilianPrefixes.h" | ||
#include "BrazilianSuffixes.h" | ||
|
||
namespace faker | ||
{ | ||
const NameFormats brazilianPersonNameFormats{ | ||
{{"{prefix} {firstName} {lastName}", 1}, {"{firstName} {lastName}", 9}, {"{firstName} {lastName} {suffix}", 1}}}; | ||
|
||
const PeopleNames brazilianPeopleNames{ | ||
{brazilianMalesFirstNames, {}, brazilianLastNames, brazilianMalesPrefixes, brazilianSuffixes}, | ||
{brazilianFemalesFirstNames, {}, brazilianLastNames, brazilianFemalesPrefixes, brazilianSuffixes}, | ||
brazilianPersonNameFormats}; | ||
|
||
} |
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,11 @@ | ||
#pragma once | ||
|
||
#include <string> | ||
#include <vector> | ||
|
||
namespace faker | ||
{ | ||
const std::vector<std::string> brazilianMalesPrefixes{"Sr.", "Dr."}; | ||
|
||
const std::vector<std::string> brazilianFemalesPrefixes{"Sra.", "Srta.", "Dra."}; | ||
} |
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,9 @@ | ||
#pragma once | ||
|
||
#include <string> | ||
#include <vector> | ||
|
||
namespace faker | ||
{ | ||
const std::vector<std::string> brazilianSuffixes{"Jr.", "Neto", "Filho"}; | ||
} |