diff --git a/ConstraintValidator.php b/ConstraintValidator.php
index 458351fe2..db0ccb60a 100644
--- a/ConstraintValidator.php
+++ b/ConstraintValidator.php
@@ -21,8 +21,8 @@
abstract class ConstraintValidator implements ConstraintValidatorInterface
{
/**
- * Whether to format {@link \DateTime} objects as RFC-3339 dates
- * ("Y-m-d H:i:s").
+ * Whether to format {@link \DateTime} objects, either with the {@link \IntlDateFormatter}
+ * (if it is available) or as RFC-3339 dates ("Y-m-d H:i:s").
*/
const PRETTY_DATE = 1;
@@ -69,7 +69,8 @@ protected function formatTypeOf($value)
* in double quotes ("). Objects, arrays and resources are formatted as
* "object", "array" and "resource". If the $format bitmask contains
* the PRETTY_DATE bit, then {@link \DateTime} objects will be formatted
- * as RFC-3339 dates ("Y-m-d H:i:s").
+ * with the {@link \IntlDateFormatter}. If it is not available, they will be
+ * formatted as RFC-3339 dates ("Y-m-d H:i:s").
*
* Be careful when passing message parameters to a constraint violation
* that (may) contain objects, arrays or resources. These parameters
diff --git a/Resources/translations/validators.de.xlf b/Resources/translations/validators.de.xlf
index 0702e8dfc..a546b86c7 100644
--- a/Resources/translations/validators.de.xlf
+++ b/Resources/translations/validators.de.xlf
@@ -370,6 +370,10 @@
This value is not a valid hostname.Dieser Wert ist kein gültiger Hostname.
+
+ The number of elements in this collection should be a multiple of {{ compared_value }}.
+ Die Anzahl an Elementen in dieser Sammlung sollte ein Vielfaches von {{ compared_value }} sein.
+