标签:通用 ted 很多 语言 col 用户认证 info 国家 views
make:auth
命令生成的
这是 Laravel 提供的本地化特性,使用 __()
函数来辅助实现。按照约定,本地化文件存储在 resources/lang
文件夹中,为 JSON 格式。在 config/app.php
文件中,我们设置了:
对应翻译文件就是 resources/lang/zh-CN.json
,需新建此文件:
resources/lang/zh-CN.json
composer require "overtrue/laravel-lang:~3.0"
完成上面的操作后,将项目文件 config/app.php
中的下一行
Illuminate\Translation\TranslationServiceProvider::class,
替换为:
Overtrue\LaravelLang\TranslationServiceProvider::class,
标签:通用 ted 很多 语言 col 用户认证 info 国家 views
原文地址:https://www.cnblogs.com/sgm4231/p/11011059.html