robinfranssen/analyzelocale

This scans your laravel project for used locale keys that aren't translated by your locale files.
21,020 25
Install
composer require robinfranssen/analyzelocale
Latest Version:0.1.5
PHP:>=5.4.0
License:MIT
Last Updated:May 7, 2018
Links: GitHub  ·  Packagist
Maintainer: robinfranssen

Translation helpers for Laravel 5


NOTE: As of laravel 5.2.20 you need version ^0.1.4. For laravel 5.2.19 or lower you need version 0.1.3 of this package.


This package provides you with commands to analyze the translation keys used in your Laravel 5 application.

These commands can detect untranslated and invalid keys.

Alt text

Installation

composer require robinfranssen/analyzelocale --dev

Add the service provider:

// config/app.php

'providers' => [
	...
	'RobinFranssen\AnalyzeLocale\Providers\ServiceProvider',
	...
],

Usage

From the command line, run php artisan locale:scan to see a full overview of the analyzation. This will show you all information provided by the three other locale commands.

Alt text

php artisan locale:invalid will show you the invalid keys.

Alt text

php artisan locale:untranslated will show you the untranslated keys.

Alt text

php artisan locale:allkeys will show you a table with untranslated and invalid keys.

Alt text

Every command supports the --locale flag. For example: php artisan locale:allkeys --locale=nl

Alt text

Related Packages

abhijitghogre/laravel-db-clear-command

Laravel artisan command to drop all database tables and rerun the migrations.

3,527 5
hariadi/laravel-boilerplate-generator

Generate Model, attribute, relation, scope trait and repository for Laravel Boil...

609 9
longman/laravel-multilang

Package to integrate multi language (multi locale) functionality in Laravel 5.x

14,608 54
mariuzzo/laravel-translator

Laravel command that interactively helps you translate missing keys.

39,907 19
guissilveira/laravel-pgsql-multi-tenant-migrate

Laravel Artisan command to migrate postgres multi tentant

188 1