diff options
author | David Tardon <dtardon@redhat.com> | 2017-11-12 18:46:48 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-11-17 00:17:04 +0100 |
commit | f643e1f687e27e7f46c53d7298772d4dddb3e660 (patch) | |
tree | 77cebb05db0f987d63b2363e95b5afefc9dec88e /i18nutil | |
parent | 26ea47b7217053efb5eaa20f76b8895d29ae1f18 (diff) |
Upgrade to ICU 60.1
Change-Id: I07837be7faac0b2238b0cba8fb981e4c4d24c498
Diffstat (limited to 'i18nutil')
-rw-r--r-- | i18nutil/source/utility/unicode.cxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/i18nutil/source/utility/unicode.cxx b/i18nutil/source/utility/unicode.cxx index 94abe5220f84..0173a4ad5fbf 100644 --- a/i18nutil/source/utility/unicode.cxx +++ b/i18nutil/source/utility/unicode.cxx @@ -716,6 +716,17 @@ OString SAL_CALL unicode::getExemplarLanguageForUScriptCode(UScriptCode eScript) sRet = "mis"; // Zsye - Emoji variant break; #endif +#if (U_ICU_VERSION_MAJOR_NUM >= 60) + case USCRIPT_MASARAM_GONDI: + sRet = "gon-Gonm"; // macro language code, could be wsg,esg,gno + break; + case USCRIPT_SOYOMBO: + sRet = "mn-Soyo"; // abugida to write Mongolian, also Tibetan and Sanskrit + break; + case USCRIPT_ZANABAZAR_SQUARE: + sRet = "mn-Zanb"; // abugida to write Mongolian + break; +#endif } return sRet; } |