Fixed #155 by removing mapping from zh to zh-Hans in Android formatter.
This commit is contained in:
parent
b47ab9369b
commit
f4cbf08122
2 changed files with 10 additions and 2 deletions
|
@ -11,7 +11,6 @@ module Twine
|
|||
'zh-rCN' => 'zh-Hans',
|
||||
'zh-rHK' => 'zh-Hant',
|
||||
'en-rGB' => 'en-UK',
|
||||
'zh' => 'zh-Hans',
|
||||
'in' => 'id',
|
||||
'nb' => 'no'
|
||||
# TODO: spanish
|
||||
|
|
|
@ -122,7 +122,16 @@ class TestAndroidFormatter < FormatterTest
|
|||
end
|
||||
|
||||
def test_output_path_language_mappings
|
||||
assert_equal 'values-zh-rCN', @formatter.output_path_for_language('zh-Hans')
|
||||
mappings = {
|
||||
'zh-Hans' => 'zh-rCN',
|
||||
'zh-Hant' => 'zh-rHK',
|
||||
'en-UK' => 'en-rGB',
|
||||
'id' => 'in',
|
||||
'no' => 'nb'
|
||||
}
|
||||
mappings.each do |lang, output_path|
|
||||
assert_equal "values-#{output_path}", @formatter.output_path_for_language(lang)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Reference in a new issue