dive-be/nova-translation-editor

A Laravel Nova tool for editing your translation strings.
3,659
Install
composer require dive-be/nova-translation-editor
Latest Version:0.3.2
PHP:^8.1
License:MIT
Last Updated:Apr 4, 2022
Links: GitHub  ·  Packagist
Maintainer: dive

Nova Translation Editor

Latest Version on Packagist Software License Total Downloads

⚠️ Minor releases of this package may cause breaking changes as it has no stable release yet.

Installation

composer require dive-be/nova-translation-editor

You must publish and run the migrations to create the language_lines table:

php artisan vendor:publish --provider="Dive\NovaTranslationEditor\ToolServiceProvider" --tag="migrations"
php artisan migrate

Optionally you could publish the config file using this command.

php artisan vendor:publish --provider="Dive\NovaTranslationEditor\ToolServiceProvider" --tag="config"

Register the tool in NovaServiceProvider.

public function tools()
{
    return [
        new NovaTranslationEditor(),
    ];
}

Publish the translations via the nova tool or via command line:

php artisan nova-translation-editor:publish

Usage

TODO

Credits

License

The MIT License (MIT). Please see License File for more information.

Related Packages

outhebox/laravel-translations

Manage your Laravel translations with a beautiful UI. Add, edit, delete, import,...

114,792 821