> > Massimo, I have looked at the file none of them have it. > > IE: > IS_URL error_message='enter a valid URL' > IS_HTTP_URL error_message='enter a valid URL' >
The error messages are not translated when specified as an argument to
__init__, they are translated when they are actually returned by the
__call__ method:
def __call__(self, value):
[validation code]
return (value, translate(self.error_message)
Anthony

