Skip to content
Merged
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 common/transforms/Latin-NumericPinyin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ For terms of use, see http://www.unicode.org/copyright.html
$tone = [̄́̌̀̆] ;
# Move the tone to the end of a syllable, and convert to number
e {($tone) r} → r &Pinyin-NumericPinyin($1);
($tone) ( [i o n u {o n} {n g}]) → $2 &Pinyin-NumericPinyin($1);
($tone) ( [i o n u {on} {ng}]) → $2 &Pinyin-NumericPinyin($1);
($tone) → &Pinyin-NumericPinyin($1);
# The following backs up until it finds the right vowel, then deposits the tone
$vowel = [aAeEiIoOuU {ü} {Ü} vV];
Expand Down
2 changes: 1 addition & 1 deletion common/transforms/blt-fonipa-t-blt.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ $C = [$LO $HI];
$V1 = [ꪵ ꪶ ꪹ ꪻ ꪼ]; # vowels written before consonant
$V2 = [ ꪰ ꪲ ꪳ ꪴ ꪷ ꪸ ꪾ]; # vowels written above or below consonant
$V3 = [ꪱ ꪮ ꪺ ꪽ]; # vowels written after consonant
$DIGRAPHS = [{ꪹ ꪸ} {ꪹ ꪷ} {ꪹ ꪱ}];
$DIGRAPHS = [{ꪹꪸ} {ꪹꪷ} {ꪹꪱ}];
$V12 = [$V1 $V2 $DIGRAPHS];
$V123 = [$V12 $V3];
$W = [ꪫ]; # labialization marker
Expand Down
12 changes: 6 additions & 6 deletions common/transforms/de-ASCII.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ For terms of use, see http://www.unicode.org/copyright.html
<transforms>
<transform source="de" target="ASCII" direction="forward" alias="de-t-de-d0-ascii">
<tRule>
$AE = [Ä {A \u0308}];
$OE = [Ö {O \u0308}];
$UE = [Ü {U \u0308}];
$AE = [Ä {A\u0308}];
$OE = [Ö {O\u0308}];
$UE = [Ü {U\u0308}];

[ä {a \u0308}] → ae;
[ö {o \u0308}] → oe;
[ü {u \u0308}] → ue;
[ä {a\u0308}] → ae;
[ö {o\u0308}] → oe;
[ü {u\u0308}] → ue;

{$AE} [:Lowercase:] → Ae;
{$OE} [:Lowercase:] → Oe;
Expand Down
Loading