From patchwork Sat Oct 13 16:58:17 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Egor Kobylkin X-Patchwork-Id: 29728 Received: (qmail 50189 invoked by alias); 13 Oct 2018 16:58:48 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 50167 invoked by uid 89); 13 Oct 2018 16:58:47 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: =?ISO-8859-1?Q?No, score=-3.2 required=5.0 tests=AC_HTML_NONSENSE_TAGS, BAYES_50, BODY_8BITS, GARBLED_BODY, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 spammy=8:=d0=b4, 8:=d0=bf, 8:=d0=bd, 8:=d0=b1?= X-HELO: mout.kundenserver.de Subject: Re: [PATCH v5] Locales: Cyrillic -> ASCII transliteration table [BZ #2872] To: Rafal Luzynski , libc-alpha@sourceware.org, libc-locales@sourceware.org Cc: mfabian@redhat.com, Marko Myllynen , "Dmitry V. Levin" , Volodymyr Lisivka , Max Kutny , danilo@gnome.org References: <41532e13-a63d-5df1-ab37-05eb4d6c8d0a@kobylkin.com> <20180412224352.GB2911@altlinux.org> <165238610.582597.1539392357757@poczta.nazwa.pl> From: Egor Kobylkin Openpgp: preference=signencrypt Message-ID: Date: Sat, 13 Oct 2018 18:58:17 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <165238610.582597.1539392357757@poczta.nazwa.pl> Hi Rafal, Thanks for the thorough checking, it really helps. On 13.10.2018 02:59, Rafal Luzynski wrote: > Technical issue: Please either attach your patch to the email > message or paste it inline, not both. The patch as it is now is not > applicable. I had to edit it manually to apply. >> diff -uNr a/localedata/locales/C b/localedata/locales/C --- >> a/localedata/locales/C 2018-10-11 15:10:12.000000000 +0000 +++ >> b/localedata/locales/C 2018-10-11 15:10:43.000000000 +0000 > > There is no such file. Where have you got the source code from? > Are you sure this is glibc? :-) I was running my patch process against the Ubuntu 18.04 version of localedata/locales. Now I have checked out the GitHub glibc source v2.28 and done the same. Please find the new patch attached. I am not submitting it as a patch request because we have not yet addressed the rest of your comments below. But at least this should be working as a patch for you. Please let me know if there is any problem there still. >> [...] From this patch I have excluded locales that already mention >> cyrillic or have a transliteration table for it: az_AZ >> iso14651_t1_common ky_KG mn_MN sr_RS tg_TJ tk_TM tt_RU uk_UA uz_UZ >> uz_UZ@cyrillic > > I confirm that these locales are excluded and there are no other > missing locales. Because of the surprisingly different list of locales between Ubuntu and glibc there is now a different list of excluded ones as well. mn_MN sr_RS tg_TJ tk_TM tt_RU uk_UA uz_UZ uz_UZ@cyrillic uk_UA az_AZ, ky_KG are now included because they don't have cyrillic translit in glibc. iso14651_t1_common is still implicitly excluded, because it doesn't have 'translit_end' string. Somehow az_AZ and tr_TR from glibc fail to transliterate Cyrillic even after the patch applied (az_AZ is explicitly including tr_TR). I do not see a reason, maybe you could check? > Regarding the tests, I think there is no complete transliteration > test suite at the moment. Probably the only test is > localedata/bug-iconv-trans.c. You can also see the collation tests > placed in the same directory, they use those multiple *.UTF-8.in > files. > > You can skip the tests for now. In the copy of localedata/bug-iconv-trans.c lines 10-11 we could just change the list of the symbols we are now transliterating const char str[] = "ÄäÖöÜüß"; const char expected[] = "AEaeOEoeUEuess"; like this const char str[] = "ЁЂЃЄЅІЇЈЉЊЋЌЎЏАБВГДЕЖЗИЙКЛМНОПРСТУУ́ФХЦЧШЩъЫьЭЮЯабвгдежзийклмнопрстуу́фхцчшщЪыЬэюяёђѓєѕіїјљњћќўџѪѫѲѳѴѵҌҍ ҐґҒғҔҕҖҗҚқҞҟҢңҤҥҦҧҨҩҪҫҬҭҮүҲҳҴҵҺһҼҽҾҿӀӁӂӋӌӐӑӒӓӖӗӘәӜӝӞӟӠӡӤӥӦӧӨөӰӱӲӳӴӵӸӹ’" const char expected[] = "YODJG`YEZ`IYIJL`N`TSHK`U`DHABVGDEZHZIJKLMNOPRSTUU`FXCZCHSHSHHA`Y``E`YUYAabvgdezhzijklmnoprstuu`fxczchsh shh``y``e`yuyayodjg`yez`iyijl`n`tshk`u`dhO`o`FHfhYHyhE`e`G`g`GHghGHghZH`zh`K`k`K`k`N`n`NGngP`p`O`o`C`C` T`t`UuH`h`TCZtczSH`SH`CH`ch`CH`ch`iZH`zh`CH`ch`A`a`A`a`E`e`A`a`ZH`zh`Z`z`Z`z`I`i`O`o`O`o`U`u`U`u`CH`ch` Y`y`'"; First I though they could just be added but not all locales transliterate Umlauts so just extending the current test won't do as it will fail for those locales. >> [...] diff -uNr a/localedata/locales/am_ET >> b/localedata/locales/am_ET --- a/localedata/locales/am_ET >> 2018-10-11 15:10:11.000000000 +0000 +++ b/localedata/locales/am_ET >> 2018-10-11 15:10:43.000000000 +0000 @@ -1394,6 +1394,7 @@ >> >> +include >> "translit_cyrillic";"" translit_end % END LC_CTYPE > > Shouldn't “include "translit_cyrillic";""” be placed before the > custom rules, together with other includes? The same in more files, > I will not mention them all. If I recall correctly it is because of the "translit_end END LC_CTYPE" part at the end of the translit_cyrillic. This way it works for any locale, regardless whether it has translit itself or not. And being at the end it does not supersede any previous transliteration that may be there for a reason. As with some other comments, I am not super familiar with the formats of glibc files. So if you have a definitive suggestion - pls. formulate it as an imperative, not a question. >> [...] +translit_start + +% CYRILLIC CAPITAL LETTER IO + >> ;"" > > This says that for ASCII (GOST 7.79 System B) you would like to > transliterate "Ё" as "YO" but the table in Wikipedia says "Yo". I > understand that one or another may be correct depending on the > context but we should be consistent and also better let's stick with > the standard. The choice for YO, SH, YA, ZH etc. is to avoid naming collisions for example for "Сх" and "Ш" that would both transliterate to Sh: With SH:"Схема"->"Shema" but "Шема"->"SHema" With Sh:"Схема"->"Shema" and "Шема"->"Shema". Collision! This is important e.g. for renaming files, grouping as in using uniq etc. > >> +% CYRILLIC CAPITAL LETTER DJE + ;"" > > This says "DJ" but System B does not mention it. Where does it come > from? Also, I think it should be "Dj" rather than "DJ". I took the first two letters from its name. >> [...] +% CYRILLIC UNDEFINED + >> ;"" > > 1. I think it should be named "CYRILLIC CAPITAL LETTER U WITH ACUTE". > 2. OK, the System A table mentions this letter but System B does not. > Somehow we should handle it. I think that "U`" is the best we can do > for now. 3. It must be tested whether this actually works. 1. Let's do it just before you are ready to commit the patch, because it breaks formulas in my worksheet and I will have to do it manually? 3. I have tested and it doesn't work/gets ignored. But if you were to handle COMBINING it would work, wouldn't it? >> [...] +% CYRILLIC CAPITAL LETTER HA + ; > > I don't think that "H" is unavailable in any encoding therefore it > will always be transliterated as "H" and never as "X". We can't > help it and I don't think it is bad. > But we can keep this for when/if there is a way to explicitly request transcription instead of transliteration. >> +% CYRILLIC CAPITAL LETTER TSE + ;"" > > 1. "CZ" - maybe should be "Cz"?> 2. Are we able to implement the > rule: "c before i, e, y, j"? > 1. see for CYRILLIC CAPITAL LETTER IO 2. not sure what you are talking about in 2. but I believe it's not possible as per Marko's email. >> +% CYRILLIC CAPITAL LETTER HARD SIGN + >> ;"" > > "A`" is only for Bulgarian and should go to bg_BG. How should we > transliterate an upper case hard sign to plain ASCII? I think that > just "``", same as lower case. This is to avoid collision. Besides AFAIK e.g. in Russian there is no capital hard sign because there are no words starting with it. > >> +% CYRILLIC CAPITAL LETTER YERU + ;"" > > Again, as "Y" is always available it will never be transliterated as > "Y`". > But we can keep this for when/if there is a way to explicitly request transcription instead of transliteration. Bests, Diego diff -uNr a/localedata/locales/aa_DJ b/localedata/locales/aa_DJ --- a/localedata/locales/aa_DJ 2018-10-13 16:52:32.218372934 +0000 +++ b/localedata/locales/aa_DJ 2018-10-13 16:52:32.666374687 +0000 @@ -68,6 +68,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/af_ZA b/localedata/locales/af_ZA --- a/localedata/locales/af_ZA 2018-10-13 16:52:32.218372934 +0000 +++ b/localedata/locales/af_ZA 2018-10-13 16:52:32.442373810 +0000 @@ -70,6 +70,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ak_GH b/localedata/locales/ak_GH --- a/localedata/locales/ak_GH 2018-10-13 16:52:32.218372934 +0000 +++ b/localedata/locales/ak_GH 2018-10-13 16:52:32.774375109 +0000 @@ -54,6 +54,7 @@ copy "i18n" translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/am_ET b/localedata/locales/am_ET --- a/localedata/locales/am_ET 2018-10-13 16:52:32.218372934 +0000 +++ b/localedata/locales/am_ET 2018-10-13 16:52:32.466373904 +0000 @@ -893,6 +893,7 @@ +include "translit_cyrillic";"" translit_end % END LC_CTYPE diff -uNr a/localedata/locales/ar_EG b/localedata/locales/ar_EG --- a/localedata/locales/ar_EG 2018-10-13 16:52:32.218372934 +0000 +++ b/localedata/locales/ar_EG 2018-10-13 16:52:32.806375234 +0000 @@ -44,6 +44,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/az_AZ b/localedata/locales/az_AZ --- a/localedata/locales/az_AZ 2018-10-13 16:52:32.222372949 +0000 +++ b/localedata/locales/az_AZ 2018-10-13 16:52:32.494374014 +0000 @@ -136,6 +136,7 @@ "" "" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/be_BY b/localedata/locales/be_BY --- a/localedata/locales/be_BY 2018-10-13 16:52:32.222372949 +0000 +++ b/localedata/locales/be_BY 2018-10-13 16:52:32.518374107 +0000 @@ -91,6 +91,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/bem_ZM b/localedata/locales/bem_ZM --- a/localedata/locales/bem_ZM 2018-10-13 16:52:32.222372949 +0000 +++ b/localedata/locales/bem_ZM 2018-10-13 16:52:32.674374718 +0000 @@ -41,6 +41,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ber_DZ b/localedata/locales/ber_DZ --- a/localedata/locales/ber_DZ 2018-10-13 16:52:32.222372949 +0000 +++ b/localedata/locales/ber_DZ 2018-10-13 16:52:32.878375516 +0000 @@ -136,6 +136,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ber_MA b/localedata/locales/ber_MA --- a/localedata/locales/ber_MA 2018-10-13 16:52:32.222372949 +0000 +++ b/localedata/locales/ber_MA 2018-10-13 16:52:32.858375438 +0000 @@ -83,6 +83,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/bg_BG b/localedata/locales/bg_BG --- a/localedata/locales/bg_BG 2018-10-13 16:52:32.222372949 +0000 +++ b/localedata/locales/bg_BG 2018-10-13 16:52:32.446373826 +0000 @@ -49,6 +49,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/bi_VU b/localedata/locales/bi_VU --- a/localedata/locales/bi_VU 2018-10-13 16:52:32.226372965 +0000 +++ b/localedata/locales/bi_VU 2018-10-13 16:52:32.786375156 +0000 @@ -39,6 +39,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/bn_BD b/localedata/locales/bn_BD --- a/localedata/locales/bn_BD 2018-10-13 16:52:32.226372965 +0000 +++ b/localedata/locales/bn_BD 2018-10-13 16:52:32.766375078 +0000 @@ -61,6 +61,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/bo_CN b/localedata/locales/bo_CN --- a/localedata/locales/bo_CN 2018-10-13 16:52:32.226372965 +0000 +++ b/localedata/locales/bo_CN 2018-10-13 16:52:32.930375719 +0000 @@ -43,6 +43,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ca_ES b/localedata/locales/ca_ES --- a/localedata/locales/ca_ES 2018-10-13 16:52:32.226372965 +0000 +++ b/localedata/locales/ca_ES 2018-10-13 16:52:32.930375719 +0000 @@ -57,6 +57,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ce_RU b/localedata/locales/ce_RU --- a/localedata/locales/ce_RU 2018-10-13 16:52:32.226372965 +0000 +++ b/localedata/locales/ce_RU 2018-10-13 16:52:32.490373998 +0000 @@ -38,6 +38,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/cmn_TW b/localedata/locales/cmn_TW --- a/localedata/locales/cmn_TW 2018-10-13 16:52:32.226372965 +0000 +++ b/localedata/locales/cmn_TW 2018-10-13 16:52:32.670374702 +0000 @@ -49,6 +49,7 @@ copy "i18n" translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end class "hanzi"; / diff -uNr a/localedata/locales/cs_CZ b/localedata/locales/cs_CZ --- a/localedata/locales/cs_CZ 2018-10-13 16:52:32.238373012 +0000 +++ b/localedata/locales/cs_CZ 2018-10-13 16:52:32.874375500 +0000 @@ -215,6 +215,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/cv_RU b/localedata/locales/cv_RU --- a/localedata/locales/cv_RU 2018-10-13 16:52:32.238373012 +0000 +++ b/localedata/locales/cv_RU 2018-10-13 16:52:32.610374468 +0000 @@ -103,6 +103,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/cy_GB b/localedata/locales/cy_GB --- a/localedata/locales/cy_GB 2018-10-13 16:52:32.242373028 +0000 +++ b/localedata/locales/cy_GB 2018-10-13 16:52:32.434373779 +0000 @@ -65,6 +65,7 @@ copy "i18n" translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/da_DK b/localedata/locales/da_DK --- a/localedata/locales/da_DK 2018-10-13 16:52:32.242373028 +0000 +++ b/localedata/locales/da_DK 2018-10-13 16:52:32.894375579 +0000 @@ -169,6 +169,7 @@ % LATIN SMALL LETTER O WITH STROKE -> "oe" "";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/de_DE b/localedata/locales/de_DE --- a/localedata/locales/de_DE 2018-10-13 16:52:32.242373028 +0000 +++ b/localedata/locales/de_DE 2018-10-13 16:52:32.898375594 +0000 @@ -78,6 +78,7 @@ % DOUBLE HIGH-REVERSED-9 QUOTATION MARK ; +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/dv_MV b/localedata/locales/dv_MV --- a/localedata/locales/dv_MV 2018-10-13 16:52:32.242373028 +0000 +++ b/localedata/locales/dv_MV 2018-10-13 16:52:32.842375375 +0000 @@ -51,6 +51,7 @@ include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/dz_BT b/localedata/locales/dz_BT --- a/localedata/locales/dz_BT 2018-10-13 16:52:32.242373028 +0000 +++ b/localedata/locales/dz_BT 2018-10-13 16:52:32.838375360 +0000 @@ -59,6 +59,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/el_GR b/localedata/locales/el_GR --- a/localedata/locales/el_GR 2018-10-13 16:52:32.242373028 +0000 +++ b/localedata/locales/el_GR 2018-10-13 16:52:32.862375454 +0000 @@ -58,6 +58,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/en_GB b/localedata/locales/en_GB --- a/localedata/locales/en_GB 2018-10-13 16:52:32.242373028 +0000 +++ b/localedata/locales/en_GB 2018-10-13 16:52:32.794375187 +0000 @@ -54,6 +54,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/en_NG b/localedata/locales/en_NG --- a/localedata/locales/en_NG 2018-10-13 16:52:32.242373028 +0000 +++ b/localedata/locales/en_NG 2018-10-13 16:52:32.626374530 +0000 @@ -49,6 +49,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/en_ZM b/localedata/locales/en_ZM --- a/localedata/locales/en_ZM 2018-10-13 16:52:32.242373028 +0000 +++ b/localedata/locales/en_ZM 2018-10-13 16:52:32.454373857 +0000 @@ -41,6 +41,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/es_CU b/localedata/locales/es_CU --- a/localedata/locales/es_CU 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/es_CU 2018-10-13 16:52:32.886375547 +0000 @@ -58,6 +58,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/es_ES b/localedata/locales/es_ES --- a/localedata/locales/es_ES 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/es_ES 2018-10-13 16:52:32.426373748 +0000 @@ -107,6 +107,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/et_EE b/localedata/locales/et_EE --- a/localedata/locales/et_EE 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/et_EE 2018-10-13 16:52:32.758375046 +0000 @@ -113,6 +113,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/fa_IR b/localedata/locales/fa_IR --- a/localedata/locales/fa_IR 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/fa_IR 2018-10-13 16:52:32.446373826 +0000 @@ -78,6 +78,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ff_SN b/localedata/locales/ff_SN --- a/localedata/locales/ff_SN 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/ff_SN 2018-10-13 16:52:32.466373904 +0000 @@ -41,6 +41,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/fi_FI b/localedata/locales/fi_FI --- a/localedata/locales/fi_FI 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/fi_FI 2018-10-13 16:52:32.846375391 +0000 @@ -177,6 +177,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/fr_FR b/localedata/locales/fr_FR --- a/localedata/locales/fr_FR 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/fr_FR 2018-10-13 16:52:32.522374123 +0000 @@ -58,6 +58,7 @@ % In France, accents are simply omitted if they cannot be represented. include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ga_IE b/localedata/locales/ga_IE --- a/localedata/locales/ga_IE 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/ga_IE 2018-10-13 16:52:32.906375626 +0000 @@ -53,6 +53,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/gd_GB b/localedata/locales/gd_GB --- a/localedata/locales/gd_GB 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/gd_GB 2018-10-13 16:52:32.894375579 +0000 @@ -45,6 +45,7 @@ copy "i18n" translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/gu_IN b/localedata/locales/gu_IN --- a/localedata/locales/gu_IN 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/gu_IN 2018-10-13 16:52:32.802375218 +0000 @@ -62,6 +62,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/gv_GB b/localedata/locales/gv_GB --- a/localedata/locales/gv_GB 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/gv_GB 2018-10-13 16:52:32.626374530 +0000 @@ -56,6 +56,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/he_IL b/localedata/locales/he_IL --- a/localedata/locales/he_IL 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/he_IL 2018-10-13 16:52:32.926375704 +0000 @@ -58,6 +58,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/hi_IN b/localedata/locales/hi_IN --- a/localedata/locales/hi_IN 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/hi_IN 2018-10-13 16:52:32.634374561 +0000 @@ -61,6 +61,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/hif_FJ b/localedata/locales/hif_FJ --- a/localedata/locales/hif_FJ 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/hif_FJ 2018-10-13 16:52:32.642374593 +0000 @@ -37,6 +37,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/hr_HR b/localedata/locales/hr_HR --- a/localedata/locales/hr_HR 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/hr_HR 2018-10-13 16:52:32.870375485 +0000 @@ -61,6 +61,7 @@ % transliterate {Ä‘} into d + j "" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ht_HT b/localedata/locales/ht_HT --- a/localedata/locales/ht_HT 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/ht_HT 2018-10-13 16:52:32.798375203 +0000 @@ -57,6 +57,7 @@ copy "i18n" translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/hu_HU b/localedata/locales/hu_HU --- a/localedata/locales/hu_HU 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/hu_HU 2018-10-13 16:52:32.518374107 +0000 @@ -476,6 +476,7 @@ "";"";"" "";"";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/hy_AM b/localedata/locales/hy_AM --- a/localedata/locales/hy_AM 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/hy_AM 2018-10-13 16:52:32.766375078 +0000 @@ -75,6 +75,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/id_ID b/localedata/locales/id_ID --- a/localedata/locales/id_ID 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/id_ID 2018-10-13 16:52:32.522374123 +0000 @@ -54,6 +54,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/is_IS b/localedata/locales/is_IS --- a/localedata/locales/is_IS 2018-10-13 16:52:32.246373043 +0000 +++ b/localedata/locales/is_IS 2018-10-13 16:52:32.606374452 +0000 @@ -149,6 +149,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/it_IT b/localedata/locales/it_IT --- a/localedata/locales/it_IT 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/it_IT 2018-10-13 16:52:32.770375093 +0000 @@ -58,6 +58,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ja_JP b/localedata/locales/ja_JP --- a/localedata/locales/ja_JP 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/ja_JP 2018-10-13 16:52:32.754375031 +0000 @@ -1681,6 +1681,7 @@ include "translit_combining";"" include "translit_cjk_variants";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/kab_DZ b/localedata/locales/kab_DZ --- a/localedata/locales/kab_DZ 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/kab_DZ 2018-10-13 16:52:32.922375688 +0000 @@ -41,6 +41,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/kk_KZ b/localedata/locales/kk_KZ --- a/localedata/locales/kk_KZ 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/kk_KZ 2018-10-13 16:52:32.866375469 +0000 @@ -99,6 +99,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/km_KH b/localedata/locales/km_KH --- a/localedata/locales/km_KH 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/km_KH 2018-10-13 16:52:32.598374421 +0000 @@ -42,6 +42,7 @@ copy "i18n" translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/kn_IN b/localedata/locales/kn_IN --- a/localedata/locales/kn_IN 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/kn_IN 2018-10-13 16:52:32.762375062 +0000 @@ -63,6 +63,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ko_KR b/localedata/locales/ko_KR --- a/localedata/locales/ko_KR 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/ko_KR 2018-10-13 16:52:32.582374358 +0000 @@ -6099,6 +6099,7 @@ include "translit_combining";"" include "translit_hangul";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ks_IN b/localedata/locales/ks_IN --- a/localedata/locales/ks_IN 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/ks_IN 2018-10-13 16:52:32.510374076 +0000 @@ -46,6 +46,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/kw_GB b/localedata/locales/kw_GB --- a/localedata/locales/kw_GB 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/kw_GB 2018-10-13 16:52:32.790375171 +0000 @@ -57,6 +57,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ky_KG b/localedata/locales/ky_KG --- a/localedata/locales/ky_KG 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/ky_KG 2018-10-13 16:52:32.410373685 +0000 @@ -82,6 +82,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/lb_LU b/localedata/locales/lb_LU --- a/localedata/locales/lb_LU 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/lb_LU 2018-10-13 16:52:32.874375500 +0000 @@ -77,6 +77,7 @@ % LATIN SMALL LETTER E WITH CIRCUMFLEX "e^" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/lg_UG b/localedata/locales/lg_UG --- a/localedata/locales/lg_UG 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/lg_UG 2018-10-13 16:52:32.430373763 +0000 @@ -56,6 +56,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/lij_IT b/localedata/locales/lij_IT --- a/localedata/locales/lij_IT 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/lij_IT 2018-10-13 16:52:32.782375140 +0000 @@ -47,6 +47,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ln_CD b/localedata/locales/ln_CD --- a/localedata/locales/ln_CD 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/ln_CD 2018-10-13 16:52:32.438373795 +0000 @@ -39,6 +39,7 @@ copy "i18n" translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/lo_LA b/localedata/locales/lo_LA --- a/localedata/locales/lo_LA 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/lo_LA 2018-10-13 16:52:32.530374154 +0000 @@ -50,6 +50,7 @@ copy "i18n" translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/lt_LT b/localedata/locales/lt_LT --- a/localedata/locales/lt_LT 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/lt_LT 2018-10-13 16:52:32.602374436 +0000 @@ -163,6 +163,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/lv_LV b/localedata/locales/lv_LV --- a/localedata/locales/lv_LV 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/lv_LV 2018-10-13 16:52:32.794375187 +0000 @@ -125,6 +125,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/mg_MG b/localedata/locales/mg_MG --- a/localedata/locales/mg_MG 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/mg_MG 2018-10-13 16:52:32.486373982 +0000 @@ -54,6 +54,7 @@ % Accents are simply omitted if they cannot be represented. include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/mhr_RU b/localedata/locales/mhr_RU --- a/localedata/locales/mhr_RU 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/mhr_RU 2018-10-13 16:52:32.866375469 +0000 @@ -58,6 +58,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/mk_MK b/localedata/locales/mk_MK --- a/localedata/locales/mk_MK 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/mk_MK 2018-10-13 16:52:32.598374421 +0000 @@ -48,6 +48,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ml_IN b/localedata/locales/ml_IN --- a/localedata/locales/ml_IN 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/ml_IN 2018-10-13 16:52:32.610374468 +0000 @@ -60,6 +60,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE % diff -uNr a/localedata/locales/ms_MY b/localedata/locales/ms_MY --- a/localedata/locales/ms_MY 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/ms_MY 2018-10-13 16:52:32.638374577 +0000 @@ -45,6 +45,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/mt_MT b/localedata/locales/mt_MT --- a/localedata/locales/mt_MT 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/mt_MT 2018-10-13 16:52:32.890375563 +0000 @@ -47,6 +47,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/nan_TW@latin b/localedata/locales/nan_TW@latin --- a/localedata/locales/nan_TW@latin 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/nan_TW@latin 2018-10-13 16:52:32.530374154 +0000 @@ -52,6 +52,7 @@ % accents are simply omitted if they cannot be represented. include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/nb_NO b/localedata/locales/nb_NO --- a/localedata/locales/nb_NO 2018-10-13 16:52:32.262373106 +0000 +++ b/localedata/locales/nb_NO 2018-10-13 16:52:32.778375125 +0000 @@ -166,6 +166,7 @@ % LATIN SMALL LETTER O WITH STROKE -> "oe" "";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ne_NP b/localedata/locales/ne_NP --- a/localedata/locales/ne_NP 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/ne_NP 2018-10-13 16:52:32.842375375 +0000 @@ -43,6 +43,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/nhn_MX b/localedata/locales/nhn_MX --- a/localedata/locales/nhn_MX 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/nhn_MX 2018-10-13 16:52:32.766375078 +0000 @@ -59,6 +59,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/niu_NU b/localedata/locales/niu_NU --- a/localedata/locales/niu_NU 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/niu_NU 2018-10-13 16:52:32.802375218 +0000 @@ -58,6 +58,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/niu_NZ b/localedata/locales/niu_NZ --- a/localedata/locales/niu_NZ 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/niu_NZ 2018-10-13 16:52:32.850375407 +0000 @@ -58,6 +58,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/nl_NL b/localedata/locales/nl_NL --- a/localedata/locales/nl_NL 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/nl_NL 2018-10-13 16:52:32.602374436 +0000 @@ -56,6 +56,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/nr_ZA b/localedata/locales/nr_ZA --- a/localedata/locales/nr_ZA 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/nr_ZA 2018-10-13 16:52:32.918375673 +0000 @@ -64,6 +64,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/oc_FR b/localedata/locales/oc_FR --- a/localedata/locales/oc_FR 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/oc_FR 2018-10-13 16:52:32.818375281 +0000 @@ -54,6 +54,7 @@ copy "i18n" translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/om_KE b/localedata/locales/om_KE --- a/localedata/locales/om_KE 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/om_KE 2018-10-13 16:52:32.918375673 +0000 @@ -156,6 +156,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/or_IN b/localedata/locales/or_IN --- a/localedata/locales/or_IN 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/or_IN 2018-10-13 16:52:32.926375704 +0000 @@ -62,6 +62,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/os_RU b/localedata/locales/os_RU --- a/localedata/locales/os_RU 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/os_RU 2018-10-13 16:52:32.910375641 +0000 @@ -71,6 +71,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/pa_IN b/localedata/locales/pa_IN --- a/localedata/locales/pa_IN 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/pa_IN 2018-10-13 16:52:32.638374577 +0000 @@ -60,6 +60,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/pa_PK b/localedata/locales/pa_PK --- a/localedata/locales/pa_PK 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/pa_PK 2018-10-13 16:52:32.422373732 +0000 @@ -57,6 +57,7 @@ % Farsi yeh -> yeh "" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/pl_PL b/localedata/locales/pl_PL --- a/localedata/locales/pl_PL 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/pl_PL 2018-10-13 16:52:32.502374045 +0000 @@ -130,6 +130,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/pt_PT b/localedata/locales/pt_PT --- a/localedata/locales/pt_PT 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/pt_PT 2018-10-13 16:52:32.910375641 +0000 @@ -58,6 +58,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/quz_PE b/localedata/locales/quz_PE --- a/localedata/locales/quz_PE 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/quz_PE 2018-10-13 16:52:32.470373920 +0000 @@ -55,6 +55,7 @@ copy "i18n" translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ro_RO b/localedata/locales/ro_RO --- a/localedata/locales/ro_RO 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/ro_RO 2018-10-13 16:52:32.646374608 +0000 @@ -142,6 +142,7 @@ "";"" "";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ru_RU b/localedata/locales/ru_RU --- a/localedata/locales/ru_RU 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/ru_RU 2018-10-13 16:52:32.534374170 +0000 @@ -69,6 +69,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/rw_RW b/localedata/locales/rw_RW --- a/localedata/locales/rw_RW 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/rw_RW 2018-10-13 16:52:32.814375265 +0000 @@ -45,6 +45,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/sa_IN b/localedata/locales/sa_IN --- a/localedata/locales/sa_IN 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/sa_IN 2018-10-13 16:52:32.790375171 +0000 @@ -44,6 +44,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/sd_IN b/localedata/locales/sd_IN --- a/localedata/locales/sd_IN 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/sd_IN 2018-10-13 16:52:32.770375093 +0000 @@ -46,6 +46,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/sd_IN@devanagari b/localedata/locales/sd_IN@devanagari --- a/localedata/locales/sd_IN@devanagari 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/sd_IN@devanagari 2018-10-13 16:52:32.818375281 +0000 @@ -44,6 +44,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/se_NO b/localedata/locales/se_NO --- a/localedata/locales/se_NO 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/se_NO 2018-10-13 16:52:32.634374561 +0000 @@ -221,6 +221,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/sgs_LT b/localedata/locales/sgs_LT --- a/localedata/locales/sgs_LT 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/sgs_LT 2018-10-13 16:52:32.810375250 +0000 @@ -58,6 +58,7 @@ copy "i18n" translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/shn_MM b/localedata/locales/shn_MM --- a/localedata/locales/shn_MM 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/shn_MM 2018-10-13 16:52:32.506374060 +0000 @@ -58,6 +58,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/si_LK b/localedata/locales/si_LK --- a/localedata/locales/si_LK 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/si_LK 2018-10-13 16:52:32.814375265 +0000 @@ -44,6 +44,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/sk_SK b/localedata/locales/sk_SK --- a/localedata/locales/sk_SK 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/sk_SK 2018-10-13 16:52:32.418373716 +0000 @@ -67,6 +67,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/sl_SI b/localedata/locales/sl_SI --- a/localedata/locales/sl_SI 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/sl_SI 2018-10-13 16:52:32.486373982 +0000 @@ -2120,6 +2120,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/sm_WS b/localedata/locales/sm_WS --- a/localedata/locales/sm_WS 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/sm_WS 2018-10-13 16:52:32.498374029 +0000 @@ -37,6 +37,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/so_SO b/localedata/locales/so_SO --- a/localedata/locales/so_SO 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/so_SO 2018-10-13 16:52:32.414373701 +0000 @@ -68,6 +68,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/sq_AL b/localedata/locales/sq_AL --- a/localedata/locales/sq_AL 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/sq_AL 2018-10-13 16:52:32.798375203 +0000 @@ -45,6 +45,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ss_ZA b/localedata/locales/ss_ZA --- a/localedata/locales/ss_ZA 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/ss_ZA 2018-10-13 16:52:32.846375391 +0000 @@ -66,6 +66,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/st_ZA b/localedata/locales/st_ZA --- a/localedata/locales/st_ZA 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/st_ZA 2018-10-13 16:52:32.906375626 +0000 @@ -62,6 +62,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/sv_SE b/localedata/locales/sv_SE --- a/localedata/locales/sv_SE 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/sv_SE 2018-10-13 16:52:32.630374546 +0000 @@ -173,6 +173,7 @@ % LATIN SMALL LETTER O WITH STROKE -> "oe" "";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/sw_KE b/localedata/locales/sw_KE --- a/localedata/locales/sw_KE 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/sw_KE 2018-10-13 16:52:32.590374389 +0000 @@ -43,6 +43,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ta_IN b/localedata/locales/ta_IN --- a/localedata/locales/ta_IN 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/ta_IN 2018-10-13 16:52:32.586374374 +0000 @@ -63,6 +63,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/te_IN b/localedata/locales/te_IN --- a/localedata/locales/te_IN 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/te_IN 2018-10-13 16:52:32.642374593 +0000 @@ -63,6 +63,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/th_TH b/localedata/locales/th_TH --- a/localedata/locales/th_TH 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/th_TH 2018-10-13 16:52:32.902375610 +0000 @@ -57,6 +57,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ti_ET b/localedata/locales/ti_ET --- a/localedata/locales/ti_ET 2018-10-13 16:52:32.266373121 +0000 +++ b/localedata/locales/ti_ET 2018-10-13 16:52:32.618374499 +0000 @@ -864,6 +864,7 @@ include "translit_combining";"" +include "translit_cyrillic";"" translit_end % END LC_CTYPE diff -uNr a/localedata/locales/tn_ZA b/localedata/locales/tn_ZA --- a/localedata/locales/tn_ZA 2018-10-13 16:52:32.270373137 +0000 +++ b/localedata/locales/tn_ZA 2018-10-13 16:52:32.882375532 +0000 @@ -67,6 +67,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/to_TO b/localedata/locales/to_TO --- a/localedata/locales/to_TO 2018-10-13 16:52:32.270373137 +0000 +++ b/localedata/locales/to_TO 2018-10-13 16:52:32.822375297 +0000 @@ -36,6 +36,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/tpi_PG b/localedata/locales/tpi_PG --- a/localedata/locales/tpi_PG 2018-10-13 16:52:32.270373137 +0000 +++ b/localedata/locales/tpi_PG 2018-10-13 16:52:32.454373857 +0000 @@ -44,6 +44,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/tr_TR b/localedata/locales/tr_TR --- a/localedata/locales/tr_TR 2018-10-13 16:52:32.274373153 +0000 +++ b/localedata/locales/tr_TR 2018-10-13 16:52:32.662374671 +0000 @@ -2538,6 +2538,7 @@ % TURKISH LIRA SIGN "" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/translit_cyrillic b/localedata/locales/translit_cyrillic --- a/localedata/locales/translit_cyrillic 1970-01-01 00:00:00.000000000 +0000 +++ b/localedata/locales/translit_cyrillic 2018-10-13 16:52:32.942375766 +0000 @@ -0,0 +1,383 @@ +escape_char / +comment_char % + +% This file is part of the GNU C Library and contains locale data. +% The Free Software Foundation does not claim any copyright interest +% in the locale data contained in this file. The foregoing does not +% affect the license of the GNU C Library as a whole. It does not +% exempt you from the conditions of the license if your use would +% otherwise be governed by that license. + +% Transliterations of Cyrillic letters to Latin and/or ASCII symbols. +% Inspired by ISO 9.1995 / GOST 7.79-2000. +% Covers Unicode Range https://www.unicode.org/charts/PDF/U0400.pdf +% i.e. [U0401-U04F9, U2019] but only the letters covered by ISO 9.1995 +% It implements the GOST_7.79 System A (Latin Script) as a first +% option and System B Cyrillic (ASCII) as a second option. Check +% https://en.wikipedia.org/wiki/ISO_9 for reference. +% The System B is extended from GOST_7.79-Russian using open sources +% of the transliteration mappings and the "h/`" diacritics logic. + +% Usage examples: +% iconv -f UTF-8 -t ISO-8859-15//TRANSLIT \ +% | iconv -f ISO-8859-15 -t UTF-8 # System A +% iconv -f UTF-8 -t ASCII//TRANSLIT # System B. + +% Contributions welcome for the rest of Cyrillic script in Unicode +% https://en.wikipedia.org/wiki/Cyrillic_script_in_Unicode. +% Bugfix for https://sourceware.org/bugzilla/show_bug.cgi?id=2872. +% Generated from UnicodeData.txt with a spreadsheet referenced +% in that bug's doclet + +LC_CTYPE + +translit_start + +% CYRILLIC CAPITAL LETTER IO + ;"" +% CYRILLIC CAPITAL LETTER DJE + ;"" +% CYRILLIC CAPITAL LETTER GJE + ;"" +% CYRILLIC CAPITAL LETTER UKRAINIAN IE + ;"" +% CYRILLIC CAPITAL LETTER DZE + ;"" +% CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I + ; +% CYRILLIC CAPITAL LETTER YI + ;"" +% CYRILLIC CAPITAL LETTER JE + ""; +% CYRILLIC CAPITAL LETTER LJE + "";"" +% CYRILLIC CAPITAL LETTER NJE + "";"" +% CYRILLIC CAPITAL LETTER TSHE + ;"" +% CYRILLIC CAPITAL LETTER KJE + ;"" +% CYRILLIC CAPITAL LETTER SHORT U + ;"" +% CYRILLIC CAPITAL LETTER DZHE + "";"" +% CYRILLIC CAPITAL LETTER A + +% CYRILLIC CAPITAL LETTER BE + +% CYRILLIC CAPITAL LETTER VE + +% CYRILLIC CAPITAL LETTER GHE + +% CYRILLIC CAPITAL LETTER DE + +% CYRILLIC CAPITAL LETTER IE + +% CYRILLIC CAPITAL LETTER ZHE + ;"" +% CYRILLIC CAPITAL LETTER ZE + +% CYRILLIC CAPITAL LETTER I + +% CYRILLIC CAPITAL LETTER SHORT I + +% CYRILLIC CAPITAL LETTER KA + +% CYRILLIC CAPITAL LETTER EL + +% CYRILLIC CAPITAL LETTER EM + +% CYRILLIC CAPITAL LETTER EN + +% CYRILLIC CAPITAL LETTER O + +% CYRILLIC CAPITAL LETTER PE + +% CYRILLIC CAPITAL LETTER ER + +% CYRILLIC CAPITAL LETTER ES + +% CYRILLIC CAPITAL LETTER TE + +% CYRILLIC CAPITAL LETTER U + +% CYRILLIC UNDEFINED + ;"" +% CYRILLIC CAPITAL LETTER EF + +% CYRILLIC CAPITAL LETTER HA + ; +% CYRILLIC CAPITAL LETTER TSE + ;"" +% CYRILLIC CAPITAL LETTER CHE + ;"" +% CYRILLIC CAPITAL LETTER SHA + ;"" +% CYRILLIC CAPITAL LETTER SHCHA + ;"" +% CYRILLIC CAPITAL LETTER HARD SIGN + ;"" +% CYRILLIC CAPITAL LETTER YERU + ;"" +% CYRILLIC CAPITAL LETTER SOFT SIGN + ; +% CYRILLIC CAPITAL LETTER E + ;"" +% CYRILLIC CAPITAL LETTER YU + ;"" +% CYRILLIC CAPITAL LETTER YA + ;"" +% CYRILLIC SMALL LETTER A + +% CYRILLIC SMALL LETTER BE + +% CYRILLIC SMALL LETTER VE + +% CYRILLIC SMALL LETTER GHE + +% CYRILLIC SMALL LETTER DE + +% CYRILLIC SMALL LETTER IE + +% CYRILLIC SMALL LETTER ZHE + ;"" +% CYRILLIC SMALL LETTER ZE + +% CYRILLIC SMALL LETTER I + +% CYRILLIC SMALL LETTER SHORT I + +% CYRILLIC SMALL LETTER KA + +% CYRILLIC SMALL LETTER EL + +% CYRILLIC SMALL LETTER EM + +% CYRILLIC SMALL LETTER EN + +% CYRILLIC SMALL LETTER O + +% CYRILLIC SMALL LETTER PE + +% CYRILLIC SMALL LETTER ER + +% CYRILLIC SMALL LETTER ES + +% CYRILLIC SMALL LETTER TE + +% CYRILLIC SMALL LETTER U + +% CYRILLIC UNDEFINED + ;"" +% CYRILLIC SMALL LETTER EF + +% CYRILLIC SMALL LETTER HA + ; +% CYRILLIC SMALL LETTER TSE + ;"" +% CYRILLIC SMALL LETTER CHE + ;"" +% CYRILLIC SMALL LETTER SHA + ;"" +% CYRILLIC SMALL LETTER SHCHA + ;"" +% CYRILLIC SMALL LETTER HARD SIGN + ;"" +% CYRILLIC SMALL LETTER YERU + ;"" +% CYRILLIC SMALL LETTER SOFT SIGN + ; +% CYRILLIC SMALL LETTER E + ;"" +% CYRILLIC SMALL LETTER YU + ;"" +% CYRILLIC SMALL LETTER YA + ;"" +% CYRILLIC SMALL LETTER IO + ;"" +% CYRILLIC SMALL LETTER DJE + ;"" +% CYRILLIC SMALL LETTER GJE + ;"" +% CYRILLIC SMALL LETTER UKRAINIAN IE + ;"" +% CYRILLIC SMALL LETTER DZE + ;"" +% CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I + ; +% CYRILLIC SMALL LETTER YI + ;"" +% CYRILLIC SMALL LETTER JE + ; +% CYRILLIC SMALL LETTER LJE + "";"" +% CYRILLIC SMALL LETTER NJE + "";"" +% CYRILLIC SMALL LETTER TSHE + ;"" +% CYRILLIC SMALL LETTER KJE + ;"" +% CYRILLIC SMALL LETTER SHORT U + ;"" +% CYRILLIC SMALL LETTER DZHE + "";"" +% CYRILLIC CAPITAL LETTER BIG YUS + ;"" +% CYRILLIC SMALL LETTER BIG YUS + ;"" +% CYRILLIC CAPITAL LETTER FITA + "";"" +% CYRILLIC SMALL LETTER FITA + "";"" +% CYRILLIC CAPITAL LETTER IZHITSA + ;"" +% CYRILLIC SMALL LETTER IZHITSA + ;"" +% CYRILLIC CAPITAL LETTER SEMISOFT SIGN + ;"" +% CYRILLIC SMALL LETTER SEMISOFT SIGN + ;"" +% CYRILLIC CAPITAL LETTER GHE WITH UPTURN + "";"" +% CYRILLIC SMALL LETTER GHE WITH UPTURN + "";"" +% CYRILLIC CAPITAL LETTER GHE WITH STROKE + ;"" +% CYRILLIC SMALL LETTER GHE WITH STROKE + ;"" +% CYRILLIC CAPITAL LETTER GHE WITH MIDDLE HOOK + ;"" +% CYRILLIC SMALL LETTER GHE WITH MIDDLE HOOK + ;"" +% CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER + "";"" +% CYRILLIC SMALL LETTER ZHE WITH DESCENDER + "";"" +% CYRILLIC CAPITAL LETTER KA WITH DESCENDER + ;"" +% CYRILLIC SMALL LETTER KA WITH DESCENDER + ;"" +% CYRILLIC CAPITAL LETTER KA WITH STROKE + "";"" +% CYRILLIC SMALL LETTER KA WITH STROKE + "";"" +% CYRILLIC CAPITAL LETTER EN WITH DESCENDER + ;"" +% CYRILLIC SMALL LETTER EN WITH DESCENDER + ;"" +% CYRILLIC CAPITAL LIGATURE EN GHE + ;"" +% CYRILLIC SMALL LIGATURE EN GHE + ;"" +% CYRILLIC CAPITAL LETTER PE WITH MIDDLE HOOK + ;"" +% CYRILLIC SMALL LETTER PE WITH MIDDLE HOOK + ;"" +% CYRILLIC CAPITAL LETTER ABKHASIAN HA + ;"" +% CYRILLIC SMALL LETTER ABKHASIAN HA + ;"" +% CYRILLIC CAPITAL LETTER ES WITH DESCENDER + ;"" +% CYRILLIC SMALL LETTER ES WITH DESCENDER + ;"" +% CYRILLIC CAPITAL LETTER TE WITH DESCENDER + ;"" +% CYRILLIC SMALL LETTER TE WITH DESCENDER + ;"" +% CYRILLIC CAPITAL LETTER STRAIGHT U + ; +% CYRILLIC SMALL LETTER STRAIGHT U + ; +% CYRILLIC CAPITAL LETTER HA WITH DESCENDER + ;"" +% CYRILLIC SMALL LETTER HA WITH DESCENDER + ;"" +% CYRILLIC CAPITAL LIGATURE TE TSE + "";"" +% CYRILLIC SMALL LIGATURE TE TSE + "";"" +% CYRILLIC CAPITAL LETTER SHHA + ;"" +% CYRILLIC SMALL LETTER SHHA + ;"" +% CYRILLIC CAPITAL LETTER ABKHASIAN CHE + "";"" +% CYRILLIC SMALL LETTER ABKHASIAN CHE + "";"" +% CYRILLIC CAPITAL LETTER ABKHASIAN CHE WITH DESCENDER + "";"" +% CYRILLIC SMALL LETTER ABKHASIAN CHE WITH DESCENDER + "";"" +% CYRILLIC LETTER PALOCHKA + ; +% CYRILLIC CAPITAL LETTER ZHE WITH BREVE + "";"" +% CYRILLIC SMALL LETTER ZHE WITH BREVE + "";"" +% CYRILLIC CAPITAL LETTER KHAKASSIAN CHE + ;"" +% CYRILLIC SMALL LETTER KHAKASSIAN CHE + ;"" +% CYRILLIC CAPITAL LETTER A WITH BREVE + ;"" +% CYRILLIC SMALL LETTER A WITH BREVE + ;"" +% CYRILLIC CAPITAL LETTER A WITH DIAERESIS + ;"" +% CYRILLIC SMALL LETTER A WITH DIAERESIS + ;"" +% CYRILLIC CAPITAL LETTER IE WITH BREVE + ;"" +% CYRILLIC SMALL LETTER IE WITH BREVE + ;"" +% CYRILLIC CAPITAL LETTER SCHWA + "";"" +% CYRILLIC SMALL LETTER SCHWA + "";"" +% CYRILLIC CAPITAL LETTER ZHE WITH DIAERESIS + "";"" +% CYRILLIC SMALL LETTER ZHE WITH DIAERESIS + "";"" +% CYRILLIC CAPITAL LETTER ZE WITH DIAERESIS + "";"" +% CYRILLIC SMALL LETTER ZE WITH DIAERESIS + "";"" +% CYRILLIC CAPITAL LETTER ABKHASIAN DZE + ;"" +% CYRILLIC SMALL LETTER ABKHASIAN DZE + ;"" +% CYRILLIC CAPITAL LETTER I WITH DIAERESIS + ;"" +% CYRILLIC SMALL LETTER I WITH DIAERESIS + ;"" +% CYRILLIC CAPITAL LETTER O WITH DIAERESIS + ;"" +% CYRILLIC SMALL LETTER O WITH DIAERESIS + ;"" +% CYRILLIC CAPITAL LETTER BARRED O + ;"" +% CYRILLIC SMALL LETTER BARRED O + ;"" +% CYRILLIC CAPITAL LETTER U WITH DIAERESIS + ;"" +% CYRILLIC SMALL LETTER U WITH DIAERESIS + ;"" +% CYRILLIC CAPITAL LETTER U WITH DOUBLE ACUTE + ;"" +% CYRILLIC SMALL LETTER U WITH DOUBLE ACUTE + ;"" +% CYRILLIC CAPITAL LETTER CHE WITH DIAERESIS + "";"" +% CYRILLIC SMALL LETTER CHE WITH DIAERESIS + "";"" +% CYRILLIC CAPITAL LETTER YERU WITH DIAERESIS + ;"" +% CYRILLIC SMALL LETTER YERU WITH DIAERESIS + ;"" +% RIGHT SINGLE QUOTATION MARK + ; + +translit_end + +END LC_CTYPE diff -uNr a/localedata/locales/ts_ZA b/localedata/locales/ts_ZA --- a/localedata/locales/ts_ZA 2018-10-13 16:52:32.274373153 +0000 +++ b/localedata/locales/ts_ZA 2018-10-13 16:52:32.806375234 +0000 @@ -62,6 +62,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/unm_US b/localedata/locales/unm_US --- a/localedata/locales/unm_US 2018-10-13 16:52:32.274373153 +0000 +++ b/localedata/locales/unm_US 2018-10-13 16:52:32.782375140 +0000 @@ -48,6 +48,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ur_IN b/localedata/locales/ur_IN --- a/localedata/locales/ur_IN 2018-10-13 16:52:32.274373153 +0000 +++ b/localedata/locales/ur_IN 2018-10-13 16:52:32.762375062 +0000 @@ -46,6 +46,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ur_PK b/localedata/locales/ur_PK --- a/localedata/locales/ur_PK 2018-10-13 16:52:32.274373153 +0000 +++ b/localedata/locales/ur_PK 2018-10-13 16:52:32.510374076 +0000 @@ -57,6 +57,7 @@ % Farsi yeh -> yeh "" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/ve_ZA b/localedata/locales/ve_ZA --- a/localedata/locales/ve_ZA 2018-10-13 16:52:32.274373153 +0000 +++ b/localedata/locales/ve_ZA 2018-10-13 16:52:32.854375422 +0000 @@ -65,6 +65,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/vi_VN b/localedata/locales/vi_VN --- a/localedata/locales/vi_VN 2018-10-13 16:52:32.274373153 +0000 +++ b/localedata/locales/vi_VN 2018-10-13 16:52:32.826375313 +0000 @@ -57,6 +57,7 @@ % dong sign -> d// -> dd "";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/wa_BE b/localedata/locales/wa_BE --- a/localedata/locales/wa_BE 2018-10-13 16:52:32.274373153 +0000 +++ b/localedata/locales/wa_BE 2018-10-13 16:52:32.850375407 +0000 @@ -59,6 +59,7 @@ "A";"A";"AU" "a";"a";"au" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/wo_SN b/localedata/locales/wo_SN --- a/localedata/locales/wo_SN 2018-10-13 16:52:32.274373153 +0000 +++ b/localedata/locales/wo_SN 2018-10-13 16:52:32.886375547 +0000 @@ -54,6 +54,7 @@ % Accents are simply omitted if they cannot be represented. include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/xh_ZA b/localedata/locales/xh_ZA --- a/localedata/locales/xh_ZA 2018-10-13 16:52:32.274373153 +0000 +++ b/localedata/locales/xh_ZA 2018-10-13 16:52:32.858375438 +0000 @@ -64,6 +64,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/yi_US b/localedata/locales/yi_US --- a/localedata/locales/yi_US 2018-10-13 16:52:32.274373153 +0000 +++ b/localedata/locales/yi_US 2018-10-13 16:52:32.506374060 +0000 @@ -66,6 +66,7 @@ "";"ww" "";"wj" "";"jj" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/yuw_PG b/localedata/locales/yuw_PG --- a/localedata/locales/yuw_PG 2018-10-13 16:52:32.274373153 +0000 +++ b/localedata/locales/yuw_PG 2018-10-13 16:52:32.494374014 +0000 @@ -40,6 +40,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE diff -uNr a/localedata/locales/zh_CN b/localedata/locales/zh_CN --- a/localedata/locales/zh_CN 2018-10-13 16:52:32.278373168 +0000 +++ b/localedata/locales/zh_CN 2018-10-13 16:52:32.862375454 +0000 @@ -58,6 +58,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end class "hanzi"; / diff -uNr a/localedata/locales/zu_ZA b/localedata/locales/zu_ZA --- a/localedata/locales/zu_ZA 2018-10-13 16:52:32.278373168 +0000 +++ b/localedata/locales/zu_ZA 2018-10-13 16:52:32.886375547 +0000 @@ -68,6 +68,7 @@ translit_start include "translit_combining";"" +include "translit_cyrillic";"" translit_end END LC_CTYPE