Replace Android %s with iOS %@ in generated strings #7

Merged
biodranik merged 1 commit from format-for-ios into organicmaps 2023-05-19 20:58:32 +00:00
2 changed files with 8 additions and 1 deletions

View file

@ -1,6 +1,8 @@
module Twine module Twine
module Formatters module Formatters
class Apple < Abstract class Apple < Abstract
include Twine::Placeholders
def format_name def format_name
'apple' 'apple'
end end
@ -84,6 +86,8 @@ module Twine
end end
def format_value(value) def format_value(value)
# Replace Android's %s with iOS %@
value = convert_placeholders_from_android_to_twine(value)
escape_quotes(value) escape_quotes(value)
end end

View file

@ -1,6 +1,8 @@
module Twine module Twine
module Formatters module Formatters
class ApplePlural < Apple class ApplePlural < Apple
include Twine::Placeholders
SUPPORTS_PLURAL = true SUPPORTS_PLURAL = true
def format_name def format_name
@ -42,7 +44,8 @@ module Twine
result += "#{tab(4)}<key>value</key>\n#{tab(4)}<dict>\n" result += "#{tab(4)}<key>value</key>\n#{tab(4)}<dict>\n"
result += "#{tab(6)}<key>NSStringFormatSpecTypeKey</key>\n#{tab(6)}<string>NSStringPluralRuleType</string>\n" result += "#{tab(6)}<key>NSStringFormatSpecTypeKey</key>\n#{tab(6)}<string>NSStringPluralRuleType</string>\n"
result += "#{tab(6)}<key>NSStringFormatValueTypeKey</key>\n#{tab(6)}<string>d</string>\n" result += "#{tab(6)}<key>NSStringFormatValueTypeKey</key>\n#{tab(6)}<string>d</string>\n"
result += plural_hash.map{|quantity,value| "#{tab(6)}<key>#{quantity}</key>\n#{tab(6)}<string>#{value}</string>"}.join("\n") # Replace Android's %s with iOS %@
result += plural_hash.map{|quantity,value| "#{tab(6)}<key>#{quantity}</key>\n#{tab(6)}<string>#{convert_placeholders_from_android_to_twine(value)}</string>"}.join("\n")
result += "\n#{tab(4)}</dict>\n#{tab(2)}</dict>\n" result += "\n#{tab(4)}</dict>\n#{tab(2)}</dict>\n"
end end