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

CLDR-17930 Fix malformed hex escapes in common/transforms #4051

Open
wants to merge 1 commit into
base: main
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
264 changes: 132 additions & 132 deletions common/testData/transforms/und-Arab-t-und-guru.txt

Large diffs are not rendered by default.

296 changes: 148 additions & 148 deletions common/testData/transforms/und-Beng-t-und-guru.txt

Large diffs are not rendered by default.

296 changes: 148 additions & 148 deletions common/testData/transforms/und-Deva-t-und-guru.txt

Large diffs are not rendered by default.

296 changes: 148 additions & 148 deletions common/testData/transforms/und-Gujr-t-und-guru.txt

Large diffs are not rendered by default.

296 changes: 148 additions & 148 deletions common/testData/transforms/und-Knda-t-und-guru.txt

Large diffs are not rendered by default.

296 changes: 148 additions & 148 deletions common/testData/transforms/und-Mlym-t-und-guru.txt

Large diffs are not rendered by default.

296 changes: 148 additions & 148 deletions common/testData/transforms/und-Orya-t-und-guru.txt

Large diffs are not rendered by default.

296 changes: 148 additions & 148 deletions common/testData/transforms/und-Taml-t-und-guru.txt

Large diffs are not rendered by default.

296 changes: 148 additions & 148 deletions common/testData/transforms/und-Telu-t-und-guru.txt

Large diffs are not rendered by default.

264 changes: 132 additions & 132 deletions common/testData/transforms/ur-t-und-guru.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion common/transforms/Gurmukhi-InterIndic.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ For terms of use, see http://www.unicode.org/copyright.html
ਲ਼→\uE033; # FALLBACK
ਵ→\uE035; # LETTER VA
ਸ਼→\uE036;
ਸ\0a3c→\uE036; # FALLBACK
ਸ\u0a3c→\uE036; # FALLBACK
ਸ→\uE038; # LETTER SA
ਹ→\uE039; # LETTER HA
਼→\uE03C; # SIGN NUKTA
Expand Down
2 changes: 1 addition & 1 deletion common/transforms/Myanmar-Latin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ $consonants = [\u1000-\u1021];
\u103B\u1010\u103A > yat;

# ြက် > yet;
\u103C\u1000\103A > yet;
\u103C\u1000\u103A > yet;

# ျက် > yet;
\u103B\u1000\u103A > yet;
Expand Down
2 changes: 1 addition & 1 deletion common/transforms/el-Title.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ For terms of use, see http://www.unicode.org/copyright.html
<transform source="el" target="Title" direction="forward" alias="el-t-d0-title">
<tRule><![CDATA[
::NFD();
# Remove \0301 following Greek, with possible intervening 0308 marks.
# Remove \u0301 following Greek, with possible intervening 0308 marks.
# [[:Greek:] & [:Ll:]] [\u0308]? { \u0301 → ;
# Make any string of letters after a cased letter be lower, with rules for sigma
[:cased:] [:case-ignorable:]* { Σ } [:case-ignorable:]* [:cased:] → σ;
Expand Down
2 changes: 1 addition & 1 deletion common/transforms/el-Upper.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ For terms of use, see http://www.unicode.org/copyright.html
<transform source="el" target="Upper" direction="forward" alias="el-t-d0-upper">
<tRule>
# Copyright (C) 2011-2013, Apple Inc. and others. All Rights Reserved.
# Remove \0301 following Greek, with possible intervening 0308 marks.
# Remove \u0301 following Greek, with possible intervening 0308 marks.
::NFD();
# For uppercasing (not titlecasing!) remove all greek accents from greek letters.
# This is done in two groups, to account for canonical ordering.
Expand Down
2 changes: 1 addition & 1 deletion common/transforms/my-t-my-s0-zawgyi.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ $vowelsign = [\u102B-\u1030\u1032]; # Unicode vowel signs except E (1031)
$vowelsAndConsonants = [\u1000-\u102a];

$umedial = [\u103B-\u103E]; # Medial codepoints in Unicode
$vowelmedial = [\u102B-\u1030\u1032\1u36\u1037\u103A-\u103F]; # Union of vowel signs and medials
$vowelmedial = [\u102B-\u1030\u1032\u1036\u1037\u103A-\u103F]; # Union of vowel signs and medials
$ukinzi = \u1004\u103A\u1039; # Codepoints representing kinzi in Unicode

# Zawgyi medial ra has multiple representations
Expand Down