hexadog / laravel-translation-manager
Laravel Translation management package
Installs: 3 990
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 3
Open Issues: 0
Requires
- illuminate/support: ^7.0|^8.0|^9.0|^10.0
- symfony/finder: ^5.1|^6.0
Requires (Dev)
- laravel/pint: ^1.10
- orchestra/testbench: ~5.2|^7.1|^8.0
- phpunit/phpunit: ^7.0|^8.0|^9.0|^10.0
README
Introduction
hexadog/laravel-translation-manager
is a Laravel package to help you manage your application translation.
Installation
This package requires PHP 7.3 and Laravel 7.0 or higher.
To get started, install Translation Manager using Composer:
composer require hexadog/laravel-translation-manager
The package will automatically register its service provider.
To publish the config file to config/translation-manager.php run:
php artisan vendor:publish --provider="Hexadog\TranslationManager\Providers\PackageServiceProvider"
Usage
Translation Manager has many features to help you working with translation
Configuration
This is the default contents of the configuration:
<?php return [ // Directories to search in. 'directories' => [ 'app', 'resources', ], // File Extensions to search for. 'extensions' => [ 'php', 'js', ], // Translation function names. // If your function name contains $ escape it using \$ . 'functions' => [ '__', '_t', '@lang', ], // Indicates weather you need to sort the translations alphabetically // by original strings (keys). // It helps navigate a translation file and detect possible duplicates. 'sort-keys' => true, ];
Artisan Commands
This package provides some artisan commands in order to manage themes.
Find unused translation
Find all unused translation in your app
php artisan translation:unused
Find all unused translation in your app for specifig namespace
php artisan translation:unused --namespace=hexadog
Find all unused translation in your app for specifig language
php artisan translation:unused --lang=fr
Find all unused translation in your app for a specific language file
php artisan translation:unused --filename=buttons
This example will search unused translation only in file buttons.php
for all languages in directories
configured.
Find missing translation
Find all missing translation in your app
php artisan translation:missing
Find all missing translation in your app for specifig namespace
php artisan translation:missing --namespace=hexadog
Find all missing translation in your app for specifig language
php artisan translation:missing --lang=fr
License
Laravel Translation Manager is open-sourced software licensed under the MIT license.