I am facing a weird problem. In my rails 3 app I am supporting internationalization with english and french. Here in my template I wrote something like this
<%= t "Hi %{person}!", :person => "Simpson" %>
When I set locale as french everything works fine, since it has got translation for this but when I set locale as english then it gives output as
Hi %{person}!
in my browser. When I add translation to en.yml, it works fine. I don't understand why there is need to add translation in en.yml for this. Moreover I don't want this to happen, is there any work around for this?
Thanks