cldr-transforms 48.1.0 → 48.2.0-BETA0b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE
CHANGED
|
@@ -2,7 +2,7 @@ UNICODE LICENSE V3
|
|
|
2
2
|
|
|
3
3
|
COPYRIGHT AND PERMISSION NOTICE
|
|
4
4
|
|
|
5
|
-
Copyright © 2004-
|
|
5
|
+
Copyright © 2004-2026 Unicode, Inc.
|
|
6
6
|
|
|
7
7
|
NOTICE TO USER: Carefully read the following legal agreement. BY
|
|
8
8
|
DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
|
package/bower.json
CHANGED
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
$tone = [̄́̌̀̆] ;
|
|
15
15
|
# Move the tone to the end of a syllable, and convert to number
|
|
16
16
|
e {($tone) r} → r &Pinyin-NumericPinyin($1);
|
|
17
|
-
($tone) ( [i o n u {
|
|
17
|
+
($tone) ( [i o n u {on} {ng}]) → $2 &Pinyin-NumericPinyin($1);
|
|
18
18
|
($tone) → &Pinyin-NumericPinyin($1);
|
|
19
19
|
# The following backs up until it finds the right vowel, then deposits the tone
|
|
20
20
|
$vowel = [aAeEiIoOuU {ü} {Ü} vV];
|
|
@@ -34,7 +34,7 @@ $C = [$LO $HI];
|
|
|
34
34
|
$V1 = [ꪵ ꪶ ꪹ ꪻ ꪼ]; # vowels written before consonant
|
|
35
35
|
$V2 = [ ꪰ ꪲ ꪳ ꪴ ꪷ ꪸ ꪾ]; # vowels written above or below consonant
|
|
36
36
|
$V3 = [ꪱ ꪮ ꪺ ꪽ]; # vowels written after consonant
|
|
37
|
-
$DIGRAPHS = [{
|
|
37
|
+
$DIGRAPHS = [{ꪹꪸ} {ꪹꪷ} {ꪹꪱ}];
|
|
38
38
|
$V12 = [$V1 $V2 $DIGRAPHS];
|
|
39
39
|
$V123 = [$V12 $V3];
|
|
40
40
|
$W = [ꪫ]; # labialization marker
|
package/transforms/de-ASCII.txt
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
$AE = [Ä {A
|
|
2
|
-
$OE = [Ö {O
|
|
3
|
-
$UE = [Ü {U
|
|
4
|
-
[ä {a
|
|
5
|
-
[ö {o
|
|
6
|
-
[ü {u
|
|
1
|
+
$AE = [Ä {A\u0308}];
|
|
2
|
+
$OE = [Ö {O\u0308}];
|
|
3
|
+
$UE = [Ü {U\u0308}];
|
|
4
|
+
[ä {a\u0308}] → ae;
|
|
5
|
+
[ö {o\u0308}] → oe;
|
|
6
|
+
[ü {u\u0308}] → ue;
|
|
7
7
|
{$AE} [:Lowercase:] → Ae;
|
|
8
8
|
{$OE} [:Lowercase:] → Oe;
|
|
9
9
|
{$UE} [:Lowercase:] → Ue;
|