TMW->EWTS 998476 partial fix: "aM" is generated now correctly. Before
you got "M".
This commit is contained in:
parent
8dcb623382
commit
9025fb42d6
3 changed files with 8 additions and 5 deletions
|
@ -89,8 +89,12 @@ public class TGCPair implements THDLWylieConstants {
|
|||
// Unlike ACIP, EWTS uses e for achen with e vowel, not ae.
|
||||
if (null == vowelWylie)
|
||||
return ACHEN;
|
||||
else
|
||||
return vowelWylie;
|
||||
else {
|
||||
if (TibetanMachineWeb.startsWithWylieVowelSequence(vowelWylie))
|
||||
return vowelWylie;
|
||||
else
|
||||
return ACHEN + vowelWylie;
|
||||
}
|
||||
}
|
||||
StringBuffer b = new StringBuffer();
|
||||
if (consonantWylie != null) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue