Fixed some vowel & consonant issues
This commit is contained in:
parent
e34f5837d9
commit
8bc3bfde33
1 changed files with 8 additions and 15 deletions
|
@ -28,11 +28,14 @@ static std::unordered_map<
|
||||||
// ----- Consonants
|
// ----- Consonants
|
||||||
{"t",
|
{"t",
|
||||||
{
|
{
|
||||||
{FcitxKey_less, "ʈ"},
|
{FcitxKey_less, "ʈ"},
|
||||||
|
{FcitxKey_equal, "θ"},
|
||||||
}},
|
}},
|
||||||
{"d",
|
{"d",
|
||||||
{
|
{
|
||||||
{FcitxKey_less, "ɖ"},
|
{FcitxKey_greater, "ɗ"},
|
||||||
|
{FcitxKey_less, "ɖ"},
|
||||||
|
{FcitxKey_equal, "ð"},
|
||||||
}},
|
}},
|
||||||
{"j",
|
{"j",
|
||||||
{
|
{
|
||||||
|
@ -99,15 +102,6 @@ static std::unordered_map<
|
||||||
{FcitxKey_greater, "ɓ"},
|
{FcitxKey_greater, "ɓ"},
|
||||||
{FcitxKey_equal, "β"},
|
{FcitxKey_equal, "β"},
|
||||||
}},
|
}},
|
||||||
{"t",
|
|
||||||
{
|
|
||||||
{FcitxKey_equal, "θ"},
|
|
||||||
}},
|
|
||||||
{"d",
|
|
||||||
{
|
|
||||||
{FcitxKey_greater, "ɗ"},
|
|
||||||
{FcitxKey_equal, "ð"},
|
|
||||||
}},
|
|
||||||
{"s",
|
{"s",
|
||||||
{
|
{
|
||||||
{FcitxKey_less, "ʂ"},
|
{FcitxKey_less, "ʂ"},
|
||||||
|
@ -188,6 +182,7 @@ static std::unordered_map<
|
||||||
}},
|
}},
|
||||||
{"u",
|
{"u",
|
||||||
{
|
{
|
||||||
|
{FcitxKey_less, "ʊ"},
|
||||||
{FcitxKey_greater, "ʌ"},
|
{FcitxKey_greater, "ʌ"},
|
||||||
{FcitxKey_equal, "ɯ"},
|
{FcitxKey_equal, "ɯ"},
|
||||||
}},
|
}},
|
||||||
|
@ -199,6 +194,7 @@ static std::unordered_map<
|
||||||
{
|
{
|
||||||
{FcitxKey_less, "ɔ"},
|
{FcitxKey_less, "ɔ"},
|
||||||
{FcitxKey_greater, "ø"},
|
{FcitxKey_greater, "ø"},
|
||||||
|
{FcitxKey_equal, "ɒ"},
|
||||||
}},
|
}},
|
||||||
{"E",
|
{"E",
|
||||||
{
|
{
|
||||||
|
@ -208,6 +204,7 @@ static std::unordered_map<
|
||||||
}},
|
}},
|
||||||
{"O",
|
{"O",
|
||||||
{
|
{
|
||||||
|
{FcitxKey_less, "ɞ"},
|
||||||
{FcitxKey_greater, "ɤ"},
|
{FcitxKey_greater, "ɤ"},
|
||||||
{FcitxKey_equal, "ɵ"},
|
{FcitxKey_equal, "ɵ"},
|
||||||
}},
|
}},
|
||||||
|
@ -217,10 +214,6 @@ static std::unordered_map<
|
||||||
{FcitxKey_less, "ɛ"},
|
{FcitxKey_less, "ɛ"},
|
||||||
{FcitxKey_equal, "ə"},
|
{FcitxKey_equal, "ə"},
|
||||||
}},
|
}},
|
||||||
{"O",
|
|
||||||
{
|
|
||||||
{FcitxKey_less, "ɞ"},
|
|
||||||
}},
|
|
||||||
{"a",
|
{"a",
|
||||||
{
|
{
|
||||||
{FcitxKey_less, "æ"},
|
{FcitxKey_less, "æ"},
|
||||||
|
|
Loading…
Reference in a new issue