outl1ne/nova-translations-loader
Load your package’s translation files into Laravel Nova. Add the LoadsNovaTranslations trait to a service provider and call loadTranslations() to register Nova translations and optionally publish them automatically. Compatible with Nova 4, Laravel 9/10.
This Laravel Nova package helps developers load translations into their packages.
php: >=8.0laravel/framework: ^9.0|^10.0laravel/nova: ^4.0Install the package in a Laravel Nova project via Composer:
composer require outl1ne/nova-translations-loader
Inside a Laravel's ServiceProvider, use the LoadsNovaTranslations trait and call $this->loadTranslations():
use Outl1ne\NovaTranslationsLoader\LoadsNovaTranslations;
class SomePackagesServiceProvider extends ServiceProvider
{
use LoadsNovaTranslations;
public function boot()
{
// ...
/**
* Loads translations into the Nova system.
*
* @param string $packageTranslationsDir The directory for the packages' translation files.
* @param string $packageName The name of the current package (ie 'nova-menu-builder').
* @param boolean $publishTranslations Whether to also automatically make translations publishable.
* @return null
**/
$this->loadTranslations(__DIR__ . '/../resources/lang', 'nova-package', true);
// ...
}
}
Nova Translations Loader is open-sourced software licensed under the MIT license.
How can I help you explore Laravel packages today?