Merge pull request #304 from apascual/main
Fixed fallback language support and included simplified Chinese
This commit is contained in:
commit
304b3ec63f
2 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Reference in a new issue