| 21 | |
| 22 | |
| 23 | class ArrayMinLengthValidator(MinLengthValidator): |
| 24 | message = ngettext_lazy( |
| 25 | "List contains %(show_value)d item, it should contain no fewer than " |
| 26 | "%(limit_value)d.", |
| 27 | "List contains %(show_value)d items, it should contain no fewer than " |
| 28 | "%(limit_value)d.", |
| 29 | "show_value", |
| 30 | ) |
| 31 | |
| 32 | |
| 33 | @deconstructible |
no test coverage detected