Fix push notifications for group, members & post activities

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2021-06-30 12:09:28 +02:00
parent f5aa7ffa74
commit 69e3db1e9b
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
25 changed files with 905 additions and 633 deletions

View File

@ -17,44 +17,24 @@ defmodule Mobilizon.Service.Activity.Renderer.Group do
Gettext.put_locale(locale) Gettext.put_locale(locale)
case activity.subject do case activity.subject do
:post_created -> :group_updated ->
%{ %{
body: body:
dgettext("activity", "The post %{post} was created by %{profile}.", %{ dgettext("activity", "The group %{group} was updated by %{profile}.", %{
profile: profile(activity), profile: profile(activity),
post: title(activity) group: group(activity)
}), }),
url: post_url(activity) url: group_url(activity)
}
:post_updated ->
%{
body:
dgettext("activity", "The post %{post} was updated by %{profile}.", %{
profile: profile(activity),
post: title(activity)
}),
url: post_url(activity)
}
:post_deleted ->
%{
body:
dgettext("activity", "The post %{post} was deleted by %{profile}.", %{
profile: profile(activity),
post: title(activity)
}),
url: post_url(activity)
} }
end end
end end
defp post_url(activity) do defp group_url(activity) do
Endpoint Endpoint
|> Routes.page_url(:post, activity.subject_params["post_slug"]) |> Routes.page_url(:actor, Actor.preferred_username_and_domain(activity.group))
|> URI.decode() |> URI.decode()
end end
defp profile(activity), do: Actor.display_name_and_username(activity.author) defp profile(activity), do: Actor.display_name_and_username(activity.author)
defp title(activity), do: activity.subject_params["post_title"] defp group(activity), do: Actor.display_name_and_username(activity.group)
end end

View File

@ -20,7 +20,7 @@ defmodule Mobilizon.Service.Activity.Renderer.Member do
body: body:
text(activity.subject, %{ text(activity.subject, %{
profile: profile(activity), profile: profile(activity),
member: title(activity) member: member(activity)
}), }),
url: member_url(activity) url: member_url(activity)
} }
@ -63,15 +63,21 @@ defmodule Mobilizon.Service.Activity.Renderer.Member do
end end
defp member_url(activity) do defp member_url(activity) do
Endpoint group_url =
|> Routes.page_url( Endpoint
:discussion, |> Routes.page_url(
Actor.preferred_username_and_domain(activity.group), :actor,
activity.subject_params["discussion_slug"] Actor.preferred_username_and_domain(activity.group)
) )
|> URI.decode() |> URI.decode()
"#{group_url}/settings/members"
end end
defp profile(activity), do: Actor.display_name_and_username(activity.author) defp profile(activity), do: Actor.display_name_and_username(activity.author)
defp title(activity), do: activity.subject_params["discussion_title"]
defp member(activity),
do:
activity.subject_params["member_actor_name"] ||
activity.subject_params["member_actor_federated_username"]
end end

View File

@ -16,69 +16,51 @@ defmodule Mobilizon.Service.Activity.Renderer.Post do
locale = Keyword.get(options, :locale, "en") locale = Keyword.get(options, :locale, "en")
Gettext.put_locale(locale) Gettext.put_locale(locale)
case activity.subject do %{
:discussion_created -> body:
%{ text(activity.subject, %{
body: profile: profile(activity),
dgettext("activity", "%{profile} created the discussion %{discussion}.", %{ post: title(activity),
profile: profile(activity), group: group(activity)
discussion: title(activity) }),
}), url: if(activity.subject !== :post_deleted, do: post_url(activity), else: nil)
url: discussion_url(activity) }
}
:discussion_replied ->
%{
body:
dgettext("activity", "%{profile} replied to the discussion %{discussion}.", %{
profile: profile(activity),
discussion: title(activity)
}),
url: discussion_url(activity)
}
:discussion_renamed ->
%{
body:
dgettext("activity", "%{profile} renamed the discussion %{discussion}.", %{
profile: profile(activity),
discussion: title(activity)
}),
url: discussion_url(activity)
}
:discussion_archived ->
%{
body:
dgettext("activity", "%{profile} archived the discussion %{discussion}.", %{
profile: profile(activity),
discussion: title(activity)
}),
url: discussion_url(activity)
}
:discussion_deleted ->
%{
body:
dgettext("activity", "%{profile} deleted the discussion %{discussion}.", %{
profile: profile(activity),
discussion: title(activity)
}),
url: nil
}
end
end end
defp discussion_url(activity) do defp text(:post_created, args) do
dgettext(
"activity",
"The post %{post} from group %{group} was published by %{profile}.",
args
)
end
defp text(:post_updated, args) do
dgettext(
"activity",
"The post %{post} from group %{group} was updated by %{profile}.",
args
)
end
defp text(:post_deleted, args) do
dgettext(
"activity",
"The post %{post} from group %{group} was deleted by %{profile}.",
args
)
end
defp post_url(activity) do
Endpoint Endpoint
|> Routes.page_url( |> Routes.page_url(
:discussion, :post,
Actor.preferred_username_and_domain(activity.group), activity.subject_params["post_slug"]
activity.subject_params["discussion_slug"]
) )
|> URI.decode() |> URI.decode()
end end
defp profile(activity), do: Actor.display_name_and_username(activity.author) defp profile(activity), do: Actor.display_name_and_username(activity.author)
defp title(activity), do: activity.subject_params["discussion_title"] defp title(activity), do: activity.subject_params["post_title"]
defp group(activity), do: Actor.display_name_and_username(activity.group)
end end

View File

@ -42,15 +42,13 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "" msgstr ""
@ -74,8 +72,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "" msgstr ""
@ -117,8 +114,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "" msgstr ""
@ -136,8 +132,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "" msgstr ""
@ -172,20 +167,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "" msgstr ""
@ -264,12 +259,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -280,7 +275,7 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
@ -297,6 +292,26 @@ msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr ""
#, elixir-format
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
#, elixir-format
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
#, elixir-format
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""

View File

@ -43,15 +43,13 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "" msgstr ""
@ -75,8 +73,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "" msgstr ""
@ -118,8 +115,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "" msgstr ""
@ -137,8 +133,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "" msgstr ""
@ -173,20 +168,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "" msgstr ""
@ -273,12 +268,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -289,23 +284,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""

View File

@ -43,15 +43,13 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "" msgstr ""
@ -75,8 +73,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "" msgstr ""
@ -118,8 +115,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "" msgstr ""
@ -137,8 +133,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "" msgstr ""
@ -173,20 +168,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "" msgstr ""
@ -267,12 +262,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -283,23 +278,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""

View File

@ -43,15 +43,13 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "" msgstr ""
@ -75,8 +73,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "" msgstr ""
@ -118,8 +115,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "" msgstr ""
@ -137,8 +133,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "" msgstr ""
@ -173,20 +168,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "" msgstr ""
@ -265,12 +260,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -281,23 +276,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""

View File

@ -43,15 +43,13 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "" msgstr ""
@ -75,8 +73,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "" msgstr ""
@ -118,8 +115,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "" msgstr ""
@ -137,8 +133,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "" msgstr ""
@ -173,20 +168,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "" msgstr ""
@ -267,12 +262,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -283,23 +278,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""

View File

@ -43,15 +43,13 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "" msgstr ""
@ -75,8 +73,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "" msgstr ""
@ -118,8 +115,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "" msgstr ""
@ -137,8 +133,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "" msgstr ""
@ -173,20 +168,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "" msgstr ""
@ -265,12 +260,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -281,23 +276,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""

View File

@ -43,15 +43,13 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "" msgstr ""
@ -75,8 +73,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "" msgstr ""
@ -118,8 +115,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "" msgstr ""
@ -137,8 +133,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "" msgstr ""
@ -173,20 +168,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "" msgstr ""
@ -265,12 +260,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -281,23 +276,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""

View File

@ -18,318 +18,314 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.6.2\n" "X-Generator: Weblate 4.6.2\n"
#, elixir-format
#: lib/service/activity/renderer/member.ex:38 #: lib/service/activity/renderer/member.ex:38
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19 lib/web/templates/email/activity/_member_activity_item.text.eex:12 #: lib/web/templates/email/activity/_member_activity_item.html.eex:19 lib/web/templates/email/activity/_member_activity_item.text.eex:12
#, elixir-format
msgid "%{member} accepted the invitation to join the group." msgid "%{member} accepted the invitation to join the group."
msgstr "%{member} aceptó la invitación para unirse al grupo." msgstr "%{member} aceptó la invitación para unirse al grupo."
#, elixir-format
#: lib/service/activity/renderer/member.ex:42 #: lib/service/activity/renderer/member.ex:42
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26 lib/web/templates/email/activity/_member_activity_item.text.eex:17 #: lib/web/templates/email/activity/_member_activity_item.html.eex:26 lib/web/templates/email/activity/_member_activity_item.text.eex:17
#, elixir-format
msgid "%{member} rejected the invitation to join the group." msgid "%{member} rejected the invitation to join the group."
msgstr "%{member} rechazó la invitación para unirse al grupo." msgstr "%{member} rechazó la invitación para unirse al grupo."
#, elixir-format
#: lib/service/activity/renderer/member.ex:30 #: lib/service/activity/renderer/member.ex:30
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4 lib/web/templates/email/activity/_member_activity_item.text.eex:1 #: lib/web/templates/email/activity/_member_activity_item.html.eex:4 lib/web/templates/email/activity/_member_activity_item.text.eex:1
#, elixir-format
msgid "%{member} requested to join the group." msgid "%{member} requested to join the group."
msgstr "%{member} solicitó unirse al grupo." msgstr "%{member} solicitó unirse al grupo."
#, elixir-format
#: lib/service/activity/renderer/member.ex:34 #: lib/service/activity/renderer/member.ex:34
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11 lib/web/templates/email/activity/_member_activity_item.text.eex:6 #: lib/web/templates/email/activity/_member_activity_item.html.eex:11 lib/web/templates/email/activity/_member_activity_item.text.eex:6
#, elixir-format
msgid "%{member} was invited by %{profile}." msgid "%{member} was invited by %{profile}."
msgstr "%{member} fue invitado por %{profile}." msgstr "%{member} fue invitado por %{profile}."
#, elixir-format
#: lib/service/activity/renderer/member.ex:50 #: lib/service/activity/renderer/member.ex:50
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40 lib/web/templates/email/activity/_member_activity_item.text.eex:27 #: lib/web/templates/email/activity/_member_activity_item.html.eex:40 lib/web/templates/email/activity/_member_activity_item.text.eex:27
#, elixir-format
msgid "%{profile} added the member %{member}." msgid "%{profile} added the member %{member}."
msgstr "%{profile} agregó el miembro %{member}." msgstr "%{profile} agregó el miembro %{member}."
#: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/service/activity/renderer/post.ex:53 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
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65
#: 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}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "%{profile} archivó la discusión %{discussion}." msgstr "%{profile} archivó la discusión %{discussion}."
#: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/service/activity/renderer/post.ex:23 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
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25
#: 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}." msgid "%{profile} created the discussion %{discussion}."
msgstr "%{profile} creó la discusión %{discussion}." msgstr "%{profile} creó la discusión %{discussion}."
#, elixir-format
#: lib/service/activity/renderer/resource.ex:24 #: lib/service/activity/renderer/resource.ex:24
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5 lib/web/templates/email/activity/_resource_activity_item.text.eex:2 #: lib/web/templates/email/activity/_resource_activity_item.html.eex:5 lib/web/templates/email/activity/_resource_activity_item.text.eex:2
#, elixir-format
msgid "%{profile} created the folder %{resource}." msgid "%{profile} created the folder %{resource}."
msgstr "%{profile} creó la carpeta %{resource}." msgstr "%{profile} creó la carpeta %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4 #: lib/web/templates/email/activity/_group_activity_item.html.eex:4
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1 #: lib/web/templates/email/activity/_group_activity_item.text.eex:1
#, elixir-format
msgid "%{profile} created the group %{group}." msgid "%{profile} created the group %{group}."
msgstr "%{profile} crfeó el grupo %{group}." msgstr "%{profile} crfeó el grupo %{group}."
#, elixir-format
#: lib/service/activity/renderer/resource.ex:33 #: lib/service/activity/renderer/resource.ex:33
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20 lib/web/templates/email/activity/_resource_activity_item.text.eex:8 #: lib/web/templates/email/activity/_resource_activity_item.html.eex:20 lib/web/templates/email/activity/_resource_activity_item.text.eex:8
#, elixir-format
msgid "%{profile} created the resource %{resource}." msgid "%{profile} created the resource %{resource}."
msgstr "%{profile} creó el recurso %{resource}." msgstr "%{profile} creó el recurso %{resource}."
#: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/service/activity/renderer/post.ex:63 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
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75
#: 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}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "%{profile} eliminó la discusión %{discussion}." msgstr "%{profile} eliminó la discusión %{discussion}."
#, elixir-format
#: lib/service/activity/renderer/resource.ex:97 #: lib/service/activity/renderer/resource.ex:97
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103 lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #: lib/web/templates/email/activity/_resource_activity_item.html.eex:103 lib/web/templates/email/activity/_resource_activity_item.text.eex:40
#, elixir-format
msgid "%{profile} deleted the folder %{resource}." msgid "%{profile} deleted the folder %{resource}."
msgstr "%{profile} borró la carpeta %{resource}." msgstr "%{profile} borró la carpeta %{resource}."
#, elixir-format
#: lib/service/activity/renderer/resource.ex:106 #: lib/service/activity/renderer/resource.ex:106
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111 lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #: lib/web/templates/email/activity/_resource_activity_item.html.eex:111 lib/web/templates/email/activity/_resource_activity_item.text.eex:45
#, elixir-format
msgid "%{profile} deleted the resource %{resource}." msgid "%{profile} deleted the resource %{resource}."
msgstr "%{profile} eliminado el recurso %{resource}." msgstr "%{profile} eliminado el recurso %{resource}."
#, elixir-format
#: lib/service/activity/renderer/member.ex:58 #: lib/service/activity/renderer/member.ex:58
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56 lib/web/templates/email/activity/_member_activity_item.text.eex:39 #: lib/web/templates/email/activity/_member_activity_item.html.eex:56 lib/web/templates/email/activity/_member_activity_item.text.eex:39
#, elixir-format
msgid "%{profile} excluded member %{member}." msgid "%{profile} excluded member %{member}."
msgstr "%{profile }miembro excluido %{member}." msgstr "%{profile }miembro excluido %{member}."
#, elixir-format
#: lib/service/activity/renderer/resource.ex:76 #: lib/service/activity/renderer/resource.ex:76
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71 lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #: lib/web/templates/email/activity/_resource_activity_item.html.eex:71 lib/web/templates/email/activity/_resource_activity_item.text.eex:28
#, elixir-format
msgid "%{profile} moved the folder %{resource}." msgid "%{profile} moved the folder %{resource}."
msgstr "%{profile} movió la carpeta %{resource}." msgstr "%{profile} movió la carpeta %{resource}."
#, elixir-format
#: lib/service/activity/renderer/resource.ex:85 #: lib/service/activity/renderer/resource.ex:85
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86 lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #: lib/web/templates/email/activity/_resource_activity_item.html.eex:86 lib/web/templates/email/activity/_resource_activity_item.text.eex:34
#, elixir-format
msgid "%{profile} moved the resource %{resource}." msgid "%{profile} moved the resource %{resource}."
msgstr "%{profile} movió el recurso %{resource}." msgstr "%{profile} movió el recurso %{resource}."
#, elixir-format
#: lib/service/activity/renderer/member.ex:62 #: lib/service/activity/renderer/member.ex:62
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64 lib/web/templates/email/activity/_member_activity_item.text.eex:45 #: lib/web/templates/email/activity/_member_activity_item.html.eex:64 lib/web/templates/email/activity/_member_activity_item.text.eex:45
#, elixir-format
msgid "%{profile} quit the group." msgid "%{profile} quit the group."
msgstr "%{profile} abandona el grupo." msgstr "%{profile} abandona el grupo."
#: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/service/activity/renderer/post.ex:43 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
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55
#: 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}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "%{profile} renombrado la discusión %{discussion}." msgstr "%{profile} renombrado la discusión %{discussion}."
#, elixir-format
#: lib/service/activity/renderer/resource.ex:45 #: lib/service/activity/renderer/resource.ex:45
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37 lib/web/templates/email/activity/_resource_activity_item.text.eex:14 #: lib/web/templates/email/activity/_resource_activity_item.html.eex:37 lib/web/templates/email/activity/_resource_activity_item.text.eex:14
#, elixir-format
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
msgstr "" msgstr ""
"%{profile} ha renombrado la carpeta de %{old_resource_title} a %{resource}." "%{profile} ha renombrado la carpeta de %{old_resource_title} a %{resource}."
#, elixir-format
#: lib/service/activity/renderer/resource.ex:59 #: lib/service/activity/renderer/resource.ex:59
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53 lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #: lib/web/templates/email/activity/_resource_activity_item.html.eex:53 lib/web/templates/email/activity/_resource_activity_item.text.eex:21
#, elixir-format
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
msgstr "" msgstr ""
"%{profile} ha renombrado el recurso de %{old_resource_title} a %{resource}." "%{profile} ha renombrado el recurso de %{old_resource_title} a %{resource}."
#: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/service/activity/renderer/post.ex:33 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
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35
#: 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}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "%{profile} respondió a la discusión %{discussion}." msgstr "%{profile} respondió a la discusión %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19 #: lib/web/templates/email/activity/_group_activity_item.html.eex:19
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7 #: lib/web/templates/email/activity/_group_activity_item.text.eex:7
#, elixir-format
msgid "%{profile} updated the group %{group}." msgid "%{profile} updated the group %{group}."
msgstr "%{profile} actualizó el grupo %{group}." msgstr "%{profile} actualizó el grupo %{group}."
#, elixir-format
#: lib/service/activity/renderer/member.ex:54 #: lib/service/activity/renderer/member.ex:54
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48 lib/web/templates/email/activity/_member_activity_item.text.eex:33 #: lib/web/templates/email/activity/_member_activity_item.html.eex:48 lib/web/templates/email/activity/_member_activity_item.text.eex:33
#, elixir-format
msgid "%{profile} updated the member %{member}." msgid "%{profile} updated the member %{member}."
msgstr "%{profile} actualizado el miembro %{member}." msgstr "%{profile} actualizado el miembro %{member}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:23 #: lib/service/activity/renderer/event.ex:23
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1 #: lib/web/templates/email/activity/_event_activity_item.html.eex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1
#, elixir-format
msgid "The event %{event} was created by %{profile}." msgid "The event %{event} was created by %{profile}."
msgstr "El evento %{event} fue creado por %{profile}." msgstr "El evento %{event} fue creado por %{profile}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:43 #: lib/service/activity/renderer/event.ex:43
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13 #: lib/web/templates/email/activity/_event_activity_item.html.eex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13
#, elixir-format
msgid "The event %{event} was deleted by %{profile}." msgid "The event %{event} was deleted by %{profile}."
msgstr "El evento% {event} fue eliminado por % {profile}." msgstr "El evento% {event} fue eliminado por % {profile}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:33 #: lib/service/activity/renderer/event.ex:33
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7 #: lib/web/templates/email/activity/_event_activity_item.html.eex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7
#, elixir-format
msgid "The event %{event} was updated by %{profile}." msgid "The event %{event} was updated by %{profile}."
msgstr "El evento %{event} fue actualizado por %{profile}." msgstr "El evento %{event} fue actualizado por %{profile}."
#: lib/service/activity/renderer/group.ex:23
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1
#, elixir-format #, 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}." msgid "The post %{post} was created by %{profile}."
msgstr "El cargo %{post} fue creado por %{profile}." msgstr "El cargo %{post} fue creado por %{profile}."
#: lib/service/activity/renderer/group.ex:43
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13
#, elixir-format #, 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}." msgid "The post %{post} was deleted by %{profile}."
msgstr "El post %{post} fue eliminado por %{profile}." msgstr "El post %{post} fue eliminado por %{profile}."
#: lib/service/activity/renderer/group.ex:33
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7
#, elixir-format #, 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}." msgid "The post %{post} was updated by %{profile}."
msgstr "El post %{post} fue actualizado por %{profile}." msgstr "El post %{post} fue actualizado por %{profile}."
#, elixir-format
#: lib/service/activity/renderer/member.ex:46 #: lib/service/activity/renderer/member.ex:46
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33 lib/web/templates/email/activity/_member_activity_item.text.eex:22 #: lib/web/templates/email/activity/_member_activity_item.html.eex:33 lib/web/templates/email/activity/_member_activity_item.text.eex:22
#, elixir-format
msgid "%{member} joined the group." msgid "%{member} joined the group."
msgstr "%{member} se unió al grupo." msgstr "%{member} se unió al grupo."
#, elixir-format
#: lib/service/activity/renderer/event.ex:63 #: lib/service/activity/renderer/event.ex:63
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25 #: lib/web/templates/email/activity/_event_activity_item.html.eex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25
#, elixir-format
msgid "%{profile} posted a comment on the event %{event}." msgid "%{profile} posted a comment on the event %{event}."
msgstr "%{profile} publicó un comentario sobre el evento %{event}." msgstr "%{profile} publicó un comentario sobre el evento %{event}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:54 #: lib/service/activity/renderer/event.ex:54
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19 #: lib/web/templates/email/activity/_event_activity_item.html.eex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19
#, elixir-format
msgid "%{profile} replied to a comment on the event %{event}." msgid "%{profile} replied to a comment on the event %{event}."
msgstr "%{profile} respondió a un comentario sobre el evento %{event}." msgstr "%{profile} respondió a un comentario sobre el evento %{event}."
#, elixir-format
#: lib/web/templates/email/email_direct_activity.text.eex:27 #: lib/web/templates/email/email_direct_activity.text.eex:27
#: lib/web/templates/email/email_direct_activity.text.eex:23
#, elixir-format
#, elixir-format
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings." msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
msgstr "" msgstr ""
"¿No quieres recibir notificaciones de actividad? Puede cambiar la frecuencia " "¿No quieres recibir notificaciones de actividad? Puede cambiar la frecuencia "
"o deshabilitarlos en su configuración." "o deshabilitarlos en su configuración."
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.eex:135 #: lib/web/templates/email/email_direct_activity.html.eex:135
#: lib/web/templates/email/email_direct_activity.text.eex:23 #: lib/web/templates/email/email_direct_activity.text.eex:23
#: lib/web/templates/email/email_direct_activity.html.eex:133
#: lib/web/templates/email/email_direct_activity.text.eex:19
#, elixir-format
#, elixir-format
msgid "View one more activity" msgid "View one more activity"
msgid_plural "View %{count} more activities" msgid_plural "View %{count} more activities"
msgstr[0] "Ver una actividad más" msgstr[0] "Ver una actividad más"
msgstr[1] "Ver %{count} actividades mas" msgstr[1] "Ver %{count} actividades mas"
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.eex:44 #: lib/web/templates/email/email_direct_activity.html.eex:44
#: lib/web/templates/email/email_direct_activity.html.eex:46 lib/web/templates/email/email_direct_activity.text.eex:6 #: lib/web/templates/email/email_direct_activity.html.eex:46 lib/web/templates/email/email_direct_activity.text.eex:6
#: lib/web/templates/email/email_direct_activity.text.eex:7 #: lib/web/templates/email/email_direct_activity.text.eex:7
#: lib/web/templates/email/email_direct_activity.html.eex:46 lib/web/templates/email/email_direct_activity.text.eex:4
#, elixir-format
msgid "There has been an activity!" msgid "There has been an activity!"
msgid_plural "There has been some activity!" msgid_plural "There has been some activity!"
msgstr[0] "¡Ha habido una actividad!" msgstr[0] "¡Ha habido una actividad!"
msgstr[1] "¡Ha habido algopúnas actividades!" msgstr[1] "¡Ha habido algopúnas actividades!"
#: lib/service/activity/renderer/renderer.ex:38
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/renderer.ex:38
msgid "Activity on %{instance}" msgid "Activity on %{instance}"
msgstr "Actividad en %{instance}" msgstr "Actividad en %{instance}"
#, elixir-format
#: lib/service/activity/renderer/comment.ex:38 #: lib/service/activity/renderer/comment.ex:38
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7
#: lib/web/templates/email/email_anonymous_activity.html.eex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5 #: lib/web/templates/email/email_anonymous_activity.html.eex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:37
#, elixir-format
msgid "%{profile} has posted an announcement under event %{event}." msgid "%{profile} has posted an announcement under event %{event}."
msgstr "%{profile} ha publicado un anuncio en el evento %{event}." msgstr "%{profile} ha publicado un anuncio en el evento %{event}."
#, elixir-format
#: lib/service/activity/renderer/comment.ex:24 #: lib/service/activity/renderer/comment.ex:24
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:31
#, elixir-format
msgid "%{profile} mentionned you in a comment under event %{event}." msgid "%{profile} mentionned you in a comment under event %{event}."
msgstr "%{profile} te mencionó en un comentario en el evento %{event}." msgstr "%{profile} te mencionó en un comentario en el evento %{event}."
#: lib/service/activity/renderer/discussion.ex:45
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:45
msgid "%{profile} mentionned you in the discussion %{discussion}." msgid "%{profile} mentionned you in the discussion %{discussion}."
msgstr "%{profile}te mencioné en la discusión %{discussion}." msgstr "%{profile}te mencioné en la discusión %{discussion}."
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.eex:155 #: lib/web/templates/email/email_direct_activity.html.eex:155
#: lib/web/templates/email/email_direct_activity.html.eex:153
#, elixir-format
#, elixir-format
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}." msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
msgstr "" msgstr ""
"¿No quieres recibir notificaciones de actividad? Puede cambiar la frecuencia " "¿No quieres recibir notificaciones de actividad? Puede cambiar la frecuencia "
"o deshabilitarlos en su configuración." "o deshabilitarlos en su configuración."
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.eex:42 #: lib/web/templates/email/email_direct_activity.html.eex:42
#: lib/web/templates/email/email_direct_activity.text.eex:5 #: lib/web/templates/email/email_direct_activity.text.eex:5
#, elixir-format
msgid "Here's your weekly activity recap" msgid "Here's your weekly activity recap"
msgstr "Aquí está su resumen de actividad semanal" msgstr "Aquí está su resumen de actividad semanal"
#: lib/web/email/activity.ex:101 lib/web/email/activity.ex:122
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "Actividad en %{instance}" msgstr "Actividad en %{instance}"
#: lib/web/email/activity.ex:108
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "Resumen de actividad diaria en %{instance}" msgstr "Resumen de actividad diaria en %{instance}"
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.eex:40 #: lib/web/templates/email/email_direct_activity.html.eex:40
#: lib/web/templates/email/email_direct_activity.text.eex:4 #: lib/web/templates/email/email_direct_activity.text.eex:4
#, elixir-format
msgid "Here's your daily activity recap" msgid "Here's your daily activity recap"
msgstr "Aquí está su resumen de actividad diaria" msgstr "Aquí está su resumen de actividad diaria"
#, elixir-format
#: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}"
msgstr "Resumen de actividad semanal para %{instance}"
#, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "%{profile} ha publicado un nuevo comentario en tu evento %{event}." msgstr "%{profile} ha publicado un nuevo comentario en tu evento %{event}."
#, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
#, elixir-format
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "%{profile} ha publicado una nueva respuesta en tu evento %{event}." msgstr "%{profile} ha publicado una nueva respuesta en tu evento %{event}."
#: lib/web/email/activity.ex:44
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "Anuncio para su evento %{event}" msgstr "Anuncio para su evento %{event}"
#: lib/web/email/activity.ex:115
#, elixir-format #, elixir-format
msgid "Weekly activity recap for %{instance}" #: lib/service/activity/renderer/group.ex:23
msgstr "Resumen de actividad semanal para %{instance}" msgid "The group %{group} was updated by %{profile}."
msgstr "El post %{post} fue actualizado por %{profile}."
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr "El post %{post} fue actualizado por %{profile}."
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr "El post %{post} fue actualizado por %{profile}."
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr "El post %{post} fue actualizado por %{profile}."

View File

@ -50,15 +50,13 @@ msgstr "%{profile} lisäsi jäsenen %{member}."
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "%{profile} arkistoi keskustelun %{discussion}." msgstr "%{profile} arkistoi keskustelun %{discussion}."
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "%{profile} loi keskustelun %{discussion}." msgstr "%{profile} loi keskustelun %{discussion}."
@ -82,8 +80,7 @@ msgstr "%{profile} loi resurssin %{resource}."
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "%{profile} poisti keskustelun %{discussion}." msgstr "%{profile} poisti keskustelun %{discussion}."
@ -125,8 +122,7 @@ msgstr "%{profile} poistui ryhmästä."
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "%{profile} muutti keskustelun %{discussion} nimer." msgstr "%{profile} muutti keskustelun %{discussion} nimer."
@ -144,8 +140,7 @@ msgstr "%{profile} muutti resurssin %{old_resource_title} nimeksi %{resource}."
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "%{profile} vastasi keskusteluun %{discussion}." msgstr "%{profile} vastasi keskusteluun %{discussion}."
@ -180,20 +175,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "%{profile} päivitti tapahtumaa %{event}." msgstr "%{profile} päivitti tapahtumaa %{event}."
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "%{profile} loi julkaisun %{post}." msgstr "%{profile} loi julkaisun %{post}."
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "%{profile} poisti julkaisun %{post}." msgstr "%{profile} poisti julkaisun %{post}."
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "%{profile} päivitti julkaisun %{post}." msgstr "%{profile} päivitti julkaisun %{post}."
@ -276,12 +271,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "Toimenpide palvelimella %{instance}" msgstr "Toimenpide palvelimella %{instance}"
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -292,23 +287,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr "%{profile} päivitti julkaisun %{post}."
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr "%{profile} päivitti julkaisun %{post}."
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr "%{profile} päivitti julkaisun %{post}."
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr "%{profile} päivitti julkaisun %{post}."

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"POT-Creation-Date: \n" "POT-Creation-Date: \n"
"PO-Revision-Date: 2021-06-27 18:06+0200\n" "PO-Revision-Date: 2021-06-30 12:15+0200\n"
"Last-Translator: Thomas Citharel <thomas.citharel@framasoft.org>\n" "Last-Translator: Thomas Citharel <thomas.citharel@framasoft.org>\n"
"Language-Team: French <https://weblate.framasoft.org/projects/mobilizon/activity/fr/>\n" "Language-Team: French <https://weblate.framasoft.org/projects/mobilizon/activity/fr/>\n"
"Language: fr\n" "Language: fr\n"
@ -45,14 +45,12 @@ msgstr "%{member} a été invité⋅e par %{profile}."
msgid "%{profile} added the member %{member}." msgid "%{profile} added the member %{member}."
msgstr "%{profile} a ajouté le ou la membre %{membre}." msgstr "%{profile} a ajouté le ou la membre %{membre}."
#: lib/service/activity/renderer/discussion.ex:65 lib/service/activity/renderer/post.ex:53 #: lib/service/activity/renderer/discussion.ex:65 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19 #: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "%{profile} a archivé la discussion %{discussion}." msgstr "%{profile} a archivé la discussion %{discussion}."
#: lib/service/activity/renderer/discussion.ex:25 lib/service/activity/renderer/post.ex:23 #: lib/service/activity/renderer/discussion.ex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1 #: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "%{profile} a créé la discussion %{discussion}." msgstr "%{profile} a créé la discussion %{discussion}."
@ -71,8 +69,7 @@ msgstr "%{profile} a créé le groupe %{group}."
msgid "%{profile} created the resource %{resource}." msgid "%{profile} created the resource %{resource}."
msgstr "%{profile} a créé la resource %{resource}." msgstr "%{profile} a créé la resource %{resource}."
#: lib/service/activity/renderer/discussion.ex:75 lib/service/activity/renderer/post.ex:63 #: lib/service/activity/renderer/discussion.ex:75 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25 #: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "%{profile} a créé la discussion %{discussion}." msgstr "%{profile} a créé la discussion %{discussion}."
@ -107,8 +104,7 @@ msgstr "%{profile} a déplacé la ressource %{resource}."
msgid "%{profile} quit the group." msgid "%{profile} quit the group."
msgstr "%{profile} a quitté le groupe." msgstr "%{profile} a quitté le groupe."
#: lib/service/activity/renderer/discussion.ex:55 lib/service/activity/renderer/post.ex:43 #: lib/service/activity/renderer/discussion.ex:55 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13 #: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "%{profile} a renommé la discussion %{discussion}." msgstr "%{profile} a renommé la discussion %{discussion}."
@ -123,8 +119,7 @@ msgstr "%{profile} a renommé le dossier %{old_resource_title} en %{resource}."
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
msgstr "%{profile} a renommé la resource %{old_resource_title} en %{resource}." msgstr "%{profile} a renommé la resource %{old_resource_title} en %{resource}."
#: lib/service/activity/renderer/discussion.ex:35 lib/service/activity/renderer/post.ex:33 #: lib/service/activity/renderer/discussion.ex:35 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7 #: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "%{profile} a répondu à la discussion %{discussion}." msgstr "%{profile} a répondu à la discussion %{discussion}."
@ -153,18 +148,15 @@ msgstr "L'événement %{event} a été supprimé par %{profile}."
msgid "The event %{event} was updated by %{profile}." msgid "The event %{event} was updated by %{profile}."
msgstr "L'événement %{event} a été mis à jour par %{profile}." msgstr "L'événement %{event} a été mis à jour par %{profile}."
#: lib/service/activity/renderer/group.ex:23 lib/web/templates/email/activity/_post_activity_item.html.eex:4 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "Le billet %{post} a été créé par %{profile}." msgstr "Le billet %{post} a été créé par %{profile}."
#: lib/service/activity/renderer/group.ex:43 lib/web/templates/email/activity/_post_activity_item.html.eex:34 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "Le billet %{post} a été supprimé par %{profile}." msgstr "Le billet %{post} a été supprimé par %{profile}."
#: lib/service/activity/renderer/group.ex:33 lib/web/templates/email/activity/_post_activity_item.html.eex:19 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "Le billet %{post} a été mis à jour par %{profile}." msgstr "Le billet %{post} a été mis à jour par %{profile}."
@ -229,11 +221,11 @@ msgstr ""
msgid "Here's your weekly activity recap" msgid "Here's your weekly activity recap"
msgstr "Voici votre récapitulatif hebdomadaire d'activité" msgstr "Voici votre récapitulatif hebdomadaire d'activité"
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "Notification d'activité sur %{instance}" msgstr "Notification d'activité sur %{instance}"
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "Récapitulatif quotidien d'activité sur %{instance}" msgstr "Récapitulatif quotidien d'activité sur %{instance}"
@ -241,7 +233,7 @@ msgstr "Récapitulatif quotidien d'activité sur %{instance}"
msgid "Here's your daily activity recap" msgid "Here's your daily activity recap"
msgstr "Voici votre récapitulatif quotidien d'activité" msgstr "Voici votre récapitulatif quotidien d'activité"
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "Récapitulatif hebdomadaire d'activité sur %{instance}" msgstr "Récapitulatif hebdomadaire d'activité sur %{instance}"
@ -255,6 +247,22 @@ msgstr "%{profile} a posté un nouveau commentaire sous votre événement %{even
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "%{profile} a posté une nouvelle réponse sous votre événement %{event}." msgstr "%{profile} a posté une nouvelle réponse sous votre événement %{event}."
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "Annonce pour votre événement %{event}" msgstr "Annonce pour votre événement %{event}"
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr "Le groupe %{group} a été mis à jour par %{profile}."
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr "Le billet %{post} du groupe %{group} a été supprimé par %{profile}."
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr "Le billet %{post} du groupe %{group} a été publié par %{profile}."
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr "Le billet %{post} du groupe %{group} a été mis à jour par %{profile}."

View File

@ -43,15 +43,13 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "" msgstr ""
@ -75,8 +73,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "" msgstr ""
@ -118,8 +115,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "" msgstr ""
@ -137,8 +133,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "" msgstr ""
@ -173,20 +168,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "" msgstr ""
@ -265,12 +260,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -281,23 +276,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""

View File

@ -43,15 +43,13 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "" msgstr ""
@ -75,8 +73,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "" msgstr ""
@ -118,8 +115,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "" msgstr ""
@ -137,8 +133,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "" msgstr ""
@ -173,20 +168,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "" msgstr ""
@ -265,12 +260,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -281,23 +276,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""

View File

@ -43,15 +43,13 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "" msgstr ""
@ -75,8 +73,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "" msgstr ""
@ -118,8 +115,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "" msgstr ""
@ -137,8 +133,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "" msgstr ""
@ -173,20 +168,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "" msgstr ""
@ -265,12 +260,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -281,23 +276,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""

View File

@ -43,15 +43,13 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "" msgstr ""
@ -75,8 +73,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "" msgstr ""
@ -118,8 +115,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "" msgstr ""
@ -137,8 +133,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "" msgstr ""
@ -173,20 +168,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "" msgstr ""
@ -263,12 +258,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -279,23 +274,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""

View File

@ -43,15 +43,13 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "" msgstr ""
@ -75,8 +73,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "" msgstr ""
@ -118,8 +115,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "" msgstr ""
@ -137,8 +133,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "" msgstr ""
@ -173,20 +168,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "" msgstr ""
@ -265,12 +260,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -281,23 +276,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""

View File

@ -43,15 +43,13 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "" msgstr ""
@ -75,8 +73,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "" msgstr ""
@ -118,8 +115,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "" msgstr ""
@ -137,8 +133,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "" msgstr ""
@ -173,20 +168,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "" msgstr ""
@ -265,12 +260,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -281,23 +276,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""

View File

@ -43,15 +43,13 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "" msgstr ""
@ -75,8 +73,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "" msgstr ""
@ -118,8 +115,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "" msgstr ""
@ -137,8 +133,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "" msgstr ""
@ -173,20 +168,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "" msgstr ""
@ -265,12 +260,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -281,23 +276,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""

View File

@ -43,15 +43,13 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "" msgstr ""
@ -75,8 +73,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "" msgstr ""
@ -118,8 +115,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "" msgstr ""
@ -137,8 +133,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "" msgstr ""
@ -173,20 +168,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "" msgstr ""
@ -267,12 +262,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -283,23 +278,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""

View File

@ -43,15 +43,13 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "" msgstr ""
@ -75,8 +73,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "" msgstr ""
@ -118,8 +115,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "" msgstr ""
@ -137,8 +133,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "" msgstr ""
@ -173,20 +168,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "" msgstr ""
@ -265,12 +260,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -281,23 +276,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""

View File

@ -43,15 +43,13 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "" msgstr ""
@ -75,8 +73,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "" msgstr ""
@ -118,8 +115,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "" msgstr ""
@ -137,8 +133,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "" msgstr ""
@ -173,20 +168,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "" msgstr ""
@ -265,12 +260,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -281,23 +276,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""

View File

@ -51,15 +51,13 @@ msgstr "%{profile} добавил участника %{member}."
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "%{profile} заархивировал обсуждение %{discussion}." msgstr "%{profile} заархивировал обсуждение %{discussion}."
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "%{profile} создал обсуждение %{discussion}." msgstr "%{profile} создал обсуждение %{discussion}."
@ -83,8 +81,7 @@ msgstr "%{profile} создал ресурс %{resource}."
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "%{profile} удалил обсуждение %{discussion}." msgstr "%{profile} удалил обсуждение %{discussion}."
@ -126,8 +123,7 @@ msgstr "%{profile} вышел из группы."
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "%{profile} переименовал обсуждение %{discussion}." msgstr "%{profile} переименовал обсуждение %{discussion}."
@ -145,8 +141,7 @@ msgstr "%{profile} переименовал ресурс из %{old_resource_tit
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "%{profile} ответил на обсуждение %{discussion}." msgstr "%{profile} ответил на обсуждение %{discussion}."
@ -181,20 +176,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "Мероприятие %{event} было обновлено %{profile}." msgstr "Мероприятие %{event} было обновлено %{profile}."
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "Публикация %{post} была создана %{profile}." msgstr "Публикация %{post} была создана %{profile}."
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "Публикация %{post} была удалена %{profile}." msgstr "Публикация %{post} была удалена %{profile}."
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "Публикация %{post} была обновлена %{profile}." msgstr "Публикация %{post} была обновлена %{profile}."
@ -279,12 +274,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "События на %{instance}" msgstr "События на %{instance}"
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -295,23 +290,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr "Публикация %{post} была обновлена %{profile}."
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr "Публикация %{post} была обновлена %{profile}."
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr "Публикация %{post} была обновлена %{profile}."
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr "Публикация %{post} была обновлена %{profile}."

View File

@ -43,15 +43,13 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:65 #: lib/service/activity/renderer/discussion.ex:65
#: lib/service/activity/renderer/post.ex:53 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}." msgid "%{profile} archived the discussion %{discussion}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:25 #: lib/service/activity/renderer/discussion.ex:25
#: lib/service/activity/renderer/post.ex:23 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}." msgid "%{profile} created the discussion %{discussion}."
msgstr "" msgstr ""
@ -75,8 +73,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:75 #: lib/service/activity/renderer/discussion.ex:75
#: lib/service/activity/renderer/post.ex:63 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}." msgid "%{profile} deleted the discussion %{discussion}."
msgstr "" msgstr ""
@ -118,8 +115,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:55 #: lib/service/activity/renderer/discussion.ex:55
#: lib/service/activity/renderer/post.ex:43 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}." msgid "%{profile} renamed the discussion %{discussion}."
msgstr "" msgstr ""
@ -137,8 +133,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/discussion.ex:35 #: lib/service/activity/renderer/discussion.ex:35
#: lib/service/activity/renderer/post.ex:33 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 #: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}." msgid "%{profile} replied to the discussion %{discussion}."
msgstr "" msgstr ""
@ -173,20 +168,20 @@ msgid "The event %{event} was updated by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:23 #: lib/web/templates/email/activity/_post_activity_item.html.eex:4
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}." msgid "The post %{post} was created by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:43 #: lib/web/templates/email/activity/_post_activity_item.html.eex:34
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}." msgid "The post %{post} was deleted by %{profile}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/service/activity/renderer/group.ex:33 #: lib/web/templates/email/activity/_post_activity_item.html.eex:19
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}." msgid "The post %{post} was updated by %{profile}."
msgstr "" msgstr ""
@ -265,12 +260,12 @@ msgid "Here's your weekly activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:117 lib/web/email/activity.ex:138 #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}" msgid "Activity notification for %{instance}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:124 #: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}" msgid "Daily activity recap for %{instance}"
msgstr "" msgstr ""
@ -281,23 +276,43 @@ msgid "Here's your daily activity recap"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:131 #: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}" msgid "Weekly activity recap for %{instance}"
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:66 #: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}." msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/service/activity/renderer/comment.ex:53 #: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 #: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}." msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/activity.ex:44 #: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}" msgid "Announcement for your event %{event}"
msgstr "" msgstr ""
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
#, elixir-format, fuzzy
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""