2013-03-03 21:34:51 +00:00
|
|
|
|
# ***************************************************************************
|
|
|
|
|
# *
|
2016-05-26 22:32:17 +00:00
|
|
|
|
# * Copyright (C) 2016 and later: Unicode, Inc. and others.
|
|
|
|
|
# * License & terms of use: http://www.unicode.org/copyright.html.
|
2013-03-03 21:34:51 +00:00
|
|
|
|
# *
|
|
|
|
|
# ***************************************************************************
|
|
|
|
|
# File: az_Title.txt
|
|
|
|
|
# Generated from CLDR
|
|
|
|
|
#
|
2016-02-05 03:37:50 +00:00
|
|
|
|
|
|
|
|
|
# I and i-dotless; I-dot and i are case pairs in Turkish and Azeri
|
|
|
|
|
# Make any string of letters after a cased letter be lower, with rules for i
|
2013-03-03 21:34:51 +00:00
|
|
|
|
[:cased:] [:case-ignorable:]* { İ → i;
|
|
|
|
|
[:cased:] [:case-ignorable:]* { I → ı;
|
|
|
|
|
[:cased:] [:case-ignorable:]* { (.) → &Any-Lower($1) ;
|
2016-02-05 03:37:50 +00:00
|
|
|
|
# Otherwise all lowercase go to upper (titlecase stay as is)
|
2013-03-03 21:34:51 +00:00
|
|
|
|
i→İ ;
|
|
|
|
|
([:Lowercase:]) → &Any-Upper($1) ;
|
2016-02-05 03:37:50 +00:00
|
|
|
|
# do later I([^[:ccc=Not_Reordered:][:ccc=Above:]]*)\u0307 → i$1 ;
|
|
|
|
|
|