]>
Commit | Line | Data |
---|---|---|
51004dcb A |
1 | # *************************************************************************** |
2 | # * | |
2ca993e8 | 3 | # * Copyright (C) 2004-2016, International Business Machines |
51004dcb A |
4 | # * Corporation; Unicode, Inc.; and others. All Rights Reserved. |
5 | # * | |
6 | # *************************************************************************** | |
7 | # File: el_Lower.txt | |
8 | # Generated from CLDR | |
9 | # | |
2ca993e8 A |
10 | |
11 | # Special case for final form of sigma. | |
51004dcb | 12 | ::NFD(); |
2ca993e8 A |
13 | # C is preceded by a sequence consisting of a cased letter and then zero or more case-ignorable characters, |
14 | # and C is not followed by a sequence consisting of zero or more case-ignorable characters and then a cased letter. | |
15 | # 03A3; 03C2; 03A3; 03A3; Final_Sigma; # GREEK CAPITAL LETTER SIGMA | |
16 | # With translit rules, easiest is to handle the negative condition first, mapping in that case to the regular sigma. | |
51004dcb A |
17 | Σ } [:case-ignorable:]* [:cased:] → σ; |
18 | [:cased:] [:case-ignorable:]* { Σ → ς; | |
19 | ::Any-Lower; | |
20 | ::NFC(); | |
2ca993e8 | 21 |