MIF_E31222691/resources/lang/en
Tim MacDonald c988335502
Standarise "must" and "may" language in validation (#5552)
Majority of the messages are in the format ":attribute must
{conditions_to_be_met}", however a few inconsistently use "may" instead
of "must".

This PR fixes that and has them all use "must" instead.

To highlight the inconsistency:

```php
// "may"
'max' => [
    'numeric' => 'The :attribute may not be greater than :max.',
    'file' => 'The :attribute may not be greater than :max kilobytes.',
    'string' => 'The :attribute may not be greater than :max characters.',
    'array' => 'The :attribute may not have more than :max items.',
],
// "must"
'min' => [
    'numeric' => 'The :attribute must be at least :min.',
    'file' => 'The :attribute must be at least :min kilobytes.',
    'string' => 'The :attribute must be at least :min characters.',
    'array' => 'The :attribute must have at least :min items.',
],
```
2021-03-09 07:23:56 -06:00
..
auth.php add auth line 2020-11-09 14:36:40 -06:00
pagination.php Revert #4744 2018-10-05 18:13:18 +02:00
passwords.php remove hyphen on email 2020-01-17 16:15:38 -06:00
validation.php Standarise "must" and "may" language in validation (#5552) 2021-03-09 07:23:56 -06:00