Tune whitespacing settings to be compatible with Weblate
Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
parent
649967b71e
commit
1b9aaf5a59
4 changed files with 15 additions and 15 deletions
|
@ -103,7 +103,7 @@ module Twine
|
|||
|
||||
header = format_header(lang)
|
||||
result = ""
|
||||
result += header + "\n" if header
|
||||
result += header if header
|
||||
result += format_sections(processed_twine_file, lang)
|
||||
end
|
||||
|
||||
|
@ -130,7 +130,7 @@ module Twine
|
|||
|
||||
if section.name && section.name.length > 0
|
||||
section_header = format_section_header(section)
|
||||
result += "\n#{section_header}" if section_header
|
||||
result += "#{section_header}" if section_header
|
||||
end
|
||||
|
||||
definitions.map! { |definition| format_definition(definition, lang) }
|
||||
|
|
|
@ -94,33 +94,33 @@ module Twine
|
|||
end
|
||||
|
||||
def format_header(lang)
|
||||
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Android Strings File -->\n<!-- Generated by Twine #{Twine::VERSION} -->\n<!-- Language: #{lang} -->"
|
||||
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Android Strings File --><!-- Generated by Twine #{Twine::VERSION} --><!-- Language: #{lang} -->"
|
||||
end
|
||||
|
||||
def format_sections(twine_file, lang)
|
||||
result = '<resources>'
|
||||
result = "<resources>\n"
|
||||
|
||||
result += super + "\n"
|
||||
|
||||
result += "</resources>\n"
|
||||
result += "</resources>"
|
||||
end
|
||||
|
||||
def format_section_header(section)
|
||||
"\t<!-- SECTION: #{section.name} -->"
|
||||
" <!-- SECTION: #{section.name} -->"
|
||||
end
|
||||
|
||||
def format_comment(definition, lang)
|
||||
"\t<!-- #{definition.comment.gsub('--', '—')} -->\n" if definition.comment
|
||||
" <!-- #{definition.comment.gsub('--', '—')} -->\n" if definition.comment
|
||||
end
|
||||
|
||||
def key_value_pattern
|
||||
"\t<string name=\"%{key}\">%{value}</string>"
|
||||
" <string name=\"%{key}\">%{value}</string>"
|
||||
end
|
||||
|
||||
def format_plural_keys(key, plural_hash)
|
||||
result = "\t<plurals name=\"#{key}\">\n"
|
||||
result += plural_hash.map{|quantity,value| "\t#{' ' * 2}<item quantity=\"#{quantity}\">#{escape_value(value)}</item>"}.join("\n")
|
||||
result += "\n\t</plurals>"
|
||||
result = " <plurals name=\"#{key}\">\n"
|
||||
result += plural_hash.map{|quantity,value| " #{' ' * 4}<item quantity=\"#{quantity}\">#{escape_value(value)}</item>"}.join("\n")
|
||||
result += "\n </plurals>"
|
||||
end
|
||||
|
||||
def gsub_unless(text, pattern, replacement)
|
||||
|
|
|
@ -68,15 +68,15 @@ module Twine
|
|||
end
|
||||
|
||||
def format_section_header(section)
|
||||
"/********** #{section.name} **********/\n"
|
||||
"\n\n/********** #{section.name} **********/\n"
|
||||
end
|
||||
|
||||
def key_value_pattern
|
||||
"\"%{key}\" = \"%{value}\";\n"
|
||||
"\"%{key}\" = \"%{value}\";"
|
||||
end
|
||||
|
||||
def format_comment(definition, lang)
|
||||
"/* #{definition.comment.gsub('*/', '* /')} */\n" if definition.comment
|
||||
"\n/* #{definition.comment.gsub('*/', '* /')} */\n" if definition.comment
|
||||
end
|
||||
|
||||
def format_key(key)
|
||||
|
|
|
@ -28,7 +28,7 @@ module Twine
|
|||
header = "<!--\n * Apple Stringsdict File\n * Generated by Twine #{Twine::VERSION}\n * Language: #{lang} -->\n"
|
||||
header += "<\?xml version=\"1.0\" encoding=\"UTF-8\"\?>\n"
|
||||
header += "<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n"
|
||||
header += "<plist version=\"1.0\">\n<dict>"
|
||||
header += "<plist version=\"1.0\">\n<dict>\n"
|
||||
end
|
||||
|
||||
def format_section_header(section)
|
||||
|
|
Reference in a new issue