Localized database strings
- by Steve
I have a small Grails application that has the following domain:
class Meal {
String name
String description
String allergyNote
}
For localization purposes the three strings should now be available in multiple languages. For example, while an English user would see name="Steak", a Spanish user should see name="Filete" in the output. I was…