lumite-studios/laravel-json-translation

本包最新版本(v1.1)没有提供许可信息。

默认 Laravel 翻译文件的 JSON 版本。

v1.1 2023-09-12 07:17 UTC

This package is auto-updated.

Last update: 2024-09-12 09:18:43 UTC


README

此包添加了默认 Laravel 翻译文件的 JSON 翻译版本。同时,它还允许使用前缀添加自定义 JSON 翻译。

文档

安装

composer require lumite-studios/laravel-json-translation

使用

use LumiteStudios\JSONTranslations\TranslationServiceProvider as ServiceProvider;

class TranslationServiceProvider extends ServiceProvider
{
    /**
     * Perform post-registration booting of services.
     */
    public function boot()
    {
        parent::boot();

        $this->loadJsonTranslationsWithPrefix('../../lang/errors', 'errors');
        $this->loadJsonTranslationsWithPrefix('../../lang/other', 'other');
    }
}