new(msgid, options = {})
public
Creates a PO entry for
msgid. Other valus can be specified by options.
# File lib/rdoc/generator/pot/po_entry.rb, line 28
def initialize msgid, options = {}
@msgid = msgid
@msgstr = options[:msgstr] || ""
@translator_comment = options[:translator_comment]
@extracted_comment = options[:extracted_comment]
@references = options[:references] || []
@flags = options[:flags] || []
end