Move the row_matches_tag method to stringsfile.rb.
This commit is contained in:
parent
0918b65308
commit
6612d01e48
4 changed files with 19 additions and 18 deletions
|
@ -34,22 +34,6 @@ module Twine
|
|||
end
|
||||
end
|
||||
|
||||
def row_matches_tags?(row, tags)
|
||||
if tags == nil || tags.length == 0
|
||||
return true
|
||||
end
|
||||
|
||||
if tags != nil && row.tags != nil
|
||||
tags.each do |tag|
|
||||
if row.tags.include? tag
|
||||
return true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
return false
|
||||
end
|
||||
|
||||
def translated_string_for_row_and_lang(row, lang, default_lang)
|
||||
row.translations[lang] || row.translations[default_lang]
|
||||
end
|
||||
|
|
|
@ -76,7 +76,7 @@ module Twine
|
|||
strings.sections.each do |section|
|
||||
printed_section = false
|
||||
section.rows.each do |row|
|
||||
if row_matches_tags?(row, tags)
|
||||
if row.matches_tags?(tags)
|
||||
unless printed_section
|
||||
f.puts ''
|
||||
if section.name && section.name.length > 0
|
||||
|
|
|
@ -51,7 +51,7 @@ module Twine
|
|||
strings.sections.each do |section|
|
||||
printed_section = false
|
||||
section.rows.each do |row|
|
||||
if row_matches_tags?(row, tags)
|
||||
if row.matches_tag?(tags)
|
||||
unless printed_section
|
||||
f.puts ''
|
||||
if section.name && section.name.length > 0
|
||||
|
|
|
@ -21,6 +21,23 @@ module Twine
|
|||
@tags = nil
|
||||
@translations = {}
|
||||
end
|
||||
|
||||
def matches_tags?(tags)
|
||||
# The user did not specify any tags. Everything passes.
|
||||
if tags == nil || tags.length == 0
|
||||
return true
|
||||
end
|
||||
|
||||
if tags != nil && @tags != nil
|
||||
tags.each do |tag|
|
||||
if @tags.include? tag
|
||||
return true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
||||
class StringsFile
|
||||
|
|
Reference in a new issue