Converted my Pfoodler app to an engine. The Pfoodler engine is mounted in a test app. So far so good. Rails server launches and test app loads.
When I start the Pfoodler engine, it throws an error:
translation missing: en.pfoodler.static_pages.home.page_title
As a sidebar, in the app version, the i18n string is searched for and located as
en.static_pages.home.page_title
Converting the app to an engine has added the engine namespace to the i18n file search params. This has broken all the locale YAMLs, and there are dozens of files. I could fix the error by adding the pfoodler namespace to every file, but that seems like the wrong way to solve this problem.
I get the feeling there is a very simple solution, but I have not found it. What is the best way to solve this problem?
Thanks for your help.