I\'d like to i18n a text that looks like this:
Already signed up? Log in!
Note that there is a link on the text. On this example
en.yml
log_in_message_html: "This is a text, with a %{href} inside." log_in_href: "link"
login.html.erb
<%= t("log_in_message_html", href: link_to(t("log_in_href"), login_path)) %>