I18n :: MissingTranslationData: no translation: en.faker error when seeding db

I want to seed a database with Faker, the problem is that I get an error when I do:

rake db:reset

      

I am getting this message:

rake aborted!
I18n::MissingTranslationData: translation missing: en.faker.name.name
/Library/Ruby/Gems/2.0.0/gems/i18n-0.7.0/lib/i18n.rb:311:in `handle_exception'
/Library/Ruby/Gems/2.0.0/gems/i18n-0.7.0/lib/i18n.rb:161:in `translate'
/Library/Ruby/Gems/2.0.0/gems/faker-1.4.3/lib/faker.rb:128:in `rescue in translate'
/Library/Ruby/Gems/2.0.0/gems/faker-1.4.3/lib/faker.rb:120:in `translate'
/Library/Ruby/Gems/2.0.0/gems/faker-1.4.3/lib/faker.rb:86:in `fetch'
/Library/Ruby/Gems/2.0.0/gems/faker-1.4.3/lib/faker.rb:99:in `parse'
/Library/Ruby/Gems/2.0.0/gems/faker-1.4.3/lib/faker/name.rb:8:in `name'
/Users/hbendev/code/wikitec/db/seeds.rb:6:in `block in <top (required)>'
/Users/hbendev/code/wikitec/db/seeds.rb:4:in `times'
/Users/hbendev/code/wikitec/db/seeds.rb:4:in `<top (required)>'
/Library/Ruby/Gems/2.0.0/gems/activesupport-4.2.0/lib/active_support/dependencies.rb:268:in `load'
/Library/Ruby/Gems/2.0.0/gems/activesupport-4.2.0/lib/active_support/dependencies.rb:268:in `block in load'
/Library/Ruby/Gems/2.0.0/gems/activesupport-4.2.0/lib/active_support/dependencies.rb:240:in `load_dependency'
/Library/Ruby/Gems/2.0.0/gems/activesupport-4.2.0/lib/active_support/dependencies.rb:268:in `load'
/Library/Ruby/Gems/2.0.0/gems/railties-4.2.0/lib/rails/engine.rb:547:in `load_seed'
/Library/Ruby/Gems/2.0.0/gems/activerecord-4.2.0/lib/active_record/tasks/database_tasks.rb:250:in `load_seed'
/Library/Ruby/Gems/2.0.0/gems/activerecord-4.2.0/lib/active_record/railties/databases.rake:180:in `block (2 levels) in <top (required)>'
/Library/Ruby/Gems/2.0.0/gems/activerecord-4.2.0/lib/active_record/railties/databases.rake:139:in `block (2 levels) in <top (required)>'
Tasks: TOP => db:setup => db:seed

      

I don't know why this error comes up as I haven't had any problems with Faker before, I just wanted to reset the db to update the samples.

I google but I can't find anything related that solves the problem.

I tried to add:

I18n.reload!

      

After require 'faker'

in my seeds.rb file but no luck.

It looks like the problem is with Faker itself, because the database is created correctly, when I execute rake db:drop db:create db:migrate

, it works until it is, but when I try to seed the database with Faker with rake db:seed

or rake db:reset

, I get an error.

What can I do? Thanks in advance.

UPDATE . I have included seeds.rb and en.yml files.

seeds.rb:

require 'faker'

# Create Users
5.times do
  user = User.new(
    name: Faker::Name.name,
    email: Faker::Internet.email,
    password: Faker::Lorem.characters(10)
  )
  user.skip_confirmation!
  user.save!
end
users = User.all

# Create Wikis
25.times do
  Wiki.create!(
    title: Faker::Lorem.sentence,
    body: Faker::Lorem.paragraph,
    :private => false,
    user: users.sample
  )
end

# Create Admin account
admin = User.new(
  name: 'Admin User',
  email: 'admin@example.com',
  password: 'helloworld',
  role: 'admin'
  )
admin.skip_confirmation!
admin.save!

# Create Premium account
premium = User.new(
  name: 'Premium User',
  email: 'premium@example.com',
  password: 'helloworld',
  role: 'premium'
  )
premium.skip_confirmation!
premium.save!

# Create Standard account
standard = User.new(
  name: 'Standard User',
  email: 'standard@example.com',
  password: 'helloworld',
  role: 'standard'
  )
standard.skip_confirmation!
standard.save!

puts "Seed finished"
puts "#{Wiki.count} wikis created"
puts "#{User.count} users created"

      

en.yml:

en:
  hello: "Hello world"

      

+3


source to share


3 answers


Check I18n Faker config info here:

https://github.com/stympy/faker#customization



It looks like you have to enforce the I18n Faker locale in case you are using a non-standard locale in your application.

Just set Faker :: Config.locale to the language you want and Faker will take care of the rest.

+1


source


This worked for me ...

In Gemfile

add:require => false



group :development, :test do
  #gem 'faker', '~> 1.4.3'
  gem 'faker', :require => false
end

      

Add require "faker"

manually ...

0


source


I had the same problem. need to move faker to Gemfile from

group: development: test do
  gem 'faker'
end

      

for me it solved the luck problem

-1


source







All Articles