Skip to content

Commit

Permalink
Added needed vowels and consonants
Browse files Browse the repository at this point in the history
  • Loading branch information
Clementine Fourrier committed Sep 14, 2021
1 parent 1c55e88 commit 6d6f048
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 1 deletion.
65 changes: 64 additions & 1 deletion language_definition/phones/pulmonic_consonants.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,15 @@ class PulmonicConsonant(Enum):
"Voiced bilabial nasal",
"\u006D",
114,
)
m_ = (
"mː",
True,
Place.BILABIAL,
Manner.NASAL,
"Voiced bilabial geminated nasal",
"\u006D",
114,
)
p = (
"p",
Expand All @@ -124,6 +133,15 @@ class PulmonicConsonant(Enum):
"\u0070",
101,
)
p_ = (
"pː",
False,
Place.BILABIAL,
Manner.STOP,
"Voiceless bilabial geminated stop",
"\u0070",
101,
)
b = ("b",
True,
Place.BILABIAL,
Expand Down Expand Up @@ -192,6 +210,15 @@ class PulmonicConsonant(Enum):
"\u0066",
128,
)
f_ = (
"fː",
False,
Place.LABIODENTAL,
Manner.FRICATIVE,
"Voiceless labiodental geminated fricative",
"\u0066",
128,
)
v = (
"v",
True,
Expand All @@ -201,6 +228,15 @@ class PulmonicConsonant(Enum):
"\u0076",
129,
)
v_ = (
"vː",
True,
Place.LABIODENTAL,
Manner.FRICATIVE,
"Voiced labiodental geminated fricative",
"\u0076",
129,
)
ʋ = (
"ʋ",
True,
Expand All @@ -219,7 +255,7 @@ class PulmonicConsonant(Enum):
"\u2C71",
184,
)
n_ = (
n__ = (
"n̥",
False,
Place.ALVEOLAR,
Expand All @@ -237,6 +273,15 @@ class PulmonicConsonant(Enum):
"\u006E",
116,
)
n_ = (
"nː",
True,
Place.ALVEOLAR,
Manner.NASAL,
"Voiced alveolar geminated nasal",
"\u006E",
116,
)
t = (
"t",
False,
Expand Down Expand Up @@ -431,6 +476,15 @@ class PulmonicConsonant(Enum):
"\u027E",
124,
)
ɾ_ = (
"ɾː",
True,
Place.ALVEOLAR,
Manner.TAP_FLAP,
"Voiced alveolar geminated tap and flap",
"\u027E",
124,
)
r = (
"r",
True,
Expand All @@ -440,6 +494,15 @@ class PulmonicConsonant(Enum):
"\u0072",
122,
)
r_ = (
"rː",
True,
Place.ALVEOLAR,
Manner.TRILL,
"Voiced alveolar geminated trill",
"\u0072",
122,
)
= (
"tɬ",
False,
Expand Down
10 changes: 10 additions & 0 deletions language_definition/phones/vowels.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,16 @@ class Vowel(Enum):
"\u0153",
311,
)
œ̃ = (
"œ̃",
True,
Backness.FRONT,
Height.OPEN_MID,
False,
"Open-mid front rounded nasal vowel",
"\u0153",
311,
)
æ = (
"æ",
False,
Expand Down

0 comments on commit 6d6f048

Please sign in to comment.