From 05e5fc35d5809658c3aa3a3c8158d0cbfa1af4e8 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Tue, 6 Oct 2020 09:54:07 +0200 Subject: [PATCH] Improve profile registration Signed-off-by: Thomas Citharel --- lib/federation/activity_pub/activity_pub.ex | 2 + lib/web/email/follow.ex | 71 +++ .../templates/email/instance_follow.html.eex | 83 ++++ .../templates/email/instance_follow.text.eex | 7 + priv/gettext/ar/LC_MESSAGES/default.po | 50 +- priv/gettext/ar/LC_MESSAGES/errors.po | 12 +- priv/gettext/be/LC_MESSAGES/default.po | 50 +- priv/gettext/be/LC_MESSAGES/errors.po | 12 +- priv/gettext/ca/LC_MESSAGES/default.po | 50 +- priv/gettext/ca/LC_MESSAGES/errors.po | 12 +- priv/gettext/cs/LC_MESSAGES/default.po | 50 +- priv/gettext/cs/LC_MESSAGES/errors.po | 12 +- priv/gettext/de/LC_MESSAGES/default.po | 50 +- priv/gettext/de/LC_MESSAGES/errors.po | 12 +- priv/gettext/default.pot | 50 +- priv/gettext/en/LC_MESSAGES/default.po | 50 +- priv/gettext/en/LC_MESSAGES/errors.po | 12 +- priv/gettext/errors.pot | 12 +- priv/gettext/es/LC_MESSAGES/default.po | 50 +- priv/gettext/es/LC_MESSAGES/errors.po | 292 ++++++------ priv/gettext/fi/LC_MESSAGES/default.po | 50 +- priv/gettext/fi/LC_MESSAGES/errors.po | 12 +- priv/gettext/fr/LC_MESSAGES/default.po | 440 ++++-------------- priv/gettext/fr/LC_MESSAGES/errors.po | 12 +- priv/gettext/it/LC_MESSAGES/default.po | 50 +- priv/gettext/it/LC_MESSAGES/errors.po | 12 +- priv/gettext/ja/LC_MESSAGES/default.po | 50 +- priv/gettext/ja/LC_MESSAGES/errors.po | 12 +- priv/gettext/nl/LC_MESSAGES/default.po | 50 +- priv/gettext/nl/LC_MESSAGES/errors.po | 12 +- priv/gettext/oc/LC_MESSAGES/default.po | 50 +- priv/gettext/oc/LC_MESSAGES/errors.po | 12 +- priv/gettext/pl/LC_MESSAGES/default.po | 50 +- priv/gettext/pl/LC_MESSAGES/errors.po | 12 +- priv/gettext/pt/LC_MESSAGES/default.po | 50 +- priv/gettext/pt/LC_MESSAGES/errors.po | 12 +- priv/gettext/pt_BR/LC_MESSAGES/default.po | 50 +- priv/gettext/pt_BR/LC_MESSAGES/errors.po | 12 +- priv/gettext/ru/LC_MESSAGES/default.po | 50 +- priv/gettext/ru/LC_MESSAGES/errors.po | 12 +- priv/gettext/sv/LC_MESSAGES/default.po | 50 +- priv/gettext/sv/LC_MESSAGES/errors.po | 12 +- 42 files changed, 1399 insertions(+), 612 deletions(-) create mode 100644 lib/web/email/follow.ex create mode 100644 lib/web/templates/email/instance_follow.html.eex create mode 100644 lib/web/templates/email/instance_follow.text.eex diff --git a/lib/federation/activity_pub/activity_pub.ex b/lib/federation/activity_pub/activity_pub.ex index 48be253b9..5791a47c4 100644 --- a/lib/federation/activity_pub/activity_pub.ex +++ b/lib/federation/activity_pub/activity_pub.ex @@ -48,6 +48,7 @@ defmodule Mobilizon.Federation.ActivityPub do alias Mobilizon.Web.Endpoint alias Mobilizon.Web.Email.{Admin, Group, Mailer} + alias Mobilizon.Web.Email.Follow, as: FollowMailer require Logger @@ -317,6 +318,7 @@ defmodule Mobilizon.Federation.ActivityPub do with {:different_actors, true} <- {:different_actors, followed.id != follower.id}, {:ok, %Follower{} = follower} <- Actors.follow(followed, follower, activity_id, false), + :ok <- FollowMailer.send_notification_to_admins(follower), follower_as_data <- Convertible.model_to_as(follower), {:ok, activity} <- create_activity(follower_as_data, local), :ok <- maybe_federate(activity) do diff --git a/lib/web/email/follow.ex b/lib/web/email/follow.ex new file mode 100644 index 000000000..ef12e495f --- /dev/null +++ b/lib/web/email/follow.ex @@ -0,0 +1,71 @@ +defmodule Mobilizon.Web.Email.Follow do + @moduledoc """ + Handles emails sent about (instance) follow. + """ + use Bamboo.Phoenix, view: Mobilizon.Web.EmailView + + import Bamboo.Phoenix + import Mobilizon.Web.Gettext + + alias Mobilizon.Users + alias Mobilizon.Actors.{Actor, Follower} + alias Mobilizon.Federation.ActivityPub.Relay + alias Mobilizon.Users.User + alias Mobilizon.Web.{Email, Gettext} + + @doc """ + Send follow notification to admins if the followed actor + """ + @spec send_notification_to_admins(Follower.t()) :: :ok + def send_notification_to_admins( + %Follower{ + # approved: false, + actor: %Actor{} = follower, + target_actor: %Actor{id: target_actor_id} + } = _follow + ) do + relay_actor = Relay.get_actor() + + if relay_actor.id == target_actor_id do + Enum.each(Users.list_admins(), fn admin -> + send_notification_to_admin(admin, follower) + end) + end + + :ok + end + + def send_notification_to_admins(_), do: :ok + + defp send_notification_to_admin( + %User{email: email, locale: locale}, + %Actor{type: follower_type} = follower + ) do + Gettext.put_locale(locale) + + subject = + if follower_type == :Application do + gettext( + "Instance %{name} (%{domain}) requests to follow your instance", + name: follower.name, + domain: follower.domain + ) + else + gettext( + "%{name} requests to follow your instance", + name: Actor.display_name_and_username(follower) + ) + end + + Email.base_email(to: email, subject: subject) + |> assign(:locale, locale) + |> assign(:follower, follower) + |> assign(:subject, subject) + |> render(:instance_follow) + |> Email.Mailer.deliver_later() + + :ok + end + + defp send_notification_to_admin(_, _), do: :ok +end diff --git a/lib/web/templates/email/instance_follow.html.eex b/lib/web/templates/email/instance_follow.html.eex new file mode 100644 index 000000000..227e4f5ca --- /dev/null +++ b/lib/web/templates/email/instance_follow.html.eex @@ -0,0 +1,83 @@ + + + + + + + + +
+

+ <%= gettext "Want to connect?" %> +

+
+ + + + + + + + + + + + + + + + + + + + + + +
+

+ <%= gettext("%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events.", name: @follower.name, domain: @follower.domain) |> raw %> +

+
+

+ <%= gettext("Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too.") %> +

+
+

+ <%= gettext "To accept this invitation, head over to the instance's admin settings." %> +

+
+ + + + +
+ + + + +
+ " target="_blank" style="font-size: 20px; font-family: Helvetica, Arial, sans-serif; color: #ffffff; text-decoration: none; padding: 15px 25px; border-radius: 2px; border: 1px solid #3C376E; display: inline-block;"> + <%= gettext "See the federation settings" %> + +
+
+
+ + + diff --git a/lib/web/templates/email/instance_follow.text.eex b/lib/web/templates/email/instance_follow.text.eex new file mode 100644 index 000000000..22c26f5d9 --- /dev/null +++ b/lib/web/templates/email/instance_follow.text.eex @@ -0,0 +1,7 @@ +<%= gettext "Want to connect?" %> +== +<%= gettext "%{name} (%{domain}) just requested to follow your instance.", name: @follower.name, domain: @follower.domain %> +<%= gettext "If you accept, this instance will receive all of your public events." %> +<%= gettext "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." %> +<%= gettext "To accept this invitation, head over to the instance's admin settings." %> +<%= "#{Mobilizon.Web.Endpoint.url()}/settings/admin/relays/followers" %> diff --git a/priv/gettext/ar/LC_MESSAGES/default.po b/priv/gettext/ar/LC_MESSAGES/default.po index 2fe030ea1..938776ac8 100644 --- a/priv/gettext/ar/LC_MESSAGES/default.po +++ b/priv/gettext/ar/LC_MESSAGES/default.po @@ -886,7 +886,7 @@ msgstr "" #, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" @@ -1339,3 +1339,51 @@ msgstr "" #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:52 +#: lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:13 +#: lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:45 +#: lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "" diff --git a/priv/gettext/ar/LC_MESSAGES/errors.po b/priv/gettext/ar/LC_MESSAGES/errors.po index e7702b6ba..fff1ae4b0 100644 --- a/priv/gettext/ar/LC_MESSAGES/errors.po +++ b/priv/gettext/ar/LC_MESSAGES/errors.po @@ -187,7 +187,7 @@ msgid "No user with this email was found" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 @@ -389,7 +389,7 @@ msgid "Cannot remove the last identity of a user" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:95 +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "" @@ -603,7 +603,7 @@ msgid "You are not a moderator or admin for this group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:41 +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "" @@ -613,7 +613,7 @@ msgid "You are not allowed to create a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:103 +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "" @@ -623,7 +623,7 @@ msgid "You are not allowed to delete a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:63 +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "" @@ -639,7 +639,7 @@ msgid "You can't set yourself to a lower member role for this group because you msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:91 +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr "" diff --git a/priv/gettext/be/LC_MESSAGES/default.po b/priv/gettext/be/LC_MESSAGES/default.po index 1235c1a3b..81042da97 100644 --- a/priv/gettext/be/LC_MESSAGES/default.po +++ b/priv/gettext/be/LC_MESSAGES/default.po @@ -862,7 +862,7 @@ msgstr "" #, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" @@ -1315,3 +1315,51 @@ msgstr "" #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:52 +#: lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:13 +#: lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:45 +#: lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "" diff --git a/priv/gettext/be/LC_MESSAGES/errors.po b/priv/gettext/be/LC_MESSAGES/errors.po index 3cb65b28d..02bfb6743 100644 --- a/priv/gettext/be/LC_MESSAGES/errors.po +++ b/priv/gettext/be/LC_MESSAGES/errors.po @@ -161,7 +161,7 @@ msgid "No user with this email was found" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 @@ -363,7 +363,7 @@ msgid "Cannot remove the last identity of a user" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:95 +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "" @@ -577,7 +577,7 @@ msgid "You are not a moderator or admin for this group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:41 +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "" @@ -587,7 +587,7 @@ msgid "You are not allowed to create a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:103 +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "" @@ -597,7 +597,7 @@ msgid "You are not allowed to delete a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:63 +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "" @@ -613,7 +613,7 @@ msgid "You can't set yourself to a lower member role for this group because you msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:91 +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr "" diff --git a/priv/gettext/ca/LC_MESSAGES/default.po b/priv/gettext/ca/LC_MESSAGES/default.po index 20ba336a5..8e5fcc5f7 100644 --- a/priv/gettext/ca/LC_MESSAGES/default.po +++ b/priv/gettext/ca/LC_MESSAGES/default.po @@ -873,7 +873,7 @@ msgstr "" #, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" @@ -1335,3 +1335,51 @@ msgstr "" #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:52 +#: lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:13 +#: lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:45 +#: lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "" diff --git a/priv/gettext/ca/LC_MESSAGES/errors.po b/priv/gettext/ca/LC_MESSAGES/errors.po index 540730bca..09315aecf 100644 --- a/priv/gettext/ca/LC_MESSAGES/errors.po +++ b/priv/gettext/ca/LC_MESSAGES/errors.po @@ -155,7 +155,7 @@ msgid "No user with this email was found" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 @@ -357,7 +357,7 @@ msgid "Cannot remove the last identity of a user" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:95 +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "" @@ -571,7 +571,7 @@ msgid "You are not a moderator or admin for this group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:41 +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "" @@ -581,7 +581,7 @@ msgid "You are not allowed to create a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:103 +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "" @@ -591,7 +591,7 @@ msgid "You are not allowed to delete a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:63 +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "" @@ -607,7 +607,7 @@ msgid "You can't set yourself to a lower member role for this group because you msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:91 +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr "" diff --git a/priv/gettext/cs/LC_MESSAGES/default.po b/priv/gettext/cs/LC_MESSAGES/default.po index 2bf3a3766..442528119 100644 --- a/priv/gettext/cs/LC_MESSAGES/default.po +++ b/priv/gettext/cs/LC_MESSAGES/default.po @@ -862,7 +862,7 @@ msgstr "" #, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" @@ -1315,3 +1315,51 @@ msgstr "" #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:52 +#: lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:13 +#: lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:45 +#: lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "" diff --git a/priv/gettext/cs/LC_MESSAGES/errors.po b/priv/gettext/cs/LC_MESSAGES/errors.po index 2dbe06873..a887dc444 100644 --- a/priv/gettext/cs/LC_MESSAGES/errors.po +++ b/priv/gettext/cs/LC_MESSAGES/errors.po @@ -161,7 +161,7 @@ msgid "No user with this email was found" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 @@ -363,7 +363,7 @@ msgid "Cannot remove the last identity of a user" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:95 +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "" @@ -577,7 +577,7 @@ msgid "You are not a moderator or admin for this group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:41 +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "" @@ -587,7 +587,7 @@ msgid "You are not allowed to create a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:103 +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "" @@ -597,7 +597,7 @@ msgid "You are not allowed to delete a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:63 +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "" @@ -613,7 +613,7 @@ msgid "You can't set yourself to a lower member role for this group because you msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:91 +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr "" diff --git a/priv/gettext/de/LC_MESSAGES/default.po b/priv/gettext/de/LC_MESSAGES/default.po index d1a590672..4003f0322 100644 --- a/priv/gettext/de/LC_MESSAGES/default.po +++ b/priv/gettext/de/LC_MESSAGES/default.po @@ -880,7 +880,7 @@ msgstr "" #, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" @@ -1343,3 +1343,51 @@ msgstr "" #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:52 +#: lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:13 +#: lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:45 +#: lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "" diff --git a/priv/gettext/de/LC_MESSAGES/errors.po b/priv/gettext/de/LC_MESSAGES/errors.po index a4654c180..ad7f94d18 100644 --- a/priv/gettext/de/LC_MESSAGES/errors.po +++ b/priv/gettext/de/LC_MESSAGES/errors.po @@ -155,7 +155,7 @@ msgid "No user with this email was found" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 @@ -357,7 +357,7 @@ msgid "Cannot remove the last identity of a user" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:95 +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "" @@ -571,7 +571,7 @@ msgid "You are not a moderator or admin for this group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:41 +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "" @@ -581,7 +581,7 @@ msgid "You are not allowed to create a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:103 +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "" @@ -591,7 +591,7 @@ msgid "You are not allowed to delete a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:63 +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "" @@ -607,7 +607,7 @@ msgid "You can't set yourself to a lower member role for this group because you msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:91 +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr "" diff --git a/priv/gettext/default.pot b/priv/gettext/default.pot index 6a172a083..895e555e1 100644 --- a/priv/gettext/default.pot +++ b/priv/gettext/default.pot @@ -841,7 +841,7 @@ msgstr "" #, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" @@ -1294,3 +1294,51 @@ msgstr "" #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:52 +#: lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:13 +#: lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:45 +#: lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "" diff --git a/priv/gettext/en/LC_MESSAGES/default.po b/priv/gettext/en/LC_MESSAGES/default.po index aed5918ee..999ec0a77 100644 --- a/priv/gettext/en/LC_MESSAGES/default.po +++ b/priv/gettext/en/LC_MESSAGES/default.po @@ -864,7 +864,7 @@ msgstr "" #, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" @@ -1317,3 +1317,51 @@ msgstr "" #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:52 +#: lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:13 +#: lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:45 +#: lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "" diff --git a/priv/gettext/en/LC_MESSAGES/errors.po b/priv/gettext/en/LC_MESSAGES/errors.po index f716dbe86..fc6610f4a 100644 --- a/priv/gettext/en/LC_MESSAGES/errors.po +++ b/priv/gettext/en/LC_MESSAGES/errors.po @@ -165,7 +165,7 @@ msgid "No user with this email was found" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 @@ -367,7 +367,7 @@ msgid "Cannot remove the last identity of a user" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:95 +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "" @@ -581,7 +581,7 @@ msgid "You are not a moderator or admin for this group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:41 +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "" @@ -591,7 +591,7 @@ msgid "You are not allowed to create a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:103 +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "" @@ -601,7 +601,7 @@ msgid "You are not allowed to delete a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:63 +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "" @@ -617,7 +617,7 @@ msgid "You can't set yourself to a lower member role for this group because you msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:91 +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr "" diff --git a/priv/gettext/errors.pot b/priv/gettext/errors.pot index bce2fdcf1..441e11b74 100644 --- a/priv/gettext/errors.pot +++ b/priv/gettext/errors.pot @@ -162,7 +162,7 @@ msgid "No user with this email was found" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 @@ -364,7 +364,7 @@ msgid "Cannot remove the last identity of a user" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:95 +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "" @@ -578,7 +578,7 @@ msgid "You are not a moderator or admin for this group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:41 +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "" @@ -588,7 +588,7 @@ msgid "You are not allowed to create a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:103 +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "" @@ -598,7 +598,7 @@ msgid "You are not allowed to delete a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:63 +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "" @@ -614,7 +614,7 @@ msgid "You can't set yourself to a lower member role for this group because you msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:91 +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr "" diff --git a/priv/gettext/es/LC_MESSAGES/default.po b/priv/gettext/es/LC_MESSAGES/default.po index 94d36df3e..7ace7ff9f 100644 --- a/priv/gettext/es/LC_MESSAGES/default.po +++ b/priv/gettext/es/LC_MESSAGES/default.po @@ -1058,7 +1058,7 @@ msgstr "" #, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" "Si no activó este cambio usted mismo, es probable que alguien haya obtenido " @@ -1637,3 +1637,51 @@ msgstr "Se requiere un texto para la publicación" #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "Se requiere un título para la publicación" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:52 +#: lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "Para aceptar esta invitación, dirígete a tus grupos." + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:13 +#: lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:45 +#: lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "" diff --git a/priv/gettext/es/LC_MESSAGES/errors.po b/priv/gettext/es/LC_MESSAGES/errors.po index bb94f0d1d..31d8cf4e5 100644 --- a/priv/gettext/es/LC_MESSAGES/errors.po +++ b/priv/gettext/es/LC_MESSAGES/errors.po @@ -93,768 +93,768 @@ msgstr "debe ser mayor o igual que% {number}" msgid "must be equal to %{number}" msgstr "debe ser igual a% {number}" -#: lib/graphql/resolvers/user.ex:103 #, elixir-format +#: lib/graphql/resolvers/user.ex:103 msgid "Cannot refresh the token" msgstr "No se puede actualizar el token" -#: lib/graphql/resolvers/group.ex:139 lib/graphql/resolvers/group.ex:170 #, elixir-format +#: lib/graphql/resolvers/group.ex:139 lib/graphql/resolvers/group.ex:170 msgid "Creator profile is not owned by the current user" msgstr "El perfil del creador no es propiedad del usuario actual" -#: lib/graphql/resolvers/group.ex:201 #, elixir-format +#: lib/graphql/resolvers/group.ex:201 msgid "Current profile is not a member of this group" msgstr "El perfil actual no es miembro de este grupo" -#: lib/graphql/resolvers/group.ex:205 #, elixir-format +#: lib/graphql/resolvers/group.ex:205 msgid "Current profile is not an administrator of the selected group" msgstr "El perfil actual no es un administrador del grupo seleccionado" -#: lib/graphql/resolvers/user.ex:514 #, elixir-format +#: lib/graphql/resolvers/user.ex:514 msgid "Error while saving user settings" msgstr "Error al guardar los parámetros del usuario" +#, elixir-format #: lib/graphql/resolvers/group.ex:198 lib/graphql/resolvers/group.ex:246 #: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/member.ex:80 -#, elixir-format msgid "Group not found" msgstr "Grupo no encontrado" -#: lib/graphql/resolvers/group.ex:69 #, elixir-format +#: lib/graphql/resolvers/group.ex:69 msgid "Group with ID %{id} not found" msgstr "No se encontró el grupo con ID% {id}" -#: lib/graphql/resolvers/group.ex:41 lib/graphql/resolvers/group.ex:55 #, elixir-format +#: lib/graphql/resolvers/group.ex:41 lib/graphql/resolvers/group.ex:55 msgid "Group with name %{name} not found" msgstr "No se encontró el grupo con el nombre% {name}" -#: lib/graphql/resolvers/user.ex:83 #, elixir-format +#: lib/graphql/resolvers/user.ex:83 msgid "Impossible to authenticate, either your email or password are invalid." msgstr "" "Imposible autenticarse, su correo electrónico o contraseña no son válidos." -#: lib/graphql/resolvers/group.ex:278 #, elixir-format +#: lib/graphql/resolvers/group.ex:278 msgid "Member not found" msgstr "Miembro no encontrado" +#, elixir-format #: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88 #: lib/graphql/resolvers/user.ex:417 -#, elixir-format msgid "No profile found for the moderator user" msgstr "No se encontró el perfil del usuario moderador" -#: lib/graphql/resolvers/user.ex:195 #, elixir-format +#: lib/graphql/resolvers/user.ex:195 msgid "No user to validate with this email was found" msgstr "No se encontró ningún usuario para validar con este correo electrónico" +#, elixir-format #: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76 #: lib/graphql/resolvers/user.ex:219 -#, elixir-format msgid "No user with this email was found" msgstr "No se encontró ningún usuario con este correo electrónico" -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#, elixir-format +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 #: lib/graphql/resolvers/person.ex:191 lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288 #: lib/graphql/resolvers/person.ex:301 lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110 #: lib/graphql/resolvers/todos.ex:57 -#, elixir-format msgid "Profile is not owned by authenticated user" msgstr "El perfil no es propiedad del usuario autenticado" -#: lib/graphql/resolvers/user.ex:125 #, elixir-format +#: lib/graphql/resolvers/user.ex:125 msgid "Registrations are not open" msgstr "Las inscripciones no están abiertas" -#: lib/graphql/resolvers/user.ex:330 #, elixir-format +#: lib/graphql/resolvers/user.ex:330 msgid "The current password is invalid" msgstr "La contraseña actual no es válida" -#: lib/graphql/resolvers/user.ex:382 #, elixir-format +#: lib/graphql/resolvers/user.ex:382 msgid "The new email doesn't seem to be valid" msgstr "El nuevo correo electrónico no parece ser válido" -#: lib/graphql/resolvers/user.ex:379 #, elixir-format +#: lib/graphql/resolvers/user.ex:379 msgid "The new email must be different" msgstr "El nuevo correo electrónico debe ser diferente" -#: lib/graphql/resolvers/user.ex:333 #, elixir-format +#: lib/graphql/resolvers/user.ex:333 msgid "The new password must be different" msgstr "La nueva contraseña debe ser diferente" +#, elixir-format #: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439 #: lib/graphql/resolvers/user.ex:442 -#, elixir-format msgid "The password provided is invalid" msgstr "La contraseña proporcionada no es válida" -#: lib/graphql/resolvers/user.ex:337 #, elixir-format +#: lib/graphql/resolvers/user.ex:337 msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" "La contraseña que ha elegido es demasiado corta. Asegúrese de que su " "contraseña contenga al menos 6 caracteres." -#: lib/graphql/resolvers/user.ex:215 #, elixir-format +#: lib/graphql/resolvers/user.ex:215 msgid "This user can't reset their password" msgstr "Este usuario no puede restablecer su contraseña" -#: lib/graphql/resolvers/user.ex:79 #, elixir-format +#: lib/graphql/resolvers/user.ex:79 msgid "This user has been disabled" msgstr "Este usuario ha sido inhabilitado" -#: lib/graphql/resolvers/user.ex:179 #, elixir-format +#: lib/graphql/resolvers/user.ex:179 msgid "Unable to validate user" msgstr "No se puede validar al usuario" -#: lib/graphql/resolvers/user.ex:420 #, elixir-format +#: lib/graphql/resolvers/user.ex:420 msgid "User already disabled" msgstr "El usuario ya está inhabilitado" -#: lib/graphql/resolvers/user.ex:489 #, elixir-format +#: lib/graphql/resolvers/user.ex:489 msgid "User requested is not logged-in" msgstr "El usuario solicitado no ha iniciado sesión" -#: lib/graphql/resolvers/group.ex:252 #, elixir-format +#: lib/graphql/resolvers/group.ex:252 msgid "You are already a member of this group" msgstr "Ya eres miembro de este grupo" -#: lib/graphql/resolvers/group.ex:285 #, elixir-format +#: lib/graphql/resolvers/group.ex:285 msgid "You can't leave this group because you are the only administrator" msgstr "No puedes dejar este grupo porque eres el único administrador" -#: lib/graphql/resolvers/group.ex:249 #, elixir-format +#: lib/graphql/resolvers/group.ex:249 msgid "You cannot join this group" msgstr "No puedes unirte a este grupo" -#: lib/graphql/resolvers/group.ex:97 #, elixir-format +#: lib/graphql/resolvers/group.ex:97 msgid "You may not list groups unless moderator." msgstr "No puedes enumerar grupos a menos que seas moderador." -#: lib/graphql/resolvers/user.ex:387 #, elixir-format +#: lib/graphql/resolvers/user.ex:387 msgid "You need to be logged-in to change your email" msgstr "Debes iniciar sesión para cambiar tu correo electrónico" -#: lib/graphql/resolvers/user.ex:345 #, elixir-format +#: lib/graphql/resolvers/user.ex:345 msgid "You need to be logged-in to change your password" msgstr "Debes iniciar sesión para cambiar tu contraseña" -#: lib/graphql/resolvers/group.ex:210 #, elixir-format +#: lib/graphql/resolvers/group.ex:210 msgid "You need to be logged-in to delete a group" msgstr "Debes iniciar sesión para eliminar un grupo" -#: lib/graphql/resolvers/user.ex:447 #, elixir-format +#: lib/graphql/resolvers/user.ex:447 msgid "You need to be logged-in to delete your account" msgstr "Debes iniciar sesión para eliminar su cuenta" -#: lib/graphql/resolvers/group.ex:257 #, elixir-format +#: lib/graphql/resolvers/group.ex:257 msgid "You need to be logged-in to join a group" msgstr "Debes iniciar sesión para eliminar su cuenta" -#: lib/graphql/resolvers/group.ex:290 #, elixir-format +#: lib/graphql/resolvers/group.ex:290 msgid "You need to be logged-in to leave a group" msgstr "Debes iniciar sesión para dejar un grupo" -#: lib/graphql/resolvers/group.ex:175 #, elixir-format +#: lib/graphql/resolvers/group.ex:175 msgid "You need to be logged-in to update a group" msgstr "Debes iniciar sesión para actualizar un grupo" -#: lib/graphql/resolvers/user.ex:58 #, elixir-format +#: lib/graphql/resolvers/user.ex:58 msgid "You need to have admin access to list users" msgstr "Necesitas tener acceso de administrador para listar usuarios" -#: lib/graphql/resolvers/user.ex:108 #, elixir-format +#: lib/graphql/resolvers/user.ex:108 msgid "You need to have an existing token to get a refresh token" msgstr "Debes tener un token existente para obtener un token de actualización" -#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222 #, elixir-format +#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222 msgid "You requested again a confirmation email too soon" msgstr "" "Solicitó de nuevo un correo electrónico de confirmación demasiado pronto" -#: lib/graphql/resolvers/user.ex:128 #, elixir-format +#: lib/graphql/resolvers/user.ex:128 msgid "Your email is not on the allowlist" msgstr "Tu correo electrónico no está en la lista de permitidos" -#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94 #, elixir-format +#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94 msgid "Error while performing background task" msgstr "Error al realizar la tarea en segundo plano" -#: lib/graphql/resolvers/actor.ex:27 #, elixir-format +#: lib/graphql/resolvers/actor.ex:27 msgid "No profile found with this ID" msgstr "No se encontró ningún perfil con este ID" -#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91 #, elixir-format +#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91 msgid "No remote profile found with this ID" msgstr "No se encontró ningún perfil remoto con este ID" -#: lib/graphql/resolvers/actor.ex:69 #, elixir-format +#: lib/graphql/resolvers/actor.ex:69 msgid "Only moderators and administrators can suspend a profile" msgstr "Solo los moderadores y administradores pueden suspender un perfil" -#: lib/graphql/resolvers/actor.ex:99 #, elixir-format +#: lib/graphql/resolvers/actor.ex:99 msgid "Only moderators and administrators can unsuspend a profile" msgstr "" "Solo los moderadores y administradores pueden anular la suspensión de un " "perfil" -#: lib/graphql/resolvers/actor.ex:24 #, elixir-format +#: lib/graphql/resolvers/actor.ex:24 msgid "Only remote profiles may be refreshed" msgstr "Solo se pueden actualizar los perfiles remotos" -#: lib/graphql/resolvers/actor.ex:61 #, elixir-format +#: lib/graphql/resolvers/actor.ex:61 msgid "Profile already suspended" msgstr "Perfil ya suspendido" -#: lib/graphql/resolvers/participant.ex:96 #, elixir-format +#: lib/graphql/resolvers/participant.ex:96 msgid "A valid email is required by your instance" msgstr "Su instancia requiere un correo electrónico válido" -#: lib/graphql/resolvers/participant.ex:90 #, elixir-format +#: lib/graphql/resolvers/participant.ex:90 msgid "Anonymous participation is not enabled" msgstr "La participación anónima no está habilitada" -#: lib/graphql/resolvers/person.ex:188 #, elixir-format +#: lib/graphql/resolvers/person.ex:188 msgid "Cannot remove the last administrator of a group" msgstr "No se puede eliminar al último administrador de un grupo" -#: lib/graphql/resolvers/person.ex:185 #, elixir-format +#: lib/graphql/resolvers/person.ex:185 msgid "Cannot remove the last identity of a user" msgstr "No se puede eliminar la última identidad de un usuario" -#: lib/graphql/resolvers/comment.ex:95 #, elixir-format +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "El comentario ya está eliminado" -#: lib/graphql/resolvers/discussion.ex:61 #, elixir-format +#: lib/graphql/resolvers/discussion.ex:61 msgid "Discussion not found" msgstr "Discusión no encontrada" -#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87 #, elixir-format +#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87 msgid "Error while saving report" msgstr "Error al guardar el informe" -#: lib/graphql/resolvers/report.ex:113 #, elixir-format +#: lib/graphql/resolvers/report.ex:113 msgid "Error while updating report" msgstr "Error al actualizar el informe" -#: lib/graphql/resolvers/participant.ex:131 #, elixir-format +#: lib/graphql/resolvers/participant.ex:131 msgid "Event id not found" msgstr "ID de evento no encontrado" +#, elixir-format #: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236 #: lib/graphql/resolvers/event.ex:278 -#, elixir-format msgid "Event not found" msgstr "Evento no encontrado" +#, elixir-format #: lib/graphql/resolvers/participant.ex:87 #: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160 -#, elixir-format msgid "Event with this ID %{id} doesn't exist" msgstr "El evento con este ID%{id} no existe" -#: lib/graphql/resolvers/participant.ex:103 #, elixir-format +#: lib/graphql/resolvers/participant.ex:103 msgid "Internal Error" msgstr "Error interno" -#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234 #, elixir-format +#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234 msgid "Moderator profile is not owned by authenticated user" msgstr "El perfil del moderador no es propiedad del usuario autenticado" -#: lib/graphql/resolvers/discussion.ex:181 #, elixir-format +#: lib/graphql/resolvers/discussion.ex:181 msgid "No discussion with ID %{id}" msgstr "Sin discusión con ID%{id}" -#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171 #, elixir-format +#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171 msgid "No profile found for user" msgstr "No se encontró perfil para el usuario" -#: lib/graphql/resolvers/feed_token.ex:66 #, elixir-format +#: lib/graphql/resolvers/feed_token.ex:66 msgid "No such feed token" msgstr "No existe tal token de alimentación" -#: lib/graphql/resolvers/resource.ex:87 #, elixir-format +#: lib/graphql/resolvers/resource.ex:87 msgid "No such resource" msgstr "No existe tal recurso" -#: lib/graphql/resolvers/event.ex:202 #, elixir-format +#: lib/graphql/resolvers/event.ex:202 msgid "Organizer profile is not owned by the user" msgstr "El perfil del organizador no es propiedad del usuario" -#: lib/graphql/resolvers/participant.ex:244 #, elixir-format +#: lib/graphql/resolvers/participant.ex:244 msgid "Participant already has role %{role}" msgstr "El participante ya tiene el rol%{role}" +#, elixir-format #: lib/graphql/resolvers/participant.ex:173 #: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237 #: lib/graphql/resolvers/participant.ex:247 -#, elixir-format msgid "Participant not found" msgstr "Participante no encontrado" -#: lib/graphql/resolvers/person.ex:31 #, elixir-format +#: lib/graphql/resolvers/person.ex:31 msgid "Person with ID %{id} not found" msgstr "Persona con ID%{id} no encontrada" -#: lib/graphql/resolvers/person.ex:52 #, elixir-format +#: lib/graphql/resolvers/person.ex:52 msgid "Person with username %{username} not found" msgstr "Persona con nombre de usuario %{username} no encontrada" -#: lib/graphql/resolvers/picture.ex:45 #, elixir-format +#: lib/graphql/resolvers/picture.ex:45 msgid "Picture with ID %{id} was not found" msgstr "No se encontró la foto con ID %{id}" -#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198 #, elixir-format +#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198 msgid "Post ID is not a valid ID" msgstr "La ID de publicación no es válida" -#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201 #, elixir-format +#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201 msgid "Post doesn't exist" msgstr "La publicación no existe" -#: lib/graphql/resolvers/member.ex:83 #, elixir-format +#: lib/graphql/resolvers/member.ex:83 msgid "Profile invited doesn't exist" msgstr "El perfil invitado no existe" -#: lib/graphql/resolvers/member.ex:92 #, elixir-format +#: lib/graphql/resolvers/member.ex:92 msgid "Profile is already a member of this group" msgstr "Perfil ya es miembro de este grupo" +#, elixir-format #: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171 #: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:86 lib/graphql/resolvers/resource.ex:123 #: lib/graphql/resolvers/resource.ex:152 lib/graphql/resolvers/resource.ex:181 lib/graphql/resolvers/todos.ex:60 #: lib/graphql/resolvers/todos.ex:84 lib/graphql/resolvers/todos.ex:102 lib/graphql/resolvers/todos.ex:174 #: lib/graphql/resolvers/todos.ex:197 lib/graphql/resolvers/todos.ex:225 -#, elixir-format msgid "Profile is not member of group" msgstr "El perfil no es miembro del grupo" -#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182 #, elixir-format +#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182 msgid "Profile not found" msgstr "Perfil no encontrado" -#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241 #, elixir-format +#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241 msgid "Provided moderator profile doesn't have permission on this event" msgstr "El perfil de moderador proporcionado no tiene permiso para este evento" -#: lib/graphql/resolvers/report.ex:38 #, elixir-format +#: lib/graphql/resolvers/report.ex:38 msgid "Report not found" msgstr "Informe no encontrado" -#: lib/graphql/resolvers/resource.ex:149 lib/graphql/resolvers/resource.ex:178 #, elixir-format +#: lib/graphql/resolvers/resource.ex:149 lib/graphql/resolvers/resource.ex:178 msgid "Resource doesn't exist" msgstr "El recurso no existe" -#: lib/graphql/resolvers/participant.ex:124 #, elixir-format +#: lib/graphql/resolvers/participant.ex:124 msgid "The event has already reached its maximum capacity" msgstr "El evento ya alcanzó su capacidad máxima" -#: lib/graphql/resolvers/participant.ex:267 #, elixir-format +#: lib/graphql/resolvers/participant.ex:267 msgid "This token is invalid" msgstr "Este token no es válido" -#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222 #, elixir-format +#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222 msgid "Todo doesn't exist" msgstr "Todo no existe" +#, elixir-format #: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:194 #: lib/graphql/resolvers/todos.ex:219 -#, elixir-format msgid "Todo list doesn't exist" msgstr "La lista de tareas pendientes no existe" -#: lib/graphql/resolvers/feed_token.ex:72 #, elixir-format +#: lib/graphql/resolvers/feed_token.ex:72 msgid "Token does not exist" msgstr "El token no existe" -#: lib/graphql/resolvers/feed_token.ex:69 #, elixir-format +#: lib/graphql/resolvers/feed_token.ex:69 msgid "Token is not a valid UUID" msgstr "El token no es un UUID válido" -#: lib/graphql/resolvers/event.ex:239 #, elixir-format +#: lib/graphql/resolvers/event.ex:239 msgid "User doesn't own profile" msgstr "El usuario no posee el perfil" -#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323 #, elixir-format +#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323 msgid "User not found" msgstr "Usuario no encontrado" -#: lib/graphql/resolvers/person.ex:235 #, elixir-format +#: lib/graphql/resolvers/person.ex:235 msgid "You already have a profile for this user" msgstr "Ya tienes un perfil para este usuario" -#: lib/graphql/resolvers/participant.ex:134 #, elixir-format +#: lib/graphql/resolvers/participant.ex:134 msgid "You are already a participant of this event" msgstr "Ya eres participante de este evento" -#: lib/graphql/resolvers/discussion.ex:185 #, elixir-format +#: lib/graphql/resolvers/discussion.ex:185 msgid "You are not a member of the group the discussion belongs to" msgstr "No eres miembro del grupo al que pertenece la discusión" -#: lib/graphql/resolvers/member.ex:86 #, elixir-format +#: lib/graphql/resolvers/member.ex:86 msgid "You are not a member of this group" msgstr "no eres un miembro de este grupo" -#: lib/graphql/resolvers/member.ex:143 #, elixir-format +#: lib/graphql/resolvers/member.ex:143 msgid "You are not a moderator or admin for this group" msgstr "No eres moderador ni administrador de este grupo" -#: lib/graphql/resolvers/comment.ex:41 #, elixir-format +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "No está permitido crear un comentario si no está conectado" -#: lib/graphql/resolvers/feed_token.ex:44 #, elixir-format +#: lib/graphql/resolvers/feed_token.ex:44 msgid "You are not allowed to create a feed token if not connected" msgstr "No puede crear un token de feed si no está conectado" -#: lib/graphql/resolvers/comment.ex:103 #, elixir-format +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "No puede eliminar un comentario si no está conectado" -#: lib/graphql/resolvers/feed_token.ex:81 #, elixir-format +#: lib/graphql/resolvers/feed_token.ex:81 msgid "You are not allowed to delete a feed token if not connected" msgstr "No puede eliminar un token de feed si no está conectado" -#: lib/graphql/resolvers/comment.ex:63 #, elixir-format +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "No se le permite actualizar un comentario si no está conectado" +#, elixir-format #: lib/graphql/resolvers/participant.ex:167 #: lib/graphql/resolvers/participant.ex:196 -#, elixir-format msgid "You can't leave event because you're the only event creator participant" msgstr "" "No puedes abandonar el evento porque eres el único participante creador del " "evento" -#: lib/graphql/resolvers/member.ex:147 #, elixir-format +#: lib/graphql/resolvers/member.ex:147 msgid "You can't set yourself to a lower member role for this group because you are the only administrator" msgstr "" "No puede establecerse en un rol de miembro inferior para este grupo porque " "es el único administrador" -#: lib/graphql/resolvers/comment.ex:91 #, elixir-format +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr "No puedes borrar este comentario" -#: lib/graphql/resolvers/event.ex:274 #, elixir-format +#: lib/graphql/resolvers/event.ex:274 msgid "You cannot delete this event" msgstr "No puedes borrar este evento" -#: lib/graphql/resolvers/member.ex:89 #, elixir-format +#: lib/graphql/resolvers/member.ex:89 msgid "You cannot invite to this group" msgstr "No puedes invitar a este grupo" -#: lib/graphql/resolvers/feed_token.ex:75 #, elixir-format +#: lib/graphql/resolvers/feed_token.ex:75 msgid "You don't have permission to delete this token" msgstr "No tienes permiso para eliminar este token" -#: lib/graphql/resolvers/admin.ex:51 #, elixir-format +#: lib/graphql/resolvers/admin.ex:51 msgid "You need to be logged-in and a moderator to list action logs" msgstr "" "Debe iniciar sesión y un moderador para enumerar los registros de acción" -#: lib/graphql/resolvers/report.ex:28 #, elixir-format +#: lib/graphql/resolvers/report.ex:28 msgid "You need to be logged-in and a moderator to list reports" msgstr "Debe iniciar sesión y un moderador para enumerar los informes" -#: lib/graphql/resolvers/report.ex:118 #, elixir-format +#: lib/graphql/resolvers/report.ex:118 msgid "You need to be logged-in and a moderator to update a report" msgstr "Debe iniciar sesión y ser un moderador para actualizar un informe" -#: lib/graphql/resolvers/report.ex:43 #, elixir-format +#: lib/graphql/resolvers/report.ex:43 msgid "You need to be logged-in and a moderator to view a report" msgstr "Debe iniciar sesión y ser un moderador para actualizar un informe" -#: lib/graphql/resolvers/admin.ex:194 #, elixir-format +#: lib/graphql/resolvers/admin.ex:194 msgid "You need to be logged-in and an administrator to access admin settings" msgstr "" "Debe iniciar sesión y ser administrador para acceder a la configuración de " "administrador" -#: lib/graphql/resolvers/admin.ex:179 #, elixir-format +#: lib/graphql/resolvers/admin.ex:179 msgid "You need to be logged-in and an administrator to access dashboard statistics" msgstr "" "Debe iniciar sesión y ser administrador para acceder a las estadísticas del " "panel" -#: lib/graphql/resolvers/admin.ex:222 #, elixir-format +#: lib/graphql/resolvers/admin.ex:222 msgid "You need to be logged-in and an administrator to save admin settings" msgstr "" "Debe iniciar sesión y ser administrador para acceder a las estadísticas del " "panel" -#: lib/graphql/resolvers/discussion.ex:66 #, elixir-format +#: lib/graphql/resolvers/discussion.ex:66 msgid "You need to be logged-in to access discussions" msgstr "Debe iniciar sesión para acceder a las discusiones" -#: lib/graphql/resolvers/resource.ex:92 #, elixir-format +#: lib/graphql/resolvers/resource.ex:92 msgid "You need to be logged-in to access resources" msgstr "Debes iniciar sesión para acceder a los recursos" -#: lib/graphql/resolvers/event.ex:213 #, elixir-format +#: lib/graphql/resolvers/event.ex:213 msgid "You need to be logged-in to create events" msgstr "Debes iniciar sesión para crear eventos" -#: lib/graphql/resolvers/post.ex:139 #, elixir-format +#: lib/graphql/resolvers/post.ex:139 msgid "You need to be logged-in to create posts" msgstr "Debes iniciar sesión para crear publicaciones" -#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92 #, elixir-format +#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92 msgid "You need to be logged-in to create reports" msgstr "Debe iniciar sesión para crear informes" -#: lib/graphql/resolvers/resource.ex:128 #, elixir-format +#: lib/graphql/resolvers/resource.ex:128 msgid "You need to be logged-in to create resources" msgstr "Debe iniciar sesión para crear recursos" -#: lib/graphql/resolvers/event.ex:286 #, elixir-format +#: lib/graphql/resolvers/event.ex:286 msgid "You need to be logged-in to delete an event" msgstr "Debe iniciar sesión para eliminar un evento" -#: lib/graphql/resolvers/post.ex:209 #, elixir-format +#: lib/graphql/resolvers/post.ex:209 msgid "You need to be logged-in to delete posts" msgstr "Debes iniciar sesión para eliminar publicaciones" -#: lib/graphql/resolvers/resource.ex:186 #, elixir-format +#: lib/graphql/resolvers/resource.ex:186 msgid "You need to be logged-in to delete resources" msgstr "Debes iniciar sesión para eliminar recursos" -#: lib/graphql/resolvers/participant.ex:108 #, elixir-format +#: lib/graphql/resolvers/participant.ex:108 msgid "You need to be logged-in to join an event" msgstr "Debes iniciar sesión para eliminar recursos" -#: lib/graphql/resolvers/participant.ex:207 #, elixir-format +#: lib/graphql/resolvers/participant.ex:207 msgid "You need to be logged-in to leave an event" msgstr "Debes iniciar sesión para salir de un evento" -#: lib/graphql/resolvers/event.ex:247 #, elixir-format +#: lib/graphql/resolvers/event.ex:247 msgid "You need to be logged-in to update an event" msgstr "Debe iniciar sesión para actualizar un evento" -#: lib/graphql/resolvers/post.ex:176 #, elixir-format +#: lib/graphql/resolvers/post.ex:176 msgid "You need to be logged-in to update posts" msgstr "Debes iniciar sesión para actualizar las publicaciones" -#: lib/graphql/resolvers/resource.ex:157 #, elixir-format +#: lib/graphql/resolvers/resource.ex:157 msgid "You need to be logged-in to update resources" msgstr "Debes iniciar sesión para actualizar los recursos" -#: lib/graphql/resolvers/resource.ex:204 #, elixir-format +#: lib/graphql/resolvers/resource.ex:204 msgid "You need to be logged-in to view a resource preview" msgstr "Debe iniciar sesión para ver una vista previa del recurso" -#: lib/graphql/resolvers/picture.ex:83 #, elixir-format +#: lib/graphql/resolvers/picture.ex:83 msgid "You need to login to upload a picture" msgstr "Debes iniciar sesión para subir una imagen" -#: lib/graphql/resolvers/report.ex:84 #, elixir-format +#: lib/graphql/resolvers/report.ex:84 msgid "Reporter ID does not match the anonymous profile id" msgstr "" "La identificación del informante no coincide con la identificación del " "perfil anónimo" -#: lib/graphql/resolvers/report.ex:59 #, elixir-format +#: lib/graphql/resolvers/report.ex:59 msgid "Reporter profile is not owned by authenticated user" msgstr "El perfil del denunciante no es propiedad de un usuario autenticado" -#: lib/graphql/resolvers/resource.ex:120 #, elixir-format +#: lib/graphql/resolvers/resource.ex:120 msgid "Parent resource doesn't belong to this group" msgstr "El recurso principal no pertenece a este grupo" -#: lib/graphql/resolvers/participant.ex:93 #, elixir-format +#: lib/graphql/resolvers/participant.ex:93 msgid "Profile ID provided is not the anonymous profile one" msgstr "El ID de perfil proporcionado no es el del perfil anónimo" -#: lib/mobilizon/users/user.ex:109 #, elixir-format +#: lib/mobilizon/users/user.ex:109 msgid "The chosen password is too short." msgstr "La contraseña elegida es demasiado corta." -#: lib/mobilizon/users/user.ex:138 #, elixir-format +#: lib/mobilizon/users/user.ex:138 msgid "The registration token is already in use, this looks like an issue on our side." msgstr "" "El token de registro ya está en uso, esto parece un problema de nuestra " "parte." -#: lib/mobilizon/users/user.ex:104 #, elixir-format +#: lib/mobilizon/users/user.ex:104 msgid "This email is already used." msgstr "Este correo electrónico ya está en uso." -#: lib/graphql/error.ex:88 #, elixir-format +#: lib/graphql/error.ex:88 msgid "Post not found" msgstr "Informe no encontrado" -#: lib/graphql/error.ex:75 #, elixir-format +#: lib/graphql/error.ex:75 msgid "Invalid arguments passed" msgstr "Se pasaron argumentos no válidos" -#: lib/graphql/error.ex:81 #, elixir-format +#: lib/graphql/error.ex:81 msgid "Invalid credentials" msgstr "Credenciales no válidas" -#: lib/graphql/error.ex:79 #, elixir-format +#: lib/graphql/error.ex:79 msgid "Reset your password to login" msgstr "Restablezca su contraseña para iniciar sesión" -#: lib/graphql/error.ex:86 #, elixir-format +#: lib/graphql/error.ex:86 msgid "Resource not found" msgstr "Recurso no encontrado" -#: lib/graphql/error.ex:90 #, elixir-format +#: lib/graphql/error.ex:90 msgid "Something went wrong" msgstr "Algo salió mal" -#: lib/graphql/error.ex:74 #, elixir-format +#: lib/graphql/error.ex:74 msgid "Unknown Resource" msgstr "Recurso desconocido" -#: lib/graphql/error.ex:84 #, elixir-format +#: lib/graphql/error.ex:84 msgid "You don't have permission to do this" msgstr "No tienes permiso para hacer esto" -#: lib/graphql/error.ex:76 #, elixir-format +#: lib/graphql/error.ex:76 msgid "You need to be logged in" msgstr "Debes iniciar sesión" -#: lib/graphql/resolvers/member.ex:112 #, elixir-format +#: lib/graphql/resolvers/member.ex:112 msgid "You can't accept this invitation with this profile." msgstr "No puedes aceptar esta invitación con este perfil." -#: lib/graphql/resolvers/member.ex:129 #, elixir-format +#: lib/graphql/resolvers/member.ex:129 msgid "You can't reject this invitation with this profile." msgstr "No puedes rechazar esta invitación con este perfil." diff --git a/priv/gettext/fi/LC_MESSAGES/default.po b/priv/gettext/fi/LC_MESSAGES/default.po index fef329fc6..a8438395e 100644 --- a/priv/gettext/fi/LC_MESSAGES/default.po +++ b/priv/gettext/fi/LC_MESSAGES/default.po @@ -1038,7 +1038,7 @@ msgstr "" #, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" "Jos et tehnyt vaihtoa itse, todennäköisesti joku muu on päässyt käyttämään " @@ -1591,3 +1591,51 @@ msgstr "" #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:52 +#: lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "Hyväksy kutsu siirtymällä omiin ryhmiisi." + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:13 +#: lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:45 +#: lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "" diff --git a/priv/gettext/fi/LC_MESSAGES/errors.po b/priv/gettext/fi/LC_MESSAGES/errors.po index dd69f2399..f5caf4eee 100644 --- a/priv/gettext/fi/LC_MESSAGES/errors.po +++ b/priv/gettext/fi/LC_MESSAGES/errors.po @@ -162,7 +162,7 @@ msgid "No user with this email was found" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 @@ -364,7 +364,7 @@ msgid "Cannot remove the last identity of a user" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:95 +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "" @@ -578,7 +578,7 @@ msgid "You are not a moderator or admin for this group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:41 +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "" @@ -588,7 +588,7 @@ msgid "You are not allowed to create a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:103 +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "" @@ -598,7 +598,7 @@ msgid "You are not allowed to delete a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:63 +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "" @@ -614,7 +614,7 @@ msgid "You can't set yourself to a lower member role for this group because you msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:91 +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr "" diff --git a/priv/gettext/fr/LC_MESSAGES/default.po b/priv/gettext/fr/LC_MESSAGES/default.po index 7df346d59..6c56d603b 100644 --- a/priv/gettext/fr/LC_MESSAGES/default.po +++ b/priv/gettext/fr/LC_MESSAGES/default.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-10-01 14:04+0200\n" +"PO-Revision-Date: 2020-10-06 12:28+0200\n" "Last-Translator: Thomas Citharel \n" "Language-Team: French \n" "Language: fr\n" @@ -20,1206 +20,948 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Poedit 2.3\n" -#, elixir-format #: lib/web/templates/email/password_reset.html.eex:48 msgid "If you didn't request this, please ignore this email. Your password won't change until you access the link below and create a new one." msgstr "Si vous n'avez pas demandé ceci, vous pouvez ignorer cet email. Votre mot de passe ne changera pas tant que vous n'en créerez pas un nouveau en cliquant sur le lien ci-dessous." -#, elixir-format #: lib/service/export/feed.ex:170 msgid "Feed for %{email} on Mobilizon" msgstr "Flux pour %{email} sur Mobilizon" -#, elixir-format #: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "%{title} par %{creator}" -#, elixir-format #: lib/web/templates/email/registration_confirmation.html.eex:58 msgid "Activate my account" msgstr "Activer mon compte" -#, elixir-format -#: lib/web/templates/email/email.html.eex:121 -#: lib/web/templates/email/email.text.eex:14 +#: lib/web/templates/email/email.html.eex:121 lib/web/templates/email/email.text.eex:14 msgid "Ask the community on Framacolibri" msgstr "Demander à la communauté sur Framacolibri" -#, elixir-format #: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "Commentaires" -#, elixir-format -#: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 +#: lib/web/templates/email/event_updated.html.eex:62 lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "Événement" -#, elixir-format #: lib/web/email/user.ex:48 msgid "Instructions to reset your password on %{instance}" msgstr "Instructions pour réinitialiser votre mot de passe sur %{instance}" -#, elixir-format #: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "Raison" -#, elixir-format #: lib/web/templates/email/password_reset.html.eex:61 msgid "Reset Password" msgstr "Réinitialiser mon mot de passe" -#, elixir-format #: lib/web/templates/email/password_reset.html.eex:41 msgid "Resetting your password is easy. Just press the button below and follow the instructions. We'll have you up and running in no time." msgstr "Réinitialiser votre mot de passe est facile. Cliquez simplement sur le bouton et suivez les inscriptions. Vous serez opérationnel en un rien de temps." -#, elixir-format #: lib/web/email/user.ex:28 msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "Instructions pour confirmer votre compte Mobilizon sur %{instance}" -#, elixir-format #: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "Nouveau signalement sur l'instance Mobilizon %{instance}" -#, elixir-format -#: lib/web/templates/email/before_event_notification.html.eex:51 -#: lib/web/templates/email/before_event_notification.text.eex:4 +#: lib/web/templates/email/before_event_notification.html.eex:51 lib/web/templates/email/before_event_notification.text.eex:4 msgid "Go to event page" msgstr "Aller à la page de l'événement" -#, elixir-format #: lib/web/templates/email/report.text.eex:1 msgid "New report from %{reporter} on %{instance}" msgstr "Nouveau signalement sur %{instance}" -#, elixir-format #: lib/web/templates/email/event_participation_approved.text.eex:1 msgid "Participation approved" msgstr "Participation approuvée" -#, elixir-format -#: lib/web/templates/email/password_reset.html.eex:13 -#: lib/web/templates/email/password_reset.text.eex:1 +#: lib/web/templates/email/password_reset.html.eex:13 lib/web/templates/email/password_reset.text.eex:1 msgid "Password reset" msgstr "Réinitialisation du mot de passe" -#, elixir-format #: lib/web/templates/email/password_reset.text.eex:7 msgid "Resetting your password is easy. Just click the link below and follow the instructions. We'll have you up and running in no time." msgstr "Réinitialiser votre mot de passe est facile. Cliquez simplement sur le bouton et suivez les instructions. Vous serez opérationnel en un rien de temps." -#, elixir-format #: lib/web/templates/email/registration_confirmation.text.eex:5 msgid "You created an account on %{host} with this email address. You are one click away from activating it. If this wasn't you, please ignore this email." msgstr "Vous avez créé un compte sur %{host} avec cette adresse email. Vous êtes à un clic de l'activer." -#, elixir-format #: lib/web/email/participation.ex:113 msgid "Your participation to event %{title} has been approved" msgstr "Votre participation à l'événement %{title} a été approuvée" -#, elixir-format #: lib/web/email/participation.ex:71 msgid "Your participation to event %{title} has been rejected" msgstr "Votre participation à l'événement %{title} a été rejetée" -#, elixir-format #: lib/web/email/event.ex:35 msgid "Event %{title} has been updated" msgstr "L'événement %{title} a été mis à jour" -#, elixir-format #: lib/web/templates/email/event_updated.text.eex:15 msgid "New title: %{title}" msgstr "Nouveau titre : %{title}" -#, elixir-format #: lib/web/templates/email/password_reset.text.eex:5 msgid "You requested a new password for your account on %{instance}." msgstr "Vous avez demandé un nouveau mot de passe pour votre compte sur %{instance}." -#, elixir-format -#: lib/web/templates/email/email.html.eex:88 -#: lib/web/templates/email/email.text.eex:6 +#: lib/web/templates/email/email.html.eex:88 lib/web/templates/email/email.text.eex:6 msgid "This is a demonstration site to test the beta version of Mobilizon." msgstr "Ceci est un site de démonstration permettant de tester la version bêta de Mobilizon." -#, elixir-format #: lib/web/templates/email/email.html.eex:85 msgid "Warning" msgstr "Attention" -#, elixir-format #: lib/web/email/participation.ex:135 msgid "Confirm your participation to event %{title}" msgstr "Confirmer ma participation à l'événement %{title}" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:75 msgctxt "terms" msgid "An internal ID for your current selected identity" msgstr "Une identité interne pour l'identité sélectionnée actuellement" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:74 msgctxt "terms" msgid "An internal user ID" msgstr "Une identité utilisateur·ice interne" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:37 msgctxt "terms" msgid "Any of the information we collect from you may be used in the following ways:" msgstr "Les informations que nous vous nous fournissez pourront être utilisées ainsi :" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:9 msgctxt "terms" msgid "Basic account information" msgstr "Informations basiques du compte" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:25 msgctxt "terms" msgid "Do not share any dangerous information over Mobilizon." msgstr "Ne partagez aucune information sensible à l'aide de Mobilizon." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:90 msgctxt "terms" msgid "Do we disclose any information to outside parties?" msgstr "Partageons-nous des informations à des tiers ?" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:68 msgctxt "terms" msgid "Do we use cookies?" msgstr "Utilisons-nous des cookies ?" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:51 msgctxt "terms" msgid "How do we protect your information?" msgstr "Comment protégeons-nous vos informations ?" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:29 msgctxt "terms" msgid "IPs and other metadata" msgstr "Adresses IP et autres métadonnées" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:17 msgctxt "terms" msgid "Published events and comments" msgstr "Évènements publiés et commentaires" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:64 msgctxt "terms" msgid "Retain the IP addresses associated with registered users no more than 12 months." msgstr "Ne pas conserver les adresses IP associées aux utilisateur·ices enregistrés pas plus de 12 mois." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:76 msgctxt "terms" msgid "Tokens to authenticate you" msgstr "Jetons pour vous identifier" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:31 msgctxt "terms" msgid "We also may retain server logs which include the IP address of every request to our server." msgstr "Nous pouvons également conserver les données d'authentification y compris les adresses IP de toutes les requêtes de notre serveur." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:70 msgctxt "terms" msgid "We store the following information on your device when you connect:" msgstr "Nous conservons les informations suivantes sur votre appareil lorsque vous vous connectez :" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:58 msgctxt "terms" msgid "We will make a good faith effort to:" msgstr "Nous mettrons tout en possible pour :" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:35 msgctxt "terms" msgid "What do we use your information for?" msgstr "Comment utilisons-nous vos informations ?" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:57 msgctxt "terms" msgid "What is our data retention policy?" msgstr "Quelle est notre politique de conservation des données ?" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:67 msgctxt "terms" msgid "You may irreversibly delete your account at any time." msgstr "Vous pouvez supprimer votre compte à tout moment de façon irréversible." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:115 msgctxt "terms" msgid "Changes to our Privacy Policy" msgstr "Modifications de notre politique de confidentialité" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:106 msgctxt "terms" msgid "If this server is in the EU or the EEA: Our site, products and services are all directed to people who are at least 16 years old. If you are under the age of 16, per the requirements of the GDPR (General Data Protection Regulation) do not use this site." msgstr "Si ce serveur est dans l'Union Européenne ou dans l'Espace Economique Européen : nos sites, produits et services sont tous destinés aux personnes âgées de plus de 16 ans. Si vous avez moins de 16 ans, suivant le RGPD (Règlement général sur la protection des données), n'utilisez pas ce site." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:109 msgctxt "terms" msgid "If this server is in the USA: Our site, products and services are all directed to people who are at least 13 years old. If you are under the age of 13, per the requirements of COPPA (Children's Online Privacy Protection Act) do not use this site." msgstr "Si le serveur est situé aux Etats-Unis : Notre site, nos produits et services sont tous à destination de personnes agées d'au moins 13 ans. Si vous avez moins de 13 ans, d'après les recommandations de COOPA (Children's Online Privacy Protection Act) n'utilisez pas ce site." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:117 msgctxt "terms" msgid "If we decide to change our privacy policy, we will post those changes on this page." msgstr "Si nous décidons de changer notre politique de confidentialité, nous présenterons ces changements sur cette page." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:112 msgctxt "terms" msgid "Law requirements can be different if this server is in another jurisdiction." msgstr "Les conditions juridiques peuvent différer si le serveur est sous une autre juridiction." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:103 msgctxt "terms" msgid "Site usage by children" msgstr "Utilisation du site par les enfants" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:47 msgctxt "terms" -msgid "The email address you provide may be used to send you information, updates and notifications about other people\n interacting with your content or sending you messages and to respond to inquiries, and/or other requests or\n questions." +msgid "" +"The email address you provide may be used to send you information, updates and notifications about other people\n" +" interacting with your content or sending you messages and to respond to inquiries, and/or other requests or\n" +" questions." msgstr "L'adresse électronique que vous fournissez peut être utilisée pour vous envoyer des informations, des mises à jour et des notifications concernant d'autres personnes qui interagissent avec votre contenu ou vous envoient des messages et pour répondre à des demandes, et/ou à d'autres requêtes ou questions." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:45 msgctxt "terms" -msgid "To aid moderation of the community, for example comparing your IP address with other known ones to determine ban\n evasion or other violations." +msgid "" +"To aid moderation of the community, for example comparing your IP address with other known ones to determine ban\n" +" evasion or other violations." msgstr "Pour aider à la modération de la communauté, par exemple en comparant votre adresse IP avec d'autres adresses connues afin de déterminer s'il y a contournement d'un bannissement ou d'autres violations." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:43 msgctxt "terms" -msgid "To provide the core functionality of Mobilizon. Depending on this instance's policy you may only be able to\n interact with other people's content and post your own content if you are logged in." +msgid "" +"To provide the core functionality of Mobilizon. Depending on this instance's policy you may only be able to\n" +" interact with other people's content and post your own content if you are logged in." msgstr "Fournir la fonctionnalité de base de Mobilizon. Selon la politique de cette instance, vous ne pourrez interagir avec le contenu d'autres personnes et publier votre propre contenu que si vous êtes connecté." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:6 msgctxt "terms" msgid "What information do we collect?" msgstr "Quelles informations collectons-nous ?" -#, elixir-format #: lib/web/email/user.ex:176 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "Mobilizon sur %{instance} : confirmez votre adresse email" -#, elixir-format #: lib/web/email/user.ex:152 msgid "Mobilizon on %{instance}: email changed" msgstr "Mobilizon sur %{instance} : adresse email modifiée" -#, elixir-format #: lib/web/email/notification.ex:46 msgid "One event planned today" msgid_plural "%{nb_events} events planned today" msgstr[0] "Un événement prévu aujourd'hui" msgstr[1] "%{nb_events} événements prévus aujourd'hui" -#, elixir-format -#: lib/web/templates/email/on_day_notification.html.eex:38 -#: lib/web/templates/email/on_day_notification.text.eex:4 +#: lib/web/templates/email/on_day_notification.html.eex:38 lib/web/templates/email/on_day_notification.text.eex:4 msgid "You have one event today:" msgid_plural "You have %{total} events today:" msgstr[0] "Vous avez un événement aujourd'hui :" msgstr[1] "Vous avez %{total} événements aujourd'hui :" -#, elixir-format #: lib/web/templates/email/group_invite.text.eex:3 msgid "%{inviter} just invited you to join their group %{group}" msgstr "%{inviter} vient de vous inviter à rejoindre son groupe %{group}" -#, elixir-format -#: lib/web/templates/email/group_invite.html.eex:13 -#: lib/web/templates/email/group_invite.text.eex:1 +#: lib/web/templates/email/group_invite.html.eex:13 lib/web/templates/email/group_invite.text.eex:1 msgid "Come along!" msgstr "Rejoignez-nous !" -#, elixir-format #: lib/web/email/notification.ex:24 msgid "Don't forget to go to %{title}" msgstr "N'oubliez pas de vous rendre à %{title}" -#, elixir-format -#: lib/web/templates/email/before_event_notification.html.eex:38 -#: lib/web/templates/email/before_event_notification.text.eex:3 +#: lib/web/templates/email/before_event_notification.html.eex:38 lib/web/templates/email/before_event_notification.text.eex:3 msgid "Get ready for %{title}" msgstr "Préparez vous pour %{title}" -#, elixir-format #: lib/web/templates/email/group_invite.html.eex:59 msgid "See my groups" msgstr "Voir mes groupes" -#, elixir-format -#: lib/web/templates/email/group_invite.html.eex:45 -#: lib/web/templates/email/group_invite.text.eex:5 +#: lib/web/templates/email/group_invite.html.eex:45 lib/web/templates/email/group_invite.text.eex:5 msgid "To accept this invitation, head over to your groups." msgstr "Pour accepter cette invitation, rendez-vous dans vos groupes." -#, elixir-format #: lib/web/templates/email/before_event_notification.text.eex:5 msgid "View the event on: %{link}" msgstr "Voir l'événement mis à jour sur : %{link}" -#, elixir-format #: lib/web/email/group.ex:32 msgid "You have been invited by %{inviter} to join group %{group}" msgstr "Vous avez été invité par %{inviter} à rejoindre le groupe %{group}" -#, elixir-format #: lib/web/email/notification.ex:70 msgid "One event planned this week" msgid_plural "%{nb_events} events planned this week" msgstr[0] "Un événement prévu aujourd'hui" msgstr[1] "%{nb_events} événements prévus aujourd'hui" -#, elixir-format #: lib/web/email/notification.ex:92 msgid "One participation request for event %{title} to process" msgid_plural "%{number_participation_requests} participation requests for event %{title} to process" msgstr[0] "Une demande de participation à l'événement %{title} à traiter" msgstr[1] "%{number_participation_requests} demandes de participation à l'événement %{title} à traiter" -#, elixir-format -#: lib/web/templates/email/notification_each_week.html.eex:38 -#: lib/web/templates/email/notification_each_week.text.eex:4 +#: lib/web/templates/email/notification_each_week.html.eex:38 lib/web/templates/email/notification_each_week.text.eex:4 msgid "You have one event this week:" msgid_plural "You have %{total} events this week:" msgstr[0] "Vous avez un événement aujourd'hui :" msgstr[1] "Vous avez %{total} événements aujourd'hui :" -#, elixir-format #: lib/service/metadata/utils.ex:27 msgid "The event organizer didn't add any description." msgstr "L'organisateur·ice de l'événement n'a pas ajouté de description." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:54 msgctxt "terms" msgid "We implement a variety of security measures to maintain the safety of your personal information when you enter, submit, or access your personal information. Among other things, your browser session, as well as the traffic between your applications and the API, are secured with SSL/TLS, and your password is hashed using a strong one-way algorithm." msgstr "Nous utilisons plusieurs mesures de sécurité pour assurer la confidentialité de vos informations personnelles lorsque vous soumettez ou accédez à vos informations. Entre autres, votre session de navigateur et la connexion entre vos applications et l'API sont sécurisés par SSL/TLS, et votre mot de passe est haché avec un algorithme fort à sens unique." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:94 msgctxt "terms" msgid "No. We do not sell, trade, or otherwise transfer to outside parties your personally identifiable information. This does not include trusted third parties who assist us in operating our site, conducting our business, or servicing you, so long as those parties agree to keep this information confidential. We may also release your information when we believe release is appropriate to comply with the law, enforce our site policies, or protect ours or others rights, property, or safety." msgstr "Non. Nous ne vendons, n’échangeons ou ne transférons d’une quelque manière que soit des informations permettant de vous identifier personnellement. Cela n’inclut pas les tierces parties de confiance qui nous aident à opérer ce site, à conduire nos activités commerciales ou à vous servir, tant qu’elles acceptent de garder ces informations confidentielles. Nous sommes également susceptibles de partager vos informations quand nous pensons que c’est nécessaire pour nous conformer à la loi, pour appliquer les politiques de notre site ainsi que pour défendre nos droits, notre propriété, notre sécurité et celles et ceux d’autres personnes." -#, elixir-format #: lib/web/templates/api/terms.html.eex:23 msgctxt "terms" msgid "Accepting these Terms" msgstr "Acceptation de ces Conditions" -#, elixir-format #: lib/web/templates/api/terms.html.eex:27 msgctxt "terms" msgid "Changes to these Terms" msgstr "Modifications de ces Conditions d'Utilisation" -#, elixir-format #: lib/web/templates/api/terms.html.eex:85 msgctxt "terms" msgid "A lot of the content on the Service is from you and others, and we don't review, verify or authenticate it, and it may include inaccuracies or false information. We make no representations, warranties, or guarantees relating to the quality, suitability, truth, accuracy or completeness of any content contained in the Service. You acknowledge sole responsibility for and assume all risk arising from your use of or reliance on any content." msgstr "Une grande partie du contenu du Service provient de vous et d'autres personnes, et nous ne l'examinons, ne le vérifions ni ne l'authentifions, et il peut contenir des inexactitudes ou de fausses informations. Nous ne faisons aucune déclaration, garantie ou assurance concernant la qualité, la pertinence, la véracité, l'exactitude ou l'exhaustivité de tout contenu du Service. Vous reconnaissez être seul responsable et assumez tous les risques découlant de votre utilisation ou de votre confiance dans tout contenu." -#, elixir-format #: lib/web/templates/api/terms.html.eex:60 msgctxt "terms" msgid "Also, you agree that you will not do any of the following in connection with the Service or other users:" msgstr "De plus, vous acceptez de ne pas faire ce qui suit en relation avec le Service ou les autres utilisateur·ices :" -#, elixir-format #: lib/web/templates/api/terms.html.eex:65 msgctxt "terms" msgid "Circumvent or attempt to circumvent any filtering, security measures, rate limits or other features designed to protect the Service, users of the Service, or third parties." msgstr "Contourner ou tenter de contourner tout filtrage, mesures de sécurité, limites d'accès ou autres caractéristiques destinées à protéger le Service, les utilisateur·ices du Service ou des tiers." -#, elixir-format #: lib/web/templates/api/terms.html.eex:64 msgctxt "terms" msgid "Collect any personal information about other users, or intimidate, threaten, stalk or otherwise harass other users of the Service;" msgstr "Recueillir des informations personnelles sur les autres utilisateur·ices, ou intimider, menacer, traquer ou harceler de toute autre manière les autres utilisateurs du Service ;" -#, elixir-format #: lib/web/templates/api/terms.html.eex:55 msgctxt "terms" msgid "Content that is illegal or unlawful, that would otherwise create liability;" msgstr "Du contenu qui est illégal ou illicite, qui autrement entraînerait une responsabilité ;" -#, elixir-format #: lib/web/templates/api/terms.html.eex:56 msgctxt "terms" msgid "Content that may infringe or violate any patent, trademark, trade secret, copyright, right of privacy, right of publicity or other intellectual or other right of any party;" msgstr "Du contenu susceptible d'enfreindre ou de violer un brevet, une marque de commerce, un secret commercial, un droit d'auteur, un droit à la vie privée, un droit de publicité ou tout autre droit intellectuel ou autre de toute partie ;" -#, elixir-format #: lib/web/templates/api/terms.html.eex:42 msgctxt "terms" msgid "Creating Accounts" msgstr "Création de compte" -#, elixir-format #: lib/web/templates/api/terms.html.eex:89 msgctxt "terms" msgid "Entire Agreement" msgstr "Accord complet" -#, elixir-format #: lib/web/templates/api/terms.html.eex:92 msgctxt "terms" msgid "Feedback" msgstr "Commentaires" -#, elixir-format #: lib/web/templates/api/terms.html.eex:83 msgctxt "terms" msgid "Hyperlinks and Third Party Content" msgstr "Liens hypertexte et contenu tiers" -#, elixir-format #: lib/web/templates/api/terms.html.eex:88 msgctxt "terms" msgid "If you breach any of these Terms, we have the right to suspend or disable your access to or use of the Service." msgstr "Si vous enfreignez l'une de ces Conditions, nous avons le droit de suspendre ou de désactiver votre accès ou votre utilisation du Service." -#, elixir-format #: lib/web/templates/api/terms.html.eex:63 msgctxt "terms" msgid "Impersonate or post on behalf of any person or entity or otherwise misrepresent your affiliation with a person or entity;" msgstr "Usurper l'identité d'une personne ou d'une entité ou afficher au nom d'une personne ou d'une entité, ou encore présenter de manière inexacte votre affiliation à une personne ou une entité ;" -#, elixir-format #: lib/web/templates/api/terms.html.eex:48 msgctxt "terms" msgid "Our Service allows you and other users to post, link and otherwise make available content. You are responsible for the content that you make available to the Service, including its legality, reliability, and appropriateness." msgstr "Notre Service vous permet, ainsi qu'à d'autres utilisateur·ices, de publier, d'établir des liens et de mettre à disposition du contenu. Vous êtes responsable du contenu que vous mettez à la disposition du service, y compris de sa légalité, de sa fiabilité et de sa pertinence." -#, elixir-format #: lib/web/templates/api/terms.html.eex:39 msgctxt "terms" msgid "Privacy Policy" msgstr "Politique de confidentialité" -#, elixir-format #: lib/web/templates/api/terms.html.eex:95 msgctxt "terms" msgid "Questions & Contact Information" msgstr "Questions et coordonnées" -#, elixir-format #: lib/web/templates/api/terms.html.eex:87 msgctxt "terms" msgid "Termination" msgstr "Résiliation" -#, elixir-format #: lib/web/templates/api/terms.html.eex:62 msgctxt "terms" msgid "Use the Service in any manner that could interfere with, disrupt, negatively affect or inhibit other users from fully enjoying the Service or that could damage, disable, overburden or impair the functioning of the Service;" msgstr "Utiliser le Service de toute manière qui pourrait interférer, perturber, affecter négativement ou empêcher d'autres utilisateur·ices de profiter pleinement du Service ou qui pourrait endommager, désactiver, surcharger ou altérer le fonctionnement du Service ;" -#, elixir-format #: lib/web/templates/api/terms.html.eex:47 msgctxt "terms" msgid "Your Content & Conduct" msgstr "Votre contenu et votre conduite" -#, elixir-format #: lib/web/templates/api/terms.html.eex:84 msgctxt "terms" msgid "%{instance_name} makes no claim or representation regarding, and accepts no responsibility for third party websites accessible by hyperlink from the Service or websites linking to the Service. When you leave the Service, you should be aware that these Terms and our policies no longer govern. The inclusion of any link does not imply endorsement by %{instance_name} of the site. Use of any such linked website is at the user's own risk." msgstr "%{instance_name} ne fait aucune revendication et n'accepte aucune responsabilité concernant les sites web de tiers accessibles par lien hypertexte depuis le Service ou les sites web liés au Service. Lorsque vous quittez le Service, vous devez savoir que les présentes Conditions et nos politiques de confidentialité ne sont plus applicables. L'inclusion d'un lien n'implique pas l'approbation par %{instance_name} du site. L'utilisation de tout site web lié est aux risques et périls de l'utilisateur·ice." -#, elixir-format #: lib/web/templates/api/terms.html.eex:68 msgctxt "terms" msgid "Finally, your use of the Service is also subject to acceptance of the instance's own specific rules regarding the code of conduct and moderation rules. Breaking those rules may also result in your account being disabled or suspended." msgstr "Enfin, votre utilisation du Service est également soumise à l'acceptation des règles spécifiques de l'instance concernant le code de conduite et les règles de modération. Le non-respect de ces règles peut également entraîner la désactivation ou la suspension de votre compte." -#, elixir-format #: lib/web/templates/api/terms.html.eex:81 msgctxt "terms" msgid "For full details about the Mobilizon software see here." msgstr "Pour plus de détails sur le logiciel Mobilizon voir ici." -#, elixir-format #: lib/web/templates/api/terms.html.eex:18 msgctxt "terms" msgid "Here are the important things you need to know about accessing and using the %{instance_name} (%{instance_url}) website and service (collectively, \"Service\"). These are our terms of service (\"Terms\"). Please read them carefully." msgstr "Voici les points importants que vous devez savoir sur l'accès et l'utilisation du site web et du Service %{instance_name} (%{instance_url}) (conjointement, \"Service\"). Ce sont nos conditions de service (\"Conditions\"). Veuillez les lire attentivement." -#, elixir-format #: lib/web/templates/api/terms.html.eex:33 msgctxt "terms" msgid "If we make major changes, we will notify our users in a clear and prominent manner. Minor changes may only be highlighted in the footer of our website. It is your responsibility to check the website regularly for changes to these Terms." msgstr "Si nous apportons des changements majeurs, nous en informerons nos utilisateur·ices de manière claire et visible. Il est possible que les changements mineurs ne soient mis en évidence que dans le pied de page de cette page. Il est de votre responsabilité de vérifier régulièrement sur le site web si des modifications ont été apportées aux présentes Conditions." -#, elixir-format #: lib/web/templates/api/terms.html.eex:53 msgctxt "terms" msgid "In order to make %{instance_name} a great place for all of us, please do not post, link and otherwise make available on or through the Service any of the following:" msgstr "Afin de faire de %{instance_name} un endroit idéal pour nous toutes et tous, nous vous prions de ne pas publier, relier ou rendre disponible sur ou par le biais du Service l'un des éléments suivants :" -#, elixir-format #: lib/web/templates/api/terms.html.eex:57 msgctxt "terms" msgid "Private information of any third party (e.g., addresses, phone numbers, email addresses, Social Security numbers and credit card numbers); and" msgstr "Les informations privées de toute personne tierce (par exemple, les adresses, les numéros de téléphone, les adresses électroniques, les numéros de sécurité sociale et les numéros de carte de crédit) ; et" -#, elixir-format #: lib/web/templates/api/terms.html.eex:52 msgctxt "terms" msgid "Since Mobilizon is a distributed network, it is possible, depending on the visibility rules set to your content, that your content has been distributed to other Mobilizon instances. When you delete your content, we will request those other instances to also delete the content. Our responsibility on the content being deleted from those other instances ends here. If for some reason, some other instance does not delete the content, we cannot be held responsible." msgstr "Mobilizon étant un réseau distribué, il est possible, en fonction des règles de visibilité définies pour votre contenu, que celui-ci ait été distribué à d'autres instances de Mobilizon. Lorsque vous supprimez votre contenu, nous demandons à ces autres instances de supprimer également le contenu. Notre responsabilité quant au contenu supprimé de ces autres instances s'arrête ici. Si, pour une raison quelconque, une autre instance ne supprime pas le contenu, nous ne pouvons être tenus responsables." -#, elixir-format #: lib/web/templates/api/terms.html.eex:90 msgctxt "terms" msgid "These Terms constitute the entire agreement between you and %{instance_name} regarding the use of the Service, superseding any prior agreements between you and %{instance_name} relating to your use of the Service." msgstr "Les présentes Conditions constituent l'intégralité de l'accord entre vous et %{instance_name} concernant l'utilisation du Service, remplaçant tout accord préalable entre vous et %{instance_name} relatif à votre utilisation du Service." -#, elixir-format #: lib/web/templates/api/terms.html.eex:80 msgctxt "terms" msgid "This Service runs on a Mobilizon instance. This source code is licensed under an AGPLv3 license which means you are allowed to and even encouraged to take the source code, modify it and use it." msgstr "Ce Service fonctionne sur une instance de Mobilizon. Ce code source est sous licence AGPLv3 ce qui signifie que vous êtes autorisé et même encouragé à prendre le code source, le modifier et l'utiliser." -#, elixir-format #: lib/web/templates/api/terms.html.eex:58 msgctxt "terms" msgid "Viruses, corrupted data or other harmful, disruptive or destructive files or code." msgstr "Virus, données corrompues ou autres fichiers ou codes nuisibles, perturbateurs ou destructeurs." -#, elixir-format #: lib/web/templates/api/terms.html.eex:51 msgctxt "terms" msgid "You can remove the content that you posted by deleting it. Once you delete your content, it will not appear on the Service, but copies of your deleted content may remain in our system or backups for some period of time. Web server access logs might also be stored for some time in the system." msgstr "Vous pouvez supprimer le contenu que vous avez publié en le supprimant. Une fois que vous avez supprimé votre contenu, il n'apparaîtra plus sur le Service, mais des copies de votre contenu supprimé peuvent rester dans notre système ou des sauvegardes pendant un certain temps. Les journaux d'accès au serveur web peuvent également être stockés pendant un certain temps dans le système." -#, elixir-format #: lib/web/templates/api/terms.html.eex:96 msgctxt "terms" msgid "Questions or comments about the Service may be directed to us at %{contact}" msgstr "Les questions ou commentaires concernant le Service peuvent nous être adressés à %{contact}" -#, elixir-format #: lib/web/templates/api/terms.html.eex:79 msgctxt "terms" msgid "Source code" msgstr "Code source" -#, elixir-format #: lib/web/templates/api/terms.html.eex:93 msgctxt "terms" msgid "We love feedback. Please let us know what you think of the Service, these Terms and, in general, %{instance_name}." msgstr "Nous aimons les retours d'information. N'hésitez pas à nous faire savoir ce que vous pensez du Service, des présentes Conditions et, en général, de %{instance_name}." -#, elixir-format #: lib/web/templates/api/terms.html.eex:74 msgctxt "terms" msgid "Instance administrators (and community moderators, given the relevant access) are responsible for monitoring and acting on flagged content and other user reports, and have the right and responsibility to remove or edit content that is not aligned to this Instance set of rules, or to suspend, block or ban (temporarily or permanently) any account, community, or instance for breaking these terms, or for other behaviours that they deem inappropriate, threatening, offensive, or harmful." msgstr "Les administrateurs d'instance (et les modérateurs de la communauté, sous réserve d'un accès approprié) sont chargés de surveiller et d'agir sur les contenus signalés et autres rapports d'utilisateur·ices, et ont le droit et la responsabilité de supprimer ou de modifier les contenus qui ne sont pas conformes aux règles de cette d'instance, ou de suspendre, bloquer ou interdire (temporairement ou définitivement) tout compte, communauté ou instance pour violation de ces conditions, ou pour d'autres comportements qu'ils jugent inappropriés, menaçants, offensants ou nuisibles." -#, elixir-format #: lib/web/templates/api/terms.html.eex:6 msgctxt "terms" msgid "%{instance_name} will not use or transmit or resell your personal data" msgstr "%{instance_name} n'utilisera pas ni ne transmettra ou revendra vos données" -#, elixir-format #: lib/web/templates/api/terms.html.eex:44 msgctxt "terms" msgid "If you discover or suspect any Service security breaches, please let us know as soon as possible. For security holes in the Mobilizon software itself, please contact its contributors directly." msgstr "Si vous découvrez ou soupçonnez des failles de sécurité du Service, veuillez nous en informer dès que possible. Pour les failles de sécurité dans le logiciel Mobilizon lui-même, veuillez contacter directement ses contributeur·ices." -#, elixir-format #: lib/web/templates/api/terms.html.eex:77 msgctxt "terms" msgid "Instance administrators should ensure that every community hosted on the instance is properly moderated according to the defined rules." msgstr "Les administrateur·ices d'instance doivent s'assurer que chaque communauté hébergée sur l'instance est correctement modérée conformément aux règles définies." -#, elixir-format #: lib/web/templates/api/terms.html.eex:98 msgctxt "terms" msgid "Originally adapted from the Diaspora* and App.net privacy policies, also licensed under CC BY-SA." msgstr "Adaptée à l'origine des politiques de confidentialité de Diaspora* et App.net, aussi sous licence CC BY-SA." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:119 msgctxt "terms" msgid "Originally adapted from the Mastodon and Discourse privacy policies, also licensed under CC BY-SA." msgstr "Adaptée à l'origine des politiques de confidentialité de Mastodon et Discourse, aussi sous licence CC BY-SA." -#, elixir-format #: lib/web/templates/api/terms.html.eex:3 msgctxt "terms" msgid "Short version" msgstr "Version courte" -#, elixir-format #: lib/web/templates/api/terms.html.eex:9 msgctxt "terms" msgid "The service is provided without warranties and these terms may change in the future" msgstr "Le service est fourni sans garanties et ces conditions peuvent changer dans le futur" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:118 msgctxt "terms" msgid "This document is licensed under CC BY-SA. It was last updated June 18, 2020." msgstr "Ce document est sous licence CC BY-SA. La dernière mise à jour date du 18 juin 2020." -#, elixir-format #: lib/web/templates/api/terms.html.eex:97 msgctxt "terms" msgid "This document is licensed under CC BY-SA. It was last updated June 22, 2020." msgstr "Ce document est sous licence CC BY-SA. La dernière mise à jour date du 22 juin 2020." -#, elixir-format #: lib/web/templates/api/terms.html.eex:8 msgctxt "terms" msgid "You must respect other people and %{instance_name}'s rules when using the service" msgstr "Vous devez respecter les autres et les règles de %{instance_name} lorsque vous utilisez le service" -#, elixir-format #: lib/web/templates/api/terms.html.eex:7 msgctxt "terms" msgid "You must respect the law when using %{instance_name}" msgstr "Vous devez respecter la loi lorsque vous utilisez %{instance_name}" -#, elixir-format #: lib/web/templates/api/terms.html.eex:5 msgctxt "terms" msgid "Your content is yours" msgstr "Votre contenu vous appartient" -#, elixir-format #: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "Confirmer mon adresse email" -#, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:13 -#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:1 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:13 lib/web/templates/email/anonymous_participation_confirmation.text.eex:1 msgid "Confirm your e-mail" msgstr "Confirmez votre adresse email" -#, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:38 -#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:3 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:38 lib/web/templates/email/anonymous_participation_confirmation.text.eex:3 msgid "Hi there! You just registered to join this event: « %{title} ». Please confirm the e-mail address you provided:" msgstr "Salut ! Vous venez de vous enregistrer pour rejoindre cet événement : « %{title} ». Merci de confirmer l'adresse email que vous avez fourni :" -#, elixir-format -#: lib/web/templates/email/email.html.eex:118 -#: lib/web/templates/email/email.text.eex:12 +#: lib/web/templates/email/email.html.eex:118 lib/web/templates/email/email.text.eex:12 msgid "Need help? Is something not working as expected?" msgstr "Besoin d'aide ? Quelque chose ne fonctionne pas correctement ?" -#, elixir-format #: lib/web/templates/email/registration_confirmation.html.eex:38 msgid "You created an account on %{host} with this email address. You are one click away from activating it." msgstr "Vous avez créé un compte sur %{host} avec cette adresse email. Vous êtes à un clic de l'activer." -#, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on %{instance}" msgstr "Nouveau signalement sur %{instance}" -#, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:38 msgid "The email address for your account on %{host} is being changed to:" msgstr "L'adresse email pour votre compte sur %{host} est en train d'être changée pour :" -#, elixir-format #: lib/web/templates/email/password_reset.html.eex:38 msgid "You requested a new password for your account on %{instance}." msgstr "Vous avez demandé un nouveau mot de passe pour votre compte sur %{instance}." -#, elixir-format #: lib/web/templates/email/email.text.eex:9 msgid "Mobilizon is still under development, we will add new features along the updates, until the release of version 1 of the software in the fall of 2020." msgstr "Mobilizon est en cours de développement, nous y ajouterons de nouvelles fonctionnalités lors de mises à jour régulières, jusqu'à la publication de la version 1 du logiciel à l'automne 2020." -#, elixir-format #: lib/web/templates/email/email.text.eex:7 msgid "Please do not use it for real purposes." msgstr "Veuillez ne pas l'utiliser pour un cas réel." -#, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 -#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131 -#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 -#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 -#: lib/web/templates/email/on_day_notification.text.eex:14 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131 lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 lib/web/templates/email/on_day_notification.text.eex:14 msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button." msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button." msgstr[0] "Si vous avez besoin d'annuler votre participation, il suffit d'accéder à la page de l'événement à partir du lien ci-dessus et de cliquer sur le bouton « Je participe »." msgstr[1] "Si vous avez besoin d'annuler votre participation à un ou plusieurs événements, il suffit d'accéder aux pages des événement grâce aux liens ci-dessus et de cliquer sur le bouton « Je participe »." -#, elixir-format -#: lib/web/templates/email/pending_participation_notification.html.eex:38 -#: lib/web/templates/email/pending_participation_notification.text.eex:4 +#: lib/web/templates/email/pending_participation_notification.html.eex:38 lib/web/templates/email/pending_participation_notification.text.eex:4 msgid "You have one pending attendance request to process:" msgid_plural "You have %{number_participation_requests} attendance requests to process:" msgstr[0] "Vous avez une demande de participation en attente à traiter :" msgstr[1] "Vous avez %{number_participation_requests} demandes de participation en attente à traiter :" -#, elixir-format #: lib/web/templates/email/email.text.eex:16 msgid "%{instance} is powered by Mobilizon." msgstr "%{instance} est une instance Mobilizon." -#, elixir-format #: lib/web/templates/email/email.html.eex:146 msgid "%{instance} is powered by Mobilizon." msgstr "%{instance} est une instance Mobilizon." -#, elixir-format -#: lib/web/templates/email/pending_participation_notification.html.eex:13 -#: lib/web/templates/email/pending_participation_notification.text.eex:1 +#: lib/web/templates/email/pending_participation_notification.html.eex:13 lib/web/templates/email/pending_participation_notification.text.eex:1 msgid "A request is pending!" msgstr "Une requête est en attente !" -#, elixir-format -#: lib/web/templates/email/before_event_notification.html.eex:13 -#: lib/web/templates/email/before_event_notification.text.eex:1 +#: lib/web/templates/email/before_event_notification.html.eex:13 lib/web/templates/email/before_event_notification.text.eex:1 msgid "An event is upcoming!" msgstr "Un événement est à venir !" -#, elixir-format -#: lib/web/templates/email/email_changed_new.html.eex:13 -#: lib/web/templates/email/email_changed_new.text.eex:1 +#: lib/web/templates/email/email_changed_new.html.eex:13 lib/web/templates/email/email_changed_new.text.eex:1 msgid "Confirm new email" msgstr "Confirmez votre adresse email" -#, elixir-format #: lib/web/templates/email/event_updated.html.eex:82 msgid "End" msgstr "Fin" -#, elixir-format #: lib/web/templates/email/event_updated.text.eex:21 msgid "End %{ends_on}" msgstr "Fin %{ends_on}" -#, elixir-format -#: lib/web/templates/email/event_updated.html.eex:13 -#: lib/web/templates/email/event_updated.text.eex:1 +#: lib/web/templates/email/event_updated.html.eex:13 lib/web/templates/email/event_updated.text.eex:1 msgid "Event update!" msgstr "Événement mis à jour !" -#, elixir-format #: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "Commentaires signalés" -#, elixir-format -#: lib/web/templates/email/event_participation_approved.html.eex:45 -#: lib/web/templates/email/event_participation_approved.text.eex:7 +#: lib/web/templates/email/event_participation_approved.html.eex:45 lib/web/templates/email/event_participation_approved.text.eex:7 msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" msgstr "Bonne nouvelle : un·e des organisateur·ices de l'événement vient d'approuver votre demande. Mettez à jour votre agenda, car vous êtes maintenant un·e participant·e !" -#, elixir-format -#: lib/web/templates/email/email_changed_new.html.eex:38 -#: lib/web/templates/email/email_changed_new.text.eex:3 +#: lib/web/templates/email/email_changed_new.html.eex:38 lib/web/templates/email/email_changed_new.text.eex:3 msgid "Hi there! It seems like you wanted to change the email address linked to your account on %{instance}. If you still wish to do so, please click the button below to confirm the change. You will then be able to log in to %{instance} with this new email address." msgstr "Salut ! Il semblerait que vous avez demandé la modification de l'adresse e-mail liée à votre compte sur %{instance}. Si vous voulez toujours effectuer ce changement, merci de cliquer sur le bouton ci-dessous pour confirmer la modification. Vous pourrez alors vous connecter à %{instance} avec cette nouvelle adresse." -#, elixir-format #: lib/web/templates/email/email_changed_old.text.eex:3 msgid "Hi there! Just a quick note to confirm that the email address linked to your account on %{host} has been changed from this one to:" msgstr "Salut ! Juste un petite note pour confirmer que l'adresse e-mail liée à votre compte sur %{host} a été changée depuis celle-ci à :" -#, elixir-format -#: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:41 lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "Si vous n'avez pas effectué cette modification vous-même, il est probable que quelqu'un ait eu accès à votre compte %{host}. Veuillez vous connecter et changer immédiatement votre mot de passe. Si vous ne pouvez pas vous connecter, contactez l'administrateur·ice sur %{host}." -#, elixir-format #: lib/web/templates/email/password_reset.text.eex:12 msgid "If you didn't trigger the change yourself, please ignore this message. Your password won't be changed until you click the link above." msgstr "Si vous n'êtes pas à l'origine de cette modification, merci d'ignorer ce message. Votre mot de passe ne sera pas modifié tant que vous ne cliquerez pas le lien ci-dessus." -#, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:70 -#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:4 lib/web/templates/email/registration_confirmation.html.eex:45 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:70 lib/web/templates/email/anonymous_participation_confirmation.text.eex:4 lib/web/templates/email/registration_confirmation.html.eex:45 msgid "If you didn't trigger this email, you may safely ignore it." msgstr "Si vous n'avez pas déclenché cette alerte, vous pouvez ignorer cet e-mail sans souci." -#, elixir-format -#: lib/web/templates/email/before_event_notification.html.eex:63 -#: lib/web/templates/email/before_event_notification.text.eex:6 +#: lib/web/templates/email/before_event_notification.html.eex:63 lib/web/templates/email/before_event_notification.text.eex:6 msgid "If you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button." msgstr "Si vous avez besoin d'annuler votre participation, il suffit d'accéder à la page de l'événement à partir du lien ci-dessus et de cliquer sur le bouton « Je participe »." -#, elixir-format #: lib/web/templates/email/email.html.eex:92 msgid "In the meantime, please consider this software as not (yet) fully functional. Read more %{a_start}on the Framasoft blog%{a_end}." msgstr "D'ici là, veuillez considérer que le logiciel n'est pas (encore) fini. Retrouvez plus d'informations %{a_start}sur le blog de Framasoft%{a_end}." -#, elixir-format #: lib/web/templates/email/email.text.eex:10 msgid "In the meantime, please consider this software as not (yet) fully functional. Read more on the Framasoft blog:" msgstr "D'ici là, veuillez considérer que le logiciel n'est pas (encore) fini. Retrouvez plus d'informations sur le blog de Framasoft :" -#, elixir-format -#: lib/web/templates/email/email.html.eex:147 -#: lib/web/templates/email/email.text.eex:16 +#: lib/web/templates/email/email.html.eex:147 lib/web/templates/email/email.text.eex:16 msgid "Learn more about Mobilizon here!" msgstr "En apprendre plus à propos de Mobilizon ici !" -#, elixir-format #: lib/web/templates/email/event_updated.html.eex:92 msgid "Location" msgstr "Localisation" -#, elixir-format #: lib/web/templates/email/event_updated.html.eex:102 msgid "Location address was removed" msgstr "L'adresse physique a été enlevée" -#, elixir-format -#: lib/web/templates/email/pending_participation_notification.html.eex:51 -#: lib/web/templates/email/pending_participation_notification.text.eex:6 +#: lib/web/templates/email/pending_participation_notification.html.eex:51 lib/web/templates/email/pending_participation_notification.text.eex:6 msgid "Manage pending requests" msgstr "Gérer les demandes de participation en attente" -#, elixir-format -#: lib/web/templates/email/registration_confirmation.html.eex:13 -#: lib/web/templates/email/registration_confirmation.text.eex:1 +#: lib/web/templates/email/registration_confirmation.html.eex:13 lib/web/templates/email/registration_confirmation.text.eex:1 msgid "Nearly there!" msgstr "Vous y êtes presque !" -#, elixir-format -#: lib/web/templates/email/email_changed_old.html.eex:13 -#: lib/web/templates/email/email_changed_old.text.eex:1 +#: lib/web/templates/email/email_changed_old.html.eex:13 lib/web/templates/email/email_changed_old.text.eex:1 msgid "New email confirmation" msgstr "Confirmation de nouvel e-mail" -#, elixir-format #: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "Raisons du signalement" -#, elixir-format #: lib/web/templates/email/report.html.eex:39 msgid "Someone on %{instance} reported the following content for you to analyze:" msgstr "Une personne de %{instance} a signalé le contenu suivant :" -#, elixir-format -#: lib/web/templates/email/event_participation_rejected.html.eex:13 -#: lib/web/templates/email/event_participation_rejected.text.eex:1 +#: lib/web/templates/email/event_participation_rejected.html.eex:13 lib/web/templates/email/event_participation_rejected.text.eex:1 msgid "Sorry! You're not going." msgstr "Désolé ! Vous n'y allez pas." -#, elixir-format #: lib/web/templates/email/event_updated.html.eex:72 msgid "Start" msgstr "Début" -#, elixir-format #: lib/web/templates/email/event_updated.text.eex:18 msgid "Start %{begins_on}" msgstr "Début %{begins_on}" -#, elixir-format -#: lib/web/templates/email/event_updated.html.eex:38 -#: lib/web/templates/email/event_updated.text.eex:3 +#: lib/web/templates/email/event_updated.html.eex:38 lib/web/templates/email/event_updated.text.eex:3 msgid "There have been changes for %{title} so we'd thought we'd let you know." msgstr "Il y a eu des changements pour %{title} donc nous avons pensé que nous vous le ferions savoir." -#, elixir-format -#: lib/web/templates/email/event_updated.html.eex:54 -#: lib/web/templates/email/event_updated.text.eex:11 +#: lib/web/templates/email/event_updated.html.eex:54 lib/web/templates/email/event_updated.text.eex:11 msgid "This event has been cancelled by its organizers. Sorry!" msgstr "Cet événement a été annulé par ses organisateur·ices. Désolé !" -#, elixir-format -#: lib/web/templates/email/event_updated.html.eex:50 -#: lib/web/templates/email/event_updated.text.eex:7 +#: lib/web/templates/email/event_updated.html.eex:50 lib/web/templates/email/event_updated.text.eex:7 msgid "This event has been confirmed" msgstr "L'événement a été confirmé" -#, elixir-format -#: lib/web/templates/email/event_updated.html.eex:52 -#: lib/web/templates/email/event_updated.text.eex:9 +#: lib/web/templates/email/event_updated.html.eex:52 lib/web/templates/email/event_updated.text.eex:9 msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it." msgstr "Cet événement doit encore être confirmé : les organisateur·ices vous feront savoir si l'événement est confirmé." -#, elixir-format -#: lib/web/templates/email/event_participation_rejected.html.eex:45 -#: lib/web/templates/email/event_participation_rejected.text.eex:7 +#: lib/web/templates/email/event_participation_rejected.html.eex:45 lib/web/templates/email/event_participation_rejected.text.eex:7 msgid "Unfortunately, the organizers rejected your request." msgstr "Malheureusement, les organisateur⋅ices ont rejeté votre demande de participation." -#, elixir-format #: lib/web/templates/email/email_changed_new.html.eex:51 msgid "Verify your email address" msgstr "Vérifier l'adresse email" -#, elixir-format #: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "Voir le signalement" -#, elixir-format #: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "Voir le signalement :" -#, elixir-format -#: lib/web/templates/email/event_participation_approved.html.eex:58 -#: lib/web/templates/email/event_participation_confirmed.html.eex:58 +#: lib/web/templates/email/event_participation_approved.html.eex:58 lib/web/templates/email/event_participation_confirmed.html.eex:58 msgid "Visit event page" msgstr "Voir la page de l'événement" -#, elixir-format #: lib/web/templates/email/event_updated.html.eex:119 msgid "Visit the updated event page" msgstr "Voir la page de l'événement mis à jour" -#, elixir-format #: lib/web/templates/email/event_updated.text.eex:23 msgid "Visit the updated event page: %{link}" msgstr "Voir l'événement mis à jour sur : %{link}" -#, elixir-format -#: lib/web/templates/email/notification_each_week.html.eex:13 -#: lib/web/templates/email/notification_each_week.text.eex:1 +#: lib/web/templates/email/notification_each_week.html.eex:13 lib/web/templates/email/notification_each_week.text.eex:1 msgid "What's up this week?" msgstr "Quoi de neuf cette semaine ?" -#, elixir-format -#: lib/web/templates/email/on_day_notification.html.eex:13 -#: lib/web/templates/email/on_day_notification.text.eex:1 +#: lib/web/templates/email/on_day_notification.html.eex:13 lib/web/templates/email/on_day_notification.text.eex:1 msgid "What's up today?" msgstr "Quoi de neuf aujourd'hui ?" -#, elixir-format -#: lib/web/templates/email/event_participation_approved.html.eex:70 -#: lib/web/templates/email/event_participation_approved.text.eex:11 lib/web/templates/email/event_participation_confirmed.html.eex:70 -#: lib/web/templates/email/event_participation_confirmed.text.eex:6 +#: lib/web/templates/email/event_participation_approved.html.eex:70 lib/web/templates/email/event_participation_approved.text.eex:11 lib/web/templates/email/event_participation_confirmed.html.eex:70 lib/web/templates/email/event_participation_confirmed.text.eex:6 msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button." msgstr "Si vous souhaitez mettre à jour ou annuler votre participation, il vous suffit d'accéder à la page de l'événement par le lien ci-dessus et de cliquer sur le bouton Participer." -#, elixir-format -#: lib/web/templates/email/pending_participation_notification.html.eex:64 -#: lib/web/templates/email/pending_participation_notification.text.eex:8 +#: lib/web/templates/email/pending_participation_notification.html.eex:64 lib/web/templates/email/pending_participation_notification.text.eex:8 msgid "You are receiving this email because you chose to get notifications for pending attendance requests to your events. You can disable or change your notification settings in your user account settings under « Notifications »." msgstr "Vous recevez ce courriel parce que vous avez choisi de recevoir des notifications pour les demandes de participation en attente à vos événements. Vous pouvez désactiver ou modifier vos paramètres de notification dans les paramètres de votre compte utilisateur dans « Notifications »." -#, elixir-format -#: lib/web/templates/email/event_participation_rejected.html.eex:38 -#: lib/web/templates/email/event_participation_rejected.text.eex:5 +#: lib/web/templates/email/event_participation_rejected.html.eex:38 lib/web/templates/email/event_participation_rejected.text.eex:5 msgid "You issued a request to attend %{title}." msgstr "Vous avez effectué une demande de participation à %{title}." -#, elixir-format -#: lib/web/templates/email/event_participation_approved.text.eex:5 -#: lib/web/templates/email/event_participation_confirmed.text.eex:3 +#: lib/web/templates/email/event_participation_approved.text.eex:5 lib/web/templates/email/event_participation_confirmed.text.eex:3 msgid "You recently requested to attend %{title}." msgstr "Vous avez demandé à participer à l'événement %{title}." -#, elixir-format -#: lib/web/templates/email/event_participation_approved.html.eex:13 -#: lib/web/templates/email/event_participation_confirmed.html.eex:13 lib/web/templates/email/event_participation_confirmed.text.eex:1 +#: lib/web/templates/email/event_participation_approved.html.eex:13 lib/web/templates/email/event_participation_confirmed.html.eex:13 lib/web/templates/email/event_participation_confirmed.text.eex:1 msgid "You're going!" msgstr "Vous y allez !" -#, elixir-format -#: lib/web/templates/email/email_changed_new.html.eex:64 -#: lib/web/templates/email/email_changed_new.text.eex:5 +#: lib/web/templates/email/email_changed_new.html.eex:64 lib/web/templates/email/email_changed_new.text.eex:5 msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "Si vous n'êtes pas à l'origine de cette modification, merci d'ignorer ce message." -#, elixir-format #: lib/web/templates/email/email.html.eex:89 msgid "Please do not use it for real purposes." msgstr "Veuillez ne pas l'utiliser pour un cas réel." -#, elixir-format #: lib/web/templates/email/email.html.eex:91 msgid "Mobilizon is still under development, we will add new features along the updates, until the release of version 1 of the software in the fall of 2020." msgstr "Mobilizon est en cours de développement, nous y ajouterons de nouvelles fonctionnalités lors de mises à jour régulières, jusqu'à la publication de la version 1 du logiciel à l'automne 2020." -#, elixir-format -#: lib/web/templates/email/group_member_removal.html.eex:45 -#: lib/web/templates/email/group_member_removal.text.eex:5 +#: lib/web/templates/email/group_member_removal.html.eex:45 lib/web/templates/email/group_member_removal.text.eex:5 msgid "If you feel this is an error, you may contact the group's administrators so that they can add you back." msgstr "Si vous pensez qu'il s'agit d'une erreur, vous pouvez contacter les administrateurs du groupe afin qu'ils vous réintègrent." -#, elixir-format -#: lib/web/templates/email/group_member_removal.html.eex:13 -#: lib/web/templates/email/group_member_removal.text.eex:1 +#: lib/web/templates/email/group_member_removal.html.eex:13 lib/web/templates/email/group_member_removal.text.eex:1 msgid "So long, and thanks for the fish!" msgstr "Salut, et encore merci pour le poisson !" -#, elixir-format #: lib/web/email/group.ex:62 msgid "You have been removed from group %{group}" msgstr "Vous avez été enlevé du groupe %{group}" -#, elixir-format #: lib/web/templates/email/group_member_removal.text.eex:3 msgid "You have been removed from group %{group}. You will not be able to access this group's private content anymore." msgstr "Vous avez été enlevé du groupe %{group}. Vous ne serez plus en mesure d'accéder au contenu privé du groupe." -#, elixir-format #: lib/web/templates/email/group_invite.html.eex:38 msgid "%{inviter} just invited you to join their group %{link_start}%{group}%{link_end}" msgstr "%{inviter} vient de vous inviter à rejoindre son groupe %{link_start}%{group}%{link_end}" -#, elixir-format #: lib/web/templates/email/group_member_removal.html.eex:38 msgid "You have been removed from group %{link_start}%{group}%{link_end}. You will not be able to access this group's private content anymore." msgstr "Vous avez été enlevé du groupe %{link_start}%{group}%{link_end}. Vous ne serez plus en mesure d'accéder au contenu privé du groupe." -#, elixir-format -#: lib/web/templates/email/group_suspension.html.eex:54 -#: lib/web/templates/email/group_suspension.text.eex:7 +#: lib/web/templates/email/group_suspension.html.eex:54 lib/web/templates/email/group_suspension.text.eex:7 msgid "As this group was located on another instance, it will continue to work for other instances than this one." msgstr "Comme ce groupe était originaire d'une autre instance, il continuera à fonctionner pour d'autres instances que celle-ci." -#, elixir-format -#: lib/web/templates/email/group_suspension.html.eex:46 -#: lib/web/templates/email/group_suspension.text.eex:5 +#: lib/web/templates/email/group_suspension.html.eex:46 lib/web/templates/email/group_suspension.text.eex:5 msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." msgstr "Comme ce groupe était originaire de cette instance, toutes ses données ont été irrémédiablement détruites." -#, elixir-format -#: lib/web/templates/email/group_deletion.html.eex:38 -#: lib/web/templates/email/group_deletion.text.eex:3 +#: lib/web/templates/email/group_deletion.html.eex:38 lib/web/templates/email/group_deletion.text.eex:3 msgid "The administrator %{author} deleted group %{group}. All of the group's events, discussions, posts and todos have been deleted." msgstr "L'administrateur·ice %{author} a supprimé le groupe %{group}. Tous les événements, discussions, billets et todos du groupe ont été supprimés." -#, elixir-format -#: lib/web/templates/email/group_suspension.html.eex:13 -#: lib/web/templates/email/group_suspension.text.eex:1 +#: lib/web/templates/email/group_suspension.html.eex:13 lib/web/templates/email/group_suspension.text.eex:1 msgid "The group %{group} has been suspended on %{instance}!" msgstr "Le groupe %{group} a été suspendu sur %{instance} !" -#, elixir-format -#: lib/web/templates/email/group_deletion.html.eex:13 -#: lib/web/templates/email/group_deletion.text.eex:1 +#: lib/web/templates/email/group_deletion.html.eex:13 lib/web/templates/email/group_deletion.text.eex:1 msgid "The group %{group} was deleted on %{instance}!" msgstr "Le groupe %{group} a été supprimé sur %{instance} !" -#, elixir-format -#: lib/web/templates/email/group_suspension.html.eex:38 -#: lib/web/templates/email/group_suspension.text.eex:3 +#: lib/web/templates/email/group_suspension.html.eex:38 lib/web/templates/email/group_suspension.text.eex:3 msgid "Your instance's moderation team has decided to suspend %{group_name} (%{group_address}). You are no longer a member of this group." msgstr "L'équipe de modération de votre instance a décidé de suspendre %{group_name} (%{group_address}). Vous n'êtes désormais plus membre de ce groupe." -#, elixir-format #: lib/web/email/group.ex:135 msgid "The group %{group} has been deleted on %{instance}" msgstr "Le groupe %{group} a été supprimé sur %{instance}" -#, elixir-format #: lib/web/email/group.ex:96 msgid "The group %{group} has been suspended on %{instance}" msgstr "Le groupe %{group} a été suspendu sur %{instance}" -#, elixir-format #: lib/web/templates/api/terms.html.eex:24 msgctxt "terms" msgid "By accessing or using the Service, this means you agree to be bound by all the terms below. If these terms are in any way unclear, please let us know by contacting %{contact}." msgstr "Si vous accédez au Service ou utilisez le Service, cela signifie que vous acceptez d'être lié·e par toutes les Conditions ci-dessous. Si une condition n'a pas de sens pour vous, veuillez nous le faire savoir en contactant %{contact}." -#, elixir-format #: lib/web/templates/api/terms.html.eex:40 msgctxt "terms" msgid "For information about how we collect and use information about users of the Service, please check our privacy policy." msgstr "Pour savoir comment nous recueillons et utilisons les informations sur les utilisateur·ice·s du Service, veuillez consulter notre politique de confidentialité." -#, elixir-format #: lib/web/templates/api/terms.html.eex:36 msgctxt "terms" msgid "If you continue to use the Service after the revised Terms go into effect, you accept the revised Terms." msgstr "Si vous continuez à utiliser le Service après l'entrée en vigueur des Conditions révisées, vous acceptez les conditions révisées." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:78 msgctxt "terms" msgid "If you delete this information, you need to login again." msgstr "Si vous supprimez ces informations, vous devrez vous connecter de nouveau." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:80 msgctxt "terms" msgid "If you're not connected, we don't store any information on your device, unless you participate in an event anonymously. In this specific case we store the hash of an unique identifier for the event and participation status in your browser so that we may display participation status. Deleting this information will only stop displaying participation status in your browser." msgstr "Si vous n'êtes pas connecté·e, nous ne conserverons aucune information sur votre appareil, sauf si vous participez anonymement à un évènement. Dans ce cas spécifique nous conservons le hash d'un identifiant unique pour l'événement et les statuts de participation dans votre navigateur pour pouvoir les afficher. Supprimer ces informations aura pour seule conséquence que votre participation ne sera plus affichée dans votre navigateur." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:87 msgctxt "terms" msgid "Note: This information is stored in your localStorage and not your cookies." msgstr "Attention : Ces informations sont conservées dans votre stockage local et non vos cookies." -#, elixir-format #: lib/web/templates/api/terms.html.eex:71 msgctxt "terms" msgid "Our responsibility" msgstr "Notre responsabilité" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:61 msgctxt "terms" msgid "Retain server logs containing the IP address of all requests to this server, insofar as such logs are kept, no more than 90 days." msgstr "Conserver les journaux du serveur contenant l'adresse IP de toutes les demandes adressées à ce serveur, dans la mesure où ces journaux sont conservés, pas plus de 90 jours." -#, elixir-format -#: lib/web/templates/api/privacy.html.eex:3 -#: lib/web/templates/api/terms.html.eex:15 +#: lib/web/templates/api/privacy.html.eex:3 lib/web/templates/api/terms.html.eex:15 msgctxt "terms" msgid "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary to help you understand them better." msgstr "Certains termes, techniques ou non, utilisés dans le texte ci-dessous peuvent recouvrir des concepts difficiles à appréhender. Nous vous proposons un glossaire qui pourra vous aider à mieux les comprendre." -#, elixir-format #: lib/web/templates/api/terms.html.eex:45 msgctxt "terms" msgid "We are not liable for any loss you may incur as a result of someone else using your email or password, either with or without your knowledge." msgstr "Nous ne sommes pas responsables des pertes que vous pourriez subir si quelqu'un d'autre utilise votre adresse électronique ou votre mot de passe, à votre insu ou non." -#, elixir-format #: lib/web/templates/api/terms.html.eex:50 msgctxt "terms" msgid "We cannot be held responsible should a programming or administrative error make your content visible to a larger audience than intended. Aside from our limited right to your content, you retain all of your rights to the content you post, link and otherwise make available on or through the Service." msgstr "Nous ne pouvons être tenus responsables si une erreur de programmation ou d'administration rend votre contenu visible à un public plus large que celui que vous aviez prévu. Outre notre droit limité sur votre contenu, vous conservez tous vos droits sur le contenu que vous publiez, mettez en lien et rendez disponible sur ou via le Service." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:10 msgctxt "terms" msgid "We collect information from you when you register on this instance and gather data when you participate in the platform by reading, writing, and interacting with content shared here. If you register on this instance, you will be asked to enter an email address, a password (hashed) and at least an username. Your email address will be verified by an email containing a unique link. Once the link is activated, we know you control that email address. You may also enter additional profile information such as a display name and biography, and upload a profile picture and header image. The username, display name, biography, profile picture and header image are always listed publicly. You may however visit this instance without registering." @@ -1227,94 +969,112 @@ msgstr "" "Nous collectons des informations sur vous lorsque vous vous inscrivez sur cette instance et récupérons des données lorsque vous utilisez la plateforme en lisant, écrivant, et en interagissant avec les contenus partagés. Si vous vous inscrivez sur cette instance, nous vous demanderons une adresse courriel, un mot de passe (haché) et au moins un nom d'utilisateur.ice. Votre adresse courriel sera vérifiée par l'envoi d'un courriel de confirmation contenant un lien unique. Si ce lien est activé, nous saurons que vous contrôlez cette adresse courriel. Vous pouvez également entrer des informations supplémentaires au profil, comme un pseudonyme, une biographie, une image de profil et une image d'en-tête. Le nom d'utilisateur, le pseudonyme affiché, la " "biographie, les images de profil et d'en-tête sont toujours publiques. Vous pouvez toutefois utiliser ce serveur sans vous inscrire." -#, elixir-format #: lib/web/templates/api/terms.html.eex:30 msgctxt "terms" msgid "We reserve the right to modify these Terms at any time. For instance, we may need to change these Terms if we come out with a new feature." msgstr "Nous nous réservons le droit de modifier ces Conditions à tout moment. Par exemple, nous pouvons être amenés à modifier ces Conditions si nous proposons une nouvelle fonctionnalité." -#, elixir-format #: lib/web/templates/api/terms.html.eex:20 msgctxt "terms" msgid "When we say “we”, “our”, or “us” in this document, we are referring to the owners, operators and administrators of this Mobilizon instance. The Mobilizon software is provided by the team of Mobilizon contributors, supported by Framasoft, a French not-for-profit organization advocating for Free/Libre Software. Unless explicitly stated, this Mobilizon instance is an independent service using Mobilizon's source code. You may find more information about this instance on the \"About this instance\" page." msgstr "Lorsque nous disons « nous », « notre » ou « nos » dans ce document, nous faisons référence aux propriétaires, opérateur·ices et administrateur·ices de cette instance de Mobilizon. Le logiciel Mobilizon est fourni par l'équipe des contributeur·ices de Mobilizon, soutenue par Framasoft, une organisation française d'éducation populaire à but non lucratif qui défend les logiciels libres. Sauf mention explicite, cette instance de Mobilizon est un service indépendant utilisant le code source de Mobilizon. Vous pouvez trouver plus d'informations sur cette instance sur la page « A propos de cette instance »." -#, elixir-format #: lib/web/templates/api/terms.html.eex:43 msgctxt "terms" msgid "When you create an account you agree to maintain the security and confidentiality of your password and accept all risks of unauthorized access to your account data and any other information you provide to %{instance_name}." msgstr "Lorsque vous créez un compte, vous acceptez également de maintenir la sécurité et la confidentialité de votre mot de passe et vous acceptez tous les risques d'accès non autorisé aux données de votre compte et à toute autre information que vous fournissez à %{instance_name}." -#, elixir-format #: lib/web/templates/api/terms.html.eex:49 msgctxt "terms" msgid "When you post, link or otherwise make available content to the Service, you grant us the right and license to display and distribute your content on or through the Service (including via applications). We may format your content for display throughout the Service, but we will not edit or revise the substance of your content itself. The displaying and distribution of your content happens only according to the visibility rules you have set for the content. We will not modify the visibility of the content you have set." msgstr "Lorsque vous publiez, liez ou mettez à disposition un contenu sur le Service, vous nous accordez le droit et la licence d'afficher et de distribuer votre contenu sur ou via le Service (y compris via des applications). Nous pouvons formater votre contenu pour l'afficher dans le Service, mais nous ne modifierons pas ou ne réviserons pas la substance de votre contenu lui-même. L'affichage et la distribution de votre contenu se fait strictement selon les règles de visibilité que vous avez définies pour le contenu. Nous ne modifierons pas la visibilité du contenu que vous avez défini." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:19 msgctxt "terms" msgid "Your events and comments are delivered to other instances that follow your own, meaning they are delivered to different instances and copies are stored there. When you delete events or comments, this is likewise delivered to these other instances. All interactions related to event features - such as joining an event - or group features - such as managing resources - are federated as well. Please keep in mind that the operators of the instance and any receiving instances may view such messages and information, and that recipients may screenshot, copy or otherwise re-share them." msgstr "Vos évènements et commentaires sont transmis aux instances qui suivent la vôtre, ce qui signifie que d'autres instances posséderont des copies de ces contenus. Lorsque vous supprimez un évènement ou un commentaire, ceci est transmis de la même façon aux autres instances. Toutes les interactions liées aux fonctionnalités des événements - comme rejoindre un événement - ou bien aux fonctionnalités de groupes - comme gérer ses ressources - sont également fédérées. Veuillez noter que les administrateur·ices de cette instance et de toutes les instances fédérées peuvent voir ces messages, et que les destinataires peuvent les copier, en faire des captures d'écran et les repartager de différentes façons." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:99 msgctxt "terms" msgid "Your content may be downloaded by other instances in the network. Your public events and comments are delivered to the instances following your own instance. Content created through a group is forwarded to all the instances of all the members of the group, insofar as these members reside on a different instance than this one." msgstr "Votre contenu peut être téléchargé par d'autres instances du réseau. Vos événements publics et commentaires sont transmis aux instances abonnées à votre instance. Le contenu créé à travers un groupe est transmis à toutes les instances de tous les membres du groupe, si celleux-ci sont inscrit·e·s sur une autre instance que la vôtre." -#, elixir-format #: lib/web/templates/email/event_participation_confirmed.text.eex:4 msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "Vous avez confirmé votre participation. Mettez à jour votre agenda, car vous êtes maintenant sur la liste des invités !" -#, elixir-format -#: lib/web/templates/email/event_participation_approved.html.eex:38 -#: lib/web/templates/email/event_participation_confirmed.html.eex:38 +#: lib/web/templates/email/event_participation_approved.html.eex:38 lib/web/templates/email/event_participation_confirmed.html.eex:38 msgid "You recently requested to attend %{title}." msgstr "Vous avez demandé à participer à l'événement %{title}." -#, elixir-format #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "Votre participation à l'événement %{title} a été approuvée" -#, elixir-format #: lib/web/templates/email/report.html.eex:41 msgid "%{reporter} reported the following content." msgstr "%{reporter} a signalé le contenu suivant." -#, elixir-format #: lib/web/templates/email/report.text.eex:5 msgid "Group %{group} was reported" msgstr "Le groupe %{group} a été signalé" -#, elixir-format #: lib/web/templates/email/report.html.eex:51 msgid "Group reported" msgstr "Groupe signalé" -#, elixir-format #: lib/web/templates/email/report.text.eex:7 msgid "Profile %{profile} was reported" msgstr "Le profil %{profile} a été signalé" -#, elixir-format #: lib/web/templates/email/report.html.eex:56 msgid "Profile reported" msgstr "Profil signalé" -#, elixir-format #: lib/web/templates/email/event_participation_confirmed.html.eex:45 msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "Vous avez maintenant confirmé votre participation. Mettez à jour votre agenda, car vous êtes maintenant sur la liste des invités !" -#, elixir-format #: lib/mobilizon/posts/post.ex:91 msgid "A text is required for the post" msgstr "Un texte est requis pour le billet" -#, elixir-format #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "Un titre est requis pour le billet" + +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "%{name} (%{domain}) vient de demander à suivre votre instance." + +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "%{name} demande à suivre votre instance" + +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "%{name} (%{domain}) vient de demander à suivre votre instance. Si vous acceptez, leur instance recevra tous les événements publics de votre instance." + +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "Si vous acceptez, leur instance recevra tous les événements publics de votre instance." + +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "L'instance %{name} (%{domain}) demande à suivre votre instance" + +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "Voir les paramètres de fédération" + +#: lib/web/templates/email/instance_follow.html.eex:52 lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "Pour accepter cette invitation, rendez-vous dans vos groupes." + +#: lib/web/templates/email/instance_follow.html.eex:13 lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "Voulez-vous vous connecter ?" + +#: lib/web/templates/email/instance_follow.html.eex:45 lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "Note : le fait que %{name} (%{domain}) vous suive n'implique pas nécessairement que vous suivez cette instance, mais vous pouvez demander à les suivre également." diff --git a/priv/gettext/fr/LC_MESSAGES/errors.po b/priv/gettext/fr/LC_MESSAGES/errors.po index c9cf6995e..2f073c3eb 100644 --- a/priv/gettext/fr/LC_MESSAGES/errors.po +++ b/priv/gettext/fr/LC_MESSAGES/errors.po @@ -164,7 +164,7 @@ msgid "No user with this email was found" msgstr "Aucun·e utilisateur·ice avec cette adresse e-mail n'a été trouvé·e" #, elixir-format -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 @@ -368,7 +368,7 @@ msgid "Cannot remove the last identity of a user" msgstr "Impossible de supprimer le dernier profil d'un·e utilisateur·ice" #, elixir-format -#: lib/graphql/resolvers/comment.ex:95 +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "Le commentaire est déjà supprimé" @@ -582,7 +582,7 @@ msgid "You are not a moderator or admin for this group" msgstr "Vous n'êtes pas administrateur·ice ou modérateur·ice de ce groupe" #, elixir-format -#: lib/graphql/resolvers/comment.ex:41 +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "Vous n'êtes pas autorisé·e à créer un commentaire si non connecté·e" @@ -592,7 +592,7 @@ msgid "You are not allowed to create a feed token if not connected" msgstr "Vous n'êtes pas autorisé·e à créer un jeton de flux si non connecté·e" #, elixir-format -#: lib/graphql/resolvers/comment.ex:103 +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "Vous n'êtes pas autorisé·e à supprimer un commentaire si non connecté·e" @@ -602,7 +602,7 @@ msgid "You are not allowed to delete a feed token if not connected" msgstr "Vous n'êtes pas autorisé·e à supprimer un jeton de flux si non connecté·e" #, elixir-format -#: lib/graphql/resolvers/comment.ex:63 +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "Vous n'êtes pas autorisé·e à mettre à jour un commentaire si non connecté·e" @@ -620,7 +620,7 @@ msgstr "" "administrateur·ice" #, elixir-format -#: lib/graphql/resolvers/comment.ex:91 +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr "Vous ne pouvez pas supprimer ce commentaire" diff --git a/priv/gettext/it/LC_MESSAGES/default.po b/priv/gettext/it/LC_MESSAGES/default.po index 37d6146f3..b00c8985d 100644 --- a/priv/gettext/it/LC_MESSAGES/default.po +++ b/priv/gettext/it/LC_MESSAGES/default.po @@ -859,7 +859,7 @@ msgstr "" #, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" @@ -1313,3 +1313,51 @@ msgstr "" #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:52 +#: lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:13 +#: lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:45 +#: lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "" diff --git a/priv/gettext/it/LC_MESSAGES/errors.po b/priv/gettext/it/LC_MESSAGES/errors.po index 001a5a77b..028c93504 100644 --- a/priv/gettext/it/LC_MESSAGES/errors.po +++ b/priv/gettext/it/LC_MESSAGES/errors.po @@ -162,7 +162,7 @@ msgid "No user with this email was found" msgstr "Nessun utente con questa email" #, elixir-format -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 @@ -364,7 +364,7 @@ msgid "Cannot remove the last identity of a user" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:95 +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "Commento già cancellato" @@ -578,7 +578,7 @@ msgid "You are not a moderator or admin for this group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:41 +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "" @@ -588,7 +588,7 @@ msgid "You are not allowed to create a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:103 +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "" @@ -598,7 +598,7 @@ msgid "You are not allowed to delete a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:63 +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "" @@ -614,7 +614,7 @@ msgid "You can't set yourself to a lower member role for this group because you msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:91 +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr "" diff --git a/priv/gettext/ja/LC_MESSAGES/default.po b/priv/gettext/ja/LC_MESSAGES/default.po index 75c40cec8..5fd86b4ce 100644 --- a/priv/gettext/ja/LC_MESSAGES/default.po +++ b/priv/gettext/ja/LC_MESSAGES/default.po @@ -850,7 +850,7 @@ msgstr "" #, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" @@ -1303,3 +1303,51 @@ msgstr "" #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:52 +#: lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:13 +#: lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:45 +#: lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "" diff --git a/priv/gettext/ja/LC_MESSAGES/errors.po b/priv/gettext/ja/LC_MESSAGES/errors.po index 67ec8cfac..7d7ccd715 100644 --- a/priv/gettext/ja/LC_MESSAGES/errors.po +++ b/priv/gettext/ja/LC_MESSAGES/errors.po @@ -149,7 +149,7 @@ msgid "No user with this email was found" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 @@ -351,7 +351,7 @@ msgid "Cannot remove the last identity of a user" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:95 +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "" @@ -565,7 +565,7 @@ msgid "You are not a moderator or admin for this group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:41 +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "" @@ -575,7 +575,7 @@ msgid "You are not allowed to create a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:103 +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "" @@ -585,7 +585,7 @@ msgid "You are not allowed to delete a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:63 +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "" @@ -601,7 +601,7 @@ msgid "You can't set yourself to a lower member role for this group because you msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:91 +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr "" diff --git a/priv/gettext/nl/LC_MESSAGES/default.po b/priv/gettext/nl/LC_MESSAGES/default.po index c518dfdb3..489f285ff 100644 --- a/priv/gettext/nl/LC_MESSAGES/default.po +++ b/priv/gettext/nl/LC_MESSAGES/default.po @@ -875,7 +875,7 @@ msgstr "" #, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" @@ -1338,3 +1338,51 @@ msgstr "" #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:52 +#: lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:13 +#: lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:45 +#: lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "" diff --git a/priv/gettext/nl/LC_MESSAGES/errors.po b/priv/gettext/nl/LC_MESSAGES/errors.po index 04e150fbb..c42d21982 100644 --- a/priv/gettext/nl/LC_MESSAGES/errors.po +++ b/priv/gettext/nl/LC_MESSAGES/errors.po @@ -155,7 +155,7 @@ msgid "No user with this email was found" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 @@ -357,7 +357,7 @@ msgid "Cannot remove the last identity of a user" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:95 +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "" @@ -571,7 +571,7 @@ msgid "You are not a moderator or admin for this group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:41 +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "" @@ -581,7 +581,7 @@ msgid "You are not allowed to create a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:103 +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "" @@ -591,7 +591,7 @@ msgid "You are not allowed to delete a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:63 +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "" @@ -607,7 +607,7 @@ msgid "You can't set yourself to a lower member role for this group because you msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:91 +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr "" diff --git a/priv/gettext/oc/LC_MESSAGES/default.po b/priv/gettext/oc/LC_MESSAGES/default.po index ad69baa6c..f5828a065 100644 --- a/priv/gettext/oc/LC_MESSAGES/default.po +++ b/priv/gettext/oc/LC_MESSAGES/default.po @@ -874,7 +874,7 @@ msgstr "" #, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" @@ -1340,3 +1340,51 @@ msgstr "" #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:52 +#: lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "Per dire d’acceptar aquesta invitacion, anatz als vòstres grops." + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:13 +#: lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:45 +#: lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "" diff --git a/priv/gettext/oc/LC_MESSAGES/errors.po b/priv/gettext/oc/LC_MESSAGES/errors.po index 8f105f158..5bc4cd357 100644 --- a/priv/gettext/oc/LC_MESSAGES/errors.po +++ b/priv/gettext/oc/LC_MESSAGES/errors.po @@ -162,7 +162,7 @@ msgid "No user with this email was found" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 @@ -364,7 +364,7 @@ msgid "Cannot remove the last identity of a user" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:95 +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "" @@ -578,7 +578,7 @@ msgid "You are not a moderator or admin for this group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:41 +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "" @@ -588,7 +588,7 @@ msgid "You are not allowed to create a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:103 +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "" @@ -598,7 +598,7 @@ msgid "You are not allowed to delete a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:63 +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "" @@ -614,7 +614,7 @@ msgid "You can't set yourself to a lower member role for this group because you msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:91 +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr "" diff --git a/priv/gettext/pl/LC_MESSAGES/default.po b/priv/gettext/pl/LC_MESSAGES/default.po index e5d50fc71..fc4d15165 100644 --- a/priv/gettext/pl/LC_MESSAGES/default.po +++ b/priv/gettext/pl/LC_MESSAGES/default.po @@ -888,7 +888,7 @@ msgstr "" #, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" @@ -1351,3 +1351,51 @@ msgstr "" #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:52 +#: lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:13 +#: lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:45 +#: lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "" diff --git a/priv/gettext/pl/LC_MESSAGES/errors.po b/priv/gettext/pl/LC_MESSAGES/errors.po index d28249220..5a78a32d7 100644 --- a/priv/gettext/pl/LC_MESSAGES/errors.po +++ b/priv/gettext/pl/LC_MESSAGES/errors.po @@ -169,7 +169,7 @@ msgid "No user with this email was found" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 @@ -371,7 +371,7 @@ msgid "Cannot remove the last identity of a user" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:95 +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "" @@ -585,7 +585,7 @@ msgid "You are not a moderator or admin for this group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:41 +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "" @@ -595,7 +595,7 @@ msgid "You are not allowed to create a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:103 +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "" @@ -605,7 +605,7 @@ msgid "You are not allowed to delete a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:63 +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "" @@ -621,7 +621,7 @@ msgid "You can't set yourself to a lower member role for this group because you msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:91 +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr "" diff --git a/priv/gettext/pt/LC_MESSAGES/default.po b/priv/gettext/pt/LC_MESSAGES/default.po index 4df38f6b1..040a3caac 100644 --- a/priv/gettext/pt/LC_MESSAGES/default.po +++ b/priv/gettext/pt/LC_MESSAGES/default.po @@ -855,7 +855,7 @@ msgstr "" #, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" @@ -1308,3 +1308,51 @@ msgstr "" #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:52 +#: lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:13 +#: lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:45 +#: lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "" diff --git a/priv/gettext/pt/LC_MESSAGES/errors.po b/priv/gettext/pt/LC_MESSAGES/errors.po index 2cc601c83..c56532cb7 100644 --- a/priv/gettext/pt/LC_MESSAGES/errors.po +++ b/priv/gettext/pt/LC_MESSAGES/errors.po @@ -155,7 +155,7 @@ msgid "No user with this email was found" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 @@ -357,7 +357,7 @@ msgid "Cannot remove the last identity of a user" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:95 +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "" @@ -571,7 +571,7 @@ msgid "You are not a moderator or admin for this group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:41 +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "" @@ -581,7 +581,7 @@ msgid "You are not allowed to create a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:103 +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "" @@ -591,7 +591,7 @@ msgid "You are not allowed to delete a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:63 +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "" @@ -607,7 +607,7 @@ msgid "You can't set yourself to a lower member role for this group because you msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:91 +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr "" diff --git a/priv/gettext/pt_BR/LC_MESSAGES/default.po b/priv/gettext/pt_BR/LC_MESSAGES/default.po index 0655a95ad..05d4c4a6c 100644 --- a/priv/gettext/pt_BR/LC_MESSAGES/default.po +++ b/priv/gettext/pt_BR/LC_MESSAGES/default.po @@ -933,7 +933,7 @@ msgstr "" #, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" @@ -1430,3 +1430,51 @@ msgstr "" #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:52 +#: lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:13 +#: lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:45 +#: lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "" diff --git a/priv/gettext/pt_BR/LC_MESSAGES/errors.po b/priv/gettext/pt_BR/LC_MESSAGES/errors.po index 192d2f748..8fa54b2c4 100644 --- a/priv/gettext/pt_BR/LC_MESSAGES/errors.po +++ b/priv/gettext/pt_BR/LC_MESSAGES/errors.po @@ -155,7 +155,7 @@ msgid "No user with this email was found" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 @@ -357,7 +357,7 @@ msgid "Cannot remove the last identity of a user" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:95 +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "" @@ -571,7 +571,7 @@ msgid "You are not a moderator or admin for this group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:41 +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "" @@ -581,7 +581,7 @@ msgid "You are not allowed to create a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:103 +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "" @@ -591,7 +591,7 @@ msgid "You are not allowed to delete a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:63 +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "" @@ -607,7 +607,7 @@ msgid "You can't set yourself to a lower member role for this group because you msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:91 +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr "" diff --git a/priv/gettext/ru/LC_MESSAGES/default.po b/priv/gettext/ru/LC_MESSAGES/default.po index 3f1f44cbe..a065e1713 100644 --- a/priv/gettext/ru/LC_MESSAGES/default.po +++ b/priv/gettext/ru/LC_MESSAGES/default.po @@ -871,7 +871,7 @@ msgstr "" #, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" @@ -1326,3 +1326,51 @@ msgstr "" #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:52 +#: lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:13 +#: lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:45 +#: lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "" diff --git a/priv/gettext/ru/LC_MESSAGES/errors.po b/priv/gettext/ru/LC_MESSAGES/errors.po index cefb4ed69..5c0f2f4f0 100644 --- a/priv/gettext/ru/LC_MESSAGES/errors.po +++ b/priv/gettext/ru/LC_MESSAGES/errors.po @@ -161,7 +161,7 @@ msgid "No user with this email was found" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 @@ -363,7 +363,7 @@ msgid "Cannot remove the last identity of a user" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:95 +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "" @@ -577,7 +577,7 @@ msgid "You are not a moderator or admin for this group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:41 +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "" @@ -587,7 +587,7 @@ msgid "You are not allowed to create a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:103 +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "" @@ -597,7 +597,7 @@ msgid "You are not allowed to delete a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:63 +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "" @@ -613,7 +613,7 @@ msgid "You can't set yourself to a lower member role for this group because you msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:91 +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr "" diff --git a/priv/gettext/sv/LC_MESSAGES/default.po b/priv/gettext/sv/LC_MESSAGES/default.po index 3891b4b4d..7ae772d22 100644 --- a/priv/gettext/sv/LC_MESSAGES/default.po +++ b/priv/gettext/sv/LC_MESSAGES/default.po @@ -874,7 +874,7 @@ msgstr "" #, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:65 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" @@ -1331,3 +1331,51 @@ msgstr "" #: lib/mobilizon/posts/post.ex:90 msgid "A title is required for the post" msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 +msgid "%{name} (%{domain}) just requested to follow your instance." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:54 +msgid "%{name} requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 +msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 +msgid "If you accept, this instance will receive all of your public events." +msgstr "" + +#, elixir-format +#: lib/web/email/follow.ex:48 +msgid "Instance %{name} (%{domain}) requests to follow your instance" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 +msgid "See the federation settings" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:52 +#: lib/web/templates/email/instance_follow.text.eex:6 +msgid "To accept this invitation, head over to the instance's admin settings." +msgstr "Gå till dina grupper för att acceptera den här inbjudan." + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:13 +#: lib/web/templates/email/instance_follow.text.eex:1 +msgid "Want to connect?" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:45 +#: lib/web/templates/email/instance_follow.text.eex:5 +msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." +msgstr "" diff --git a/priv/gettext/sv/LC_MESSAGES/errors.po b/priv/gettext/sv/LC_MESSAGES/errors.po index 1e4389495..c25dab185 100644 --- a/priv/gettext/sv/LC_MESSAGES/errors.po +++ b/priv/gettext/sv/LC_MESSAGES/errors.po @@ -162,7 +162,7 @@ msgid "No user with this email was found" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:36 lib/graphql/resolvers/comment.ex:98 +#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/event.ex:281 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:243 #: lib/graphql/resolvers/member.ex:77 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 @@ -364,7 +364,7 @@ msgid "Cannot remove the last identity of a user" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:95 +#: lib/graphql/resolvers/comment.ex:109 msgid "Comment is already deleted" msgstr "" @@ -578,7 +578,7 @@ msgid "You are not a moderator or admin for this group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:41 +#: lib/graphql/resolvers/comment.ex:55 msgid "You are not allowed to create a comment if not connected" msgstr "" @@ -588,7 +588,7 @@ msgid "You are not allowed to create a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:103 +#: lib/graphql/resolvers/comment.ex:117 msgid "You are not allowed to delete a comment if not connected" msgstr "" @@ -598,7 +598,7 @@ msgid "You are not allowed to delete a feed token if not connected" msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:63 +#: lib/graphql/resolvers/comment.ex:77 msgid "You are not allowed to update a comment if not connected" msgstr "" @@ -614,7 +614,7 @@ msgid "You can't set yourself to a lower member role for this group because you msgstr "" #, elixir-format -#: lib/graphql/resolvers/comment.ex:91 +#: lib/graphql/resolvers/comment.ex:105 msgid "You cannot delete this comment" msgstr ""