|
9 | 9 | use Yiisoft\Validator\Rule\Each; |
10 | 10 | use Yiisoft\Validator\Rule\Email; |
11 | 11 | use Yiisoft\Validator\Rule\Equal; |
| 12 | +use Yiisoft\Validator\Rule\File; |
12 | 13 | use Yiisoft\Validator\Rule\FilledAtLeast; |
13 | 14 | use Yiisoft\Validator\Rule\FilledOnlyOneOf; |
14 | 15 | use Yiisoft\Validator\Rule\GreaterThan; |
|
211 | 212 | /** @see AnyRule */ |
212 | 213 | 'At least one of the inner rules must pass the validation.' => 'Mindestens eine der inneren Regeln muss die Validierung bestehen.', |
213 | 214 |
|
| 215 | + /** @see File */ |
| 216 | + 'The size of {property} must be exactly {exactly, number} {exactly, plural, one{byte} other{bytes}}.' => |
| 217 | + 'Die Größe von {property} muss genau {exactly, number} {exactly, plural, one{Byte} other{Byte}} betragen.', |
| 218 | + 'The size of {property} must be exactly {exactly, number} KB.' => |
| 219 | + 'Die Größe von {property} muss genau {exactly, number} KB betragen.', |
| 220 | + 'The size of {property} must be exactly {exactly, number} MB.' => |
| 221 | + 'Die Größe von {property} muss genau {exactly, number} MB betragen.', |
| 222 | + 'The size of {property} must be exactly {exactly, number} GB.' => |
| 223 | + 'Die Größe von {property} muss genau {exactly, number} GB betragen.', |
| 224 | + 'The size of {property} must be exactly {exactly, number} TB.' => |
| 225 | + 'Die Größe von {property} muss genau {exactly, number} TB betragen.', |
| 226 | + 'The size of {property} must be exactly {exactly, number} PB.' => |
| 227 | + 'Die Größe von {property} muss genau {exactly, number} PB betragen.', |
| 228 | + 'The size of {property} cannot be smaller than {limit, number} {limit, plural, one{byte} other{bytes}}.' => |
| 229 | + 'Die Größe von {property} darf nicht kleiner als {limit, number} {limit, plural, one{Byte} other{Byte}} sein.', |
| 230 | + 'The size of {property} cannot be smaller than {limit, number} KB.' => |
| 231 | + 'Die Größe von {property} darf nicht kleiner als {limit, number} KB sein.', |
| 232 | + 'The size of {property} cannot be smaller than {limit, number} MB.' => |
| 233 | + 'Die Größe von {property} darf nicht kleiner als {limit, number} MB sein.', |
| 234 | + 'The size of {property} cannot be smaller than {limit, number} GB.' => |
| 235 | + 'Die Größe von {property} darf nicht kleiner als {limit, number} GB sein.', |
| 236 | + 'The size of {property} cannot be smaller than {limit, number} TB.' => |
| 237 | + 'Die Größe von {property} darf nicht kleiner als {limit, number} TB sein.', |
| 238 | + 'The size of {property} cannot be smaller than {limit, number} PB.' => |
| 239 | + 'Die Größe von {property} darf nicht kleiner als {limit, number} PB sein.', |
| 240 | + 'The size of {property} cannot be larger than {limit, number} {limit, plural, one{byte} other{bytes}}.' => |
| 241 | + 'Die Größe von {property} darf nicht größer als {limit, number} {limit, plural, one{Byte} other{Byte}} sein.', |
| 242 | + 'The size of {property} cannot be larger than {limit, number} KB.' => |
| 243 | + 'Die Größe von {property} darf nicht größer als {limit, number} KB sein.', |
| 244 | + 'The size of {property} cannot be larger than {limit, number} MB.' => |
| 245 | + 'Die Größe von {property} darf nicht größer als {limit, number} MB sein.', |
| 246 | + 'The size of {property} cannot be larger than {limit, number} GB.' => |
| 247 | + 'Die Größe von {property} darf nicht größer als {limit, number} GB sein.', |
| 248 | + 'The size of {property} cannot be larger than {limit, number} TB.' => |
| 249 | + 'Die Größe von {property} darf nicht größer als {limit, number} TB sein.', |
| 250 | + 'The size of {property} cannot be larger than {limit, number} PB.' => |
| 251 | + 'Die Größe von {property} darf nicht größer als {limit, number} PB sein.', |
| 252 | + |
214 | 253 | /** @see Image */ |
215 | 254 | '{Property} must be an image.' => '{Property} muss ein Bild sein.', |
216 | 255 | 'The width of {property} must be exactly {exactly, number} {exactly, plural, one{pixel} other{pixels}}.' => |
|
0 commit comments