I have a singular controller i want to add locales to that. It looks like
class AboutController < ApplicationController
def home
end
def markdown_syntax
end
end
And my about.en.yml
looks like
en:
about:
home:
discover_message: 'Discover, Track and Compare Open Source'
join_now: 'Join Now'
whats_new: "What's New"
popular_projects: 'Most Popular Projects'
active_projects: 'Most Active Projects'
I am getting translation missing error because it doesn't recognizing from about.en.yml
Error Message:
translation missing: en.about.home.discover_message