I am attempting to use the Mojolicious::Plugin::I18N module to provide internationalization. However, I am having a little trouble mixing it with the template variables.
<%=l 'Welcome' %>
works fine, but I cannot seem to get it to work with variables in the form
% title 'Welcome'
I have tried
% title l 'Welcome'
and
% title => l('Welcome')
Is there a way to accomplish this?