rails i18n - translating text with links inside

后端 未结 9 807
名媛妹妹
名媛妹妹 2020-11-30 21:05

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

9条回答
  •  感动是毒
    2020-11-30 21:28

    I think a simple way to do this is by simply doing :

    <%= link_to some_path do %>
    <%= t '.some_locale_key' %>
    <% end %>
    

提交回复
热议问题