-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
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
Incorrect returned value #65
Comments
instead
solves the problem |
Hey @astralo! We need to create a test case we your proposed changes. Thanks for letting me know. |
I ran into the similar issue. Imagine the situation when you validate an input array with the nested fields in Laravel: $request->validate([
...
'location' => 'array',
'location.city_id' => 'required',
...
]); To localize the validation messages for both // resources/lang/en/validation.php
return [
...
'attributes' => [
...
'location' => 'Location',
'location.city_id' => 'City',
...
],
]; And in this case, if we want to use the |
Any news on this? |
@RomeroMsk I will try to revisit it on this weekend. |
Bump. |
Lang.js/src/lang.js
Line 288 in 31474a8
if we have two lines as
and request Lang.get('book.btn.finish') then _getMessage returned 'Book Now'
The text was updated successfully, but these errors were encountered: