# File lib/gettext/textdomain.rb, line 117 def gettext(msgid) return "" if msgid == "" or msgid.nil? if @current_mo and @current_mo[msgid] and (@current_mo[msgid].size > 0) @current_mo[msgid] else nil end end