parent
307da7b716
commit
87a9f5918c
|
@ -7,6 +7,8 @@ defmodule Mobilizon.Web.Email.Activity do
|
|||
import Bamboo.Phoenix
|
||||
import Mobilizon.Web.Gettext
|
||||
|
||||
alias Mobilizon.Activities.Activity
|
||||
alias Mobilizon.Actors.Actor
|
||||
alias Mobilizon.Config
|
||||
alias Mobilizon.Web.{Email, Gettext}
|
||||
|
||||
|
@ -25,11 +27,47 @@ defmodule Mobilizon.Web.Email.Activity do
|
|||
instance: Config.instance_name()
|
||||
)
|
||||
|
||||
activities = chunk_activities(activities)
|
||||
|
||||
Email.base_email(to: email, subject: subject)
|
||||
|> assign(:locale, locale)
|
||||
|> assign(:subject, subject)
|
||||
|> assign(:activities, Enum.take(activities, 10))
|
||||
|> assign(:total_number_activities, length(activities))
|
||||
|> assign(:activities, activities)
|
||||
|> assign(:total_number_activities, map_size(activities))
|
||||
|> render(:email_direct_activity)
|
||||
end
|
||||
|
||||
@spec chunk_activities(list()) :: map()
|
||||
defp chunk_activities(activities) do
|
||||
activities
|
||||
|> Enum.reduce(%{}, fn %Activity{group: %Actor{id: group_id}} = activity, acc ->
|
||||
Map.update(acc, group_id, [activity], fn activities -> activities ++ [activity] end)
|
||||
end)
|
||||
|> Enum.map(fn {key, value} ->
|
||||
{key, Enum.sort(value, &(&1.inserted_at <= &2.inserted_at))}
|
||||
end)
|
||||
|> Enum.map(fn {key, value} -> {key, filter_duplicates(value)} end)
|
||||
|> Enum.into(%{})
|
||||
end
|
||||
|
||||
# We filter duplicates when message_params are being the same
|
||||
# so it will probably not catch much things
|
||||
@spec filter_duplicates(list()) :: list()
|
||||
defp filter_duplicates(activities) do
|
||||
Enum.uniq_by(activities, fn %Activity{
|
||||
author: %Actor{id: author_id},
|
||||
group: %Actor{id: group_id},
|
||||
type: type,
|
||||
message: message,
|
||||
message_params: message_params
|
||||
} ->
|
||||
%{
|
||||
author_id: author_id,
|
||||
group_id: group_id,
|
||||
type: type,
|
||||
message: message,
|
||||
message_params: message_params
|
||||
}
|
||||
end)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -0,0 +1,30 @@
|
|||
<%= case @activity.subject do %><% :discussion_created -> %><%= dgettext("activity", "%{profile} created the discussion %{discussion}.",
|
||||
%{
|
||||
profile: Mobilizon.Actors.Actor.display_name_and_username(@activity.author),
|
||||
discussion: @activity.subject_params["discussion_title"]
|
||||
}
|
||||
) %>
|
||||
<%= page_url(Mobilizon.Web.Endpoint, :discussion, Mobilizon.Actors.Actor.preferred_username_and_domain(@activity.group), @activity.subject_params["discussion_slug"]) |> URI.decode() %><% :discussion_replied -> %><%= dgettext("activity", "%{profile} replied to the discussion %{discussion}.",
|
||||
%{
|
||||
profile: Mobilizon.Actors.Actor.display_name_and_username(@activity.author),
|
||||
discussion: @activity.subject_params["discussion_title"]
|
||||
}
|
||||
) %>
|
||||
<%= page_url(Mobilizon.Web.Endpoint, :discussion, Mobilizon.Actors.Actor.preferred_username_and_domain(@activity.group), @activity.subject_params["discussion_slug"]) |> URI.decode() %><% :discussion_renamed -> %><%= dgettext("activity", "%{profile} renamed the discussion %{discussion}.",
|
||||
%{
|
||||
profile: Mobilizon.Actors.Actor.display_name_and_username(@activity.author),
|
||||
discussion: @activity.subject_params["discussion_title"]
|
||||
}
|
||||
) %>
|
||||
<%= page_url(Mobilizon.Web.Endpoint, :discussion, Mobilizon.Actors.Actor.preferred_username_and_domain(@activity.group), @activity.subject_params["discussion_slug"]) |> URI.decode() %><% :discussion_archived -> %><%= dgettext("activity", "%{profile} archived the discussion %{discussion}.",
|
||||
%{
|
||||
profile: Mobilizon.Actors.Actor.display_name_and_username(@activity.author),
|
||||
discussion: @activity.subject_params["discussion_title"]
|
||||
}
|
||||
) %>
|
||||
<%= page_url(Mobilizon.Web.Endpoint, :discussion, Mobilizon.Actors.Actor.preferred_username_and_domain(@activity.group), @activity.subject_params["discussion_slug"]) |> URI.decode() %><% :discussion_deleted -> %><%= dgettext("activity", "%{profile} deleted the discussion %{discussion}.",
|
||||
%{
|
||||
profile: Mobilizon.Actors.Actor.display_name_and_username(@activity.author),
|
||||
discussion: @activity.subject_params["discussion_title"]
|
||||
}
|
||||
) %><% end %>
|
|
@ -0,0 +1,18 @@
|
|||
<%= 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"]
|
||||
}
|
||||
) %>
|
||||
<%= 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"]
|
||||
}
|
||||
) %>
|
||||
<%= 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 %>
|
|
@ -35,11 +35,7 @@
|
|||
<tr>
|
||||
<td bgcolor="#ffffff" align="left" style="padding: 20px 30px 0px 30px; color: #474467; font-family: 'Roboto', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;" >
|
||||
<p style="margin: 0;">
|
||||
<%= if length(@activities) > 1 do %>
|
||||
<%= gettext("There has been some activity!") %>
|
||||
<% else %>
|
||||
<%= gettext("There has been an activity!") %>
|
||||
<% end %>
|
||||
<%= dngettext("activity", "There has been an activity!", "There has been some activity!", map_size(@activities)) %>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -48,28 +44,61 @@
|
|||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td align="center" style="border-radius: 3px; text-align: left; padding: 10px 30px 0px 30px; color: #474467; font-family: 'Roboto', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400;line-height: 25px;" >
|
||||
<ul>
|
||||
<%= for activity <- @activities do %>
|
||||
<li>
|
||||
<p style="margin: 0;">
|
||||
<%= case activity.type do %>
|
||||
<% :discussion -> %>
|
||||
<%= render("activity/_discussion_activity_item.html", activity: activity) %>
|
||||
<% :event -> %>
|
||||
<%= render("activity/_event_activity_item.html", activity: activity) %>
|
||||
<% :group -> %>
|
||||
<%= render("activity/_group_activity_item.html", activity: activity) %>
|
||||
<% :member -> %>
|
||||
<%= render("activity/_member_activity_item.html", activity: activity) %>
|
||||
<% :post -> %>
|
||||
<%= render("activity/_post_activity_item.html", activity: activity) %>
|
||||
<% :resource -> %>
|
||||
<%= render("activity/_resource_activity_item.html", activity: activity) %>
|
||||
<% :comment -> %>
|
||||
<%= render("activity/_comment_activity_item.html", activity: activity) %>
|
||||
<ul style="margin: 0 auto; padding-left: 15px;">
|
||||
<%= for {_, group_activities} <- @activities do %>
|
||||
<li style="list-style: none;border-bottom: solid 2px #d7d6de;padding: 10px 0;">
|
||||
<a href="<%= page_url(Mobilizon.Web.Endpoint, :actor, Mobilizon.Actors.Actor.preferred_username_and_domain(hd(group_activities).group)) |> URI.decode() %>" target="_blank" style="color: initial;">
|
||||
<%= if hd(group_activities).group.avatar do %><div style="display: inline-block;width: 100%;max-width: 91px;vertical-align: top;text-align: left;font-family: Arial,sans-serif;font-size: 14px;">
|
||||
<img src="<%= hd(group_activities).group.avatar.url %>" style="width: 80%;max-width: 100px;margin-bottom: 20px;" />
|
||||
</div><% end %><div style="display: inline-block;width: 100%;max-width: 350px;vertical-align: top;padding-bottom: 20px;font-family: Arial,sans-serif;font-size: 16px;line-height: 22px;padding-top: 15px;">
|
||||
<p style="margin: 0;font-weight: bold;"><%= hd(group_activities).group.name || Mobilizon.Actors.Actor.preferred_username_and_domain(hd(group_activities).group) %></p>
|
||||
<%= if hd(group_activities).group.name do %>
|
||||
<span style="color: #7a7a7a"><%= Mobilizon.Actors.Actor.preferred_username_and_domain(hd(group_activities).group) %></span>
|
||||
<% end %>
|
||||
</div>
|
||||
</a>
|
||||
<ul style="padding-left: 25px;">
|
||||
<%= for activity <- Enum.take(group_activities, 5) do %>
|
||||
<li style="margin-bottom: 7px;">
|
||||
<p style="margin: 0;">
|
||||
<%= case activity.type do %>
|
||||
<% :discussion -> %>
|
||||
<%= render("activity/_discussion_activity_item.html", activity: activity) %>
|
||||
<% :event -> %>
|
||||
<%= render("activity/_event_activity_item.html", activity: activity) %>
|
||||
<% :group -> %>
|
||||
<%= render("activity/_group_activity_item.html", activity: activity) %>
|
||||
<% :member -> %>
|
||||
<%= render("activity/_member_activity_item.html", activity: activity) %>
|
||||
<% :post -> %>
|
||||
<%= render("activity/_post_activity_item.html", activity: activity) %>
|
||||
<% :resource -> %>
|
||||
<%= render("activity/_resource_activity_item.html", activity: activity) %>
|
||||
<% :comment -> %>
|
||||
<%= render("activity/_comment_activity_item.html", activity: activity) %>
|
||||
<% end %>
|
||||
</p>
|
||||
<em><%= datetime_relative(activity.inserted_at, @locale) %></em>
|
||||
</li>
|
||||
<% end %>
|
||||
</p>
|
||||
<em><%= datetime_relative(activity.inserted_at, @locale) %></em>
|
||||
</ul>
|
||||
<%= if length(group_activities) > 5 do %>
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td bgcolor="#ffffff" align="center" style="padding: 20px 30px;">
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td align="center" style="border-radius: 3px;" bgcolor="#3C376E">
|
||||
<a href="<%= page_url(Mobilizon.Web.Endpoint, :actor, Mobilizon.Actors.Actor.preferred_username_and_domain(hd(group_activities).group)) |> URI.decode() %>/timeline" target="_blank" style="font-size: 20px; font-family: Helvetica, Arial, sans-serif; color: #ffffff; text-decoration: none; padding: 15px 25px; border-radius: 2px; border: 1px solid #3C376E; display: inline-block;">
|
||||
<%= dngettext "activity", "View one more activity", "View %{count} more activities", length(group_activities) - 5, %{count: length(group_activities) - 5} %>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<% end %>
|
||||
</li>
|
||||
<% end %>
|
||||
</ul>
|
||||
|
@ -81,7 +110,7 @@
|
|||
<tr>
|
||||
<td bgcolor="#ffffff" align="left" style="padding: 20px 30px 40px 30px; color: #474467; font-family: 'Roboto', Helvetica, Arial, sans-serif; font-size: 14px; font-weight: 400; line-height: 20px;" >
|
||||
<p style="margin: 0">
|
||||
<%= gettext "Don't want to receive activity notifications? You may change frequency or disable them in your settings." %>
|
||||
<%= dgettext "activity", "Don't want to receive activity notifications? You may change frequency or disable them in your settings." %>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -1,7 +1,21 @@
|
|||
<%= @subject %>
|
||||
|
||||
==
|
||||
<%= gettext("There has been an activity!") %>
|
||||
<%= for activity <- @activities do %>
|
||||
* <%= activity.type %>
|
||||
<%= dngettext("activity", "There has been an activity!", "There has been some activity!", map_size(@activities)) %>
|
||||
|
||||
<%= for {_, group_activities} <- @activities do %>
|
||||
|
||||
==
|
||||
<%= hd(group_activities).group.name || Mobilizon.Actors.Actor.preferred_username_and_domain(hd(group_activities).group) %>
|
||||
|
||||
<%= for activity <- Enum.take(group_activities, 5) do %>
|
||||
* <%= case activity.type do %><% :discussion -> %><%= render("activity/_discussion_activity_item.text", activity: activity) %><% :event -> %><%= render("activity/_event_activity_item.text", activity: activity) %><% :group -> %><%= render("activity/_group_activity_item.text", activity: activity) %>
|
||||
<% :member -> %><%= render("activity/_member_activity_item.text", activity: activity) %><% :post -> %><%= render("activity/_post_activity_item.text", activity: activity) %><% :resource -> %><%= render("activity/_resource_activity_item.text", activity: activity) %><% :comment -> %><%= render("activity/_comment_activity_item.text", activity: activity) %><% end %>
|
||||
<%= datetime_relative(activity.inserted_at, @locale) %>
|
||||
<% end %>
|
||||
<%= gettext "Don't want to receive activity notifications? You may change frequency or disable them in your settings." %>
|
||||
<%= if length(group_activities) > 5 do %>
|
||||
<%= dngettext "activity", "View one more activity", "View %{count} more activities", length(group_activities) - 5, %{count: length(group_activities) - 5} %>
|
||||
<%= page_url(Mobilizon.Web.Endpoint, :actor, Mobilizon.Actors.Actor.preferred_username_and_domain(hd(group_activities).group)) |> URI.decode() %>/timeline
|
||||
<% end %>
|
||||
<% end %>
|
||||
<%= dgettext("activity", "Don't want to receive activity notifications? You may change frequency or disable them in your settings.") %>
|
|
@ -12,165 +12,219 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
|
|
@ -13,165 +13,227 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
msgstr[3] ""
|
||||
msgstr[4] ""
|
||||
msgstr[5] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
msgstr[3] ""
|
||||
msgstr[4] ""
|
||||
msgstr[5] ""
|
||||
|
|
|
@ -1437,23 +1437,6 @@ msgid "Public feed for %{instance}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/activity.ex:23
|
||||
#: lib/web/email/activity.ex:25
|
||||
msgid "Activity notification for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:41
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:3
|
||||
msgid "There has been an activity!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:39
|
||||
msgid "There has been some activity!"
|
||||
msgstr ""
|
||||
|
|
|
@ -13,165 +13,221 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
|
|
@ -1413,23 +1413,6 @@ msgid "Public feed for %{instance}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/activity.ex:23
|
||||
#: lib/web/email/activity.ex:25
|
||||
msgid "Activity notification for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:41
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:3
|
||||
msgid "There has been an activity!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:39
|
||||
msgid "There has been some activity!"
|
||||
msgstr ""
|
||||
|
|
|
@ -13,165 +13,219 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
|
|
@ -1662,23 +1662,6 @@ msgid "Public feed for %{instance}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/activity.ex:23
|
||||
#: lib/web/email/activity.ex:25
|
||||
msgid "Activity notification for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:41
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:3
|
||||
msgid "There has been an activity!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:39
|
||||
msgid "There has been some activity!"
|
||||
msgstr ""
|
||||
|
|
|
@ -13,165 +13,221 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
|
|
@ -1413,23 +1413,6 @@ msgid "Public feed for %{instance}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/activity.ex:23
|
||||
#: lib/web/email/activity.ex:25
|
||||
msgid "Activity notification for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:41
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:3
|
||||
msgid "There has been an activity!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:39
|
||||
msgid "There has been some activity!"
|
||||
msgstr ""
|
||||
|
|
|
@ -13,165 +13,219 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
|
|
@ -1777,23 +1777,6 @@ msgid "Public feed for %{instance}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/activity.ex:23
|
||||
#: lib/web/email/activity.ex:25
|
||||
msgid "Activity notification for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:41
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:3
|
||||
msgid "There has been an activity!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:39
|
||||
msgid "There has been some activity!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1392,23 +1392,6 @@ msgid "Public feed for %{instance}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/activity.ex:23
|
||||
#: lib/web/email/activity.ex:25
|
||||
msgid "Activity notification for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:41
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:3
|
||||
msgid "There has been an activity!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:39
|
||||
msgid "There has been some activity!"
|
||||
msgstr ""
|
||||
|
|
|
@ -13,165 +13,219 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
|
|
@ -1445,23 +1445,6 @@ msgid "Public feed for %{instance}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/activity.ex:23
|
||||
#: lib/web/email/activity.ex:25
|
||||
msgid "Activity notification for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:41
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:3
|
||||
msgid "There has been an activity!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:39
|
||||
msgid "There has been some activity!"
|
||||
msgstr ""
|
||||
|
|
|
@ -13,165 +13,219 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -13,165 +13,219 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
|
|
@ -1703,23 +1703,6 @@ msgid "Public feed for %{instance}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/activity.ex:23
|
||||
#: lib/web/email/activity.ex:25
|
||||
msgid "Activity notification for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:41
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:3
|
||||
msgid "There has been an activity!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:39
|
||||
msgid "There has been some activity!"
|
||||
msgstr ""
|
||||
|
|
|
@ -22,165 +22,219 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr "%{member} a accepté l'invitation à rejoindre le groupe."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr "%{member} a refusé l'invitation à rejoindre le groupe."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr "%{member} a demandé à rejoindre le groupe."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr "%{member} a été invité⋅e par %{profile}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr "%{profile} a ajouté le ou la membre %{membre}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr "%{profile} a archivé la discussion %{discussion}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr "%{profile} a créé la discussion %{discussion}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr "%{profile} a créé le dossier %{resource}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr "%{profile} a créé le groupe %{group}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr "%{profile} a créé la resource %{resource}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr "%{profile} a créé la discussion %{discussion}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr "%{profile} a supprimé le dossier %{resource}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr "%{profile} a supprimé la resource %{resource}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr "%{profile} a exclu le ou la membre %{membre}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr "%{profile} a déplacé le dossier %{resource}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr "%{profile} a déplacé la ressource %{resource}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr "%{profile} a quitté le groupe."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr "%{profile} a renommé la discussion %{discussion}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr "%{profile} a renommé le dossier %{old_resource_title} en %{resource}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr "%{profile} a renommé la resource %{old_resource_title} en %{resource}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr "%{profile} a répondu à la discussion %{discussion}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr "%{profile} a mis à jour le groupe %{group}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr "%{profile} a mis à jour le membre %{member}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr "L'événement %{event} a été créé par %{profile}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr "L'événement %{event} a été supprimé par %{profile}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr "L'événement %{event} a été mis à jour par %{profile}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr "Le billet %{post} a été créé par %{profile}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr "Le billet %{post} a été supprimé par %{profile}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr "Le billet %{post} a été mis à jour par %{profile}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr "%{member} a rejoint le groupe."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr "%{profile} a posté un commentaire sur l'événement %{event}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr "%{profile} a répondu à un commentaire sur l'événement %{event}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr "Vous ne voulez pas recevoir de notifications d'activité ? Vous pouvez changer leur fréquence ou les désactiver dans vos préférences."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] "Voir une activité de plus"
|
||||
msgstr[1] "Voir %{count} activités de plus"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] "Il y a eu une activité !"
|
||||
msgstr[1] "Il y a eu de l'activité !"
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -13,165 +13,219 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -13,165 +13,219 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
|
|
@ -1458,23 +1458,6 @@ msgid "Public feed for %{instance}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/activity.ex:23
|
||||
#: lib/web/email/activity.ex:25
|
||||
msgid "Activity notification for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:41
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:3
|
||||
msgid "There has been an activity!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:39
|
||||
msgid "There has been some activity!"
|
||||
msgstr ""
|
||||
|
|
|
@ -13,165 +13,219 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
|
|
@ -1746,23 +1746,6 @@ msgid "Public feed for %{instance}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/activity.ex:23
|
||||
#: lib/web/email/activity.ex:25
|
||||
msgid "Activity notification for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:41
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:3
|
||||
msgid "There has been an activity!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:39
|
||||
msgid "There has been some activity!"
|
||||
msgstr ""
|
||||
|
|
|
@ -13,165 +13,217 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
|
|
|
@ -1401,23 +1401,6 @@ msgid "Public feed for %{instance}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/activity.ex:23
|
||||
#: lib/web/email/activity.ex:25
|
||||
msgid "Activity notification for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:41
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:3
|
||||
msgid "There has been an activity!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:39
|
||||
msgid "There has been some activity!"
|
||||
msgstr ""
|
||||
|
|
|
@ -13,165 +13,219 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
|
|
@ -1426,23 +1426,6 @@ msgid "Public feed for %{instance}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/activity.ex:23
|
||||
#: lib/web/email/activity.ex:25
|
||||
msgid "Activity notification for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:41
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:3
|
||||
msgid "There has been an activity!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:39
|
||||
msgid "There has been some activity!"
|
||||
msgstr ""
|
||||
|
|
|
@ -13,165 +13,219 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
|
|
@ -1702,23 +1702,6 @@ msgid "Public feed for %{instance}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/activity.ex:23
|
||||
#: lib/web/email/activity.ex:25
|
||||
msgid "Activity notification for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:41
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:3
|
||||
msgid "There has been an activity!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:39
|
||||
msgid "There has been some activity!"
|
||||
msgstr ""
|
||||
|
|
|
@ -13,165 +13,219 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
|
|
@ -1511,23 +1511,6 @@ msgid "Public feed for %{instance}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/activity.ex:23
|
||||
#: lib/web/email/activity.ex:25
|
||||
msgid "Activity notification for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:41
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:3
|
||||
msgid "There has been an activity!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:39
|
||||
msgid "There has been some activity!"
|
||||
msgstr ""
|
||||
|
|
|
@ -13,165 +13,221 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
|
|
@ -1527,23 +1527,6 @@ msgid "Public feed for %{instance}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/activity.ex:23
|
||||
#: lib/web/email/activity.ex:25
|
||||
msgid "Activity notification for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:41
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:3
|
||||
msgid "There has been an activity!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:39
|
||||
msgid "There has been some activity!"
|
||||
msgstr ""
|
||||
|
|
|
@ -13,165 +13,219 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
|
|
@ -1406,23 +1406,6 @@ msgid "Public feed for %{instance}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/activity.ex:23
|
||||
#: lib/web/email/activity.ex:25
|
||||
msgid "Activity notification for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:41
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:3
|
||||
msgid "There has been an activity!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:39
|
||||
msgid "There has been some activity!"
|
||||
msgstr ""
|
||||
|
|
|
@ -13,165 +13,219 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
|
|
@ -1518,23 +1518,6 @@ msgid "Public feed for %{instance}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/activity.ex:23
|
||||
#: lib/web/email/activity.ex:25
|
||||
msgid "Activity notification for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:41
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:3
|
||||
msgid "There has been an activity!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:39
|
||||
msgid "There has been some activity!"
|
||||
msgstr ""
|
||||
|
|
|
@ -13,165 +13,221 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -13,165 +13,219 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||
msgid "%{member} accepted the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||
msgid "%{member} rejected the invitation to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||
msgid "%{member} requested to join the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||
msgid "%{member} was invited by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||
msgid "%{profile} added the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:49
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||
msgid "%{profile} archived the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||
msgid "%{profile} created the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||
msgid "%{profile} created the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||
msgid "%{profile} created the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||
msgid "%{profile} created the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||
msgid "%{profile} deleted the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||
msgid "%{profile} deleted the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||
msgid "%{profile} deleted the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||
msgid "%{profile} excluded member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||
msgid "%{profile} moved the folder %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||
msgid "%{profile} moved the resource %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||
msgid "%{profile} quit the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||
msgid "%{profile} renamed the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||
msgid "%{profile} replied to the discussion %{discussion}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||
msgid "%{profile} updated the group %{group}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||
msgid "%{profile} updated the member %{member}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||
msgid "The event %{event} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||
msgid "The event %{event} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||
msgid "The event %{event} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||
msgid "The post %{post} was created by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||
msgid "The post %{post} was deleted by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||
msgid "The post %{post} was updated by %{profile}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||
msgid "%{member} joined the group."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||
msgid "%{profile} posted a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43
|
||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||
msgid "%{profile} replied to a comment on the event %{event}."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:104
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:21
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:17
|
||||
msgid "View one more activity"
|
||||
msgid_plural "View %{count} more activities"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:38
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||
msgid "There has been an activity!"
|
||||
msgid_plural "There has been some activity!"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
|
|
@ -1434,23 +1434,6 @@ msgid "Public feed for %{instance}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/activity.ex:23
|
||||
#: lib/web/email/activity.ex:25
|
||||
msgid "Activity notification for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:84
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:41
|
||||
#: lib/web/templates/email/email_direct_activity.text.eex:3
|
||||
msgid "There has been an activity!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email_direct_activity.html.eex:39
|
||||
msgid "There has been some activity!"
|
||||
msgstr ""
|
||||
|
|
Loading…
Reference in New Issue