You should and can not put JSF tags in the message. Also, JSF's own resource bundle won't be used to resolve localized validation messages. JSR303 bean validation is a completely separate API unrelated to JSF.
To internationalize JSR303 bean validation messages, you need to create a separate ValidationMessages.properties
file in the classpath root which can be localized by ValidationMessages_xx_XX.properties
files.
E.g.
ERVNomView=Your message here
Which is then to be specified with {key}
syntax.
@NotEmpty(message="{ERVNomView}")
See also: