Download the PHP package antonioprimera/laravel-js-localization without Composer
On this page you can find all versions of the php package antonioprimera/laravel-js-localization. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download antonioprimera/laravel-js-localization
More information about antonioprimera/laravel-js-localization
Files in antonioprimera/laravel-js-localization
Package laravel-js-localization
Short Description Laravel localization for JS frontends.
License MIT
Informations about the package laravel-js-localization
Laravel JS Localization for Vue3 and InertiaJS
This package provides a simple way to manage localization in Laravel with Vue3 and InertiaJS. While it is very opinionated, it is also very simple to use and requires no additional configuration.
How it works
- You create your php language files, as you would normally do in Laravel
- You run the
npm run lang
command to watch for changes in your language files and generate the corresponding JSON files - The ServiceProvider will automatically share the generated JSON file, corresponding to the current locale, with your InertiaJS app
- You can use the "txt(...)" helper function in your Vue3 components to access the localized strings, like you would with the
__()
helper function in Laravel - That's it! Easy-peasy lemon squeezey!
Installation
After installing the package, you should run the install
command, which will publish the package configuration file and
will set up the necessary npm script for watching the language files for changes and generate the corresponding JSON files.
This will do the following things:
- Create a symlink for the language watcher js file in your project's root directory.
- Add the 'lang' npm script to your package.json file, so you can run 'npm run lang' to start the language watcher.
- Add the
laravel-inertia-vue-translator
,chalk
andchokidar
npm packages to your package.json file. At the end it runsnpm install
to install the newly added npm packages. - Optionally publish the package configuration file (you can also do this manually with
php artisan vendor:publish --tag=js-localization-config
). - Optionally publish the language files, if no "lang" folder exists in your project's root directory (you can also do this manually with
php artisan lang:publish
). - Provide you with the necessary steps to manually add the corresponding Inertia plugin to your Vue3 app (from package
laravel-inertia-vue-translator
installed in step 3).
Warning!!!
The install
command contains some automated steps, which will inject code into your files. While it tries to be as safe
as possible, it is always recommended to check the changes made to your files and to have a clean git history, so you can
easily revert the changes if something goes wrong.
Usage
Laravel
In order to use the package, you need to create your language files in the lang
directory, as you would normally do in
Laravel. You can create several files for each language and each language corresponds to a directory in the lang
directory.
At the moment, the package only supports the .php language files, but support for JSON files is planned for the future.
While working with the language files, you should have the file watcher running, using the npm run lang
command.
The watcher creates a _lang
directory, for each found locale, which contains all the
translations for that locale. These files are automatically shared with your InertiaJS app, so you can access the
translations in your Vue3 components (only the translations for the current locale are shared).
This package also handles the pluralization of the strings, as Laravel does. You can use the :count
, :value
or :n
placeholder in your strings to be replaced with the count value, when using the txts(...)
helper function.
Inertia + Vue3
The laravel-inertia-vue-translator
package exports 2 helper functions, registered directly on the Inertia object,
which you can use in your Vue3 templates to translate your strings:
- txt(key, replacements = {}): This function is used to access the localized strings. It works similarly to the
__()
helper function in Laravel. - txts(key, count, replacements = {}): This function is used to access the pluralized localized strings. It works
similarly to the
__()
helper function in Laravel, but expects a number as the second argument, which is used to determine the plural form of the string.
In order to use the txt(...)
and txts(...)
helper functions in your Vue3 script section, you need to import the
useTranslator
function from the package, which injects the txt(...)
and txts(...)
functions into the current
Vue3 component.
LocaleManager
The package also provides a LocaleManager
facade, which you can use to work with locales in your Laravel app.
The facade provides the following methods:
Configuration
The package configuration file is published in the config
directory of your Laravel app, after running the install
command. You can use this file to configure the package to your needs.
Here is the default configuration file, with the default values explained:
Related resources
All versions of laravel-js-localization with dependencies
illuminate/console Version >=11.0
illuminate/support Version >=11.0
illuminate/http Version >=11.0
antonioprimera/filesystem Version ^v1.6|^v2.2