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