From a7ac82aab7857dc0aa3c437e3e3c1146af93405e Mon Sep 17 00:00:00 2001 From: Sebastian Ludwig Date: Sat, 28 Nov 2015 14:37:20 +0100 Subject: [PATCH] Adapted Gettext formatter to the modular style. --- lib/twine/formatters/gettext.rb | 69 ++++++++++++++---------------- test/fixtures/formatter_gettext.po | 1 - 2 files changed, 31 insertions(+), 39 deletions(-) diff --git a/lib/twine/formatters/gettext.rb b/lib/twine/formatters/gettext.rb index d76c4c3..afdc52a 100644 --- a/lib/twine/formatters/gettext.rb +++ b/lib/twine/formatters/gettext.rb @@ -60,50 +60,43 @@ module Twine end end - def write_file(path, lang) - default_lang = @strings.language_codes[0] - encoding = @options[:output_encoding] || 'UTF-8' - File.open(path, "w:#{encoding}") do |f| - f.puts "msgid \"\"\nmsgstr \"\"\n\"Language: #{lang}\\n\"\n\"X-Generator: Twine #{Twine::VERSION}\\n\"\n\n" - @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 "# SECTION: #{section_name}" - end - printed_section = true - end + def format_file(strings, lang) + @default_lang = strings.language_codes[0] + super + end - basetrans = row.translated_string_for_lang(default_lang) + def format_header(lang) + "msgid \"\"\nmsgstr \"\"\n\"Language: #{lang}\\n\"\n\"X-Generator: Twine #{Twine::VERSION}\\n\"\n" + end - if basetrans - key = row.key - key = key.gsub('"', '\\\\"') + def format_section_header(section) + "# SECTION: #{section.name}" + end - comment = row.comment - if comment - comment = comment.gsub('"', '\\\\"') - end + def format_row(row, lang) + return nil unless row.translated_string_for_lang(@default_lang) - if comment && comment.length > 0 - f.print "#. \"#{comment}\"\n" - end + value = row.translated_string_for_lang(lang) - f.print "msgctxt \"#{key}\"\nmsgid \"#{basetrans}\"\n" - value = row.translated_string_for_lang(lang) - if value - value = value.gsub('"', '\\\\"') - end - f.print "msgstr \"#{value}\"\n\n" - end - end - end - end + return nil unless value + + result = "" + if row.comment + comment = format_comment(row.comment) + result += comment + "\n" if comment end + + result += "msgctxt \"#{format_key(row.key.dup)}\"\n" + result += "msgid \"#{format_value(row.translations[@default_lang])}\"\n" + result += "msgstr \"#{format_value(value)}\"\n" + end + + def format_comment(comment) + "#. \"#{escape_quotes(comment)}\"" + end + + def escape_quotes(text) + text.gsub('"', '\\\\"') end end end diff --git a/test/fixtures/formatter_gettext.po b/test/fixtures/formatter_gettext.po index b89adc0..c2bda5c 100644 --- a/test/fixtures/formatter_gettext.po +++ b/test/fixtures/formatter_gettext.po @@ -24,4 +24,3 @@ msgstr "value3-english" msgctxt "key4" msgid "value4-english" msgstr "value4-english" -