# File lib/locale/tag/simple.rb, line 44
      def self.parse(tag)
        if tag =~ TAG_RE
          ret = self.new($1, $2)
          ret.tag = tag
          ret
        else
          nil
        end
      end