def singular(word)
      return "" if word == ""
      if result = singular_of[word]
        return result.dup
      end