module GetText

Public Instance Methods

rbot_gettext_debug() click to toggle source

This method is used to output debug information on the GetText textdomain, and it’s called by the language setting routines in rbot

# File lib/rbot/load-gettext.rb, line 64
def rbot_gettext_debug
  begin
    gettext_info = StringIO.new
    current_textdomain_info(:out => gettext_info) # fails sometimes
  rescue Exception
    warning "gettext failed to set call textdomain info. maybe an mo file doesn't exist for your locale."
  ensure
    gettext_info.string.each_line { |l| debug l}
  end
end