I need to make an internationalized (English and Arabic) application in grails, but I am facing some problems, for instance I got a domain named Students got the below fields: view plaincopy to clipboardprint?
Note: Text content in the code blocks is automatically word-wrapped
class Students
{
String firstName
String lastName
}
In the views I want the above fields to be shown according to the language that the user selected in the welcome page.
I already made the part of language selection, but how the another part can be achieved?