def select_plural_adj(adj, subject): """Select the proper version of an adjective.""" # FIXME is this correct? or is it count-based? return Filters.select_plural_adj(adj, subject)
def select_plural_verb(verb, subject): """select the proper plural verb.""" # FIXME is this a duplicate of select_pluralize??? return Filters.select_plural_verb(verb, subject)
def select_conjunction(wordlist): """Join a list with commas and such.""" return Filters.select_conjunction(wordlist)
def select_pluralize(verb, count): """Select the proper verb for a count.""" return Filters.select_pluralize(verb, count)
def select_article(noun): """Select the proper article for a noun.""" return Filters.select_article(noun)
def select_uppercase(word): """Switch the word to uppercase""" return Filters.select_uppercase(word)