21 lines
886 B
Plaintext
21 lines
886 B
Plaintext
|
<%= case @activity.subject do %>
|
||
|
<% :conversation_created -> %>
|
||
|
<%= dgettext("activity", "%{profile} mentionned you in a %{conversation}.", %{
|
||
|
profile: "<b>#{escaped_display_name_and_username(@activity.author)}</b>",
|
||
|
conversation:
|
||
|
"<a href=\"#{Routes.page_url(Mobilizon.Web.Endpoint,
|
||
|
:conversation,
|
||
|
@activity.subject_params["conversation_participant_id"]) |> URI.decode()}\">conversation</a>"
|
||
|
})
|
||
|
|> raw %>
|
||
|
<% :conversation_replied -> %>
|
||
|
<%= dgettext("activity", "%{profile} replied you in a %{conversation}.", %{
|
||
|
profile: "<b>#{escaped_display_name_and_username(@activity.author)}</b>",
|
||
|
conversation:
|
||
|
"<a href=\"#{Routes.page_url(Mobilizon.Web.Endpoint,
|
||
|
:conversation,
|
||
|
@activity.subject_params["conversation_participant_id"]) |> URI.decode()}\">conversation</a>"
|
||
|
})
|
||
|
|> raw %>
|
||
|
<% end %>
|