X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/bb214eebc260382cd6163ad581a7eae37c82bd57..34e3e51456774127d43408b7ab65c24f41373f62:/script/locale/po2yaml?ds=sidebyside diff --git a/script/locale/po2yaml b/script/locale/po2yaml index f2d2eb97c..e181bf3d5 100755 --- a/script/locale/po2yaml +++ b/script/locale/po2yaml @@ -24,13 +24,13 @@ def po2hash(f) path = [] msgstr = '' f.each_line { |line| - line = line.strip + line.strip! if line[0..8] == 'msgctxt "' path = line[9..-2].split(':') elsif line[0..7] == 'msgstr "' msgstr = line[8..-2] end - + if !path.empty? and !msgstr.empty? add_translation(trs, path, msgstr) path = []