在我的I18n文件中,我有以下翻译:
reservation:
please_accept: "Please accept regulation"
在我看来,我正在以下列方式使用它:
= t('reservation.please_accept')
现在我希望“规则”这个词成为我应用中某些动作的链接。我怎样才能做到这一点?提前谢谢。
答案 0 :(得分:0)
回答我的问题:
= t('reservation.please_accept', href: link_to(t('reservation.regulation_word'), '#', "data-toggle" => "modal", 'data-target' => "##{@car.id}")).html_safe
reservation:
regulation_word: "regulamin"
please_accept: "Proszę zaakceptować %{href} wypożyczalni"