Removed now unneeded iosify_substitutions.
This commit is contained in:
parent
0fdceca20d
commit
923e327efa
2 changed files with 0 additions and 7 deletions
|
@ -16,12 +16,6 @@ module Twine
|
|||
@output_processor = Processors::OutputProcessor.new @strings, @options
|
||||
end
|
||||
|
||||
def iosify_substitutions(str)
|
||||
# use "@" instead of "s" for substituting strings
|
||||
str.gsub!(/%([0-9\$]*)s/, '%\1@')
|
||||
return str
|
||||
end
|
||||
|
||||
def set_translation_for_key(key, lang, value)
|
||||
if @strings.strings_map.include?(key)
|
||||
row = @strings.strings_map[key]
|
||||
|
|
|
@ -68,7 +68,6 @@ module Twine
|
|||
key.gsub!('\\"', '"')
|
||||
value = match[2]
|
||||
value.gsub!('\\"', '"')
|
||||
value = iosify_substitutions(value)
|
||||
set_translation_for_key(key, lang, value)
|
||||
if last_comment
|
||||
set_comment_for_key(key, last_comment)
|
||||
|
|
Reference in a new issue