Fixed plural escaping
This commit is contained in:
parent
38f1761ac9
commit
649967b71e
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ module Twine
|
|||
|
||||
def format_plural_keys(key, plural_hash)
|
||||
result = "\t<plurals name=\"#{key}\">\n"
|
||||
result += plural_hash.map{|quantity,value| "\t#{' ' * 2}<item quantity=\"#{quantity}\">#{value}</item>"}.join("\n")
|
||||
result += plural_hash.map{|quantity,value| "\t#{' ' * 2}<item quantity=\"#{quantity}\">#{escape_value(value)}</item>"}.join("\n")
|
||||
result += "\n\t</plurals>"
|
||||
end
|
||||
|
||||
|
|
Reference in a new issue