@@ -107,16 +107,16 @@ class FileValidator extends Validator
$this->uploadRequired=Yii::t('yii','Please upload a file.');
}
if($this->tooMany===null){
$this->tooMany=Yii::t('yii','You can upload at most {limit} files.');
$this->tooMany=Yii::t('yii','You can upload at most {limit, number} {limit, plural, one{file} other{files}}.');
}
if($this->wrongType===null){
$this->wrongType=Yii::t('yii','Only files with these extensions are allowed: {extensions}.');
}
if($this->tooBig===null){
$this->tooBig=Yii::t('yii','The file "{file}" is too big. Its size cannot exceed {limit} bytes.');
$this->tooBig=Yii::t('yii','The file "{file}" is too big. Its size cannot exceed {limit, number} {limit, plural, one{byte} other{bytes}}.');
}
if($this->tooSmall===null){
$this->tooSmall=Yii::t('yii','The file "{file}" is too small. Its size cannot be smaller than {limit} bytes.');
$this->tooSmall=Yii::t('yii','The file "{file}" is too small. Its size cannot be smaller than {limit, number} {limit, plural, one{byte} other{bytes}}.');
@@ -120,16 +120,16 @@ class ImageValidator extends FileValidator
$this->notImage=Yii::t('yii','The file "{file}" is not an image.');
}
if($this->underWidth===null){
$this->underWidth=Yii::t('yii','The file "{file}" is too small. The width cannot be smaller than {limit} pixels.');
$this->underWidth=Yii::t('yii','The file "{file}" is too small. The width cannot be smaller than {limit, number} {limit, plural, one{pixel} other{pixels}}.');
}
if($this->underHeight===null){
$this->underHeight=Yii::t('yii','The file "{file}" is too small. The height cannot be smaller than {limit} pixels.');
$this->underHeight=Yii::t('yii','The file "{file}" is too small. The height cannot be smaller than {limit, number} {limit, plural, one{pixel} other{pixels}}.');
}
if($this->overWidth===null){
$this->overWidth=Yii::t('yii','The file "{file}" is too large. The width cannot be larger than {limit} pixels.');
$this->overWidth=Yii::t('yii','The file "{file}" is too large. The width cannot be larger than {limit, number} {limit, plural, one{pixel} other{pixels}}.');
}
if($this->overHeight===null){
$this->overHeight=Yii::t('yii','The file "{file}" is too large. The height cannot be larger than {limit} pixels.');
$this->overHeight=Yii::t('yii','The file "{file}" is too large. The height cannot be larger than {limit, number} {limit, plural, one{pixel} other{pixels}}.');
}
if($this->wrongMimeType===null){
$this->wrongMimeType=Yii::t('yii','Only files with these mimeTypes are allowed: {mimeTypes}.');