Package Data | |
---|---|
Maintainer Username: | fortranlee |
Maintainer Contact: | rubens@mariuzzo.com (Rubens Mariuzzo) |
Package Create Date: | 2016-10-19 |
Package Last Update: | 2016-10-17 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-30 15:15:29 |
Package Statistics | |
---|---|
Total Downloads: | 1,338 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
🌐 Laravel Localization in JavaScript.
This package convert all your localization messages from your Laravel app to JavaScript with a small library to interact with those messages following a very similar syntax you are familiar with.
Translator
class).Translator
class. No need to learn a whole API.composer require mariuzzo/laravel-js-localization
In your Laravel app go to config/app.php
and add the following service provider:
Mariuzzo\LaravelJsLocalization\LaravelJsLocalizationServiceProvider::class
The Laravel-JS-Localization
package provides a command that generate the JavaScript version of all your messages found at: app/lang
(Laravel 4) or resources/lang
(Laravel 5) directory. The resulting JavaScript file will contains all your messages plus Lang.js (a thin library highly inspired on Laravel's Translator
class).
php artisan lang:js
php artisan lang:js public/assets/dist/lang.dist.js
php artisan lang:js -c
First, publish the default package's configuration file running:
php artisan vendor:publish --provider="Mariuzzo\LaravelJsLocalization\LaravelJsLocalizationServiceProvider"
The configuration will be published to config/localization-js.php
.
You may edit this file to define the messages you need in your Javascript code. Just edit the messages
array in the config file. Empty messages array will include all the language files in build.
To make only pagination.php
& validation.php
files to be included in build process:
<?php
return [
'messages' => [
'pagination',
'validation',
],
];
Install gulp-shell
and then run it directly in your gulpfile.js
:
var shell = require('gulp-shell');
gulp.task('langjs', shell.task('php artisan lang:js -c public/js/messages.js'));
Before Elixir 4.0:
elixir.extend('langjs', function(path) {
gulp.task('langjs', function() {
gulp.src('').pipe(shell('php artisan lang:js ' + (path || 'public/js/messages.js')));
});
return this.queueTask('langjs');
});
Elixir 4.0+:
var Task = elixir.Task;
elixir.extend('langjs', function(path) {
new Task('langjs', function() {
gulp.src('').pipe(shell('php artisan lang:js ' + (path || 'public/js/messages.js')));
});
});
And use it like this:
elixir(function(mix) {
mix.langjs();
});
This is a quick documentation regarding Lang.js (the thin JavaScript library included by Laravel-JS-Localization
). The Lang.js (a thin library highly inspired on Laravel's Translator
class).
💁 Go to Lang.js documentation to see all available methods.
Lang.get('messages.home');
Lang.get('messages.welcome', { name: 'Joe' });
Lang.setLocale('es');
Lang.has('messages.foo');
Lang.choice('messages.apples', 10);
choice
method with replacementsLang.choice('messages.apples', 10, { name: 'Joe' });
💁 Go to Lang.js documentation to see all available methods.
git checkout develop; git checkout -b feature-foo
.You will need to have installed the following softwares.
After getting all the required softwares you may run the following commands to get everything ready:
Install PHP dependencies:
composer install
Install test dependencies:
composer test-install
Now you are good to go! Happy coding!
This project uses PHPUnit. All tests are stored at tests
directory. To run all tests type in your terminal:
composer test