Releases: rmariuzzo/Laravel-JS-Localization
Releases · rmariuzzo/Laravel-JS-Localization
v1.3.0 – The long awaited one
I'm more than proud to announce the release of Laravel-JS-Localization
v1.3.0.
Highlights
- Lang.js v1.1.0 (latest) included with tons of fixes.
- Proper tests to ensure support for PHP 5.5, 5.6, 7 and HHVM.
- Also, test covers support for Laravel 4.2, 5.0, 5.1, 5.2 and 5.3.
Happy coding!
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.