Skip to content

Releases: rmariuzzo/Laravel-JS-Localization

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.