Fix bug in generation of .po comments

It was written ".#" but should have been "#." for extracted comments
This commit is contained in:
Kevin Everets 2013-01-24 16:23:54 -05:00 committed by Sebastian Celis
parent d87e00307a
commit d1dc043b3f

View file

@ -81,7 +81,7 @@ module Twine
end
if comment && comment.length > 0
f.print ".# \"#{comment}\"\n"
f.print "#. \"#{comment}\"\n"
end
f.print "msgctxt \"#{key}\"\nmsgid \"#{basetrans}\"\n"