Merge pull request #276 from jonasrottmann/fix/android-output-path
Android output path for default language
This commit is contained in:
commit
bc4bd7daf0
2 changed files with 12 additions and 1 deletions
|
@ -41,7 +41,11 @@ module Twine
|
|||
end
|
||||
|
||||
def output_path_for_language(lang)
|
||||
"values-#{lang}".gsub(/-(\p{Lu})/, '-r\1')
|
||||
if lang == @twine_file.language_codes[0]
|
||||
"values"
|
||||
else
|
||||
"values-#{lang}".gsub(/-(\p{Lu})/, '-r\1')
|
||||
end
|
||||
end
|
||||
|
||||
def set_translation_for_key(key, lang, value)
|
||||
|
|
|
@ -231,6 +231,13 @@ class TestAndroidFormatter < FormatterTest
|
|||
def test_output_path_with_region
|
||||
assert_equal 'values-en-rGB', @formatter.output_path_for_language('en-GB')
|
||||
end
|
||||
|
||||
def test_output_path_respects_default_lang
|
||||
@formatter.twine_file.language_codes.concat KNOWN_LANGUAGES
|
||||
non_default_language = KNOWN_LANGUAGES[1..-1].sample
|
||||
assert_equal 'values', @formatter.output_path_for_language(KNOWN_LANGUAGES[0])
|
||||
assert_equal "values-#{non_default_language}", @formatter.output_path_for_language(non_default_language)
|
||||
end
|
||||
end
|
||||
|
||||
class TestAppleFormatter < FormatterTest
|
||||
|
|
Reference in a new issue