Fix bug in generation of .po comments
It was written ".#" but should have been "#." for extracted comments
This commit is contained in:
parent
d87e00307a
commit
d1dc043b3f
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
|
Reference in a new issue