diff --git a/js/package.json b/js/package.json index a15e4d4a8..7b1050684 100644 --- a/js/package.json +++ b/js/package.json @@ -41,6 +41,7 @@ "@tiptap/extension-mention": "^2.0.0-beta.42", "@tiptap/extension-ordered-list": "^2.0.0-beta.24", "@tiptap/extension-paragraph": "^2.0.0-beta.22", + "@tiptap/extension-placeholder": "^2.0.0-beta.199", "@tiptap/extension-strike": "^2.0.0-beta.26", "@tiptap/extension-text": "^2.0.0-beta.15", "@tiptap/extension-underline": "^2.0.0-beta.7", diff --git a/js/src/components/Account/ActorCard.vue b/js/src/components/Account/ActorCard.vue index 8ca1d5152..7d93e6fab 100644 --- a/js/src/components/Account/ActorCard.vue +++ b/js/src/components/Account/ActorCard.vue @@ -6,7 +6,7 @@

{{ t("Comment text can't be empty") }} diff --git a/js/src/components/Comment/EventComment.vue b/js/src/components/Comment/EventComment.vue index d23de5153..48e7fcf36 100644 --- a/js/src/components/Comment/EventComment.vue +++ b/js/src/components/Comment/EventComment.vue @@ -155,6 +155,7 @@ :aria-label="t('Comment body')" class="flex-1" @submit="replyToComment" + :placeholder="t('Write a new reply')" /> - diff --git a/js/src/views/Group/GroupMembers.vue b/js/src/views/Group/GroupMembers.vue index ba1eec973..7308ede27 100644 --- a/js/src/views/Group/GroupMembers.vue +++ b/js/src/views/Group/GroupMembers.vue @@ -112,9 +112,9 @@ v-slot="props" >

-
+

- {{ $t("Edit post") }} + {{ t("Edit post") }}

- {{ $t("Add a new post") }} + {{ t("Add a new post") }}

-

{{ $t("General information") }}

+

{{ t("General information") }}

-

{{ $t("Who can view this post") }}

+

{{ t("Who can view this post") }}

{{ - $t( + t( "When the post is private, you'll need to share the link around." ) }} @@ -58,7 +59,7 @@ v-model="editablePost.visibility" name="postVisibility" :native-value="PostVisibility.PUBLIC" - >{{ $t("Visible everywhere on the web") }}{{ t("Visible everywhere on the web") }}
@@ -66,7 +67,7 @@ v-model="editablePost.visibility" name="postVisibility" :native-value="PostVisibility.UNLISTED" - >{{ $t("Only accessible through link") }}{{ t("Only accessible through link") }}
@@ -74,7 +75,7 @@ v-model="editablePost.visibility" name="postVisibility" :native-value="PostVisibility.PRIVATE" - >{{ $t("Only accessible to members of the group") }}{{ t("Only accessible to members of the group") }}
@@ -84,14 +85,14 @@ @@ -121,7 +122,7 @@ >
- {{ $t("Only group moderators can create, edit and delete posts.") }} + {{ t("Only group moderators can create, edit and delete posts.") }}
diff --git a/js/yarn.lock b/js/yarn.lock index ea0d8bb9a..756b1807f 100644 --- a/js/yarn.lock +++ b/js/yarn.lock @@ -1585,6 +1585,15 @@ resolved "https://registry.yarnpkg.com/@tiptap/extension-paragraph/-/extension-paragraph-2.0.0-beta.199.tgz#34213e6594a1183a77bb33ced49502bafb0a3d1c" integrity sha512-+BoMCaxlsHqw065zTUNd+ywkvFJzNKbTY461/AlKX2dgHeaO8doXHDQK+9icOpibQvrKaMhOJmuBTgGlJlUUgw== +"@tiptap/extension-placeholder@^2.0.0-beta.199": + version "2.0.0-beta.199" + resolved "https://registry.yarnpkg.com/@tiptap/extension-placeholder/-/extension-placeholder-2.0.0-beta.199.tgz#0208c42f8b92a88e66b726353d07b652f09fd823" + integrity sha512-Tdq0r9XQ6hcu4ASvw2Xko6h8uS/xONmMmOFiTkK/54REB3RRQpkdCtXrhFn/T4DunJVBf6FUOLTjYN3SONhuew== + dependencies: + prosemirror-model "^1.18.1" + prosemirror-state "^1.4.1" + prosemirror-view "^1.28.2" + "@tiptap/extension-strike@^2.0.0-beta.26": version "2.0.0-beta.199" resolved "https://registry.yarnpkg.com/@tiptap/extension-strike/-/extension-strike-2.0.0-beta.199.tgz#5fc6e067728009d92027e58a042f18449f2fa264" diff --git a/lib/mobilizon/actors/actors.ex b/lib/mobilizon/actors/actors.ex index 4f3d4d9f6..ca15e27af 100644 --- a/lib/mobilizon/actors/actors.ex +++ b/lib/mobilizon/actors/actors.ex @@ -246,7 +246,14 @@ defmodule Mobilizon.Actors do Updates an actor. """ @spec update_actor(Actor.t(), map) :: {:ok, Actor.t()} | {:error, Ecto.Changeset.t()} - def update_actor(%Actor{} = actor, attrs) do + def update_actor(%Actor{preferred_username: preferred_username, domain: domain} = actor, attrs) do + if is_nil(domain) and preferred_username == "relay" do + Logger.error("Trying to update local relay actor", + attrs: attrs, + trace: Process.info(self(), :current_stacktrace) + ) + end + actor |> Repo.preload(@associations_to_preload) |> Actor.update_changeset(attrs) diff --git a/lib/service/metadata/actor.ex b/lib/service/metadata/actor.ex index 90046c361..e4174c45b 100644 --- a/lib/service/metadata/actor.ex +++ b/lib/service/metadata/actor.ex @@ -5,7 +5,10 @@ defimpl Mobilizon.Service.Metadata, for: Mobilizon.Actors.Actor do alias Mobilizon.Web.Endpoint alias Mobilizon.Web.JsonLD.ObjectView alias Mobilizon.Web.Router.Helpers, as: Routes - import Mobilizon.Service.Metadata.Utils, only: [process_description: 2, default_description: 1] + + import Mobilizon.Service.Metadata.Utils, + only: [process_description: 2, default_description: 1, escape_text: 1] + import Mobilizon.Web.Gettext def build_tags(_actor, _locale \\ "en") @@ -19,7 +22,7 @@ defimpl Mobilizon.Service.Metadata, for: Mobilizon.Actors.Actor do end) [ - Tag.tag(:meta, property: "og:title", content: Actor.display_name_and_username(group)), + Tag.tag(:meta, property: "og:title", content: actor_display_name_escaped(group)), Tag.tag(:meta, property: "og:url", content: @@ -34,7 +37,7 @@ defimpl Mobilizon.Service.Metadata, for: Mobilizon.Actors.Actor do Tag.tag(:meta, property: "og:type", content: "profile"), Tag.tag(:meta, property: "profile:username", - content: Actor.preferred_username_and_domain(group) + content: group |> Actor.preferred_username_and_domain() |> escape_text() ), Tag.tag(:meta, property: "twitter:card", content: "summary"), Tag.tag(:meta, property: "twitter:site", content: "@joinmobilizon") @@ -67,7 +70,7 @@ defimpl Mobilizon.Service.Metadata, for: Mobilizon.Actors.Actor do %{ "@type" => "ListItem", "position" => 1, - "name" => Actor.display_name(group) + "name" => actor_display_name_escaped(group) } ] } @@ -87,16 +90,14 @@ defimpl Mobilizon.Service.Metadata, for: Mobilizon.Actors.Actor do Tag.tag(:link, rel: "alternate", type: "application/atom+xml", - title: - gettext("%{name}'s feed", name: group.name || group.preferred_username) |> HTML.raw(), + title: gettext("%{name}'s feed", name: actor_display_name_escaped(group)) |> HTML.raw(), href: Routes.feed_url(Endpoint, :actor, Actor.preferred_username_and_domain(group), :atom) ), Tag.tag(:link, rel: "alternate", type: "text/calendar", - title: - gettext("%{name}'s feed", name: group.name || group.preferred_username) |> HTML.raw(), + title: gettext("%{name}'s feed", name: actor_display_name_escaped(group)) |> HTML.raw(), href: Routes.feed_url( Endpoint, @@ -131,4 +132,10 @@ defimpl Mobilizon.Service.Metadata, for: Mobilizon.Actors.Actor do |> ObjectView.render(%{group: group}) |> Jason.encode!() end + + defp actor_display_name_escaped(actor) do + actor + |> Actor.display_name() + |> escape_text() + end end diff --git a/lib/service/metadata/comment.ex b/lib/service/metadata/comment.ex index d36aebc07..dcdcc0409 100644 --- a/lib/service/metadata/comment.ex +++ b/lib/service/metadata/comment.ex @@ -1,11 +1,13 @@ defimpl Mobilizon.Service.Metadata, for: Mobilizon.Discussions.Comment do alias Phoenix.HTML.Tag + alias Mobilizon.Actors.Actor alias Mobilizon.Discussions.Comment + import Mobilizon.Service.Metadata.Utils, only: [escape_text: 1] @spec build_tags(Comment.t(), String.t()) :: list(Phoenix.HTML.safe()) def build_tags(%Comment{deleted_at: nil} = comment, _locale) do [ - Tag.tag(:meta, property: "og:title", content: comment.actor.preferred_username), + Tag.tag(:meta, property: "og:title", content: escape_text(Actor.display_name(comment.actor))), Tag.tag(:meta, property: "og:url", content: comment.url), Tag.tag(:meta, property: "og:description", content: comment.text), Tag.tag(:meta, property: "og:type", content: "website"), diff --git a/lib/service/metadata/event.ex b/lib/service/metadata/event.ex index aa6011e93..29b5a8059 100644 --- a/lib/service/metadata/event.ex +++ b/lib/service/metadata/event.ex @@ -9,15 +9,21 @@ defimpl Mobilizon.Service.Metadata, for: Mobilizon.Events.Event do alias Mobilizon.Web.Router.Helpers, as: Routes import Mobilizon.Service.Metadata.Utils, - only: [process_description: 2, strip_tags: 1, datetime_to_string: 2, render_address!: 1] + only: [ + process_description: 2, + strip_tags: 1, + datetime_to_string: 2, + render_address!: 1, + escape_text: 1 + ] def build_tags(%Event{} = event, locale \\ "en") do formatted_description = description(event, locale) tags = [ - Tag.content_tag(:title, event.title <> " - Mobilizon"), + Tag.content_tag(:title, escape_text(event.title) <> " - Mobilizon"), Tag.tag(:meta, name: "description", content: process_description(event.description, locale)), - Tag.tag(:meta, property: "og:title", content: event.title), + Tag.tag(:meta, property: "og:title", content: escape_text(event.title)), Tag.tag(:meta, property: "og:url", content: event.url), Tag.tag(:meta, property: "og:description", content: formatted_description), Tag.tag(:meta, property: "og:type", content: "website"), @@ -48,7 +54,7 @@ defimpl Mobilizon.Service.Metadata, for: Mobilizon.Events.Event do %{ "@type" => "ListItem", "position" => 1, - "name" => Actor.display_name(event.attributed_to), + "name" => event.attributed_to |> Actor.display_name() |> escape_text(), "item" => Endpoint |> Routes.page_url( @@ -85,7 +91,7 @@ defimpl Mobilizon.Service.Metadata, for: Mobilizon.Events.Event do %{ "@type" => "ListItem", "position" => 2, - "name" => event.title + "name" => escape_text(event.title) } ] } diff --git a/lib/service/metadata/post.ex b/lib/service/metadata/post.ex index a0de60ae5..90daf3dc3 100644 --- a/lib/service/metadata/post.ex +++ b/lib/service/metadata/post.ex @@ -7,14 +7,16 @@ defimpl Mobilizon.Service.Metadata, for: Mobilizon.Posts.Post do alias Mobilizon.Web.Endpoint alias Mobilizon.Web.JsonLD.ObjectView alias Mobilizon.Web.Router.Helpers, as: Routes - import Mobilizon.Service.Metadata.Utils, only: [process_description: 2, strip_tags: 1] + + import Mobilizon.Service.Metadata.Utils, + only: [process_description: 2, strip_tags: 1, escape_text: 1] def build_tags(%Post{} = post, locale \\ "en") do post = Map.put(post, :body, process_description(post.body, locale)) tags = [ - Tag.tag(:meta, property: "og:title", content: post.title), + Tag.tag(:meta, property: "og:title", content: escape_text(post.title)), Tag.tag(:meta, property: "og:url", content: post.url), Tag.tag(:meta, property: "og:description", content: post.body), Tag.tag(:meta, property: "og:type", content: "article"), @@ -31,7 +33,7 @@ defimpl Mobilizon.Service.Metadata, for: Mobilizon.Posts.Post do %{ "@type" => "ListItem", "position" => 1, - "name" => Actor.display_name(post.attributed_to), + "name" => post.attributed_to |> Actor.display_name() |> escape_text, "item" => Endpoint |> Routes.page_url( diff --git a/lib/service/metadata/utils.ex b/lib/service/metadata/utils.ex index a819f194c..990bf5115 100644 --- a/lib/service/metadata/utils.ex +++ b/lib/service/metadata/utils.ex @@ -74,4 +74,11 @@ defmodule Mobilizon.Service.Metadata.Utils do @spec stringify_tag(String.t(), String.t()) :: String.t() defp stringify_tag(tag, acc) when is_binary(tag), do: acc <> tag + + @spec escape_text(String.t()) :: String.t() + def escape_text(text) do + text + |> HTML.html_escape() + |> HTML.safe_to_string() + end end diff --git a/lib/web/templates/email/activity/_comment_activity_item.html.heex b/lib/web/templates/email/activity/_comment_activity_item.html.heex index 5da7aa527..8daa72140 100644 --- a/lib/web/templates/email/activity/_comment_activity_item.html.heex +++ b/lib/web/templates/email/activity/_comment_activity_item.html.heex @@ -1,35 +1,35 @@ <%= case @activity.subject do %> <% :event_comment_mention -> %> <%= dgettext("activity", "%{profile} mentionned you in a comment under event %{event}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", event: " URI.decode()}\"> - #{@activity.subject_params["event_title"]} + #{escape_html(@activity.subject_params["event_title"])} " }) |> raw %> <% :participation_event_comment -> %> <%= dgettext("activity", "%{profile} has posted an announcement under event %{event}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", event: " URI.decode()}\"> - #{@activity.subject_params["event_title"]} + #{escape_html(@activity.subject_params["event_title"])} " }) |> raw %> <% :event_new_comment -> %> <%= if @activity.subject_params["comment_reply_to"] do %> <%= dgettext("activity", "%{profile} has posted a new reply under your event %{event}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", event: " URI.decode()}#comment-#{@activity.subject_params["comment_reply_to_uuid"]}-#{@activity.subject_params["comment_uuid"]}\"> - #{@activity.subject_params["event_title"]} + #{escape_html(@activity.subject_params["event_title"])} " }) |> raw %> @@ -38,12 +38,12 @@ "activity", "%{profile} has posted a new comment under your event %{event}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", event: " URI.decode()}#comment-#{@activity.subject_params["comment_uuid"]}\"> - #{@activity.subject_params["event_title"]} + #{escape_html(@activity.subject_params["event_title"])} " } ) diff --git a/lib/web/templates/email/activity/_discussion_activity_item.html.heex b/lib/web/templates/email/activity/_discussion_activity_item.html.heex index 36f011e24..e5ba67bc4 100644 --- a/lib/web/templates/email/activity/_discussion_activity_item.html.heex +++ b/lib/web/templates/email/activity/_discussion_activity_item.html.heex @@ -1,40 +1,40 @@ <%= case @activity.subject do %> <% :discussion_created -> %> <%= dgettext("activity", "%{profile} created the discussion %{discussion}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", discussion: " URI.decode()}\"> - #{@activity.subject_params["discussion_title"]}" + #{escape_html(@activity.subject_params["discussion_title"])}" }) |> raw %> <% :discussion_replied -> %> <%= dgettext("activity", "%{profile} replied to the discussion %{discussion}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", discussion: " URI.decode()}\"> - #{@activity.subject_params["discussion_title"]}" + #{escape_html(@activity.subject_params["discussion_title"])}" }) |> raw %> <% :discussion_renamed -> %> <%= dgettext("activity", "%{profile} renamed the discussion %{discussion}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", discussion: " URI.decode()}\"> - #{@activity.subject_params["discussion_title"]}" + #{escape_html(@activity.subject_params["discussion_title"])}" }) |> raw %> <% :discussion_archived -> %> <%= dgettext("activity", "%{profile} archived the discussion %{discussion}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", discussion: " URI.decode()}\"> - #{@activity.subject_params["discussion_title"]}" + #{escape_html(@activity.subject_params["discussion_title"])}" }) |> raw %> <% :discussion_deleted -> %> <%= dgettext("activity", "%{profile} deleted the discussion %{discussion}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", - discussion: "#{@activity.subject_params["discussion_title"]}" + profile: "#{escaped_display_name_and_username(@activity.author)}", + discussion: "#{escape_html(@activity.subject_params["discussion_title"])}" }) |> raw %> <% end %> diff --git a/lib/web/templates/email/activity/_event_activity_item.html.heex b/lib/web/templates/email/activity/_event_activity_item.html.heex index ef371381f..9af392741 100644 --- a/lib/web/templates/email/activity/_event_activity_item.html.heex +++ b/lib/web/templates/email/activity/_event_activity_item.html.heex @@ -1,52 +1,52 @@ <%= case @activity.subject do %> <% :event_created -> %> <%= dgettext("activity", "The event %{event} was created by %{profile}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", event: " URI.decode()}\"> - #{@activity.subject_params["event_title"]} + #{escape_html(@activity.subject_params["event_title"])} " }) |> raw %> <% :event_updated -> %> <%= dgettext("activity", "The event %{event} was updated by %{profile}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", event: " URI.decode()}\"> - #{@activity.subject_params["event_title"]} + #{escape_html(@activity.subject_params["event_title"])} " }) |> raw %> <% :event_deleted -> %> <%= dgettext("activity", "The event %{event} was deleted by %{profile}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", - event: "#{@activity.subject_params["event_title"]}" + profile: "#{escaped_display_name_and_username(@activity.author)}", + event: "#{escape_html(@activity.subject_params["event_title"])}" }) |> raw %> <% :comment_posted -> %> <%= if @activity.subject_params["comment_reply_to"] do %> <%= dgettext("activity", "%{profile} replied to a comment on the event %{event}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", event: " URI.decode()}\"> - #{@activity.subject_params["event_title"]} + #{escape_html(@activity.subject_params["event_title"])} " }) |> raw %> <% else %> <%= dgettext("activity", "%{profile} posted a comment on the event %{event}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", event: " URI.decode()}\"> - #{@activity.subject_params["event_title"]} + #{escape_html(@activity.subject_params["event_title"])} " }) |> raw %> diff --git a/lib/web/templates/email/activity/_group_activity_item.html.heex b/lib/web/templates/email/activity/_group_activity_item.html.heex index ad4318f93..36ad49b16 100644 --- a/lib/web/templates/email/activity/_group_activity_item.html.heex +++ b/lib/web/templates/email/activity/_group_activity_item.html.heex @@ -1,23 +1,23 @@ <%= case @activity.subject do %> <% :group_created -> %> <%= dgettext("activity", "%{profile} created the group %{group}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", group: " URI.decode()}\"> - #{@activity.subject_params["group_name"]} + #{escape_html(@activity.subject_params["group_name"])} " }) |> raw %> <% :group_updated -> %> <%= dgettext("activity", "%{profile} updated the group %{group}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", group: " URI.decode()}\"> - #{@activity.subject_params["group_name"]} + #{escape_html(@activity.subject_params["group_name"])} " }) |> raw %> diff --git a/lib/web/templates/email/activity/_member_activity_item.html.heex b/lib/web/templates/email/activity/_member_activity_item.html.heex index 807023200..f51fb6b92 100644 --- a/lib/web/templates/email/activity/_member_activity_item.html.heex +++ b/lib/web/templates/email/activity/_member_activity_item.html.heex @@ -1,58 +1,58 @@ <%= case @activity.subject do %> <% :member_request -> %> <%= dgettext("activity", "%{member} requested to join the group.", %{ - member: "#{@activity.subject_params["member_actor_name"]}" + member: "#{escape_html(@activity.subject_params["member_actor_name"])}" }) |> raw %> <% :member_invited -> %> <%= dgettext("activity", "%{member} was invited by %{profile}.", %{ - member: "#{@activity.subject_params["member_actor_name"]}", - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}" + member: "#{escape_html(@activity.subject_params["member_actor_name"])}", + profile: "#{escaped_display_name_and_username(@activity.author)}" }) |> raw %> <% :member_accepted_invitation -> %> <%= dgettext("activity", "%{member} accepted the invitation to join the group.", %{ - member: "#{@activity.subject_params["member_actor_name"]}" + member: "#{escape_html(@activity.subject_params["member_actor_name"])}" }) |> raw %> <% :member_rejected_invitation -> %> <%= dgettext("activity", "%{member} rejected the invitation to join the group.", %{ - member: "#{@activity.subject_params["member_actor_name"]}" + member: "#{escape_html(@activity.subject_params["member_actor_name"])}" }) |> raw %> <% :member_joined -> %> <%= dgettext("activity", "%{member} joined the group.", %{ member: - "#{@activity.subject_params["member_actor_name"]}" + "#{escape_html(@activity.subject_params["member_actor_name"])}" }) |> raw %> <% :member_added -> %> <%= dgettext("activity", "%{profile} added the member %{member}.", %{ - member: "#{@activity.subject_params["member_actor_name"]}", - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}" + member: "#{escape_html(@activity.subject_params["member_actor_name"])}", + profile: "#{escaped_display_name_and_username(@activity.author)}" }) |> raw %> <% :member_approved -> %> <%= dgettext("activity", "%{profile} approved the member %{member}.", %{ - member: "#{@activity.subject_params["member_actor_name"]}", - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}" + member: "#{escape_html(@activity.subject_params["member_actor_name"])}", + profile: "#{escaped_display_name_and_username(@activity.author)}" }) |> raw %> <% :member_updated -> %> <%= dgettext("activity", "%{profile} updated the member %{member}.", %{ - member: "#{@activity.subject_params["member_actor_name"]}", - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}" + member: "#{escape_html(@activity.subject_params["member_actor_name"])}", + profile: "#{escaped_display_name_and_username(@activity.author)}" }) |> raw %> <% :member_removed -> %> <%= dgettext("activity", "%{profile} excluded member %{member}.", %{ member: "#{@activity.subject_params["member_actor_name"]}", - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}" + profile: "#{escaped_display_name_and_username(@activity.author)}" }) |> raw %> <% :member_quit -> %> <%= dgettext("activity", "%{profile} quit the group.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}" + profile: "#{escaped_display_name_and_username(@activity.author)}" }) |> raw %> <% end %> diff --git a/lib/web/templates/email/activity/_post_activity_item.html.heex b/lib/web/templates/email/activity/_post_activity_item.html.heex index e9e3369ea..52c03e781 100644 --- a/lib/web/templates/email/activity/_post_activity_item.html.heex +++ b/lib/web/templates/email/activity/_post_activity_item.html.heex @@ -1,30 +1,30 @@ <%= case @activity.subject do %> <% :post_created -> %> <%= dgettext("activity", "The post %{post} was created by %{profile}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", post: " URI.decode()}\"> - #{@activity.subject_params["post_title"]} + #{escape_html(@activity.subject_params["post_title"])} " }) |> raw %> <% :post_updated -> %> <%= dgettext("activity", "The post %{post} was updated by %{profile}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", post: " URI.decode()}\"> - #{@activity.subject_params["post_title"]} + #{escape_html(@activity.subject_params["post_title"])} " }) |> raw %> <% :post_deleted -> %> <%= dgettext("activity", "The post %{post} was deleted by %{profile}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", - post: "#{@activity.subject_params["post_title"]}" + profile: "#{escaped_display_name_and_username(@activity.author)}", + post: "#{escape_html(@activity.subject_params["post_title"])}" }) |> raw %> <% end %> diff --git a/lib/web/templates/email/activity/_resource_activity_item.html.heex b/lib/web/templates/email/activity/_resource_activity_item.html.heex index 27915b9b0..67745aed6 100644 --- a/lib/web/templates/email/activity/_resource_activity_item.html.heex +++ b/lib/web/templates/email/activity/_resource_activity_item.html.heex @@ -2,23 +2,23 @@ <% :resource_created -> %> <%= if @activity.subject_params["is_folder"] do %> <%= dgettext("activity", "%{profile} created the folder %{resource}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", resource: " URI.decode()}\"> - #{@activity.subject_params["resource_title"]} + #{escape_html(@activity.subject_params["resource_title"])} " }) |> raw %> <% else %> <%= dgettext("activity", "%{profile} created the resource %{resource}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", resource: " URI.decode()}\"> - #{@activity.subject_params["resource_title"]} + #{escape_html(@activity.subject_params["resource_title"])} " }) |> raw %> @@ -29,14 +29,15 @@ "activity", "%{profile} renamed the folder from %{old_resource_title} to %{resource}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", resource: " URI.decode()}\"> - #{@activity.subject_params["resource_title"]} + #{escape_html(@activity.subject_params["resource_title"])} ", - old_resource_title: "#{@activity.subject_params["old_resource_title"]}" + old_resource_title: + "#{escape_html(@activity.subject_params["old_resource_title"])}" } ) |> raw %> @@ -45,14 +46,15 @@ "activity", "%{profile} renamed the resource from %{old_resource_title} to %{resource}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", resource: " URI.decode()}\"> - #{@activity.subject_params["resource_title"]} + #{escape_html(@activity.subject_params["resource_title"])} ", - old_resource_title: "#{@activity.subject_params["old_resource_title"]}" + old_resource_title: + "#{escape_html(@activity.subject_params["old_resource_title"])}" } ) |> raw %> @@ -60,23 +62,23 @@ <% :resource_moved -> %> <%= if @activity.subject_params["is_folder"] do %> <%= dgettext("activity", "%{profile} moved the folder %{resource}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", resource: " URI.decode()}\"> - #{@activity.subject_params["resource_title"]} + #{escape_html(@activity.subject_params["resource_title"])} " }) |> raw %> <% else %> <%= dgettext("activity", "%{profile} moved the resource %{resource}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escaped_display_name_and_username(@activity.author)}", resource: " URI.decode()}\"> - #{@activity.subject_params["resource_title"]} + #{escape_html(@activity.subject_params["resource_title"])} " }) |> raw %> @@ -84,14 +86,14 @@ <% :resource_deleted -> %> <%= if @activity.subject_params["is_folder"] do %> <%= dgettext("activity", "%{profile} deleted the folder %{resource}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", - resource: "#{@activity.subject_params["resource_title"]}" + profile: "#{escaped_display_name_and_username(@activity.author)}", + resource: "#{escape_html(@activity.subject_params["resource_title"])}" }) |> raw %> <% else %> <%= dgettext("activity", "%{profile} deleted the resource %{resource}.", %{ - profile: "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", - resource: "#{@activity.subject_params["resource_title"]}" + profile: "#{escaped_display_name_and_username(@activity.author)}", + resource: "#{escape_html(@activity.subject_params["resource_title"])}" }) |> raw %> <% end %> diff --git a/lib/web/templates/email/anonymous_participation_confirmation.html.heex b/lib/web/templates/email/anonymous_participation_confirmation.html.heex index 8f13ea212..56c20f57b 100644 --- a/lib/web/templates/email/anonymous_participation_confirmation.html.heex +++ b/lib/web/templates/email/anonymous_participation_confirmation.html.heex @@ -46,7 +46,7 @@

<%= gettext( "Hi there! You just registered to join this event: « %{title} ». Please confirm the e-mail address you provided:", - title: @participant.event.title + title: escape_html(@participant.event.title) ) |> raw %>

diff --git a/lib/web/templates/email/email.html.heex b/lib/web/templates/email/email.html.heex index d8b34772e..ce2f81c37 100644 --- a/lib/web/templates/email/email.html.heex +++ b/lib/web/templates/email/email.html.heex @@ -109,7 +109,7 @@ <%= gettext("This is a demonstration site to test Mobilizon.") %>

- <%= gettext("Please do not use it for real purposes.") |> raw() %> + <%= gettext("Please do not use it for real purposes.") %>

diff --git a/lib/web/templates/email/email_anonymous_activity.html.heex b/lib/web/templates/email/email_anonymous_activity.html.heex index 9687b0dc3..4e0d9421e 100644 --- a/lib/web/templates/email/email_anonymous_activity.html.heex +++ b/lib/web/templates/email/email_anonymous_activity.html.heex @@ -49,13 +49,12 @@ "activity", "%{profile} has posted an announcement under event %{event}.", %{ - profile: - "#{Mobilizon.Actors.Actor.display_name_and_username(@activity.author)}", + profile: "#{escape_html(display_name_and_username(@activity.author))}", event: " URI.decode()}\"> - #{@activity.subject_params["event_title"]} + #{escape_html(@activity.subject_params["event_title"])} " } ) diff --git a/lib/web/templates/email/event_participation_approved.html.heex b/lib/web/templates/email/event_participation_approved.html.heex index 06b00b895..eedd2836c 100644 --- a/lib/web/templates/email/event_participation_approved.html.heex +++ b/lib/web/templates/email/event_participation_approved.html.heex @@ -44,7 +44,9 @@ style="padding: 20px 30px 0px 30px; color: #474467; font-family: 'Roboto', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;" >

- <%= gettext("You recently requested to attend %{title}.", title: @event.title) + <%= gettext("You recently requested to attend %{title}.", + title: escape_html(@event.title) + ) |> raw %>

diff --git a/lib/web/templates/email/event_participation_confirmed.html.heex b/lib/web/templates/email/event_participation_confirmed.html.heex index 26e0f623d..8e57958d3 100644 --- a/lib/web/templates/email/event_participation_confirmed.html.heex +++ b/lib/web/templates/email/event_participation_confirmed.html.heex @@ -44,7 +44,9 @@ style="padding: 20px 30px 0px 30px; color: #474467; font-family: 'Roboto', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;" >

- <%= gettext("You recently requested to attend %{title}.", title: @event.title) + <%= gettext("You recently requested to attend %{title}.", + title: escape_html(@event.title) + ) |> raw %>

diff --git a/lib/web/templates/email/event_participation_rejected.html.heex b/lib/web/templates/email/event_participation_rejected.html.heex index 44e503948..8d2d673fa 100644 --- a/lib/web/templates/email/event_participation_rejected.html.heex +++ b/lib/web/templates/email/event_participation_rejected.html.heex @@ -44,7 +44,9 @@ style="padding: 20px 30px 0px 30px; color: #474467; font-family: 'Roboto', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;" >

- <%= gettext("You issued a request to attend %{title}.", title: @event.title) + <%= gettext("You issued a request to attend %{title}.", + title: escape_html(@event.title) + ) |> raw %>

diff --git a/lib/web/templates/email/event_updated.html.heex b/lib/web/templates/email/event_updated.html.heex index 5b11f8166..92e53021d 100644 --- a/lib/web/templates/email/event_updated.html.heex +++ b/lib/web/templates/email/event_updated.html.heex @@ -46,7 +46,7 @@

<%= gettext( "There have been changes for %{title} so we'd thought we'd let you know.", - title: @old_event.title + title: escape_html(@old_event.title) ) |> raw %>

diff --git a/lib/web/templates/email/group_invite.html.heex b/lib/web/templates/email/group_invite.html.heex index 68ccbfa83..1a34b44e8 100644 --- a/lib/web/templates/email/group_invite.html.heex +++ b/lib/web/templates/email/group_invite.html.heex @@ -46,8 +46,8 @@

<%= gettext( "%{inviter} just invited you to join their group %{link_start}%{group}%{link_end}", - group: @group.name, - inviter: @inviter.name, + group: escape_html(display_name(@group)), + inviter: escape_html(display_name(@inviter)), link_start: "", link_end: "" ) diff --git a/lib/web/templates/email/group_member_removal.html.heex b/lib/web/templates/email/group_member_removal.html.heex index 3311538aa..001c8a127 100644 --- a/lib/web/templates/email/group_member_removal.html.heex +++ b/lib/web/templates/email/group_member_removal.html.heex @@ -46,7 +46,7 @@

<%= gettext( "You have been removed from group %{link_start}%{group}%{link_end}. You will not be able to access this group's private content anymore.", - group: @group.name, + group: escape_html(display_name(@group)), link_start: "", link_end: "" ) diff --git a/lib/web/templates/email/group_membership_approval.html.heex b/lib/web/templates/email/group_membership_approval.html.heex index a681bbc55..acefe2fb1 100644 --- a/lib/web/templates/email/group_membership_approval.html.heex +++ b/lib/web/templates/email/group_membership_approval.html.heex @@ -46,9 +46,9 @@

<%= gettext( "Your membership request for group %{link_start}%{group}%{link_end} has been approved.", - group: Mobilizon.Actors.Actor.display_name(@group), + group: escape_html(display_name(@group)), link_start: - " URI.decode()}\">", + " URI.decode()}\">", link_end: "" ) |> raw %> diff --git a/lib/web/templates/email/group_membership_rejection.html.heex b/lib/web/templates/email/group_membership_rejection.html.heex index 29343d5ed..e4d271200 100644 --- a/lib/web/templates/email/group_membership_rejection.html.heex +++ b/lib/web/templates/email/group_membership_rejection.html.heex @@ -46,9 +46,9 @@

<%= gettext( "Your membership request for group %{link_start}%{group}%{link_end} has been rejected.", - group: Mobilizon.Actors.Actor.display_name(@group), + group: escape_html(display_name(@group)), link_start: - " URI.decode()}\">", + " URI.decode()}\">", link_end: "" ) |> raw %> diff --git a/lib/web/templates/email/group_suspension.html.heex b/lib/web/templates/email/group_suspension.html.heex index 7524bd584..b1baacfcc 100644 --- a/lib/web/templates/email/group_suspension.html.heex +++ b/lib/web/templates/email/group_suspension.html.heex @@ -16,7 +16,7 @@ >

<%= gettext("The group %{group} has been suspended on %{instance}!", - group: @group.name || @group.preferred_username, + group: display_name(@group), instance: @instance_name ) %>

@@ -49,12 +49,8 @@

<%= gettext( "Your instance's moderation team has decided to suspend %{group_name} (%{group_address}). You are no longer a member of this group.", - group_name: @group.name, - group_address: - if(@group.domain, - do: "@#{@group.preferred_username}@#{@group.domain}", - else: "@#{@group.preferred_username}" - ) + group_name: escape_html(display_name(@group)), + group_address: preferred_username_and_domain(@group) ) |> raw %>

diff --git a/lib/web/templates/email/instance_follow.html.heex b/lib/web/templates/email/instance_follow.html.heex index f2e551f71..67e9a94bb 100644 --- a/lib/web/templates/email/instance_follow.html.heex +++ b/lib/web/templates/email/instance_follow.html.heex @@ -45,7 +45,7 @@ >

<%= gettext("%{name} just requested to follow your instance.", - name: Mobilizon.Actors.Actor.display_name_and_username(@follower) + name: escape_html(display_name_and_username(@follower)) ) |> raw %>
@@ -67,7 +67,7 @@

<%= gettext( "Note: %{name} following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too.", - name: Mobilizon.Actors.Actor.display_name_and_username(@follower) + name: escape_html(display_name_and_username(@follower)) ) %>

diff --git a/lib/web/templates/email/report.html.heex b/lib/web/templates/email/report.html.heex index fd1885cbe..48c5a62e6 100644 --- a/lib/web/templates/email/report.html.heex +++ b/lib/web/templates/email/report.html.heex @@ -47,12 +47,12 @@ <%= if @report.reporter.type == :Application and @report.reporter.preferred_username == "relay" do %> <%= gettext( "Someone on %{instance} reported the following content for you to analyze:", - instance: @report.reporter.domain + instance: escape_html(@report.reporter.domain) ) |> raw %> <% else %> <%= gettext("%{reporter} reported the following content.", - reporter: Mobilizon.Actors.Actor.display_name_and_username(@report.reporter) + reporter: escape_html(display_name_and_username(@report.reporter)) ) |> raw %> <% end %> diff --git a/lib/web/views/email_view.ex b/lib/web/views/email_view.ex index d72a2eea3..c103e4fcf 100644 --- a/lib/web/views/email_view.ex +++ b/lib/web/views/email_view.ex @@ -4,12 +4,13 @@ defmodule Mobilizon.Web.EmailView do pattern: "**/*", namespace: Mobilizon.Web + alias Mobilizon.Actors.Actor alias Mobilizon.Service.Address alias Mobilizon.Service.DateTime, as: DateTimeRenderer alias Mobilizon.Web.Router.Helpers, as: Routes import Mobilizon.Web.Gettext import Mobilizon.Service.Metadata.Utils, only: [process_description: 1] - import Phoenix.HTML, only: [raw: 1] + import Phoenix.HTML, only: [raw: 1, html_escape: 1, safe_to_string: 1] defdelegate datetime_to_string(datetime, locale \\ "en", format \\ :medium), to: DateTimeRenderer @@ -24,4 +25,20 @@ defmodule Mobilizon.Web.EmailView do defdelegate datetime_relative(datetime, locale \\ "en"), to: DateTimeRenderer defdelegate render_address(address), to: Address defdelegate is_same_day?(one, two), to: DateTimeRenderer + defdelegate display_name_and_username(actor), to: Actor + defdelegate display_name(actor), to: Actor + defdelegate preferred_username_and_domain(actor), to: Actor + + @spec escape_html(String.t()) :: String.t() + def escape_html(string) do + string + |> html_escape() + |> safe_to_string() + end + + def escaped_display_name_and_username(actor) do + actor + |> Actor.display_name_and_username() + |> escape_html() + end end diff --git a/priv/gettext/activity.pot b/priv/gettext/activity.pot index 441280f2e..bef479bbc 100644 --- a/priv/gettext/activity.pot +++ b/priv/gettext/activity.pot @@ -76,13 +76,13 @@ msgstr "" msgid "%{profile} deleted the discussion %{discussion}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -94,13 +94,13 @@ msgstr "" msgid "%{profile} excluded member %{member}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -124,7 +124,7 @@ msgstr "" msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/ar/LC_MESSAGES/activity.po b/priv/gettext/ar/LC_MESSAGES/activity.po index 7be7b585b..1e7d07a95 100644 --- a/priv/gettext/ar/LC_MESSAGES/activity.po +++ b/priv/gettext/ar/LC_MESSAGES/activity.po @@ -77,13 +77,13 @@ msgstr "" msgid "%{profile} deleted the discussion %{discussion}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -95,13 +95,13 @@ msgstr "" msgid "%{profile} excluded member %{member}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -125,7 +125,7 @@ msgstr "" msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/ar/LC_MESSAGES/default.po b/priv/gettext/ar/LC_MESSAGES/default.po index 10dcc3458..a3cb47012 100644 --- a/priv/gettext/ar/LC_MESSAGES/default.po +++ b/priv/gettext/ar/LC_MESSAGES/default.po @@ -769,6 +769,7 @@ msgstr "" msgid "You requested a new password for your account on %{instance}." msgstr "" +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -836,7 +837,7 @@ msgstr "تم تحديث الفعالية!" msgid "Flagged comments" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -956,7 +957,7 @@ msgstr "تم تأكيد الفعالية" msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it." msgstr "" -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -977,9 +978,9 @@ msgstr "إعرض التقرير" msgid "View report:" msgstr "إعرض التقرير" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "" @@ -1000,9 +1001,9 @@ msgstr "" msgid "What's up today?" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1038,11 +1039,6 @@ msgstr "" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "" - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1069,13 +1065,13 @@ msgstr "" 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 "" -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." msgstr "" -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1247,7 +1243,7 @@ msgstr "" msgid "Profile reported" msgstr "" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1326,8 +1322,8 @@ msgstr "" msgid "This is a demonstration site to test Mobilizon." msgstr "" -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1374,12 +1370,12 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/ar/LC_MESSAGES/errors.po b/priv/gettext/ar/LC_MESSAGES/errors.po index 14983763e..d9cb284ee 100644 --- a/priv/gettext/ar/LC_MESSAGES/errors.po +++ b/priv/gettext/ar/LC_MESSAGES/errors.po @@ -135,7 +135,7 @@ msgstr "" msgid "Current profile is not an administrator of the selected group" msgstr "" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "" @@ -144,8 +144,8 @@ msgstr "" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -163,6 +163,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "" #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "" @@ -172,13 +173,13 @@ msgstr "" msgid "No profile found for the moderator user" msgstr "" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "" @@ -201,41 +202,41 @@ msgstr "" msgid "Registrations are not open" msgstr "" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "" @@ -245,18 +246,18 @@ msgstr "" msgid "This user has been disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "" @@ -266,7 +267,7 @@ msgstr "" msgid "You are already a member of this group" msgstr "" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "" @@ -281,12 +282,12 @@ msgstr "" msgid "You may not list groups unless moderator." msgstr "" -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "" @@ -296,7 +297,7 @@ msgstr "" msgid "You need to be logged-in to delete a group" msgstr "" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "" @@ -306,7 +307,7 @@ msgstr "" msgid "You need to be logged-in to join a group" msgstr "" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "" @@ -321,8 +322,8 @@ msgstr "" msgid "You need to have an existing token to get a refresh token" msgstr "" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "" @@ -906,7 +907,7 @@ msgstr "" msgid "Error while creating resource" msgstr "" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "" @@ -948,7 +949,7 @@ msgstr "" msgid "Error while creating a discussion" msgstr "" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "" @@ -969,12 +970,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "" @@ -994,7 +995,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1034,47 +1035,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "" @@ -1133,3 +1134,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "" diff --git a/priv/gettext/be/LC_MESSAGES/activity.po b/priv/gettext/be/LC_MESSAGES/activity.po index 19b323d8c..d8c3fbc66 100644 --- a/priv/gettext/be/LC_MESSAGES/activity.po +++ b/priv/gettext/be/LC_MESSAGES/activity.po @@ -77,13 +77,13 @@ msgstr "" msgid "%{profile} deleted the discussion %{discussion}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -95,13 +95,13 @@ msgstr "" msgid "%{profile} excluded member %{member}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -125,7 +125,7 @@ msgstr "" msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/be/LC_MESSAGES/default.po b/priv/gettext/be/LC_MESSAGES/default.po index f20c7719a..16425eaae 100644 --- a/priv/gettext/be/LC_MESSAGES/default.po +++ b/priv/gettext/be/LC_MESSAGES/default.po @@ -751,6 +751,7 @@ msgstr "" msgid "You requested a new password for your account on %{instance}." msgstr "" +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -815,7 +816,7 @@ msgstr "" msgid "Flagged comments" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -935,7 +936,7 @@ msgstr "" msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it." msgstr "" -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -956,9 +957,9 @@ msgstr "" msgid "View report:" msgstr "" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "" @@ -979,9 +980,9 @@ msgstr "" msgid "What's up today?" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1017,11 +1018,6 @@ msgstr "" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "" - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1048,13 +1044,13 @@ msgstr "" 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 "" -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." msgstr "" -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1226,7 +1222,7 @@ msgstr "" msgid "Profile reported" msgstr "" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1305,8 +1301,8 @@ msgstr "" msgid "This is a demonstration site to test Mobilizon." msgstr "" -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1353,12 +1349,12 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/be/LC_MESSAGES/errors.po b/priv/gettext/be/LC_MESSAGES/errors.po index cf3730695..fc4c5a6e9 100644 --- a/priv/gettext/be/LC_MESSAGES/errors.po +++ b/priv/gettext/be/LC_MESSAGES/errors.po @@ -109,7 +109,7 @@ msgstr "" msgid "Current profile is not an administrator of the selected group" msgstr "" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "" @@ -118,8 +118,8 @@ msgstr "" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -137,6 +137,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "" #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "" @@ -146,13 +147,13 @@ msgstr "" msgid "No profile found for the moderator user" msgstr "" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "" @@ -175,41 +176,41 @@ msgstr "" msgid "Registrations are not open" msgstr "" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "" @@ -219,18 +220,18 @@ msgstr "" msgid "This user has been disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "" @@ -240,7 +241,7 @@ msgstr "" msgid "You are already a member of this group" msgstr "" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "" @@ -255,12 +256,12 @@ msgstr "" msgid "You may not list groups unless moderator." msgstr "" -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "" @@ -270,7 +271,7 @@ msgstr "" msgid "You need to be logged-in to delete a group" msgstr "" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "" @@ -280,7 +281,7 @@ msgstr "" msgid "You need to be logged-in to join a group" msgstr "" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "" @@ -295,8 +296,8 @@ msgstr "" msgid "You need to have an existing token to get a refresh token" msgstr "" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "" @@ -880,7 +881,7 @@ msgstr "" msgid "Error while creating resource" msgstr "" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "" @@ -922,7 +923,7 @@ msgstr "" msgid "Error while creating a discussion" msgstr "" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "" @@ -943,12 +944,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "" @@ -968,7 +969,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1008,47 +1009,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "" @@ -1107,3 +1108,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "" diff --git a/priv/gettext/ca/LC_MESSAGES/activity.po b/priv/gettext/ca/LC_MESSAGES/activity.po index 346597df5..be1722303 100644 --- a/priv/gettext/ca/LC_MESSAGES/activity.po +++ b/priv/gettext/ca/LC_MESSAGES/activity.po @@ -84,13 +84,13 @@ msgstr "" msgid "%{profile} deleted the discussion %{discussion}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -102,13 +102,13 @@ msgstr "" msgid "%{profile} excluded member %{member}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -132,7 +132,7 @@ msgstr "" msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/ca/LC_MESSAGES/default.po b/priv/gettext/ca/LC_MESSAGES/default.po index 7802b838a..70af302cd 100644 --- a/priv/gettext/ca/LC_MESSAGES/default.po +++ b/priv/gettext/ca/LC_MESSAGES/default.po @@ -918,6 +918,7 @@ msgstr "L'adreça de correu pel teu compte a %{host} s'està canviant a:" msgid "You requested a new password for your account on %{instance}." msgstr "Algú ha soŀlicitat a %{instance} una contrasenya nova." +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -985,7 +986,7 @@ msgstr "S'ha actualitzat l'activitat!" msgid "Flagged comments" msgstr "Comentaris denunciats" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -1124,7 +1125,7 @@ msgstr "" "Aquesta activitat encara no està confirmada: l'organització t'ho farà saber " "si la confirmen." -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -1145,9 +1146,9 @@ msgstr "Mostra la denúncia" msgid "View report:" msgstr "Mostra la denúncia" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "Vés a la pàgina d'activitat" @@ -1168,9 +1169,9 @@ msgstr "Vés a l'activitat actualitzada a %{link}" msgid "What's up today?" msgstr "Què fan avui?" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1212,11 +1213,6 @@ msgstr "T'han acceptat!" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "Si no has fet tu aquest canvi, pots ignorar aquest missatge." -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "No ho facis servir més que proves, sisplau." - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1250,7 +1246,7 @@ msgstr "" "T'han esborrat del grup %{link_start}%{group}%{link_end}. Ja no pots " "accedir al seu contingut privat." -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." @@ -1258,7 +1254,7 @@ msgstr "" "Com que aquest grup estava ubicat en una altra instància, només queda suspès " "en aquesta." -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1464,7 +1460,7 @@ msgstr "S'ha denunciat el perfil %{profile}" msgid "Profile reported" msgstr "Perfil denunciat" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1550,8 +1546,8 @@ msgstr "Ho sentim, s'ha produït un error al nostre costat." msgid "This is a demonstration site to test Mobilizon." msgstr "Aquesta és una web de proves per provar la beta de Mobilizon." -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1598,12 +1594,12 @@ msgstr "Sembla ser que el servidor de Mobilizon està temporalment inaccessible. msgid "Public feed for %{instance}" msgstr "" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/ca/LC_MESSAGES/errors.po b/priv/gettext/ca/LC_MESSAGES/errors.po index c446091d6..7a885594e 100644 --- a/priv/gettext/ca/LC_MESSAGES/errors.po +++ b/priv/gettext/ca/LC_MESSAGES/errors.po @@ -110,7 +110,7 @@ msgstr "El perfil actual no pertany a aquest grup" msgid "Current profile is not an administrator of the selected group" msgstr "El perfil actual no administra el grup seleccionat" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "No s'han pogut desar les preferències" @@ -119,8 +119,8 @@ msgstr "No s'han pogut desar les preferències" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -138,6 +138,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "No t'hem pogut autenticar. El teu correu o contrasenya són incorrectes." #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "No s'ha trobat el/la membre" @@ -147,13 +148,13 @@ msgstr "No s'ha trobat el/la membre" msgid "No profile found for the moderator user" msgstr "" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "" @@ -176,41 +177,41 @@ msgstr "" msgid "Registrations are not open" msgstr "" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "" @@ -220,18 +221,18 @@ msgstr "" msgid "This user has been disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "" @@ -241,7 +242,7 @@ msgstr "" msgid "You are already a member of this group" msgstr "" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "" @@ -256,12 +257,12 @@ msgstr "" msgid "You may not list groups unless moderator." msgstr "" -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "" @@ -271,7 +272,7 @@ msgstr "" msgid "You need to be logged-in to delete a group" msgstr "" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "" @@ -281,7 +282,7 @@ msgstr "" msgid "You need to be logged-in to join a group" msgstr "" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "" @@ -296,8 +297,8 @@ msgstr "" msgid "You need to have an existing token to get a refresh token" msgstr "" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "" @@ -881,7 +882,7 @@ msgstr "" msgid "Error while creating resource" msgstr "" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "" @@ -923,7 +924,7 @@ msgstr "" msgid "Error while creating a discussion" msgstr "" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "" @@ -944,12 +945,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "" @@ -969,7 +970,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1009,47 +1010,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "" @@ -1108,3 +1109,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "" diff --git a/priv/gettext/cs/LC_MESSAGES/activity.po b/priv/gettext/cs/LC_MESSAGES/activity.po index 73d41be38..26d6b64e6 100644 --- a/priv/gettext/cs/LC_MESSAGES/activity.po +++ b/priv/gettext/cs/LC_MESSAGES/activity.po @@ -84,13 +84,13 @@ msgstr "%{profile} vytvořil zdroj %{resource}." msgid "%{profile} deleted the discussion %{discussion}." msgstr "%{profile} smazal diskusi %{discussion}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "%{profile} smazal složku %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -102,13 +102,13 @@ msgstr "%{profile} smazal prostředek %{resource}." msgid "%{profile} excluded member %{member}." msgstr "%{profile} vyloučil člena %{member}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "%{profile} přesunul složku %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -132,7 +132,7 @@ msgstr "%{profile} přejmenoval diskusi %{discussion}." msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "%{profile} přejmenoval složku z %{old_resource_title} na %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/cs/LC_MESSAGES/default.po b/priv/gettext/cs/LC_MESSAGES/default.po index 497edacc3..c45db56ec 100644 --- a/priv/gettext/cs/LC_MESSAGES/default.po +++ b/priv/gettext/cs/LC_MESSAGES/default.po @@ -925,6 +925,7 @@ msgstr "E-mailová adresa vašeho účtu na %{host} se mění na:" msgid "You requested a new password for your account on %{instance}." msgstr "Vyžádali jste si nové heslo pro svůj účet na %{instance}." +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -997,7 +998,7 @@ msgstr "Aktualizace události!" msgid "Flagged comments" msgstr "Označené komentáře" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -1139,7 +1140,7 @@ msgstr "" "Tato akce zatím nebyla potvrzena: organizátoři vám dají vědět, pokud ji " "potvrdí." -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -1160,9 +1161,9 @@ msgstr "Zobrazit hlášení" msgid "View report:" msgstr "Zobrazit hlášení:" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "Navštivte stránku události" @@ -1183,9 +1184,9 @@ msgstr "Navštivte aktualizovanou stránku události: %{link}" msgid "What's up today?" msgstr "Co se dnes děje?" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1228,11 +1229,6 @@ msgstr "Chystáte se!" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "Pokud jste změnu nevyvolali sami, tuto zprávu ignorujte." -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "Prosím, nepoužívejte ji pro skutečné účely." - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1267,7 +1263,7 @@ msgstr "" "Byli jste odstraněni ze skupiny %{link_start}%{group}%{link_end}. K " "soukromému obsahu této skupiny již nebudete mít přístup." -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." @@ -1275,7 +1271,7 @@ msgstr "" "Protože tato skupina byla umístěna v jiné instanci, bude nadále fungovat i v " "jiných instancích než v této." -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1526,7 +1522,7 @@ msgstr "Profil %{profile} byl nahlášen" msgid "Profile reported" msgstr "Profil nahlášen" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1613,8 +1609,8 @@ msgstr "Je nám líto, ale na naší straně se něco pokazilo." msgid "This is a demonstration site to test Mobilizon." msgstr "Jde o demonstrační web pro testování Mobilizon." -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1662,14 +1658,14 @@ msgstr "Zdá se, že server Mobilizon %{instance} je dočasně mimo provoz." msgid "Public feed for %{instance}" msgstr "Veřejný kanál pro %{instance}" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" "Zvolené heslo je příliš krátké. Ujistěte se, že heslo obsahuje alespoň 6 " "znaků." -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/cs/LC_MESSAGES/errors.po b/priv/gettext/cs/LC_MESSAGES/errors.po index 440cd8b9c..eb61f5df5 100644 --- a/priv/gettext/cs/LC_MESSAGES/errors.po +++ b/priv/gettext/cs/LC_MESSAGES/errors.po @@ -116,7 +116,7 @@ msgstr "Aktuální profil není členem této skupiny" msgid "Current profile is not an administrator of the selected group" msgstr "Aktuální profil není správcem vybrané skupiny" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "Chyba při ukládání uživatelských nastavení" @@ -125,8 +125,8 @@ msgstr "Chyba při ukládání uživatelských nastavení" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -144,6 +144,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "Nelze ověřit, váš e-mail nebo heslo jsou neplatné." #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "Člen nebyl nalezen" @@ -153,7 +154,7 @@ msgstr "Člen nebyl nalezen" msgid "No profile found for the moderator user" msgstr "Pro uživatele moderátora nebyl nalezen žádný profil" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" @@ -161,7 +162,7 @@ msgstr "" "e-mailu" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "Nebyl nalezen žádný uživatel s tímto e-mailem" @@ -184,43 +185,43 @@ msgstr "Profil není vlastněn ověřeným uživatelem" msgid "Registrations are not open" msgstr "Registrace nejsou otevřeny" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "Aktuální heslo je neplatné" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "Nový e-mail se nezdá být platný" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "Nový e-mail musí být jiný" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "Nové heslo se musí lišit" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "Zadané heslo je neplatné" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" "Zvolené heslo je příliš krátké. Ujistěte se, že heslo obsahuje alespoň 6 " "znaků." -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "Tento uživatel nemůže obnovit své heslo" @@ -230,18 +231,18 @@ msgstr "Tento uživatel nemůže obnovit své heslo" msgid "This user has been disabled" msgstr "Tento uživatel byl deaktivován" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "Nelze ověřit uživatele" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "Uživatel je již deaktivován" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "Požadovaný uživatel není přihlášen" @@ -251,7 +252,7 @@ msgstr "Požadovaný uživatel není přihlášen" msgid "You are already a member of this group" msgstr "Jste již členem této skupiny" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "Tuto skupinu nemůžete opustit, protože jste jediným správcem" @@ -266,12 +267,12 @@ msgstr "K této skupině se nemůžete připojit" msgid "You may not list groups unless moderator." msgstr "Skupiny můžete uvádět pouze jako moderátor." -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "Pro změnu e-mailu musíte být přihlášeni" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "Pro změnu hesla musíte být přihlášeni" @@ -281,7 +282,7 @@ msgstr "Pro změnu hesla musíte být přihlášeni" msgid "You need to be logged-in to delete a group" msgstr "Chcete-li skupinu odstranit, musíte být přihlášeni" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "Chcete-li odstranit svůj účet, musíte být přihlášeni" @@ -291,7 +292,7 @@ msgstr "Chcete-li odstranit svůj účet, musíte být přihlášeni" msgid "You need to be logged-in to join a group" msgstr "Chcete-li se připojit ke skupině, musíte být přihlášeni" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "Chcete-li opustit skupinu, musíte být přihlášeni" @@ -306,8 +307,8 @@ msgstr "Chcete-li aktualizovat skupinu, musíte být přihlášeni" msgid "You need to have an existing token to get a refresh token" msgstr "Chcete-li získat token pro obnovení, musíte mít existující token" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "Znovu jste si vyžádali potvrzovací e-mail příliš brzy" @@ -898,7 +899,7 @@ msgstr "Poskytnutý obrázek je příliš velký" msgid "Error while creating resource" msgstr "Chyba při vytváření prostředku" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "Neplatný aktivační token" @@ -943,7 +944,7 @@ msgstr "Komentář nebyl nalezen" msgid "Error while creating a discussion" msgstr "Chyba při vytváření diskuse" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "Chyba při aktualizaci locale" @@ -964,12 +965,12 @@ msgid "Failed to update the group" msgstr "Nepodařilo se aktualizovat skupinu" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "Nepodařilo se aktualizovat e-mail uživatele" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "Nepodařilo se ověřit e-mail uživatele" @@ -989,7 +990,7 @@ msgstr "Neznámá chyba při aktualizaci prostředku" msgid "You are not the comment creator" msgstr "Nejste autorem komentáře" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "Heslo nelze změnit." @@ -1029,47 +1030,47 @@ msgstr "Události mohou vytvářet pouze skupiny" msgid "Unknown error while creating event" msgstr "Neznámá chyba při vytváření události" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "Uživatel nemůže změnit e-mail" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "Sledování neodpovídá vašemu účtu" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "Sledování nebylo nalezeno" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "Profil s uživatelským jménem %{username} nebyl nalezen" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "Tento profil vám nepatří" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "Tuto skupinu již sledujete" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "Chcete-li sledovat skupinu, musíte být přihlášeni" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "Chcete-li zrušit sledování skupiny, musíte být přihlášeni" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "Chcete-li aktualizovat sledování skupiny, musíte být přihlášeni" @@ -1130,3 +1131,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "Nový e-mail se nezdá být platný" diff --git a/priv/gettext/de/LC_MESSAGES/activity.po b/priv/gettext/de/LC_MESSAGES/activity.po index 112a08e3a..d39d16241 100644 --- a/priv/gettext/de/LC_MESSAGES/activity.po +++ b/priv/gettext/de/LC_MESSAGES/activity.po @@ -84,13 +84,13 @@ msgstr "%{profile} hat die Ressource %{resource} erstellt." msgid "%{profile} deleted the discussion %{discussion}." msgstr "%{profile} hat die Diskussion %{discussion} gelöscht." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "%{profile} hat den Folder %{resource} gelöscht." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -102,13 +102,13 @@ msgstr "%{profile} hat die Ressource %{resource} gelöscht." msgid "%{profile} excluded member %{member}." msgstr "%{profile} hat das Mitglied %{member} ausgeschlossen." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "%{profile} hat den Ordner %{resource} verschoben." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -133,7 +133,7 @@ msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" "%{profile} hat den Folder %{old_resource_title} in %{resource} umbenannt." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/de/LC_MESSAGES/default.po b/priv/gettext/de/LC_MESSAGES/default.po index e2eb33087..02cfca770 100644 --- a/priv/gettext/de/LC_MESSAGES/default.po +++ b/priv/gettext/de/LC_MESSAGES/default.po @@ -951,6 +951,7 @@ msgid "You requested a new password for your account on %{instance}." msgstr "" "Sie haben ein neues Passwort für Ihr Konto auf %{instance} angefragt." +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -1019,7 +1020,7 @@ msgstr "Veranstaltung aktualisiert!" msgid "Flagged comments" msgstr "Markierte Kommentare" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -1164,7 +1165,7 @@ msgstr "" "Diese Veranstaltung muss noch bestätigt werden: Die Organisatorinnen werden " "Dich nach der Bestätigung informieren." -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -1185,9 +1186,9 @@ msgstr "Meldung ansehen" msgid "View report:" msgstr "Meldung ansehen:" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "Besuche die Event Seite" @@ -1208,9 +1209,9 @@ msgstr "Zeige die aktualisierte Veranstaltung unter: %{link}" msgid "What's up today?" msgstr "Was gibt's heute?" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1256,11 +1257,6 @@ msgstr "" "Wenn Sie die Änderung nicht selbst ausgelöst haben, ignorieren Sie bitte " "diese Meldung." -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "Bitte verwenden Sie es nicht für reale Zwecke." - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1295,7 +1291,7 @@ msgstr "" "Sie wurden aus der Gruppe %{link_start}%{group}%{link_end} entfernt. " "Sie werden nicht mehr auf den privaten Inhalt dieser Gruppe zugreifen können." -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." @@ -1303,7 +1299,7 @@ msgstr "" "Da sich diese Gruppe auf einer anderen Instanz befand, funktioniert sie auch " "weiterhin für andere Instanzen als diese." -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1567,7 +1563,7 @@ msgstr "Profil %{profile} wurde gemeldet" msgid "Profile reported" msgstr "Profil gemeldet" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1658,8 +1654,8 @@ msgstr "" "Dies ist eine Demonstrationsseite, um die Beta-Version von Mobilizon zu " "testen." -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1712,13 +1708,13 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "Öffentlicher Newsfeed für %{instance}" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" "Das gewählte Passwort ist zu kurz. Es muss aus wenigstens 6 Zeichen bestehen." -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/de/LC_MESSAGES/errors.po b/priv/gettext/de/LC_MESSAGES/errors.po index bfa81fd38..8af61ee80 100644 --- a/priv/gettext/de/LC_MESSAGES/errors.po +++ b/priv/gettext/de/LC_MESSAGES/errors.po @@ -110,7 +110,7 @@ msgstr "Aktuelles Profil ist nicht Mitglied dieser Gruppe" msgid "Current profile is not an administrator of the selected group" msgstr "Aktuelles Profil ist kein Administrator der ausgewählten Gruppe" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "Fehler beim Speichern von Benutzereinstellungen" @@ -119,8 +119,8 @@ msgstr "Fehler beim Speichern von Benutzereinstellungen" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -140,6 +140,7 @@ msgstr "" "Passwort sind ungültig." #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "Mitglied wurde nicht gefunden" @@ -149,14 +150,14 @@ msgstr "Mitglied wurde nicht gefunden" msgid "No profile found for the moderator user" msgstr "Kein Profil für den Moderator-Benutzer gefunden" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" "Es wurde kein Benutzer gefunden, der mit dieser E-Mail validiert werden kann" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "Es wurde kein Benutzer mit dieser E-Mail gefunden" @@ -179,43 +180,43 @@ msgstr "Profil ist nicht im Besitz des authentifizierten Benutzers" msgid "Registrations are not open" msgstr "Registrierungen sind nicht geöffnet" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "Das aktuelle Passwort ist ungültig" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "Die neue E-Mail scheint nicht gültig zu sein" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "Die neue E-Mail muss anders lauten" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "Das neue Passwort muss anders lauten" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "Das angegebene Passwort ist ungültig" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" "Das von Ihnen gewählte Passwort ist zu kurz. Bitte stellen Sie sicher, dass " "Ihr Passwort mindestens 6 Zeichen enthält." -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "Dieser Benutzer kann sein Passwort nicht zurücksetzen" @@ -225,18 +226,18 @@ msgstr "Dieser Benutzer kann sein Passwort nicht zurücksetzen" msgid "This user has been disabled" msgstr "Dieser Benutzer wurde deaktiviert" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "Benutzer kann nicht validiert werden" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "Benutzer bereits deaktiviert" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "Angeforderter Benutzer ist nicht eingeloggt" @@ -246,7 +247,7 @@ msgstr "Angeforderter Benutzer ist nicht eingeloggt" msgid "You are already a member of this group" msgstr "Sie sind bereits Mitglied in dieser Gruppe" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "" @@ -263,12 +264,12 @@ msgstr "Sie können dieser Gruppe nicht beitreten" msgid "You may not list groups unless moderator." msgstr "Sie dürfen keine Gruppen auflisten, es sei denn, Sie sind Moderator." -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "Sie müssen eingeloggt sein, um Ihre E-Mail zu ändern" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "Sie müssen eingeloggt sein, um Ihr Passwort zu ändern" @@ -278,7 +279,7 @@ msgstr "Sie müssen eingeloggt sein, um Ihr Passwort zu ändern" msgid "You need to be logged-in to delete a group" msgstr "Sie müssen eingeloggt sein, um eine Gruppe zu löschen" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "Sie müssen eingeloggt sein, um Ihr Konto zu löschen" @@ -288,7 +289,7 @@ msgstr "Sie müssen eingeloggt sein, um Ihr Konto zu löschen" msgid "You need to be logged-in to join a group" msgstr "Sie müssen eingeloggt sein, um einer Gruppe beizutreten" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "Sie müssen eingeloggt sein, um eine Gruppe zu verlassen" @@ -304,8 +305,8 @@ msgid "You need to have an existing token to get a refresh token" msgstr "" "Sie müssen ein bestehendes Token haben, um ein Refresh-Token zu erhalten" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "Sie haben erneut eine Bestätigungs-E-Mail zu früh angefordert" @@ -910,7 +911,7 @@ msgstr "Das Bild ist zu groß" msgid "Error while creating resource" msgstr "Fehler beim Speichern des Reports" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "Ungültiges Aktivierungstoken" @@ -958,7 +959,7 @@ msgstr "Veranstaltung nicht gefunden" msgid "Error while creating a discussion" msgstr "Fehler beim Speichern des Reports" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "Fehler beim Aktualisieren des Reports" @@ -979,12 +980,12 @@ msgid "Failed to update the group" msgstr "Aktualisierung der Gruppe fehlgeschlagen" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "Das Aktualisieren der E-Mail des Benutzers fehlgeschlagen" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "Benutzer kann nicht validiert werden" @@ -1004,7 +1005,7 @@ msgstr "Unbekannter Fehler beim Aktualisieren der Ressource" msgid "You are not the comment creator" msgstr "Sie sind nicht der Ersteller des Kommentars" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "Sie können Ihr Passwort nicht ändern." @@ -1046,47 +1047,47 @@ msgstr "Nur Gruppen können Veranstaltungen erstellen" msgid "Unknown error while creating event" msgstr "Unbekannter Fehler beim Erstellen einer Veranstaltung" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "Benutzer kann E-Mail nicht ändern" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "Follower stimmt nicht mit Ihrem Konto überein" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "Follower nicht gefunden" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "Person mit Benutzernamen %{username} nicht gefunden" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "Dieses Profil gehört nicht Ihnen" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "Sie folgen dieser Gruppe bereits" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "Sie müssen eingeloggt sein, um einer Gruppe beizutreten" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "Sie müssen eingeloggt sein, um einer Gruppe beizutreten" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "Sie müssen eingeloggt sein, um eine Gruppe zu aktualisieren" @@ -1147,3 +1148,9 @@ msgstr "Keine Instanz gefunden um dieser Adresse zu folgen" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "Die neue E-Mail scheint nicht gültig zu sein" diff --git a/priv/gettext/default.pot b/priv/gettext/default.pot index 625a5c8f9..19e01219c 100644 --- a/priv/gettext/default.pot +++ b/priv/gettext/default.pot @@ -732,6 +732,7 @@ msgstr "" msgid "You requested a new password for your account on %{instance}." msgstr "" +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -795,7 +796,7 @@ msgstr "" msgid "Flagged comments" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -915,7 +916,7 @@ msgstr "" msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it." msgstr "" -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -936,9 +937,9 @@ msgstr "" msgid "View report:" msgstr "" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "" @@ -959,9 +960,9 @@ msgstr "" msgid "What's up today?" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -997,11 +998,6 @@ msgstr "" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "" - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1028,13 +1024,13 @@ msgstr "" 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 "" -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." msgstr "" -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1206,7 +1202,7 @@ msgstr "" msgid "Profile reported" msgstr "" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1285,8 +1281,8 @@ msgstr "" msgid "This is a demonstration site to test Mobilizon." msgstr "" -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1333,12 +1329,12 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/en/LC_MESSAGES/activity.po b/priv/gettext/en/LC_MESSAGES/activity.po index 2d0efea74..75a979099 100644 --- a/priv/gettext/en/LC_MESSAGES/activity.po +++ b/priv/gettext/en/LC_MESSAGES/activity.po @@ -77,13 +77,13 @@ msgstr "" msgid "%{profile} deleted the discussion %{discussion}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -95,13 +95,13 @@ msgstr "" msgid "%{profile} excluded member %{member}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -125,7 +125,7 @@ msgstr "" msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/en/LC_MESSAGES/default.po b/priv/gettext/en/LC_MESSAGES/default.po index fa1d88e63..2c42c240e 100644 --- a/priv/gettext/en/LC_MESSAGES/default.po +++ b/priv/gettext/en/LC_MESSAGES/default.po @@ -785,6 +785,7 @@ msgstr "" msgid "You requested a new password for your account on %{instance}." msgstr "You requested a new password for your account on %{instance}." +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -848,7 +849,7 @@ msgstr "Event updated!" msgid "Flagged comments" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -968,7 +969,7 @@ msgstr "Event has been confirmed" msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it." msgstr "" -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -989,9 +990,9 @@ msgstr "View the report" msgid "View report:" msgstr "View the report" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "" @@ -1012,9 +1013,9 @@ msgstr "View the updated event on: %{link}" msgid "What's up today?" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1050,11 +1051,6 @@ msgstr "" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "Please do not use it in any real way" - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1081,13 +1077,13 @@ msgstr "" 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 "" -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." msgstr "" -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1259,7 +1255,7 @@ msgstr "" msgid "Profile reported" msgstr "" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1338,8 +1334,8 @@ msgstr "" msgid "This is a demonstration site to test Mobilizon." msgstr "This is a demonstration site to test the beta version of Mobilizon." -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1386,12 +1382,12 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/en/LC_MESSAGES/errors.po b/priv/gettext/en/LC_MESSAGES/errors.po index 9ddaaf24e..faf680beb 100644 --- a/priv/gettext/en/LC_MESSAGES/errors.po +++ b/priv/gettext/en/LC_MESSAGES/errors.po @@ -113,7 +113,7 @@ msgstr "" msgid "Current profile is not an administrator of the selected group" msgstr "" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "" @@ -122,8 +122,8 @@ msgstr "" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -141,6 +141,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "" #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "" @@ -150,13 +151,13 @@ msgstr "" msgid "No profile found for the moderator user" msgstr "" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "" @@ -179,41 +180,41 @@ msgstr "" msgid "Registrations are not open" msgstr "" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "" @@ -223,18 +224,18 @@ msgstr "" msgid "This user has been disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "" @@ -244,7 +245,7 @@ msgstr "" msgid "You are already a member of this group" msgstr "" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "" @@ -259,12 +260,12 @@ msgstr "" msgid "You may not list groups unless moderator." msgstr "" -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "" @@ -274,7 +275,7 @@ msgstr "" msgid "You need to be logged-in to delete a group" msgstr "" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "" @@ -284,7 +285,7 @@ msgstr "" msgid "You need to be logged-in to join a group" msgstr "" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "" @@ -299,8 +300,8 @@ msgstr "" msgid "You need to have an existing token to get a refresh token" msgstr "" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "" @@ -884,7 +885,7 @@ msgstr "" msgid "Error while creating resource" msgstr "" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "" @@ -926,7 +927,7 @@ msgstr "" msgid "Error while creating a discussion" msgstr "" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "" @@ -947,12 +948,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "" @@ -972,7 +973,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1012,47 +1013,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "" @@ -1111,3 +1112,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "" diff --git a/priv/gettext/errors.pot b/priv/gettext/errors.pot index b03268aaf..b149e9991 100644 --- a/priv/gettext/errors.pot +++ b/priv/gettext/errors.pot @@ -110,7 +110,7 @@ msgstr "" msgid "Current profile is not an administrator of the selected group" msgstr "" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "" @@ -119,8 +119,8 @@ msgstr "" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -138,6 +138,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "" #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "" @@ -147,13 +148,13 @@ msgstr "" msgid "No profile found for the moderator user" msgstr "" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "" @@ -176,41 +177,41 @@ msgstr "" msgid "Registrations are not open" msgstr "" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "" @@ -220,18 +221,18 @@ msgstr "" msgid "This user has been disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "" @@ -241,7 +242,7 @@ msgstr "" msgid "You are already a member of this group" msgstr "" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "" @@ -256,12 +257,12 @@ msgstr "" msgid "You may not list groups unless moderator." msgstr "" -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "" @@ -271,7 +272,7 @@ msgstr "" msgid "You need to be logged-in to delete a group" msgstr "" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "" @@ -281,7 +282,7 @@ msgstr "" msgid "You need to be logged-in to join a group" msgstr "" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "" @@ -296,8 +297,8 @@ msgstr "" msgid "You need to have an existing token to get a refresh token" msgstr "" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "" @@ -881,7 +882,7 @@ msgstr "" msgid "Error while creating resource" msgstr "" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "" @@ -923,7 +924,7 @@ msgstr "" msgid "Error while creating a discussion" msgstr "" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "" @@ -944,12 +945,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "" @@ -969,7 +970,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1009,47 +1010,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "" @@ -1108,3 +1109,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format +msgid "This email doesn't seem to be valid" +msgstr "" diff --git a/priv/gettext/es/LC_MESSAGES/activity.po b/priv/gettext/es/LC_MESSAGES/activity.po index d666817c8..d6b5d3ac2 100644 --- a/priv/gettext/es/LC_MESSAGES/activity.po +++ b/priv/gettext/es/LC_MESSAGES/activity.po @@ -84,13 +84,13 @@ msgstr "%{profile} creó el recurso %{resource}." msgid "%{profile} deleted the discussion %{discussion}." msgstr "%{profile} eliminó la discusión %{discussion}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "%{profile} borró la carpeta %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -102,13 +102,13 @@ msgstr "%{profile} eliminado el recurso %{resource}." msgid "%{profile} excluded member %{member}." msgstr "%{profile }miembro excluido %{member}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "%{profile} movió la carpeta %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -133,7 +133,7 @@ msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" "%{profile} ha renombrado la carpeta de %{old_resource_title} a %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/es/LC_MESSAGES/default.po b/priv/gettext/es/LC_MESSAGES/default.po index b29317aa7..a4cf0af20 100644 --- a/priv/gettext/es/LC_MESSAGES/default.po +++ b/priv/gettext/es/LC_MESSAGES/default.po @@ -930,6 +930,7 @@ msgstr "" msgid "You requested a new password for your account on %{instance}." msgstr "Solicitó una nueva contraseña para su cuenta en %{instance} ." +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -997,7 +998,7 @@ msgstr "¡Evento actualizado!" msgid "Flagged comments" msgstr "Comentarios marcados" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -1135,7 +1136,7 @@ msgstr "" "Este evento aún no se ha confirmado: los organizadores te avisarán si lo " "confirman." -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -1157,9 +1158,9 @@ msgstr "Ver el informe" msgid "View report:" msgstr "Ver el informe:" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "Visita la página del evento" @@ -1180,9 +1181,9 @@ msgstr "Ver el evento actualizado en: %{link}" msgid "What's up today?" msgstr "Qué pasa hoy?" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1224,11 +1225,6 @@ msgstr "¡Vas!" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "Si no activó el cambio usted mismo, ignore este mensaje." -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "Por favor no lo use de ninguna manera real." - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1263,7 +1259,7 @@ msgstr "" "Ha sido eliminado del grupo% {link_start} %{group} % {link_end}. Ya " "no podrá acceder al contenido privado de este grupo." -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." @@ -1271,7 +1267,7 @@ msgstr "" "Como este grupo estaba ubicado en otra instancia, seguirá funcionando para " "otras instancias además de esta." -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1529,7 +1525,7 @@ msgstr "Se informó el perfil %{profile}" msgid "Profile reported" msgstr "Perfil informado" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1612,8 +1608,8 @@ msgstr "Lo sentimos, pero algo salió mal por nuestra parte." msgid "This is a demonstration site to test Mobilizon." msgstr "Este es un sitio de demostración para probar Mobilizon." -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1665,14 +1661,14 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "Flujo público para %{instance}" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." 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:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/es/LC_MESSAGES/errors.po b/priv/gettext/es/LC_MESSAGES/errors.po index 478996992..c0dbd3185 100644 --- a/priv/gettext/es/LC_MESSAGES/errors.po +++ b/priv/gettext/es/LC_MESSAGES/errors.po @@ -110,7 +110,7 @@ msgstr "El perfil actual no es miembro de este grupo" 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:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "Error al guardar los parámetros del usuario" @@ -119,8 +119,8 @@ msgstr "Error al guardar los parámetros del usuario" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -139,6 +139,7 @@ msgstr "" "Imposible autenticarse, su correo electrónico o contraseña no son válidos." #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "Miembro no encontrado" @@ -148,13 +149,13 @@ msgstr "Miembro no encontrado" msgid "No profile found for the moderator user" msgstr "No se encontró el perfil del usuario moderador" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "No se encontró ningún usuario para validar con este correo electrónico" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "No se encontró ningún usuario con este correo electrónico" @@ -177,43 +178,43 @@ msgstr "El perfil no es propiedad del usuario autenticado" msgid "Registrations are not open" msgstr "Las inscripciones no están abiertas" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "La contraseña actual no es válida" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "El nuevo correo electrónico no parece ser válido" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "El nuevo correo electrónico debe ser diferente" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "La nueva contraseña debe ser diferente" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "La contraseña proporcionada no es válida" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format 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:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "Este usuario no puede restablecer su contraseña" @@ -223,18 +224,18 @@ msgstr "Este usuario no puede restablecer su contraseña" msgid "This user has been disabled" msgstr "Este usuario ha sido inhabilitado" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "No se puede validar al usuario" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "El usuario ya está inhabilitado" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "El usuario solicitado no ha iniciado sesión" @@ -244,7 +245,7 @@ msgstr "El usuario solicitado no ha iniciado sesión" msgid "You are already a member of this group" msgstr "Ya eres miembro de este grupo" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "No puedes dejar este grupo porque eres el único administrador" @@ -259,12 +260,12 @@ msgstr "No puedes unirte a este grupo" msgid "You may not list groups unless moderator." msgstr "No puedes enumerar grupos a menos que seas moderador." -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format 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:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "Debes iniciar sesión para cambiar tu contraseña" @@ -274,7 +275,7 @@ msgstr "Debes iniciar sesión para cambiar tu contraseña" 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:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "Debes iniciar sesión para eliminar su cuenta" @@ -284,7 +285,7 @@ msgstr "Debes iniciar sesión para eliminar su cuenta" 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:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "Debes iniciar sesión para dejar un grupo" @@ -299,8 +300,8 @@ msgstr "Debes iniciar sesión para actualizar un grupo" 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:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "" @@ -901,7 +902,7 @@ msgstr "La imagen proporcionada es demasiado pesada" msgid "Error while creating resource" msgstr "Error al crear el recurso" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "Token de activación no válido" @@ -949,7 +950,7 @@ msgstr "Evento no encontrado" msgid "Error while creating a discussion" msgstr "Error al crear el recurso" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "Error al actualizar el informe" @@ -970,12 +971,12 @@ msgid "Failed to update the group" msgstr "No se pudo actualizar el grupo" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "No se pudo actualizar el correo electrónico del usuario" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "No se puede validar al usuario" @@ -995,7 +996,7 @@ msgstr "Error desconocido al actualizar el recurso" msgid "You are not the comment creator" msgstr "No eres el creador de comentarios" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "No puede cambiar su contraseña." @@ -1036,47 +1037,47 @@ msgstr "Solo los grupos pueden crear eventos" msgid "Unknown error while creating event" msgstr "Error desconocido al crear el evevento" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "El usuario no puede cambiar el correo electrónico" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "Seguir no conduce a tu cuenta" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "Seguimiento no encontrado" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "Persona con nombre de usuario %{username} no encontrada" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "Este perfil no te pertenece" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "Ya estas siguiendo este grupo" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "Debes iniciar sesión para eliminar su cuenta" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "Debes iniciar sesión para eliminar su cuenta" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "Debes iniciar sesión para actualizar un grupo" @@ -1139,3 +1140,9 @@ msgid "Username must only contain alphanumeric lowercased characters and undersc msgstr "" "El nombre de usuario solo debe contener caracteres alfanuméricos en " "minúsculas y guiones bajos." + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "El nuevo correo electrónico no parece ser válido" diff --git a/priv/gettext/fi/LC_MESSAGES/activity.po b/priv/gettext/fi/LC_MESSAGES/activity.po index 0fd27fb66..84264a490 100644 --- a/priv/gettext/fi/LC_MESSAGES/activity.po +++ b/priv/gettext/fi/LC_MESSAGES/activity.po @@ -84,13 +84,13 @@ msgstr "%{profile} loi resurssin %{resource}." msgid "%{profile} deleted the discussion %{discussion}." msgstr "%{profile} poisti keskustelun %{discussion}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "%{profile} poisti kansion %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -102,13 +102,13 @@ msgstr "%{profile} poisti resurssin %{resource}." msgid "%{profile} excluded member %{member}." msgstr "%{profile} hylkäsi jäsenen %{member}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "%{profile} siirsi kansion %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -132,7 +132,7 @@ msgstr "%{profile} muutti keskustelun %{discussion} nimer." msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "%{profile} muutti kansion %{old_resource_title} nimeksi %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/fi/LC_MESSAGES/default.po b/priv/gettext/fi/LC_MESSAGES/default.po index f38b698f4..3d8d2ef71 100644 --- a/priv/gettext/fi/LC_MESSAGES/default.po +++ b/priv/gettext/fi/LC_MESSAGES/default.po @@ -913,6 +913,7 @@ msgstr "" msgid "You requested a new password for your account on %{instance}." msgstr "Pyysit uutta salasanaa tilillesi palvelimella %{instance}." +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -980,7 +981,7 @@ msgstr "Tapahtuma päivitetty!" msgid "Flagged comments" msgstr "Merkityt kommentit" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -1118,7 +1119,7 @@ msgstr "" "Tapahtumaa ei ole vielä vahvistettu. Järjestäjät ilmoittavat vahvistamisesta " "myöhemmin." -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -1139,9 +1140,9 @@ msgstr "Näytä raportti" msgid "View report:" msgstr "Näytä raportti:" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "Käy tapahtumasivulla" @@ -1162,9 +1163,9 @@ msgstr "Katso päivitetty tapahtuma: %{linkki}" msgid "What's up today?" msgstr "Mitä tänään tapahtuu?" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1206,11 +1207,6 @@ msgstr "Olet mukana!" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "Jos et tehnyt vaihtoa itse, voit jättää tämän viestin huomiotta." -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "Älä käytä todellisiin tarkoituksiin." - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1245,7 +1241,7 @@ msgstr "" "Sinut on poistettu ryhmästä %{link_start}%{group}%{link_end}. Et voi " "enää käyttää ryhmän yksityistä sisältöä." -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." @@ -1253,7 +1249,7 @@ msgstr "" "Koska tämä ryhmä sijaitsi toisella palvelimella, sen toiminta jatkuu muilla " "kuin tällä palvelimella." -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1502,7 +1498,7 @@ msgstr "Profiilista %{profile} tehtiin ilmoitus" msgid "Profile reported" msgstr "Profiili ilmoitettu" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1587,8 +1583,8 @@ msgstr "Pahoittelemme, tapahtui virhe palvelimen päässä." msgid "This is a demonstration site to test Mobilizon." msgstr "Tämä on koekäyttöön tarkoitettu Mobilizonin esittelysivu." -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1637,12 +1633,12 @@ msgstr "Mobilizon-palvelin näyttää olevan väliakaisesti alhaalla." msgid "Public feed for %{instance}" msgstr "Palvelimen %{instance} julkinen syöte" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/fi/LC_MESSAGES/errors.po b/priv/gettext/fi/LC_MESSAGES/errors.po index 0a4e25fe8..ac3ccd58e 100644 --- a/priv/gettext/fi/LC_MESSAGES/errors.po +++ b/priv/gettext/fi/LC_MESSAGES/errors.po @@ -110,7 +110,7 @@ msgstr "Nykyinen profiili ei kuulu tähän ryhmään" msgid "Current profile is not an administrator of the selected group" msgstr "Nykyinen profiili ei ole valitun ryhmän ylläpitäjä" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "Käyttäjän asetusten tallennuksessa tapahtui virhe" @@ -119,8 +119,8 @@ msgstr "Käyttäjän asetusten tallennuksessa tapahtui virhe" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -139,6 +139,7 @@ msgstr "" "Kirjautuminen epäonnistui - joko sähköpostiosoitteesi tai salasana on väärin." #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "Jäsentä ei löydy" @@ -148,13 +149,13 @@ msgstr "Jäsentä ei löydy" msgid "No profile found for the moderator user" msgstr "Moderaattorikäyttäjän profiilia ei löydy" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "Käyttäjää tämän sähköpostin vahvistamiseksi ei löydy" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "Käyttäjää, jolla on tämä sähköpostiosoite ei löydy" @@ -177,43 +178,43 @@ msgstr "Profiili ei ole tunnistautuneen käyttäjän omistuksessa" msgid "Registrations are not open" msgstr "Ei voi rekisteröityä" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "Nykyinen salasana ei kelpaa" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "Uusi sähköpostiosoite ei vaikuta kelvolliselta" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "Uuden sähköpostiosoitteen on poikettava vanhasta" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "Uuden salasanan on poikettava vanhasta" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "Annettu salasana on epäkelpo" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" "Valitsemasi salasana on liian lyhyt. Käytä vähintään kuuden merkin mittaista " "salasanaa." -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "Käyttäjä ei voi palauttaa salasanaansa" @@ -223,18 +224,18 @@ msgstr "Käyttäjä ei voi palauttaa salasanaansa" msgid "This user has been disabled" msgstr "Käyttäjä on poistettu käytöstä" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "Käyttäjää ei voi vahvistaa" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "Käyttäjä on jo poistettu käytöstä" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "Pyydetty käyttäjä ei ole kirjautuneena sisään" @@ -244,7 +245,7 @@ msgstr "Pyydetty käyttäjä ei ole kirjautuneena sisään" msgid "You are already a member of this group" msgstr "Olet jo tämän ryhmän jäsen" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "Et voi poistua ryhmästä, koska olet sen ainoa ylläpitäjä" @@ -259,12 +260,12 @@ msgstr "Et voi liittyä tähän ryhmään" msgid "You may not list groups unless moderator." msgstr "Voit nähdä ryhmäluettelon vain, jos olet moderaattori." -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "Sähköpostiosoitteen voi vaihtaa vain sisäänkirjautuneena" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "Salasanan voi vaihtaa vain sisäänkirjautuneena" @@ -274,7 +275,7 @@ msgstr "Salasanan voi vaihtaa vain sisäänkirjautuneena" msgid "You need to be logged-in to delete a group" msgstr "Ryhmän voi poistaa vain sisäänkirjautuneena" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "Voit poistaa tilisi vain sisäänkirjautuneena" @@ -284,7 +285,7 @@ msgstr "Voit poistaa tilisi vain sisäänkirjautuneena" msgid "You need to be logged-in to join a group" msgstr "Voit liittyä ryhmään vain sisäänkirjautuneena" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "Voit poistua ryhmästä vain sisäänkirjautuneena" @@ -299,8 +300,8 @@ msgstr "Voit päivittää ryhmää vain sisäänkirjautuneena" msgid "You need to have an existing token to get a refresh token" msgstr "Voit saada uuden merkin vain, jos sinulla on jo merkki" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "Pyysit uutta vahvistussähköpostia liian aikaisin" @@ -887,7 +888,7 @@ msgstr "Toimitettu kuva on liian suuri" msgid "Error while creating resource" msgstr "Virhe raporttia tallennettaessa" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "Virheellinen aktivointimerkki" @@ -929,7 +930,7 @@ msgstr "Tapahtumaa ei löydy" msgid "Error while creating a discussion" msgstr "Virhe raporttia tallennettaessa" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "Virhe raporttia päivitettäessä" @@ -950,12 +951,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "Käyttäjää ei voi vahvistaa" @@ -975,7 +976,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1015,47 +1016,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "Käyttäjänimellä %{username} ei löydy henkilöä" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "Voit liittyä ryhmään vain sisäänkirjautuneena" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "Voit liittyä ryhmään vain sisäänkirjautuneena" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "Voit päivittää ryhmää vain sisäänkirjautuneena" @@ -1114,3 +1115,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "Uusi sähköpostiosoite ei vaikuta kelvolliselta" diff --git a/priv/gettext/fr/LC_MESSAGES/activity.po b/priv/gettext/fr/LC_MESSAGES/activity.po index 32a3525f5..378b8790c 100644 --- a/priv/gettext/fr/LC_MESSAGES/activity.po +++ b/priv/gettext/fr/LC_MESSAGES/activity.po @@ -87,13 +87,13 @@ msgstr "%{profile} a créé la resource %{resource}." msgid "%{profile} deleted the discussion %{discussion}." msgstr "%{profile} a créé la discussion %{discussion}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "%{profile} a supprimé le dossier %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -105,13 +105,13 @@ msgstr "%{profile} a supprimé la resource %{resource}." msgid "%{profile} excluded member %{member}." msgstr "%{profile} a exclu le ou la membre %{member}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "%{profile} a déplacé le dossier %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -135,7 +135,7 @@ msgstr "%{profile} a renommé la discussion %{discussion}." msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "%{profile} a renommé le dossier %{old_resource_title} en %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/fr/LC_MESSAGES/default.po b/priv/gettext/fr/LC_MESSAGES/default.po index 41949a329..42aafb871 100644 --- a/priv/gettext/fr/LC_MESSAGES/default.po +++ b/priv/gettext/fr/LC_MESSAGES/default.po @@ -332,10 +332,7 @@ msgstr "Utilisation du site par des mineurs" #: lib/web/templates/api/privacy.html.heex:68 #, elixir-autogen, elixir-format 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 nous fournissez peut être utilisée pour vous " "envoyer des informations, des mises à jour et des notifications concernant " @@ -347,9 +344,7 @@ msgstr "" #: lib/web/templates/api/privacy.html.heex:61 #, elixir-autogen, elixir-format 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 "" "Afin d'aider à la modération de la communauté, par exemple en comparant " "votre adresse IP avec d'autres adresses connues\n" @@ -359,9 +354,7 @@ msgstr "" #: lib/web/templates/api/privacy.html.heex:54 #, elixir-autogen, elixir-format 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\n" @@ -962,6 +955,7 @@ msgstr "" "Vous avez demandé un nouveau mot de passe pour votre compte sur " "%{instance}." +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -1031,7 +1025,7 @@ msgstr "Événement mis à jour !" msgid "Flagged comments" msgstr "Commentaires signalés" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -1177,7 +1171,7 @@ msgstr "" "Cet événement doit encore être confirmé : les organisateur·ices vous feront " "savoir si l'événement est confirmé." -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -1201,8 +1195,8 @@ msgid "View report:" msgstr "Voir le signalement :" #: lib/web/templates/email/email_anonymous_activity.html.heex:82 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "Voir la page de l'événement" @@ -1223,9 +1217,9 @@ msgstr "Voir l'événement mis à jour sur : %{link}" msgid "What's up today?" msgstr "Quoi de neuf aujourd'hui ?" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1271,12 +1265,9 @@ msgstr "" "Si vous n'êtes pas à l'origine de cette modification, merci d'ignorer ce " "message." -#: lib/web/templates/email/email.html.heex:112 +#: lib/web/templates/email/group_member_removal.html.heex:64 +#: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "Veuillez ne pas l'utiliser pour un cas réel." - -#: lib/web/templates/email/group_member_removal.html.heex:64 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." @@ -1306,7 +1297,7 @@ 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." -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." @@ -1314,7 +1305,7 @@ msgstr "" "Comme ce groupe était originaire d'une autre instance, il continuera à " "fonctionner pour d'autres instances que celle-ci." -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1335,7 +1326,7 @@ 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." -#: lib/web/email/group.ex:90 +#: lib/web/email/group.ex:92 #, elixir-autogen, elixir-format msgid "The group %{group} has been suspended on %{instance}" msgstr "Le groupe %{group} a été suspendu sur %{instance}" @@ -1579,7 +1570,7 @@ msgstr "Le profil %{profile} a été signalé" msgid "Profile reported" msgstr "Profil signalé" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1596,17 +1587,12 @@ msgstr "Un texte est requis pour le billet" msgid "A title is required for the post" msgstr "Un titre est requis pour le billet" -#: lib/web/templates/email/instance_follow.text.eex:5 -#, elixir-autogen, elixir-format -msgid "%{name} (%{domain}) just requested to follow your instance." -msgstr "%{name} (%{domain}) vient de demander à suivre votre instance." - -#: lib/web/email/follow.ex:53 +#: lib/web/email/follow.ex:61 #, elixir-autogen, elixir-format msgid "%{name} requests to follow your instance" msgstr "%{name} demande à suivre votre instance" -#: lib/web/templates/email/instance_follow.html.heex:61 +#: lib/web/templates/email/instance_follow.html.heex:53 #: lib/web/templates/email/instance_follow.text.eex:6 #, elixir-autogen, elixir-format msgid "If you accept, this instance will receive all of your public events." @@ -1614,12 +1600,12 @@ msgstr "" "Si vous acceptez, leur instance recevra tous les événements publics de votre " "instance." -#: lib/web/email/follow.ex:47 +#: lib/web/email/follow.ex:54 #, elixir-autogen, elixir-format 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.heex:93 +#: lib/web/templates/email/instance_follow.html.heex:84 #: lib/web/templates/email/instance_follow.text.eex:9 #, elixir-autogen, elixir-format msgid "To accept this invitation, head over to the instance's admin settings." @@ -1633,15 +1619,6 @@ msgstr "" msgid "Want to connect?" msgstr "Voulez-vous vous connecter ?" -#: lib/web/templates/email/instance_follow.html.heex:76 -#: lib/web/templates/email/instance_follow.text.eex:7 -#, elixir-autogen, elixir-format -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." - #: lib/web/templates/email/anonymous_participation_confirmation.html.heex:47 #, elixir-autogen, elixir-format msgid "Hi there! You just registered to join this event: « %{title} ». Please confirm the e-mail address you provided:" @@ -1683,10 +1660,10 @@ msgstr "" msgid "This is a demonstration site to test Mobilizon." msgstr "Ceci est un site de démonstration permettant de tester Mobilizon." -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 -#: lib/service/metadata/instance.ex:56 -#: lib/service/metadata/instance.ex:62 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 +#: lib/service/metadata/instance.ex:60 +#: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format msgid "%{name}'s feed" msgstr "Flux de %{name}" @@ -1736,14 +1713,14 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "Flux public pour %{instance}" -#: lib/graphql/resolvers/user.ex:316 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" "Le mot de passe que vous avez choisi est trop court. Assurez-vous que votre " "mot de passe contienne au moins 6 caractères." -#: lib/graphql/resolvers/user.ex:322 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" @@ -1779,8 +1756,6 @@ msgid "Your participation to %{event} on %{instance} has been cancelled!" msgstr "" "Votre participation à l'événement %{event} sur %{instance} a été annulée !" -#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems. -#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems. #. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems. #: lib/service/export/participants/csv.ex:81 #: lib/service/export/participants/ods.ex:86 @@ -1982,7 +1957,7 @@ msgstr "Participer :" msgid "Title: %{title}" msgstr "Titre : %{title}" -#: lib/web/email/group.ex:43 +#: lib/web/email/group.ex:45 #, elixir-autogen, elixir-format msgid "📅 Just scheduled by %{group}: %{event}" msgstr "📅 Programmé à l'instant par %{group} : %{event}" @@ -2240,17 +2215,12 @@ msgstr "" msgid "%{name} just requested to follow your instance." msgstr "%{name} vient de demander à suivre votre instance." -#: lib/web/templates/email/instance_follow.html.heex:48 -#, elixir-autogen, elixir-format -msgid "%{name} (%{domain}) just requested to follow your instance." -msgstr "%{name} (%{domain}) vient de demander à suivre votre instance." - -#: lib/web/templates/email/instance_follow.html.heex:54 +#: lib/web/templates/email/instance_follow.html.heex:47 #, elixir-autogen, elixir-format msgid "%{name} just requested to follow your instance." msgstr "%{name} demande à suivre votre instance." -#: lib/web/templates/email/instance_follow.html.heex:63 +#: lib/web/templates/email/instance_follow.html.heex:55 #: lib/web/templates/email/instance_follow.text.eex:6 #, elixir-autogen, elixir-format msgid "If you accept, this profile will receive all of your public events." @@ -2258,7 +2228,7 @@ msgstr "" "Si vous acceptez, ce profil recevra tous les événements publics de votre " "instance." -#: lib/web/templates/email/instance_follow.html.heex:97 +#: lib/web/templates/email/instance_follow.html.heex:88 #: lib/web/templates/email/instance_follow.text.eex:9 #, elixir-autogen, elixir-format msgid "To accept this invitation, head over to the profile's admin page." @@ -2266,158 +2236,158 @@ msgstr "" "Pour accepter cette invitation, rendez-vous sur la page du profil dans " "l'administration." -#: lib/web/templates/email/instance_follow.html.heex:119 -#: lib/web/templates/email/instance_follow.html.heex:129 +#: lib/web/templates/email/instance_follow.html.heex:110 +#: lib/web/templates/email/instance_follow.html.heex:120 #, elixir-autogen, elixir-format msgid "View the details" msgstr "Voir les détails" -#: lib/mobilizon/events/categories.ex:16 +#: lib/mobilizon/events/categories.ex:32 #, elixir-autogen, elixir-format msgid "Arts" msgstr "Arts" -#: lib/mobilizon/events/categories.ex:52 +#: lib/mobilizon/events/categories.ex:68 #, elixir-autogen, elixir-format msgid "Auto, boat and air" msgstr "Automobile, bateaux et aéronautique" -#: lib/mobilizon/events/categories.ex:20 +#: lib/mobilizon/events/categories.ex:36 #, elixir-autogen, elixir-format msgid "Book clubs" msgstr "Clubs de lecture" -#: lib/mobilizon/events/categories.ex:24 +#: lib/mobilizon/events/categories.ex:40 #, elixir-autogen, elixir-format msgid "Business" msgstr "Entreprises" -#: lib/mobilizon/events/categories.ex:28 +#: lib/mobilizon/events/categories.ex:44 #, elixir-autogen, elixir-format msgid "Causes" msgstr "Causes" -#: lib/mobilizon/events/categories.ex:32 +#: lib/mobilizon/events/categories.ex:48 #, elixir-autogen, elixir-format msgid "Comedy" msgstr "Comédie" -#: lib/mobilizon/events/categories.ex:56 +#: lib/mobilizon/events/categories.ex:72 #, elixir-autogen, elixir-format msgid "Community" msgstr "Communauté" -#: lib/mobilizon/events/categories.ex:36 +#: lib/mobilizon/events/categories.ex:52 #, elixir-autogen, elixir-format msgid "Crafts" msgstr "Artisanat" -#: lib/mobilizon/events/categories.ex:60 +#: lib/mobilizon/events/categories.ex:76 #, elixir-autogen, elixir-format msgid "Family & Education" msgstr "Famille et éducation" -#: lib/mobilizon/events/categories.ex:64 +#: lib/mobilizon/events/categories.ex:80 #, elixir-autogen, elixir-format msgid "Fashion & Beauty" msgstr "Mode et beauté" -#: lib/mobilizon/events/categories.ex:68 +#: lib/mobilizon/events/categories.ex:84 #, elixir-autogen, elixir-format msgid "Film & Media" msgstr "Films et médias" -#: lib/mobilizon/events/categories.ex:40 +#: lib/mobilizon/events/categories.ex:56 #, elixir-autogen, elixir-format msgid "Food & Drink" msgstr "Alimentation et boissons" -#: lib/mobilizon/events/categories.ex:72 +#: lib/mobilizon/events/categories.ex:88 #, elixir-autogen, elixir-format msgid "Games" msgstr "Jeux" -#: lib/mobilizon/events/categories.ex:44 +#: lib/mobilizon/events/categories.ex:60 #, elixir-autogen, elixir-format msgid "Health" msgstr "Santé" -#: lib/mobilizon/events/categories.ex:84 +#: lib/mobilizon/events/categories.ex:100 #, elixir-autogen, elixir-format msgid "LGBTQ" msgstr "LGBTQ" -#: lib/mobilizon/events/categories.ex:76 +#: lib/mobilizon/events/categories.ex:92 #, elixir-autogen, elixir-format msgid "Language & Culture" msgstr "Langue et Culture" -#: lib/mobilizon/events/categories.ex:80 +#: lib/mobilizon/events/categories.ex:96 #, elixir-autogen, elixir-format msgid "Learning" msgstr "Apprentissage" -#: lib/mobilizon/events/categories.ex:133 +#: lib/mobilizon/events/categories.ex:149 #, elixir-autogen, elixir-format msgid "Meeting" msgstr "Rencontre" -#: lib/mobilizon/events/categories.ex:88 +#: lib/mobilizon/events/categories.ex:104 #, elixir-autogen, elixir-format msgid "Movements and politics" msgstr "Politique et organisations" -#: lib/mobilizon/events/categories.ex:48 +#: lib/mobilizon/events/categories.ex:64 #, elixir-autogen, elixir-format msgid "Music" msgstr "Musique" -#: lib/mobilizon/events/categories.ex:92 +#: lib/mobilizon/events/categories.ex:108 #, elixir-autogen, elixir-format msgid "Networking" msgstr "Réseautage" -#: lib/mobilizon/events/categories.ex:112 +#: lib/mobilizon/events/categories.ex:128 #, elixir-autogen, elixir-format msgid "Outdoors & Adventure" msgstr "Plein air et aventure" -#: lib/mobilizon/events/categories.ex:96 +#: lib/mobilizon/events/categories.ex:112 #, elixir-autogen, elixir-format msgid "Party" msgstr "Fête" -#: lib/mobilizon/events/categories.ex:100 +#: lib/mobilizon/events/categories.ex:116 #, elixir-autogen, elixir-format msgid "Performing & Visual Arts" msgstr "Arts du spectacle et arts visuels" -#: lib/mobilizon/events/categories.ex:104 +#: lib/mobilizon/events/categories.ex:120 #, elixir-autogen, elixir-format msgid "Pets" msgstr "Animaux domestiques" -#: lib/mobilizon/events/categories.ex:108 +#: lib/mobilizon/events/categories.ex:124 #, elixir-autogen, elixir-format msgid "Photography" msgstr "Photographie" -#: lib/mobilizon/events/categories.ex:120 +#: lib/mobilizon/events/categories.ex:136 #, elixir-autogen, elixir-format msgid "Science & Tech" msgstr "Science et technologie" -#: lib/mobilizon/events/categories.ex:116 +#: lib/mobilizon/events/categories.ex:132 #, elixir-autogen, elixir-format msgid "Spirituality, Religion & Beliefs" msgstr "Spiritualité, religion et croyances" -#: lib/mobilizon/events/categories.ex:124 +#: lib/mobilizon/events/categories.ex:140 #, elixir-autogen, elixir-format msgid "Sports" msgstr "Sports" -#: lib/mobilizon/events/categories.ex:128 +#: lib/mobilizon/events/categories.ex:144 #, elixir-autogen, elixir-format msgid "Theatre" msgstr "Théâtre" @@ -2433,13 +2403,18 @@ msgid "Activate my account:" msgstr "Activer mon compte :" #: lib/web/email/follow.ex:49 +#, elixir-autogen, elixir-format msgid "Instance %{domain} requests to follow your instance" msgstr "L'instance %{domain} demande à suivre votre instance" -#: lib/web/templates/email/instance_follow.html.heex:68 lib/web/templates/email/instance_follow.text.eex:7 +#: lib/web/templates/email/instance_follow.html.heex:68 +#: lib/web/templates/email/instance_follow.text.eex:7 +#, elixir-autogen, elixir-format msgid "Note: %{name} 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} vous suive n'implique pas nécessairement que vous suivez cette instance, mais vous pouvez demander à les suivre également." -#: lib/web/templates/email/group_member_removal.html.heex:18 lib/web/templates/email/group_member_removal.text.eex:1 +#: lib/web/templates/email/group_member_removal.html.heex:18 +#: lib/web/templates/email/group_member_removal.text.eex:1 +#, elixir-autogen, elixir-format msgid "Until next time!" msgstr "À la prochaine fois !" diff --git a/priv/gettext/fr/LC_MESSAGES/errors.po b/priv/gettext/fr/LC_MESSAGES/errors.po index 3ab96cf32..d15a83d16 100644 --- a/priv/gettext/fr/LC_MESSAGES/errors.po +++ b/priv/gettext/fr/LC_MESSAGES/errors.po @@ -10,19 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2022-10-27 14:38+0000\n" +"PO-Revision-Date: 2022-10-31 13:05+0100\n" "Last-Translator: Axel \n" -"Language-Team: French \n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Poedit 3.1.1\n" #: lib/mobilizon/discussions/discussion.ex:69 -#, elixir-autogen msgid "can't be blank" msgstr "ne peut pas être vide" @@ -99,1021 +97,778 @@ msgid "must be equal to %{number}" msgstr "doit être égal à %{number}" #: lib/graphql/resolvers/user.ex:115 -#, elixir-autogen, elixir-format msgid "Cannot refresh the token" msgstr "Impossible de rafraîchir le jeton" #: lib/graphql/resolvers/group.ex:276 -#, elixir-autogen, elixir-format msgid "Current profile is not a member of this group" msgstr "Le profil actuel n'est pas un membre de ce groupe" #: lib/graphql/resolvers/group.ex:280 -#, elixir-autogen, elixir-format msgid "Current profile is not an administrator of the selected group" msgstr "Le profil actuel n'est pas un·e administrateur·ice du groupe sélectionné" -#: lib/graphql/resolvers/user.ex:618 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:627 msgid "Error while saving user settings" msgstr "Erreur lors de la sauvegarde des paramètres utilisateur" -#: lib/graphql/error.ex:101 -#: lib/graphql/resolvers/group.ex:273 -#: lib/graphql/resolvers/group.ex:305 -#: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/error.ex:101 lib/graphql/resolvers/group.ex:273 lib/graphql/resolvers/group.ex:305 +#: lib/graphql/resolvers/group.ex:342 lib/graphql/resolvers/group.ex:377 lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 -#, elixir-autogen, elixir-format msgid "Group not found" msgstr "Groupe non trouvé" -#: lib/graphql/resolvers/group.ex:98 -#: lib/graphql/resolvers/group.ex:102 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/group.ex:98 lib/graphql/resolvers/group.ex:102 msgid "Group with ID %{id} not found" msgstr "Groupe avec l'ID %{id} non trouvé" #: lib/graphql/resolvers/user.ex:93 -#, elixir-autogen, elixir-format msgid "Impossible to authenticate, either your email or password are invalid." msgstr "Impossible de s'authentifier, votre adresse e-mail ou bien votre mot de passe sont invalides." -#: lib/graphql/resolvers/group.ex:339 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/group.ex:339 lib/graphql/resolvers/group.ex:346 msgid "Member not found" msgstr "Membre non trouvé" #: lib/graphql/resolvers/actor.ex:94 -#, elixir-autogen, elixir-format msgid "No profile found for the moderator user" msgstr "Aucun profil trouvé pour l'utilisateur modérateur" -#: lib/graphql/resolvers/user.ex:280 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:283 msgid "No user to validate with this email was found" msgstr "Aucun·e utilisateur·ice à valider avec cet email n'a été trouvé·e" -#: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/person.ex:314 lib/graphql/resolvers/user.ex:313 msgid "No user with this email was found" msgstr "Aucun·e utilisateur·ice avec cette adresse e-mail n'a été trouvé·e" -#: lib/graphql/resolvers/feed_token.ex:28 -#: lib/graphql/resolvers/participant.ex:32 -#: lib/graphql/resolvers/participant.ex:210 -#: lib/graphql/resolvers/person.ex:236 -#: lib/graphql/resolvers/person.ex:353 -#: lib/graphql/resolvers/person.ex:389 -#: lib/graphql/resolvers/person.ex:396 -#: lib/graphql/resolvers/person.ex:425 +#: lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/participant.ex:32 +#: lib/graphql/resolvers/participant.ex:210 lib/graphql/resolvers/person.ex:236 lib/graphql/resolvers/person.ex:353 +#: lib/graphql/resolvers/person.ex:389 lib/graphql/resolvers/person.ex:396 lib/graphql/resolvers/person.ex:425 #: lib/graphql/resolvers/person.ex:440 -#, elixir-autogen, elixir-format msgid "Profile is not owned by authenticated user" msgstr "Le profil n'est pas possédé par l'utilisateur connecté" #: lib/graphql/resolvers/user.ex:167 -#, elixir-autogen, elixir-format msgid "Registrations are not open" msgstr "Les inscriptions ne sont pas ouvertes" -#: lib/graphql/resolvers/user.ex:435 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:444 msgid "The current password is invalid" msgstr "Le mot de passe actuel est invalid" -#: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/admin.ex:336 lib/graphql/resolvers/user.ex:487 msgid "The new email doesn't seem to be valid" msgstr "La nouvelle adresse e-mail ne semble pas être valide" -#: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/admin.ex:339 lib/graphql/resolvers/user.ex:490 msgid "The new email must be different" msgstr "La nouvelle adresse e-mail doit être différente" -#: lib/graphql/resolvers/user.ex:438 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:447 msgid "The new password must be different" msgstr "Le nouveau mot de passe doit être différent" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:494 lib/graphql/resolvers/user.ex:556 lib/graphql/resolvers/user.ex:559 msgid "The password provided is invalid" msgstr "Le mot de passe fourni est invalide" -#: lib/graphql/resolvers/user.ex:442 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:451 msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" "Le mot de passe que vous avez choisi est trop court. Merci de vous assurer que votre mot de passe contienne au moins " "6 caractères." -#: lib/graphql/resolvers/user.ex:300 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:306 msgid "This user can't reset their password" msgstr "Cet·te utilisateur·ice ne peut pas réinitialiser son mot de passe" #: lib/graphql/resolvers/user.ex:89 -#, elixir-autogen, elixir-format msgid "This user has been disabled" msgstr "Cet·te utilisateur·ice a été désactivé·e" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:261 lib/graphql/resolvers/user.ex:266 msgid "Unable to validate user" msgstr "Impossible de valider l'utilisateur·ice" -#: lib/graphql/resolvers/user.ex:528 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:537 msgid "User already disabled" msgstr "L'utilisateur·ice est déjà désactivé·e" -#: lib/graphql/resolvers/user.ex:593 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:602 msgid "User requested is not logged-in" msgstr "L'utilisateur·ice demandé·e n'est pas connecté·e" #: lib/graphql/resolvers/group.ex:311 -#, elixir-autogen, elixir-format msgid "You are already a member of this group" msgstr "Vous êtes déjà membre de ce groupe" -#: lib/graphql/resolvers/group.ex:346 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/group.ex:350 msgid "You can't leave this group because you are the only administrator" msgstr "Vous ne pouvez pas quitter ce groupe car vous en êtes le ou la seul·e administrateur·ice" #: lib/graphql/resolvers/group.ex:308 -#, elixir-autogen, elixir-format msgid "You cannot join this group" msgstr "Vous ne pouvez pas rejoindre ce groupe" #: lib/graphql/resolvers/group.ex:132 -#, elixir-autogen, elixir-format msgid "You may not list groups unless moderator." msgstr "Vous ne pouvez pas lister les groupes sauf à être modérateur·ice." -#: lib/graphql/resolvers/user.ex:493 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:502 msgid "You need to be logged-in to change your email" msgstr "Vous devez être connecté·e pour changer votre adresse e-mail" -#: lib/graphql/resolvers/user.ex:450 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:459 msgid "You need to be logged-in to change your password" msgstr "Vous devez être connecté·e pour changer votre mot de passe" #: lib/graphql/resolvers/group.ex:285 -#, elixir-autogen, elixir-format msgid "You need to be logged-in to delete a group" msgstr "Vous devez être connecté·e pour supprimer un groupe" -#: lib/graphql/resolvers/user.ex:555 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:564 msgid "You need to be logged-in to delete your account" msgstr "Vous devez être connecté·e pour supprimer votre compte" #: lib/graphql/resolvers/group.ex:316 -#, elixir-autogen, elixir-format msgid "You need to be logged-in to join a group" msgstr "Vous devez être connecté·e pour rejoindre un groupe" -#: lib/graphql/resolvers/group.ex:351 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/group.ex:355 msgid "You need to be logged-in to leave a group" msgstr "Vous devez être connecté·e pour quitter un groupe" #: lib/graphql/resolvers/group.ex:249 -#, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group" msgstr "Vous devez être connecté·e pour mettre à jour un groupe" #: lib/graphql/resolvers/user.ex:120 -#, elixir-autogen, elixir-format msgid "You need to have an existing token to get a refresh token" msgstr "Vous devez avoir un jeton existant pour obtenir un jeton de rafraîchissement" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:289 lib/graphql/resolvers/user.ex:316 msgid "You requested again a confirmation email too soon" msgstr "Vous avez à nouveau demandé un email de confirmation trop vite" #: lib/graphql/resolvers/user.ex:170 -#, elixir-autogen, elixir-format msgid "Your email is not on the allowlist" msgstr "Votre adresse e-mail n'est pas sur la liste d'autorisations" #: lib/graphql/resolvers/actor.ex:100 -#, elixir-autogen, elixir-format msgid "Error while performing background task" msgstr "Erreur lors de l'exécution d'une tâche d'arrière-plan" #: lib/graphql/resolvers/actor.ex:32 -#, elixir-autogen, elixir-format msgid "No profile found with this ID" msgstr "Aucun profil trouvé avec cet ID" -#: lib/graphql/resolvers/actor.ex:61 -#: lib/graphql/resolvers/actor.ex:97 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/actor.ex:61 lib/graphql/resolvers/actor.ex:97 msgid "No remote profile found with this ID" msgstr "Aucun profil distant trouvé avec cet ID" #: lib/graphql/resolvers/actor.ex:72 -#, elixir-autogen, elixir-format msgid "Only moderators and administrators can suspend a profile" msgstr "Seul·es les modérateur·ice et les administrateur·ices peuvent suspendre un profil" #: lib/graphql/resolvers/actor.ex:105 -#, elixir-autogen, elixir-format msgid "Only moderators and administrators can unsuspend a profile" msgstr "Seul·es les modérateur·ice et les administrateur·ices peuvent annuler la suspension d'un profil" #: lib/graphql/resolvers/actor.ex:29 -#, elixir-autogen, elixir-format msgid "Only remote profiles may be refreshed" msgstr "Seuls les profils distants peuvent être rafraîchis" #: lib/graphql/resolvers/actor.ex:64 -#, elixir-autogen, elixir-format msgid "Profile already suspended" msgstr "Le profil est déjà suspendu" #: lib/graphql/resolvers/participant.ex:96 -#, elixir-autogen, elixir-format msgid "A valid email is required by your instance" msgstr "Une adresse e-mail valide est requise par votre instance" -#: lib/graphql/resolvers/participant.ex:90 -#: lib/graphql/resolvers/participant.ex:143 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/participant.ex:90 lib/graphql/resolvers/participant.ex:143 msgid "Anonymous participation is not enabled" msgstr "La participation anonyme n'est pas activée" #: lib/graphql/resolvers/person.ex:210 -#, elixir-autogen, elixir-format msgid "Cannot remove the last administrator of a group" msgstr "Impossible de supprimer le ou la dernier·ère administrateur·ice d'un groupe" #: lib/graphql/resolvers/person.ex:207 -#, elixir-autogen, elixir-format msgid "Cannot remove the last identity of a user" msgstr "Impossible de supprimer le dernier profil d'un·e utilisateur·ice" #: lib/graphql/resolvers/comment.ex:126 -#, elixir-autogen, elixir-format msgid "Comment is already deleted" msgstr "Le commentaire est déjà supprimé" -#: lib/graphql/error.ex:103 -#: lib/graphql/resolvers/discussion.ex:69 -#, elixir-autogen, elixir-format +#: lib/graphql/error.ex:103 lib/graphql/resolvers/discussion.ex:69 msgid "Discussion not found" msgstr "Discussion non trouvée" -#: lib/graphql/resolvers/report.ex:71 -#: lib/graphql/resolvers/report.ex:90 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/report.ex:71 lib/graphql/resolvers/report.ex:90 msgid "Error while saving report" msgstr "Erreur lors de la sauvegarde du signalement" #: lib/graphql/resolvers/report.ex:110 -#, elixir-autogen, elixir-format msgid "Error while updating report" msgstr "Erreur lors de la mise à jour du signalement" #: lib/graphql/resolvers/participant.ex:131 -#, elixir-autogen, elixir-format msgid "Event id not found" msgstr "ID de l'événement non trouvé" -#: lib/graphql/error.ex:100 -#: lib/graphql/resolvers/event.ex:337 -#: lib/graphql/resolvers/event.ex:389 -#, elixir-autogen, elixir-format +#: lib/graphql/error.ex:100 lib/graphql/resolvers/event.ex:337 lib/graphql/resolvers/event.ex:389 msgid "Event not found" msgstr "Événement non trouvé" -#: lib/graphql/resolvers/participant.ex:87 -#: lib/graphql/resolvers/participant.ex:128 -#: lib/graphql/resolvers/participant.ex:155 -#: lib/graphql/resolvers/participant.ex:336 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/participant.ex:87 lib/graphql/resolvers/participant.ex:128 +#: lib/graphql/resolvers/participant.ex:155 lib/graphql/resolvers/participant.ex:336 msgid "Event with this ID %{id} doesn't exist" msgstr "L'événement avec cet ID %{id} n'existe pas" #: lib/graphql/resolvers/participant.ex:103 -#, elixir-autogen, elixir-format msgid "Internal Error" msgstr "Erreur interne" #: lib/graphql/resolvers/discussion.ex:219 -#, elixir-autogen, elixir-format msgid "No discussion with ID %{id}" msgstr "Aucune discussion avec l'ID %{id}" -#: lib/graphql/resolvers/todos.ex:80 -#: lib/graphql/resolvers/todos.ex:107 -#: lib/graphql/resolvers/todos.ex:179 -#: lib/graphql/resolvers/todos.ex:208 -#: lib/graphql/resolvers/todos.ex:237 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/todos.ex:80 lib/graphql/resolvers/todos.ex:107 lib/graphql/resolvers/todos.ex:179 +#: lib/graphql/resolvers/todos.ex:208 lib/graphql/resolvers/todos.ex:237 msgid "No profile found for user" msgstr "Aucun profil trouvé pour l'utilisateur modérateur" #: lib/graphql/resolvers/feed_token.ex:64 -#, elixir-autogen, elixir-format msgid "No such feed token" msgstr "Aucun jeton de flux correspondant" #: lib/graphql/resolvers/participant.ex:259 -#, elixir-autogen, elixir-format msgid "Participant already has role %{role}" msgstr "Le ou la participant·e a déjà le rôle %{role}" -#: lib/graphql/resolvers/participant.ex:187 -#: lib/graphql/resolvers/participant.ex:220 +#: lib/graphql/resolvers/participant.ex:187 lib/graphql/resolvers/participant.ex:220 #: lib/graphql/resolvers/participant.ex:263 -#, elixir-autogen, elixir-format msgid "Participant not found" msgstr "Participant·e non trouvé·e" #: lib/graphql/resolvers/person.ex:32 -#, elixir-autogen, elixir-format msgid "Person with ID %{id} not found" msgstr "Personne avec l'ID %{id} non trouvé" #: lib/graphql/resolvers/person.ex:56 -#, elixir-autogen, elixir-format msgid "Person with username %{username} not found" msgstr "Personne avec le nom %{name} non trouvé" -#: lib/graphql/resolvers/post.ex:169 -#: lib/graphql/resolvers/post.ex:203 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/post.ex:169 lib/graphql/resolvers/post.ex:203 msgid "Post ID is not a valid ID" msgstr "L'ID du billet n'est pas un ID valide" -#: lib/graphql/resolvers/post.ex:172 -#: lib/graphql/resolvers/post.ex:206 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/post.ex:172 lib/graphql/resolvers/post.ex:206 msgid "Post doesn't exist" msgstr "Le billet n'existe pas" #: lib/graphql/resolvers/member.ex:84 -#, elixir-autogen, elixir-format msgid "Profile invited doesn't exist" msgstr "Le profil invité n'existe pas" -#: lib/graphql/resolvers/member.ex:93 -#: lib/graphql/resolvers/member.ex:97 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97 msgid "Profile is already a member of this group" msgstr "Ce profil est déjà membre de ce groupe" -#: lib/graphql/resolvers/post.ex:133 -#: lib/graphql/resolvers/post.ex:175 -#: lib/graphql/resolvers/post.ex:209 -#: lib/graphql/resolvers/resource.ex:90 -#: lib/graphql/resolvers/resource.ex:135 -#: lib/graphql/resolvers/resource.ex:168 -#: lib/graphql/resolvers/resource.ex:202 -#: lib/graphql/resolvers/todos.ex:58 -#: lib/graphql/resolvers/todos.ex:83 -#: lib/graphql/resolvers/todos.ex:110 -#: lib/graphql/resolvers/todos.ex:182 -#: lib/graphql/resolvers/todos.ex:214 +#: lib/graphql/resolvers/post.ex:133 lib/graphql/resolvers/post.ex:175 lib/graphql/resolvers/post.ex:209 +#: lib/graphql/resolvers/resource.ex:90 lib/graphql/resolvers/resource.ex:135 lib/graphql/resolvers/resource.ex:168 +#: lib/graphql/resolvers/resource.ex:202 lib/graphql/resolvers/todos.ex:58 lib/graphql/resolvers/todos.ex:83 +#: lib/graphql/resolvers/todos.ex:110 lib/graphql/resolvers/todos.ex:182 lib/graphql/resolvers/todos.ex:214 #: lib/graphql/resolvers/todos.ex:246 -#, elixir-autogen, elixir-format msgid "Profile is not member of group" msgstr "Le profil n'est pas un·e membre du groupe" -#: lib/graphql/resolvers/actor.ex:67 -#: lib/graphql/resolvers/person.ex:233 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/actor.ex:67 lib/graphql/resolvers/person.ex:233 msgid "Profile not found" msgstr "Profile non trouvé" #: lib/graphql/resolvers/report.ex:48 -#, elixir-autogen, elixir-format msgid "Report not found" msgstr "Groupe non trouvé" -#: lib/graphql/resolvers/resource.ex:172 -#: lib/graphql/resolvers/resource.ex:199 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/resource.ex:172 lib/graphql/resolvers/resource.ex:199 msgid "Resource doesn't exist" msgstr "La ressource n'existe pas" #: lib/graphql/resolvers/participant.ex:124 -#, elixir-autogen, elixir-format msgid "The event has already reached its maximum capacity" msgstr "L'événement a déjà atteint sa capacité maximale" #: lib/graphql/resolvers/participant.ex:282 -#, elixir-autogen, elixir-format msgid "This token is invalid" msgstr "Ce jeton est invalide" -#: lib/graphql/resolvers/todos.ex:176 -#: lib/graphql/resolvers/todos.ex:243 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/todos.ex:176 lib/graphql/resolvers/todos.ex:243 msgid "Todo doesn't exist" msgstr "Ce todo n'existe pas" -#: lib/graphql/resolvers/todos.ex:77 -#: lib/graphql/resolvers/todos.ex:211 -#: lib/graphql/resolvers/todos.ex:240 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/todos.ex:77 lib/graphql/resolvers/todos.ex:211 lib/graphql/resolvers/todos.ex:240 msgid "Todo list doesn't exist" msgstr "Cette todo-liste n'existe pas" #: lib/graphql/resolvers/feed_token.ex:73 -#, elixir-autogen, elixir-format msgid "Token does not exist" msgstr "Ce jeton n'existe pas" -#: lib/graphql/resolvers/feed_token.ex:67 -#: lib/graphql/resolvers/feed_token.ex:70 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/feed_token.ex:67 lib/graphql/resolvers/feed_token.ex:70 msgid "Token is not a valid UUID" msgstr "Ce jeton n'est pas un UUID valide" #: lib/graphql/error.ex:98 -#, elixir-autogen, elixir-format msgid "User not found" msgstr "Utilisateur·ice non trouvé·e" #: lib/graphql/resolvers/person.ex:310 -#, elixir-autogen, elixir-format msgid "You already have a profile for this user" msgstr "Vous avez déjà un profil pour cet utilisateur" #: lib/graphql/resolvers/participant.ex:134 -#, elixir-autogen, elixir-format msgid "You are already a participant of this event" msgstr "Vous êtes déjà un·e participant·e à cet événement" #: lib/graphql/resolvers/member.ex:87 -#, elixir-autogen, elixir-format msgid "You are not a member of this group" msgstr "Vous n'êtes pas membre de ce groupe" -#: lib/graphql/resolvers/member.ex:157 -#: lib/graphql/resolvers/member.ex:173 -#: lib/graphql/resolvers/member.ex:188 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173 lib/graphql/resolvers/member.ex:188 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" #: lib/graphql/resolvers/comment.ex:59 -#, elixir-autogen, elixir-format 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" #: lib/graphql/resolvers/feed_token.ex:41 -#, elixir-autogen, elixir-format 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" #: lib/graphql/resolvers/comment.ex:134 -#, elixir-autogen, elixir-format 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" #: lib/graphql/resolvers/feed_token.ex:82 -#, elixir-autogen, elixir-format 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" #: lib/graphql/resolvers/comment.ex:93 -#, elixir-autogen, elixir-format 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" -#: lib/graphql/resolvers/participant.ex:181 -#: lib/graphql/resolvers/participant.ex:214 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/participant.ex:181 lib/graphql/resolvers/participant.ex:214 msgid "You can't leave event because you're the only event creator participant" msgstr "Vous ne pouvez pas quitter cet événement car vous en êtes le ou la seule créateur·ice participant" #: lib/graphql/resolvers/member.ex:192 -#, elixir-autogen, elixir-format msgid "You can't set yourself to a lower member role for this group because you are the only administrator" msgstr "" "Vous ne pouvez pas vous définir avec un rôle de membre inférieur pour ce groupe car vous en êtes le ou la seul·e " "administrateur·ice" #: lib/graphql/resolvers/comment.ex:122 -#, elixir-autogen, elixir-format msgid "You cannot delete this comment" msgstr "Vous ne pouvez pas supprimer ce commentaire" #: lib/graphql/resolvers/event.ex:385 -#, elixir-autogen, elixir-format msgid "You cannot delete this event" msgstr "Vous ne pouvez pas supprimer cet événement" #: lib/graphql/resolvers/member.ex:90 -#, elixir-autogen, elixir-format msgid "You cannot invite to this group" msgstr "Vous ne pouvez pas rejoindre ce groupe" #: lib/graphql/resolvers/feed_token.ex:76 -#, elixir-autogen, elixir-format msgid "You don't have permission to delete this token" msgstr "Vous n'avez pas la permission de supprimer ce jeton" #: lib/graphql/resolvers/admin.ex:56 -#, elixir-autogen, elixir-format msgid "You need to be logged-in and a moderator to list action logs" msgstr "Vous devez être connecté·e et une modérateur·ice pour lister les journaux de modération" #: lib/graphql/resolvers/report.ex:36 -#, elixir-autogen, elixir-format msgid "You need to be logged-in and a moderator to list reports" msgstr "Vous devez être connecté·e et une modérateur·ice pour lister les signalements" #: lib/graphql/resolvers/report.ex:115 -#, elixir-autogen, elixir-format msgid "You need to be logged-in and a moderator to update a report" msgstr "Vous devez être connecté·e et une modérateur·ice pour modifier un signalement" #: lib/graphql/resolvers/report.ex:53 -#, elixir-autogen, elixir-format msgid "You need to be logged-in and a moderator to view a report" msgstr "Vous devez être connecté·e pour et une modérateur·ice pour visionner un signalement" #: lib/graphql/resolvers/admin.ex:252 -#, elixir-autogen, elixir-format msgid "You need to be logged-in and an administrator to access admin settings" msgstr "Vous devez être connecté·e et un·e administrateur·ice pour accéder aux paramètres administrateur" #: lib/graphql/resolvers/admin.ex:236 -#, elixir-autogen, elixir-format msgid "You need to be logged-in and an administrator to access dashboard statistics" msgstr "Vous devez être connecté·e et un·e administrateur·ice pour accéder aux panneau de statistiques" #: lib/graphql/resolvers/admin.ex:278 -#, elixir-autogen, elixir-format msgid "You need to be logged-in and an administrator to save admin settings" msgstr "Vous devez être connecté·e et un·e administrateur·ice pour sauvegarder les paramètres administrateur" #: lib/graphql/resolvers/discussion.ex:84 -#, elixir-autogen, elixir-format msgid "You need to be logged-in to access discussions" msgstr "Vous devez être connecté·e pour accéder aux discussions" #: lib/graphql/resolvers/resource.ex:96 -#, elixir-autogen, elixir-format msgid "You need to be logged-in to access resources" msgstr "Vous devez être connecté·e pour supprimer un groupe" #: lib/graphql/resolvers/event.ex:295 -#, elixir-autogen, elixir-format msgid "You need to be logged-in to create events" msgstr "Vous devez être connecté·e pour créer des événements" #: lib/graphql/resolvers/post.ex:141 -#, elixir-autogen, elixir-format msgid "You need to be logged-in to create posts" msgstr "Vous devez être connecté·e pour quitter un groupe" #: lib/graphql/resolvers/report.ex:87 -#, elixir-autogen, elixir-format msgid "You need to be logged-in to create reports" msgstr "Vous devez être connecté·e pour quitter un groupe" #: lib/graphql/resolvers/resource.ex:140 -#, elixir-autogen, elixir-format msgid "You need to be logged-in to create resources" msgstr "Vous devez être connecté·e pour quitter un groupe" #: lib/graphql/resolvers/event.ex:394 -#, elixir-autogen, elixir-format msgid "You need to be logged-in to delete an event" msgstr "Vous devez être connecté·e pour supprimer un groupe" #: lib/graphql/resolvers/post.ex:214 -#, elixir-autogen, elixir-format msgid "You need to be logged-in to delete posts" msgstr "Vous devez être connecté·e pour supprimer un groupe" #: lib/graphql/resolvers/resource.ex:207 -#, elixir-autogen, elixir-format msgid "You need to be logged-in to delete resources" msgstr "Vous devez être connecté·e pour supprimer un groupe" #: lib/graphql/resolvers/participant.ex:108 -#, elixir-autogen, elixir-format msgid "You need to be logged-in to join an event" msgstr "Vous devez être connecté·e pour rejoindre un événement" #: lib/graphql/resolvers/participant.ex:225 -#, elixir-autogen, elixir-format msgid "You need to be logged-in to leave an event" msgstr "Vous devez être connecté·e pour quitter un groupe" #: lib/graphql/resolvers/event.ex:351 -#, elixir-autogen, elixir-format msgid "You need to be logged-in to update an event" msgstr "Vous devez être connecté·e pour mettre à jour un groupe" #: lib/graphql/resolvers/post.ex:180 -#, elixir-autogen, elixir-format msgid "You need to be logged-in to update posts" msgstr "Vous devez être connecté·e pour mettre à jour un groupe" #: lib/graphql/resolvers/resource.ex:177 -#, elixir-autogen, elixir-format msgid "You need to be logged-in to update resources" msgstr "Vous devez être connecté·e pour mettre à jour un groupe" #: lib/graphql/resolvers/resource.ex:236 -#, elixir-autogen, elixir-format msgid "You need to be logged-in to view a resource preview" msgstr "Vous devez être connecté·e pour supprimer un groupe" #: lib/graphql/resolvers/resource.ex:132 -#, elixir-autogen, elixir-format msgid "Parent resource doesn't belong to this group" msgstr "La ressource parente n'appartient pas à ce groupe" #: lib/mobilizon/users/user.ex:114 -#, elixir-autogen, elixir-format msgid "The chosen password is too short." msgstr "Le mot de passe choisi est trop court." #: lib/mobilizon/users/user.ex:142 -#, elixir-autogen, elixir-format msgid "The registration token is already in use, this looks like an issue on our side." msgstr "Le jeton d'inscription est déjà utilisé, cela ressemble à un problème de notre côté." #: lib/mobilizon/users/user.ex:108 -#, elixir-autogen, elixir-format msgid "This email is already used." msgstr "Cette adresse e-mail est déjà utilisée." #: lib/graphql/error.ex:99 -#, elixir-autogen, elixir-format msgid "Post not found" msgstr "Billet non trouvé" #: lib/graphql/error.ex:86 -#, elixir-autogen, elixir-format msgid "Invalid arguments passed" msgstr "Paramètres fournis invalides" #: lib/graphql/error.ex:92 -#, elixir-autogen, elixir-format msgid "Invalid credentials" msgstr "Identifiants invalides" #: lib/graphql/error.ex:90 -#, elixir-autogen, elixir-format msgid "Reset your password to login" msgstr "Réinitialiser votre mot de passe pour vous connecter" -#: lib/graphql/error.ex:97 -#: lib/graphql/error.ex:102 -#, elixir-autogen, elixir-format +#: lib/graphql/error.ex:97 lib/graphql/error.ex:102 msgid "Resource not found" msgstr "Ressource non trouvée" #: lib/graphql/error.ex:104 -#, elixir-autogen, elixir-format msgid "Something went wrong" msgstr "Quelque chose s'est mal passé" #: lib/graphql/error.ex:85 -#, elixir-autogen, elixir-format msgid "Unknown Resource" msgstr "Ressource inconnue" #: lib/graphql/error.ex:95 -#, elixir-autogen, elixir-format msgid "You don't have permission to do this" msgstr "Vous n'avez pas la permission de faire ceci" #: lib/graphql/error.ex:87 -#, elixir-autogen, elixir-format msgid "You need to be logged in" msgstr "Vous devez être connecté·e" #: lib/graphql/resolvers/member.ex:118 -#, elixir-autogen, elixir-format msgid "You can't accept this invitation with this profile." msgstr "Vous ne pouvez pas accepter cette invitation avec ce profil." #: lib/graphql/resolvers/member.ex:139 -#, elixir-autogen, elixir-format msgid "You can't reject this invitation with this profile." msgstr "Vous ne pouvez pas rejeter cette invitation avec ce profil." #: lib/graphql/resolvers/media.ex:71 -#, elixir-autogen, elixir-format msgid "File doesn't have an allowed MIME type." msgstr "Le fichier n'a pas un type MIME autorisé." #: lib/graphql/resolvers/group.ex:244 -#, elixir-autogen, elixir-format msgid "Profile is not administrator for the group" msgstr "Le profil n'est pas administrateur·ice pour le groupe" #: lib/graphql/resolvers/event.ex:340 -#, elixir-autogen, elixir-format msgid "You can't edit this event." msgstr "Vous ne pouvez pas éditer cet événement." #: lib/graphql/resolvers/event.ex:343 -#, elixir-autogen, elixir-format msgid "You can't attribute this event to this profile." msgstr "Vous ne pouvez pas attribuer cet événement à ce profil." #: lib/graphql/resolvers/member.ex:142 -#, elixir-autogen, elixir-format msgid "This invitation doesn't exist." msgstr "Cette invitation n'existe pas." #: lib/graphql/resolvers/member.ex:217 -#, elixir-autogen, elixir-format msgid "This member already has been rejected." msgstr "Ce·tte membre a déjà été rejetté·e." #: lib/graphql/resolvers/member.ex:241 -#, elixir-autogen, elixir-format msgid "You don't have the right to remove this member." msgstr "Vous n'avez pas les droits pour supprimer ce·tte membre." #: lib/mobilizon/actors/actor.ex:377 -#, elixir-autogen, elixir-format msgid "This username is already taken." msgstr "Cet identifiant est déjà pris." #: lib/graphql/resolvers/discussion.ex:81 -#, elixir-autogen, elixir-format msgid "You must provide either an ID or a slug to access a discussion" msgstr "Vous devez fournir un ID ou bien un slug pour accéder à une discussion" #: lib/graphql/resolvers/event.ex:290 -#, elixir-autogen, elixir-format msgid "Organizer profile is not owned by the user" msgstr "Le profil de l'organisateur·ice n'appartient pas à l'utilisateur·ice" #: lib/graphql/resolvers/participant.ex:93 -#, elixir-autogen, elixir-format msgid "Profile ID provided is not the anonymous profile one" msgstr "L'ID du profil fourni n'est pas celui du profil anonyme" -#: lib/graphql/resolvers/group.ex:181 -#: lib/graphql/resolvers/group.ex:223 -#: lib/graphql/resolvers/person.ex:148 -#: lib/graphql/resolvers/person.ex:182 -#: lib/graphql/resolvers/person.ex:304 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/group.ex:181 lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/person.ex:148 +#: lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304 msgid "The provided picture is too heavy" msgstr "L'image fournie est trop lourde" #: lib/graphql/resolvers/resource.ex:129 -#, elixir-autogen, elixir-format msgid "Error while creating resource" msgstr "Erreur lors de la création de la resource" -#: lib/graphql/resolvers/user.ex:511 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:520 msgid "Invalid activation token" msgstr "Jeton d'activation invalide" #: lib/graphql/resolvers/resource.ex:226 -#, elixir-autogen, elixir-format msgid "Unable to fetch resource details from this URL." msgstr "Impossible de récupérer les détails de la ressource depuis cette URL." -#: lib/graphql/resolvers/event.ex:164 -#: lib/graphql/resolvers/participant.ex:253 -#: lib/graphql/resolvers/participant.ex:328 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:253 lib/graphql/resolvers/participant.ex:328 msgid "Provided profile doesn't have moderator permissions on this event" msgstr "Le profil modérateur fourni n'a pas de permissions sur cet événement" #: lib/graphql/resolvers/event.ex:276 -#, elixir-autogen, elixir-format msgid "Organizer profile doesn't have permission to create an event on behalf of this group" msgstr "Le profil de l'organisateur⋅ice n'a pas la permission de créer un événement au nom de ce groupe" #: lib/graphql/resolvers/event.ex:331 -#, elixir-autogen, elixir-format msgid "This profile doesn't have permission to update an event on behalf of this group" msgstr "Ce profil n'a pas la permission de mettre à jour un événement au nom du groupe" #: lib/graphql/resolvers/user.ex:174 -#, elixir-autogen, elixir-format msgid "Your e-mail has been denied registration or uses a disallowed e-mail provider" msgstr "Votre adresse e-mail a été refusée à l'inscription ou bien utilise un fournisseur d'e-mail interdit" #: lib/graphql/resolvers/comment.ex:129 -#, elixir-autogen, elixir-format msgid "Comment not found" msgstr "Commentaire non trouvé" #: lib/graphql/resolvers/discussion.ex:123 -#, elixir-autogen, elixir-format msgid "Error while creating a discussion" msgstr "Erreur lors de la création de la discussion" -#: lib/graphql/resolvers/user.ex:632 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:641 msgid "Error while updating locale" msgstr "Erreur lors de la mise à jour des options linguistiques" #: lib/graphql/resolvers/person.ex:307 -#, elixir-autogen, elixir-format msgid "Error while uploading pictures" msgstr "Erreur lors du téléversement des images" #: lib/graphql/resolvers/participant.ex:190 -#, elixir-autogen, elixir-format msgid "Failed to leave the event" msgstr "Impossible de quitter l'événement" #: lib/graphql/resolvers/group.ex:236 -#, elixir-autogen, elixir-format msgid "Failed to update the group" msgstr "Impossible de mettre à jour le groupe" -#: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/admin.ex:333 lib/graphql/resolvers/user.ex:484 msgid "Failed to update user email" msgstr "Impossible de mettre à jour l'adresse e-mail de utilisateur" -#: lib/graphql/resolvers/user.ex:507 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:516 msgid "Failed to validate user email" msgstr "Impossible de valider l'adresse e-mail de l'utilisateur·ice" #: lib/graphql/resolvers/participant.ex:146 -#, elixir-autogen, elixir-format msgid "The anonymous actor ID is invalid" msgstr "L'ID de l'acteur anonyme est invalide" #: lib/graphql/resolvers/resource.ex:165 -#, elixir-autogen, elixir-format msgid "Unknown error while updating resource" msgstr "Erreur inconnue lors de la mise à jour de la resource" #: lib/graphql/resolvers/comment.ex:84 -#, elixir-autogen, elixir-format msgid "You are not the comment creator" msgstr "Vous n'êtes pas le ou la createur⋅ice du commentaire" -#: lib/graphql/resolvers/user.ex:432 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:441 msgid "You cannot change your password." msgstr "Vous ne pouvez pas changer votre mot de passe." #: lib/graphql/resolvers/participant.ex:321 -#, elixir-autogen, elixir-format msgid "Format not supported" msgstr "Format non supporté" #: lib/graphql/resolvers/participant.ex:305 -#, elixir-autogen, elixir-format msgid "A dependency needed to export to %{format} is not installed" msgstr "Une dépendance nécessaire pour exporter en %{format} n'est pas installée" #: lib/graphql/resolvers/participant.ex:313 -#, elixir-autogen, elixir-format msgid "An error occured while saving export" msgstr "Une erreur est survenue lors de l'enregistrement de l'export" #: lib/web/controllers/export_controller.ex:30 -#, elixir-autogen, elixir-format msgid "Export to format %{format} is not enabled on this instance" msgstr "L'export au format %{format} n'est pas activé sur cette instance" #: lib/graphql/resolvers/group.ex:187 -#, elixir-autogen, elixir-format msgid "Only admins can create groups" msgstr "Seul⋅es les administrateur⋅ices peuvent créer des groupes" #: lib/graphql/resolvers/event.ex:283 -#, elixir-autogen, elixir-format msgid "Only groups can create events" msgstr "Seuls les groupes peuvent créer des événements" #: lib/graphql/resolvers/event.ex:269 -#, elixir-autogen, elixir-format msgid "Unknown error while creating event" msgstr "Erreur inconnue lors de la création de l'événement" -#: lib/graphql/resolvers/user.ex:488 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:497 msgid "User cannot change email" msgstr "L'utilisateur ne peut changer son adresse e-mail" -#: lib/graphql/resolvers/group.ex:395 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/group.ex:399 msgid "Follow does not match your account" msgstr "L'abonnement ne correspond pas à votre compte" -#: lib/graphql/resolvers/group.ex:399 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/group.ex:403 msgid "Follow not found" msgstr "Abonnement non trouvé" -#: lib/graphql/resolvers/user.ex:353 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:362 msgid "Profile with username %{username} not found" msgstr "Personne avec le nom %{name} non trouvé" -#: lib/graphql/resolvers/user.ex:348 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/user.ex:357 msgid "This profile does not belong to you" msgstr "Ce profil ne vous appartient pas" -#: lib/graphql/resolvers/group.ex:369 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/group.ex:373 msgid "You are already following this group" msgstr "Vous êtes déjà membre de ce groupe" -#: lib/graphql/resolvers/group.ex:378 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/group.ex:382 msgid "You need to be logged-in to follow a group" msgstr "Vous devez être connecté·e pour suivre un groupe" -#: lib/graphql/resolvers/group.ex:427 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/group.ex:431 msgid "You need to be logged-in to unfollow a group" msgstr "Vous devez être connecté·e pour rejoindre un groupe" -#: lib/graphql/resolvers/group.ex:404 -#, elixir-autogen, elixir-format +#: lib/graphql/resolvers/group.ex:408 msgid "You need to be logged-in to update a group follow" msgstr "Vous devez être connecté·e pour mettre à jour un groupe" #: lib/graphql/resolvers/member.ex:210 -#, elixir-autogen, elixir-format msgid "This member does not exist" msgstr "Ce membre n'existe pas" #: lib/graphql/resolvers/member.ex:234 -#, elixir-autogen, elixir-format msgid "You don't have the role needed to remove this member." msgstr "Vous n'avez pas les droits pour supprimer ce·tte membre." #: lib/graphql/resolvers/member.ex:252 -#, elixir-autogen, elixir-format msgid "You must be logged-in to remove a member" msgstr "Vous devez être connecté⋅e pour supprimer un⋅e membre" #: lib/graphql/resolvers/user.ex:164 -#, elixir-autogen, elixir-format msgid "Your email seems to be using an invalid format" msgstr "Votre email semble utiliser un format invalide" #: lib/graphql/resolvers/admin.ex:382 -#, elixir-autogen, elixir-format msgid "Can't confirm an already confirmed user" msgstr "Impossible de confirmer un⋅e utilisateur⋅ice déjà confirmé⋅e" #: lib/graphql/resolvers/admin.ex:386 -#, elixir-autogen, elixir-format msgid "Deconfirming users is not supported" msgstr "Dé-confirmer des utilisateur⋅ices n'est pas supporté" #: lib/graphql/resolvers/admin.ex:358 -#, elixir-autogen, elixir-format msgid "The new role must be different" msgstr "Le nouveau rôle doit être différent" #: lib/graphql/resolvers/admin.ex:309 -#, elixir-autogen, elixir-format msgid "You need to be logged-in and an administrator to edit an user's details" msgstr "Vous devez être connecté·e et un·e administrateur·ice pour éditer les détails d'un⋅e utilisateur⋅ice" #: lib/graphql/api/groups.ex:33 -#, elixir-autogen, elixir-format msgid "A profile or group with that name already exists" msgstr "Un profil ou un groupe avec ce nom existe déjà" #: lib/graphql/resolvers/admin.ex:519 -#, elixir-autogen, elixir-format msgid "Unable to find an instance to follow at this address" msgstr "Impossible de trouver une instance à suivre à cette adresse" #: lib/mobilizon/actors/actor.ex:396 -#, elixir-autogen, elixir-format, fuzzy msgid "Username must only contain alphanumeric lowercased characters and underscores." -msgstr "" -"Le nom d'utilisateur ne doit contenir que des caractères alphanumériques " -"minuscules et des underscores." +msgstr "Le nom d'utilisateur ne doit contenir que des caractères alphanumériques minuscules et des underscores." + +#: lib/graphql/resolvers/user.ex:286 lib/graphql/resolvers/user.ex:309 +msgid "This email doesn't seem to be valid" +msgstr "Cette adresse e-mail ne semble pas être valide" diff --git a/priv/gettext/gd/LC_MESSAGES/activity.po b/priv/gettext/gd/LC_MESSAGES/activity.po index 44efdf6ea..3e354de69 100644 --- a/priv/gettext/gd/LC_MESSAGES/activity.po +++ b/priv/gettext/gd/LC_MESSAGES/activity.po @@ -90,13 +90,13 @@ msgstr "Chruthaich %{profile} an goireas %{resource}." msgid "%{profile} deleted the discussion %{discussion}." msgstr "Sguab %{profile} às an deasbad %{discussion}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "Sguab %{profile} às am pasgan %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -108,13 +108,13 @@ msgstr "Sguab %{profile} às an goireas %{resource}." msgid "%{profile} excluded member %{member}." msgstr "Dhùin %{profile} am ball %{member} a-mach." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "Ghluais %{profile} am pasgan %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -138,7 +138,7 @@ msgstr "Thug %{profile} ainm ùr air an deasbad %{discussion}." msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "Thug %{profile} %{resource} air a’ phasgan %{old_resource_title}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/gd/LC_MESSAGES/default.po b/priv/gettext/gd/LC_MESSAGES/default.po index 4a2a578ab..5c5faff76 100644 --- a/priv/gettext/gd/LC_MESSAGES/default.po +++ b/priv/gettext/gd/LC_MESSAGES/default.po @@ -763,6 +763,7 @@ msgstr "" msgid "You requested a new password for your account on %{instance}." msgstr "" +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -828,7 +829,7 @@ msgstr "" msgid "Flagged comments" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -948,7 +949,7 @@ msgstr "" msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it." msgstr "" -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -969,9 +970,9 @@ msgstr "" msgid "View report:" msgstr "" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "" @@ -992,9 +993,9 @@ msgstr "" msgid "What's up today?" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1030,11 +1031,6 @@ msgstr "" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "" - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1061,13 +1057,13 @@ msgstr "" 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 "" -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." msgstr "" -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1239,7 +1235,7 @@ msgstr "" msgid "Profile reported" msgstr "" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1318,8 +1314,8 @@ msgstr "" msgid "This is a demonstration site to test Mobilizon." msgstr "" -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1366,12 +1362,12 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/gd/LC_MESSAGES/errors.po b/priv/gettext/gd/LC_MESSAGES/errors.po index bdd2f39ee..c58842997 100644 --- a/priv/gettext/gd/LC_MESSAGES/errors.po +++ b/priv/gettext/gd/LC_MESSAGES/errors.po @@ -115,7 +115,7 @@ msgstr "" msgid "Current profile is not an administrator of the selected group" msgstr "" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "" @@ -124,8 +124,8 @@ msgstr "" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -143,6 +143,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "" #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "" @@ -152,13 +153,13 @@ msgstr "" msgid "No profile found for the moderator user" msgstr "" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "" @@ -181,41 +182,41 @@ msgstr "" msgid "Registrations are not open" msgstr "" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "" @@ -225,18 +226,18 @@ msgstr "" msgid "This user has been disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "" @@ -246,7 +247,7 @@ msgstr "" msgid "You are already a member of this group" msgstr "" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "" @@ -261,12 +262,12 @@ msgstr "" msgid "You may not list groups unless moderator." msgstr "" -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "" @@ -276,7 +277,7 @@ msgstr "" msgid "You need to be logged-in to delete a group" msgstr "" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "" @@ -286,7 +287,7 @@ msgstr "" msgid "You need to be logged-in to join a group" msgstr "" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "" @@ -301,8 +302,8 @@ msgstr "" msgid "You need to have an existing token to get a refresh token" msgstr "" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "" @@ -886,7 +887,7 @@ msgstr "" msgid "Error while creating resource" msgstr "" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "" @@ -928,7 +929,7 @@ msgstr "" msgid "Error while creating a discussion" msgstr "" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "" @@ -949,12 +950,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "" @@ -974,7 +975,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1014,47 +1015,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "" @@ -1113,3 +1114,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "" diff --git a/priv/gettext/gl/LC_MESSAGES/activity.po b/priv/gettext/gl/LC_MESSAGES/activity.po index 5b151b9ed..fe01cebfc 100644 --- a/priv/gettext/gl/LC_MESSAGES/activity.po +++ b/priv/gettext/gl/LC_MESSAGES/activity.po @@ -77,13 +77,13 @@ msgstr "" msgid "%{profile} deleted the discussion %{discussion}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -95,13 +95,13 @@ msgstr "" msgid "%{profile} excluded member %{member}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -125,7 +125,7 @@ msgstr "" msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/gl/LC_MESSAGES/default.po b/priv/gettext/gl/LC_MESSAGES/default.po index 6b33d64c8..8f72864dc 100644 --- a/priv/gettext/gl/LC_MESSAGES/default.po +++ b/priv/gettext/gl/LC_MESSAGES/default.po @@ -909,6 +909,7 @@ msgid "You requested a new password for your account on %{instance}." msgstr "" "Solicitaches un novo contrasinal para a túa conta en %{instance}." +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -976,7 +977,7 @@ msgstr "Actualización do evento!" msgid "Flagged comments" msgstr "Comentarios marcados" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -1115,7 +1116,7 @@ msgstr "" "Este evento aínda ten que ser confirmado: a organización farache saber se o " "confirman." -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -1136,9 +1137,9 @@ msgstr "Ver denuncia" msgid "View report:" msgstr "Ver denuncia:" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "Visitar páxina do evento" @@ -1159,9 +1160,9 @@ msgstr "Visita a páxina do evento actualizada: %{link}" msgid "What's up today?" msgstr "Que temos para hoxe?" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1202,11 +1203,6 @@ msgstr "Vas ir!" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "Se non propiciaches ti o cambio, por favor ignora esta mensaxe." -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "Por favor, non o uses para eventos reais." - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1241,7 +1237,7 @@ msgstr "" "Foches eliminada do grupo %{link_start}%{group}%{link_end}. Agora non " "poderás acceder ós contidos privados deste grupo." -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." @@ -1249,7 +1245,7 @@ msgstr "" "Este grupo estaba localizado noutra instancia, seguirá funcionando para " "outras instancias pero non nesta." -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1498,7 +1494,7 @@ msgstr "O perfil %{profile} foi denunciado" msgid "Profile reported" msgstr "Perfil denunciado" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1582,8 +1578,8 @@ msgstr "Lamentámolo, pero algo está a fallar pola nosa parte." msgid "This is a demonstration site to test Mobilizon." msgstr "Este é un sitio web de exemplo para probar Mobilizon." -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1633,14 +1629,14 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "Fonte pública de %{instance}" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" "O contrasinal escollido é demasiado curto. Comproba que o teu contrasinal " "teña polo menos 6 caracteres." -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/gl/LC_MESSAGES/errors.po b/priv/gettext/gl/LC_MESSAGES/errors.po index 708fde865..408ed1d71 100644 --- a/priv/gettext/gl/LC_MESSAGES/errors.po +++ b/priv/gettext/gl/LC_MESSAGES/errors.po @@ -110,7 +110,7 @@ msgstr "O perfil actual non é membro deste grupo" msgid "Current profile is not an administrator of the selected group" msgstr "O perfil actual non é administrador do grupo seleccionado" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "Erro ó gardar os axustes de usuaria" @@ -119,8 +119,8 @@ msgstr "Erro ó gardar os axustes de usuaria" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -139,6 +139,7 @@ msgstr "" "A autenticación non foi posible, o contrasinal ou o email non son correctos." #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "Membro non atopado" @@ -148,13 +149,13 @@ msgstr "Membro non atopado" msgid "No profile found for the moderator user" msgstr "Non se atopou o perfil para a usuaria moderadora" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "Non se atopou unha usuaria con este email para validar" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "Non se atopa ningunha usuaria con este email" @@ -177,43 +178,43 @@ msgstr "O perfil non pertence a unha usuaria autenticada" msgid "Registrations are not open" msgstr "O rexistro está pechado" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "O contrasinal actual non é válido" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "O novo email non semella ser válido" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "O novo email ten que ser diferente" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "O novo contrasinal ten que ser diferente" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "O contrasinal escrito non é válido" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" "O contrasinal escollido é demasiado curto, ten que ter 6 caracteres polo " "menos." -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "Esta usuaria non pode restablecer o seu contrasinal" @@ -223,18 +224,18 @@ msgstr "Esta usuaria non pode restablecer o seu contrasinal" msgid "This user has been disabled" msgstr "Estab usuaria foi desactivada" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "Non se puido validar a usuaria" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "A usuaria xa está desactivada" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "A usuaria solicitada non está conectada" @@ -244,7 +245,7 @@ msgstr "A usuaria solicitada non está conectada" msgid "You are already a member of this group" msgstr "Xa es membro deste grupo" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "Non podes deixar este grupo porque es a única administradora" @@ -259,12 +260,12 @@ msgstr "Non podes unirte a este grupo" msgid "You may not list groups unless moderator." msgstr "Non podes facer listas de grupos porque non es moderadora." -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "Tes que estar conectada para poder cambiar o email" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "Tes que estar conectada para poder cambiar o contrasinal" @@ -274,7 +275,7 @@ msgstr "Tes que estar conectada para poder cambiar o contrasinal" msgid "You need to be logged-in to delete a group" msgstr "Tes que estar conectada para poder eleminar un grupo" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "Tes que estar conectada para poder eliminar a conta" @@ -284,7 +285,7 @@ msgstr "Tes que estar conectada para poder eliminar a conta" msgid "You need to be logged-in to join a group" msgstr "Tes que estar conectada para poder unirte a un grupo" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "Tes que estar conectada para poder deixar un grupo" @@ -299,8 +300,8 @@ msgstr "Tes que estar conectada para poder actualizar un grupo" msgid "You need to have an existing token to get a refresh token" msgstr "Tes que ter un token existente para obter un token actualizado" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "Solicitaches demasiado pronto un email de confirmación" @@ -896,7 +897,7 @@ msgstr "A imaxe proporcionada é demasiado grande (mb)" msgid "Error while creating resource" msgstr "Erro ao crear o recurso" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "O token de activación non é válido" @@ -943,7 +944,7 @@ msgstr "Evento non atopado" msgid "Error while creating a discussion" msgstr "Erro ao crear o recurso" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "Erro ó actualizar a denuncia" @@ -964,12 +965,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "Non se puido validar a usuaria" @@ -989,7 +990,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1029,47 +1030,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "Non se atopa a persoa con nome de usuaria %{username}" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "Tes que estar conectada para poder unirte a un grupo" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "Tes que estar conectada para poder unirte a un grupo" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "Tes que estar conectada para poder actualizar un grupo" @@ -1130,3 +1131,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "O novo email non semella ser válido" diff --git a/priv/gettext/he/LC_MESSAGES/activity.po b/priv/gettext/he/LC_MESSAGES/activity.po index e76d2f726..669d96e5e 100644 --- a/priv/gettext/he/LC_MESSAGES/activity.po +++ b/priv/gettext/he/LC_MESSAGES/activity.po @@ -90,13 +90,13 @@ msgstr "%{profile} יצר.ה את המשאב %{resource}." msgid "%{profile} deleted the discussion %{discussion}." msgstr "%{profile} מחק.ה את הדיון %{discussion}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "%{profile} מחק.ה את התיקייה %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -108,13 +108,13 @@ msgstr "%{profile} מחק.ה את המשאב %{resource}." msgid "%{profile} excluded member %{member}." msgstr "%{profile} הוציא.ה את החבר.ה %{member}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "%{profile} הזיז.ה את התיקייה %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -138,7 +138,7 @@ msgstr "%{profile} שינ.תה את כותרת הדיון %{discussion}." msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "%{profile} שינ.תה את השם התיקייה מ־%{old_resource_title} ל־%{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/he/LC_MESSAGES/default.po b/priv/gettext/he/LC_MESSAGES/default.po index e31500e49..2d7b07c70 100644 --- a/priv/gettext/he/LC_MESSAGES/default.po +++ b/priv/gettext/he/LC_MESSAGES/default.po @@ -745,6 +745,7 @@ msgstr "" msgid "You requested a new password for your account on %{instance}." msgstr "" +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -808,7 +809,7 @@ msgstr "" msgid "Flagged comments" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -928,7 +929,7 @@ msgstr "" msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it." msgstr "" -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -949,9 +950,9 @@ msgstr "" msgid "View report:" msgstr "" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "" @@ -972,9 +973,9 @@ msgstr "" msgid "What's up today?" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1010,11 +1011,6 @@ msgstr "" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "" - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1041,13 +1037,13 @@ msgstr "" 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 "" -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." msgstr "" -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1219,7 +1215,7 @@ msgstr "" msgid "Profile reported" msgstr "" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1298,8 +1294,8 @@ msgstr "" msgid "This is a demonstration site to test Mobilizon." msgstr "" -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1346,12 +1342,12 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/he/LC_MESSAGES/errors.po b/priv/gettext/he/LC_MESSAGES/errors.po index 937a087e0..5386280e9 100644 --- a/priv/gettext/he/LC_MESSAGES/errors.po +++ b/priv/gettext/he/LC_MESSAGES/errors.po @@ -103,7 +103,7 @@ msgstr "" msgid "Current profile is not an administrator of the selected group" msgstr "" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "" @@ -112,8 +112,8 @@ msgstr "" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -131,6 +131,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "" #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "" @@ -140,13 +141,13 @@ msgstr "" msgid "No profile found for the moderator user" msgstr "" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "" @@ -169,41 +170,41 @@ msgstr "" msgid "Registrations are not open" msgstr "" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "" @@ -213,18 +214,18 @@ msgstr "" msgid "This user has been disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "" @@ -234,7 +235,7 @@ msgstr "" msgid "You are already a member of this group" msgstr "" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "" @@ -249,12 +250,12 @@ msgstr "" msgid "You may not list groups unless moderator." msgstr "" -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "" @@ -264,7 +265,7 @@ msgstr "" msgid "You need to be logged-in to delete a group" msgstr "" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "" @@ -274,7 +275,7 @@ msgstr "" msgid "You need to be logged-in to join a group" msgstr "" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "" @@ -289,8 +290,8 @@ msgstr "" msgid "You need to have an existing token to get a refresh token" msgstr "" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "" @@ -874,7 +875,7 @@ msgstr "" msgid "Error while creating resource" msgstr "" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "" @@ -916,7 +917,7 @@ msgstr "" msgid "Error while creating a discussion" msgstr "" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "" @@ -937,12 +938,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "" @@ -962,7 +963,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1002,47 +1003,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "" @@ -1101,3 +1102,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "" diff --git a/priv/gettext/hr/LC_MESSAGES/activity.po b/priv/gettext/hr/LC_MESSAGES/activity.po index dc611ca19..21d4ae1b7 100644 --- a/priv/gettext/hr/LC_MESSAGES/activity.po +++ b/priv/gettext/hr/LC_MESSAGES/activity.po @@ -90,13 +90,13 @@ msgstr "%{profile} su stvorili resurs %{resource}." msgid "%{profile} deleted the discussion %{discussion}." msgstr "%{profile} su izbrisali razgovor %{discussion}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "%{profile} su izbrisali mapu %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -108,13 +108,13 @@ msgstr "%{profile} su izbrisali resurs %{resource}." msgid "%{profile} excluded member %{member}." msgstr "%{profile} su isključili člana %{member}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "%{profile} su premjestili mapu %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -138,7 +138,7 @@ msgstr "%{profile} su preimenovali razgovor %{discussion}." msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "%{profile} su preimenovali mapu iz %{old_resource_title} u %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/hr/LC_MESSAGES/default.po b/priv/gettext/hr/LC_MESSAGES/default.po index 2761789a9..b07ed5f51 100644 --- a/priv/gettext/hr/LC_MESSAGES/default.po +++ b/priv/gettext/hr/LC_MESSAGES/default.po @@ -781,6 +781,7 @@ msgstr "E-mail adresa za tvoj račun na %{host} mijenja se u:" msgid "You requested a new password for your account on %{instance}." msgstr "Zatražio/la si novu lozinku za tvoj račun na %{instance}." +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -853,7 +854,7 @@ msgstr "Aktualiziranje događaja!" msgid "Flagged comments" msgstr "Označeni komentari" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -983,7 +984,7 @@ msgstr "Ovaj je događaj potvrđen" msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it." msgstr "" -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -1004,9 +1005,9 @@ msgstr "Pogledaj izvještaj" msgid "View report:" msgstr "Pogledaj izvještaj:" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "Posjeti stranicu događaja" @@ -1027,9 +1028,9 @@ msgstr "Posjeti aktualiziranu stranicu događaja: %{link}" msgid "What's up today?" msgstr "Što je danas na redu?" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1069,11 +1070,6 @@ msgstr "" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "Nemoj to koristiti u stvarne svrhe." - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1100,13 +1096,13 @@ msgstr "" 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 "" -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." msgstr "" -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1289,7 +1285,7 @@ msgstr "" msgid "Profile reported" msgstr "" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1372,8 +1368,8 @@ msgstr "" msgid "This is a demonstration site to test Mobilizon." msgstr "Ovo je demonstracijska stranica za isprobavanje Mobilizona." -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1420,12 +1416,12 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "Odabrana lozinka je prekratka. Lozinka mora sadržati barem 6 znakova." -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/hr/LC_MESSAGES/errors.po b/priv/gettext/hr/LC_MESSAGES/errors.po index 98e9d83b9..431097c83 100644 --- a/priv/gettext/hr/LC_MESSAGES/errors.po +++ b/priv/gettext/hr/LC_MESSAGES/errors.po @@ -133,7 +133,7 @@ msgstr "Aktualni profil nije član grupe" msgid "Current profile is not an administrator of the selected group" msgstr "Aktualni profil nije administrator odabrane grupe" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "" @@ -142,8 +142,8 @@ msgstr "" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -161,6 +161,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "" #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "" @@ -170,13 +171,13 @@ msgstr "" msgid "No profile found for the moderator user" msgstr "" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "" @@ -199,41 +200,41 @@ msgstr "" msgid "Registrations are not open" msgstr "" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "Aktualna lozinka nije ispravna" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "" @@ -243,18 +244,18 @@ msgstr "" msgid "This user has been disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "" @@ -264,7 +265,7 @@ msgstr "" msgid "You are already a member of this group" msgstr "" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "" @@ -279,12 +280,12 @@ msgstr "Ne možeš se pridružiti ovoj grupi" msgid "You may not list groups unless moderator." msgstr "Ne možeš izraditi popis grupa ako nisi moderator." -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "Za mijenjanje e-mail adrese moraš biti prijavljen/a" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "Za mijenjanje lozinke moraš biti prijavljen/a" @@ -294,7 +295,7 @@ msgstr "Za mijenjanje lozinke moraš biti prijavljen/a" msgid "You need to be logged-in to delete a group" msgstr "Za brisanje grupe moraš biti prijavljen/a" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "Za brisanje tvog računa moraš biti prijavljen/a" @@ -304,7 +305,7 @@ msgstr "Za brisanje tvog računa moraš biti prijavljen/a" msgid "You need to be logged-in to join a group" msgstr "Za pridruživanje grupi moraš biti prijavljen/a" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "Za napuštanje grupe moraš biti prijavljen/a" @@ -319,8 +320,8 @@ msgstr "Za aktualiziranje grupe moraš biti prijavljen/a" msgid "You need to have an existing token to get a refresh token" msgstr "Za primanje tokena za osvježavanje moraš imati postojeći token" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "Ponovo si zatražio/la potvrdni e-mail prerano" @@ -916,7 +917,7 @@ msgstr "" msgid "Error while creating resource" msgstr "" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "" @@ -958,7 +959,7 @@ msgstr "" msgid "Error while creating a discussion" msgstr "" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "" @@ -979,12 +980,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "" @@ -1004,7 +1005,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1044,47 +1045,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "" @@ -1144,3 +1145,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "" diff --git a/priv/gettext/hu/LC_MESSAGES/activity.po b/priv/gettext/hu/LC_MESSAGES/activity.po index 3ba31d2cd..36dcbe6f7 100644 --- a/priv/gettext/hu/LC_MESSAGES/activity.po +++ b/priv/gettext/hu/LC_MESSAGES/activity.po @@ -85,13 +85,13 @@ msgstr "%{profile} létrehozta a(z) %{resource} erőforrást." msgid "%{profile} deleted the discussion %{discussion}." msgstr "%{profile} törölte a(z) %{discussion} megbeszélést." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "%{profile} törölte a(z) %{resource} mappát." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -103,13 +103,13 @@ msgstr "%{profile} törölte a(z) %{resource} erőforrást." msgid "%{profile} excluded member %{member}." msgstr "%{profile} kizárta %{member} tagot." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "%{profile} áthelyezte a(z) %{resource} mappát." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -134,7 +134,7 @@ msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" "%{profile} átnevezte a mappát %{old_resource_title} névről %{resource} névre." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/hu/LC_MESSAGES/default.po b/priv/gettext/hu/LC_MESSAGES/default.po index 8049b6969..c6636bc12 100644 --- a/priv/gettext/hu/LC_MESSAGES/default.po +++ b/priv/gettext/hu/LC_MESSAGES/default.po @@ -806,6 +806,7 @@ msgstr "" msgid "You requested a new password for your account on %{instance}." msgstr "" +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -869,7 +870,7 @@ msgstr "Eseményfrissítés!" msgid "Flagged comments" msgstr "Megjelölt hozzászólások" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -991,7 +992,7 @@ msgstr "" msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it." msgstr "" -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -1012,9 +1013,9 @@ msgstr "Jelentés megtekintése" msgid "View report:" msgstr "Jelentés megtekintése:" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "Eseményoldal felkeresése" @@ -1035,9 +1036,9 @@ msgstr "A frissített eseményoldal felkeresése: %{link}" msgid "What's up today?" msgstr "Mi lesz ma?" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1073,11 +1074,6 @@ msgstr "" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "" - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1104,13 +1100,13 @@ msgstr "" 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 "" -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." msgstr "" -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1285,7 +1281,7 @@ msgstr "" msgid "Profile reported" msgstr "" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1364,8 +1360,8 @@ msgstr "" msgid "This is a demonstration site to test Mobilizon." msgstr "Ez egy bemutató oldal a Mobilizon kipróbálásához." -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1412,12 +1408,12 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/hu/LC_MESSAGES/errors.po b/priv/gettext/hu/LC_MESSAGES/errors.po index e6d04fbbc..5f062e679 100644 --- a/priv/gettext/hu/LC_MESSAGES/errors.po +++ b/priv/gettext/hu/LC_MESSAGES/errors.po @@ -126,7 +126,7 @@ msgstr "A jelenlegi profil nem tagja ennek a csoportnak" msgid "Current profile is not an administrator of the selected group" msgstr "A jelenlegi profil nem adminisztrátora a kijelölt csoportnak" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "Hiba a felhasználói beállítások mentésekor" @@ -135,8 +135,8 @@ msgstr "Hiba a felhasználói beállítások mentésekor" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -154,6 +154,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "Lehetetlen hitelesíteni, vagy az e-mail, vagy a jelszó érvénytelen." #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "Nem található a tag" @@ -163,13 +164,13 @@ msgstr "Nem található a tag" msgid "No profile found for the moderator user" msgstr "Nem található profil a moderátor felhasználóhoz" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "Nem található ezzel az e-mail-címmel ellenőrzendő felhasználó" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "Nem található ezzel az e-mail-címmel rendelkező felhasználó" @@ -192,43 +193,43 @@ msgstr "A profilt nem hitelesített felhasználó birtokolja" msgid "Registrations are not open" msgstr "A regisztrációk nincsenek nyitva" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "A jelenlegi jelszó érvénytelen" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "Az új e-mail-cím nem tűnik érvényesnek" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "Az új e-mail-címnek eltérőnek kell lennie" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "Az új jelszónak eltérőnek kell lennie" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "A megadott jelszó érvénytelen" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" "A választott jelszó túl rövid. Győződjön meg arról, hogy a jelszava " "tartalmazzon legalább 6 karaktert." -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "Ez a felhasználó nem tudja visszaállítani a jelszavát" @@ -238,18 +239,18 @@ msgstr "Ez a felhasználó nem tudja visszaállítani a jelszavát" msgid "This user has been disabled" msgstr "Ez a felhasználó le lett tiltva" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "Nem lehet ellenőrizni a felhasználót" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "A felhasználó már le van tiltva" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "A kért felhasználó nincs bejelentkezve" @@ -259,7 +260,7 @@ msgstr "A kért felhasználó nincs bejelentkezve" msgid "You are already a member of this group" msgstr "Már tagja ennek a csoportnak" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "Nem hagyhatja el ezt a csoportot, mert Ön az egyedüli adminisztrátor" @@ -274,12 +275,12 @@ msgstr "Nem csatlakozhat ehhez a csoporthoz" msgid "You may not list groups unless moderator." msgstr "Lehet, hogy nem sorolhatja fel a csoportokat, hacsak nem moderátor." -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "Bejelentkezve kell lennie az e-mail-címe megváltoztatásához" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "Bejelentkezve kell lennie a jelszava megváltoztatásához" @@ -289,7 +290,7 @@ msgstr "Bejelentkezve kell lennie a jelszava megváltoztatásához" msgid "You need to be logged-in to delete a group" msgstr "Bejelentkezve kell lennie egy csoport törléséhez" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "Bejelentkezve kell lennie a fiókja törléséhez" @@ -299,7 +300,7 @@ msgstr "Bejelentkezve kell lennie a fiókja törléséhez" msgid "You need to be logged-in to join a group" msgstr "Bejelentkezve kell lennie egy csoporthoz való csatlakozáshoz" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "Bejelentkezve kell lennie egy csoportból való kilépéshez" @@ -314,8 +315,8 @@ msgstr "Bejelentkezve kell lennie egy csoport frissítéséhez" msgid "You need to have an existing token to get a refresh token" msgstr "Szüksége van egy meglévő tokenre egy frissítési token beszerzéséhez" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "Túl hamar kért újra egy megerősítő e-mailt" @@ -921,7 +922,7 @@ msgstr "A megadott fénykép túl nehéz" msgid "Error while creating resource" msgstr "Hiba az erőforrás létrehozáskor" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "Érvénytelen aktiválási token" @@ -970,7 +971,7 @@ msgstr "A hozzászólás nem található" msgid "Error while creating a discussion" msgstr "Hiba egy megbeszélés létrehozásakor" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "Hiba a területi beállítások frissítésekor" @@ -991,12 +992,12 @@ msgid "Failed to update the group" msgstr "Nem sikerült frissíteni a csoportot" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "Nem sikerült frissíteni a felhasználó e-mail-címét" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "Nem sikerült ellenőrizni a felhasználó e-mail-címét" @@ -1016,7 +1017,7 @@ msgstr "Ismeretlen hiba az erőforrás frissítésekor" msgid "You are not the comment creator" msgstr "Ön nem a hozzászólás létrehozója" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "Nem tudja megváltoztatni a jelszavát." @@ -1060,47 +1061,47 @@ msgstr "Csak csoportok hozhatnak létre eseményeket" msgid "Unknown error while creating event" msgstr "Ismeretlen hiba az esemény létrehozásakor" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "A felhasználó nem tudja megváltoztatni az e-mail-címét" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "A követés nem egyezik az Ön fiókjával" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "A követés nem található" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "Nem található %{username} felhasználónévvel rendelkező profil" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "Ez a profil nem Önhöz tartozik" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "Már követi ezt a csoportot" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "Bejelentkezve kell lennie egy csoport követéséhez" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "Bejelentkezve kell lennie egy csoport követésének megszüntetéséhez" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "Bejelentkezve kell lennie egy csoport követésének frissítéséhez" @@ -1161,3 +1162,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "Az új e-mail-cím nem tűnik érvényesnek" diff --git a/priv/gettext/id/LC_MESSAGES/activity.po b/priv/gettext/id/LC_MESSAGES/activity.po index 219965196..99e3941f8 100644 --- a/priv/gettext/id/LC_MESSAGES/activity.po +++ b/priv/gettext/id/LC_MESSAGES/activity.po @@ -89,13 +89,13 @@ msgstr "" msgid "%{profile} deleted the discussion %{discussion}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -107,13 +107,13 @@ msgstr "" msgid "%{profile} excluded member %{member}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -137,7 +137,7 @@ msgstr "" msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/id/LC_MESSAGES/default.po b/priv/gettext/id/LC_MESSAGES/default.po index b2391171c..8fc5684dd 100644 --- a/priv/gettext/id/LC_MESSAGES/default.po +++ b/priv/gettext/id/LC_MESSAGES/default.po @@ -778,6 +778,7 @@ msgstr "Alamat surel pada akun Anda di %{host} sedang diubah menjadi:" msgid "You requested a new password for your account on %{instance}." msgstr "" +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -840,7 +841,7 @@ msgstr "" msgid "Flagged comments" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -962,7 +963,7 @@ msgstr "Acara ini sudah dikonfirmasi" msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it." msgstr "" -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -983,9 +984,9 @@ msgstr "Lihat laporan" msgid "View report:" msgstr "" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "Kunjungi halaman acara" @@ -1006,9 +1007,9 @@ msgstr "Kunjungi halaman acara yang sudah diperbarui: %{link}" msgid "What's up today?" msgstr "Ada apa hari ini?" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1044,11 +1045,6 @@ msgstr "Anda ikut!" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "" - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1078,13 +1074,13 @@ msgstr "" 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 "" -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." msgstr "" -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1256,7 +1252,7 @@ msgstr "" msgid "Profile reported" msgstr "" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1335,8 +1331,8 @@ msgstr "" msgid "This is a demonstration site to test Mobilizon." msgstr "" -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1383,12 +1379,12 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/id/LC_MESSAGES/errors.po b/priv/gettext/id/LC_MESSAGES/errors.po index 7b8790a94..886501b21 100644 --- a/priv/gettext/id/LC_MESSAGES/errors.po +++ b/priv/gettext/id/LC_MESSAGES/errors.po @@ -104,7 +104,7 @@ msgstr "" msgid "Current profile is not an administrator of the selected group" msgstr "" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "" @@ -113,8 +113,8 @@ msgstr "" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -132,6 +132,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "" #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "" @@ -141,13 +142,13 @@ msgstr "" msgid "No profile found for the moderator user" msgstr "" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "" @@ -170,41 +171,41 @@ msgstr "" msgid "Registrations are not open" msgstr "" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "" @@ -214,18 +215,18 @@ msgstr "" msgid "This user has been disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "" @@ -235,7 +236,7 @@ msgstr "" msgid "You are already a member of this group" msgstr "" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "" @@ -250,12 +251,12 @@ msgstr "" msgid "You may not list groups unless moderator." msgstr "" -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "" @@ -265,7 +266,7 @@ msgstr "" msgid "You need to be logged-in to delete a group" msgstr "" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "" @@ -275,7 +276,7 @@ msgstr "" msgid "You need to be logged-in to join a group" msgstr "" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "" @@ -290,8 +291,8 @@ msgstr "" msgid "You need to have an existing token to get a refresh token" msgstr "" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "" @@ -875,7 +876,7 @@ msgstr "" msgid "Error while creating resource" msgstr "" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "" @@ -917,7 +918,7 @@ msgstr "" msgid "Error while creating a discussion" msgstr "" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "" @@ -938,12 +939,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "" @@ -963,7 +964,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1003,47 +1004,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "" @@ -1102,3 +1103,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "" diff --git a/priv/gettext/it/LC_MESSAGES/activity.po b/priv/gettext/it/LC_MESSAGES/activity.po index 82dc10a0e..5caf6da49 100644 --- a/priv/gettext/it/LC_MESSAGES/activity.po +++ b/priv/gettext/it/LC_MESSAGES/activity.po @@ -84,13 +84,13 @@ msgstr "%{profile} ha creato la risorsa %{resource}." msgid "%{profile} deleted the discussion %{discussion}." msgstr "%{profile} ha eliminato la discussione %{discussion}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "%{profile} ha eliminato la cartella %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -102,13 +102,13 @@ msgstr "%{profile} ha eliminato la risorsa %{resource}." msgid "%{profile} excluded member %{member}." msgstr "%{profile} ha escluso il membro %{member}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "%{profile} ha spostato la cartella %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -133,7 +133,7 @@ msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" "%{profile} ha rinominato la cartella da %{old_resource_title} a %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/it/LC_MESSAGES/default.po b/priv/gettext/it/LC_MESSAGES/default.po index 28bb77f2a..e68cb269d 100644 --- a/priv/gettext/it/LC_MESSAGES/default.po +++ b/priv/gettext/it/LC_MESSAGES/default.po @@ -933,6 +933,7 @@ msgid "You requested a new password for your account on %{instance}." msgstr "" "Hai richiesto una nuova password per il tuo account su % {instance} ." +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -1001,7 +1002,7 @@ msgstr "Evento aggiornato!" msgid "Flagged comments" msgstr "Commenti contrassegnati" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -1144,7 +1145,7 @@ msgstr "" "Questo evento deve ancora essere confermato: gli organizzatori ti faranno " "sapere se lo confermano." -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -1166,9 +1167,9 @@ msgstr "Visualizza la segnalazione" msgid "View report:" msgstr "Visualizza la segnalazione:" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "Visualizza la pagina dell'evento" @@ -1189,9 +1190,9 @@ msgstr "Visita la pagina dell'evento aggiornata:% {link}" msgid "What's up today?" msgstr "Cosa succede oggi?" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1234,11 +1235,6 @@ msgstr "Ce l'hai fatta!" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "Se non hai attivato tu stesso la modifica, ignora questo messaggio." -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr " Si prega di non utilizzarlo per scopi reali. " - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1273,7 +1269,7 @@ msgstr "" "Sei stato rimosso dal gruppo %{link_start}%{group}%{link_end}. Non " "potrai più accedere al contenuto privato di questo gruppo." -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." @@ -1281,7 +1277,7 @@ msgstr "" "Poiché questo gruppo era posizionato su un'altra istanza, continuerà a " "funzionare per altre istanze tranne questa." -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1541,7 +1537,7 @@ msgstr "Il profilo %{profile} è stato segnalato" msgid "Profile reported" msgstr "Profilo segnalato" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1628,8 +1624,8 @@ msgstr "Siamo spiacenti, ma qualcosa è andato storto da parte nostra." msgid "This is a demonstration site to test Mobilizon." msgstr "Questo è un sito di prova per testare Mobilizon." -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1679,12 +1675,12 @@ msgstr "Il server Mobilizon sembra essere temporaneamente inattivo." msgid "Public feed for %{instance}" msgstr "Feed pubblico per %{instance}" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "La password scelta è troppo corta, deve avere almeno 6 caratteri." -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/it/LC_MESSAGES/errors.po b/priv/gettext/it/LC_MESSAGES/errors.po index fd2428e8f..324b36372 100644 --- a/priv/gettext/it/LC_MESSAGES/errors.po +++ b/priv/gettext/it/LC_MESSAGES/errors.po @@ -110,7 +110,7 @@ msgstr "Il profilo corrente non è membro di questo gruppo" msgid "Current profile is not an administrator of the selected group" msgstr "Il profilo corrente non è amministratore del gruppo selezionato" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "Errore nel salvare le preferenze utente" @@ -119,8 +119,8 @@ msgstr "Errore nel salvare le preferenze utente" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -138,6 +138,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "Impossibile autenticarsi: email e/o password non validi." #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "Membro non trovato" @@ -147,13 +148,13 @@ msgstr "Membro non trovato" msgid "No profile found for the moderator user" msgstr "Nessun profilo trovato per l'utente moderatore" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "Nessun utente da convalidare trovato con questa email" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "Nessun utente con questa email" @@ -176,41 +177,41 @@ msgstr "L'utente autenticato non è propietario di questo profilo" msgid "Registrations are not open" msgstr "Le registrazioni non sono aperte" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "la password corrente non è valida" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "La nuova email sembra non valida" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "La nuova email dev'essere diversa" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "La nuova password deve essere diversa" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "La password assegnata non è valida" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "la password scelta è troppo corta, deve avere almeno 6 caratteri." -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "Questo utente non può resettare la password" @@ -220,18 +221,18 @@ msgstr "Questo utente non può resettare la password" msgid "This user has been disabled" msgstr "L'utente è stato disabilitato" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "Impossibile convalidare l'utente" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "Utente già disabilitato" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "L'utente richiesto non è loggato" @@ -241,7 +242,7 @@ msgstr "L'utente richiesto non è loggato" msgid "You are already a member of this group" msgstr "Sei già un membro di questo gruppo" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "Non puoi lasciare questo gruppo perchè sei l'unico amministratore" @@ -256,12 +257,12 @@ msgstr "Non puoi unirti a questo gruppo" msgid "You may not list groups unless moderator." msgstr "Non è possibile elencare i gruppi a meno che non sia un moderatore." -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "È necessario effettuare il login per modificare la tua email" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "È necessario effettuare il login per modificare la tua password" @@ -271,7 +272,7 @@ msgstr "È necessario effettuare il login per modificare la tua password" msgid "You need to be logged-in to delete a group" msgstr "È necessario effettuare il login per eliminare un gruppo" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "È necessario effettuare il login per eliminare il tuo account" @@ -281,7 +282,7 @@ msgstr "È necessario effettuare il login per eliminare il tuo account" msgid "You need to be logged-in to join a group" msgstr "È necessario effettuare il login per entrare a far parte di un gruppo" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "È necessario effettuare il login per lasciare un gruppo" @@ -298,8 +299,8 @@ msgstr "" "È necessario disporre di un token esistente per ottenere un token di " "aggiornamento" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "Hai richiesto di nuovo un'e-mail di conferma troppo presto" @@ -896,7 +897,7 @@ msgstr "L'immagine inserita è troppo pesante" msgid "Error while creating resource" msgstr "Errore durante la creazione della risorsa" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "Token di attivazione non valido" @@ -940,7 +941,7 @@ msgstr "Evento non trovato" msgid "Error while creating a discussion" msgstr "Errore durante la creazione della risorsa" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "Errore durante l'aggiornamento del rapporto" @@ -961,12 +962,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "Impossibile convalidare l'utente" @@ -986,7 +987,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1026,47 +1027,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "La persona con il nome utente %{username} non è stata trovata" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "È necessario effettuare il login per entrare a far parte di un gruppo" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "È necessario effettuare il login per entrare a far parte di un gruppo" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "È necessario effettuare il login per aggiornare un gruppo" @@ -1127,3 +1128,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "La nuova email sembra non valida" diff --git a/priv/gettext/ja/LC_MESSAGES/activity.po b/priv/gettext/ja/LC_MESSAGES/activity.po index c063dc1c6..898b153f0 100644 --- a/priv/gettext/ja/LC_MESSAGES/activity.po +++ b/priv/gettext/ja/LC_MESSAGES/activity.po @@ -77,13 +77,13 @@ msgstr "" msgid "%{profile} deleted the discussion %{discussion}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -95,13 +95,13 @@ msgstr "" msgid "%{profile} excluded member %{member}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -125,7 +125,7 @@ msgstr "" msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/ja/LC_MESSAGES/default.po b/priv/gettext/ja/LC_MESSAGES/default.po index c01ba8333..a1cdb6fdb 100644 --- a/priv/gettext/ja/LC_MESSAGES/default.po +++ b/priv/gettext/ja/LC_MESSAGES/default.po @@ -743,6 +743,7 @@ msgstr "" msgid "You requested a new password for your account on %{instance}." msgstr "" +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -805,7 +806,7 @@ msgstr "" msgid "Flagged comments" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -925,7 +926,7 @@ msgstr "" msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it." msgstr "" -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -946,9 +947,9 @@ msgstr "通報内容を見る" msgid "View report:" msgstr "" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "" @@ -969,9 +970,9 @@ msgstr "" msgid "What's up today?" msgstr "今日の調子はいかがですか?" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1007,11 +1008,6 @@ msgstr "" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "" - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1038,13 +1034,13 @@ msgstr "" 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 "" -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." msgstr "" -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1217,7 +1213,7 @@ msgstr "プロフィール%{profile}が通報されました" msgid "Profile reported" msgstr "" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1297,8 +1293,8 @@ msgstr "" msgid "This is a demonstration site to test Mobilizon." msgstr "" -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1345,12 +1341,12 @@ msgstr "%{instance}のMobilizonサーバーは、一時的にダウンしてい msgid "Public feed for %{instance}" msgstr "" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/ja/LC_MESSAGES/errors.po b/priv/gettext/ja/LC_MESSAGES/errors.po index 90e0e77a6..75e60d51c 100644 --- a/priv/gettext/ja/LC_MESSAGES/errors.po +++ b/priv/gettext/ja/LC_MESSAGES/errors.po @@ -97,7 +97,7 @@ msgstr "" msgid "Current profile is not an administrator of the selected group" msgstr "" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "" @@ -106,8 +106,8 @@ msgstr "" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -125,6 +125,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "" #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "" @@ -134,13 +135,13 @@ msgstr "" msgid "No profile found for the moderator user" msgstr "" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "" @@ -163,41 +164,41 @@ msgstr "" msgid "Registrations are not open" msgstr "" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "" @@ -207,18 +208,18 @@ msgstr "" msgid "This user has been disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "" @@ -228,7 +229,7 @@ msgstr "" msgid "You are already a member of this group" msgstr "" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "" @@ -243,12 +244,12 @@ msgstr "" msgid "You may not list groups unless moderator." msgstr "" -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "" @@ -258,7 +259,7 @@ msgstr "" msgid "You need to be logged-in to delete a group" msgstr "" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "" @@ -268,7 +269,7 @@ msgstr "" msgid "You need to be logged-in to join a group" msgstr "" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "" @@ -283,8 +284,8 @@ msgstr "" msgid "You need to have an existing token to get a refresh token" msgstr "" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "" @@ -868,7 +869,7 @@ msgstr "" msgid "Error while creating resource" msgstr "" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "" @@ -910,7 +911,7 @@ msgstr "" msgid "Error while creating a discussion" msgstr "" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "" @@ -931,12 +932,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "" @@ -956,7 +957,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -996,47 +997,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "" @@ -1095,3 +1096,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "" diff --git a/priv/gettext/nb_NO/LC_MESSAGES/activity.po b/priv/gettext/nb_NO/LC_MESSAGES/activity.po index 87d14b683..ed1fec3d0 100644 --- a/priv/gettext/nb_NO/LC_MESSAGES/activity.po +++ b/priv/gettext/nb_NO/LC_MESSAGES/activity.po @@ -77,13 +77,13 @@ msgstr "" msgid "%{profile} deleted the discussion %{discussion}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -95,13 +95,13 @@ msgstr "" msgid "%{profile} excluded member %{member}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -125,7 +125,7 @@ msgstr "" msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/nb_NO/LC_MESSAGES/default.po b/priv/gettext/nb_NO/LC_MESSAGES/default.po index e50ecafcf..55b44a78a 100644 --- a/priv/gettext/nb_NO/LC_MESSAGES/default.po +++ b/priv/gettext/nb_NO/LC_MESSAGES/default.po @@ -754,6 +754,7 @@ msgstr "" msgid "You requested a new password for your account on %{instance}." msgstr "" +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -817,7 +818,7 @@ msgstr "" msgid "Flagged comments" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -937,7 +938,7 @@ msgstr "" msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it." msgstr "" -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -958,9 +959,9 @@ msgstr "" msgid "View report:" msgstr "" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "" @@ -981,9 +982,9 @@ msgstr "" msgid "What's up today?" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1019,11 +1020,6 @@ msgstr "" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "" - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1050,13 +1046,13 @@ msgstr "" 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 "" -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." msgstr "" -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1228,7 +1224,7 @@ msgstr "" msgid "Profile reported" msgstr "" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1307,8 +1303,8 @@ msgstr "" msgid "This is a demonstration site to test Mobilizon." msgstr "" -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1355,12 +1351,12 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/nb_NO/LC_MESSAGES/errors.po b/priv/gettext/nb_NO/LC_MESSAGES/errors.po index 0aa0bf3ba..46607baf1 100644 --- a/priv/gettext/nb_NO/LC_MESSAGES/errors.po +++ b/priv/gettext/nb_NO/LC_MESSAGES/errors.po @@ -103,7 +103,7 @@ msgstr "" msgid "Current profile is not an administrator of the selected group" msgstr "" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "" @@ -112,8 +112,8 @@ msgstr "" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -131,6 +131,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "" #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "" @@ -140,13 +141,13 @@ msgstr "" msgid "No profile found for the moderator user" msgstr "" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "" @@ -169,41 +170,41 @@ msgstr "" msgid "Registrations are not open" msgstr "" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "" @@ -213,18 +214,18 @@ msgstr "" msgid "This user has been disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "" @@ -234,7 +235,7 @@ msgstr "" msgid "You are already a member of this group" msgstr "" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "" @@ -249,12 +250,12 @@ msgstr "" msgid "You may not list groups unless moderator." msgstr "" -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "" @@ -264,7 +265,7 @@ msgstr "" msgid "You need to be logged-in to delete a group" msgstr "" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "" @@ -274,7 +275,7 @@ msgstr "" msgid "You need to be logged-in to join a group" msgstr "" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "" @@ -289,8 +290,8 @@ msgstr "" msgid "You need to have an existing token to get a refresh token" msgstr "" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "" @@ -874,7 +875,7 @@ msgstr "" msgid "Error while creating resource" msgstr "" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "" @@ -916,7 +917,7 @@ msgstr "" msgid "Error while creating a discussion" msgstr "" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "" @@ -937,12 +938,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "" @@ -962,7 +963,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1002,47 +1003,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "" @@ -1101,3 +1102,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "" diff --git a/priv/gettext/nl/LC_MESSAGES/activity.po b/priv/gettext/nl/LC_MESSAGES/activity.po index 3502f75d8..f2b956a7b 100644 --- a/priv/gettext/nl/LC_MESSAGES/activity.po +++ b/priv/gettext/nl/LC_MESSAGES/activity.po @@ -84,13 +84,13 @@ msgstr "" msgid "%{profile} deleted the discussion %{discussion}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -102,13 +102,13 @@ msgstr "" msgid "%{profile} excluded member %{member}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -132,7 +132,7 @@ msgstr "" msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/nl/LC_MESSAGES/default.po b/priv/gettext/nl/LC_MESSAGES/default.po index dbd5a0c31..dfc8fdc50 100644 --- a/priv/gettext/nl/LC_MESSAGES/default.po +++ b/priv/gettext/nl/LC_MESSAGES/default.po @@ -761,6 +761,7 @@ msgstr "" "U hebt een nieuw wachtwoord aangevraagd voor uw account op " "%{instance}." +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -829,7 +830,7 @@ msgstr "Evenement bijgewerkt!" msgid "Flagged comments" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -951,7 +952,7 @@ msgstr "Het evenement is bevestigd" msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it." msgstr "" -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -972,9 +973,9 @@ msgstr "Bekijk de melding" msgid "View report:" msgstr "Rapportage bekijken:" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "Pagina van het evenement bekijken" @@ -995,9 +996,9 @@ msgstr "Bekijk het bijgewerkte evenement op: %{link}" msgid "What's up today?" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1033,11 +1034,6 @@ msgstr "" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "" - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1064,13 +1060,13 @@ msgstr "" 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 "" -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." msgstr "" -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1248,7 +1244,7 @@ msgstr "" msgid "Profile reported" msgstr "" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1327,8 +1323,8 @@ msgstr "" msgid "This is a demonstration site to test Mobilizon." msgstr "Dit is een demosite om de bètaversie van Mobilizon te testen." -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1375,12 +1371,12 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/nl/LC_MESSAGES/errors.po b/priv/gettext/nl/LC_MESSAGES/errors.po index d42694c9a..c54ea1d26 100644 --- a/priv/gettext/nl/LC_MESSAGES/errors.po +++ b/priv/gettext/nl/LC_MESSAGES/errors.po @@ -103,7 +103,7 @@ msgstr "" msgid "Current profile is not an administrator of the selected group" msgstr "" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "" @@ -112,8 +112,8 @@ msgstr "" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -131,6 +131,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "" #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "" @@ -140,13 +141,13 @@ msgstr "" msgid "No profile found for the moderator user" msgstr "" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "" @@ -169,41 +170,41 @@ msgstr "" msgid "Registrations are not open" msgstr "" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "" @@ -213,18 +214,18 @@ msgstr "" msgid "This user has been disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "" @@ -234,7 +235,7 @@ msgstr "" msgid "You are already a member of this group" msgstr "" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "" @@ -249,12 +250,12 @@ msgstr "" msgid "You may not list groups unless moderator." msgstr "" -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "" @@ -264,7 +265,7 @@ msgstr "" msgid "You need to be logged-in to delete a group" msgstr "" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "" @@ -274,7 +275,7 @@ msgstr "" msgid "You need to be logged-in to join a group" msgstr "" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "" @@ -289,8 +290,8 @@ msgstr "" msgid "You need to have an existing token to get a refresh token" msgstr "" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "" @@ -874,7 +875,7 @@ msgstr "" msgid "Error while creating resource" msgstr "" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "" @@ -916,7 +917,7 @@ msgstr "" msgid "Error while creating a discussion" msgstr "" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "" @@ -937,12 +938,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "" @@ -962,7 +963,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1002,47 +1003,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "" @@ -1101,3 +1102,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "" diff --git a/priv/gettext/nn/LC_MESSAGES/activity.po b/priv/gettext/nn/LC_MESSAGES/activity.po index beda3a61f..8c8fe5696 100644 --- a/priv/gettext/nn/LC_MESSAGES/activity.po +++ b/priv/gettext/nn/LC_MESSAGES/activity.po @@ -84,13 +84,13 @@ msgstr "%{profile} laga ressursen %{resource}." msgid "%{profile} deleted the discussion %{discussion}." msgstr "%{profile} sletta diskusjonen %{discussion}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "%{profile} sletta mappa %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -102,13 +102,13 @@ msgstr "%{profile} sletta ressursen %{resource}." msgid "%{profile} excluded member %{member}." msgstr "%{profile} kasta ut medlemen %{member}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "%{profile} flytta mappa %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -132,7 +132,7 @@ msgstr "%{profile} ga nytt namn til diskusjonen %{discussion}." msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "%{profile} døypte om mappa frå %{old_resource_title} til %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/nn/LC_MESSAGES/default.po b/priv/gettext/nn/LC_MESSAGES/default.po index 76894c91a..e8fb247b6 100644 --- a/priv/gettext/nn/LC_MESSAGES/default.po +++ b/priv/gettext/nn/LC_MESSAGES/default.po @@ -904,6 +904,7 @@ msgstr "Epostadressa for brukarkontoen din på %{host} blir no endra til: msgid "You requested a new password for your account on %{instance}." msgstr "Du har bede om eit nytt passord for kontoen din på %{instance}." +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -971,7 +972,7 @@ msgstr "Oppdatert hending!" msgid "Flagged comments" msgstr "Flagga kommentarar" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -1110,7 +1111,7 @@ msgstr "" "Denne hendinga er ikkje stadfesta enno. Tilskiparane seier frå viss dei " "stadfestar ho." -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -1131,9 +1132,9 @@ msgstr "Les rapporten" msgid "View report:" msgstr "Les rapporten:" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "Sjå på hendingssida" @@ -1154,9 +1155,9 @@ msgstr "Sjå på den oppdaterte hendingssida: %{link}" msgid "What's up today?" msgstr "Kva skjer i dag?" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1198,11 +1199,6 @@ msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" "Viss du ikkje endra dette sjølv, kan du trygt sjå bort frå denne meldinga." -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "Ikkje bruk det på ordentleg." - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1237,7 +1233,7 @@ msgstr "" "Du er fjerna frå gruppa %{link_start}%{group}%{link_end}. Frå no kan " "du ikkje lesa privat innhald i denne gruppa." -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." @@ -1245,7 +1241,7 @@ msgstr "" "Denne gruppa var på ein annan nettstad, og vil halda fram å verka for andre " "nettstader unnateke denne." -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1497,7 +1493,7 @@ msgstr "Profilen %{profile} er rapportert" msgid "Profile reported" msgstr "Ein profil er rapportert" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1583,8 +1579,8 @@ msgstr "Orsak, det skjedde noko feil hjå oss." msgid "This is a demonstration site to test Mobilizon." msgstr "Dette er ei demoside for å prøva ut Mobilizon." -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1634,12 +1630,12 @@ msgstr "Mobilizon-tenaren ser ut til å vera nede i augeblinken." msgid "Public feed for %{instance}" msgstr "Offentleg straum for %{instance}" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "Passordet er for kort. Det må ha minst 6 teikn." -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/nn/LC_MESSAGES/errors.po b/priv/gettext/nn/LC_MESSAGES/errors.po index be32b4c1a..aea75dde9 100644 --- a/priv/gettext/nn/LC_MESSAGES/errors.po +++ b/priv/gettext/nn/LC_MESSAGES/errors.po @@ -126,7 +126,7 @@ msgstr "Denne brukaren er ikkje medlem av gruppa" msgid "Current profile is not an administrator of the selected group" msgstr "Denne brukaren er ikkje styrar av gruppa" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "Greidde ikkje lagra brukarinnstillingane" @@ -135,8 +135,8 @@ msgstr "Greidde ikkje lagra brukarinnstillingane" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -154,6 +154,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "Greier ikkje å logga inn. Epostadressa eller passordet ditt er feil." #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "Fann ikkje medlemen" @@ -163,13 +164,13 @@ msgstr "Fann ikkje medlemen" msgid "No profile found for the moderator user" msgstr "Fann ingen profil for moderator-brukaren" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "Fann ingen brukar med denne eposten å godkjenna" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "Fann ingen brukar med denne eposten" @@ -192,41 +193,41 @@ msgstr "Ingen godkjent brukar eig denne profilen" msgid "Registrations are not open" msgstr "Det er ikkje opna for å registrera seg" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "Dette passordet er ugyldig" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "Den nye epostadressa ser ut til å vera feil" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "Den nye epostadressa må vera annleis" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "Det nye passordet må vera annleis" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "Dette passordet er ugyldig" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "Dette passordet er for kort. Passord må ha minst 6 teikn." -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "Denne brukaren kan ikkje nullstilla passordet sitt" @@ -236,18 +237,18 @@ msgstr "Denne brukaren kan ikkje nullstilla passordet sitt" msgid "This user has been disabled" msgstr "Denne brukaren er avskrudd" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "Greier ikkje godkjenna brukaren" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "Brukaren er allereie inaktiv" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "Den førespurte brukaren er ikkje innlogga" @@ -257,7 +258,7 @@ msgstr "Den førespurte brukaren er ikkje innlogga" msgid "You are already a member of this group" msgstr "Du er allereie medlem av denne gruppa" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "Du kan ikkje forlata denne gruppa, fordi du er den einaste styraren" @@ -272,12 +273,12 @@ msgstr "Du kan ikkje bli med i denne gruppa" msgid "You may not list groups unless moderator." msgstr "Du kan ikkje lista opp grupper med mindre du er moderator." -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "Du må vera innlogga for å endra epostadressa di" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "Du må vera innlogga for å endra passordet ditt" @@ -287,7 +288,7 @@ msgstr "Du må vera innlogga for å endra passordet ditt" msgid "You need to be logged-in to delete a group" msgstr "Du må vera innlogga for å sletta ei gruppe" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "Du må vera innlogga for å sletta kontoen din" @@ -297,7 +298,7 @@ msgstr "Du må vera innlogga for å sletta kontoen din" msgid "You need to be logged-in to join a group" msgstr "Du må vera innlogga for å bli med i ei gruppe" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "Du må vera innlogga for å forlata ei gruppe" @@ -312,8 +313,8 @@ msgstr "Du må vera innlogga for å oppdatera ei gruppe" msgid "You need to have an existing token to get a refresh token" msgstr "Du treng eit eksisterande teikn for å få eit fornyingsteikn" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "Du ba om ny stadfestingsepost for snøgt" @@ -912,7 +913,7 @@ msgstr "Dette biletet er for stort" msgid "Error while creating resource" msgstr "Greidde ikkje laga ressursen" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "Ugyldig aktiveringslykjel" @@ -959,7 +960,7 @@ msgstr "Fann ikkje hendinga" msgid "Error while creating a discussion" msgstr "Greidde ikkje laga ressursen" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "Greidde ikkje oppdatera rapporten" @@ -980,12 +981,12 @@ msgid "Failed to update the group" msgstr "Greidde ikkje oppdatera gruppa" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "Greidde ikkje oppdatera epostadressa til brukaren" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "Greier ikkje godkjenna brukaren" @@ -1005,7 +1006,7 @@ msgstr "Det var ein ukjend feil då ressursen vart oppdatert" msgid "You are not the comment creator" msgstr "Du har ikkje skrive denne kommentaren" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "Du kan ikkje endra passordet ditt." @@ -1046,47 +1047,47 @@ msgstr "Berre grupper kan laga hendingar" msgid "Unknown error while creating event" msgstr "Det var ein ukjend feil då ressursen vart oppdatert" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "Brukaren kan ikkje endra epostadressa" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "Fann ingen person med brukarnamnet %{username}" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "Du må vera innlogga for å bli med i ei gruppe" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "Du må vera innlogga for å bli med i ei gruppe" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "Du må vera innlogga for å oppdatera ei gruppe" @@ -1147,3 +1148,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "Den nye epostadressa ser ut til å vera feil" diff --git a/priv/gettext/oc/LC_MESSAGES/activity.po b/priv/gettext/oc/LC_MESSAGES/activity.po index a56a20797..ce12fbe9d 100644 --- a/priv/gettext/oc/LC_MESSAGES/activity.po +++ b/priv/gettext/oc/LC_MESSAGES/activity.po @@ -77,13 +77,13 @@ msgstr "" msgid "%{profile} deleted the discussion %{discussion}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -95,13 +95,13 @@ msgstr "" msgid "%{profile} excluded member %{member}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -125,7 +125,7 @@ msgstr "" msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/oc/LC_MESSAGES/default.po b/priv/gettext/oc/LC_MESSAGES/default.po index 9efd5bef0..371928297 100644 --- a/priv/gettext/oc/LC_MESSAGES/default.po +++ b/priv/gettext/oc/LC_MESSAGES/default.po @@ -829,6 +829,7 @@ msgstr "" msgid "You requested a new password for your account on %{instance}." msgstr "Avètz demandat un nòu senhal per vòstre compte sus %{instance}." +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -898,7 +899,7 @@ msgstr "Eveniment actualizat !" msgid "Flagged comments" msgstr "Comentaris senhalats" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -1023,7 +1024,7 @@ msgstr "" "Aqueste eveniment deu encara èsser confirmat : los organizators vos avisaràn " "quand siá confirmat." -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -1045,9 +1046,9 @@ msgstr "Veire lo senhalament" msgid "View report:" msgstr "Veire lo senhalament :" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "Veire la pagina de l'eveniment" @@ -1068,9 +1069,9 @@ msgstr "Veire l’eveniment actualizat sus : %{link}" msgid "What's up today?" msgstr "Qué de nòu uèi ?" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1107,11 +1108,6 @@ msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" "S’avètz pas demandat aquesta modificacion, mercés d’ignorar aqueste messatge." -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "Mercés de l’utilizar pas d’un biais real." - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1140,7 +1136,7 @@ msgstr "" "Qualqu’un vos a tirat del grop %{link_start}%{group}%{link_end}. " "Auretz pas mai la possibilitat d’accedir al contengut privat del grop." -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." @@ -1148,7 +1144,7 @@ msgstr "" "Estant qu’aqueste grop veniá d’una autra instància, tendrà de foncionar per " "d’autras instàncias." -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1324,7 +1320,7 @@ msgstr "" msgid "Profile reported" msgstr "" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1404,8 +1400,8 @@ msgid "This is a demonstration site to test Mobilizon." msgstr "" "Aquò es un site de demostracion per ensajar la version beta de Mobilizon." -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1452,12 +1448,12 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/oc/LC_MESSAGES/errors.po b/priv/gettext/oc/LC_MESSAGES/errors.po index 31c3af42b..2ef247e6a 100644 --- a/priv/gettext/oc/LC_MESSAGES/errors.po +++ b/priv/gettext/oc/LC_MESSAGES/errors.po @@ -110,7 +110,7 @@ msgstr "Lo perfil actual es pas un membre d’aqueste grop" msgid "Current profile is not an administrator of the selected group" msgstr "Lo perfil actual es pas administrator del grop seleccionat" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "Error en salvagardant los paramètres utilizaire" @@ -119,8 +119,8 @@ msgstr "Error en salvagardant los paramètres utilizaire" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -140,6 +140,7 @@ msgstr "" "invalid." #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "Membre pas trobat" @@ -149,13 +150,13 @@ msgstr "Membre pas trobat" msgid "No profile found for the moderator user" msgstr "Cap de perfil pas trobat per l’utilizaire moderator" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "Cap d’utilizaire de validar amb aqueste email pas trobat" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "Degun trobat d'amb aquesta email" @@ -178,43 +179,43 @@ msgstr "Lo perhiu es pas proprietat del utilizator autenticat" msgid "Registrations are not open" msgstr "Las inscripciones sèn pas obèrtas" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "Lo mòt de santa clara actuau es invalid" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "Lo email nau sèm invalid" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "Lo email nau deb esser different" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "Lo mòt de santa clara nau deb esser different" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "Lo mòt de santa clara aprovedit es invalid" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" "Lo mòt de santa clara que avetz causit es tròp cort. Merci de vos assegurar " "que vostre mòt de santa clara contienga au mèns 6 caracteres." -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "Aquest utilizator pod pas reinicializar lo sèn mòt de santa clara" @@ -224,18 +225,18 @@ msgstr "Aquest utilizator pod pas reinicializar lo sèn mòt de santa clara" msgid "This user has been disabled" msgstr "Aquest utilizator a essat dasactivat" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "Es impossible de validar l'utilizator" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "Utilizator déjà desactivat" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "L'utilizator demandat es pas conectat" @@ -245,7 +246,7 @@ msgstr "L'utilizator demandat es pas conectat" msgid "You are already a member of this group" msgstr "Essetz déjà membre d'aquest grop" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "Podetz pas quitar aquest grop perque essetz lo sol administrator" @@ -260,12 +261,12 @@ msgstr "Podetz pas rejónher aquest grop" msgid "You may not list groups unless moderator." msgstr "Podetz listar los grops sonque se essetz moderator." -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "Debetz esser conectat per cambiar lo voste email" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "Debetz d'esser conectat per cambiar lo voste mòt de santa clara" @@ -275,7 +276,7 @@ msgstr "Debetz d'esser conectat per cambiar lo voste mòt de santa clara" msgid "You need to be logged-in to delete a group" msgstr "Debetz d'esser conectat per suprimir un grop" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "Devetz d'esser conectat per suprimir lo voste compte" @@ -285,7 +286,7 @@ msgstr "Devetz d'esser conectat per suprimir lo voste compte" msgid "You need to be logged-in to join a group" msgstr "Devetz d'esser conectat per rejónher un grop" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "Devetz d'esser conectat per quitar un grop" @@ -300,8 +301,8 @@ msgstr "Devetz d'esser conectat per metre à jorn un grop" msgid "You need to have an existing token to get a refresh token" msgstr "Devetz aver un senhau existant per obtiéner un senhau nau" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "Demandatz de nau un email de confirmacion tròp lèu" @@ -886,7 +887,7 @@ msgstr "" msgid "Error while creating resource" msgstr "Error mentre que sauvant lo rapòrt" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "" @@ -928,7 +929,7 @@ msgstr "Eveniment non trobat" msgid "Error while creating a discussion" msgstr "Error mentre que sauvant lo rapòrt" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "Error mentre la mesa a jorn dèu rapòrt" @@ -949,12 +950,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "Es impossible de validar l'utilizator" @@ -974,7 +975,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1014,47 +1015,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "Degun trobat d'amb l'utilizator %{username}" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "Devetz d'esser conectat per rejónher un grop" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "Devetz d'esser conectat per rejónher un grop" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "Devetz d'esser conectat per metre à jorn un grop" @@ -1113,3 +1114,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "Lo email nau sèm invalid" diff --git a/priv/gettext/pl/LC_MESSAGES/activity.po b/priv/gettext/pl/LC_MESSAGES/activity.po index 9a263dafd..bb2bf32e4 100644 --- a/priv/gettext/pl/LC_MESSAGES/activity.po +++ b/priv/gettext/pl/LC_MESSAGES/activity.po @@ -77,13 +77,13 @@ msgstr "" msgid "%{profile} deleted the discussion %{discussion}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -95,13 +95,13 @@ msgstr "" msgid "%{profile} excluded member %{member}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -125,7 +125,7 @@ msgstr "" msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/pl/LC_MESSAGES/default.po b/priv/gettext/pl/LC_MESSAGES/default.po index 2ee2139d2..bbcfe929a 100644 --- a/priv/gettext/pl/LC_MESSAGES/default.po +++ b/priv/gettext/pl/LC_MESSAGES/default.po @@ -822,6 +822,7 @@ msgstr "Adres e-mail Twojego konta na %{host} zostanie zmieniony na:" msgid "You requested a new password for your account on %{instance}." msgstr "Poprosiłeś(-aś) o nowe hasło do swojego konta na %{instance}." +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -892,7 +893,7 @@ msgstr "Zaktualizowano wydarzenie!" msgid "Flagged comments" msgstr "Oflagowane komentarze" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -1029,7 +1030,7 @@ msgstr "" "Wydarzenie nie zostało jeszcze potwierdzone, organizatorzy poinformują Cię " "jeżeli zostanie potwierdzone." -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -1050,9 +1051,9 @@ msgstr "Zobacz zgłoszenie" msgid "View report:" msgstr "Zobacz zgłoszenie" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "Odwiedź stronę wydarzenia" @@ -1073,9 +1074,9 @@ msgstr "Zobacz zaktualizowane wydarzenie na %{link}" msgid "What's up today?" msgstr "Co dziś się wydarzy?" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1111,11 +1112,6 @@ msgstr "Weźmiesz udział!" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "Nie używaj go do żadnych rzeczywistych celów" - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1148,7 +1144,7 @@ msgstr "" "Zostałeś(-aś) usunięty(-a) z grupy %{link_start}%{group}%{link_end}. " "Nie masz już dostępu do prywatnej zawartości tej grupy." -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." @@ -1156,7 +1152,7 @@ msgstr "" "Ponieważ ta grupa znajdowała się na innej instancji, będzie wciąż działać na " "instancjach innych niż ta." -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1331,7 +1327,7 @@ msgstr "Profil %{profile} został zgłoszony" msgid "Profile reported" msgstr "Zgłoszono profil" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1413,8 +1409,8 @@ msgstr "Przepraszamy, ale coś poszło nie tak po naszej stronie." msgid "This is a demonstration site to test Mobilizon." msgstr "To jest strona demonstracyjna pozwalająca na przetestowanie Mobilizon." -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1461,12 +1457,12 @@ msgstr "Serwer Mobilizon wydaje się tymczasowo nie działać." msgid "Public feed for %{instance}" msgstr "" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/pl/LC_MESSAGES/errors.po b/priv/gettext/pl/LC_MESSAGES/errors.po index 445c2718f..64e0c7016 100644 --- a/priv/gettext/pl/LC_MESSAGES/errors.po +++ b/priv/gettext/pl/LC_MESSAGES/errors.po @@ -117,7 +117,7 @@ msgstr "Obency profil nie jest członkiem tej grupy" msgid "Current profile is not an administrator of the selected group" msgstr "Obecny profil nie jest administratorem zaznaczonej grupy" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "Błąd zapisywania ustawień użytkownika" @@ -126,8 +126,8 @@ msgstr "Błąd zapisywania ustawień użytkownika" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -146,6 +146,7 @@ msgstr "" "Nie udało się uwierzytelnić. Adres e-mail bądź hasło jest nieprawidłowe." #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "Nie odnaleziono użytkownika" @@ -155,14 +156,14 @@ msgstr "Nie odnaleziono użytkownika" msgid "No profile found for the moderator user" msgstr "Nie znaleziono profilu dla konta moderatora" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" "Nie znaleziono użytkownika do zatwierdzenia z użyciem tego adresu e-mail" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "Nie znaleziono użytkownika o tym adresie e-mail" @@ -185,43 +186,43 @@ msgstr "Profil nie należy do uwierzytelnionego użytkownika" msgid "Registrations are not open" msgstr "Rejestracje nie są otwarte" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "Obecne hasło jest nieprawidłowe" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "Nowy adres e-mail nie wydaje się być prawidłowy" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "Nowy adres e-mail musi się różnić od obecnego" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "Nowe hasło musi różnić się od obecnego" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "Wprowadzone hasło jest nieprawidłowe" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" "Wprowadzone hasło jest zbyt krótkie. Upewnij się, że Twoje hasło składa się " "z przynajmniej 6 znaków." -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "Ten użytkownik nie może resetować swojego hasła" @@ -231,18 +232,18 @@ msgstr "Ten użytkownik nie może resetować swojego hasła" msgid "This user has been disabled" msgstr "Ten użytkownik jest wyłączony" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "Nie udało się zwalidować użytkownika" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "Użytkownik jest już wyłączony" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "Żądany użytkownik nie jest zalogowany" @@ -252,7 +253,7 @@ msgstr "Żądany użytkownik nie jest zalogowany" msgid "You are already a member of this group" msgstr "Już jesteś członkiem tej grupy" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "" @@ -268,12 +269,12 @@ msgstr "Nie możesz dołączyć do tej grupy" msgid "You may not list groups unless moderator." msgstr "Nie masz dostępu do listy grup, jeżeli nie jesteś moderatorem." -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "Musisz być zalogowany(-a), aby zmienić adres e-mail" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "Musisz być zalogowany(-a), aby zmienić hasło" @@ -283,7 +284,7 @@ msgstr "Musisz być zalogowany(-a), aby zmienić hasło" msgid "You need to be logged-in to delete a group" msgstr "Musisz być zalogowany(-a), aby usunąć grupę" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "Musisz być zalogowany(-a), aby usunąć konto" @@ -293,7 +294,7 @@ msgstr "Musisz być zalogowany(-a), aby usunąć konto" msgid "You need to be logged-in to join a group" msgstr "Musisz być zalogowany(-a), aby dołączyć do grupy" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "Musisz być zalogowany(-a), aby opuścić grupę" @@ -308,8 +309,8 @@ msgstr "Musisz być zalogowany(-a), aby zaktualizować grupę" msgid "You need to have an existing token to get a refresh token" msgstr "Musisz mieć istniejący token, aby uzyskać token odświeżający" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "Zbyt wcześnie poprosiłeś(-aś) o nową wiadomość potwierdzającą" @@ -903,7 +904,7 @@ msgstr "" msgid "Error while creating resource" msgstr "Wystąpił błąd podczas zapisywania zgłoszenia" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "" @@ -945,7 +946,7 @@ msgstr "Nie znaleziono wydarzenia" msgid "Error while creating a discussion" msgstr "Wystąpił błąd podczas zapisywania zgłoszenia" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "Wystąpił błąd podczas aktualizacji zgłoszenia" @@ -966,12 +967,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "Nie udało się zwalidować użytkownika" @@ -991,7 +992,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1031,47 +1032,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "Nie znaleziono osoby o nazwie użytkownika %{username}" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "Musisz być zalogowany(-a), aby dołączyć do grupy" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "Musisz być zalogowany(-a), aby dołączyć do grupy" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "Musisz być zalogowany(-a), aby zaktualizować grupę" @@ -1132,3 +1133,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "Nowy adres e-mail nie wydaje się być prawidłowy" diff --git a/priv/gettext/pt/LC_MESSAGES/activity.po b/priv/gettext/pt/LC_MESSAGES/activity.po index 15ed32228..d0dc9f9e4 100644 --- a/priv/gettext/pt/LC_MESSAGES/activity.po +++ b/priv/gettext/pt/LC_MESSAGES/activity.po @@ -77,13 +77,13 @@ msgstr "" msgid "%{profile} deleted the discussion %{discussion}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -95,13 +95,13 @@ msgstr "" msgid "%{profile} excluded member %{member}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -125,7 +125,7 @@ msgstr "" msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/pt/LC_MESSAGES/default.po b/priv/gettext/pt/LC_MESSAGES/default.po index 7a89ebffb..3afb2bf65 100644 --- a/priv/gettext/pt/LC_MESSAGES/default.po +++ b/priv/gettext/pt/LC_MESSAGES/default.po @@ -746,6 +746,7 @@ msgstr "" msgid "You requested a new password for your account on %{instance}." msgstr "" +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -809,7 +810,7 @@ msgstr "" msgid "Flagged comments" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -929,7 +930,7 @@ msgstr "" msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it." msgstr "" -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -950,9 +951,9 @@ msgstr "" msgid "View report:" msgstr "" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "" @@ -973,9 +974,9 @@ msgstr "" msgid "What's up today?" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1011,11 +1012,6 @@ msgstr "" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "" - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1042,13 +1038,13 @@ msgstr "" 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 "" -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." msgstr "" -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1220,7 +1216,7 @@ msgstr "" msgid "Profile reported" msgstr "" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1299,8 +1295,8 @@ msgstr "" msgid "This is a demonstration site to test Mobilizon." msgstr "" -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1347,12 +1343,12 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/pt/LC_MESSAGES/errors.po b/priv/gettext/pt/LC_MESSAGES/errors.po index ed59aa9ae..60b75da54 100644 --- a/priv/gettext/pt/LC_MESSAGES/errors.po +++ b/priv/gettext/pt/LC_MESSAGES/errors.po @@ -103,7 +103,7 @@ msgstr "" msgid "Current profile is not an administrator of the selected group" msgstr "" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "" @@ -112,8 +112,8 @@ msgstr "" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -131,6 +131,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "" #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "" @@ -140,13 +141,13 @@ msgstr "" msgid "No profile found for the moderator user" msgstr "" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "" @@ -169,41 +170,41 @@ msgstr "" msgid "Registrations are not open" msgstr "" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "" @@ -213,18 +214,18 @@ msgstr "" msgid "This user has been disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "" @@ -234,7 +235,7 @@ msgstr "" msgid "You are already a member of this group" msgstr "" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "" @@ -249,12 +250,12 @@ msgstr "" msgid "You may not list groups unless moderator." msgstr "" -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "" @@ -264,7 +265,7 @@ msgstr "" msgid "You need to be logged-in to delete a group" msgstr "" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "" @@ -274,7 +275,7 @@ msgstr "" msgid "You need to be logged-in to join a group" msgstr "" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "" @@ -289,8 +290,8 @@ msgstr "" msgid "You need to have an existing token to get a refresh token" msgstr "" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "" @@ -874,7 +875,7 @@ msgstr "" msgid "Error while creating resource" msgstr "" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "" @@ -916,7 +917,7 @@ msgstr "" msgid "Error while creating a discussion" msgstr "" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "" @@ -937,12 +938,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "" @@ -962,7 +963,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1002,47 +1003,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "" @@ -1101,3 +1102,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "" diff --git a/priv/gettext/pt_BR/LC_MESSAGES/activity.po b/priv/gettext/pt_BR/LC_MESSAGES/activity.po index e16fdf7a2..e4348e456 100644 --- a/priv/gettext/pt_BR/LC_MESSAGES/activity.po +++ b/priv/gettext/pt_BR/LC_MESSAGES/activity.po @@ -84,13 +84,13 @@ msgstr "%{profile} criou o recurso %{resource}." msgid "%{profile} deleted the discussion %{discussion}." msgstr "%{profile} excluiu a discussão %{discussion}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "%{profile} excluiu a pasta %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -102,13 +102,13 @@ msgstr "%{profile} excluiu o recurso %{resource}." msgid "%{profile} excluded member %{member}." msgstr "%{profile} excluiu o membro %{member}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "%{profile} moveu a pasta %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -133,7 +133,7 @@ msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" "%{profile} alterou o nome da pasta %{old_resource_title} para %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/pt_BR/LC_MESSAGES/default.po b/priv/gettext/pt_BR/LC_MESSAGES/default.po index b2280128c..da7715150 100644 --- a/priv/gettext/pt_BR/LC_MESSAGES/default.po +++ b/priv/gettext/pt_BR/LC_MESSAGES/default.po @@ -817,6 +817,7 @@ msgstr "O endereço de email para sua conta em %{host} foi mudado para:" msgid "You requested a new password for your account on %{instance}." msgstr "Você solicitou uma nova senha para sua conta em %{instance}." +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -884,7 +885,7 @@ msgstr "Evento atualizado!" msgid "Flagged comments" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -1006,7 +1007,7 @@ msgstr "Evento foi confirmado" msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it." msgstr "" -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -1027,9 +1028,9 @@ msgstr "Veja o relato" msgid "View report:" msgstr "Veja o relato" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "" @@ -1050,9 +1051,9 @@ msgstr "Veja o evento atualizado em: %{link}" msgid "What's up today?" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1088,11 +1089,6 @@ msgstr "" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "Por favor não utilize este serviço em nenhum caso real" - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1119,13 +1115,13 @@ msgstr "" 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 "" -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." msgstr "" -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1332,7 +1328,7 @@ msgstr "" msgid "Profile reported" msgstr "" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1411,8 +1407,8 @@ msgstr "" msgid "This is a demonstration site to test Mobilizon." msgstr "Este é um site de demonstração para testar a versão beta do Mobilizon." -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1459,12 +1455,12 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/pt_BR/LC_MESSAGES/errors.po b/priv/gettext/pt_BR/LC_MESSAGES/errors.po index ae359ff49..1d08b1879 100644 --- a/priv/gettext/pt_BR/LC_MESSAGES/errors.po +++ b/priv/gettext/pt_BR/LC_MESSAGES/errors.po @@ -110,7 +110,7 @@ msgstr "" msgid "Current profile is not an administrator of the selected group" msgstr "" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "" @@ -119,8 +119,8 @@ msgstr "" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -138,6 +138,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "" #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "" @@ -147,13 +148,13 @@ msgstr "" msgid "No profile found for the moderator user" msgstr "" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "" @@ -176,41 +177,41 @@ msgstr "" msgid "Registrations are not open" msgstr "" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "" @@ -220,18 +221,18 @@ msgstr "" msgid "This user has been disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "" @@ -241,7 +242,7 @@ msgstr "" msgid "You are already a member of this group" msgstr "" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "" @@ -256,12 +257,12 @@ msgstr "" msgid "You may not list groups unless moderator." msgstr "" -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "" @@ -271,7 +272,7 @@ msgstr "" msgid "You need to be logged-in to delete a group" msgstr "" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "" @@ -281,7 +282,7 @@ msgstr "" msgid "You need to be logged-in to join a group" msgstr "" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "" @@ -296,8 +297,8 @@ msgstr "" msgid "You need to have an existing token to get a refresh token" msgstr "" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "" @@ -881,7 +882,7 @@ msgstr "" msgid "Error while creating resource" msgstr "" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "" @@ -923,7 +924,7 @@ msgstr "" msgid "Error while creating a discussion" msgstr "" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "" @@ -944,12 +945,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "" @@ -969,7 +970,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1009,47 +1010,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "" @@ -1108,3 +1109,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "" diff --git a/priv/gettext/ru/LC_MESSAGES/activity.po b/priv/gettext/ru/LC_MESSAGES/activity.po index 3f4d5ca97..34e206e00 100644 --- a/priv/gettext/ru/LC_MESSAGES/activity.po +++ b/priv/gettext/ru/LC_MESSAGES/activity.po @@ -85,13 +85,13 @@ msgstr "%{profile} создал ресурс %{resource}." msgid "%{profile} deleted the discussion %{discussion}." msgstr "%{profile} удалил обсуждение %{discussion}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "%{profile} удалил папку %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -103,13 +103,13 @@ msgstr "%{profile} удалил ресурс %{resource}." msgid "%{profile} excluded member %{member}." msgstr "%{profile} исключил участника %{member}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "%{profile} переместил папку %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -133,7 +133,7 @@ msgstr "%{profile} переименовал обсуждение %{discussion}." msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "%{profile} переименовал папку из %{old_resource_title} в %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/ru/LC_MESSAGES/default.po b/priv/gettext/ru/LC_MESSAGES/default.po index 9354d3e22..fc757a9b7 100644 --- a/priv/gettext/ru/LC_MESSAGES/default.po +++ b/priv/gettext/ru/LC_MESSAGES/default.po @@ -930,6 +930,7 @@ msgid "You requested a new password for your account on %{instance}." msgstr "" "Вы запросили новый пароль для своей учетной записи на %{instance}." +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -1002,7 +1003,7 @@ msgstr "Мероприятие обновлено!" msgid "Flagged comments" msgstr "Помеченные комментарии" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -1141,7 +1142,7 @@ msgstr "" "Это мероприятие еще не подтверждено: организаторы сообщат вам, если " "подтвердят его." -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -1162,9 +1163,9 @@ msgstr "Смотреть отчёт" msgid "View report:" msgstr "Смотреть отчёт:" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "Посетите страницу мероприятия" @@ -1185,9 +1186,9 @@ msgstr "Посетите обновленную страницу меропри msgid "What's up today?" msgstr "Что будет сегодня?" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1231,11 +1232,6 @@ msgstr "" "Если вы не активировали изменение самостоятельно, проигнорируйте это " "сообщение." -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "Пожалуйста, используйте это только для тестовых целей." - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1270,7 +1266,7 @@ msgstr "" "Вас исключили из группы %{link_start}%{group}%{link_end}. Вы больше " "не сможете получить доступ к приватному контенту этой группы." -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." @@ -1278,7 +1274,7 @@ msgstr "" "Поскольку эта группа находилась на другом узле, она все равно будет работать " "на других узлах, кроме этого." -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1532,7 +1528,7 @@ msgstr "Профиль %{profile} сообщил" msgid "Profile reported" msgstr "Профиль сообщил" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1620,8 +1616,8 @@ msgstr "Сожалеем, но с нашей стороны что-то пошл msgid "This is a demonstration site to test Mobilizon." msgstr "Это демонстрационная площадка для тестирования Mobilizon." -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1672,14 +1668,14 @@ msgstr "Сервер Mobilizon %{instance} временно недоступен msgid "Public feed for %{instance}" msgstr "Публичная лента для %{instance}" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" "Выбранный вами пароль слишком короткий. Пожалуйста, убедитесь, что ваш " "пароль содержит не менее 6 символов." -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/ru/LC_MESSAGES/errors.po b/priv/gettext/ru/LC_MESSAGES/errors.po index 949172bad..b3452dc1d 100644 --- a/priv/gettext/ru/LC_MESSAGES/errors.po +++ b/priv/gettext/ru/LC_MESSAGES/errors.po @@ -117,7 +117,7 @@ msgstr "Текущий профиль не является участником msgid "Current profile is not an administrator of the selected group" msgstr "Текущий профиль не является администратором выбранной группы" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "Ошибка при сохранении пользовательских настроек" @@ -126,8 +126,8 @@ msgstr "Ошибка при сохранении пользовательски #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -147,6 +147,7 @@ msgstr "" "пароль." #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "Участник не найден" @@ -156,7 +157,7 @@ msgstr "Участник не найден" msgid "No profile found for the moderator user" msgstr "Профиль модератора не найден" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" @@ -164,7 +165,7 @@ msgstr "" "электронной почты" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "Пользователя с этим адресом электронной почты не найдено" @@ -187,43 +188,43 @@ msgstr "Профиль не принадлежит аутентифициров msgid "Registrations are not open" msgstr "Регистрация не открыта" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "Текущий пароль неверен" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "Новый адрес электронной почты недействителен" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "Новый адрес электронной почты должен отличаться от текущего" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "Новый пароль должен отличаться от текущего" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "Введён неверный пароль" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" "Введенный пароль слишком короткий. Убедитесь, что ваш пароль состоит не " "менее чем из 6 символов." -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "Этот пользователь не может сбросить свой пароль" @@ -233,18 +234,18 @@ msgstr "Этот пользователь не может сбросить св msgid "This user has been disabled" msgstr "Этот пользователь отключен" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "Невозможно проверить пользователя" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "Пользователь уже отключен" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "Запрошенный пользователь не авторизован" @@ -254,7 +255,7 @@ msgstr "Запрошенный пользователь не авторизов msgid "You are already a member of this group" msgstr "Вы уже являетесь участником этой группы" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "" @@ -270,13 +271,13 @@ msgstr "Вы не можете присоединиться к этой груп msgid "You may not list groups unless moderator." msgstr "Только модератор может просматривать список групп." -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "" "Вам необходимо войти в систему, чтобы изменить свой адрес электронной почты" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "Вам необходимо войти в систему, чтобы изменить свой пароль" @@ -286,7 +287,7 @@ msgstr "Вам необходимо войти в систему, чтобы и msgid "You need to be logged-in to delete a group" msgstr "Вам необходимо войти в систему, чтобы удалить группу" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "Вам необходимо войти в систему, чтобы удалить свою учетную запись" @@ -296,7 +297,7 @@ msgstr "Вам необходимо войти в систему, чтобы у msgid "You need to be logged-in to join a group" msgstr "Вам необходимо войти в систему, чтобы присоединиться к группе" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "Вам необходимо войти в систему, чтобы покинуть группу" @@ -311,8 +312,8 @@ msgstr "Вам необходимо войти в систему, чтобы о msgid "You need to have an existing token to get a refresh token" msgstr "У вас должен быть существующий токен, чтобы получить токен обновления" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format msgid "You requested again a confirmation email too soon" msgstr "Вы слишком рано запросили новое письмо с подтверждением" @@ -924,7 +925,7 @@ msgstr "Предоставленное изображение слишком б msgid "Error while creating resource" msgstr "При создании ресурса произошла ошибка" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "Неверный токен активации" @@ -971,7 +972,7 @@ msgstr "Мероприятие не найдено" msgid "Error while creating a discussion" msgstr "При создании ресурса произошла ошибка" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "При обновлении отчёта произошла ошибка" @@ -992,12 +993,12 @@ msgid "Failed to update the group" msgstr "Не удалось обновить группу" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "Не удалось обновить электронную почту пользователя" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "Невозможно проверить пользователя" @@ -1017,7 +1018,7 @@ msgstr "Неизвестная ошибка при обновлении ресу msgid "You are not the comment creator" msgstr "Вы не автор комментария" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "Вы не можете изменить свой пароль." @@ -1057,47 +1058,47 @@ msgstr "Только группы могут создавать мероприя msgid "Unknown error while creating event" msgstr "Неизвестная ошибка при обновлении ресурса" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "Пользователь не может изменить адрес электронной почты" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "Отслеживание не соответствует вашей учетной записи" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "Отслеживание не найдено" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "Не найдено человека с именем пользователя %{username}" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "Этот профиль не принадлежит вам" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "Вы уже подписаны на эту группу" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "Вам необходимо войти в систему, чтобы присоединиться к группе" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "Вам необходимо войти в систему, чтобы присоединиться к группе" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "Вам необходимо войти в систему, чтобы обновить группу" @@ -1158,3 +1159,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "Новый адрес электронной почты недействителен" diff --git a/priv/gettext/sv/LC_MESSAGES/activity.po b/priv/gettext/sv/LC_MESSAGES/activity.po index 70212be95..852a5882f 100644 --- a/priv/gettext/sv/LC_MESSAGES/activity.po +++ b/priv/gettext/sv/LC_MESSAGES/activity.po @@ -84,13 +84,13 @@ msgstr "%{profile} skapade resursen %{resource}." msgid "%{profile} deleted the discussion %{discussion}." msgstr "%{profile} tog bort diskussionen %{discussion}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:88 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 #, elixir-autogen, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "%{profile} tog bort mappen %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:92 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:94 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 #, elixir-autogen, elixir-format msgid "%{profile} deleted the resource %{resource}." @@ -102,13 +102,13 @@ msgstr "%{profile} tog bort resursen %{resource}." msgid "%{profile} excluded member %{member}." msgstr "%{profile} exkluderade medlemmen %{member}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:62 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:64 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 #, elixir-autogen, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "%{profile} flyttade mappen %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:73 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:75 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 #, elixir-autogen, elixir-format msgid "%{profile} moved the resource %{resource}." @@ -132,7 +132,7 @@ msgstr "%{profile} döpte om diskussionen %{discussion}." msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "%{profile} döpte om mappen från %{old_resource_title} till %{resource}." -#: lib/web/templates/email/activity/_resource_activity_item.html.heex:44 +#: lib/web/templates/email/activity/_resource_activity_item.html.heex:45 #: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 #, elixir-autogen, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." diff --git a/priv/gettext/sv/LC_MESSAGES/default.po b/priv/gettext/sv/LC_MESSAGES/default.po index d5bfa5d8e..af1a20169 100644 --- a/priv/gettext/sv/LC_MESSAGES/default.po +++ b/priv/gettext/sv/LC_MESSAGES/default.po @@ -797,6 +797,7 @@ msgstr "" msgid "You requested a new password for your account on %{instance}." msgstr "Du har bett om ett nytt lösenord för ditt konto på %{instance}." +#: lib/web/templates/email/email.html.heex:112 #: lib/web/templates/email/email.text.eex:5 #, elixir-autogen, elixir-format msgid "Please do not use it for real purposes." @@ -864,7 +865,7 @@ msgstr "Evenemang uppdaterat!" msgid "Flagged comments" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:59 +#: lib/web/templates/email/event_participation_approved.html.heex:61 #: lib/web/templates/email/event_participation_approved.text.eex:7 #, elixir-autogen, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" @@ -987,7 +988,7 @@ msgstr "" msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it." msgstr "" -#: lib/web/templates/email/event_participation_rejected.html.heex:59 +#: lib/web/templates/email/event_participation_rejected.html.heex:61 #: lib/web/templates/email/event_participation_rejected.text.eex:7 #, elixir-autogen, elixir-format msgid "Unfortunately, the organizers rejected your request." @@ -1008,9 +1009,9 @@ msgstr "Visa anmälan" msgid "View report:" msgstr "Visa anmälan:" -#: lib/web/templates/email/email_anonymous_activity.html.heex:83 -#: lib/web/templates/email/event_participation_approved.html.heex:79 -#: lib/web/templates/email/event_participation_confirmed.html.heex:79 +#: lib/web/templates/email/email_anonymous_activity.html.heex:82 +#: lib/web/templates/email/event_participation_approved.html.heex:81 +#: lib/web/templates/email/event_participation_confirmed.html.heex:81 #, elixir-autogen, elixir-format msgid "Visit event page" msgstr "" @@ -1031,9 +1032,9 @@ msgstr "Visa det uppdaterade evenemanget på %{link}" msgid "What's up today?" msgstr "" -#: lib/web/templates/email/event_participation_approved.html.heex:96 +#: lib/web/templates/email/event_participation_approved.html.heex:98 #: lib/web/templates/email/event_participation_approved.text.eex:11 -#: lib/web/templates/email/event_participation_confirmed.html.heex:96 +#: lib/web/templates/email/event_participation_confirmed.html.heex:98 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 #, elixir-autogen, elixir-format 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." @@ -1069,11 +1070,6 @@ msgstr "" msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" -#: lib/web/templates/email/email.html.heex:112 -#, elixir-autogen, elixir-format -msgid "Please do not use it for real purposes." -msgstr "" - #: lib/web/templates/email/group_member_removal.html.heex:64 #: lib/web/templates/email/group_member_removal.text.eex:5 #, elixir-autogen, elixir-format @@ -1100,13 +1096,13 @@ msgstr "" 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 "" -#: lib/web/templates/email/group_suspension.html.heex:85 +#: lib/web/templates/email/group_suspension.html.heex:81 #: lib/web/templates/email/group_suspension.text.eex:7 #, elixir-autogen, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." msgstr "" -#: lib/web/templates/email/group_suspension.html.heex:71 +#: lib/web/templates/email/group_suspension.html.heex:67 #: lib/web/templates/email/group_suspension.text.eex:5 #, elixir-autogen, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." @@ -1279,7 +1275,7 @@ msgstr "" msgid "Profile reported" msgstr "" -#: lib/web/templates/email/event_participation_confirmed.html.heex:59 +#: lib/web/templates/email/event_participation_confirmed.html.heex:61 #, elixir-autogen, elixir-format msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" @@ -1360,8 +1356,8 @@ msgid "This is a demonstration site to test Mobilizon." msgstr "" "Detta är en webbplats för att visa upp och testa beta-versionen av Mobilizon." -#: lib/service/metadata/actor.ex:91 -#: lib/service/metadata/actor.ex:99 +#: lib/service/metadata/actor.ex:90 +#: lib/service/metadata/actor.ex:97 #: lib/service/metadata/instance.ex:60 #: lib/service/metadata/instance.ex:66 #, elixir-autogen, elixir-format @@ -1408,12 +1404,12 @@ msgstr "" msgid "Public feed for %{instance}" msgstr "" -#: lib/graphql/resolvers/user.ex:324 +#: lib/graphql/resolvers/user.ex:333 #, elixir-autogen, elixir-format msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters." msgstr "" -#: lib/graphql/resolvers/user.ex:330 +#: lib/graphql/resolvers/user.ex:339 #, elixir-autogen, elixir-format msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got." msgstr "" diff --git a/priv/gettext/sv/LC_MESSAGES/errors.po b/priv/gettext/sv/LC_MESSAGES/errors.po index b94e7a235..ec8cf47fb 100644 --- a/priv/gettext/sv/LC_MESSAGES/errors.po +++ b/priv/gettext/sv/LC_MESSAGES/errors.po @@ -110,7 +110,7 @@ msgstr "Den nuvarande profilen är inte med i den här gruppen" msgid "Current profile is not an administrator of the selected group" msgstr "" -#: lib/graphql/resolvers/user.ex:618 +#: lib/graphql/resolvers/user.ex:627 #, elixir-autogen, elixir-format msgid "Error while saving user settings" msgstr "Ett fel uppstod när användarinställningarna skulle sparas" @@ -119,8 +119,8 @@ msgstr "Ett fel uppstod när användarinställningarna skulle sparas" #: lib/graphql/resolvers/group.ex:273 #: lib/graphql/resolvers/group.ex:305 #: lib/graphql/resolvers/group.ex:342 -#: lib/graphql/resolvers/group.ex:373 -#: lib/graphql/resolvers/group.ex:422 +#: lib/graphql/resolvers/group.ex:377 +#: lib/graphql/resolvers/group.ex:426 #: lib/graphql/resolvers/member.ex:81 #, elixir-autogen, elixir-format msgid "Group not found" @@ -138,6 +138,7 @@ msgid "Impossible to authenticate, either your email or password are invalid." msgstr "" #: lib/graphql/resolvers/group.ex:339 +#: lib/graphql/resolvers/group.ex:346 #, elixir-autogen, elixir-format msgid "Member not found" msgstr "" @@ -147,13 +148,13 @@ msgstr "" msgid "No profile found for the moderator user" msgstr "" -#: lib/graphql/resolvers/user.ex:280 +#: lib/graphql/resolvers/user.ex:283 #, elixir-autogen, elixir-format msgid "No user to validate with this email was found" msgstr "" #: lib/graphql/resolvers/person.ex:314 -#: lib/graphql/resolvers/user.ex:304 +#: lib/graphql/resolvers/user.ex:313 #, elixir-autogen, elixir-format msgid "No user with this email was found" msgstr "" @@ -176,43 +177,43 @@ msgstr "" msgid "Registrations are not open" msgstr "" -#: lib/graphql/resolvers/user.ex:435 +#: lib/graphql/resolvers/user.ex:444 #, elixir-autogen, elixir-format msgid "The current password is invalid" msgstr "" #: lib/graphql/resolvers/admin.ex:336 -#: lib/graphql/resolvers/user.ex:478 +#: lib/graphql/resolvers/user.ex:487 #, elixir-autogen, elixir-format msgid "The new email doesn't seem to be valid" msgstr "Den nya mejladressen verkar vara felaktig" #: lib/graphql/resolvers/admin.ex:339 -#: lib/graphql/resolvers/user.ex:481 +#: lib/graphql/resolvers/user.ex:490 #, elixir-autogen, elixir-format msgid "The new email must be different" msgstr "Den nya mejladressen får inte vara samma som den tidigare" -#: lib/graphql/resolvers/user.ex:438 +#: lib/graphql/resolvers/user.ex:447 #, elixir-autogen, elixir-format msgid "The new password must be different" msgstr "Det nya lösenordet får inte vara samma som det tidigare" -#: lib/graphql/resolvers/user.ex:485 -#: lib/graphql/resolvers/user.ex:547 -#: lib/graphql/resolvers/user.ex:550 +#: lib/graphql/resolvers/user.ex:494 +#: lib/graphql/resolvers/user.ex:556 +#: lib/graphql/resolvers/user.ex:559 #, elixir-autogen, elixir-format msgid "The password provided is invalid" msgstr "Det angivna lösenordet är felaktigt" -#: lib/graphql/resolvers/user.ex:442 +#: lib/graphql/resolvers/user.ex:451 #, elixir-autogen, elixir-format msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters." msgstr "" "Lösenordet du har angett är för kort. Se till att lösenordet är minst 6 " "tecken långt." -#: lib/graphql/resolvers/user.ex:300 +#: lib/graphql/resolvers/user.ex:306 #, elixir-autogen, elixir-format msgid "This user can't reset their password" msgstr "Den här användaren kan inte återställa sitt lösenord" @@ -222,18 +223,18 @@ msgstr "Den här användaren kan inte återställa sitt lösenord" msgid "This user has been disabled" msgstr "Den här användaren har inaktiverats" -#: lib/graphql/resolvers/user.ex:259 -#: lib/graphql/resolvers/user.ex:264 +#: lib/graphql/resolvers/user.ex:261 +#: lib/graphql/resolvers/user.ex:266 #, elixir-autogen, elixir-format msgid "Unable to validate user" msgstr "Kan inte validera användare" -#: lib/graphql/resolvers/user.ex:528 +#: lib/graphql/resolvers/user.ex:537 #, elixir-autogen, elixir-format msgid "User already disabled" msgstr "Användaren redan inaktiverad" -#: lib/graphql/resolvers/user.ex:593 +#: lib/graphql/resolvers/user.ex:602 #, elixir-autogen, elixir-format msgid "User requested is not logged-in" msgstr "Den efterfrågade användaren är inte inloggad" @@ -243,7 +244,7 @@ msgstr "Den efterfrågade användaren är inte inloggad" msgid "You are already a member of this group" msgstr "Du är redan medlem i den här gruppen" -#: lib/graphql/resolvers/group.ex:346 +#: lib/graphql/resolvers/group.ex:350 #, elixir-autogen, elixir-format msgid "You can't leave this group because you are the only administrator" msgstr "" @@ -260,12 +261,12 @@ msgstr "Du kan inte gå med i den här gruppen" msgid "You may not list groups unless moderator." msgstr "Du kan inte lista grupper om du inte är moderator" -#: lib/graphql/resolvers/user.ex:493 +#: lib/graphql/resolvers/user.ex:502 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your email" msgstr "Du behöver vara inloggad för att ändra din mejladress" -#: lib/graphql/resolvers/user.ex:450 +#: lib/graphql/resolvers/user.ex:459 #, elixir-autogen, elixir-format msgid "You need to be logged-in to change your password" msgstr "Du behöver vara inloggad för att ändra ditt lösenord" @@ -275,7 +276,7 @@ msgstr "Du behöver vara inloggad för att ändra ditt lösenord" msgid "You need to be logged-in to delete a group" msgstr "Du behöver vara inloggad för att ta bort en grupp" -#: lib/graphql/resolvers/user.ex:555 +#: lib/graphql/resolvers/user.ex:564 #, elixir-autogen, elixir-format msgid "You need to be logged-in to delete your account" msgstr "Du behöver vara inloggad för att ta bort ditt konto" @@ -285,7 +286,7 @@ msgstr "Du behöver vara inloggad för att ta bort ditt konto" msgid "You need to be logged-in to join a group" msgstr "Du behöver vara inloggad för att gå med i en grupp" -#: lib/graphql/resolvers/group.ex:351 +#: lib/graphql/resolvers/group.ex:355 #, elixir-autogen, elixir-format msgid "You need to be logged-in to leave a group" msgstr "Du behöver vara inloggad för att lämna en grupp" @@ -300,8 +301,8 @@ msgstr "Du behöver vara inloggad för att uppdatera en grupp" msgid "You need to have an existing token to get a refresh token" msgstr "Du behöver ha en existerande token för att få en refresh token" -#: lib/graphql/resolvers/user.ex:283 -#: lib/graphql/resolvers/user.ex:307 +#: lib/graphql/resolvers/user.ex:289 +#: lib/graphql/resolvers/user.ex:316 #, elixir-autogen, elixir-format, fuzzy msgid "You requested again a confirmation email too soon" msgstr "" @@ -887,7 +888,7 @@ msgstr "" msgid "Error while creating resource" msgstr "" -#: lib/graphql/resolvers/user.ex:511 +#: lib/graphql/resolvers/user.ex:520 #, elixir-autogen, elixir-format msgid "Invalid activation token" msgstr "" @@ -929,7 +930,7 @@ msgstr "" msgid "Error while creating a discussion" msgstr "" -#: lib/graphql/resolvers/user.ex:632 +#: lib/graphql/resolvers/user.ex:641 #, elixir-autogen, elixir-format msgid "Error while updating locale" msgstr "" @@ -950,12 +951,12 @@ msgid "Failed to update the group" msgstr "" #: lib/graphql/resolvers/admin.ex:333 -#: lib/graphql/resolvers/user.ex:475 +#: lib/graphql/resolvers/user.ex:484 #, elixir-autogen, elixir-format msgid "Failed to update user email" msgstr "" -#: lib/graphql/resolvers/user.ex:507 +#: lib/graphql/resolvers/user.ex:516 #, elixir-autogen, elixir-format msgid "Failed to validate user email" msgstr "" @@ -975,7 +976,7 @@ msgstr "" msgid "You are not the comment creator" msgstr "" -#: lib/graphql/resolvers/user.ex:432 +#: lib/graphql/resolvers/user.ex:441 #, elixir-autogen, elixir-format msgid "You cannot change your password." msgstr "" @@ -1015,47 +1016,47 @@ msgstr "" msgid "Unknown error while creating event" msgstr "" -#: lib/graphql/resolvers/user.ex:488 +#: lib/graphql/resolvers/user.ex:497 #, elixir-autogen, elixir-format msgid "User cannot change email" msgstr "" -#: lib/graphql/resolvers/group.ex:395 +#: lib/graphql/resolvers/group.ex:399 #, elixir-autogen, elixir-format msgid "Follow does not match your account" msgstr "" -#: lib/graphql/resolvers/group.ex:399 +#: lib/graphql/resolvers/group.ex:403 #, elixir-autogen, elixir-format msgid "Follow not found" msgstr "" -#: lib/graphql/resolvers/user.ex:353 +#: lib/graphql/resolvers/user.ex:362 #, elixir-autogen, elixir-format msgid "Profile with username %{username} not found" msgstr "" -#: lib/graphql/resolvers/user.ex:348 +#: lib/graphql/resolvers/user.ex:357 #, elixir-autogen, elixir-format msgid "This profile does not belong to you" msgstr "" -#: lib/graphql/resolvers/group.ex:369 +#: lib/graphql/resolvers/group.ex:373 #, elixir-autogen, elixir-format msgid "You are already following this group" msgstr "" -#: lib/graphql/resolvers/group.ex:378 +#: lib/graphql/resolvers/group.ex:382 #, elixir-autogen, elixir-format msgid "You need to be logged-in to follow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:427 +#: lib/graphql/resolvers/group.ex:431 #, elixir-autogen, elixir-format msgid "You need to be logged-in to unfollow a group" msgstr "" -#: lib/graphql/resolvers/group.ex:404 +#: lib/graphql/resolvers/group.ex:408 #, elixir-autogen, elixir-format msgid "You need to be logged-in to update a group follow" msgstr "" @@ -1114,3 +1115,9 @@ msgstr "" #, elixir-autogen, elixir-format msgid "Username must only contain alphanumeric lowercased characters and underscores." msgstr "" + +#: lib/graphql/resolvers/user.ex:286 +#: lib/graphql/resolvers/user.ex:309 +#, elixir-autogen, elixir-format, fuzzy +msgid "This email doesn't seem to be valid" +msgstr "Den nya mejladressen verkar vara felaktig" diff --git a/test/service/metadata/metadata_test.exs b/test/service/metadata/metadata_test.exs index 43bdfc8f6..ef01ea137 100644 --- a/test/service/metadata/metadata_test.exs +++ b/test/service/metadata/metadata_test.exs @@ -18,7 +18,7 @@ defmodule Mobilizon.Service.MetadataTest do assert group |> Metadata.build_tags() |> Metadata.Utils.stringify_tags() == String.trim(""" - + """) assert group @@ -26,7 +26,7 @@ defmodule Mobilizon.Service.MetadataTest do |> Metadata.build_tags() |> Metadata.Utils.stringify_tags() == String.trim(""" - + """) end @@ -144,7 +144,7 @@ defmodule Mobilizon.Service.MetadataTest do |> Metadata.build_tags() |> Metadata.Utils.stringify_tags() == String.trim(""" - + """) end end