# File lib/rbot/core/auth.rb, line 338
  def auth_whoami(m, params)
    m.reply _("you are %{who}") % {
      :who => get_botusername_for(m.source).gsub(
                /^everyone$/, _("no one that I know")).gsub(
                /^owner$/, _("my boss"))
    }
  end