Github user theigl commented on a diff in the pull request:
https://github.com/apache/wicket/pull/246#discussion_r151930203
--- 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 --
A couple of other annotations have been added to [BV
2.0](http://beanvalidation.org/2.0/) as well:
> new built-in constraints: @Email, @NotEmpty, @NotBlank, @Positive,
@PositiveOrZero, @Negative, @NegativeOrZero, @PastOrPresent and @FutureOrPresent
@solomax: Should we add translations for these new constraints?
---