Merge pull request #304 from apascual/main

Fixed fallback language support and included simplified Chinese
This commit is contained in:
Sebastian Celis 2021-07-12 09:38:00 -05:00 committed by GitHub
commit 304b3ec63f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

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
}

View file

@ -44,7 +44,7 @@ module Twine
end
def translation_for_lang(lang)
translation = [lang].flatten.map { |l| @translations[l] }.first
translation = [lang].flatten.map { |l| @translations[l] }.compact.first
translation = reference.translation_for_lang(lang) if translation.nil? && reference