diff options
author | Eike Rathke <erack@redhat.com> | 2018-07-16 15:20:32 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2018-07-16 17:36:35 +0200 |
commit | 86dfa34c6d83b70923d462fecad316dafd9a1fc4 (patch) | |
tree | e9b9849ac02b63e110733effe6927a13cb35c6fb /i18nutil | |
parent | f543b6a0ac6cf30922c1a1ae9bfce1d605f1d4f1 (diff) |
Upgrade to ICU 62.1
Change-Id: I9426e77aa85cfe068df59db47b8ac50b59cd4eb3
Reviewed-on: https://gerrit.libreoffice.org/57500
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins
Diffstat (limited to 'i18nutil')
-rw-r--r-- | i18nutil/source/utility/unicode.cxx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/i18nutil/source/utility/unicode.cxx b/i18nutil/source/utility/unicode.cxx index 6d90b15ca42e..876750d6119d 100644 --- a/i18nutil/source/utility/unicode.cxx +++ b/i18nutil/source/utility/unicode.cxx @@ -727,6 +727,29 @@ OString unicode::getExemplarLanguageForUScriptCode(UScriptCode eScript) sRet = "mn-Zanb"; // abugida to write Mongolian break; #endif +#if (U_ICU_VERSION_MAJOR_NUM >= 62) + case USCRIPT_DOGRA: + sRet = "dgo"; // Dogri proper + break; + case USCRIPT_GUNJALA_GONDI: + sRet = "wsg"; // Adilabad Gondi + break; + case USCRIPT_MAKASAR: + sRet = "mak"; + break; + case USCRIPT_MEDEFAIDRIN: + sRet = "mis-Medf"; // Uncoded with script + break; + case USCRIPT_HANIFI_ROHINGYA: + sRet = "rhg"; + break; + case USCRIPT_SOGDIAN: + sRet = "sog"; + break; + case USCRIPT_OLD_SOGDIAN: + sRet = "sog"; + break; +#endif } return sRet; } |