In my I18n file i have the following translation:
reservation:
please_accept: "Please accept regulation"
And in my view i'm using it in the following way:
= t('reservation.please_accept')
Now I want to the word "regulation" be a link to some action in my app. How can I do that? Thanks in advance.