themsaid / laravel-langman-gui
Manage language files with ease.
Installs: 53 294
Dependents: 0
Suggesters: 0
Security: 0
Stars: 513
Watchers: 14
Forks: 50
Open Issues: 29
Requires
- php: ^7.0 || ^7.1
- illuminate/translation: ~5.4
- dev-master
- v0.3.1
- v0.3.0
- v0.2.0
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.0
- dev-dependabot/npm_and_yarn/qs-6.4.1
- dev-dependabot/npm_and_yarn/async-2.6.4
- dev-dependabot/npm_and_yarn/node-sass-7.0.0
- dev-dependabot/npm_and_yarn/tar-2.2.2
- dev-dependabot/npm_and_yarn/hosted-git-info-2.8.9
- dev-dependabot/npm_and_yarn/lodash-4.17.21
- dev-dependabot/npm_and_yarn/y18n-3.2.2
- dev-dependabot/npm_and_yarn/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/node-notifier-8.0.1
- dev-dependabot/npm_and_yarn/ini-1.3.7
- dev-dependabot/npm_and_yarn/lodash.mergewith-4.6.2
- dev-dependabot/npm_and_yarn/jquery-3.5.0
This package is auto-updated.
Last update: 2024-11-07 00:11:03 UTC
README
Langman is a GUI for managing your JSON language files in a Laravel project.
Installation
Begin by installing the package through Composer. Run the following command in your terminal:
$ composer require themsaid/laravel-langman-gui
Once done, add the following line in your providers array of config/app.php
:
Themsaid\LangmanGUI\LangmanServiceProvider::class
Then publish the configuration file & assets:
php artisan vendor:publish --provider=Themsaid\\LangmanGUI\\LangmanServiceProvider
Usage
Once you have added the Service Provider point your browser to http://project.dev/langman
, using this interface you'll be able to
browse translation keys in different languages, add/remove keys, scan your project files for missing translations, and finally save
your changes to the language JSON files.
Backup
Langman stores a backup of your entire resources/lang
directory into storage/langmanGUI
, you can use restore the original files
using this backup in case anything went wrong.