Releases: rmariuzzo/Laravel-JS-Localization
Releases · rmariuzzo/Laravel-JS-Localization
v1.2.1
Hotfix release. Don't use v1.2.0, it doesn't work. Sorry to disappointing you all.
Many thanks to @okaufmann !
Happy Coding!
1.2.0
Support for nested messages
This release provides support for nested messages.
Now you can:
Lang.get('messages.family.children.son');
That will return the proper messages that was stored in lang/en/messages.php
with the following content:
return array(
"family" => array(
"children" => array(
"son" => "I am the son",
)
)
)
Happy coding!
First release
This is the firs release with basic functionality.