When reading in a file, if language_code doesn't already exist then add it to the list
This commit is contained in:
parent
1e73ac7d85
commit
0918b65308
1 changed files with 4 additions and 0 deletions
|
@ -108,6 +108,10 @@ module Twine
|
|||
raise Twine::Error.new "Unable to determine language for #{path}"
|
||||
end
|
||||
|
||||
if !@strings.language_codes.include? lang
|
||||
@strings.language_codes << lang
|
||||
end
|
||||
|
||||
if is_read
|
||||
formatter.read_file(path, lang, @strings)
|
||||
else
|
||||
|
|
Reference in a new issue