Skip to content

Releases: rmariuzzo/Laravel-JS-Localization

v1.2.1

29 Jun 02:50
Compare
Choose a tag to compare

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

16 Jun 02:36
Compare
Choose a tag to compare

This release includes:

  • Laravel 5.1.x support 🎉
  • Working PHP & JS tests.

Happy coding!

Support for nested messages

15 May 00:30
Compare
Choose a tag to compare

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

15 May 00:30
Compare
Choose a tag to compare

This is the firs release with basic functionality.