Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/themsaid/laravel-langman-gui
A GUI for managing JSON translation files in your laravel projects.
https://github.com/themsaid/laravel-langman-gui
Last synced: about 1 month ago
JSON representation
A GUI for managing JSON translation files in your laravel projects.
- Host: GitHub
- URL: https://github.com/themsaid/laravel-langman-gui
- Owner: themsaid
- License: mit
- Created: 2017-01-31T21:35:45.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-06T19:59:25.000Z (almost 2 years ago)
- Last Synced: 2024-04-14T13:08:54.724Z (7 months ago)
- Language: PHP
- Homepage:
- Size: 989 KB
- Stars: 515
- Watchers: 15
- Forks: 50
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Laravel Language Manager
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`:
```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.