Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tuneic for ZH phoneme #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion js/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ const consonant_to_tuneic = {
40: 0b001001, // m
42: 0b001011, // d
44: 0b010011, // n
47: 0b111001, // ʒ - no source found yet, guess CGAC over CEAC
47: 0b110101, // ʒ
49: 0b101101, // g
50: 0b011011, // h
54: 0b011101, // z
Expand Down
2 changes: 1 addition & 1 deletion js/tuneic.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ const cons_to_trunic = {
0b001001: 40,// m
0b001011: 42,// d
0b010011: 44,// n
//0b11??01: 47,// ʒ - no source found yet
0b110101: 47,// ʒ
0b101101: 49,// g
0b011011: 50,// h
0b011101: 54,// z
Expand Down