Added fallback support for simplified chinese.

This commit is contained in:
Abel Pascual 2021-07-09 09:33:58 +02:00
parent df60ce8e68
commit 790e3f7b3e

View file

@ -13,6 +13,7 @@ module Twine
def fallback_languages(language)
fallback_mapping = {
'zh-CN' => 'zh-Hans', # if we don't have a zh-CN translation, try zh-Hans before en
'zh-TW' => 'zh-Hant' # if we don't have a zh-TW translation, try zh-Hant before en
}