forked from potsda.mn/mobilizon
de047c8939
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
18 lines
1,009 B
Elixir
18 lines
1,009 B
Elixir
<%= case @activity.subject do %><% :post_created -> %><%= dgettext("activity", "The post %{post} was created by %{profile}.",
|
|
%{
|
|
profile: Mobilizon.Actors.Actor.display_name_and_username(@activity.author),
|
|
post: @activity.subject_params["post_title"]
|
|
}
|
|
) %>
|
|
<%= Routes.page_url(Mobilizon.Web.Endpoint, :post, @activity.subject_params["post_slug"]) |> URI.decode() %><% :post_updated -> %><%= dgettext("activity", "The post %{post} was updated by %{profile}.",
|
|
%{
|
|
profile: Mobilizon.Actors.Actor.display_name_and_username(@activity.author),
|
|
post: @activity.subject_params["post_title"]
|
|
}
|
|
) %>
|
|
<%= Routes.page_url(Mobilizon.Web.Endpoint, :post, @activity.subject_params["post_slug"]) |> URI.decode() %><% :post_deleted -> %><%= dgettext("activity", "The post %{post} was deleted by %{profile}.",
|
|
%{
|
|
profile: Mobilizon.Actors.Actor.display_name_and_username(@activity.author),
|
|
post: @activity.subject_params["post_title"]
|
|
}
|
|
) %><% end %> |