Localize your Laravel application with a single command
pawelmysior/laravel-localize is a Laravel package for localize your laravel application with a single command.
It currently has 9 GitHub stars and 1.035 downloads on Packagist (latest version 1.1.8).
Install it with composer require pawelmysior/laravel-localize.
Discover more Laravel packages by pawelmysior
or browse all Laravel packages to compare alternatives.
Last updated

This package installs a global command that lets you easily install language files in your Laravel application.
The language files are downloaded from the awesome caouecs/Laravel-lang repository.
You can install the package globally via composer:
composer global require pawelmysior/laravel-localize
Make sure that the global composer's vendor/bin directory is in your system's $PATH.
Cd into your Laravel application and run this command:
laravel-localize LANG
where LANG is the code of the language you want to install. For example, to install German language files, run:
laravel-localize de
The command will install the following files:
resources/lang/de/auth.phpresources/lang/de/pagination.phpresources/lang/de/passwords.phpresources/lang/de/validation.phpresources/lang/de.jsonSome other example languages:
# Install Dutch language files
laravel-localize nl
# Install Polish language files
laravel-localize pl
# Install Spanish language files
laravel-localize es
You can find the list of available languages here.
The MIT License (MIT). Please see License File for more information.