From 41cc91771d252c228601f68658173ab66a97e293 Mon Sep 17 00:00:00 2001 From: Vincent Date: Mon, 17 Mar 2014 17:30:54 +0100 Subject: [PATCH] Mistake in error message {max} was used instead of {min} in the error message for the min validator... --- framework/messages/nl/yii.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/messages/nl/yii.php b/framework/messages/nl/yii.php index c121b9d739..4985b83e57 100644 --- a/framework/messages/nl/yii.php +++ b/framework/messages/nl/yii.php @@ -72,7 +72,7 @@ return array ( '{attribute} must be less than "{compareValue}".' => '{attribute} moet minder zijn dan "{compareValue}".', '{attribute} must be less than or equal to "{compareValue}".' => '{attribute} moet minder dan of gelijk aan "{compareValue}" zijn.', '{attribute} must be no greater than {max}.' => '{attribute} mag niet groter zijn dan {max}.', - '{attribute} must be no less than {min}.' => '{attribute} mag niet kleiner zijn dan {max}.', + '{attribute} must be no less than {min}.' => '{attribute} mag niet kleiner zijn dan {min}.', '{attribute} must be repeated exactly.' => '{attribute} moet exact herhaald worden.', '{attribute} must not be equal to "{compareValue}".' => '{attribute} mag niet gelijk zijn aan "{compareValue}".', '{attribute} should contain at least {min, number} {min, plural, one{character} other{characters}}.' => '{attribute} moet minstens {min, number} {min, plural, one{karakter} other{karakters}} bevatten.',