0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Laravelで日本語化

Last updated at Posted at 2020-10-23

##はじめに
Laravelバージョン5,6,7で対応。
ログイン画面、エラーメッセージなどを英語表記から日本語表記へ変更する。

##app.phpの記述を変更

config/app.php
'locale' => 'en',

// 変更

'locale' => 'ja',

##GitHubで日本語化ファイルをダウンロード
こちらからダウンロード。
Code(緑色のアイコン)Download ZIPでダウンロードできる

##日本語化ファイルを配置
1.ダウンロードしたファイルを解答し、開く。(ファイル名:lang-master)

2.srcフォルダ内のjaフォルダをプロジェクト内のresoueces/langフォルダ直下に配置。

3.jsonフォルダ内のja.jsonファイルをプロジェクト内のresoueces/langフォルダ直下に配置。

上記のように配置されていればOK!

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?