class RDoc::Generator::POT::PO

Generates a PO format text

Public Class Methods

new() click to toggle source

Creates an object that represents PO format.

# File rdoc/generator/pot/po.rb, line 10
def initialize
  @entries = {}
  add_header
end

Public Instance Methods

add(entry) click to toggle source

Adds a PO entry to the PO.

# File rdoc/generator/pot/po.rb, line 18
def add entry
  existing_entry = @entries[entry.msgid]
  if existing_entry
    entry = existing_entry.merge(entry)
  end
  @entries[entry.msgid] = entry
end
to_s() click to toggle source

Returns PO format text for the PO.

# File rdoc/generator/pot/po.rb, line 29
def to_s
  po = ''
  sort_entries.each do |entry|
    po += "\n" unless po.empty?
    po += entry.to_s
  end
  po
end