2
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.

rails aborted! I18n::MissingTranslationData: translation missing: en.faker.name.first_name

Last updated at Posted at 2019-06-07

rails aborted!I18n::MissingTranslationData: translation missing: en.faker.name.first_name

bundle exec rails db:resetしようとしたら、上記のエラーがでた

解決方法

下記をコピペ*日本語での設定とかそこらへん

locale.rb
require 'i18n'
I18n.locale # => :en
I18n.locale = :ja
I18n.locale # => :ja
require 'faker'
Faker::Config.locale # => :ja
Faker::Internet.email # => ".@.com"

$ bundle exec rails db:reset
2
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
2
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?