| 11 | |
| 12 | |
| 13 | class ArrayMaxLengthValidator(MaxLengthValidator): |
| 14 | message = ngettext_lazy( |
| 15 | "List contains %(show_value)d item, it should contain no more than " |
| 16 | "%(limit_value)d.", |
| 17 | "List contains %(show_value)d items, it should contain no more than " |
| 18 | "%(limit_value)d.", |
| 19 | "show_value", |
| 20 | ) |
| 21 | |
| 22 | |
| 23 | class ArrayMinLengthValidator(MinLengthValidator): |
no test coverage detected