When reading in a file, if language_code doesn't already exist then add it to the list

This commit is contained in:
Kevin Everets 2012-02-08 17:18:09 -05:00
parent 1e73ac7d85
commit 0918b65308

View file

@ -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