-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Dictionaries): Separate demonyms from adjectives (#46)
* feat(Dictionaries): Separate demonyms from adjectives * fix(Dictionaries): rename demonyms to languages
- Loading branch information
Faizaan Pervaiz
authored
Feb 19, 2021
1 parent
59596e9
commit d3a1275
Showing
4 changed files
with
34 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
export default [ | ||
'british', | ||
'english', | ||
'irish', | ||
'turkish', | ||
'japanese', | ||
'chinese', | ||
'korean', | ||
'palestinian', | ||
'canadian', | ||
'australian', | ||
'asian', | ||
'african', | ||
'italian', | ||
'indian', | ||
'russian', | ||
'american', | ||
'german', | ||
'christian', | ||
'european', | ||
'iraqi', | ||
'israeli', | ||
'arab', | ||
'jewish', | ||
'scottish', | ||
'polish', | ||
'protestant', | ||
'spanish', | ||
'islamic', | ||
'catholic', | ||
]; |
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 |
---|---|---|
|
@@ -5,6 +5,7 @@ export { | |
animals, | ||
colors, | ||
countries, | ||
languages, | ||
names, | ||
starWars, | ||
NumberDictionary, | ||
|