def plural(word)
      return "" if word == ""
      if result = plural_of[word]
        return result.dup
      end