# File lib/gettext/mo.rb, line 71
  def load(arg)
    if arg.kind_of? String
      begin
        st = File.stat(arg)
        @last_modified = [st.ctime, st.mtime]
      rescue Exception
      end
      load_from_file(arg)
    else
      load_from_stream(arg)
    end
    @filename = arg
    self
  end