DEV Community

David Carr
David Carr

Posted on • Originally published at dcblog.dev on

Convert translate message calls to a single json language file

Convert translate message calls to a single json language file

Laravel supports using the __() call to setup locale for your pages ie in a blade file you may have a title called Dashboard. To make it translatable you would use:

{{ __('Dashboard') }}
Enter fullscreen mode Exit fullscreen mode

This will default to the given text if the config/app.php file's locale is set to en, if its set to another language Laravel will look for a the lang.json file in the resources folder, if one is not found then the given message will be used.

You have to manually create the language files yourself which can be time-consuming.

This package: https://github.com/vemcogroup/laravel-translation provides the ability to automate the lang file process!

Install it with composer:

composer require vemcogroup/laravel-translation
Enter fullscreen mode Exit fullscreen mode

Publish the config:

php artisan vendor:publish --provider="Vemcogroup\Translation\TranslationServiceProvider"
Enter fullscreen mode Exit fullscreen mode

This generated a config file to config/translation I'll stick with the defaults for this post.

Now all you need to do is run:

php artisan translation:scan
Enter fullscreen mode Exit fullscreen mode

This will scan your .php and .vue files (you can add others in the config) looking for matching functions the defaut is to look for __() functions. All matches are added to resources/lang/en.json

This is very useful as can write your text in english using the __() syntax and generate a single language file for any translations needed, perfect!

Top comments (0)