From 1d99549849bea52228ed11ec603d1227d29b00fe Mon Sep 17 00:00:00 2001 From: Sebastian Ludwig Date: Sat, 28 Nov 2015 14:59:51 +0100 Subject: [PATCH] Adapted Tizen formatter to the modular style. --- lib/twine/formatters/tizen.rb | 84 ++++++++++++++--------------------- 1 file changed, 33 insertions(+), 51 deletions(-) diff --git a/lib/twine/formatters/tizen.rb b/lib/twine/formatters/tizen.rb index d020c77..ef559fb 100644 --- a/lib/twine/formatters/tizen.rb +++ b/lib/twine/formatters/tizen.rb @@ -111,64 +111,46 @@ module Twine end end - def write_file(path, lang) - default_lang = nil - if DEFAULT_LANG_CODES.has_key?(lang) - default_lang = DEFAULT_LANG_CODES[lang] - end - File.open(path, 'w:UTF-8') do |f| - f.puts "\n\n\n" - f.write '' - @strings.sections.each do |section| - printed_section = false - section.rows.each do |row| - if row.matches_tags?(@options[:tags], @options[:untagged]) - if !printed_section - f.puts '' - if section.name && section.name.length > 0 - section_name = section.name.gsub('--', '—') - f.puts "\t" - end - printed_section = true - end + def format_header(lang) + "\n\n\n" + end - key = row.key + def format_sections(strings, lang) + result = '' + + result += super + "\n" - value = row.translated_string_for_lang(lang, default_lang) - if !value && !@options[:exclude_untranslated] - value = row.translated_string_for_lang(@strings.language_codes[0]) - end + result += '' + end - if value # if values is nil, there was no appropriate translation, so let Tizen handle the defaulting - value = String.new(value) # use a copy to prevent modifying the original + def format_section_header(section) + "\t" + end - # Tizen enforces the following rules on the values - # 1) apostrophes and quotes must be escaped with a backslash - value.gsub!('\'', '\\\\\'') - value.gsub!('"', '\\\\"') - # 2) HTML escape the string - value = CGI.escapeHTML(value) - # 3) fix substitutions (e.g. %s/%@) - value = androidify_substitutions(value) - # 4) replace beginning and end spaces with \0020. Otherwise Tizen strips them. - value.gsub!(/\A *| *\z/) { |spaces| '\u0020' * spaces.length } + def format_comment(comment) + "\t" + end - comment = row.comment - if comment - comment = comment.gsub('--', '—') - end + def key_value_pattern + "\t%{value}" + end - if comment && comment.length > 0 - f.puts "\t\n" - end - f.puts "\t#{value}" - end - end - end - end + def format_key(key) + key.upcase + end - f.puts '' - end + def format_value(value) + value = value.dup + # Tizen enforces the following rules on the values + # 1) apostrophes and quotes must be escaped with a backslash + value.gsub!("'", "\\\\'") + value.gsub!('"', '\\\\"') + # 2) HTML escape the string + value = CGI.escapeHTML(value) + # 3) fix substitutions (e.g. %s/%@) + value = androidify_substitutions(value) + # 4) replace beginning and end spaces with \0020. Otherwise Tizen strips them. + value.gsub(/\A *| *\z/) { |spaces| '\u0020' * spaces.length } end end end