diff --git a/include/faker-cxx/types/Country.h b/include/faker-cxx/types/Country.h index e28461b50..6db4fbaea 100644 --- a/include/faker-cxx/types/Country.h +++ b/include/faker-cxx/types/Country.h @@ -37,7 +37,7 @@ enum class Country Austria, Switzerland, Belgium, - Nederlands, + Netherlands, China, Korea, Canada, @@ -59,7 +59,7 @@ const std::vector countries{ Country::Nepal, Country::Spain, Country::Turkey, Country::Czech, Country::Slovakia, Country::Ukraine, Country::Denmark, Country::Sweden, Country::Brazil, Country::Norway, Country::Japan, Country::Portugal, Country::Hungary, Country::Croatia, Country::Greece, - Country::Slovenia, Country::Austria, Country::Switzerland, Country::Belgium, Country::Nederlands, + Country::Slovenia, Country::Austria, Country::Switzerland, Country::Belgium, Country::Netherlands, Country::China, Country::Korea, Country::Canada, Country::Mexico, Country::Argentina, Country::Australia, Country::Serbia, Country::Macedonia, Country::Albania, Country::Latvia, Country::Ireland, Country::Belarus, Country::Estonia, @@ -97,7 +97,7 @@ inline std::string toString(Country country) {Country::Austria, "Austria"}, {Country::Switzerland, "Switzerland"}, {Country::Belgium, "Belgium"}, - {Country::Nederlands, "Nederlands"}, + {Country::Netherlands, "Netherlands"}, {Country::China, "China"}, {Country::Korea, "Korea"}, {Country::Canada, "Canada"}, diff --git a/src/modules/person/Person.cpp b/src/modules/person/Person.cpp index e5ab7fb49..6ace2a069 100644 --- a/src/modules/person/Person.cpp +++ b/src/modules/person/Person.cpp @@ -37,7 +37,7 @@ #include "data/macedonia/MacedonianPeopleNames.h" #include "data/mexico/MexicanPeopleNames.h" #include "data/Nationalities.h" -#include "data/nederlands/DutchPeopleNames.h" +#include "data/netherlands/DutchPeopleNames.h" #include "data/nepal/NepalesePeopleNames.h" #include "data/norway/NorwegianPeopleNames.h" #include "data/poland/PolishPeopleNames.h" @@ -78,7 +78,7 @@ const std::map countryToPeopleNamesMapping{ {Country::Hungary, hungarianPeopleNames}, {Country::Croatia, croatianPeopleNames}, {Country::Greece, greekPeopleNames}, {Country::Slovenia, slovenianPeopleNames}, {Country::Austria, austrianPeopleNames}, {Country::Switzerland, swissPeopleNames}, - {Country::Belgium, belgianPeopleNames}, {Country::Nederlands, dutchPeopleNames}, + {Country::Belgium, belgianPeopleNames}, {Country::Netherlands, dutchPeopleNames}, {Country::China, chinesePeopleNames}, {Country::Korea, koreanPeopleNames}, {Country::Canada, canadianPeopleNames}, {Country::Mexico, mexicanPeopleNames}, {Country::Argentina, argentinianPeopleNames}, {Country::Australia, australianPeopleNames}, diff --git a/src/modules/person/PersonTest.cpp b/src/modules/person/PersonTest.cpp index 06d29813c..4578537a7 100644 --- a/src/modules/person/PersonTest.cpp +++ b/src/modules/person/PersonTest.cpp @@ -36,7 +36,7 @@ #include "data/macedonia/MacedonianPeopleNames.h" #include "data/mexico/MexicanPeopleNames.h" #include "data/Nationalities.h" -#include "data/nederlands/DutchPeopleNames.h" +#include "data/netherlands/DutchPeopleNames.h" #include "data/nepal/NepalesePeopleNames.h" #include "data/norway/NorwegianPeopleNames.h" #include "data/poland/PolishPeopleNames.h" @@ -78,7 +78,7 @@ const std::map countryToPeopleNamesMapping{ {Country::Hungary, hungarianPeopleNames}, {Country::Croatia, croatianPeopleNames}, {Country::Greece, greekPeopleNames}, {Country::Slovenia, slovenianPeopleNames}, {Country::Austria, austrianPeopleNames}, {Country::Switzerland, swissPeopleNames}, - {Country::Belgium, belgianPeopleNames}, {Country::Nederlands, dutchPeopleNames}, + {Country::Belgium, belgianPeopleNames}, {Country::Netherlands, dutchPeopleNames}, {Country::China, chinesePeopleNames}, {Country::Korea, koreanPeopleNames}, {Country::Canada, canadianPeopleNames}, {Country::Mexico, mexicanPeopleNames}, {Country::Argentina, argentinianPeopleNames}, {Country::Australia, australianPeopleNames}, @@ -103,7 +103,7 @@ const std::map generatedTestName{ {Country::Hungary, "shouldGenerateHungarianName"}, {Country::Croatia, "shouldGenerateCroatianName"}, {Country::Greece, "shouldGenerateGreekName"}, {Country::Slovenia, "shouldGenerateSlovenianName"}, {Country::Austria, "shouldGenerateAustrianName"}, {Country::Switzerland, "shouldGenerateSwissName"}, - {Country::Belgium, "shouldGenerateBelgianName"}, {Country::Nederlands, "shouldGenerateDutchName"}, + {Country::Belgium, "shouldGenerateBelgianName"}, {Country::Netherlands, "shouldGenerateDutchName"}, {Country::China, "shouldGenerateChineseName"}, {Country::Korea, "shouldGenerateKoreanName"}, {Country::Canada, "shouldGenerateCanadianName"}, {Country::Mexico, "shouldGenerateMexicanName"}, {Country::Argentina, "shouldGenerateArgentinianName"}, {Country::Australia, "shouldGenerateAustralianName"}, diff --git a/src/modules/person/data/nederlands/DutchFirstNames.h b/src/modules/person/data/netherlands/DutchFirstNames.h similarity index 100% rename from src/modules/person/data/nederlands/DutchFirstNames.h rename to src/modules/person/data/netherlands/DutchFirstNames.h diff --git a/src/modules/person/data/nederlands/DutchLastNames.h b/src/modules/person/data/netherlands/DutchLastNames.h similarity index 100% rename from src/modules/person/data/nederlands/DutchLastNames.h rename to src/modules/person/data/netherlands/DutchLastNames.h diff --git a/src/modules/person/data/nederlands/DutchPeopleNames.h b/src/modules/person/data/netherlands/DutchPeopleNames.h similarity index 100% rename from src/modules/person/data/nederlands/DutchPeopleNames.h rename to src/modules/person/data/netherlands/DutchPeopleNames.h diff --git a/src/modules/person/data/nederlands/DutchPrefixes.h b/src/modules/person/data/netherlands/DutchPrefixes.h similarity index 100% rename from src/modules/person/data/nederlands/DutchPrefixes.h rename to src/modules/person/data/netherlands/DutchPrefixes.h diff --git a/src/modules/person/data/nederlands/DutchSuffixes.h b/src/modules/person/data/netherlands/DutchSuffixes.h similarity index 100% rename from src/modules/person/data/nederlands/DutchSuffixes.h rename to src/modules/person/data/netherlands/DutchSuffixes.h