We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maybe it's not issue, but this is a little problematic.
If you want to translate validation you wont to insert translate for each attribute. Maybe there is a way to give one translation ?
To give you better knowlage what I mean:
You have a few fields in your form like : name, and lastname There is translation for this: 'digits' => 'The :attribute must be :digits digits.',
'digits' => 'The :attribute must be :digits digits.',
When you do validation in laravel you want to return
The :attribute must be :digits digits.
Instead of
The name must be :digits digits. and
The lastname must be :digits digits.
To have in your *.po file just one row translation
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Maybe it's not issue, but this is a little problematic.
If you want to translate validation you wont to insert translate for each attribute.
Maybe there is a way to give one translation ?
To give you better knowlage what I mean:
You have a few fields in your form like : name, and lastname
There is translation for this:
'digits' => 'The :attribute must be :digits digits.',
When you do validation in laravel you want to return
Instead of
To have in your *.po file just one row translation
The text was updated successfully, but these errors were encountered: