1
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?

Railsアプリの言語を日本語に設定する方法

1
Last updated at Posted at 2026-07-26

はじめに

私はRailsのアプリで日本語対応をするだけで1時間ほど使ってしまいました。
日本語設定だけでそんなに時間を使って欲しくないので、ここに記録します

手順

gemの追加

Gemfile
#{{ バージョンを制御することで、gem同士が矛盾なく共存できるようになります }}
gem 'rails-i18n', '~> 8.1.0'

bundle install

bundle install

ロケールの設定

config/application.rb
config.i18n.default_locale = :ja

こちらのサイトを参考にしました。:pray:

まとめ

i18nを導入して日本語対応できていたら幸いです。

1
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
1
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?