<% FastGettext.with_locale FastGettext.default_locale do %>
<p><%= _('Hello') %> <%= @role.user.name %></p>
<%
access_level = "read-only"
if @role.editor?
access_level = "editor"
end
if @role.administrator?
access_level = "co-owner"
end
%>
<p><%= _('Your permissions relating to') %> "<%= link_to @role.plan.title, url_for(action: 'show', controller: 'plans', id: @role.plan.id, locale: I18n.default_locale) %>" <%= _('have changed. You now have') %> <%= access_level %> <%= _('access.') %></p>
<% end %>