My problem is exactly the one described in this question. Only difference: I\'m using Rails 3 (3.0.4 exactly), which uses the %{...} syntax rather than the old
%{...}
You can do like this
my_translation: "Click to access %{link} page"
then:
<%= t( my_translation, :link => link_to("Google", "http://google.com") ).html_safe %>
And everything will be ok!