Github user theigl commented on a diff in the pull request:
https://github.com/apache/wicket/pull/246#discussion_r151946459
--- Diff:
wicket-bean-validation/src/main/java/org/apache/wicket/bean/validation/PropertyValidator_fr.properties.xml
---
@@ -26,6 +26,8 @@
<entry key="javax.validation.constraints.Max.message">Le champ
'${label}' doit être inférieur ou égal à ${value}</entry>
<entry key="javax.validation.constraints.Min.message">Le champ
'${label}' doit être supérieur ou égal à ${value}</entry>
<entry key="javax.validation.constraints.NotNull.message">Le champ
'${label}' ne doit pas être null</entry>
+ <entry key="javax.validation.constraints.NotBlank.message">Le champ
'${label}' ne peut pas être vide</entry>
--- End diff --
We should probably copy the properties from the HV implementation:
https://github.com/hibernate/hibernate-validator/tree/master/engine/src/main/resources/org/hibernate/validator
---