Given the following Grails Domain Classes, how do I go about renaming the displayed field name for isbn to be "ISBN" (as opposed to the default "Isbn") and authors to be "Author(s)" (as opposed to the default "Authors")?
class Book {
String name
String isbn
static hasMany = [ authors: Author ]
}
class Author {
String name
}