如何将名称空间添加到翻译器json文件Larravel

时间:2018-07-26 13:52:54

标签: php laravel-5 php-7

我使用此代码,用lang添加新目录

    $this->app['translator']->addNamespace(
        $this->namespace,
        $this->getLangPath() . DIRECTORY_SEPARATOR . 'lang'

    );
$this->app['translator']->addJsonPath(
            $this->getLangPath() . DIRECTORY_SEPARATOR . 'lang'

        );

但是我需要使用命名空间来使此lang与en.json文件一起使用

  {{ __('') }}

如果可以与{{__('MorePostsjson')}}配合使用, 但是如果我需要使用名称空间 像

 {{ __('mynamespace::MorePostsjson') }}

它不起作用。 我们如何向JSON转换器添加名称空间? https://laravel.com/docs/5.6/localization#using-translation-strings-as-keys

我使用laravel 5.6

0 个答案:

没有答案