Class: Twine::Formatters::Gettext
Instance Attribute Summary
Attributes inherited from Abstract
#options, #strings
Instance Method Summary
collapse
Methods inherited from Abstract
#escape_quotes, #format_row, #format_section, #format_sections, #initialize, #key_value_pattern, #output_path_for_language, #set_comment_for_key, #set_translation_for_key, #write_all_files, #write_file
Instance Method Details
#can_handle_directory?(path) ⇒ Boolean
14
15
16
|
# File 'lib/twine/formatters/gettext.rb', line 14
def can_handle_directory?(path)
Dir.entries(path).any? { |item| /^.+\.po$/.match(item) }
end
|
#default_file_name ⇒ Object
18
19
20
|
# File 'lib/twine/formatters/gettext.rb', line 18
def default_file_name
return 'strings.po'
end
|
#determine_language_given_path(path) ⇒ Object
22
23
24
25
26
27
28
29
30
31
32
|
# File 'lib/twine/formatters/gettext.rb', line 22
def determine_language_given_path(path)
path_arr = path.split(File::SEPARATOR)
path_arr.each do |segment|
match = /(..)\.po$/.match(segment)
if match
return match[1]
end
end
return
end
|
#extension ⇒ Object
10
11
12
|
# File 'lib/twine/formatters/gettext.rb', line 10
def extension
'.po'
end
|
99
100
101
|
# File 'lib/twine/formatters/gettext.rb', line 99
def format_base_translation(row)
"msgid \"#{row.translations[@default_lang]}\"\n"
end
|
86
87
88
|
# File 'lib/twine/formatters/gettext.rb', line 86
def (row, lang)
"#. \"#{escape_quotes(row.comment)}\"\n" if row.
end
|
67
68
69
70
71
72
|
# File 'lib/twine/formatters/gettext.rb', line 67
def format_file(strings, lang)
@default_lang = strings.language_codes[0]
result = super
@default_lang = nil
result
end
|
74
75
76
|
# File 'lib/twine/formatters/gettext.rb', line 74
def (lang)
"msgid \"\"\nmsgstr \"\"\n\"Language: #{lang}\\n\"\n\"X-Generator: Twine #{Twine::VERSION}\\n\"\n"
end
|
95
96
97
|
# File 'lib/twine/formatters/gettext.rb', line 95
def format_key(key)
"msgctxt \"#{key}\"\n"
end
|
90
91
92
93
|
# File 'lib/twine/formatters/gettext.rb', line 90
def format_key_value(row, lang)
value = row.translated_string_for_lang(lang)
[format_key(row.key.dup), format_base_translation(row), format_value(value.dup)].compact.join
end
|
6
7
8
|
# File 'lib/twine/formatters/gettext.rb', line 6
def format_name
'gettext'
end
|
78
79
80
|
# File 'lib/twine/formatters/gettext.rb', line 78
def (section)
"# SECTION: #{section.name}"
end
|
103
104
105
|
# File 'lib/twine/formatters/gettext.rb', line 103
def format_value(value)
"msgstr \"#{value}\"\n"
end
|
#read_file(path, lang) ⇒ Object
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# File 'lib/twine/formatters/gettext.rb', line 34
def read_file(path, lang)
= /#.? *"(.*)"$/
key_regex = /msgctxt *"(.*)"$/
value_regex = /msgstr *"(.*)"$/m
File.open(path, 'r:UTF-8') do |f|
while item = f.gets("\n\n")
key = nil
value = nil
= nil
= .match(item)
if
= [1]
end
key_match = key_regex.match(item)
if key_match
key = key_match[1].gsub('\\"', '"')
end
value_match = value_regex.match(item)
if value_match
value = value_match[1].gsub(/"\n"/, '').gsub('\\"', '"')
end
if key and key.length > 0 and value and value.length > 0
set_translation_for_key(key, lang, value)
if and .length > 0 and !.start_with?("SECTION:")
(key, )
end
= nil
end
end
end
end
|
#should_include_row(row, lang) ⇒ Object
82
83
84
|
# File 'lib/twine/formatters/gettext.rb', line 82
def should_include_row(row, lang)
super and row.translated_string_for_lang(@default_lang)
end
|