My question refers to validation in a Model class. I know how to basically do validation, but I've though got a question about it.
I'd like to now if it is possible to use a alias in validation? Because it should display a german message, and mixed up with my English database field name it looks really strange.
So, without an alias my code in the model class would be
@Equals("password")
@Required
public String passwordConfirm;
So password has to equal with passwordConfirm (passwordConfirm = "Bestätigung des Passworts" in German, password="Passwort" :) Which would print, if a error occurs: "Bestätigung des Passworts muss mit password übereinstimmen." (should be "Passwort", not "password")
So do I need to define an alias or something, or how could this work?
greetings
germanremoved as part of the 2012 cleanup. – Abhranil Das Apr 30 '12 at 12:15