Commit df6b7335 by Paul Klimov

Merge pull request #3696 from superbull/patch-1

fix wrong template for min validation error
parents 3e4ec220 47284b49
...@@ -71,7 +71,7 @@ return [ ...@@ -71,7 +71,7 @@ return [
'{attribute} must be less than "{compareValue}".' => '{attribute}的值必须小于"{compareValue}"。', '{attribute} must be less than "{compareValue}".' => '{attribute}的值必须小于"{compareValue}"。',
'{attribute} must be less than or equal to "{compareValue}".' => '{attribute}的值必须小于或等于"{compareValue}"。', '{attribute} must be less than or equal to "{compareValue}".' => '{attribute}的值必须小于或等于"{compareValue}"。',
'{attribute} must be no greater than {max}.' => '{attribute}的值必须不大于{max}。', '{attribute} must be no greater than {max}.' => '{attribute}的值必须不大于{max}。',
'{attribute} must be no less than {min}.' => '{attribute}的值必须不小于{max}。', '{attribute} must be no less than {min}.' => '{attribute}的值必须不小于{min}。',
'{attribute} must be repeated exactly.' => '{attribute}必须重复。', '{attribute} must be repeated exactly.' => '{attribute}必须重复。',
'{attribute} must not be equal to "{compareValue}".' => '{attribute}的值不得等于"{compareValue}"。', '{attribute} must not be equal to "{compareValue}".' => '{attribute}的值不得等于"{compareValue}"。',
'{attribute} should contain at least {min, number} {min, plural, one{character} other{characters}}.' => '{attribute}应该包含至少{min, number}个字符。', '{attribute} should contain at least {min, number} {min, plural, one{character} other{characters}}.' => '{attribute}应该包含至少{min, number}个字符。',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment