Merge branch 'feed-improvements' into 'master'

Feed improvements

See merge request framasoft/mobilizon!802
This commit is contained in:
Thomas Citharel 2021-01-19 15:59:37 +01:00
commit f891b51770
53 changed files with 4071 additions and 4152 deletions

View File

@ -47,7 +47,6 @@
"Change my password": "Change my password",
"Change": "Change",
"Clear": "Clear",
"Click to select": "Click to select",
"Click to upload": "Click to upload",
"Close comments for all (except for admins)": "Close comments for all (except for admins)",
"Close": "Close",
@ -404,7 +403,6 @@
"as {identity}": "as {identity}",
"default Mobilizon terms": "default Mobilizon terms",
"e.g. 10 Rue Jangot": "e.g. 10 Rue Jangot",
"firstDayOfWeek": "0",
"iCal Feed": "iCal Feed",
"profile@instance": "profile@instance",
"with another identity…": "with another identity…",
@ -828,5 +826,8 @@
"There's no discussions yet": "There's no discussions yet",
"Only group members can access discussions": "Only group members can access discussions",
"Return to the group page": "Return to the group page",
"It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content."
"It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.",
"Atom feed for events and posts": "Atom feed for events and posts",
"ICS feed for events": "ICS feed for events",
"ICS/WebCal Feed": "ICS/WebCal Feed"
}

View File

@ -922,5 +922,8 @@
"{profile} (by default)": "{profile} (par défault)",
"{title} ({count} todos)": "{title} ({count} todos)",
"{username} was invited to {group}": "{username} a été invité à {group}",
"© The OpenStreetMap Contributors": "© Les Contributeur⋅ices OpenStreetMap"
"© The OpenStreetMap Contributors": "© Les Contributeur⋅ices OpenStreetMap",
"Atom feed for events and posts": "Flux Atom pour les événements et les billets",
"ICS feed for events": "Flux ICS pour les événements",
"ICS/WebCal Feed": "Flux ICS/WebCal"
}

View File

@ -145,7 +145,11 @@
type="is-primary"
>{{ $t("Join group") }}</b-button
>
<b-dropdown aria-role="list" position="is-bottom-left">
<b-dropdown
class="menu-dropdown"
aria-role="list"
position="is-bottom-left"
>
<b-button
slot="trigger"
role="button"
@ -162,6 +166,25 @@
<b-icon icon="flag" />
</span>
</b-dropdown-item>
<hr class="dropdown-divider" />
<b-dropdown-item has-link aria-role="listitem">
<a
:href="`@${preferredUsername}/feed/atom`"
:title="$t('Atom feed for events and posts')"
>
{{ $t("RSS/Atom Feed") }}
<b-icon icon="rss" />
</a>
</b-dropdown-item>
<b-dropdown-item has-link aria-role="listitem">
<a
:href="`@${preferredUsername}/feed/ics`"
:title="$t('ICS feed for events')"
>
{{ $t("ICS/WebCal Feed") }}
<b-icon icon="calendar-sync" />
</a>
</b-dropdown-item>
</b-dropdown>
</p>
</div>
@ -835,5 +858,12 @@ div.container {
margin-top: 2rem;
}
}
.menu-dropdown {
::v-deep .dropdown-item,
::v-deep .has-link a {
padding-right: 1rem;
}
}
}
</style>

View File

@ -145,6 +145,6 @@ defmodule Mobilizon.Posts do
Post
|> where(attributed_to_id: ^group_id)
|> order_by(desc: :inserted_at)
|> preload([p], [:author, :attributed_to, :picture, :media])
|> preload([p], [:author, :attributed_to, :picture, :media, :tags])
end
end

View File

@ -7,9 +7,10 @@ defmodule Mobilizon.Service.Export.Feed do
alias Atomex.{Entry, Feed}
alias Mobilizon.{Actors, Events, Users}
alias Mobilizon.{Actors, Config, Events, Posts, Users}
alias Mobilizon.Actors.Actor
alias Mobilizon.Events.{Event, FeedToken}
alias Mobilizon.Posts.Post
alias Mobilizon.Storage.Page
alias Mobilizon.Users.User
@ -18,8 +19,7 @@ defmodule Mobilizon.Service.Export.Feed do
require Logger
@version Mix.Project.config()[:version]
def version, do: @version
def version, do: Config.instance_version()
@spec create_cache(String.t()) :: {:commit, String.t()} | {:ignore, any()}
def create_cache("actor_" <> name) do
@ -47,17 +47,18 @@ defmodule Mobilizon.Service.Export.Feed do
defp fetch_actor_event_feed(name) do
with %Actor{} = actor <- Actors.get_local_actor_by_name(name),
{:visibility, true} <- {:visibility, Actor.is_public_visibility?(actor)},
%Page{elements: events} <- Events.list_public_events_for_actor(actor) do
{:ok, build_actor_feed(actor, events)}
%Page{elements: events} <- Events.list_public_events_for_actor(actor),
%Page{elements: posts} <- Posts.get_public_posts_for_group(actor) do
{:ok, build_actor_feed(actor, events, posts)}
else
err ->
{:error, err}
end
end
# Build an atom feed from actor and its public events
@spec build_actor_feed(Actor.t(), list(), boolean()) :: String.t()
defp build_actor_feed(%Actor{} = actor, events, public \\ true) do
# Build an atom feed from actor and its public events and posts
@spec build_actor_feed(Actor.t(), list(), list(), boolean()) :: String.t()
defp build_actor_feed(%Actor{} = actor, events, posts, public \\ true) do
display_name = Actor.display_name(actor)
self_url =
@ -67,21 +68,29 @@ defmodule Mobilizon.Service.Export.Feed do
title =
if public,
do: "%{actor}'s public events feed on Mobilizon",
else: "%{actor}'s private events feed on Mobilizon"
do:
gettext("%{actor}'s public events feed on %{instance}",
actor: display_name,
instance: Config.instance_name()
),
else:
gettext("%{actor}'s private events feed on %{instance}",
actor: display_name,
instance: Config.instance_name()
)
# Title uses default instance language
feed =
self_url
|> Feed.new(
DateTime.utc_now(),
Gettext.gettext(Mobilizon.Web.Gettext, title, actor: display_name)
title
)
|> Feed.author(display_name, uri: actor.url)
|> Feed.link(self_url, rel: "self")
|> Feed.link(actor.url, rel: "alternate")
|> Feed.generator("Mobilizon", uri: "https://joinmobilizon.org", version: version())
|> Feed.entries(Enum.map(events, &get_entry/1))
|> Feed.generator(Config.instance_name(), uri: Endpoint.url(), version: version())
|> Feed.entries(Enum.map(events ++ posts, &get_entry/1))
feed =
if actor.avatar do
@ -123,6 +132,28 @@ defmodule Mobilizon.Service.Export.Feed do
Entry.build(entry)
end
@spec get_entry(Post.t()) :: any()
defp get_entry(%Post{} = post) do
body = post.body || ""
entry =
post.url
|> Entry.new(post.publish_at || post.inserted_at, post.title)
|> Entry.link(post.url, rel: "alternate", type: "text/html")
|> Entry.content({:cdata, body}, type: "html")
|> Entry.published(post.publish_at || post.inserted_at)
|> Entry.author(post.author.name || post.author.preferred_username)
# Add tags
entry =
post.tags
|> Enum.uniq()
|> Enum.reduce(entry, fn tag, acc -> Entry.category(acc, tag.slug, label: tag.title) end)
Entry.build(entry)
end
# Only events, not posts
@spec fetch_events_from_token(String.t()) :: String.t()
defp fetch_events_from_token(token) do
with {:ok, _uuid} <- Ecto.UUID.cast(token),
@ -130,7 +161,7 @@ defmodule Mobilizon.Service.Export.Feed do
case actor do
%Actor{} = actor ->
events = actor |> fetch_identity_participations() |> participations_to_events()
{:ok, build_actor_feed(actor, events, false)}
{:ok, build_actor_feed(actor, events, [], false)}
nil ->
with actors <- Users.get_actors_for_user(user),
@ -167,9 +198,15 @@ defmodule Mobilizon.Service.Export.Feed do
# Title uses default instance language
self_url
|> Feed.new(DateTime.utc_now(), gettext("Feed for %{email} on Mobilizon", email: email))
|> Feed.new(
DateTime.utc_now(),
gettext("Feed for %{email} on %{instance}",
email: email,
instance: Config.instance_name()
)
)
|> Feed.link(self_url, rel: "self")
|> Feed.generator("Mobilizon", uri: "https://joinmobilizon.org", version: version())
|> Feed.generator(Config.instance_name(), uri: Endpoint.url(), version: version())
|> Feed.entries(Enum.map(events, &get_entry/1))
|> Feed.build()
|> Atomex.generate_document()

View File

@ -2,8 +2,11 @@ defimpl Mobilizon.Service.Metadata, for: Mobilizon.Actors.Actor do
alias Phoenix.HTML
alias Phoenix.HTML.Tag
alias Mobilizon.Actors.Actor
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.Web.Gettext
def build_tags(_actor, _locale \\ "en")
@ -40,7 +43,24 @@ defimpl Mobilizon.Service.Metadata, for: Mobilizon.Actors.Actor do
end
defp add_group_schema(tags, %Actor{} = group) do
tags ++ [~s{<script type="application/ld+json">#{json(group)}</script>} |> HTML.raw()]
tags ++
[
~s{<script type="application/ld+json">#{json(group)}</script>} |> HTML.raw(),
Tag.tag(:link,
rel: "alternate",
type: "application/atom+xml",
title:
gettext("%{name}'s feed", name: group.name || group.preferred_username) |> HTML.raw(),
href: Routes.feed_url(Endpoint, :actor, group.preferred_username, :atom)
),
Tag.tag(:link,
rel: "alternate",
type: "text/calendar",
title:
gettext("%{name}'s feed", name: group.name || group.preferred_username) |> HTML.raw(),
href: Routes.feed_url(Endpoint, :actor, group.preferred_username, :ics)
)
]
end
# Insert JSON-LD schema by hand because Tag.content_tag wants to escape it

View File

@ -11,6 +11,7 @@ defmodule Mobilizon.Web.FeedController do
{status, data} when status in [:commit, :ok] ->
conn
|> put_resp_content_type("application/atom+xml")
|> put_resp_header("content-disposition", "attachment; filename=\"#{name}.atom\"")
|> send_resp(200, data)
_ ->
@ -23,6 +24,7 @@ defmodule Mobilizon.Web.FeedController do
{status, data} when status in [:commit, :ok] ->
conn
|> put_resp_content_type("text/calendar")
|> put_resp_header("content-disposition", "attachment; filename=\"#{name}.ics\"")
|> send_resp(200, data)
_err ->
@ -30,11 +32,16 @@ defmodule Mobilizon.Web.FeedController do
end
end
def actor(_conn, _) do
{:error, :not_found}
end
def event(conn, %{"uuid" => uuid, "format" => "ics"}) do
case Cachex.fetch(:ics, "event_" <> uuid) do
{status, data} when status in [:commit, :ok] ->
conn
|> put_resp_content_type("text/calendar")
|> put_resp_header("content-disposition", "attachment; filename=\"event.ics\"")
|> send_resp(200, data)
_ ->
@ -42,11 +49,16 @@ defmodule Mobilizon.Web.FeedController do
end
end
def event(_conn, _) do
{:error, :not_found}
end
def going(conn, %{"token" => token, "format" => "ics"}) do
case Cachex.fetch(:ics, "token_" <> token) do
{status, data} when status in [:commit, :ok] ->
conn
|> put_resp_content_type("text/calendar")
|> put_resp_header("content-disposition", "attachment; filename=\"events.ics\"")
|> send_resp(200, data)
_ ->
@ -59,10 +71,15 @@ defmodule Mobilizon.Web.FeedController do
{status, data} when status in [:commit, :ok] ->
conn
|> put_resp_content_type("application/atom+xml")
|> put_resp_header("content-disposition", "attachment; filename=\"events.atom\"")
|> send_resp(200, data)
{:ignore, _} ->
{:error, :not_found}
end
end
def going(_conn, _) do
{:error, :not_found}
end
end

View File

@ -20,11 +20,6 @@ msgstr ""
msgid "If you didn't request this, please ignore this email. Your password won't change until you access the link below and create a new one."
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:170
msgid "Feed for %{email} on Mobilizon"
msgstr ""
#, elixir-format
#: lib/web/templates/email/report.html.eex:74
msgid "%{title} by %{creator}"
@ -145,7 +140,7 @@ msgid "Warning"
msgstr "تنبيه"
#, elixir-format
#: lib/web/email/participation.ex:134
#: lib/web/email/participation.ex:135
msgid "Confirm your participation to event %{title}"
msgstr ""
@ -328,7 +323,7 @@ msgid "Mobilizon on %{instance}: email changed"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:46
#: lib/web/email/notification.ex:47
msgid "One event planned today"
msgid_plural "%{nb_events} events planned today"
msgstr[0] ""
@ -389,12 +384,12 @@ msgid "View the event on: %{link}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:32
#: lib/web/email/group.ex:33
msgid "You have been invited by %{inviter} to join group %{group}"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:70
#: lib/web/email/notification.ex:71
msgid "One event planned this week"
msgid_plural "%{nb_events} events planned this week"
msgstr[0] ""
@ -405,7 +400,7 @@ msgstr[4] ""
msgstr[5] ""
#, elixir-format
#: lib/web/email/notification.ex:92
#: lib/web/email/notification.ex:93
msgid "One participation request for event %{title} to process"
msgid_plural "%{number_participation_requests} participation requests for event %{title} to process"
msgstr[0] ""
@ -1081,7 +1076,7 @@ msgid "So long, and thanks for the fish!"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:62
#: lib/web/email/group.ex:63
msgid "You have been removed from group %{group}"
msgstr ""
@ -1137,12 +1132,12 @@ msgid "Your instance's moderation team has decided to suspend %{group_name} (%{g
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:135
#: lib/web/email/group.ex:136
msgid "The group %{group} has been deleted on %{instance}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:96
#: lib/web/email/group.ex:97
msgid "The group %{group} has been suspended on %{instance}"
msgstr ""
@ -1302,12 +1297,12 @@ msgid "You have now confirmed your participation. Update your calendar, because
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:91
#: lib/mobilizon/posts/post.ex:94
msgid "A text is required for the post"
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:90
#: lib/mobilizon/posts/post.ex:93
msgid "A title is required for the post"
msgstr ""
@ -1399,3 +1394,23 @@ msgstr ""
#: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon."
msgstr ""
#, elixir-format
#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60
msgid "%{name}'s feed"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:77
msgid "%{actor}'s private events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:72
msgid "%{actor}'s public events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:203
msgid "Feed for %{email} on %{instance}"
msgstr ""

View File

@ -124,12 +124,12 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:202
#: lib/graphql/resolvers/group.ex:199
msgid "Current profile is not an administrator of the selected group"
msgstr ""
@ -139,13 +139,13 @@ msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:66
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr ""
@ -155,7 +155,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:258
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr ""
@ -171,16 +171,15 @@ msgid "No user to validate with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr ""
@ -246,22 +245,22 @@ msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:232
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:265
#: lib/graphql/resolvers/group.ex:262
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:94
#: lib/graphql/resolvers/group.ex:91
msgid "You may not list groups unless moderator."
msgstr ""
@ -276,7 +275,7 @@ msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:207
#: lib/graphql/resolvers/group.ex:204
msgid "You need to be logged-in to delete a group"
msgstr ""
@ -286,25 +285,20 @@ msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:237
#: lib/graphql/resolvers/group.ex:234
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:270
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:172
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token"
@ -356,22 +350,22 @@ msgid "Profile already suspended"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:93
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:184
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:181
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr ""
@ -381,7 +375,7 @@ msgid "Comment is already deleted"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr ""
@ -396,29 +390,29 @@ msgid "Error while updating report"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:128
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:100
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:193
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr ""
@ -433,14 +427,14 @@ msgid "No such feed token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:238
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr ""
@ -450,22 +444,17 @@ msgid "Person with ID %{id} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:50
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:41
msgid "Picture with ID %{id} was not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr ""
@ -480,8 +469,8 @@ msgid "Profile is already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
@ -489,12 +478,12 @@ msgid "Profile is not member of group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr ""
@ -509,12 +498,12 @@ msgid "Resource doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:121
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:261
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr ""
@ -540,22 +529,22 @@ msgid "Token is not a valid UUID"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:232
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:131
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:197
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr ""
@ -595,8 +584,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
@ -611,7 +600,7 @@ msgid "You cannot delete this comment"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:275
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr ""
@ -661,7 +650,7 @@ msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:75
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr ""
@ -671,12 +660,12 @@ msgid "You need to be logged-in to access resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:210
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:139
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr ""
@ -691,12 +680,12 @@ msgid "You need to be logged-in to create resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:284
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:209
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr ""
@ -706,22 +695,22 @@ msgid "You need to be logged-in to delete resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:105
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:204
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:249
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:176
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr ""
@ -735,11 +724,6 @@ msgstr ""
msgid "You need to be logged-in to view a resource preview"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:79
msgid "You need to login to upload a picture"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group"
@ -816,22 +800,22 @@ msgid "You can't reject this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:71
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:167
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:241
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr ""
@ -851,21 +835,27 @@ msgid "You don't have the right to remove this member."
msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:72
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:199
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:90
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

View File

@ -17,11 +17,6 @@ msgstr ""
msgid "If you didn't request this, please ignore this email. Your password won't change until you access the link below and create a new one."
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:170
msgid "Feed for %{email} on Mobilizon"
msgstr ""
#, elixir-format
#: lib/web/templates/email/report.html.eex:74
msgid "%{title} by %{creator}"
@ -142,7 +137,7 @@ msgid "Warning"
msgstr ""
#, elixir-format
#: lib/web/email/participation.ex:134
#: lib/web/email/participation.ex:135
msgid "Confirm your participation to event %{title}"
msgstr ""
@ -325,7 +320,7 @@ msgid "Mobilizon on %{instance}: email changed"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:46
#: lib/web/email/notification.ex:47
msgid "One event planned today"
msgid_plural "%{nb_events} events planned today"
msgstr[0] ""
@ -380,12 +375,12 @@ msgid "View the event on: %{link}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:32
#: lib/web/email/group.ex:33
msgid "You have been invited by %{inviter} to join group %{group}"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:70
#: lib/web/email/notification.ex:71
msgid "One event planned this week"
msgid_plural "%{nb_events} events planned this week"
msgstr[0] ""
@ -393,7 +388,7 @@ msgstr[1] ""
msgstr[2] ""
#, elixir-format
#: lib/web/email/notification.ex:92
#: lib/web/email/notification.ex:93
msgid "One participation request for event %{title} to process"
msgid_plural "%{number_participation_requests} participation requests for event %{title} to process"
msgstr[0] ""
@ -1057,7 +1052,7 @@ msgid "So long, and thanks for the fish!"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:62
#: lib/web/email/group.ex:63
msgid "You have been removed from group %{group}"
msgstr ""
@ -1113,12 +1108,12 @@ msgid "Your instance's moderation team has decided to suspend %{group_name} (%{g
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:135
#: lib/web/email/group.ex:136
msgid "The group %{group} has been deleted on %{instance}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:96
#: lib/web/email/group.ex:97
msgid "The group %{group} has been suspended on %{instance}"
msgstr ""
@ -1278,12 +1273,12 @@ msgid "You have now confirmed your participation. Update your calendar, because
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:91
#: lib/mobilizon/posts/post.ex:94
msgid "A text is required for the post"
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:90
#: lib/mobilizon/posts/post.ex:93
msgid "A title is required for the post"
msgstr ""
@ -1375,3 +1370,23 @@ msgstr ""
#: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon."
msgstr ""
#, elixir-format
#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60
msgid "%{name}'s feed"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:77
msgid "%{actor}'s private events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:72
msgid "%{actor}'s public events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:203
msgid "Feed for %{email} on %{instance}"
msgstr ""

View File

@ -98,12 +98,12 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:202
#: lib/graphql/resolvers/group.ex:199
msgid "Current profile is not an administrator of the selected group"
msgstr ""
@ -113,13 +113,13 @@ msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:66
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr ""
@ -129,7 +129,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:258
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr ""
@ -145,16 +145,15 @@ msgid "No user to validate with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr ""
@ -220,22 +219,22 @@ msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:232
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:265
#: lib/graphql/resolvers/group.ex:262
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:94
#: lib/graphql/resolvers/group.ex:91
msgid "You may not list groups unless moderator."
msgstr ""
@ -250,7 +249,7 @@ msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:207
#: lib/graphql/resolvers/group.ex:204
msgid "You need to be logged-in to delete a group"
msgstr ""
@ -260,25 +259,20 @@ msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:237
#: lib/graphql/resolvers/group.ex:234
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:270
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:172
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token"
@ -330,22 +324,22 @@ msgid "Profile already suspended"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:93
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:184
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:181
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr ""
@ -355,7 +349,7 @@ msgid "Comment is already deleted"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr ""
@ -370,29 +364,29 @@ msgid "Error while updating report"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:128
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:100
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:193
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr ""
@ -407,14 +401,14 @@ msgid "No such feed token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:238
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr ""
@ -424,22 +418,17 @@ msgid "Person with ID %{id} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:50
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:41
msgid "Picture with ID %{id} was not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr ""
@ -454,8 +443,8 @@ msgid "Profile is already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
@ -463,12 +452,12 @@ msgid "Profile is not member of group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr ""
@ -483,12 +472,12 @@ msgid "Resource doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:121
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:261
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr ""
@ -514,22 +503,22 @@ msgid "Token is not a valid UUID"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:232
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:131
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:197
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr ""
@ -569,8 +558,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
@ -585,7 +574,7 @@ msgid "You cannot delete this comment"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:275
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr ""
@ -635,7 +624,7 @@ msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:75
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr ""
@ -645,12 +634,12 @@ msgid "You need to be logged-in to access resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:210
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:139
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr ""
@ -665,12 +654,12 @@ msgid "You need to be logged-in to create resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:284
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:209
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr ""
@ -680,22 +669,22 @@ msgid "You need to be logged-in to delete resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:105
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:204
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:249
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:176
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr ""
@ -709,11 +698,6 @@ msgstr ""
msgid "You need to be logged-in to view a resource preview"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:79
msgid "You need to login to upload a picture"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group"
@ -790,22 +774,22 @@ msgid "You can't reject this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:71
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:167
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:241
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr ""
@ -825,21 +809,27 @@ msgid "You don't have the right to remove this member."
msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:72
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:199
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:90
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -99,12 +99,12 @@ msgid "Cannot refresh the token"
msgstr "No s'ha pogut actualitzar el codi d'accés"
#, elixir-format
#: lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr "El perfil actual no pertany a aquest grup"
#, elixir-format
#: lib/graphql/resolvers/group.ex:202
#: lib/graphql/resolvers/group.ex:199
msgid "Current profile is not an administrator of the selected group"
msgstr "El perfil actual no administra el grup seleccionat"
@ -114,13 +114,13 @@ msgid "Error while saving user settings"
msgstr "No s'han pogut desar les preferències"
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr "No s'ha trobat el grup"
#, elixir-format
#: lib/graphql/resolvers/group.ex:66
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr "No s'ha trobat el grup amb identificador %{id}"
@ -130,7 +130,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."
#, elixir-format
#: lib/graphql/resolvers/group.ex:258
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr "No s'ha trobat el/la membre"
@ -146,16 +146,15 @@ msgid "No user to validate with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr ""
@ -221,22 +220,22 @@ msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:232
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:265
#: lib/graphql/resolvers/group.ex:262
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:94
#: lib/graphql/resolvers/group.ex:91
msgid "You may not list groups unless moderator."
msgstr ""
@ -251,7 +250,7 @@ msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:207
#: lib/graphql/resolvers/group.ex:204
msgid "You need to be logged-in to delete a group"
msgstr ""
@ -261,25 +260,20 @@ msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:237
#: lib/graphql/resolvers/group.ex:234
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:270
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:172
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token"
@ -331,22 +325,22 @@ msgid "Profile already suspended"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:93
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:184
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:181
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr ""
@ -356,7 +350,7 @@ msgid "Comment is already deleted"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr ""
@ -371,29 +365,29 @@ msgid "Error while updating report"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:128
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:100
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:193
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr ""
@ -408,14 +402,14 @@ msgid "No such feed token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:238
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr ""
@ -425,22 +419,17 @@ msgid "Person with ID %{id} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:50
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:41
msgid "Picture with ID %{id} was not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr ""
@ -455,8 +444,8 @@ msgid "Profile is already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
@ -464,12 +453,12 @@ msgid "Profile is not member of group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr ""
@ -484,12 +473,12 @@ msgid "Resource doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:121
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:261
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr ""
@ -515,22 +504,22 @@ msgid "Token is not a valid UUID"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:232
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:131
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:197
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr ""
@ -570,8 +559,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
@ -586,7 +575,7 @@ msgid "You cannot delete this comment"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:275
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr ""
@ -636,7 +625,7 @@ msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:75
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr ""
@ -646,12 +635,12 @@ msgid "You need to be logged-in to access resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:210
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:139
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr ""
@ -666,12 +655,12 @@ msgid "You need to be logged-in to create resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:284
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:209
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr ""
@ -681,22 +670,22 @@ msgid "You need to be logged-in to delete resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:105
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:204
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:249
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:176
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr ""
@ -710,11 +699,6 @@ msgstr ""
msgid "You need to be logged-in to view a resource preview"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:79
msgid "You need to login to upload a picture"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group"
@ -791,22 +775,22 @@ msgid "You can't reject this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:71
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:167
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:241
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr ""
@ -826,21 +810,27 @@ msgid "You don't have the right to remove this member."
msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:72
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:199
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:90
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

View File

@ -17,11 +17,6 @@ msgstr ""
msgid "If you didn't request this, please ignore this email. Your password won't change until you access the link below and create a new one."
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:170
msgid "Feed for %{email} on Mobilizon"
msgstr ""
#, elixir-format
#: lib/web/templates/email/report.html.eex:74
msgid "%{title} by %{creator}"
@ -142,7 +137,7 @@ msgid "Warning"
msgstr ""
#, elixir-format
#: lib/web/email/participation.ex:134
#: lib/web/email/participation.ex:135
msgid "Confirm your participation to event %{title}"
msgstr ""
@ -325,7 +320,7 @@ msgid "Mobilizon on %{instance}: email changed"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:46
#: lib/web/email/notification.ex:47
msgid "One event planned today"
msgid_plural "%{nb_events} events planned today"
msgstr[0] ""
@ -380,12 +375,12 @@ msgid "View the event on: %{link}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:32
#: lib/web/email/group.ex:33
msgid "You have been invited by %{inviter} to join group %{group}"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:70
#: lib/web/email/notification.ex:71
msgid "One event planned this week"
msgid_plural "%{nb_events} events planned this week"
msgstr[0] ""
@ -393,7 +388,7 @@ msgstr[1] ""
msgstr[2] ""
#, elixir-format
#: lib/web/email/notification.ex:92
#: lib/web/email/notification.ex:93
msgid "One participation request for event %{title} to process"
msgid_plural "%{number_participation_requests} participation requests for event %{title} to process"
msgstr[0] ""
@ -1057,7 +1052,7 @@ msgid "So long, and thanks for the fish!"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:62
#: lib/web/email/group.ex:63
msgid "You have been removed from group %{group}"
msgstr ""
@ -1113,12 +1108,12 @@ msgid "Your instance's moderation team has decided to suspend %{group_name} (%{g
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:135
#: lib/web/email/group.ex:136
msgid "The group %{group} has been deleted on %{instance}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:96
#: lib/web/email/group.ex:97
msgid "The group %{group} has been suspended on %{instance}"
msgstr ""
@ -1278,12 +1273,12 @@ msgid "You have now confirmed your participation. Update your calendar, because
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:91
#: lib/mobilizon/posts/post.ex:94
msgid "A text is required for the post"
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:90
#: lib/mobilizon/posts/post.ex:93
msgid "A title is required for the post"
msgstr ""
@ -1375,3 +1370,23 @@ msgstr ""
#: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon."
msgstr ""
#, elixir-format
#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60
msgid "%{name}'s feed"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:77
msgid "%{actor}'s private events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:72
msgid "%{actor}'s public events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:203
msgid "Feed for %{email} on %{instance}"
msgstr ""

View File

@ -98,12 +98,12 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:202
#: lib/graphql/resolvers/group.ex:199
msgid "Current profile is not an administrator of the selected group"
msgstr ""
@ -113,13 +113,13 @@ msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:66
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr ""
@ -129,7 +129,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:258
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr ""
@ -145,16 +145,15 @@ msgid "No user to validate with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr ""
@ -220,22 +219,22 @@ msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:232
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:265
#: lib/graphql/resolvers/group.ex:262
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:94
#: lib/graphql/resolvers/group.ex:91
msgid "You may not list groups unless moderator."
msgstr ""
@ -250,7 +249,7 @@ msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:207
#: lib/graphql/resolvers/group.ex:204
msgid "You need to be logged-in to delete a group"
msgstr ""
@ -260,25 +259,20 @@ msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:237
#: lib/graphql/resolvers/group.ex:234
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:270
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:172
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token"
@ -330,22 +324,22 @@ msgid "Profile already suspended"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:93
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:184
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:181
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr ""
@ -355,7 +349,7 @@ msgid "Comment is already deleted"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr ""
@ -370,29 +364,29 @@ msgid "Error while updating report"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:128
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:100
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:193
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr ""
@ -407,14 +401,14 @@ msgid "No such feed token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:238
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr ""
@ -424,22 +418,17 @@ msgid "Person with ID %{id} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:50
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:41
msgid "Picture with ID %{id} was not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr ""
@ -454,8 +443,8 @@ msgid "Profile is already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
@ -463,12 +452,12 @@ msgid "Profile is not member of group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr ""
@ -483,12 +472,12 @@ msgid "Resource doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:121
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:261
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr ""
@ -514,22 +503,22 @@ msgid "Token is not a valid UUID"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:232
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:131
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:197
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr ""
@ -569,8 +558,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
@ -585,7 +574,7 @@ msgid "You cannot delete this comment"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:275
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr ""
@ -635,7 +624,7 @@ msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:75
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr ""
@ -645,12 +634,12 @@ msgid "You need to be logged-in to access resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:210
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:139
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr ""
@ -665,12 +654,12 @@ msgid "You need to be logged-in to create resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:284
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:209
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr ""
@ -680,22 +669,22 @@ msgid "You need to be logged-in to delete resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:105
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:204
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:249
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:176
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr ""
@ -709,11 +698,6 @@ msgstr ""
msgid "You need to be logged-in to view a resource preview"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:79
msgid "You need to login to upload a picture"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group"
@ -790,22 +774,22 @@ msgid "You can't reject this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:71
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:167
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:241
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr ""
@ -825,21 +809,27 @@ msgid "You don't have the right to remove this member."
msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:72
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:199
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:90
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -93,783 +93,773 @@ msgstr "muss größer oder gleich %{number} sein"
msgid "must be equal to %{number}"
msgstr "muss gleich %{number} sein"
#: lib/graphql/resolvers/user.ex:103
#, elixir-format
#: lib/graphql/resolvers/user.ex:103
msgid "Cannot refresh the token"
msgstr "Der Token konnte nicht aktualisiert werden"
#: lib/graphql/resolvers/group.ex:198
#, elixir-format
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr "Aktuelles Profil ist nicht Mitglied dieser Gruppe"
#: lib/graphql/resolvers/group.ex:202
#, elixir-format
#: lib/graphql/resolvers/group.ex:199
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:512
#, elixir-format
#: lib/graphql/resolvers/user.ex:512
msgid "Error while saving user settings"
msgstr "Fehler beim Speichern von Benutzereinstellungen"
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr "Gruppe nicht gefunden"
#: lib/graphql/resolvers/group.ex:66
#, elixir-format
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr "Gruppe mit der ID %{id} nicht gefunden"
#: lib/graphql/resolvers/user.ex:83
#, elixir-format
#: lib/graphql/resolvers/user.ex:83
msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
"Die Authentifizierung ist nicht möglich, entweder Ihre E-Mail oder Ihr "
"Passwort sind ungültig."
#: lib/graphql/resolvers/group.ex:258
#, elixir-format
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr "Mitglied wurde nicht gefunden"
#, elixir-format
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
#: lib/graphql/resolvers/user.ex:417
#, elixir-format
msgid "No profile found for the moderator user"
msgstr "Kein Profil für den Moderator-Benutzer gefunden"
#: lib/graphql/resolvers/user.ex:195
#, elixir-format
#: lib/graphql/resolvers/user.ex:195
msgid "No user to validate with this email was found"
msgstr ""
"Es wurde kein Benutzer gefunden, der mit dieser E-Mail validiert werden kann"
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#, elixir-format
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr "Es wurde kein Benutzer mit dieser E-Mail gefunden"
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr "Profil ist nicht im Besitz des authentifizierten Benutzers"
#: lib/graphql/resolvers/user.ex:125
#, elixir-format
#: lib/graphql/resolvers/user.ex:125
msgid "Registrations are not open"
msgstr "Registrierungen sind nicht geöffnet"
#: lib/graphql/resolvers/user.ex:330
#, elixir-format
#: lib/graphql/resolvers/user.ex:330
msgid "The current password is invalid"
msgstr "Das aktuelle Passwort ist ungültig"
#: lib/graphql/resolvers/user.ex:382
#, elixir-format
#: lib/graphql/resolvers/user.ex:382
msgid "The new email doesn't seem to be valid"
msgstr "Die neue E-Mail scheint nicht gültig zu sein"
#: lib/graphql/resolvers/user.ex:379
#, elixir-format
#: lib/graphql/resolvers/user.ex:379
msgid "The new email must be different"
msgstr "Die neue E-Mail muss anders lauten"
#: lib/graphql/resolvers/user.ex:333
#, elixir-format
#: lib/graphql/resolvers/user.ex:333
msgid "The new password must be different"
msgstr "Das neue Passwort muss anders lauten"
#, elixir-format
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
#: lib/graphql/resolvers/user.ex:442
#, elixir-format
msgid "The password provided is invalid"
msgstr "Das angegebene Passwort ist ungültig"
#: lib/graphql/resolvers/user.ex:337
#, elixir-format
#: lib/graphql/resolvers/user.ex:337
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
"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:215
#, elixir-format
#: lib/graphql/resolvers/user.ex:215
msgid "This user can't reset their password"
msgstr "Dieser Benutzer kann sein Passwort nicht zurücksetzen"
#: lib/graphql/resolvers/user.ex:79
#, elixir-format
#: lib/graphql/resolvers/user.ex:79
msgid "This user has been disabled"
msgstr "Dieser Benutzer wurde deaktiviert"
#: lib/graphql/resolvers/user.ex:179
#, elixir-format
#: lib/graphql/resolvers/user.ex:179
msgid "Unable to validate user"
msgstr "Benutzer kann nicht validiert werden"
#: lib/graphql/resolvers/user.ex:420
#, elixir-format
#: lib/graphql/resolvers/user.ex:420
msgid "User already disabled"
msgstr "Benutzer bereits deaktiviert"
#: lib/graphql/resolvers/user.ex:487
#, elixir-format
#: lib/graphql/resolvers/user.ex:487
msgid "User requested is not logged-in"
msgstr "Angeforderter Benutzer ist nicht eingeloggt"
#: lib/graphql/resolvers/group.ex:232
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr "Sie sind bereits Mitglied in dieser Gruppe"
#: lib/graphql/resolvers/group.ex:265
#, elixir-format
#: lib/graphql/resolvers/group.ex:262
msgid "You can't leave this group because you are the only administrator"
msgstr ""
"Sie können diese Gruppe nicht verlassen, da Sie der einzige Administrator "
"sind"
#: lib/graphql/resolvers/group.ex:229
#, elixir-format
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr "Sie können dieser Gruppe nicht beitreten"
#: lib/graphql/resolvers/group.ex:94
#, elixir-format
#: lib/graphql/resolvers/group.ex:91
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:387
#, elixir-format
#: lib/graphql/resolvers/user.ex:387
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:345
#, elixir-format
#: lib/graphql/resolvers/user.ex:345
msgid "You need to be logged-in to change your password"
msgstr "Sie müssen eingeloggt sein, um Ihr Passwort zu ändern"
#: lib/graphql/resolvers/group.ex:207
#, elixir-format
#: lib/graphql/resolvers/group.ex:204
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:447
#, elixir-format
#: lib/graphql/resolvers/user.ex:447
msgid "You need to be logged-in to delete your account"
msgstr "Sie müssen eingeloggt sein, um Ihr Konto zu löschen"
#: lib/graphql/resolvers/group.ex:237
#, elixir-format
#: lib/graphql/resolvers/group.ex:234
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:270
#, elixir-format
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr "Sie müssen eingeloggt sein, um eine Gruppe zu verlassen"
#: lib/graphql/resolvers/group.ex:172
#, elixir-format
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr "Sie müssen eingeloggt sein, um eine Gruppe zu aktualisieren"
#: lib/graphql/resolvers/user.ex:58
#, elixir-format
msgid "You need to have admin access to list users"
msgstr "Sie müssen über Administratorrechte verfügen, um Benutzer aufzulisten"
#: lib/graphql/resolvers/user.ex:108
#, elixir-format
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:198 lib/graphql/resolvers/user.ex:222
#, elixir-format
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
msgid "You requested again a confirmation email too soon"
msgstr "Sie haben erneut eine Bestätigungs-E-Mail zu früh angefordert"
#: lib/graphql/resolvers/user.ex:128
#, elixir-format
#: lib/graphql/resolvers/user.ex:128
msgid "Your email is not on the allowlist"
msgstr "Ihre E-Mail ist nicht in der Zulassungsliste enthalten"
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
#, elixir-format
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
msgid "Error while performing background task"
msgstr "Fehler beim Ausführen einer Hintergrundaufgabe"
#: lib/graphql/resolvers/actor.ex:27
#, elixir-format
#: lib/graphql/resolvers/actor.ex:27
msgid "No profile found with this ID"
msgstr "Kein Profil mit dieser ID gefunden"
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
#, elixir-format
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
msgid "No remote profile found with this ID"
msgstr "Kein entferntes Profil mit dieser ID gefunden"
#: lib/graphql/resolvers/actor.ex:69
#, elixir-format
#: lib/graphql/resolvers/actor.ex:69
msgid "Only moderators and administrators can suspend a profile"
msgstr "Nur Moderatoren und Administratoren können ein Profil sperren"
#: lib/graphql/resolvers/actor.ex:99
#, elixir-format
#: lib/graphql/resolvers/actor.ex:99
msgid "Only moderators and administrators can unsuspend a profile"
msgstr "Nur Moderatoren und Administratoren können ein Profil unsuspendieren"
#: lib/graphql/resolvers/actor.ex:24
#, elixir-format
#: lib/graphql/resolvers/actor.ex:24
msgid "Only remote profiles may be refreshed"
msgstr "Nur entfernte Profile können aufgefrischt werden"
#: lib/graphql/resolvers/actor.ex:61
#, elixir-format
#: lib/graphql/resolvers/actor.ex:61
msgid "Profile already suspended"
msgstr "Profil bereits gesperrt"
#: lib/graphql/resolvers/participant.ex:93
#, elixir-format
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr "Eine gültige E-Mail wird von Ihrer Instanz benötigt"
#: lib/graphql/resolvers/participant.ex:87
#, elixir-format
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr "Anonyme Teilnahme ist nicht möglich"
#: lib/graphql/resolvers/person.ex:184
#, elixir-format
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr "Der letzte Administrator einer Gruppe kann nicht entfernt werden"
#: lib/graphql/resolvers/person.ex:181
#, elixir-format
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr "Kann die letzte Identität eines Benutzers nicht entfernen"
#: lib/graphql/resolvers/comment.ex:105
#, elixir-format
#: lib/graphql/resolvers/comment.ex:105
msgid "Comment is already deleted"
msgstr "Kommentar ist bereits gelöscht"
#: lib/graphql/resolvers/discussion.ex:61
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr "Diskussion nicht gefunden"
#: lib/graphql/resolvers/report.ex:58 lib/graphql/resolvers/report.ex:77
#, elixir-format
#: lib/graphql/resolvers/report.ex:58 lib/graphql/resolvers/report.ex:77
msgid "Error while saving report"
msgstr "Fehler beim Speichern des Reports"
#: lib/graphql/resolvers/report.ex:96
#, elixir-format
#: lib/graphql/resolvers/report.ex:96
msgid "Error while updating report"
msgstr "Fehler beim Aktualisieren des Reports"
#: lib/graphql/resolvers/participant.ex:128
#, elixir-format
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr "Veranstaltungs-ID nicht gefunden"
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr "Veranstaltung nicht gefunden"
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#, elixir-format
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr "Veranstaltung mit dieser ID %{id} existiert nicht"
#: lib/graphql/resolvers/participant.ex:100
#, elixir-format
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr "Interner Fehler"
#: lib/graphql/resolvers/discussion.ex:193
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr "Keine Diskussion mit ID %{id}"
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:168
#, elixir-format
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:168
msgid "No profile found for user"
msgstr "Kein Profil für Benutzer gefunden"
#: lib/graphql/resolvers/feed_token.ex:63
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token"
msgstr "Kein solches Feed-Token"
#: lib/graphql/resolvers/participant.ex:238
#, elixir-format
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr "Teilnehmer hat bereits Rolle %{role}"
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#, elixir-format
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr "Teilnehmer nicht gefunden"
#: lib/graphql/resolvers/person.ex:29
#, elixir-format
#: lib/graphql/resolvers/person.ex:29
msgid "Person with ID %{id} not found"
msgstr "Person mit ID %{id} nicht gefunden"
#: lib/graphql/resolvers/person.ex:50
#, elixir-format
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr "Person mit Benutzernamen %{username} nicht gefunden"
#: lib/graphql/resolvers/picture.ex:41
#, elixir-format
msgid "Picture with ID %{id} was not found"
msgstr "Bild mit ID %{id} wurde nicht gefunden"
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#, elixir-format
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr "Post-ID ist keine gültige ID"
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#, elixir-format
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr "Beitrag existiert nicht"
#: lib/graphql/resolvers/member.ex:83
#, elixir-format
#: lib/graphql/resolvers/member.ex:83
msgid "Profile invited doesn't exist"
msgstr "Eingeladenes Profil existiert nicht Eingeladenes Profil existiert nicht"
#: lib/graphql/resolvers/member.ex:92 lib/graphql/resolvers/member.ex:96
#, elixir-format
#: lib/graphql/resolvers/member.ex:92 lib/graphql/resolvers/member.ex:96
msgid "Profile is already a member of this group"
msgstr ""
"Profil ist bereits Mitglied in dieser Gruppe Profil ist bereits Mitglied in "
"dieser Gruppe"
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#, elixir-format
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
#, elixir-format
msgid "Profile is not member of group"
msgstr "Profil ist nicht Mitglied der Gruppe"
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#, elixir-format
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr "Profil nicht gefunden"
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr "Dieses Moderatorenprofil hat keine Berechtigung für diese Veranstaltung"
#: lib/graphql/resolvers/report.ex:36
#, elixir-format
#: lib/graphql/resolvers/report.ex:36
msgid "Report not found"
msgstr "Meldung nicht gefunden"
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
#, elixir-format
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
msgid "Resource doesn't exist"
msgstr "Ressource ist nicht vorhanden"
#: lib/graphql/resolvers/participant.ex:121
#, elixir-format
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr "Die Veranstaltung hat bereits ihre maximale Kapazität erreicht"
#: lib/graphql/resolvers/participant.ex:261
#, elixir-format
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr "Dieses Token ist ungültig"
#: lib/graphql/resolvers/todos.ex:165 lib/graphql/resolvers/todos.ex:219
#, elixir-format
#: lib/graphql/resolvers/todos.ex:165 lib/graphql/resolvers/todos.ex:219
msgid "Todo doesn't exist"
msgstr "Todo existiert nicht"
#, elixir-format
#: lib/graphql/resolvers/todos.ex:75 lib/graphql/resolvers/todos.ex:191
#: lib/graphql/resolvers/todos.ex:216
#, elixir-format
msgid "Todo list doesn't exist"
msgstr "ToDo-Liste existiert nicht"
#: lib/graphql/resolvers/feed_token.ex:69
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist"
msgstr "Token existiert nicht"
#: lib/graphql/resolvers/feed_token.ex:66
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID"
msgstr "Token ist keine gültige UUID"
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr "User nicht gefunden"
#: lib/graphql/resolvers/person.ex:232
#, elixir-format
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr "Sie haben bereits ein Profil für diesen Benutzer"
#: lib/graphql/resolvers/participant.ex:131
#, elixir-format
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr "Sie sind bereits ein Teilnehmer dieser Veranstaltung"
#: lib/graphql/resolvers/discussion.ex:197
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr "Sie sind kein Mitglied der Gruppe, zu der die Diskussion gehört"
#: lib/graphql/resolvers/member.ex:86
#, elixir-format
#: lib/graphql/resolvers/member.ex:86
msgid "You are not a member of this group"
msgstr "Sie sind nicht Mitglied in dieser Gruppe"
#: lib/graphql/resolvers/member.ex:151
#, elixir-format
#: lib/graphql/resolvers/member.ex:151
msgid "You are not a moderator or admin for this group"
msgstr "Sie sind kein Moderator oder Admin für diese Gruppe"
#: lib/graphql/resolvers/comment.ex:51
#, elixir-format
#: lib/graphql/resolvers/comment.ex:51
msgid "You are not allowed to create a comment if not connected"
msgstr "Wenn Sie nicht verbunden sind, dürfen Sie keinen Kommentar erstellen"
#: lib/graphql/resolvers/feed_token.ex:41
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected"
msgstr "Sie dürfen kein Feed-Token erstellen, wenn Sie nicht verbunden sind"
#: lib/graphql/resolvers/comment.ex:110
#, elixir-format
#: lib/graphql/resolvers/comment.ex:110
msgid "You are not allowed to delete a comment if not connected"
msgstr "Sie dürfen einen Kommentar nicht löschen, wenn Sie nicht verbunden sind"
#: lib/graphql/resolvers/feed_token.ex:78
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected"
msgstr "Sie dürfen ein Feed-Token nicht löschen, wenn keine Verbindung besteht"
#: lib/graphql/resolvers/comment.ex:73
#, elixir-format
#: lib/graphql/resolvers/comment.ex:73
msgid "You are not allowed to update a comment if not connected"
msgstr ""
"Sie dürfen einen Kommentar nicht aktualisieren, wenn Sie nicht verbunden sind"
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#, elixir-format
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
"Sie können die Veranstaltung nicht verlassen, weil Sie der einzige "
"Teilnehmer sind, der die Veranstaltung erstellt"
#: lib/graphql/resolvers/member.ex:155
#, elixir-format
#: lib/graphql/resolvers/member.ex:155
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
"Sie können sich nicht auf eine niedrigere Mitgliedsrolle für diese Gruppe "
"einstellen, da Sie der einzige Administrator sind"
#: lib/graphql/resolvers/comment.ex:101
#, elixir-format
#: lib/graphql/resolvers/comment.ex:101
msgid "You cannot delete this comment"
msgstr "Sie können diesen Kommentar nicht löschen"
#: lib/graphql/resolvers/event.ex:275
#, elixir-format
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr "Sie können diese Veranstaltung nicht löschen"
#: lib/graphql/resolvers/member.ex:89
#, elixir-format
#: lib/graphql/resolvers/member.ex:89
msgid "You cannot invite to this group"
msgstr "Sie können nicht in diese Gruppe einladen"
#: lib/graphql/resolvers/feed_token.ex:72
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token"
msgstr "Sie haben nicht die Berechtigung diesen Token zu löschen"
#: lib/graphql/resolvers/admin.ex:52
#, elixir-format
#: lib/graphql/resolvers/admin.ex:52
msgid "You need to be logged-in and a moderator to list action logs"
msgstr ""
"Sie müssen eingeloggt und ein Moderator sein, um Aktionsprotokolle "
"aufzulisten"
#: lib/graphql/resolvers/report.ex:26
#, elixir-format
#: lib/graphql/resolvers/report.ex:26
msgid "You need to be logged-in and a moderator to list reports"
msgstr "Sie müssen eingeloggt und ein Moderator sein, um Berichte aufzulisten"
#: lib/graphql/resolvers/report.ex:101
#, elixir-format
#: lib/graphql/resolvers/report.ex:101
msgid "You need to be logged-in and a moderator to update a report"
msgstr ""
"Sie müssen eingeloggt und ein Moderator sein, um einen Bericht zu "
"aktualisieren"
#: lib/graphql/resolvers/report.ex:41
#, elixir-format
#: lib/graphql/resolvers/report.ex:41
msgid "You need to be logged-in and a moderator to view a report"
msgstr "Sie müssen eingeloggt und ein Moderator sein, um einen Bericht zu sehen"
#: lib/graphql/resolvers/admin.ex:236
#, elixir-format
#: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings"
msgstr ""
"Sie müssen angemeldet und ein Administrator sein, um auf die Admin-"
"Einstellungen zugreifen zu können"
#: lib/graphql/resolvers/admin.ex:221
#, elixir-format
#: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr ""
"Sie müssen angemeldet und ein Administrator sein, um auf die Dashboard-"
"Statistiken zugreifen zu können"
#: lib/graphql/resolvers/admin.ex:260
#, elixir-format
#: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
"Sie müssen eingeloggt und ein Administrator sein, um Admin-Einstellungen zu "
"speichern"
#: lib/graphql/resolvers/discussion.ex:75
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr "Sie müssen eingeloggt sein, um auf Diskussionen zugreifen zu können"
#: lib/graphql/resolvers/resource.ex:93
#, elixir-format
#: lib/graphql/resolvers/resource.ex:93
msgid "You need to be logged-in to access resources"
msgstr "Sie müssen eingeloggt sein, um auf Ressourcen zugreifen zu können"
#: lib/graphql/resolvers/event.ex:210
#, elixir-format
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr "Sie müssen eingeloggt sein, um Ereignisse zu erstellen"
#: lib/graphql/resolvers/post.ex:139
#, elixir-format
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr "Sie müssen eingeloggt sein, um Beiträge zu erstellen"
#: lib/graphql/resolvers/report.ex:74
#, elixir-format
#: lib/graphql/resolvers/report.ex:74
msgid "You need to be logged-in to create reports"
msgstr "Sie müssen eingeloggt sein, um Berichte zu erstellen"
#: lib/graphql/resolvers/resource.ex:129
#, elixir-format
#: lib/graphql/resolvers/resource.ex:129
msgid "You need to be logged-in to create resources"
msgstr "Sie müssen eingeloggt sein, um Ressourcen zu erstellen"
#: lib/graphql/resolvers/event.ex:284
#, elixir-format
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr "Sie müssen eingeloggt sein, um ein Ereignis zu löschen"
#: lib/graphql/resolvers/post.ex:209
#, elixir-format
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr "Sie müssen eingeloggt sein, um Beiträge zu löschen"
#: lib/graphql/resolvers/resource.ex:187
#, elixir-format
#: lib/graphql/resolvers/resource.ex:187
msgid "You need to be logged-in to delete resources"
msgstr "Sie müssen eingeloggt sein, um Ressourcen zu löschen"
#: lib/graphql/resolvers/participant.ex:105
#, elixir-format
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr "Sie müssen eingeloggt sein, um einer Veranstaltung beizutreten"
#: lib/graphql/resolvers/participant.ex:204
#, elixir-format
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr "Sie müssen eingeloggt sein, um eine Veranstaltung zu verlassen"
#: lib/graphql/resolvers/event.ex:249
#, elixir-format
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr "Sie müssen eingeloggt sein, um ein Ereignis zu aktualisieren"
#: lib/graphql/resolvers/post.ex:176
#, elixir-format
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr "Sie müssen eingeloggt sein, um Beiträge zu aktualisieren"
#: lib/graphql/resolvers/resource.ex:158
#, elixir-format
#: lib/graphql/resolvers/resource.ex:158
msgid "You need to be logged-in to update resources"
msgstr "Sie müssen eingeloggt sein, um Ressourcen zu aktualisieren"
#: lib/graphql/resolvers/resource.ex:210
#, elixir-format
#: lib/graphql/resolvers/resource.ex:210
msgid "You need to be logged-in to view a resource preview"
msgstr "Sie müssen eingeloggt sein, um eine Ressourcenvorschau zu sehen"
#: lib/graphql/resolvers/picture.ex:79
#, elixir-format
msgid "You need to login to upload a picture"
msgstr "Sie müssen sich anmelden, um ein Bild hochzuladen"
#: lib/graphql/resolvers/resource.ex:121
#, elixir-format
msgid "Parent resource doesn't belong to this group"
msgstr "Die übergeordnete Ressource gehört nicht zu dieser Gruppe"
#: lib/mobilizon/users/user.ex:109
#, elixir-format
#: lib/mobilizon/users/user.ex:109
msgid "The chosen password is too short."
msgstr "Das gewählte Passwort ist zu kurz."
#: lib/mobilizon/users/user.ex:138
#, elixir-format
#: lib/mobilizon/users/user.ex:138
msgid "The registration token is already in use, this looks like an issue on our side."
msgstr ""
"Das Registrierungs-Token ist bereits in Gebrauch, dies sieht nach einem "
"Problem auf unserer Seite aus."
#: lib/mobilizon/users/user.ex:104
#, elixir-format
#: lib/mobilizon/users/user.ex:104
msgid "This email is already used."
msgstr "Diese E-Mail wird bereits verwendet."
#: lib/graphql/error.ex:88
#, elixir-format
#: lib/graphql/error.ex:88
msgid "Post not found"
msgstr "Beitrag nicht gefunden"
#: lib/graphql/error.ex:75
#, elixir-format
#: lib/graphql/error.ex:75
msgid "Invalid arguments passed"
msgstr "Ungültige Argumente übergeben"
#: lib/graphql/error.ex:81
#, elixir-format
#: lib/graphql/error.ex:81
msgid "Invalid credentials"
msgstr "Ungültige Anmeldeinformationen"
#: lib/graphql/error.ex:79
#, elixir-format
#: lib/graphql/error.ex:79
msgid "Reset your password to login"
msgstr "Passwort zurücksetzen"
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
#, elixir-format
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
msgid "Resource not found"
msgstr "Ressource nicht gefunden"
#: lib/graphql/error.ex:92
#, elixir-format
#: lib/graphql/error.ex:92
msgid "Something went wrong"
msgstr "Etwas lief falsch"
#: lib/graphql/error.ex:74
#, elixir-format
#: lib/graphql/error.ex:74
msgid "Unknown Resource"
msgstr "Unbekannte Ressource"
#: lib/graphql/error.ex:84
#, elixir-format
#: lib/graphql/error.ex:84
msgid "You don't have permission to do this"
msgstr "Sie haben nicht die Berechtigung dies zu tun"
#: lib/graphql/error.ex:76
#, elixir-format
#: lib/graphql/error.ex:76
msgid "You need to be logged in"
msgstr "Sie müssen eingeloggt sein"
#: lib/graphql/resolvers/member.ex:116
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
msgid "You can't accept this invitation with this profile."
msgstr "Sie können diese Einladung mit diesem Profil nicht annehmen."
#: lib/graphql/resolvers/member.ex:134
#, elixir-format
#: lib/graphql/resolvers/member.ex:134
msgid "You can't reject this invitation with this profile."
msgstr "Sie können diese Einladung mit diesem Profil nicht ablehnen."
#: lib/graphql/resolvers/picture.ex:71
#, elixir-format
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr "Die Datei hat keinen zulässigen MIME-Typ."
#: lib/graphql/resolvers/group.ex:167
#, elixir-format
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr "Profil ist nicht Administrator für die Gruppe"
#: lib/graphql/resolvers/event.ex:238
#, elixir-format
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr "Sie können dieses Ereignis nicht bearbeiten."
#: lib/graphql/resolvers/event.ex:241
#, elixir-format
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr "Sie können dieses Ereignis nicht diesem Profil zuordnen."
#: lib/graphql/resolvers/member.ex:137
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
msgid "This invitation doesn't exist."
msgstr "Diese Einladung gibt es nicht."
#: lib/graphql/resolvers/member.ex:179
#, elixir-format
#: lib/graphql/resolvers/member.ex:179
msgid "This member already has been rejected."
msgstr "Dieses Mitglied ist bereits abgelehnt worden."
#: lib/graphql/resolvers/member.ex:186
#, elixir-format
#: lib/graphql/resolvers/member.ex:186
msgid "You don't have the right to remove this member."
msgstr "Sie haben nicht das Recht, dieses Mitglied zu entfernen."
#: lib/mobilizon/actors/actor.ex:344
#, elixir-format
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr "Dieser Benutzername ist bereits vergeben."
#: lib/graphql/resolvers/discussion.ex:72
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
"Sie müssen entweder eine ID oder einen Slug angeben, um auf eine Diskussion "
"zuzugreifen"
#: lib/graphql/resolvers/event.ex:199
#, elixir-format
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr "Organizer-Profil ist nicht im Besitz des Benutzers"
#: lib/graphql/resolvers/participant.ex:90
#, elixir-format
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr "Die angegebene Profil-ID ist nicht die des anonymen Profils"
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

View File

@ -3,11 +3,6 @@
msgid "If you didn't request this, please ignore this email. Your password won't change until you access the link below and create a new one."
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:170
msgid "Feed for %{email} on Mobilizon"
msgstr ""
#, elixir-format
#: lib/web/templates/email/report.html.eex:74
msgid "%{title} by %{creator}"
@ -128,7 +123,7 @@ msgid "Warning"
msgstr ""
#, elixir-format
#: lib/web/email/participation.ex:134
#: lib/web/email/participation.ex:135
msgid "Confirm your participation to event %{title}"
msgstr ""
@ -311,7 +306,7 @@ msgid "Mobilizon on %{instance}: email changed"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:46
#: lib/web/email/notification.ex:47
msgid "One event planned today"
msgid_plural "%{nb_events} events planned today"
msgstr[0] ""
@ -364,19 +359,19 @@ msgid "View the event on: %{link}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:32
#: lib/web/email/group.ex:33
msgid "You have been invited by %{inviter} to join group %{group}"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:70
#: lib/web/email/notification.ex:71
msgid "One event planned this week"
msgid_plural "%{nb_events} events planned this week"
msgstr[0] ""
msgstr[1] ""
#, elixir-format
#: lib/web/email/notification.ex:92
#: lib/web/email/notification.ex:93
msgid "One participation request for event %{title} to process"
msgid_plural "%{number_participation_requests} participation requests for event %{title} to process"
msgstr[0] ""
@ -1036,7 +1031,7 @@ msgid "So long, and thanks for the fish!"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:62
#: lib/web/email/group.ex:63
msgid "You have been removed from group %{group}"
msgstr ""
@ -1092,12 +1087,12 @@ msgid "Your instance's moderation team has decided to suspend %{group_name} (%{g
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:135
#: lib/web/email/group.ex:136
msgid "The group %{group} has been deleted on %{instance}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:96
#: lib/web/email/group.ex:97
msgid "The group %{group} has been suspended on %{instance}"
msgstr ""
@ -1257,12 +1252,12 @@ msgid "You have now confirmed your participation. Update your calendar, because
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:91
#: lib/mobilizon/posts/post.ex:94
msgid "A text is required for the post"
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:90
#: lib/mobilizon/posts/post.ex:93
msgid "A title is required for the post"
msgstr ""
@ -1354,3 +1349,23 @@ msgstr ""
#: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon."
msgstr ""
#, elixir-format
#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60
msgid "%{name}'s feed"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:77
msgid "%{actor}'s private events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:72
msgid "%{actor}'s public events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:203
msgid "Feed for %{email} on %{instance}"
msgstr ""

View File

@ -26,11 +26,6 @@ msgstr ""
msgid "If you didn't request this, please ignore this email. Your password won't change until you access the link below and create a new one."
msgstr "If you didn't request this, please ignore this email. Your password won't change until you access the link below and create a new one."
#, elixir-format
#: lib/service/export/feed.ex:170
msgid "Feed for %{email} on Mobilizon"
msgstr "Feed for %{email} on Mobilizon"
#, elixir-format
#: lib/web/templates/email/report.html.eex:74
msgid "%{title} by %{creator}"
@ -151,7 +146,7 @@ msgid "Warning"
msgstr "Warning"
#, elixir-format
#: lib/web/email/participation.ex:134
#: lib/web/email/participation.ex:135
msgid "Confirm your participation to event %{title}"
msgstr "Confirm your participation to event %{title}"
@ -364,7 +359,7 @@ msgid "Mobilizon on %{instance}: email changed"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:46
#: lib/web/email/notification.ex:47
msgid "One event planned today"
msgid_plural "%{nb_events} events planned today"
msgstr[0] ""
@ -417,19 +412,19 @@ msgid "View the event on: %{link}"
msgstr "View the updated event on: %{link}"
#, elixir-format
#: lib/web/email/group.ex:32
#: lib/web/email/group.ex:33
msgid "You have been invited by %{inviter} to join group %{group}"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:70
#: lib/web/email/notification.ex:71
msgid "One event planned this week"
msgid_plural "%{nb_events} events planned this week"
msgstr[0] ""
msgstr[1] ""
#, elixir-format
#: lib/web/email/notification.ex:92
#: lib/web/email/notification.ex:93
msgid "One participation request for event %{title} to process"
msgid_plural "%{number_participation_requests} participation requests for event %{title} to process"
msgstr[0] ""
@ -1089,7 +1084,7 @@ msgid "So long, and thanks for the fish!"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:62
#: lib/web/email/group.ex:63
msgid "You have been removed from group %{group}"
msgstr ""
@ -1145,12 +1140,12 @@ msgid "Your instance's moderation team has decided to suspend %{group_name} (%{g
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:135
#: lib/web/email/group.ex:136
msgid "The group %{group} has been deleted on %{instance}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:96
#: lib/web/email/group.ex:97
msgid "The group %{group} has been suspended on %{instance}"
msgstr ""
@ -1310,12 +1305,12 @@ msgid "You have now confirmed your participation. Update your calendar, because
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:91
#: lib/mobilizon/posts/post.ex:94
msgid "A text is required for the post"
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:90
#: lib/mobilizon/posts/post.ex:93
msgid "A title is required for the post"
msgstr ""
@ -1407,3 +1402,23 @@ msgstr ""
#: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon."
msgstr "This is a demonstration site to test the beta version of Mobilizon."
#, elixir-format
#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60
msgid "%{name}'s feed"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:77
msgid "%{actor}'s private events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:72
msgid "%{actor}'s public events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:203
msgid "Feed for %{email} on %{instance}"
msgstr ""

View File

@ -102,12 +102,12 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:202
#: lib/graphql/resolvers/group.ex:199
msgid "Current profile is not an administrator of the selected group"
msgstr ""
@ -117,13 +117,13 @@ msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:66
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr ""
@ -133,7 +133,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:258
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr ""
@ -149,16 +149,15 @@ msgid "No user to validate with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr ""
@ -224,22 +223,22 @@ msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:232
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:265
#: lib/graphql/resolvers/group.ex:262
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:94
#: lib/graphql/resolvers/group.ex:91
msgid "You may not list groups unless moderator."
msgstr ""
@ -254,7 +253,7 @@ msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:207
#: lib/graphql/resolvers/group.ex:204
msgid "You need to be logged-in to delete a group"
msgstr ""
@ -264,25 +263,20 @@ msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:237
#: lib/graphql/resolvers/group.ex:234
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:270
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:172
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token"
@ -334,22 +328,22 @@ msgid "Profile already suspended"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:93
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:184
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:181
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr ""
@ -359,7 +353,7 @@ msgid "Comment is already deleted"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr ""
@ -374,29 +368,29 @@ msgid "Error while updating report"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:128
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:100
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:193
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr ""
@ -411,14 +405,14 @@ msgid "No such feed token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:238
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr ""
@ -428,22 +422,17 @@ msgid "Person with ID %{id} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:50
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:41
msgid "Picture with ID %{id} was not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr ""
@ -458,8 +447,8 @@ msgid "Profile is already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
@ -467,12 +456,12 @@ msgid "Profile is not member of group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr ""
@ -487,12 +476,12 @@ msgid "Resource doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:121
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:261
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr ""
@ -518,22 +507,22 @@ msgid "Token is not a valid UUID"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:232
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:131
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:197
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr ""
@ -573,8 +562,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
@ -589,7 +578,7 @@ msgid "You cannot delete this comment"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:275
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr ""
@ -639,7 +628,7 @@ msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:75
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr ""
@ -649,12 +638,12 @@ msgid "You need to be logged-in to access resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:210
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:139
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr ""
@ -669,12 +658,12 @@ msgid "You need to be logged-in to create resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:284
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:209
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr ""
@ -684,22 +673,22 @@ msgid "You need to be logged-in to delete resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:105
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:204
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:249
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:176
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr ""
@ -713,11 +702,6 @@ msgstr ""
msgid "You need to be logged-in to view a resource preview"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:79
msgid "You need to login to upload a picture"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group"
@ -794,22 +778,22 @@ msgid "You can't reject this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:71
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:167
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:241
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr ""
@ -829,21 +813,27 @@ msgid "You don't have the right to remove this member."
msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:72
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:199
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:90
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

View File

@ -99,12 +99,12 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:202
#: lib/graphql/resolvers/group.ex:199
msgid "Current profile is not an administrator of the selected group"
msgstr ""
@ -114,13 +114,13 @@ msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:66
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr ""
@ -130,7 +130,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:258
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr ""
@ -146,16 +146,15 @@ msgid "No user to validate with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr ""
@ -221,22 +220,22 @@ msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:232
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:265
#: lib/graphql/resolvers/group.ex:262
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:94
#: lib/graphql/resolvers/group.ex:91
msgid "You may not list groups unless moderator."
msgstr ""
@ -251,7 +250,7 @@ msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:207
#: lib/graphql/resolvers/group.ex:204
msgid "You need to be logged-in to delete a group"
msgstr ""
@ -261,25 +260,20 @@ msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:237
#: lib/graphql/resolvers/group.ex:234
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:270
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:172
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token"
@ -331,22 +325,22 @@ msgid "Profile already suspended"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:93
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:184
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:181
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr ""
@ -356,7 +350,7 @@ msgid "Comment is already deleted"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr ""
@ -371,29 +365,29 @@ msgid "Error while updating report"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:128
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:100
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:193
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr ""
@ -408,14 +402,14 @@ msgid "No such feed token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:238
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr ""
@ -425,22 +419,17 @@ msgid "Person with ID %{id} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:50
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:41
msgid "Picture with ID %{id} was not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr ""
@ -455,8 +444,8 @@ msgid "Profile is already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
@ -464,12 +453,12 @@ msgid "Profile is not member of group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr ""
@ -484,12 +473,12 @@ msgid "Resource doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:121
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:261
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr ""
@ -515,22 +504,22 @@ msgid "Token is not a valid UUID"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:232
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:131
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:197
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr ""
@ -570,8 +559,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
@ -586,7 +575,7 @@ msgid "You cannot delete this comment"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:275
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr ""
@ -636,7 +625,7 @@ msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:75
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr ""
@ -646,12 +635,12 @@ msgid "You need to be logged-in to access resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:210
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:139
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr ""
@ -666,12 +655,12 @@ msgid "You need to be logged-in to create resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:284
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:209
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr ""
@ -681,22 +670,22 @@ msgid "You need to be logged-in to delete resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:105
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:204
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:249
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:176
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr ""
@ -710,11 +699,6 @@ msgstr ""
msgid "You need to be logged-in to view a resource preview"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:79
msgid "You need to login to upload a picture"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group"
@ -791,22 +775,22 @@ msgid "You can't reject this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:71
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:167
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:241
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr ""
@ -826,21 +810,27 @@ msgid "You don't have the right to remove this member."
msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:72
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:199
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:90
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

View File

@ -21,11 +21,6 @@ msgstr ""
"Si no solicitaste este correo, simplemente ignóralo. Su contraseña no "
"cambiará al menos que use el siguiente enlace para crear una nueva."
#, elixir-format
#: lib/service/export/feed.ex:170
msgid "Feed for %{email} on Mobilizon"
msgstr "Feed para% {email} en Mobilizon"
#, elixir-format
#: lib/web/templates/email/report.html.eex:74
msgid "%{title} by %{creator}"
@ -153,7 +148,7 @@ msgid "Warning"
msgstr "Advertencia"
#, elixir-format
#: lib/web/email/participation.ex:134
#: lib/web/email/participation.ex:135
msgid "Confirm your participation to event %{title}"
msgstr "Confirme su participación en el evento %{title}"
@ -371,7 +366,7 @@ msgid "Mobilizon on %{instance}: email changed"
msgstr "Mobilizon en %{instance}: correo electrónico modificado"
#, elixir-format
#: lib/web/email/notification.ex:46
#: lib/web/email/notification.ex:47
msgid "One event planned today"
msgid_plural "%{nb_events} events planned today"
msgstr[0] "Un evento programado para hoy"
@ -424,19 +419,19 @@ msgid "View the event on: %{link}"
msgstr "Ver el evento actualizado en: %{link}"
#, elixir-format
#: lib/web/email/group.ex:32
#: lib/web/email/group.ex:33
msgid "You have been invited by %{inviter} to join group %{group}"
msgstr "%{Inviter} te ha invitado a unirte al grupo %{group}"
#, elixir-format
#: lib/web/email/notification.ex:70
#: lib/web/email/notification.ex:71
msgid "One event planned this week"
msgid_plural "%{nb_events} events planned this week"
msgstr[0] "Un evento programado para hoy"
msgstr[1] "%{nb_events} eventos planeados hoy"
#, elixir-format
#: lib/web/email/notification.ex:92
#: lib/web/email/notification.ex:93
msgid "One participation request for event %{title} to process"
msgid_plural "%{number_participation_requests} participation requests for event %{title} to process"
msgstr[0] "Una solicitud para participar en el evento %{title} a procesar"
@ -1268,7 +1263,7 @@ msgid "So long, and thanks for the fish!"
msgstr "¡Hasta luego y gracias por el pescado!"
#, elixir-format
#: lib/web/email/group.ex:62
#: lib/web/email/group.ex:63
msgid "You have been removed from group %{group}"
msgstr "Ha sido eliminado del grupo %{group}"
@ -1338,12 +1333,12 @@ msgstr ""
" (%{group_address}). Ya no eres miembro de este grupo."
#, elixir-format
#: lib/web/email/group.ex:135
#: lib/web/email/group.ex:136
msgid "The group %{group} has been deleted on %{instance}"
msgstr "El grupo %{group} se eliminó en %{instance}"
#, elixir-format
#: lib/web/email/group.ex:96
#: lib/web/email/group.ex:97
msgid "The group %{group} has been suspended on %{instance}"
msgstr "El grupo %{group} ha sido suspendido en %{instance}"
@ -1589,12 +1584,12 @@ msgstr ""
"está en la lista de invitados!"
#, elixir-format
#: lib/mobilizon/posts/post.ex:91
#: lib/mobilizon/posts/post.ex:94
msgid "A text is required for the post"
msgstr "Se requiere un texto para la publicación"
#, elixir-format
#: lib/mobilizon/posts/post.ex:90
#: lib/mobilizon/posts/post.ex:93
msgid "A title is required for the post"
msgstr "Se requiere un título para la publicación"
@ -1692,3 +1687,23 @@ msgstr "Lo sentimos, pero algo salió mal por nuestra parte."
#: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon."
msgstr "Este es un sitio de demostración para probar Mobilizon."
#, elixir-format
#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60
msgid "%{name}'s feed"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:77
msgid "%{actor}'s private events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:72
msgid "%{actor}'s public events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:203
msgid "Feed for %{email} on %{instance}"
msgstr ""

View File

@ -93,774 +93,764 @@ msgstr "debe ser mayor o igual que% {number}"
msgid "must be equal to %{number}"
msgstr "debe ser igual a% {number}"
#: lib/graphql/resolvers/user.ex:103
#, elixir-format
#: lib/graphql/resolvers/user.ex:103
msgid "Cannot refresh the token"
msgstr "No se puede actualizar el token"
#: lib/graphql/resolvers/group.ex:198
#, elixir-format
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr "El perfil actual no es miembro de este grupo"
#: lib/graphql/resolvers/group.ex:202
#, elixir-format
#: lib/graphql/resolvers/group.ex:199
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:512
#, elixir-format
#: lib/graphql/resolvers/user.ex:512
msgid "Error while saving user settings"
msgstr "Error al guardar los parámetros del usuario"
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr "Grupo no encontrado"
#: lib/graphql/resolvers/group.ex:66
#, elixir-format
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr "No se encontró el grupo con ID% {id}"
#: lib/graphql/resolvers/user.ex:83
#, elixir-format
#: lib/graphql/resolvers/user.ex:83
msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
"Imposible autenticarse, su correo electrónico o contraseña no son válidos."
#: lib/graphql/resolvers/group.ex:258
#, elixir-format
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr "Miembro no encontrado"
#, elixir-format
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
#: lib/graphql/resolvers/user.ex:417
#, elixir-format
msgid "No profile found for the moderator user"
msgstr "No se encontró el perfil del usuario moderador"
#: lib/graphql/resolvers/user.ex:195
#, elixir-format
#: lib/graphql/resolvers/user.ex:195
msgid "No user to validate with this email was found"
msgstr "No se encontró ningún usuario para validar con este correo electrónico"
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#, elixir-format
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr "No se encontró ningún usuario con este correo electrónico"
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr "El perfil no es propiedad del usuario autenticado"
#: lib/graphql/resolvers/user.ex:125
#, elixir-format
#: lib/graphql/resolvers/user.ex:125
msgid "Registrations are not open"
msgstr "Las inscripciones no están abiertas"
#: lib/graphql/resolvers/user.ex:330
#, elixir-format
#: lib/graphql/resolvers/user.ex:330
msgid "The current password is invalid"
msgstr "La contraseña actual no es válida"
#: lib/graphql/resolvers/user.ex:382
#, elixir-format
#: lib/graphql/resolvers/user.ex:382
msgid "The new email doesn't seem to be valid"
msgstr "El nuevo correo electrónico no parece ser válido"
#: lib/graphql/resolvers/user.ex:379
#, elixir-format
#: lib/graphql/resolvers/user.ex:379
msgid "The new email must be different"
msgstr "El nuevo correo electrónico debe ser diferente"
#: lib/graphql/resolvers/user.ex:333
#, elixir-format
#: lib/graphql/resolvers/user.ex:333
msgid "The new password must be different"
msgstr "La nueva contraseña debe ser diferente"
#, elixir-format
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
#: lib/graphql/resolvers/user.ex:442
#, elixir-format
msgid "The password provided is invalid"
msgstr "La contraseña proporcionada no es válida"
#: lib/graphql/resolvers/user.ex:337
#, elixir-format
#: lib/graphql/resolvers/user.ex:337
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
"La contraseña que ha elegido es demasiado corta. Asegúrese de que su "
"contraseña contenga al menos 6 caracteres."
#: lib/graphql/resolvers/user.ex:215
#, elixir-format
#: lib/graphql/resolvers/user.ex:215
msgid "This user can't reset their password"
msgstr "Este usuario no puede restablecer su contraseña"
#: lib/graphql/resolvers/user.ex:79
#, elixir-format
#: lib/graphql/resolvers/user.ex:79
msgid "This user has been disabled"
msgstr "Este usuario ha sido inhabilitado"
#: lib/graphql/resolvers/user.ex:179
#, elixir-format
#: lib/graphql/resolvers/user.ex:179
msgid "Unable to validate user"
msgstr "No se puede validar al usuario"
#: lib/graphql/resolvers/user.ex:420
#, elixir-format
#: lib/graphql/resolvers/user.ex:420
msgid "User already disabled"
msgstr "El usuario ya está inhabilitado"
#: lib/graphql/resolvers/user.ex:487
#, elixir-format
#: lib/graphql/resolvers/user.ex:487
msgid "User requested is not logged-in"
msgstr "El usuario solicitado no ha iniciado sesión"
#: lib/graphql/resolvers/group.ex:232
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr "Ya eres miembro de este grupo"
#: lib/graphql/resolvers/group.ex:265
#, elixir-format
#: lib/graphql/resolvers/group.ex:262
msgid "You can't leave this group because you are the only administrator"
msgstr "No puedes dejar este grupo porque eres el único administrador"
#: lib/graphql/resolvers/group.ex:229
#, elixir-format
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr "No puedes unirte a este grupo"
#: lib/graphql/resolvers/group.ex:94
#, elixir-format
#: lib/graphql/resolvers/group.ex:91
msgid "You may not list groups unless moderator."
msgstr "No puedes enumerar grupos a menos que seas moderador."
#: lib/graphql/resolvers/user.ex:387
#, elixir-format
#: lib/graphql/resolvers/user.ex:387
msgid "You need to be logged-in to change your email"
msgstr "Debes iniciar sesión para cambiar tu correo electrónico"
#: lib/graphql/resolvers/user.ex:345
#, elixir-format
#: lib/graphql/resolvers/user.ex:345
msgid "You need to be logged-in to change your password"
msgstr "Debes iniciar sesión para cambiar tu contraseña"
#: lib/graphql/resolvers/group.ex:207
#, elixir-format
#: lib/graphql/resolvers/group.ex:204
msgid "You need to be logged-in to delete a group"
msgstr "Debes iniciar sesión para eliminar un grupo"
#: lib/graphql/resolvers/user.ex:447
#, elixir-format
#: lib/graphql/resolvers/user.ex:447
msgid "You need to be logged-in to delete your account"
msgstr "Debes iniciar sesión para eliminar su cuenta"
#: lib/graphql/resolvers/group.ex:237
#, elixir-format
#: lib/graphql/resolvers/group.ex:234
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:270
#, elixir-format
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr "Debes iniciar sesión para dejar un grupo"
#: lib/graphql/resolvers/group.ex:172
#, elixir-format
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr "Debes iniciar sesión para actualizar un grupo"
#: lib/graphql/resolvers/user.ex:58
#, elixir-format
msgid "You need to have admin access to list users"
msgstr "Necesitas tener acceso de administrador para listar usuarios"
#: lib/graphql/resolvers/user.ex:108
#, elixir-format
msgid "You need to have an existing token to get a refresh token"
msgstr "Debes tener un token existente para obtener un token de actualización"
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
#, elixir-format
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
msgid "You requested again a confirmation email too soon"
msgstr ""
"Solicitó de nuevo un correo electrónico de confirmación demasiado pronto"
#: lib/graphql/resolvers/user.ex:128
#, elixir-format
#: lib/graphql/resolvers/user.ex:128
msgid "Your email is not on the allowlist"
msgstr "Tu correo electrónico no está en la lista de permitidos"
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
#, elixir-format
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
msgid "Error while performing background task"
msgstr "Error al realizar la tarea en segundo plano"
#: lib/graphql/resolvers/actor.ex:27
#, elixir-format
#: lib/graphql/resolvers/actor.ex:27
msgid "No profile found with this ID"
msgstr "No se encontró ningún perfil con este ID"
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
#, elixir-format
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
msgid "No remote profile found with this ID"
msgstr "No se encontró ningún perfil remoto con este ID"
#: lib/graphql/resolvers/actor.ex:69
#, elixir-format
#: lib/graphql/resolvers/actor.ex:69
msgid "Only moderators and administrators can suspend a profile"
msgstr "Solo los moderadores y administradores pueden suspender un perfil"
#: lib/graphql/resolvers/actor.ex:99
#, elixir-format
#: lib/graphql/resolvers/actor.ex:99
msgid "Only moderators and administrators can unsuspend a profile"
msgstr ""
"Solo los moderadores y administradores pueden anular la suspensión de un "
"perfil"
#: lib/graphql/resolvers/actor.ex:24
#, elixir-format
#: lib/graphql/resolvers/actor.ex:24
msgid "Only remote profiles may be refreshed"
msgstr "Solo se pueden actualizar los perfiles remotos"
#: lib/graphql/resolvers/actor.ex:61
#, elixir-format
#: lib/graphql/resolvers/actor.ex:61
msgid "Profile already suspended"
msgstr "Perfil ya suspendido"
#: lib/graphql/resolvers/participant.ex:93
#, elixir-format
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr "Su instancia requiere un correo electrónico válido"
#: lib/graphql/resolvers/participant.ex:87
#, elixir-format
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr "La participación anónima no está habilitada"
#: lib/graphql/resolvers/person.ex:184
#, elixir-format
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr "No se puede eliminar al último administrador de un grupo"
#: lib/graphql/resolvers/person.ex:181
#, elixir-format
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr "No se puede eliminar la última identidad de un usuario"
#: lib/graphql/resolvers/comment.ex:105
#, elixir-format
#: lib/graphql/resolvers/comment.ex:105
msgid "Comment is already deleted"
msgstr "El comentario ya está eliminado"
#: lib/graphql/resolvers/discussion.ex:61
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr "Discusión no encontrada"
#: lib/graphql/resolvers/report.ex:58 lib/graphql/resolvers/report.ex:77
#, elixir-format
#: lib/graphql/resolvers/report.ex:58 lib/graphql/resolvers/report.ex:77
msgid "Error while saving report"
msgstr "Error al guardar el informe"
#: lib/graphql/resolvers/report.ex:96
#, elixir-format
#: lib/graphql/resolvers/report.ex:96
msgid "Error while updating report"
msgstr "Error al actualizar el informe"
#: lib/graphql/resolvers/participant.ex:128
#, elixir-format
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr "ID de evento no encontrado"
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr "Evento no encontrado"
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#, elixir-format
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr "El evento con este ID%{id} no existe"
#: lib/graphql/resolvers/participant.ex:100
#, elixir-format
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr "Error interno"
#: lib/graphql/resolvers/discussion.ex:193
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr "Sin discusión con ID%{id}"
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:168
#, elixir-format
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:168
msgid "No profile found for user"
msgstr "No se encontró perfil para el usuario"
#: lib/graphql/resolvers/feed_token.ex:63
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token"
msgstr "No existe tal token de alimentación"
#: lib/graphql/resolvers/participant.ex:238
#, elixir-format
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr "El participante ya tiene el rol%{role}"
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#, elixir-format
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr "Participante no encontrado"
#: lib/graphql/resolvers/person.ex:29
#, elixir-format
#: lib/graphql/resolvers/person.ex:29
msgid "Person with ID %{id} not found"
msgstr "Persona con ID%{id} no encontrada"
#: lib/graphql/resolvers/person.ex:50
#, elixir-format
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr "Persona con nombre de usuario %{username} no encontrada"
#: lib/graphql/resolvers/picture.ex:41
#, elixir-format
msgid "Picture with ID %{id} was not found"
msgstr "No se encontró la foto con ID %{id}"
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#, elixir-format
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr "La ID de publicación no es válida"
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#, elixir-format
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr "La publicación no existe"
#: lib/graphql/resolvers/member.ex:83
#, elixir-format
#: lib/graphql/resolvers/member.ex:83
msgid "Profile invited doesn't exist"
msgstr "El perfil invitado no existe"
#: lib/graphql/resolvers/member.ex:92 lib/graphql/resolvers/member.ex:96
#, elixir-format
#: lib/graphql/resolvers/member.ex:92 lib/graphql/resolvers/member.ex:96
msgid "Profile is already a member of this group"
msgstr "Perfil ya es miembro de este grupo"
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#, elixir-format
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
#, elixir-format
msgid "Profile is not member of group"
msgstr "El perfil no es miembro del grupo"
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#, elixir-format
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr "Perfil no encontrado"
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr "El perfil de moderador proporcionado no tiene permiso para este evento"
#: lib/graphql/resolvers/report.ex:36
#, elixir-format
#: lib/graphql/resolvers/report.ex:36
msgid "Report not found"
msgstr "Informe no encontrado"
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
#, elixir-format
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
msgid "Resource doesn't exist"
msgstr "El recurso no existe"
#: lib/graphql/resolvers/participant.ex:121
#, elixir-format
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr "El evento ya alcanzó su capacidad máxima"
#: lib/graphql/resolvers/participant.ex:261
#, elixir-format
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr "Este token no es válido"
#: lib/graphql/resolvers/todos.ex:165 lib/graphql/resolvers/todos.ex:219
#, elixir-format
#: lib/graphql/resolvers/todos.ex:165 lib/graphql/resolvers/todos.ex:219
msgid "Todo doesn't exist"
msgstr "Todo no existe"
#, elixir-format
#: lib/graphql/resolvers/todos.ex:75 lib/graphql/resolvers/todos.ex:191
#: lib/graphql/resolvers/todos.ex:216
#, elixir-format
msgid "Todo list doesn't exist"
msgstr "La lista de tareas pendientes no existe"
#: lib/graphql/resolvers/feed_token.ex:69
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist"
msgstr "El token no existe"
#: lib/graphql/resolvers/feed_token.ex:66
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID"
msgstr "El token no es un UUID válido"
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr "Usuario no encontrado"
#: lib/graphql/resolvers/person.ex:232
#, elixir-format
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr "Ya tienes un perfil para este usuario"
#: lib/graphql/resolvers/participant.ex:131
#, elixir-format
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr "Ya eres participante de este evento"
#: lib/graphql/resolvers/discussion.ex:197
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr "No eres miembro del grupo al que pertenece la discusión"
#: lib/graphql/resolvers/member.ex:86
#, elixir-format
#: lib/graphql/resolvers/member.ex:86
msgid "You are not a member of this group"
msgstr "no eres un miembro de este grupo"
#: lib/graphql/resolvers/member.ex:151
#, elixir-format
#: lib/graphql/resolvers/member.ex:151
msgid "You are not a moderator or admin for this group"
msgstr "No eres moderador ni administrador de este grupo"
#: lib/graphql/resolvers/comment.ex:51
#, elixir-format
#: lib/graphql/resolvers/comment.ex:51
msgid "You are not allowed to create a comment if not connected"
msgstr "No está permitido crear un comentario si no está conectado"
#: lib/graphql/resolvers/feed_token.ex:41
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected"
msgstr "No puede crear un token de feed si no está conectado"
#: lib/graphql/resolvers/comment.ex:110
#, elixir-format
#: lib/graphql/resolvers/comment.ex:110
msgid "You are not allowed to delete a comment if not connected"
msgstr "No puede eliminar un comentario si no está conectado"
#: lib/graphql/resolvers/feed_token.ex:78
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected"
msgstr "No puede eliminar un token de feed si no está conectado"
#: lib/graphql/resolvers/comment.ex:73
#, elixir-format
#: lib/graphql/resolvers/comment.ex:73
msgid "You are not allowed to update a comment if not connected"
msgstr "No se le permite actualizar un comentario si no está conectado"
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#, elixir-format
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
"No puedes abandonar el evento porque eres el único participante creador del "
"evento"
#: lib/graphql/resolvers/member.ex:155
#, elixir-format
#: lib/graphql/resolvers/member.ex:155
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
"No puede establecerse en un rol de miembro inferior para este grupo porque "
"es el único administrador"
#: lib/graphql/resolvers/comment.ex:101
#, elixir-format
#: lib/graphql/resolvers/comment.ex:101
msgid "You cannot delete this comment"
msgstr "No puedes borrar este comentario"
#: lib/graphql/resolvers/event.ex:275
#, elixir-format
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr "No puedes borrar este evento"
#: lib/graphql/resolvers/member.ex:89
#, elixir-format
#: lib/graphql/resolvers/member.ex:89
msgid "You cannot invite to this group"
msgstr "No puedes invitar a este grupo"
#: lib/graphql/resolvers/feed_token.ex:72
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token"
msgstr "No tienes permiso para eliminar este token"
#: lib/graphql/resolvers/admin.ex:52
#, elixir-format
#: lib/graphql/resolvers/admin.ex:52
msgid "You need to be logged-in and a moderator to list action logs"
msgstr ""
"Debe iniciar sesión y un moderador para enumerar los registros de acción"
#: lib/graphql/resolvers/report.ex:26
#, elixir-format
#: lib/graphql/resolvers/report.ex:26
msgid "You need to be logged-in and a moderator to list reports"
msgstr "Debe iniciar sesión y un moderador para enumerar los informes"
#: lib/graphql/resolvers/report.ex:101
#, elixir-format
#: lib/graphql/resolvers/report.ex:101
msgid "You need to be logged-in and a moderator to update a report"
msgstr "Debe iniciar sesión y ser un moderador para actualizar un informe"
#: lib/graphql/resolvers/report.ex:41
#, elixir-format
#: lib/graphql/resolvers/report.ex:41
msgid "You need to be logged-in and a moderator to view a report"
msgstr "Debe iniciar sesión y ser un moderador para actualizar un informe"
#: lib/graphql/resolvers/admin.ex:236
#, elixir-format
#: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings"
msgstr ""
"Debe iniciar sesión y ser administrador para acceder a la configuración de "
"administrador"
#: lib/graphql/resolvers/admin.ex:221
#, elixir-format
#: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr ""
"Debe iniciar sesión y ser administrador para acceder a las estadísticas del "
"panel"
#: lib/graphql/resolvers/admin.ex:260
#, elixir-format
#: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
"Debe iniciar sesión y ser administrador para acceder a las estadísticas del "
"panel"
#: lib/graphql/resolvers/discussion.ex:75
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr "Debe iniciar sesión para acceder a las discusiones"
#: lib/graphql/resolvers/resource.ex:93
#, elixir-format
#: lib/graphql/resolvers/resource.ex:93
msgid "You need to be logged-in to access resources"
msgstr "Debes iniciar sesión para acceder a los recursos"
#: lib/graphql/resolvers/event.ex:210
#, elixir-format
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr "Debes iniciar sesión para crear eventos"
#: lib/graphql/resolvers/post.ex:139
#, elixir-format
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr "Debes iniciar sesión para crear publicaciones"
#: lib/graphql/resolvers/report.ex:74
#, elixir-format
#: lib/graphql/resolvers/report.ex:74
msgid "You need to be logged-in to create reports"
msgstr "Debe iniciar sesión para crear informes"
#: lib/graphql/resolvers/resource.ex:129
#, elixir-format
#: lib/graphql/resolvers/resource.ex:129
msgid "You need to be logged-in to create resources"
msgstr "Debe iniciar sesión para crear recursos"
#: lib/graphql/resolvers/event.ex:284
#, elixir-format
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr "Debe iniciar sesión para eliminar un evento"
#: lib/graphql/resolvers/post.ex:209
#, elixir-format
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr "Debes iniciar sesión para eliminar publicaciones"
#: lib/graphql/resolvers/resource.ex:187
#, elixir-format
#: lib/graphql/resolvers/resource.ex:187
msgid "You need to be logged-in to delete resources"
msgstr "Debes iniciar sesión para eliminar recursos"
#: lib/graphql/resolvers/participant.ex:105
#, elixir-format
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr "Debes iniciar sesión para eliminar recursos"
#: lib/graphql/resolvers/participant.ex:204
#, elixir-format
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr "Debes iniciar sesión para salir de un evento"
#: lib/graphql/resolvers/event.ex:249
#, elixir-format
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr "Debe iniciar sesión para actualizar un evento"
#: lib/graphql/resolvers/post.ex:176
#, elixir-format
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr "Debes iniciar sesión para actualizar las publicaciones"
#: lib/graphql/resolvers/resource.ex:158
#, elixir-format
#: lib/graphql/resolvers/resource.ex:158
msgid "You need to be logged-in to update resources"
msgstr "Debes iniciar sesión para actualizar los recursos"
#: lib/graphql/resolvers/resource.ex:210
#, elixir-format
#: lib/graphql/resolvers/resource.ex:210
msgid "You need to be logged-in to view a resource preview"
msgstr "Debe iniciar sesión para ver una vista previa del recurso"
#: lib/graphql/resolvers/picture.ex:79
#, elixir-format
msgid "You need to login to upload a picture"
msgstr "Debes iniciar sesión para subir una imagen"
#: lib/graphql/resolvers/resource.ex:121
#, elixir-format
msgid "Parent resource doesn't belong to this group"
msgstr "El recurso principal no pertenece a este grupo"
#: lib/mobilizon/users/user.ex:109
#, elixir-format
#: lib/mobilizon/users/user.ex:109
msgid "The chosen password is too short."
msgstr "La contraseña elegida es demasiado corta."
#: lib/mobilizon/users/user.ex:138
#, elixir-format
#: lib/mobilizon/users/user.ex:138
msgid "The registration token is already in use, this looks like an issue on our side."
msgstr ""
"El token de registro ya está en uso, esto parece un problema de nuestra "
"parte."
#: lib/mobilizon/users/user.ex:104
#, elixir-format
#: lib/mobilizon/users/user.ex:104
msgid "This email is already used."
msgstr "Este correo electrónico ya está en uso."
#: lib/graphql/error.ex:88
#, elixir-format
#: lib/graphql/error.ex:88
msgid "Post not found"
msgstr "Informe no encontrado"
#: lib/graphql/error.ex:75
#, elixir-format
#: lib/graphql/error.ex:75
msgid "Invalid arguments passed"
msgstr "Se pasaron argumentos no válidos"
#: lib/graphql/error.ex:81
#, elixir-format
#: lib/graphql/error.ex:81
msgid "Invalid credentials"
msgstr "Credenciales no válidas"
#: lib/graphql/error.ex:79
#, elixir-format
#: lib/graphql/error.ex:79
msgid "Reset your password to login"
msgstr "Restablezca su contraseña para iniciar sesión"
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
#, elixir-format
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
msgid "Resource not found"
msgstr "Recurso no encontrado"
#: lib/graphql/error.ex:92
#, elixir-format
#: lib/graphql/error.ex:92
msgid "Something went wrong"
msgstr "Algo salió mal"
#: lib/graphql/error.ex:74
#, elixir-format
#: lib/graphql/error.ex:74
msgid "Unknown Resource"
msgstr "Recurso desconocido"
#: lib/graphql/error.ex:84
#, elixir-format
#: lib/graphql/error.ex:84
msgid "You don't have permission to do this"
msgstr "No tienes permiso para hacer esto"
#: lib/graphql/error.ex:76
#, elixir-format
#: lib/graphql/error.ex:76
msgid "You need to be logged in"
msgstr "Debes iniciar sesión"
#: lib/graphql/resolvers/member.ex:116
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
msgid "You can't accept this invitation with this profile."
msgstr "No puedes aceptar esta invitación con este perfil."
#: lib/graphql/resolvers/member.ex:134
#, elixir-format
#: lib/graphql/resolvers/member.ex:134
msgid "You can't reject this invitation with this profile."
msgstr "No puedes rechazar esta invitación con este perfil."
#: lib/graphql/resolvers/picture.ex:71
#, elixir-format
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr "El archivo no tiene un tipo MIME permitido."
#: lib/graphql/resolvers/group.ex:167
#, elixir-format
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr "El perfil no es miembro del grupo"
#: lib/graphql/resolvers/event.ex:238
#, elixir-format
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr "No puedes borrar este evento."
#: lib/graphql/resolvers/event.ex:241
#, elixir-format
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr "No puedes rechazar esta invitación con este perfil."
#: lib/graphql/resolvers/member.ex:137
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
msgid "This invitation doesn't exist."
msgstr "Esta invitación no existe."
#: lib/graphql/resolvers/member.ex:179
#, elixir-format
#: lib/graphql/resolvers/member.ex:179
msgid "This member already has been rejected."
msgstr "Este miembro ya ha sido rechazado."
#: lib/graphql/resolvers/member.ex:186
#, elixir-format
#: lib/graphql/resolvers/member.ex:186
msgid "You don't have the right to remove this member."
msgstr "No tiene derecho a eliminar este miembro."
#: lib/mobilizon/actors/actor.ex:344
#, elixir-format
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr "Este nombre de usuario ya está en uso."
#: lib/graphql/resolvers/discussion.ex:72
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
"Debe proporcionar una identificación o un slug para acceder a una discusión"
#: lib/graphql/resolvers/event.ex:199
#, elixir-format
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr "El perfil del organizador no es propiedad del usuario"
#: lib/graphql/resolvers/participant.ex:90
#, elixir-format
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr "El ID de perfil proporcionado no es el del perfil anónimo"
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

View File

@ -21,11 +21,6 @@ msgstr ""
"Jos et lähettänyt pyyntöä, voit jättää tämän viestin huomiotta. Salasanasi "
"ei vaihdu, ennen kuin käytät alla olevaa linkkiä ja luot uuden salasanan."
#, elixir-format
#: lib/service/export/feed.ex:170
msgid "Feed for %{email} on Mobilizon"
msgstr "Mobilizon-syöte osoitteeseen %{email}"
#, elixir-format
#: lib/web/templates/email/report.html.eex:74
msgid "%{title} by %{creator}"
@ -153,7 +148,7 @@ msgid "Warning"
msgstr "Varoitus"
#, elixir-format
#: lib/web/email/participation.ex:134
#: lib/web/email/participation.ex:135
msgid "Confirm your participation to event %{title}"
msgstr "Vahvista osallistumisesi tapahtumaan %{title}"
@ -365,7 +360,7 @@ msgid "Mobilizon on %{instance}: email changed"
msgstr "Mobilizon palvelimella %{instance}: sähköpostiosoite vaihdettu"
#, elixir-format
#: lib/web/email/notification.ex:46
#: lib/web/email/notification.ex:47
msgid "One event planned today"
msgid_plural "%{nb_events} events planned today"
msgstr[0] "Yksi suunniteltu tapahtuma tänään"
@ -418,19 +413,19 @@ msgid "View the event on: %{link}"
msgstr "Katso päivitetty tapahtuma: %{linkki}"
#, elixir-format
#: lib/web/email/group.ex:32
#: lib/web/email/group.ex:33
msgid "You have been invited by %{inviter} to join group %{group}"
msgstr "%{inviter} kutsui sinut ryhmään %{group}"
#, elixir-format
#: lib/web/email/notification.ex:70
#: lib/web/email/notification.ex:71
msgid "One event planned this week"
msgid_plural "%{nb_events} events planned this week"
msgstr[0] "Yksi suunniteltu tapahtuma tällä viikolla"
msgstr[1] "%{nb_events} suunniteltua tapahtumaa tällä viikolla"
#, elixir-format
#: lib/web/email/notification.ex:92
#: lib/web/email/notification.ex:93
msgid "One participation request for event %{title} to process"
msgid_plural "%{number_participation_requests} participation requests for event %{title} to process"
msgstr[0] "Yksi osallistujapyyntö tapahtumaan %{title} odottaa käsittelyä"
@ -1248,7 +1243,7 @@ msgid "So long, and thanks for the fish!"
msgstr "Näkemiin ja kiitos kaloista!"
#, elixir-format
#: lib/web/email/group.ex:62
#: lib/web/email/group.ex:63
msgid "You have been removed from group %{group}"
msgstr "Sinut on poistettu ryhmästä %{group}"
@ -1318,12 +1313,12 @@ msgstr ""
"(%{group_address}). Et ole enää tämän ryhmän jäsen."
#, elixir-format
#: lib/web/email/group.ex:135
#: lib/web/email/group.ex:136
msgid "The group %{group} has been deleted on %{instance}"
msgstr "Ryhmä %{group} on poistettu palvelimelta %{instance}"
#, elixir-format
#: lib/web/email/group.ex:96
#: lib/web/email/group.ex:97
msgid "The group %{group} has been suspended on %{instance}"
msgstr "Ryhmä %{group} on estetty palvelimella %{instance}"
@ -1558,12 +1553,12 @@ msgstr ""
"osallistujaluettelossa!"
#, elixir-format
#: lib/mobilizon/posts/post.ex:91
#: lib/mobilizon/posts/post.ex:94
msgid "A text is required for the post"
msgstr "Julkaisuun vaaditaan tekstiä"
#, elixir-format
#: lib/mobilizon/posts/post.ex:90
#: lib/mobilizon/posts/post.ex:93
msgid "A title is required for the post"
msgstr "Julkaisulle vaaditaan otsikko"
@ -1665,3 +1660,23 @@ msgstr "Pahoittelemme, tapahtui virhe palvelimen päässä."
#: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon."
msgstr "Tällä kokeilusivustolla voit koekäyttää Mobilizonia."
#, elixir-format
#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60
msgid "%{name}'s feed"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:77
msgid "%{actor}'s private events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:72
msgid "%{actor}'s public events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:203
msgid "Feed for %{email} on %{instance}"
msgstr ""

View File

@ -93,760 +93,750 @@ msgstr "tulee olla vähintään %{number}"
msgid "must be equal to %{number}"
msgstr "tulee olla tasas %{number}"
#: lib/graphql/resolvers/user.ex:103
#, elixir-format
#: lib/graphql/resolvers/user.ex:103
msgid "Cannot refresh the token"
msgstr "Merkkiä ei voi päivittää"
#: lib/graphql/resolvers/group.ex:198
#, elixir-format
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr "Nykyinen profiili ei kuulu tähän ryhmään"
#: lib/graphql/resolvers/group.ex:202
#, elixir-format
#: lib/graphql/resolvers/group.ex:199
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:512
#, elixir-format
#: lib/graphql/resolvers/user.ex:512
msgid "Error while saving user settings"
msgstr "Käyttäjän asetusten tallennuksessa tapahtui virhe"
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr "Ryhmää ei löydy"
#: lib/graphql/resolvers/group.ex:66
#, elixir-format
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr "Tunnuksella %{id} ei löydy ryhmää"
#: lib/graphql/resolvers/user.ex:83
#, elixir-format
#: lib/graphql/resolvers/user.ex:83
msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
"Kirjautuminen epäonnistui - joko sähköpostiosoitteesi tai salasana on väärin."
#: lib/graphql/resolvers/group.ex:258
#, elixir-format
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr "Jäsentä ei löydy"
#, elixir-format
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
#: lib/graphql/resolvers/user.ex:417
#, elixir-format
msgid "No profile found for the moderator user"
msgstr "Moderaattorikäyttäjän profiilia ei löydy"
#: lib/graphql/resolvers/user.ex:195
#, elixir-format
#: lib/graphql/resolvers/user.ex:195
msgid "No user to validate with this email was found"
msgstr "Käyttäjää tämän sähköpostin vahvistamiseksi ei löydy"
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#, elixir-format
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr "Käyttäjää, jolla on tämä sähköpostiosoite ei löydy"
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr "Profiili ei ole tunnistautuneen käyttäjän omistuksessa"
#: lib/graphql/resolvers/user.ex:125
#, elixir-format
#: lib/graphql/resolvers/user.ex:125
msgid "Registrations are not open"
msgstr "Ei voi rekisteröityä"
#: lib/graphql/resolvers/user.ex:330
#, elixir-format
#: lib/graphql/resolvers/user.ex:330
msgid "The current password is invalid"
msgstr "Nykyinen salasana ei kelpaa"
#: lib/graphql/resolvers/user.ex:382
#, elixir-format
#: lib/graphql/resolvers/user.ex:382
msgid "The new email doesn't seem to be valid"
msgstr "Uusi sähköpostiosoite ei vaikuta kelvolliselta"
#: lib/graphql/resolvers/user.ex:379
#, elixir-format
#: lib/graphql/resolvers/user.ex:379
msgid "The new email must be different"
msgstr "Uuden sähköpostiosoitteen on poikettava vanhasta"
#: lib/graphql/resolvers/user.ex:333
#, elixir-format
#: lib/graphql/resolvers/user.ex:333
msgid "The new password must be different"
msgstr "Uuden salasanan on poikettava vanhasta"
#, elixir-format
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
#: lib/graphql/resolvers/user.ex:442
#, elixir-format
msgid "The password provided is invalid"
msgstr "Annettu salasana on epäkelpo"
#: lib/graphql/resolvers/user.ex:337
#, elixir-format
#: lib/graphql/resolvers/user.ex:337
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
"Valitsemasi salasana on liian lyhyt. Käytä vähintään kuuden merkin mittaista "
"salasanaa."
#: lib/graphql/resolvers/user.ex:215
#, elixir-format
#: lib/graphql/resolvers/user.ex:215
msgid "This user can't reset their password"
msgstr "Käyttäjä ei voi palauttaa salasanaansa"
#: lib/graphql/resolvers/user.ex:79
#, elixir-format
#: lib/graphql/resolvers/user.ex:79
msgid "This user has been disabled"
msgstr "Käyttäjä on poistettu käytöstä"
#: lib/graphql/resolvers/user.ex:179
#, elixir-format
#: lib/graphql/resolvers/user.ex:179
msgid "Unable to validate user"
msgstr "Käyttäjää ei voi vahvistaa"
#: lib/graphql/resolvers/user.ex:420
#, elixir-format
#: lib/graphql/resolvers/user.ex:420
msgid "User already disabled"
msgstr "Käyttäjä on jo poistettu käytöstä"
#: lib/graphql/resolvers/user.ex:487
#, elixir-format
#: lib/graphql/resolvers/user.ex:487
msgid "User requested is not logged-in"
msgstr "Pyydetty käyttäjä ei ole kirjautuneena sisään"
#: lib/graphql/resolvers/group.ex:232
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr "Olet jo tämän ryhmän jäsen"
#: lib/graphql/resolvers/group.ex:265
#, elixir-format
#: lib/graphql/resolvers/group.ex:262
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ä"
#: lib/graphql/resolvers/group.ex:229
#, elixir-format
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr "Et voi liittyä tähän ryhmään"
#: lib/graphql/resolvers/group.ex:94
#, elixir-format
#: lib/graphql/resolvers/group.ex:91
msgid "You may not list groups unless moderator."
msgstr "Voit nähdä ryhmäluettelon vain, jos olet moderaattori."
#: lib/graphql/resolvers/user.ex:387
#, elixir-format
#: lib/graphql/resolvers/user.ex:387
msgid "You need to be logged-in to change your email"
msgstr "Sähköpostiosoitteen voi vaihtaa vain sisäänkirjautuneena"
#: lib/graphql/resolvers/user.ex:345
#, elixir-format
#: lib/graphql/resolvers/user.ex:345
msgid "You need to be logged-in to change your password"
msgstr "Salasanan voi vaihtaa vain sisäänkirjautuneena"
#: lib/graphql/resolvers/group.ex:207
#, elixir-format
#: lib/graphql/resolvers/group.ex:204
msgid "You need to be logged-in to delete a group"
msgstr "Ryhmän voi poistaa vain sisäänkirjautuneena"
#: lib/graphql/resolvers/user.ex:447
#, elixir-format
#: lib/graphql/resolvers/user.ex:447
msgid "You need to be logged-in to delete your account"
msgstr "Voit poistaa tilisi vain sisäänkirjautuneena"
#: lib/graphql/resolvers/group.ex:237
#, elixir-format
#: lib/graphql/resolvers/group.ex:234
msgid "You need to be logged-in to join a group"
msgstr "Voit liittyä ryhmään vain sisäänkirjautuneena"
#: lib/graphql/resolvers/group.ex:270
#, elixir-format
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr "Voit poistua ryhmästä vain sisäänkirjautuneena"
#: lib/graphql/resolvers/group.ex:172
#, elixir-format
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr "Voit päivittää ryhmää vain sisäänkirjautuneena"
#: lib/graphql/resolvers/user.ex:58
#, elixir-format
msgid "You need to have admin access to list users"
msgstr "Voit nähdä käyttäjäluettelon vain ylläpitäjänä"
#: lib/graphql/resolvers/user.ex:108
#, elixir-format
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:198 lib/graphql/resolvers/user.ex:222
#, elixir-format
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
msgid "You requested again a confirmation email too soon"
msgstr "Pyysit uutta vahvistussähköpostia liian aikaisin"
#: lib/graphql/resolvers/user.ex:128
#, elixir-format
#: lib/graphql/resolvers/user.ex:128
msgid "Your email is not on the allowlist"
msgstr "Sähköpostiosoitteesi ei ole sallittujen luettelossa"
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
#, elixir-format
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
msgid "Error while performing background task"
msgstr "Virhe taustatehtävää suoritettaessa"
#: lib/graphql/resolvers/actor.ex:27
#, elixir-format
#: lib/graphql/resolvers/actor.ex:27
msgid "No profile found with this ID"
msgstr "Tällä tunnisteella ei löytynyt profiilia"
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
#, elixir-format
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
msgid "No remote profile found with this ID"
msgstr "Tällä tunnisteella ei löytynyt etäprofiilia"
#: lib/graphql/resolvers/actor.ex:69
#, elixir-format
#: lib/graphql/resolvers/actor.ex:69
msgid "Only moderators and administrators can suspend a profile"
msgstr "Vain moderaattorit ja ylläpitäjät voivat hyllyttää profiilin"
#: lib/graphql/resolvers/actor.ex:99
#, elixir-format
#: lib/graphql/resolvers/actor.ex:99
msgid "Only moderators and administrators can unsuspend a profile"
msgstr "Vain moderaattorit ja ylläpitäjät voivat palauttaa hyllytetyn profiilin"
#: lib/graphql/resolvers/actor.ex:24
#, elixir-format
#: lib/graphql/resolvers/actor.ex:24
msgid "Only remote profiles may be refreshed"
msgstr "Vain etäprofiilit voi ladata uudelleen"
#: lib/graphql/resolvers/actor.ex:61
#, elixir-format
#: lib/graphql/resolvers/actor.ex:61
msgid "Profile already suspended"
msgstr "Profiili on jo hyllytetty"
#: lib/graphql/resolvers/participant.ex:93
#, elixir-format
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr "Palvelin vaatii kelvollisen sähköpostiosoitteen"
#: lib/graphql/resolvers/participant.ex:87
#, elixir-format
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr "Anonyymi osallistuminen ei ole käytössä"
#: lib/graphql/resolvers/person.ex:184
#, elixir-format
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr "Ryhmän viimeistä ylläpitäjää ei voi poistaa"
#: lib/graphql/resolvers/person.ex:181
#, elixir-format
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr "Käyttäjän viimeistä identiteettiä ei voi poistaa"
#: lib/graphql/resolvers/comment.ex:105
#, elixir-format
#: lib/graphql/resolvers/comment.ex:105
msgid "Comment is already deleted"
msgstr "Kommentti on jo poistettu"
#: lib/graphql/resolvers/discussion.ex:61
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr "Keskustelua ei löydy"
#: lib/graphql/resolvers/report.ex:58 lib/graphql/resolvers/report.ex:77
#, elixir-format
#: lib/graphql/resolvers/report.ex:58 lib/graphql/resolvers/report.ex:77
msgid "Error while saving report"
msgstr "Virhe raporttia tallennettaessa"
#: lib/graphql/resolvers/report.ex:96
#, elixir-format
#: lib/graphql/resolvers/report.ex:96
msgid "Error while updating report"
msgstr "Virhe raporttia päivitettäessä"
#: lib/graphql/resolvers/participant.ex:128
#, elixir-format
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr "Tapahtumatunnistetta ei löydy"
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr "Tapahtumaa ei löydy"
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#, elixir-format
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr "Tunnisteella %{id} ei ole tapahtumaa"
#: lib/graphql/resolvers/participant.ex:100
#, elixir-format
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr "Sisäinen virhe"
#: lib/graphql/resolvers/discussion.ex:193
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr "Tunnisteella %{id} ei ole keskustelua"
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:168
#, elixir-format
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:168
msgid "No profile found for user"
msgstr "Käyttäjälle ei löydy profiilia"
#: lib/graphql/resolvers/feed_token.ex:63
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token"
msgstr "Kyseistä syötemerkkiä ei ole"
#: lib/graphql/resolvers/participant.ex:238
#, elixir-format
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr "Osallistujalla on jo rooli %{role}"
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#, elixir-format
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr "Osallistujaa ei löydy"
#: lib/graphql/resolvers/person.ex:29
#, elixir-format
#: lib/graphql/resolvers/person.ex:29
msgid "Person with ID %{id} not found"
msgstr "Tunnuksella %{id} ei löydy henkilöä"
#: lib/graphql/resolvers/person.ex:50
#, elixir-format
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr "Käyttäjänimellä %{username} ei löydy henkilöä"
#: lib/graphql/resolvers/picture.ex:41
#, elixir-format
msgid "Picture with ID %{id} was not found"
msgstr "Tunnuksella %{id} ei löydy kuvaa"
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#, elixir-format
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr "Julkaisun tunnus ei ole kelvollinen"
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#, elixir-format
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr "Julkaisua ei ole"
#: lib/graphql/resolvers/member.ex:83
#, elixir-format
#: lib/graphql/resolvers/member.ex:83
msgid "Profile invited doesn't exist"
msgstr "Kutsuttua profiilia ei ole"
#: lib/graphql/resolvers/member.ex:92 lib/graphql/resolvers/member.ex:96
#, elixir-format
#: lib/graphql/resolvers/member.ex:92 lib/graphql/resolvers/member.ex:96
msgid "Profile is already a member of this group"
msgstr "Profiili on jo ryhmän jäsen"
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#, elixir-format
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
#, elixir-format
msgid "Profile is not member of group"
msgstr "Profiili ei ole ryhmän jäsen"
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#, elixir-format
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr "Profiilia ei löydy"
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr "Annetulla moderaattoriprofiililla ei ole oikeuksia tähän tapahtumaan"
#: lib/graphql/resolvers/report.ex:36
#, elixir-format
#: lib/graphql/resolvers/report.ex:36
msgid "Report not found"
msgstr "Raporttia ei löydy"
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
#, elixir-format
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
msgid "Resource doesn't exist"
msgstr "Resurssia ei ole"
#: lib/graphql/resolvers/participant.ex:121
#, elixir-format
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr "Tapahtuma on jo täynnä"
#: lib/graphql/resolvers/participant.ex:261
#, elixir-format
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr "Epäkelpo merkki"
#: lib/graphql/resolvers/todos.ex:165 lib/graphql/resolvers/todos.ex:219
#, elixir-format
#: lib/graphql/resolvers/todos.ex:165 lib/graphql/resolvers/todos.ex:219
msgid "Todo doesn't exist"
msgstr "Työkalua ei ole"
#, elixir-format
#: lib/graphql/resolvers/todos.ex:75 lib/graphql/resolvers/todos.ex:191
#: lib/graphql/resolvers/todos.ex:216
#, elixir-format
msgid "Todo list doesn't exist"
msgstr "Tehtäväluetteloa ei ole"
#: lib/graphql/resolvers/feed_token.ex:69
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist"
msgstr "Merkkiä ei ole"
#: lib/graphql/resolvers/feed_token.ex:66
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID"
msgstr "Merkki ei ole kelvollinen UUID"
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr "Käyttäjää ei löydy"
#: lib/graphql/resolvers/person.ex:232
#, elixir-format
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr "Sinulla on jo profiili tälle käyttäjälle"
#: lib/graphql/resolvers/participant.ex:131
#, elixir-format
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr "Olet jo tapahtuman osallistuja"
#: lib/graphql/resolvers/discussion.ex:197
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr "Et ole jäsenenä ryhmässä, johon keskustelu liittyy"
#: lib/graphql/resolvers/member.ex:86
#, elixir-format
#: lib/graphql/resolvers/member.ex:86
msgid "You are not a member of this group"
msgstr "Et ole ryhmän jäsen"
#: lib/graphql/resolvers/member.ex:151
#, elixir-format
#: lib/graphql/resolvers/member.ex:151
msgid "You are not a moderator or admin for this group"
msgstr "Et ole ryhmän moderaattori tai ylläpitäjä"
#: lib/graphql/resolvers/comment.ex:51
#, elixir-format
#: lib/graphql/resolvers/comment.ex:51
msgid "You are not allowed to create a comment if not connected"
msgstr "Ilman yhteyttä ei voi kommentoida"
#: lib/graphql/resolvers/feed_token.ex:41
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected"
msgstr "Ilman yhteyttä ei voi luoda syötemerkkiä"
#: lib/graphql/resolvers/comment.ex:110
#, elixir-format
#: lib/graphql/resolvers/comment.ex:110
msgid "You are not allowed to delete a comment if not connected"
msgstr "Ilman yhteyttä ei voi poistaa kommenttia"
#: lib/graphql/resolvers/feed_token.ex:78
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected"
msgstr "Ilman yhteyttä ei voi poistaa syötemerkkiä"
#: lib/graphql/resolvers/comment.ex:73
#, elixir-format
#: lib/graphql/resolvers/comment.ex:73
msgid "You are not allowed to update a comment if not connected"
msgstr "Ilman yhteyttä ei voi päivittää kommenttia"
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#, elixir-format
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
"Et voi poistua tapahtumasta, koska olet ainoa tapahtuman luonut osallistuja"
#: lib/graphql/resolvers/member.ex:155
#, elixir-format
#: lib/graphql/resolvers/member.ex:155
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
"Et voi vaihtaa jäsenrooliasi ryhmässä nykyistä alemmaksi, koska olet ainoa "
"ylläpitäjä"
#: lib/graphql/resolvers/comment.ex:101
#, elixir-format
#: lib/graphql/resolvers/comment.ex:101
msgid "You cannot delete this comment"
msgstr "Et voi poistaa kommenttia"
#: lib/graphql/resolvers/event.ex:275
#, elixir-format
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr "Et voi poistaa tapahtumaa"
#: lib/graphql/resolvers/member.ex:89
#, elixir-format
#: lib/graphql/resolvers/member.ex:89
msgid "You cannot invite to this group"
msgstr "Et voi kutsua tähän ryhmään"
#: lib/graphql/resolvers/feed_token.ex:72
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token"
msgstr "Sinulla ei ole oikeutta poistaa tätä merkkiä"
#: lib/graphql/resolvers/admin.ex:52
#, elixir-format
#: lib/graphql/resolvers/admin.ex:52
msgid "You need to be logged-in and a moderator to list action logs"
msgstr "Toimintalokien katselu vain moderaattorille sisäänkirjautuneena"
#: lib/graphql/resolvers/report.ex:26
#, elixir-format
#: lib/graphql/resolvers/report.ex:26
msgid "You need to be logged-in and a moderator to list reports"
msgstr "Raporttien katselu vain moderaattorille sisäänkirjautuneena"
#: lib/graphql/resolvers/report.ex:101
#, elixir-format
#: lib/graphql/resolvers/report.ex:101
msgid "You need to be logged-in and a moderator to update a report"
msgstr "Raportin päivittäminen vain moderaattorille sisäänkirjautuneena"
#: lib/graphql/resolvers/report.ex:41
#, elixir-format
#: lib/graphql/resolvers/report.ex:41
msgid "You need to be logged-in and a moderator to view a report"
msgstr "Raportin katselu vain moderaattorille sisäänkirjautuneena"
#: lib/graphql/resolvers/admin.ex:236
#, elixir-format
#: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "Pääsy ylläpitoasetuksiin vain ylläpitäjälle sisäänkirjautuneena"
#: lib/graphql/resolvers/admin.ex:221
#, elixir-format
#: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "Pääsy koontinäytön tilastoihin vain ylläpitäjälle sisäänkirjautuneena"
#: lib/graphql/resolvers/admin.ex:260
#, elixir-format
#: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings"
msgstr "Ylläpitoasetusten tallennus vain ylläpitäjälle sisäänkirjautuneena"
#: lib/graphql/resolvers/discussion.ex:75
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr "Pääsy keskusteluihin vain sisäänkirjautuneena"
#: lib/graphql/resolvers/resource.ex:93
#, elixir-format
#: lib/graphql/resolvers/resource.ex:93
msgid "You need to be logged-in to access resources"
msgstr "Pääsy resursseihin vain sisäänkirjautuneena"
#: lib/graphql/resolvers/event.ex:210
#, elixir-format
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr "Tapahtumien luonti vain sisäänkirjautuneena"
#: lib/graphql/resolvers/post.ex:139
#, elixir-format
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr "Julkaisujen luonti vain sisäänkirjautuneena"
#: lib/graphql/resolvers/report.ex:74
#, elixir-format
#: lib/graphql/resolvers/report.ex:74
msgid "You need to be logged-in to create reports"
msgstr "Raporttien luonti vain sisäänkirjautuneena"
#: lib/graphql/resolvers/resource.ex:129
#, elixir-format
#: lib/graphql/resolvers/resource.ex:129
msgid "You need to be logged-in to create resources"
msgstr "Resurssien luonti vain sisäänkirjautuneena"
#: lib/graphql/resolvers/event.ex:284
#, elixir-format
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr "Tapahtuman poisto vain sisäänkirjautuneena"
#: lib/graphql/resolvers/post.ex:209
#, elixir-format
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr "Julkaisujen poisto vain sisäänkirjautuneena"
#: lib/graphql/resolvers/resource.ex:187
#, elixir-format
#: lib/graphql/resolvers/resource.ex:187
msgid "You need to be logged-in to delete resources"
msgstr "Resurssien poisto vain sisäänkirjautuneena"
#: lib/graphql/resolvers/participant.ex:105
#, elixir-format
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr "Tapahtumaan liittyminen vain sisäänkirjautuneena"
#: lib/graphql/resolvers/participant.ex:204
#, elixir-format
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr "Tapahtumasta poistuminen vain sisäänkirjautuneena"
#: lib/graphql/resolvers/event.ex:249
#, elixir-format
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr "Tapahtuman päivittäminen vain sisäänkirjautuneena"
#: lib/graphql/resolvers/post.ex:176
#, elixir-format
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr "Julkaisujen päivittäminen vain sisäänkirjautuneena"
#: lib/graphql/resolvers/resource.ex:158
#, elixir-format
#: lib/graphql/resolvers/resource.ex:158
msgid "You need to be logged-in to update resources"
msgstr "Resurssien päivittäminen vain sisäänkirjautuneena"
#: lib/graphql/resolvers/resource.ex:210
#, elixir-format
#: lib/graphql/resolvers/resource.ex:210
msgid "You need to be logged-in to view a resource preview"
msgstr "Resurssin esikatselu vain sisäänkirjautuneena"
#: lib/graphql/resolvers/picture.ex:79
#, elixir-format
msgid "You need to login to upload a picture"
msgstr "Kuvan lähettäminen vain sisäänkirjautuneena"
#: lib/graphql/resolvers/resource.ex:121
#, elixir-format
msgid "Parent resource doesn't belong to this group"
msgstr "Ylätason resurssi ei kuulu tähän ryhmään"
#: lib/mobilizon/users/user.ex:109
#, elixir-format
#: lib/mobilizon/users/user.ex:109
msgid "The chosen password is too short."
msgstr "Valittu salasana on liian lyhyt."
#: lib/mobilizon/users/user.ex:138
#, elixir-format
#: lib/mobilizon/users/user.ex:138
msgid "The registration token is already in use, this looks like an issue on our side."
msgstr "Rekisteröintimerkki on jo käytössä. Vaikuttaa palvelinpään virheeltä."
#: lib/mobilizon/users/user.ex:104
#, elixir-format
#: lib/mobilizon/users/user.ex:104
msgid "This email is already used."
msgstr "Sähköpostiosoite on jo käytössä."
#: lib/graphql/error.ex:88
#, elixir-format
#: lib/graphql/error.ex:88
msgid "Post not found"
msgstr "Julkaisua ei löydy"
#: lib/graphql/error.ex:75
#, elixir-format
#: lib/graphql/error.ex:75
msgid "Invalid arguments passed"
msgstr "Virheelliset argumentit välitetty"
#: lib/graphql/error.ex:81
#, elixir-format
#: lib/graphql/error.ex:81
msgid "Invalid credentials"
msgstr "Virheelliset kirjautumistiedot"
#: lib/graphql/error.ex:79
#, elixir-format
#: lib/graphql/error.ex:79
msgid "Reset your password to login"
msgstr "Palauta salasana, jotta voit kirjautua sisään"
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
#, elixir-format
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
msgid "Resource not found"
msgstr "Resurssia ei löydy"
#: lib/graphql/error.ex:92
#, elixir-format
#: lib/graphql/error.ex:92
msgid "Something went wrong"
msgstr "Jokin meni vikaan"
#: lib/graphql/error.ex:74
#, elixir-format
#: lib/graphql/error.ex:74
msgid "Unknown Resource"
msgstr "Tuntematon resurssi"
#: lib/graphql/error.ex:84
#, elixir-format
#: lib/graphql/error.ex:84
msgid "You don't have permission to do this"
msgstr "Sinulla ei ole oikeutta tähän"
#: lib/graphql/error.ex:76
#, elixir-format
#: lib/graphql/error.ex:76
msgid "You need to be logged in"
msgstr "Kirjaudu ensin sisään"
#: lib/graphql/resolvers/member.ex:116
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
msgid "You can't accept this invitation with this profile."
msgstr "Et voi hyväksyä kutsua tällä profiililla."
#: lib/graphql/resolvers/member.ex:134
#, elixir-format
#: lib/graphql/resolvers/member.ex:134
msgid "You can't reject this invitation with this profile."
msgstr "Et voi hylätä kutsua tällä profiililla."
#: lib/graphql/resolvers/picture.ex:71
#, elixir-format
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr "Tiedostolla ei ole sallittua MIME-tyyppiä."
#: lib/graphql/resolvers/group.ex:167
#, elixir-format
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr "Profiili ei ole ryhmän ylläpitäjä"
#: lib/graphql/resolvers/event.ex:238
#, elixir-format
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr "Et voi muokata tapahtumaa."
#: lib/graphql/resolvers/event.ex:241
#, elixir-format
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr "Et voi yhdistää tapahtumaa tähän profiiliin."
#: lib/graphql/resolvers/member.ex:137
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
msgid "This invitation doesn't exist."
msgstr "Kutsua ei ole."
#: lib/graphql/resolvers/member.ex:179
#, elixir-format
#: lib/graphql/resolvers/member.ex:179
msgid "This member already has been rejected."
msgstr "Jäsen on jo hylätty."
#: lib/graphql/resolvers/member.ex:186
#, elixir-format
#: lib/graphql/resolvers/member.ex:186
msgid "You don't have the right to remove this member."
msgstr "Sinulla ei ole oikeutta poistaa jäsentä."
#: lib/mobilizon/actors/actor.ex:344
#, elixir-format
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr "Käyttäjänimi on jo käytössä."
#: lib/graphql/resolvers/discussion.ex:72
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr "Keskusteluun pääsemiseen vaaditaan tunniste tai polkutunnus"
#: lib/graphql/resolvers/event.ex:199
#, elixir-format
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr "Järjestäjän profiili ei ole käyttäjän hallussa"
#: lib/graphql/resolvers/participant.ex:90
#, elixir-format
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr "Annettu profiilitunniste ei kuulu anonyymille profiilille"
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -101,12 +101,12 @@ msgid "Cannot refresh the token"
msgstr "Impossible de rafraîchir le jeton"
#, elixir-format
#: lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr "Le profil actuel n'est pas un membre de ce groupe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:202
#: lib/graphql/resolvers/group.ex:199
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é"
@ -116,13 +116,13 @@ msgid "Error while saving user settings"
msgstr "Erreur lors de la sauvegarde des paramètres utilisateur"
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr "Groupe non trouvé"
#, elixir-format
#: lib/graphql/resolvers/group.ex:66
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr "Groupe avec l'ID %{id} non trouvé"
@ -132,7 +132,7 @@ 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."
#, elixir-format
#: lib/graphql/resolvers/group.ex:258
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr "Membre non trouvé"
@ -148,16 +148,15 @@ msgid "No user to validate with this email was found"
msgstr "Aucun·e utilisateur·ice à valider avec cet email n'a été trouvé·e"
#, elixir-format
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr "Aucun·e utilisateur·ice avec cette adresse e-mail n'a été trouvé·e"
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr "Le profil n'est pas possédé par l'utilisateur connecté"
@ -225,22 +224,22 @@ msgid "User requested is not logged-in"
msgstr "L'utilisateur·ice demandé·e n'est pas connecté·e"
#, elixir-format
#: lib/graphql/resolvers/group.ex:232
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr "Vous êtes déjà membre de ce groupe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:265
#: lib/graphql/resolvers/group.ex:262
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"
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr "Vous ne pouvez pas rejoindre ce groupe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:94
#: lib/graphql/resolvers/group.ex:91
msgid "You may not list groups unless moderator."
msgstr "Vous ne pouvez pas lister les groupes sauf à être modérateur·ice."
@ -255,7 +254,7 @@ msgid "You need to be logged-in to change your password"
msgstr "Vous devez être connecté·e pour changer votre mot de passe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:207
#: lib/graphql/resolvers/group.ex:204
msgid "You need to be logged-in to delete a group"
msgstr "Vous devez être connecté·e pour supprimer un groupe"
@ -265,25 +264,20 @@ msgid "You need to be logged-in to delete your account"
msgstr "Vous devez être connecté·e pour supprimer votre compte"
#, elixir-format
#: lib/graphql/resolvers/group.ex:237
#: lib/graphql/resolvers/group.ex:234
msgid "You need to be logged-in to join a group"
msgstr "Vous devez être connecté·e pour rejoindre un groupe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:270
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr "Vous devez être connecté·e pour quitter un groupe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:172
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr "Vous devez être connecté·e pour mettre à jour un groupe"
#, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users"
msgstr "Vous devez avoir un accès administrateur pour lister les utilisateur·ices"
#, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token"
@ -335,22 +329,22 @@ msgid "Profile already suspended"
msgstr "Le profil est déjà suspendu"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:93
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr "Une adresse e-mail valide est requise par votre instance"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr "La participation anonyme n'est pas activée"
#, elixir-format
#: lib/graphql/resolvers/person.ex:184
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr "Impossible de supprimer le ou la dernier·ère administrateur·ice d'un groupe"
#, elixir-format
#: lib/graphql/resolvers/person.ex:181
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr "Impossible de supprimer le dernier profil d'un·e utilisateur·ice"
@ -360,7 +354,7 @@ msgid "Comment is already deleted"
msgstr "Le commentaire est déjà supprimé"
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr "Discussion non trouvée"
@ -375,29 +369,29 @@ msgid "Error while updating report"
msgstr "Erreur lors de la mise à jour du signalement"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:128
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr "ID de l'événement non trouvé"
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr "Événement non trouvé"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr "L'événement avec cet ID %{id} n'existe pas"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:100
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr "Erreur interne"
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:193
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr "Aucune discussion avec l'ID %{id}"
@ -412,14 +406,14 @@ msgid "No such feed token"
msgstr "Aucun jeton de flux correspondant"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:238
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr "Le ou la participant·e a déjà le rôle %{role}"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr "Participant·e non trouvé·e"
@ -429,22 +423,17 @@ msgid "Person with ID %{id} not found"
msgstr "Personne avec l'ID %{id} non trouvé"
#, elixir-format
#: lib/graphql/resolvers/person.ex:50
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr "Personne avec le nom %{name} non trouvé"
#, elixir-format
#: lib/graphql/resolvers/picture.ex:41
msgid "Picture with ID %{id} was not found"
msgstr "Groupe avec l'ID %{id} non trouvé"
#, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr "L'ID du billet n'est pas un ID valide"
#, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr "Le billet n'existe pas"
@ -459,8 +448,8 @@ msgid "Profile is already a member of this group"
msgstr "Ce profil est déjà membre de ce groupe"
#, elixir-format
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
@ -468,12 +457,12 @@ msgid "Profile is not member of group"
msgstr "Le profil n'est pas un·e membre du groupe"
#, elixir-format
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr "Profile non trouvé"
#, elixir-format
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr "Le profil modérateur fourni n'a pas de permissions sur cet événement"
@ -488,12 +477,12 @@ msgid "Resource doesn't exist"
msgstr "La ressource n'existe pas"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:121
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr "L'événement a déjà atteint sa capacité maximale"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:261
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr "Ce jeton est invalide"
@ -519,22 +508,22 @@ msgid "Token is not a valid UUID"
msgstr "Ce jeton n'est pas un UUID valide"
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr "Utilisateur·ice non trouvé·e"
#, elixir-format
#: lib/graphql/resolvers/person.ex:232
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr "Vous avez déjà un profil pour cet utilisateur"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:131
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr "Vous êtes déjà un·e participant·e à cet événement"
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:197
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr "Vous n'êtes pas un membre du groupe dans lequel se fait la discussion"
@ -574,8 +563,8 @@ 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"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
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"
@ -592,7 +581,7 @@ msgid "You cannot delete this comment"
msgstr "Vous ne pouvez pas supprimer ce commentaire"
#, elixir-format
#: lib/graphql/resolvers/event.ex:275
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr "Vous ne pouvez pas supprimer cet événement"
@ -642,7 +631,7 @@ 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"
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:75
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr "Vous devez être connecté·e pour accéder aux discussions"
@ -652,12 +641,12 @@ msgid "You need to be logged-in to access resources"
msgstr "Vous devez être connecté·e pour supprimer un groupe"
#, elixir-format
#: lib/graphql/resolvers/event.ex:210
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr "Vous devez être connecté·e pour créer des événements"
#, elixir-format
#: lib/graphql/resolvers/post.ex:139
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr "Vous devez être connecté·e pour quitter un groupe"
@ -672,12 +661,12 @@ msgid "You need to be logged-in to create resources"
msgstr "Vous devez être connecté·e pour quitter un groupe"
#, elixir-format
#: lib/graphql/resolvers/event.ex:284
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr "Vous devez être connecté·e pour supprimer un groupe"
#, elixir-format
#: lib/graphql/resolvers/post.ex:209
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr "Vous devez être connecté·e pour supprimer un groupe"
@ -687,22 +676,22 @@ msgid "You need to be logged-in to delete resources"
msgstr "Vous devez être connecté·e pour supprimer un groupe"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:105
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr "Vous devez être connecté·e pour rejoindre un événement"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:204
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr "Vous devez être connecté·e pour quitter un groupe"
#, elixir-format
#: lib/graphql/resolvers/event.ex:249
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr "Vous devez être connecté·e pour mettre à jour un groupe"
#, elixir-format
#: lib/graphql/resolvers/post.ex:176
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr "Vous devez être connecté·e pour mettre à jour un groupe"
@ -716,11 +705,6 @@ msgstr "Vous devez être connecté·e pour mettre à jour un groupe"
msgid "You need to be logged-in to view a resource preview"
msgstr "Vous devez être connecté·e pour supprimer un groupe"
#, elixir-format
#: lib/graphql/resolvers/picture.ex:79
msgid "You need to login to upload a picture"
msgstr "Vous devez être connecté·e pour mettre à jour un groupe"
#, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group"
@ -797,22 +781,22 @@ msgid "You can't reject this invitation with this profile."
msgstr "Vous ne pouvez pas rejeter cette invitation avec ce profil."
#, elixir-format
#: lib/graphql/resolvers/picture.ex:71
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr "Le fichier n'a pas un type MIME autorisé."
#, elixir-format
#: lib/graphql/resolvers/group.ex:167
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr "Le profil n'est pas administrateur·ice pour le groupe"
#, elixir-format
#: lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr "Vous ne pouvez pas éditer cet événement."
#, elixir-format
#: lib/graphql/resolvers/event.ex:241
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr "Vous ne pouvez pas attribuer cet événement à ce profil."
@ -832,21 +816,27 @@ msgid "You don't have the right to remove this member."
msgstr "Vous n'avez pas les droits pour supprimer ce·tte membre."
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr "Cet identifiant est déjà pris."
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:72
#: lib/graphql/resolvers/discussion.ex:73
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"
#, elixir-format
#: lib/graphql/resolvers/event.ex:199
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr "Le profil de l'organisateur·ice n'appartient pas à l'utilisateur·ice"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:90
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr "L'ID du profil fourni n'est pas celui du profil anonyme"
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -93,769 +93,759 @@ msgstr "ten que ser maior ou igual a %{number}"
msgid "must be equal to %{number}"
msgstr "ten que ser igual a %{number}"
#: lib/graphql/resolvers/user.ex:103
#, elixir-format
#: lib/graphql/resolvers/user.ex:103
msgid "Cannot refresh the token"
msgstr "Non puido actualizar o token"
#: lib/graphql/resolvers/group.ex:198
#, elixir-format
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr "O perfil actual non é membro deste grupo"
#: lib/graphql/resolvers/group.ex:202
#, elixir-format
#: lib/graphql/resolvers/group.ex:199
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:512
#, elixir-format
#: lib/graphql/resolvers/user.ex:512
msgid "Error while saving user settings"
msgstr "Erro ó gardar os axustes de usuaria"
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr "Grupo non atopado"
#: lib/graphql/resolvers/group.ex:66
#, elixir-format
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr "Grupo con ID %{id} non atopado"
#: lib/graphql/resolvers/user.ex:83
#, elixir-format
#: lib/graphql/resolvers/user.ex:83
msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
"A autenticación non foi posible, o contrasinal ou o email non son correctos."
#: lib/graphql/resolvers/group.ex:258
#, elixir-format
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr "Membro non atopado"
#, elixir-format
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
#: lib/graphql/resolvers/user.ex:417
#, elixir-format
msgid "No profile found for the moderator user"
msgstr "Non se atopou o perfil para a usuaria moderadora"
#: lib/graphql/resolvers/user.ex:195
#, elixir-format
#: lib/graphql/resolvers/user.ex:195
msgid "No user to validate with this email was found"
msgstr "Non se atopou unha usuaria con este email para validar"
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#, elixir-format
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr "Non se atopa ningunha usuaria con este email"
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr "O perfil non pertence a unha usuaria autenticada"
#: lib/graphql/resolvers/user.ex:125
#, elixir-format
#: lib/graphql/resolvers/user.ex:125
msgid "Registrations are not open"
msgstr "O rexistro está pechado"
#: lib/graphql/resolvers/user.ex:330
#, elixir-format
#: lib/graphql/resolvers/user.ex:330
msgid "The current password is invalid"
msgstr "O contrasinal actual non é válido"
#: lib/graphql/resolvers/user.ex:382
#, elixir-format
#: lib/graphql/resolvers/user.ex:382
msgid "The new email doesn't seem to be valid"
msgstr "O novo email non semella ser válido"
#: lib/graphql/resolvers/user.ex:379
#, elixir-format
#: lib/graphql/resolvers/user.ex:379
msgid "The new email must be different"
msgstr "O novo email ten que ser diferente"
#: lib/graphql/resolvers/user.ex:333
#, elixir-format
#: lib/graphql/resolvers/user.ex:333
msgid "The new password must be different"
msgstr "O novo contrasinal ten que ser diferente"
#, elixir-format
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
#: lib/graphql/resolvers/user.ex:442
#, elixir-format
msgid "The password provided is invalid"
msgstr "O contrasinal escrito non é válido"
#: lib/graphql/resolvers/user.ex:337
#, elixir-format
#: lib/graphql/resolvers/user.ex:337
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
"O contrasinal escollido é demasiado curto, ten que ter 6 caracteres polo "
"menos."
#: lib/graphql/resolvers/user.ex:215
#, elixir-format
#: lib/graphql/resolvers/user.ex:215
msgid "This user can't reset their password"
msgstr "Esta usuaria non pode restablecer o seu contrasinal"
#: lib/graphql/resolvers/user.ex:79
#, elixir-format
#: lib/graphql/resolvers/user.ex:79
msgid "This user has been disabled"
msgstr "Estab usuaria foi desactivada"
#: lib/graphql/resolvers/user.ex:179
#, elixir-format
#: lib/graphql/resolvers/user.ex:179
msgid "Unable to validate user"
msgstr "Non se puido validar a usuaria"
#: lib/graphql/resolvers/user.ex:420
#, elixir-format
#: lib/graphql/resolvers/user.ex:420
msgid "User already disabled"
msgstr "A usuaria xa está desactivada"
#: lib/graphql/resolvers/user.ex:487
#, elixir-format
#: lib/graphql/resolvers/user.ex:487
msgid "User requested is not logged-in"
msgstr "A usuaria solicitada non está conectada"
#: lib/graphql/resolvers/group.ex:232
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr "Xa es membro deste grupo"
#: lib/graphql/resolvers/group.ex:265
#, elixir-format
#: lib/graphql/resolvers/group.ex:262
msgid "You can't leave this group because you are the only administrator"
msgstr "Non podes deixar este grupo porque es a única administradora"
#: lib/graphql/resolvers/group.ex:229
#, elixir-format
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr "Non podes unirte a este grupo"
#: lib/graphql/resolvers/group.ex:94
#, elixir-format
#: lib/graphql/resolvers/group.ex:91
msgid "You may not list groups unless moderator."
msgstr "Non podes facer listas de grupos porque non es moderadora."
#: lib/graphql/resolvers/user.ex:387
#, elixir-format
#: lib/graphql/resolvers/user.ex:387
msgid "You need to be logged-in to change your email"
msgstr "Tes que estar conectada para poder cambiar o email"
#: lib/graphql/resolvers/user.ex:345
#, elixir-format
#: lib/graphql/resolvers/user.ex:345
msgid "You need to be logged-in to change your password"
msgstr "Tes que estar conectada para poder cambiar o contrasinal"
#: lib/graphql/resolvers/group.ex:207
#, elixir-format
#: lib/graphql/resolvers/group.ex:204
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:447
#, elixir-format
#: lib/graphql/resolvers/user.ex:447
msgid "You need to be logged-in to delete your account"
msgstr "Tes que estar conectada para poder eliminar a conta"
#: lib/graphql/resolvers/group.ex:237
#, elixir-format
#: lib/graphql/resolvers/group.ex:234
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:270
#, elixir-format
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr "Tes que estar conectada para poder deixar un grupo"
#: lib/graphql/resolvers/group.ex:172
#, elixir-format
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr "Tes que estar conectada para poder actualizar un grupo"
#: lib/graphql/resolvers/user.ex:58
#, elixir-format
msgid "You need to have admin access to list users"
msgstr "Tes que ter acceso de administración para ver lista de usuarias"
#: lib/graphql/resolvers/user.ex:108
#, elixir-format
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:198 lib/graphql/resolvers/user.ex:222
#, elixir-format
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
msgid "You requested again a confirmation email too soon"
msgstr "Solicitaches demasiado pronto un email de confirmación"
#: lib/graphql/resolvers/user.ex:128
#, elixir-format
#: lib/graphql/resolvers/user.ex:128
msgid "Your email is not on the allowlist"
msgstr "O teu email non está na lista dos permitidos"
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
#, elixir-format
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
msgid "Error while performing background task"
msgstr "Erro ó executar a tarefa en segundo plano"
#: lib/graphql/resolvers/actor.ex:27
#, elixir-format
#: lib/graphql/resolvers/actor.ex:27
msgid "No profile found with this ID"
msgstr "Non se atopa o perfil con este ID"
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
#, elixir-format
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
msgid "No remote profile found with this ID"
msgstr "Non se atopa o perfil remoto con este ID"
#: lib/graphql/resolvers/actor.ex:69
#, elixir-format
#: lib/graphql/resolvers/actor.ex:69
msgid "Only moderators and administrators can suspend a profile"
msgstr "Só moderadoras e administradoras poden suspender un perfil"
#: lib/graphql/resolvers/actor.ex:99
#, elixir-format
#: lib/graphql/resolvers/actor.ex:99
msgid "Only moderators and administrators can unsuspend a profile"
msgstr "Só moderadoras e administradoras pode restablecer un perfil"
#: lib/graphql/resolvers/actor.ex:24
#, elixir-format
#: lib/graphql/resolvers/actor.ex:24
msgid "Only remote profiles may be refreshed"
msgstr "Só os perfís remotos poderían ser actualizdos"
#: lib/graphql/resolvers/actor.ex:61
#, elixir-format
#: lib/graphql/resolvers/actor.ex:61
msgid "Profile already suspended"
msgstr "O perfil xa está suspendido"
#: lib/graphql/resolvers/participant.ex:93
#, elixir-format
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr "A túa instancia require un email válido"
#: lib/graphql/resolvers/participant.ex:87
#, elixir-format
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr "Non está permitida a participación ánonima"
#: lib/graphql/resolvers/person.ex:184
#, elixir-format
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr "Non se pode eliminar a última administradora dun grupo"
#: lib/graphql/resolvers/person.ex:181
#, elixir-format
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr "Non se pode eliminar a última identidade dunha usuaria"
#: lib/graphql/resolvers/comment.ex:105
#, elixir-format
#: lib/graphql/resolvers/comment.ex:105
msgid "Comment is already deleted"
msgstr "O comentario xa foi eliminado"
#: lib/graphql/resolvers/discussion.ex:61
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr "Non se atopa a conversa"
#: lib/graphql/resolvers/report.ex:58 lib/graphql/resolvers/report.ex:77
#, elixir-format
#: lib/graphql/resolvers/report.ex:58 lib/graphql/resolvers/report.ex:77
msgid "Error while saving report"
msgstr "Erro ó gardar a denuncia"
#: lib/graphql/resolvers/report.ex:96
#, elixir-format
#: lib/graphql/resolvers/report.ex:96
msgid "Error while updating report"
msgstr "Erro ó actualizar a denuncia"
#: lib/graphql/resolvers/participant.ex:128
#, elixir-format
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr "Non se atopou o ID do evento"
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr "Evento non atopado"
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#, elixir-format
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr "Non existe un evento co ID %{id}"
#: lib/graphql/resolvers/participant.ex:100
#, elixir-format
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr "Erro interno"
#: lib/graphql/resolvers/discussion.ex:193
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr "Non hai conversa con ID %{id}"
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:168
#, elixir-format
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:168
msgid "No profile found for user"
msgstr "Non se atopou o perfil da usuaria"
#: lib/graphql/resolvers/feed_token.ex:63
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token"
msgstr "Non hai tal token da fonte"
#: lib/graphql/resolvers/participant.ex:238
#, elixir-format
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr "A participante xa ten o rol %{role}"
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#, elixir-format
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr "Non se atopou a participante"
#: lib/graphql/resolvers/person.ex:29
#, elixir-format
#: lib/graphql/resolvers/person.ex:29
msgid "Person with ID %{id} not found"
msgstr "Non se atopou a persoa con ID %{id}"
#: lib/graphql/resolvers/person.ex:50
#, elixir-format
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr "Non se atopa a persoa con nome de usuaria %{username}"
#: lib/graphql/resolvers/picture.ex:41
#, elixir-format
msgid "Picture with ID %{id} was not found"
msgstr "Non se atopa a imaxe con ID %{id}"
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#, elixir-format
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr "ID da publicación non é un ID válido"
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#, elixir-format
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr "Non existe a publicación"
#: lib/graphql/resolvers/member.ex:83
#, elixir-format
#: lib/graphql/resolvers/member.ex:83
msgid "Profile invited doesn't exist"
msgstr "O perfil convidado non existe"
#: lib/graphql/resolvers/member.ex:92 lib/graphql/resolvers/member.ex:96
#, elixir-format
#: lib/graphql/resolvers/member.ex:92 lib/graphql/resolvers/member.ex:96
msgid "Profile is already a member of this group"
msgstr "O perfil xa é membro deste grupo"
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#, elixir-format
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
#, elixir-format
msgid "Profile is not member of group"
msgstr "O perfil non é membro do grupo"
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#, elixir-format
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr "Perfil non atopado"
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr "O perfil da moderadora proporcionado non ten permisos neste evento"
#: lib/graphql/resolvers/report.ex:36
#, elixir-format
#: lib/graphql/resolvers/report.ex:36
msgid "Report not found"
msgstr "Denuncia non atopada"
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
#, elixir-format
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
msgid "Resource doesn't exist"
msgstr "Non existe o recurso"
#: lib/graphql/resolvers/participant.ex:121
#, elixir-format
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr "Este evento xa acadou a súa capacidade máxima"
#: lib/graphql/resolvers/participant.ex:261
#, elixir-format
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr "Este token non é válido"
#: lib/graphql/resolvers/todos.ex:165 lib/graphql/resolvers/todos.ex:219
#, elixir-format
#: lib/graphql/resolvers/todos.ex:165 lib/graphql/resolvers/todos.ex:219
msgid "Todo doesn't exist"
msgstr "Lista de tarefas non existe"
#, elixir-format
#: lib/graphql/resolvers/todos.ex:75 lib/graphql/resolvers/todos.ex:191
#: lib/graphql/resolvers/todos.ex:216
#, elixir-format
msgid "Todo list doesn't exist"
msgstr "A lista de tarefas non existe"
#: lib/graphql/resolvers/feed_token.ex:69
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist"
msgstr "Non existe o token"
#: lib/graphql/resolvers/feed_token.ex:66
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID"
msgstr "O token non é un UUID válido"
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr "Usuaria non atopada"
#: lib/graphql/resolvers/person.ex:232
#, elixir-format
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr "Xa tes un perfil para esta usuaria"
#: lib/graphql/resolvers/participant.ex:131
#, elixir-format
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr "Xa es unha participante neste evento"
#: lib/graphql/resolvers/discussion.ex:197
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr "Non es membro do grupo ó que pertence a conversa"
#: lib/graphql/resolvers/member.ex:86
#, elixir-format
#: lib/graphql/resolvers/member.ex:86
msgid "You are not a member of this group"
msgstr "Non es membro deste grupo"
#: lib/graphql/resolvers/member.ex:151
#, elixir-format
#: lib/graphql/resolvers/member.ex:151
msgid "You are not a moderator or admin for this group"
msgstr "Non es moderadora ou administradora deste grupo"
#: lib/graphql/resolvers/comment.ex:51
#, elixir-format
#: lib/graphql/resolvers/comment.ex:51
msgid "You are not allowed to create a comment if not connected"
msgstr "Non tes permiso para crear un comentario sen estar conectada"
#: lib/graphql/resolvers/feed_token.ex:41
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected"
msgstr "Non tes permiso para crear un token da fonte se non estás conectada"
#: lib/graphql/resolvers/comment.ex:110
#, elixir-format
#: lib/graphql/resolvers/comment.ex:110
msgid "You are not allowed to delete a comment if not connected"
msgstr "Non tes permiso para eliminar un comentario se non estás conectada"
#: lib/graphql/resolvers/feed_token.ex:78
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected"
msgstr "Non tes permiso para eliminar o token da fonte se non estás conectada"
#: lib/graphql/resolvers/comment.ex:73
#, elixir-format
#: lib/graphql/resolvers/comment.ex:73
msgid "You are not allowed to update a comment if not connected"
msgstr "Non tes permiso para actualizar un comentario se non estás conectada"
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#, elixir-format
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
"Non podes saír do evento porque es a única creadora do evento que participa"
#: lib/graphql/resolvers/member.ex:155
#, elixir-format
#: lib/graphql/resolvers/member.ex:155
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
"Non podes adxudicarte un rol menor neste grupo porque es a única "
"administradora"
#: lib/graphql/resolvers/comment.ex:101
#, elixir-format
#: lib/graphql/resolvers/comment.ex:101
msgid "You cannot delete this comment"
msgstr "Non podes eliminar este comentario"
#: lib/graphql/resolvers/event.ex:275
#, elixir-format
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr "Non podes eliminar este evento"
#: lib/graphql/resolvers/member.ex:89
#, elixir-format
#: lib/graphql/resolvers/member.ex:89
msgid "You cannot invite to this group"
msgstr "Non podes convidar a este grupo"
#: lib/graphql/resolvers/feed_token.ex:72
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token"
msgstr "Non tes permiso para eliminar este token"
#: lib/graphql/resolvers/admin.ex:52
#, elixir-format
#: lib/graphql/resolvers/admin.ex:52
msgid "You need to be logged-in and a moderator to list action logs"
msgstr ""
"Tes que estar conectada e ser moderadora para ver listas de rexistros de "
"accións"
#: lib/graphql/resolvers/report.ex:26
#, elixir-format
#: lib/graphql/resolvers/report.ex:26
msgid "You need to be logged-in and a moderator to list reports"
msgstr "Tes que estar conectada e ser moderadora para ver listas de denuncias"
#: lib/graphql/resolvers/report.ex:101
#, elixir-format
#: lib/graphql/resolvers/report.ex:101
msgid "You need to be logged-in and a moderator to update a report"
msgstr "Tes que estas conectada e ser moderadora para actualizar unha denuncia"
#: lib/graphql/resolvers/report.ex:41
#, elixir-format
#: lib/graphql/resolvers/report.ex:41
msgid "You need to be logged-in and a moderator to view a report"
msgstr "Tes que estar conectada e ser moderadora para ver unha denuncia"
#: lib/graphql/resolvers/admin.ex:236
#, elixir-format
#: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings"
msgstr ""
"Tes que estar conectada e ser administradora para acceder ós axustes de "
"administración"
#: lib/graphql/resolvers/admin.ex:221
#, elixir-format
#: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr ""
"Tes que estar conectada e ser administradora para acceder ó taboleiro de "
"estatísticas"
#: lib/graphql/resolvers/admin.ex:260
#, elixir-format
#: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
"Tes que estar conectada e ser administradora para gardar os axustes de "
"administración"
#: lib/graphql/resolvers/discussion.ex:75
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr "Tes que estar conectada para acceder ás conversas"
#: lib/graphql/resolvers/resource.ex:93
#, elixir-format
#: lib/graphql/resolvers/resource.ex:93
msgid "You need to be logged-in to access resources"
msgstr "Tes que estar conectada para acceder ós recursos"
#: lib/graphql/resolvers/event.ex:210
#, elixir-format
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr "Tes que estar conectada para crear eventos"
#: lib/graphql/resolvers/post.ex:139
#, elixir-format
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr "Tes que estar conectada para crear publicacións"
#: lib/graphql/resolvers/report.ex:74
#, elixir-format
#: lib/graphql/resolvers/report.ex:74
msgid "You need to be logged-in to create reports"
msgstr "Tes que estar conectada para crear denuncias"
#: lib/graphql/resolvers/resource.ex:129
#, elixir-format
#: lib/graphql/resolvers/resource.ex:129
msgid "You need to be logged-in to create resources"
msgstr "Tes que estar conectada para crear recursos"
#: lib/graphql/resolvers/event.ex:284
#, elixir-format
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr "Tes que estar conectada para eliminar un evento"
#: lib/graphql/resolvers/post.ex:209
#, elixir-format
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr "Tes que estar conectada para eliminar publicacións"
#: lib/graphql/resolvers/resource.ex:187
#, elixir-format
#: lib/graphql/resolvers/resource.ex:187
msgid "You need to be logged-in to delete resources"
msgstr "Tes que estar conectada para eliminar recursos"
#: lib/graphql/resolvers/participant.ex:105
#, elixir-format
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr "Tes que estar conectada para unirte a un evento"
#: lib/graphql/resolvers/participant.ex:204
#, elixir-format
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr "Tes que estar conectada para saír dun evento"
#: lib/graphql/resolvers/event.ex:249
#, elixir-format
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr "Tes que estar conectada para actualizar un evento"
#: lib/graphql/resolvers/post.ex:176
#, elixir-format
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr "Tes que estar conectada para actualizar publicacións"
#: lib/graphql/resolvers/resource.ex:158
#, elixir-format
#: lib/graphql/resolvers/resource.ex:158
msgid "You need to be logged-in to update resources"
msgstr "Tes que estar conectada para actualizar recursos"
#: lib/graphql/resolvers/resource.ex:210
#, elixir-format
#: lib/graphql/resolvers/resource.ex:210
msgid "You need to be logged-in to view a resource preview"
msgstr "Tes que estar conectada para ver vista previa dun recurso"
#: lib/graphql/resolvers/picture.ex:79
#, elixir-format
msgid "You need to login to upload a picture"
msgstr "Tes que estar conectada para subir unha imaxe"
#: lib/graphql/resolvers/resource.ex:121
#, elixir-format
msgid "Parent resource doesn't belong to this group"
msgstr "O recurso relacionado non pertence a este grupo"
#: lib/mobilizon/users/user.ex:109
#, elixir-format
#: lib/mobilizon/users/user.ex:109
msgid "The chosen password is too short."
msgstr "O contrasinal elexido é demasiado curto."
#: lib/mobilizon/users/user.ex:138
#, elixir-format
#: lib/mobilizon/users/user.ex:138
msgid "The registration token is already in use, this looks like an issue on our side."
msgstr ""
"O token de rexistro xa está a ser usado, semella un problema pola nosa parte."
#: lib/mobilizon/users/user.ex:104
#, elixir-format
#: lib/mobilizon/users/user.ex:104
msgid "This email is already used."
msgstr "Este email xa se está a usar."
#: lib/graphql/error.ex:88
#, elixir-format
#: lib/graphql/error.ex:88
msgid "Post not found"
msgstr "Non se atopa a publicación"
#: lib/graphql/error.ex:75
#, elixir-format
#: lib/graphql/error.ex:75
msgid "Invalid arguments passed"
msgstr "Argumentos proporcionados non válidos"
#: lib/graphql/error.ex:81
#, elixir-format
#: lib/graphql/error.ex:81
msgid "Invalid credentials"
msgstr "Credenciais non válidas"
#: lib/graphql/error.ex:79
#, elixir-format
#: lib/graphql/error.ex:79
msgid "Reset your password to login"
msgstr "Restablece o teu contrasinal para conectar"
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
#, elixir-format
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
msgid "Resource not found"
msgstr "Recurso non atopado"
#: lib/graphql/error.ex:92
#, elixir-format
#: lib/graphql/error.ex:92
msgid "Something went wrong"
msgstr "Algo foi mal"
#: lib/graphql/error.ex:74
#, elixir-format
#: lib/graphql/error.ex:74
msgid "Unknown Resource"
msgstr "Recurso descoñecido"
#: lib/graphql/error.ex:84
#, elixir-format
#: lib/graphql/error.ex:84
msgid "You don't have permission to do this"
msgstr "Non tes permiso para facer isto"
#: lib/graphql/error.ex:76
#, elixir-format
#: lib/graphql/error.ex:76
msgid "You need to be logged in"
msgstr "Tes que estar conectada"
#: lib/graphql/resolvers/member.ex:116
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
msgid "You can't accept this invitation with this profile."
msgstr "Non podes aceptar este convite con este perfil."
#: lib/graphql/resolvers/member.ex:134
#, elixir-format
#: lib/graphql/resolvers/member.ex:134
msgid "You can't reject this invitation with this profile."
msgstr "Non podes rexeitar este convite con este perfil."
#: lib/graphql/resolvers/picture.ex:71
#, elixir-format
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr "O ficheiro non ten un tipo MIME permitido."
#: lib/graphql/resolvers/group.ex:167
#, elixir-format
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr "O perfil non é administrador do grupo"
#: lib/graphql/resolvers/event.ex:238
#, elixir-format
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr "Non podes editar este evento."
#: lib/graphql/resolvers/event.ex:241
#, elixir-format
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr "Non podes atribuír este evento a este perfil."
#: lib/graphql/resolvers/member.ex:137
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
msgid "This invitation doesn't exist."
msgstr "O convite non existe."
#: lib/graphql/resolvers/member.ex:179
#, elixir-format
#: lib/graphql/resolvers/member.ex:179
msgid "This member already has been rejected."
msgstr "Este membro xa foi rexeitado."
#: lib/graphql/resolvers/member.ex:186
#, elixir-format
#: lib/graphql/resolvers/member.ex:186
msgid "You don't have the right to remove this member."
msgstr "Non tes permiso para eliminar este membro."
#: lib/mobilizon/actors/actor.ex:344
#, elixir-format
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr "Este nome de usuaria xa está pillado."
#: lib/graphql/resolvers/discussion.ex:72
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr "Debes proporcionar ou ben un ID ou nome para acceder á conversa"
#: lib/graphql/resolvers/event.ex:199
#, elixir-format
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr "O perfil da organización non pertence á usuaria"
#: lib/graphql/resolvers/participant.ex:90
#, elixir-format
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr "O ID do perfil proporcionado non é o perfil anónimo"
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

View File

@ -16,11 +16,6 @@ msgstr ""
msgid "If you didn't request this, please ignore this email. Your password won't change until you access the link below and create a new one."
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:170
msgid "Feed for %{email} on Mobilizon"
msgstr ""
#, elixir-format
#: lib/web/templates/email/report.html.eex:74
msgid "%{title} by %{creator}"
@ -141,7 +136,7 @@ msgid "Warning"
msgstr ""
#, elixir-format
#: lib/web/email/participation.ex:134
#: lib/web/email/participation.ex:135
msgid "Confirm your participation to event %{title}"
msgstr ""
@ -324,7 +319,7 @@ msgid "Mobilizon on %{instance}: email changed"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:46
#: lib/web/email/notification.ex:47
msgid "One event planned today"
msgid_plural "%{nb_events} events planned today"
msgstr[0] ""
@ -377,19 +372,19 @@ msgid "View the event on: %{link}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:32
#: lib/web/email/group.ex:33
msgid "You have been invited by %{inviter} to join group %{group}"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:70
#: lib/web/email/notification.ex:71
msgid "One event planned this week"
msgid_plural "%{nb_events} events planned this week"
msgstr[0] ""
msgstr[1] ""
#, elixir-format
#: lib/web/email/notification.ex:92
#: lib/web/email/notification.ex:93
msgid "One participation request for event %{title} to process"
msgid_plural "%{number_participation_requests} participation requests for event %{title} to process"
msgstr[0] ""
@ -1049,7 +1044,7 @@ msgid "So long, and thanks for the fish!"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:62
#: lib/web/email/group.ex:63
msgid "You have been removed from group %{group}"
msgstr ""
@ -1105,12 +1100,12 @@ msgid "Your instance's moderation team has decided to suspend %{group_name} (%{g
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:135
#: lib/web/email/group.ex:136
msgid "The group %{group} has been deleted on %{instance}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:96
#: lib/web/email/group.ex:97
msgid "The group %{group} has been suspended on %{instance}"
msgstr ""
@ -1270,12 +1265,12 @@ msgid "You have now confirmed your participation. Update your calendar, because
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:91
#: lib/mobilizon/posts/post.ex:94
msgid "A text is required for the post"
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:90
#: lib/mobilizon/posts/post.ex:93
msgid "A title is required for the post"
msgstr ""
@ -1367,3 +1362,23 @@ msgstr ""
#: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon."
msgstr ""
#, elixir-format
#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60
msgid "%{name}'s feed"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:77
msgid "%{actor}'s private events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:72
msgid "%{actor}'s public events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:203
msgid "Feed for %{email} on %{instance}"
msgstr ""

View File

@ -109,778 +109,768 @@ msgstr "nagyobbnak vagy egyenlőnek kell lennie mint %{number}"
msgid "must be equal to %{number}"
msgstr "egyenlőnek kell lennie ezzel: %{number}"
#: lib/graphql/resolvers/user.ex:103
#, elixir-format
#: lib/graphql/resolvers/user.ex:103
msgid "Cannot refresh the token"
msgstr "Nem lehet frissíteni a tokent"
#: lib/graphql/resolvers/group.ex:198
#, elixir-format
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr "A jelenlegi profil nem tagja ennek a csoportnak"
#: lib/graphql/resolvers/group.ex:202
#, elixir-format
#: lib/graphql/resolvers/group.ex:199
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:512
#, elixir-format
#: lib/graphql/resolvers/user.ex:512
msgid "Error while saving user settings"
msgstr "Hiba a felhasználói beállítások mentésekor"
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr "Nem található a csoport"
#: lib/graphql/resolvers/group.ex:66
#, elixir-format
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr "Nem található %{id} azonosítóval rendelkező csoport"
#: lib/graphql/resolvers/user.ex:83
#, elixir-format
#: lib/graphql/resolvers/user.ex:83
msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "Lehetetlen hitelesíteni, vagy az e-mail, vagy a jelszó érvénytelen."
#: lib/graphql/resolvers/group.ex:258
#, elixir-format
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr "Nem található a tag"
#, elixir-format
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
#: lib/graphql/resolvers/user.ex:417
#, elixir-format
msgid "No profile found for the moderator user"
msgstr "Nem található profil a moderátor felhasználóhoz"
#: lib/graphql/resolvers/user.ex:195
#, elixir-format
#: lib/graphql/resolvers/user.ex:195
msgid "No user to validate with this email was found"
msgstr "Nem található ezzel az e-mail-címmel ellenőrzendő felhasználó"
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#, elixir-format
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr "Nem található ezzel az e-mail-címmel rendelkező felhasználó"
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr "A profilt nem hitelesített felhasználó birtokolja"
#: lib/graphql/resolvers/user.ex:125
#, elixir-format
#: lib/graphql/resolvers/user.ex:125
msgid "Registrations are not open"
msgstr "A regisztrációk nincsenek nyitva"
#: lib/graphql/resolvers/user.ex:330
#, elixir-format
#: lib/graphql/resolvers/user.ex:330
msgid "The current password is invalid"
msgstr "A jelenlegi jelszó érvénytelen"
#: lib/graphql/resolvers/user.ex:382
#, elixir-format
#: lib/graphql/resolvers/user.ex:382
msgid "The new email doesn't seem to be valid"
msgstr "Az új e-mail-cím nem tűnik érvényesnek"
#: lib/graphql/resolvers/user.ex:379
#, elixir-format
#: lib/graphql/resolvers/user.ex:379
msgid "The new email must be different"
msgstr "Az új e-mail-címnek eltérőnek kell lennie"
#: lib/graphql/resolvers/user.ex:333
#, elixir-format
#: lib/graphql/resolvers/user.ex:333
msgid "The new password must be different"
msgstr "Az új jelszónak eltérőnek kell lennie"
#, elixir-format
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
#: lib/graphql/resolvers/user.ex:442
#, elixir-format
msgid "The password provided is invalid"
msgstr "A megadott jelszó érvénytelen"
#: lib/graphql/resolvers/user.ex:337
#, elixir-format
#: lib/graphql/resolvers/user.ex:337
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
"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:215
#, elixir-format
#: lib/graphql/resolvers/user.ex:215
msgid "This user can't reset their password"
msgstr "Ez a felhasználó nem tudja visszaállítani a jelszavát"
#: lib/graphql/resolvers/user.ex:79
#, elixir-format
#: lib/graphql/resolvers/user.ex:79
msgid "This user has been disabled"
msgstr "Ez a felhasználó le lett tiltva"
#: lib/graphql/resolvers/user.ex:179
#, elixir-format
#: lib/graphql/resolvers/user.ex:179
msgid "Unable to validate user"
msgstr "Nem lehet ellenőrizni a felhasználót"
#: lib/graphql/resolvers/user.ex:420
#, elixir-format
#: lib/graphql/resolvers/user.ex:420
msgid "User already disabled"
msgstr "A felhasználó már le van tiltva"
#: lib/graphql/resolvers/user.ex:487
#, elixir-format
#: lib/graphql/resolvers/user.ex:487
msgid "User requested is not logged-in"
msgstr "A kért felhasználó nincs bejelentkezve"
#: lib/graphql/resolvers/group.ex:232
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr "Már tagja ennek a csoportnak"
#: lib/graphql/resolvers/group.ex:265
#, elixir-format
#: lib/graphql/resolvers/group.ex:262
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"
#: lib/graphql/resolvers/group.ex:229
#, elixir-format
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr "Nem csatlakozhat ehhez a csoporthoz"
#: lib/graphql/resolvers/group.ex:94
#, elixir-format
#: lib/graphql/resolvers/group.ex:91
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:387
#, elixir-format
#: lib/graphql/resolvers/user.ex:387
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:345
#, elixir-format
#: lib/graphql/resolvers/user.ex:345
msgid "You need to be logged-in to change your password"
msgstr "Bejelentkezve kell lennie a jelszava megváltoztatásához"
#: lib/graphql/resolvers/group.ex:207
#, elixir-format
#: lib/graphql/resolvers/group.ex:204
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:447
#, elixir-format
#: lib/graphql/resolvers/user.ex:447
msgid "You need to be logged-in to delete your account"
msgstr "Bejelentkezve kell lennie a fiókja törléséhez"
#: lib/graphql/resolvers/group.ex:237
#, elixir-format
#: lib/graphql/resolvers/group.ex:234
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:270
#, elixir-format
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr "Bejelentkezve kell lennie egy csoportból való kilépéshez"
#: lib/graphql/resolvers/group.ex:172
#, elixir-format
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr "Bejelentkezve kell lennie egy csoport frissítéséhez"
#: lib/graphql/resolvers/user.ex:58
#, elixir-format
msgid "You need to have admin access to list users"
msgstr "Adminisztrátori hozzáférésre van szüksége a felhasználók felsorolásához"
#: lib/graphql/resolvers/user.ex:108
#, elixir-format
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:198 lib/graphql/resolvers/user.ex:222
#, elixir-format
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
msgid "You requested again a confirmation email too soon"
msgstr "Túl hamar kért újra egy megerősítő e-mailt"
#: lib/graphql/resolvers/user.ex:128
#, elixir-format
#: lib/graphql/resolvers/user.ex:128
msgid "Your email is not on the allowlist"
msgstr "Az e-mail-címe nincs rajta az engedélyezési listán"
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
#, elixir-format
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
msgid "Error while performing background task"
msgstr "Hiba a háttérfeladat végrehajtásakor"
#: lib/graphql/resolvers/actor.ex:27
#, elixir-format
#: lib/graphql/resolvers/actor.ex:27
msgid "No profile found with this ID"
msgstr "Nem található profil ezzel az azonosítóval"
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
#, elixir-format
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
msgid "No remote profile found with this ID"
msgstr "Nem található távoli profil ezzel az azonosítóval"
#: lib/graphql/resolvers/actor.ex:69
#, elixir-format
#: lib/graphql/resolvers/actor.ex:69
msgid "Only moderators and administrators can suspend a profile"
msgstr "Csak moderátorok és adminisztrátorok függeszthetnek fel egy profilt"
#: lib/graphql/resolvers/actor.ex:99
#, elixir-format
#: lib/graphql/resolvers/actor.ex:99
msgid "Only moderators and administrators can unsuspend a profile"
msgstr ""
"Csak moderátorok és adminisztrátorok szüntethetik meg egy profil "
"felfüggesztését"
#: lib/graphql/resolvers/actor.ex:24
#, elixir-format
#: lib/graphql/resolvers/actor.ex:24
msgid "Only remote profiles may be refreshed"
msgstr "Csak távoli profilokat lehet frissíteni"
#: lib/graphql/resolvers/actor.ex:61
#, elixir-format
#: lib/graphql/resolvers/actor.ex:61
msgid "Profile already suspended"
msgstr "A profil már fel van függesztve"
#: lib/graphql/resolvers/participant.ex:93
#, elixir-format
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr "Érvényes e-mail-címet követelt meg az Ön példánya"
#: lib/graphql/resolvers/participant.ex:87
#, elixir-format
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr "A névtelen részvétel nincs engedélyezve"
#: lib/graphql/resolvers/person.ex:184
#, elixir-format
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr "Nem lehet eltávolítani egy csoport utolsó adminisztrátorát"
#: lib/graphql/resolvers/person.ex:181
#, elixir-format
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr "Nem lehet eltávolítani egy felhasználó utolsó személyazonosságát"
#: lib/graphql/resolvers/comment.ex:105
#, elixir-format
#: lib/graphql/resolvers/comment.ex:105
msgid "Comment is already deleted"
msgstr "A hozzászólást már törölték"
#: lib/graphql/resolvers/discussion.ex:61
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr "Nem található a megbeszélés"
#: lib/graphql/resolvers/report.ex:58 lib/graphql/resolvers/report.ex:77
#, elixir-format
#: lib/graphql/resolvers/report.ex:58 lib/graphql/resolvers/report.ex:77
msgid "Error while saving report"
msgstr "Hiba a jelentés mentésekor"
#: lib/graphql/resolvers/report.ex:96
#, elixir-format
#: lib/graphql/resolvers/report.ex:96
msgid "Error while updating report"
msgstr "Hiba a jelentés frissítésekor"
#: lib/graphql/resolvers/participant.ex:128
#, elixir-format
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr "Nem található az eseményazonosító"
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr "Nem található az esemény"
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#, elixir-format
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr "Ezzel a(z) %{id} azonosítóval rendelkező esemény nem létezik"
#: lib/graphql/resolvers/participant.ex:100
#, elixir-format
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr "Belső hiba"
#: lib/graphql/resolvers/discussion.ex:193
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr "Nincs %{id} azonosítóval rendelkező megbeszélés"
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:168
#, elixir-format
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:168
msgid "No profile found for user"
msgstr "Nem található profil a felhasználóhoz"
#: lib/graphql/resolvers/feed_token.ex:63
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token"
msgstr "Nincs ilyen hírforrástoken"
#: lib/graphql/resolvers/participant.ex:238
#, elixir-format
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr "A résztvevő már rendelkezik %{role} szereppel"
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#, elixir-format
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr "Nem található a résztvevő"
#: lib/graphql/resolvers/person.ex:29
#, elixir-format
#: lib/graphql/resolvers/person.ex:29
msgid "Person with ID %{id} not found"
msgstr "Nem található %{id} azonosítóval rendelkező személy"
#: lib/graphql/resolvers/person.ex:50
#, elixir-format
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr "Nem található %{username} felhasználónévvel rendelkező személy"
#: lib/graphql/resolvers/picture.ex:41
#, elixir-format
msgid "Picture with ID %{id} was not found"
msgstr "Nem található %{id} azonosítóval rendelkező fénykép"
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#, elixir-format
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr "A hozzászólás-azonosító nem érvényes azonosító"
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#, elixir-format
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr "A hozzászólás nem létezik"
#: lib/graphql/resolvers/member.ex:83
#, elixir-format
#: lib/graphql/resolvers/member.ex:83
msgid "Profile invited doesn't exist"
msgstr "A meghívott profil nem létezik"
#: lib/graphql/resolvers/member.ex:92 lib/graphql/resolvers/member.ex:96
#, elixir-format
#: lib/graphql/resolvers/member.ex:92 lib/graphql/resolvers/member.ex:96
msgid "Profile is already a member of this group"
msgstr "A profil már tagja ennek a csoportnak"
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#, elixir-format
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
#, elixir-format
msgid "Profile is not member of group"
msgstr "A profil nem tagja a csoportnak"
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#, elixir-format
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr "Nem található a profil"
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr "A megadott moderátorprofilnak nincs jogosultsága ezen az eseményen"
#: lib/graphql/resolvers/report.ex:36
#, elixir-format
#: lib/graphql/resolvers/report.ex:36
msgid "Report not found"
msgstr "Nem található a jelentés"
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
#, elixir-format
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
msgid "Resource doesn't exist"
msgstr "Az erőforrás nem létezik"
#: lib/graphql/resolvers/participant.ex:121
#, elixir-format
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr "Az esemény már elérte a legnagyobb kapacitását"
#: lib/graphql/resolvers/participant.ex:261
#, elixir-format
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr "Ez a token érvénytelen"
#: lib/graphql/resolvers/todos.ex:165 lib/graphql/resolvers/todos.ex:219
#, elixir-format
#: lib/graphql/resolvers/todos.ex:165 lib/graphql/resolvers/todos.ex:219
msgid "Todo doesn't exist"
msgstr "A tennivaló nem létezik"
#, elixir-format
#: lib/graphql/resolvers/todos.ex:75 lib/graphql/resolvers/todos.ex:191
#: lib/graphql/resolvers/todos.ex:216
#, elixir-format
msgid "Todo list doesn't exist"
msgstr "A tennivalólista nem létezik"
#: lib/graphql/resolvers/feed_token.ex:69
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist"
msgstr "A token nem létezik"
#: lib/graphql/resolvers/feed_token.ex:66
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID"
msgstr "A token nem érvényes UUID"
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr "Nem található a felhasználó"
#: lib/graphql/resolvers/person.ex:232
#, elixir-format
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr "Már rendelkezik profillal ehhez a felhasználóhoz"
#: lib/graphql/resolvers/participant.ex:131
#, elixir-format
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr "Már résztvevője ennek az eseménynek"
#: lib/graphql/resolvers/discussion.ex:197
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr "Nem tagja annak a csoportnak, amelyhez a megbeszélés tartozik"
#: lib/graphql/resolvers/member.ex:86
#, elixir-format
#: lib/graphql/resolvers/member.ex:86
msgid "You are not a member of this group"
msgstr "Nem tagja ennek a csoportnak"
#: lib/graphql/resolvers/member.ex:151
#, elixir-format
#: lib/graphql/resolvers/member.ex:151
msgid "You are not a moderator or admin for this group"
msgstr "Nem moderátor vagy adminisztrátor ennél a csoportnál"
#: lib/graphql/resolvers/comment.ex:51
#, elixir-format
#: lib/graphql/resolvers/comment.ex:51
msgid "You are not allowed to create a comment if not connected"
msgstr "Nem hozhat létre hozzászólást, ha nincs kapcsolódva"
#: lib/graphql/resolvers/feed_token.ex:41
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected"
msgstr "Nem hozhat létre hírforrástokent, ha nincs kapcsolódva"
#: lib/graphql/resolvers/comment.ex:110
#, elixir-format
#: lib/graphql/resolvers/comment.ex:110
msgid "You are not allowed to delete a comment if not connected"
msgstr "Nem törölhet hozzászólást, ha nincs kapcsolódva"
#: lib/graphql/resolvers/feed_token.ex:78
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected"
msgstr "Nem törölhet hírforrástokent, ha nincs kapcsolódva"
#: lib/graphql/resolvers/comment.ex:73
#, elixir-format
#: lib/graphql/resolvers/comment.ex:73
msgid "You are not allowed to update a comment if not connected"
msgstr "Nem frissíthet hozzászólást, ha nincs kapcsolódva"
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#, elixir-format
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
"Nem hagyhatja el az eseményt, mert Ön az egyedüli eseménylétrehozó résztvevő"
#: lib/graphql/resolvers/member.ex:155
#, elixir-format
#: lib/graphql/resolvers/member.ex:155
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
"Nem állíthatja magát alacsonyabb tagszerepre ennél a csoportnál, mert Ön az "
"egyedüli adminisztrátor"
#: lib/graphql/resolvers/comment.ex:101
#, elixir-format
#: lib/graphql/resolvers/comment.ex:101
msgid "You cannot delete this comment"
msgstr "Nem tudja törölni ezt a hozzászólást"
#: lib/graphql/resolvers/event.ex:275
#, elixir-format
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr "Nem tudja törölni ezt az eseményt"
#: lib/graphql/resolvers/member.ex:89
#, elixir-format
#: lib/graphql/resolvers/member.ex:89
msgid "You cannot invite to this group"
msgstr "Nem tud meghívni ebbe a csoportba"
#: lib/graphql/resolvers/feed_token.ex:72
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token"
msgstr "Nincs jogosultsága a token törléséhez"
#: lib/graphql/resolvers/admin.ex:52
#, elixir-format
#: lib/graphql/resolvers/admin.ex:52
msgid "You need to be logged-in and a moderator to list action logs"
msgstr ""
"Bejelentkezve kell lennie és moderátornak kell lennie a műveletnaplók "
"felsorolásához"
#: lib/graphql/resolvers/report.ex:26
#, elixir-format
#: lib/graphql/resolvers/report.ex:26
msgid "You need to be logged-in and a moderator to list reports"
msgstr ""
"Bejelentkezve kell lennie és moderátornak kell lennie a jelentések "
"felsorolásához"
#: lib/graphql/resolvers/report.ex:101
#, elixir-format
#: lib/graphql/resolvers/report.ex:101
msgid "You need to be logged-in and a moderator to update a report"
msgstr ""
"Bejelentkezve kell lennie és moderátornak kell lennie egy jelentés "
"frissítéséhez"
#: lib/graphql/resolvers/report.ex:41
#, elixir-format
#: lib/graphql/resolvers/report.ex:41
msgid "You need to be logged-in and a moderator to view a report"
msgstr ""
"Bejelentkezve kell lennie és moderátornak kell lennie egy jelentés "
"megtekintéséhez"
#: lib/graphql/resolvers/admin.ex:236
#, elixir-format
#: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings"
msgstr ""
"Bejelentkezve kell lennie és adminisztrátornak kell lennie az "
"adminisztrátori beállításokhoz való hozzáféréshez"
#: lib/graphql/resolvers/admin.ex:221
#, elixir-format
#: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr ""
"Bejelentkezve kell lennie és adminisztrátornak kell lennie a vezérlőpulti "
"statisztikákhoz való hozzáféréshez"
#: lib/graphql/resolvers/admin.ex:260
#, elixir-format
#: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
"Bejelentkezve kell lennie és adminisztrátornak kell lennie az "
"adminisztrátori beállítások mentéséhez"
#: lib/graphql/resolvers/discussion.ex:75
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr "Bejelentkezve kell lennie a megbeszélésekhez való hozzáféréshez"
#: lib/graphql/resolvers/resource.ex:93
#, elixir-format
#: lib/graphql/resolvers/resource.ex:93
msgid "You need to be logged-in to access resources"
msgstr "Bejelentkezve kell lennie az erőforrásokhoz való hozzáféréshez"
#: lib/graphql/resolvers/event.ex:210
#, elixir-format
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr "Bejelentkezve kell lennie az események létrehozásához"
#: lib/graphql/resolvers/post.ex:139
#, elixir-format
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr "Bejelentkezve kell lennie a hozzászólások létrehozásához"
#: lib/graphql/resolvers/report.ex:74
#, elixir-format
#: lib/graphql/resolvers/report.ex:74
msgid "You need to be logged-in to create reports"
msgstr "Bejelentkezve kell lennie a jelentések létrehozásához"
#: lib/graphql/resolvers/resource.ex:129
#, elixir-format
#: lib/graphql/resolvers/resource.ex:129
msgid "You need to be logged-in to create resources"
msgstr "Bejelentkezve kell lennie az erőforrások létrehozásához"
#: lib/graphql/resolvers/event.ex:284
#, elixir-format
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr "Bejelentkezve kell lennie egy esemény törléséhez"
#: lib/graphql/resolvers/post.ex:209
#, elixir-format
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr "Bejelentkezve kell lennie a hozzászólások törléséhez"
#: lib/graphql/resolvers/resource.ex:187
#, elixir-format
#: lib/graphql/resolvers/resource.ex:187
msgid "You need to be logged-in to delete resources"
msgstr "Bejelentkezve kell lennie az erőforrások törléséhez"
#: lib/graphql/resolvers/participant.ex:105
#, elixir-format
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr "Bejelentkezve kell lennie egy eseményhez való csatlakozáshoz"
#: lib/graphql/resolvers/participant.ex:204
#, elixir-format
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr "Bejelentkezve kell lennie egy esemény elhagyásához"
#: lib/graphql/resolvers/event.ex:249
#, elixir-format
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr "Bejelentkezve kell lennie egy esemény frissítéséhez"
#: lib/graphql/resolvers/post.ex:176
#, elixir-format
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr "Bejelentkezve kell lennie a hozzászólások frissítéséhez"
#: lib/graphql/resolvers/resource.ex:158
#, elixir-format
#: lib/graphql/resolvers/resource.ex:158
msgid "You need to be logged-in to update resources"
msgstr "Bejelentkezve kell lennie az erőforrások frissítéséhez"
#: lib/graphql/resolvers/resource.ex:210
#, elixir-format
#: lib/graphql/resolvers/resource.ex:210
msgid "You need to be logged-in to view a resource preview"
msgstr "Bejelentkezve kell lennie egy erőforrás előnézetének megtekintéséhez"
#: lib/graphql/resolvers/picture.ex:79
#, elixir-format
msgid "You need to login to upload a picture"
msgstr "Be kell jelentkeznie egy fénykép feltöltéséhez"
#: lib/graphql/resolvers/resource.ex:121
#, elixir-format
msgid "Parent resource doesn't belong to this group"
msgstr "A szülőerőforrás nem tartozik ehhez a csoporthoz"
#: lib/mobilizon/users/user.ex:109
#, elixir-format
#: lib/mobilizon/users/user.ex:109
msgid "The chosen password is too short."
msgstr "A választott jelszó túl rövid."
#: lib/mobilizon/users/user.ex:138
#, elixir-format
#: lib/mobilizon/users/user.ex:138
msgid "The registration token is already in use, this looks like an issue on our side."
msgstr ""
"A regisztrációs token már használatban van. Ez hibának tűnik a mi oldalunkon."
#: lib/mobilizon/users/user.ex:104
#, elixir-format
#: lib/mobilizon/users/user.ex:104
msgid "This email is already used."
msgstr "Ez az e-mail-cím már használatban van."
#: lib/graphql/error.ex:88
#, elixir-format
#: lib/graphql/error.ex:88
msgid "Post not found"
msgstr "Nem található a hozzászólás"
#: lib/graphql/error.ex:75
#, elixir-format
#: lib/graphql/error.ex:75
msgid "Invalid arguments passed"
msgstr "Érvénytelen argumentumok lettek átadva"
#: lib/graphql/error.ex:81
#, elixir-format
#: lib/graphql/error.ex:81
msgid "Invalid credentials"
msgstr "Érvénytelen hitelesítési adatok"
#: lib/graphql/error.ex:79
#, elixir-format
#: lib/graphql/error.ex:79
msgid "Reset your password to login"
msgstr "Állítsa vissza a jelszavát a bejelentkezéshez"
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
#, elixir-format
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
msgid "Resource not found"
msgstr "Nem található az erőforrás"
#: lib/graphql/error.ex:92
#, elixir-format
#: lib/graphql/error.ex:92
msgid "Something went wrong"
msgstr "Valami elromlott"
#: lib/graphql/error.ex:74
#, elixir-format
#: lib/graphql/error.ex:74
msgid "Unknown Resource"
msgstr "Ismeretlen erőforrás"
#: lib/graphql/error.ex:84
#, elixir-format
#: lib/graphql/error.ex:84
msgid "You don't have permission to do this"
msgstr "Nincs jogosultsága, hogy ezt tegye"
#: lib/graphql/error.ex:76
#, elixir-format
#: lib/graphql/error.ex:76
msgid "You need to be logged in"
msgstr "Bejelentkezve kell lennie"
#: lib/graphql/resolvers/member.ex:116
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
msgid "You can't accept this invitation with this profile."
msgstr "Nem tudja elfogadni ezt a meghívást ezzel a profillal."
#: lib/graphql/resolvers/member.ex:134
#, elixir-format
#: lib/graphql/resolvers/member.ex:134
msgid "You can't reject this invitation with this profile."
msgstr "Nem tudja visszautasítani ezt a meghívást ezzel a profillal."
#: lib/graphql/resolvers/picture.ex:71
#, elixir-format
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr "A fájl nem rendelkezik engedélyezett MIME-típussal."
#: lib/graphql/resolvers/group.ex:167
#, elixir-format
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr "A profil nem adminisztrátor ennél a csoportnál"
#: lib/graphql/resolvers/event.ex:238
#, elixir-format
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr "Nem tudja szerkeszteni ezt az eseményt."
#: lib/graphql/resolvers/event.ex:241
#, elixir-format
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr "Nem tudja ezt az eseményt ennek a profilnak tulajdonítani."
#: lib/graphql/resolvers/member.ex:137
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
msgid "This invitation doesn't exist."
msgstr "Ez a meghívás nem létezik."
#: lib/graphql/resolvers/member.ex:179
#, elixir-format
#: lib/graphql/resolvers/member.ex:179
msgid "This member already has been rejected."
msgstr "Ez a tag már vissza lett utasítva."
#: lib/graphql/resolvers/member.ex:186
#, elixir-format
#: lib/graphql/resolvers/member.ex:186
msgid "You don't have the right to remove this member."
msgstr "Nincs meg a jogosultsága a tag eltávolításához."
#: lib/mobilizon/actors/actor.ex:344
#, elixir-format
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr "Ez a felhasználónév már foglalt."
#: lib/graphql/resolvers/discussion.ex:72
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
"Meg kell adnia vagy egy azonosítót, vagy egy keresőbarát URL-t egy "
"megbeszéléshez való hozzáféréshez"
#: lib/graphql/resolvers/event.ex:199
#, elixir-format
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr "A szervező profilját nem a felhasználó birtokolja"
#: lib/graphql/resolvers/participant.ex:90
#, elixir-format
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr "A megadott profilazonosító nem a névtelen profil"
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

View File

@ -21,11 +21,6 @@ msgstr ""
"Se non l'hai richiesta tu, ignora questa mail. La tua password non sarà "
"cambiata fino a che non accederai al link sotto per crearne una nuova."
#, elixir-format
#: lib/service/export/feed.ex:170
msgid "Feed for %{email} on Mobilizon"
msgstr "Flusso di %{email} su Mobilizon"
#, elixir-format
#: lib/web/templates/email/report.html.eex:74
msgid "%{title} by %{creator}"
@ -152,7 +147,7 @@ msgid "Warning"
msgstr "Attenzione"
#, elixir-format
#: lib/web/email/participation.ex:134
#: lib/web/email/participation.ex:135
msgid "Confirm your participation to event %{title}"
msgstr "Conferma la tua partecipazione all'evento %{title}"
@ -368,7 +363,7 @@ msgid "Mobilizon on %{instance}: email changed"
msgstr "Mobilizon su %{instance}: email modificata"
#, elixir-format
#: lib/web/email/notification.ex:46
#: lib/web/email/notification.ex:47
msgid "One event planned today"
msgid_plural "%{nb_events} events planned today"
msgstr[0] "Un evento programmato oggi"
@ -421,19 +416,19 @@ msgid "View the event on: %{link}"
msgstr "Visualizza l'evento su: %{link}"
#, elixir-format
#: lib/web/email/group.ex:32
#: lib/web/email/group.ex:33
msgid "You have been invited by %{inviter} to join group %{group}"
msgstr "Sei stato invitato da %{inviter} per partecipare al gruppo %{group}"
#, elixir-format
#: lib/web/email/notification.ex:70
#: lib/web/email/notification.ex:71
msgid "One event planned this week"
msgid_plural "%{nb_events} events planned this week"
msgstr[0] "Un evento in programma questa settimana"
msgstr[1] "%{nb_events} eventi in programma questa settimana"
#, elixir-format
#: lib/web/email/notification.ex:92
#: lib/web/email/notification.ex:93
msgid "One participation request for event %{title} to process"
msgid_plural "%{number_participation_requests} participation requests for event %{title} to process"
msgstr[0] "Una richiesta di partecipazione per l'evento %{title} da elaborare"
@ -1277,7 +1272,7 @@ msgid "So long, and thanks for the fish!"
msgstr "Addio, e grazie per il pesce!"
#, elixir-format
#: lib/web/email/group.ex:62
#: lib/web/email/group.ex:63
msgid "You have been removed from group %{group}"
msgstr "Sei stato rimosso dal gruppo %{group}"
@ -1347,12 +1342,12 @@ msgstr ""
"%{group_name} (%{group_address}). Non sei più un membro di questo gruppo."
#, elixir-format
#: lib/web/email/group.ex:135
#: lib/web/email/group.ex:136
msgid "The group %{group} has been deleted on %{instance}"
msgstr "Il gruppo %{group} è stato eliminato su %{instance}"
#, elixir-format
#: lib/web/email/group.ex:96
#: lib/web/email/group.ex:97
msgid "The group %{group} has been suspended on %{instance}"
msgstr "Il gruppo %{group} è stato sospeso su %{instance}"
@ -1598,12 +1593,12 @@ msgstr ""
"ora sei nella lista degli invitati!"
#, elixir-format
#: lib/mobilizon/posts/post.ex:91
#: lib/mobilizon/posts/post.ex:94
msgid "A text is required for the post"
msgstr "È richiesto un testo per il post"
#, elixir-format
#: lib/mobilizon/posts/post.ex:90
#: lib/mobilizon/posts/post.ex:93
msgid "A title is required for the post"
msgstr "È richiesto un titolo per il post"
@ -1705,3 +1700,23 @@ msgstr "Siamo spiacenti, ma qualcosa è andato storto da parte nostra."
#: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon."
msgstr "Questo è un sito dimostrativo per testare Mobilizon."
#, elixir-format
#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60
msgid "%{name}'s feed"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:77
msgid "%{actor}'s private events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:72
msgid "%{actor}'s public events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:203
msgid "Feed for %{email} on %{instance}"
msgstr ""

View File

@ -93,773 +93,761 @@ msgstr "dev'essere maggiore o uguale di %{number}"
msgid "must be equal to %{number}"
msgstr "dev'essere uguale a %{number}"
#: lib/graphql/resolvers/user.ex:103
#, elixir-format
#: lib/graphql/resolvers/user.ex:103
msgid "Cannot refresh the token"
msgstr "Il token non può essere aggiornato"
#: lib/graphql/resolvers/group.ex:198
#, elixir-format
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr "Il profilo corrente non è membro di questo gruppo"
#: lib/graphql/resolvers/group.ex:202
#, elixir-format
#: lib/graphql/resolvers/group.ex:199
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:512
#, elixir-format
#: lib/graphql/resolvers/user.ex:512
msgid "Error while saving user settings"
msgstr "Errore nel salvare le preferenze utente"
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr "Gruppo non trovato"
#: lib/graphql/resolvers/group.ex:66
#, elixir-format
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr "Gruppo con ID %{id} non trovato"
#: lib/graphql/resolvers/user.ex:83
#, elixir-format
#: lib/graphql/resolvers/user.ex:83
msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "Impossibile autenticarsi: email e/o password non validi."
#: lib/graphql/resolvers/group.ex:258
#, elixir-format
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr "Membro non trovato"
#, elixir-format
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
#: lib/graphql/resolvers/user.ex:417
#, elixir-format
msgid "No profile found for the moderator user"
msgstr "Nessun profilo trovato per l'utente moderatore"
#: lib/graphql/resolvers/user.ex:195
#, elixir-format
#: lib/graphql/resolvers/user.ex:195
msgid "No user to validate with this email was found"
msgstr "Nessun utente da convalidare trovato con questa email"
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#, elixir-format
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr "Nessun utente con questa email"
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr "L'utente autenticato non è propietario di questo profilo"
#: lib/graphql/resolvers/user.ex:125
#, elixir-format
#: lib/graphql/resolvers/user.ex:125
msgid "Registrations are not open"
msgstr "Le registrazioni non sono aperte"
#: lib/graphql/resolvers/user.ex:330
#, elixir-format
#: lib/graphql/resolvers/user.ex:330
msgid "The current password is invalid"
msgstr "la password corrente non è valida"
#: lib/graphql/resolvers/user.ex:382
#, elixir-format
#: lib/graphql/resolvers/user.ex:382
msgid "The new email doesn't seem to be valid"
msgstr "La nuova email sembra non valida"
#: lib/graphql/resolvers/user.ex:379
#, elixir-format
#: lib/graphql/resolvers/user.ex:379
msgid "The new email must be different"
msgstr "La nuova email dev'essere diversa"
#: lib/graphql/resolvers/user.ex:333
#, elixir-format
#: lib/graphql/resolvers/user.ex:333
msgid "The new password must be different"
msgstr "La nuova password deve essere diversa"
#, elixir-format
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
#: lib/graphql/resolvers/user.ex:442
#, elixir-format
msgid "The password provided is invalid"
msgstr "La password assegnata non è valida"
#: lib/graphql/resolvers/user.ex:337
#, elixir-format
#: lib/graphql/resolvers/user.ex:337
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr "la password scelta è troppo corta, deve avere almeno 6 caratteri."
#: lib/graphql/resolvers/user.ex:215
#, elixir-format
#: lib/graphql/resolvers/user.ex:215
msgid "This user can't reset their password"
msgstr "Questo utente non può resettare la password"
#: lib/graphql/resolvers/user.ex:79
#, elixir-format
#: lib/graphql/resolvers/user.ex:79
msgid "This user has been disabled"
msgstr "L'utente è stato disabilitato"
#: lib/graphql/resolvers/user.ex:179
#, elixir-format
#: lib/graphql/resolvers/user.ex:179
msgid "Unable to validate user"
msgstr "Impossibile convalidare l'utente"
#: lib/graphql/resolvers/user.ex:420
#, elixir-format
#: lib/graphql/resolvers/user.ex:420
msgid "User already disabled"
msgstr "Utente già disabilitato"
#: lib/graphql/resolvers/user.ex:487
#, elixir-format
#: lib/graphql/resolvers/user.ex:487
msgid "User requested is not logged-in"
msgstr "L'utente richiesto non è loggato"
#: lib/graphql/resolvers/group.ex:232
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr "Sei già un membro di questo gruppo"
#: lib/graphql/resolvers/group.ex:265
#, elixir-format
#: lib/graphql/resolvers/group.ex:262
msgid "You can't leave this group because you are the only administrator"
msgstr "Non puoi lasciare questo gruppo perchè sei l'unico amministratore"
#: lib/graphql/resolvers/group.ex:229
#, elixir-format
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr "Non puoi unirti a questo gruppo"
#: lib/graphql/resolvers/group.ex:94
#, elixir-format
#: lib/graphql/resolvers/group.ex:91
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:387
#, elixir-format
#: lib/graphql/resolvers/user.ex:387
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:345
#, elixir-format
#: lib/graphql/resolvers/user.ex:345
msgid "You need to be logged-in to change your password"
msgstr "È necessario effettuare il login per modificare la tua password"
#: lib/graphql/resolvers/group.ex:207
#, elixir-format
#: lib/graphql/resolvers/group.ex:204
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:447
#, elixir-format
#: lib/graphql/resolvers/user.ex:447
msgid "You need to be logged-in to delete your account"
msgstr "È necessario effettuare il login per eliminare il tuo account"
#: lib/graphql/resolvers/group.ex:237
#, elixir-format
#: lib/graphql/resolvers/group.ex:234
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:270
#, elixir-format
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr "È necessario effettuare il login per lasciare un gruppo"
#: lib/graphql/resolvers/group.ex:172
#, elixir-format
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr "È necessario effettuare il login per aggiornare un gruppo"
#: lib/graphql/resolvers/user.ex:58
#, elixir-format
msgid "You need to have admin access to list users"
msgstr ""
"È necessario disporre dell'accesso come amministratore per elencare gli "
"utenti"
#: lib/graphql/resolvers/user.ex:108
#, elixir-format
msgid "You need to have an existing token to get a refresh token"
msgstr ""
"È necessario disporre di un token esistente per ottenere un token di "
"aggiornamento"
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
#, elixir-format
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
msgid "You requested again a confirmation email too soon"
msgstr "Hai richiesto di nuovo un'e-mail di conferma troppo presto"
#: lib/graphql/resolvers/user.ex:128
#, elixir-format
#: lib/graphql/resolvers/user.ex:128
msgid "Your email is not on the allowlist"
msgstr "La tua mail non è nella lista delle autorizzazioni"
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
#, elixir-format
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
msgid "Error while performing background task"
msgstr "Errore nell'eseguire un processo in background"
#: lib/graphql/resolvers/actor.ex:27
#, elixir-format
#: lib/graphql/resolvers/actor.ex:27
msgid "No profile found with this ID"
msgstr "Nessun profilo trovato con questo ID"
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
#, elixir-format
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
msgid "No remote profile found with this ID"
msgstr "Nessun profilo remoto trovato con questo ID"
#: lib/graphql/resolvers/actor.ex:69
#, elixir-format
#: lib/graphql/resolvers/actor.ex:69
msgid "Only moderators and administrators can suspend a profile"
msgstr "Solo i moderatori e gli amministratori possono sospendere un profilo"
#: lib/graphql/resolvers/actor.ex:99
#, elixir-format
#: lib/graphql/resolvers/actor.ex:99
msgid "Only moderators and administrators can unsuspend a profile"
msgstr "Solo i moderatori e gli amministratori possono riattivare un profilo"
#: lib/graphql/resolvers/actor.ex:24
#, elixir-format
#: lib/graphql/resolvers/actor.ex:24
msgid "Only remote profiles may be refreshed"
msgstr "È possibile aggiornare solo i profili remoti"
#: lib/graphql/resolvers/actor.ex:61
#, elixir-format
#: lib/graphql/resolvers/actor.ex:61
msgid "Profile already suspended"
msgstr "Profilo già sospeso"
#: lib/graphql/resolvers/participant.ex:93
#, elixir-format
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr "Un'email valida è richiesta dalla vostra istanza"
#: lib/graphql/resolvers/participant.ex:87
#, elixir-format
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr "La partecipazione anonima non è abilitata"
#: lib/graphql/resolvers/person.ex:184
#, elixir-format
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr "Impossibile rimuovere l'ultimo amministratore di un gruppo"
#: lib/graphql/resolvers/person.ex:181
#, elixir-format
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr "Impossibile rimuovere l'ultima identità di un utente"
#: lib/graphql/resolvers/comment.ex:105
#, elixir-format
#: lib/graphql/resolvers/comment.ex:105
msgid "Comment is already deleted"
msgstr "Commento già cancellato"
#: lib/graphql/resolvers/discussion.ex:61
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr "Discussione non trovata"
#: lib/graphql/resolvers/report.ex:58 lib/graphql/resolvers/report.ex:77
#, elixir-format
#: lib/graphql/resolvers/report.ex:58 lib/graphql/resolvers/report.ex:77
msgid "Error while saving report"
msgstr "Errore nel salvare la segnalazione"
#: lib/graphql/resolvers/report.ex:96
#, elixir-format
#: lib/graphql/resolvers/report.ex:96
msgid "Error while updating report"
msgstr "Errore durante l'aggiornamento del rapporto"
#: lib/graphql/resolvers/participant.ex:128
#, elixir-format
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr "ID evento non trovato"
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr "Evento non trovato"
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#, elixir-format
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr "L'evento con questo ID %{id} non esiste"
#: lib/graphql/resolvers/participant.ex:100
#, elixir-format
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr "Errore Interno"
#: lib/graphql/resolvers/discussion.ex:193
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr "Nessuna discussione con l'ID %{id}"
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:168
#, elixir-format
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:168
msgid "No profile found for user"
msgstr "Nessuno profilo trovato per l'utente"
#: lib/graphql/resolvers/feed_token.ex:63
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token"
msgstr "Nessun token di rifornimento corrispondente"
#: lib/graphql/resolvers/participant.ex:238
#, elixir-format
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr "Il partecipante ha già il ruolo %{role}"
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#, elixir-format
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr "Partecipante non trovato"
#: lib/graphql/resolvers/person.ex:29
#, elixir-format
#: lib/graphql/resolvers/person.ex:29
msgid "Person with ID %{id} not found"
msgstr "La persona con l'ID %{id} non è stata trovata"
#: lib/graphql/resolvers/person.ex:50
#, elixir-format
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr "La persona con il nome utente %{username} non è stata trovata"
#: lib/graphql/resolvers/picture.ex:41
#, elixir-format
msgid "Picture with ID %{id} was not found"
msgstr "L'immagine con l'ID %{id} non è stata trovata"
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#, elixir-format
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr "L'ID del post non è un ID valido"
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#, elixir-format
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr "Il post non esiste"
#: lib/graphql/resolvers/member.ex:83
#, elixir-format
#: lib/graphql/resolvers/member.ex:83
msgid "Profile invited doesn't exist"
msgstr "Il profilo invitato non esiste"
#: lib/graphql/resolvers/member.ex:92 lib/graphql/resolvers/member.ex:96
#, elixir-format
#: lib/graphql/resolvers/member.ex:92 lib/graphql/resolvers/member.ex:96
msgid "Profile is already a member of this group"
msgstr "Il profilo è già un membro diquesto gruppo"
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#, elixir-format
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
#, elixir-format
msgid "Profile is not member of group"
msgstr "Il profilo non è membro del gruppo"
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#, elixir-format
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr "Profilo non trovato"
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr ""
"Il profilo del moderatore fornito non dispone dell'autorizzazione per questo "
"evento"
#: lib/graphql/resolvers/report.ex:36
#, elixir-format
#: lib/graphql/resolvers/report.ex:36
msgid "Report not found"
msgstr "Segnalazione non trovata"
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
#, elixir-format
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
msgid "Resource doesn't exist"
msgstr "La risorsa non esiste"
#: lib/graphql/resolvers/participant.ex:121
#, elixir-format
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr "L'evento ha già raggiunto la sua massima capacità"
#: lib/graphql/resolvers/participant.ex:261
#, elixir-format
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr "Questo token non è valido"
#: lib/graphql/resolvers/todos.ex:165 lib/graphql/resolvers/todos.ex:219
#, elixir-format
#: lib/graphql/resolvers/todos.ex:165 lib/graphql/resolvers/todos.ex:219
msgid "Todo doesn't exist"
msgstr "L'elemento to-do non esiste"
#, elixir-format
#: lib/graphql/resolvers/todos.ex:75 lib/graphql/resolvers/todos.ex:191
#: lib/graphql/resolvers/todos.ex:216
#, elixir-format
msgid "Todo list doesn't exist"
msgstr "la lista non esiste"
#: lib/graphql/resolvers/feed_token.ex:69
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist"
msgstr "Il token non esiste"
#: lib/graphql/resolvers/feed_token.ex:66
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID"
msgstr "Il token non è un UUID valido"
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr "Utente non trovato"
#: lib/graphql/resolvers/person.ex:232
#, elixir-format
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr "Hai già un profilo per questo utente"
#: lib/graphql/resolvers/participant.ex:131
#, elixir-format
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr "Se già un partecipante di questo evento"
#: lib/graphql/resolvers/discussion.ex:197
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr "Non sei membro del gruppo a cui la discussione appartiene"
#: lib/graphql/resolvers/member.ex:86
#, elixir-format
#: lib/graphql/resolvers/member.ex:86
msgid "You are not a member of this group"
msgstr "Non sei un membro di questo gruppo"
#: lib/graphql/resolvers/member.ex:151
#, elixir-format
#: lib/graphql/resolvers/member.ex:151
msgid "You are not a moderator or admin for this group"
msgstr "Non sei un moderatore o amministratore di questo gruppo"
#: lib/graphql/resolvers/comment.ex:51
#, elixir-format
#: lib/graphql/resolvers/comment.ex:51
msgid "You are not allowed to create a comment if not connected"
msgstr "Non è consentito creare un commento se non si è collegati"
#: lib/graphql/resolvers/feed_token.ex:41
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected"
msgstr "Non puoi creare un token di rifornimento senza connessione"
#: lib/graphql/resolvers/comment.ex:110
#, elixir-format
#: lib/graphql/resolvers/comment.ex:110
msgid "You are not allowed to delete a comment if not connected"
msgstr "Non è consentito eliminare un commento se non si è collegati"
#: lib/graphql/resolvers/feed_token.ex:78
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected"
msgstr "Non puoi eliminare un token di rifornimento senza connettersi"
#: lib/graphql/resolvers/comment.ex:73
#, elixir-format
#: lib/graphql/resolvers/comment.ex:73
msgid "You are not allowed to update a comment if not connected"
msgstr "Non è consentito aggiornare un commento se non si è collegati"
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#, elixir-format
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
"Non puoi lasciare l'evento perchè sei l'unico partecipante creatore di eventi"
#: lib/graphql/resolvers/member.ex:155
#, elixir-format
#: lib/graphql/resolvers/member.ex:155
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
"Non puoi impostare te stesso per un ruolo di membro inferiore per questo "
"gruppo perché sei l'unico amministratore"
#: lib/graphql/resolvers/comment.ex:101
#, elixir-format
#: lib/graphql/resolvers/comment.ex:101
msgid "You cannot delete this comment"
msgstr "Non puoi eliminare questo commento"
#: lib/graphql/resolvers/event.ex:275
#, elixir-format
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr "Non puoi eliminare questo evento"
#: lib/graphql/resolvers/member.ex:89
#, elixir-format
#: lib/graphql/resolvers/member.ex:89
msgid "You cannot invite to this group"
msgstr "Non puoi invitare in questo gruppo"
#: lib/graphql/resolvers/feed_token.ex:72
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token"
msgstr "Non hai il permesso di cancellare questo token"
#: lib/graphql/resolvers/admin.ex:52
#, elixir-format
#: lib/graphql/resolvers/admin.ex:52
msgid "You need to be logged-in and a moderator to list action logs"
msgstr "Devi essere connesso e un moderatore per elencare i log delle azioni"
#: lib/graphql/resolvers/report.ex:26
#, elixir-format
#: lib/graphql/resolvers/report.ex:26
msgid "You need to be logged-in and a moderator to list reports"
msgstr "Devi essere connesso e un moderatore per elencare i rapporti"
#: lib/graphql/resolvers/report.ex:101
#, elixir-format
#: lib/graphql/resolvers/report.ex:101
msgid "You need to be logged-in and a moderator to update a report"
msgstr "Devi essere connesso e un moderatore per aggiornare un rapporto"
#: lib/graphql/resolvers/report.ex:41
#, elixir-format
#: lib/graphql/resolvers/report.ex:41
msgid "You need to be logged-in and a moderator to view a report"
msgstr "Devi essere connesso e un moderatore per visualizzare un rapporto"
#: lib/graphql/resolvers/admin.ex:236
#, elixir-format
#: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings"
msgstr ""
"Devi essere connesso e un moderatore per accedere alle opzioni "
"dell'amministratore"
#: lib/graphql/resolvers/admin.ex:221
#, elixir-format
#: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr ""
"Devi essere connesso e un moderatore per accedere alle statistiche del "
"dashboard"
#: lib/graphql/resolvers/admin.ex:260
#, elixir-format
#: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
"Devi essere connesso e un moderatore per salvare le impostazioni "
"dell'amministratore"
#: lib/graphql/resolvers/discussion.ex:75
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr "Devi essere connesso per accedere alle discussioni"
#: lib/graphql/resolvers/resource.ex:93
#, elixir-format
#: lib/graphql/resolvers/resource.ex:93
msgid "You need to be logged-in to access resources"
msgstr "Devi essere connesso per accedere alle risorse"
#: lib/graphql/resolvers/event.ex:210
#, elixir-format
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr "Devi essere connesso per creare eventi"
#: lib/graphql/resolvers/post.ex:139
#, elixir-format
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr "Devi essere connesso per creare dei post"
#: lib/graphql/resolvers/report.ex:74
#, elixir-format
#: lib/graphql/resolvers/report.ex:74
msgid "You need to be logged-in to create reports"
msgstr "Devi essere connesso per creare rapporti"
#: lib/graphql/resolvers/resource.ex:129
#, elixir-format
#: lib/graphql/resolvers/resource.ex:129
msgid "You need to be logged-in to create resources"
msgstr "Devi essere connesso per creare risorse"
#: lib/graphql/resolvers/event.ex:284
#, elixir-format
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr "Devi essere connesso per eliminare un evento"
#: lib/graphql/resolvers/post.ex:209
#, elixir-format
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr "Devi essere connesso per eliminare dei post"
#: lib/graphql/resolvers/resource.ex:187
#, elixir-format
#: lib/graphql/resolvers/resource.ex:187
msgid "You need to be logged-in to delete resources"
msgstr "Devi essere connesso per eliminare risorse"
#: lib/graphql/resolvers/participant.ex:105
#, elixir-format
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr "Devi essere connesso per partecipare a un evento"
#: lib/graphql/resolvers/participant.ex:204
#, elixir-format
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr "Devi essere connesso per lasciare un evento"
#: lib/graphql/resolvers/event.ex:249
#, elixir-format
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr "Devi essere connesso per aggiornare un evento"
#: lib/graphql/resolvers/post.ex:176
#, elixir-format
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr "Devi essere connesso per aggiornare dei post"
#: lib/graphql/resolvers/resource.ex:158
#, elixir-format
#: lib/graphql/resolvers/resource.ex:158
msgid "You need to be logged-in to update resources"
msgstr "Devi essere connesso per aggiornare le risorse"
#: lib/graphql/resolvers/resource.ex:210
#, elixir-format
#: lib/graphql/resolvers/resource.ex:210
msgid "You need to be logged-in to view a resource preview"
msgstr "Devi essere connesso per visualizzare l'anteprima di una risorsa"
#: lib/graphql/resolvers/picture.ex:79
#, elixir-format
msgid "You need to login to upload a picture"
msgstr "Devi essere connesso per caricare un'immagine"
#: lib/graphql/resolvers/resource.ex:121
#, elixir-format
msgid "Parent resource doesn't belong to this group"
msgstr "La risorsa principale non appartiene a questo gruppo"
#: lib/mobilizon/users/user.ex:109
#, elixir-format
#: lib/mobilizon/users/user.ex:109
msgid "The chosen password is too short."
msgstr "La password scelta è troppo corta."
#: lib/mobilizon/users/user.ex:138
#, elixir-format
#: lib/mobilizon/users/user.ex:138
msgid "The registration token is already in use, this looks like an issue on our side."
msgstr ""
"Il token di registrazione è già in uso, questo sembra un problema dalla "
"nostra parte."
#: lib/mobilizon/users/user.ex:104
#, elixir-format
#: lib/mobilizon/users/user.ex:104
msgid "This email is already used."
msgstr "Questa email è già in uso."
#: lib/graphql/error.ex:88
#, elixir-format
#: lib/graphql/error.ex:88
msgid "Post not found"
msgstr "Post non trovato"
#: lib/graphql/error.ex:75
#, elixir-format
#: lib/graphql/error.ex:75
msgid "Invalid arguments passed"
msgstr "Sono stati trasmessi argomenti non validi"
#: lib/graphql/error.ex:81
#, elixir-format
#: lib/graphql/error.ex:81
msgid "Invalid credentials"
msgstr "Credenziali non valide"
#: lib/graphql/error.ex:79
#, elixir-format
#: lib/graphql/error.ex:79
msgid "Reset your password to login"
msgstr "Reimposta la tua password per connetterti"
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
#, elixir-format
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
msgid "Resource not found"
msgstr "Segnalazione non trovata"
#: lib/graphql/error.ex:92
#, elixir-format
#: lib/graphql/error.ex:92
msgid "Something went wrong"
msgstr "Qualcosa è andato storto"
#: lib/graphql/error.ex:74
#, elixir-format
#: lib/graphql/error.ex:74
msgid "Unknown Resource"
msgstr "Risorsa sconosciuta"
#: lib/graphql/error.ex:84
#, elixir-format
#: lib/graphql/error.ex:84
msgid "You don't have permission to do this"
msgstr "Non hai il permesso di farlo"
#: lib/graphql/error.ex:76
#, elixir-format
#: lib/graphql/error.ex:76
msgid "You need to be logged in"
msgstr "Devi essere connesso"
#: lib/graphql/resolvers/member.ex:116
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
msgid "You can't accept this invitation with this profile."
msgstr "Non puoi accettare l'invito con questo profilo."
#: lib/graphql/resolvers/member.ex:134
#, elixir-format
#: lib/graphql/resolvers/member.ex:134
msgid "You can't reject this invitation with this profile."
msgstr "Non puoi rifiutare l'invito con questo profilo."
#: lib/graphql/resolvers/picture.ex:71
#, elixir-format
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr "Il file non ha un tipo MIME consentito."
#: lib/graphql/resolvers/group.ex:167
#, elixir-format
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr "Il profilo non è amministratore del gruppo"
#: lib/graphql/resolvers/event.ex:238
#, elixir-format
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr "Non puoi modificare questo evento."
#: lib/graphql/resolvers/event.ex:241
#, elixir-format
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr "Non puo iattribuire questo evento a questo profilo."
#: lib/graphql/resolvers/member.ex:137
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
msgid "This invitation doesn't exist."
msgstr "Questo invito non esiste."
#: lib/graphql/resolvers/member.ex:179
#, elixir-format
#: lib/graphql/resolvers/member.ex:179
msgid "This member already has been rejected."
msgstr "Questo memebro è già stato rifiutato."
#: lib/graphql/resolvers/member.ex:186
#, elixir-format
#: lib/graphql/resolvers/member.ex:186
msgid "You don't have the right to remove this member."
msgstr "Non hai il diritto di rimuovere questo membro."
#: lib/mobilizon/actors/actor.ex:344
#, elixir-format
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr "Questo nome utente è già in uso."
#: lib/graphql/resolvers/discussion.ex:72
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
"Devi fornire un ID o la stringa utente (ad es. <em>utente@mobilizon.sm</em>) "
"per accedere ad una discussione"
#: lib/graphql/resolvers/event.ex:199
#, elixir-format
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr "Il profilo dell'organizzatore non è di proprietà dell'utente"
#: lib/graphql/resolvers/participant.ex:90
#, elixir-format
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr "L'ID profilo fornito non è quello del profilo anonimo"
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

View File

@ -19,11 +19,6 @@ msgstr ""
msgid "If you didn't request this, please ignore this email. Your password won't change until you access the link below and create a new one."
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:170
msgid "Feed for %{email} on Mobilizon"
msgstr ""
#, elixir-format
#: lib/web/templates/email/report.html.eex:74
msgid "%{title} by %{creator}"
@ -144,7 +139,7 @@ msgid "Warning"
msgstr ""
#, elixir-format
#: lib/web/email/participation.ex:134
#: lib/web/email/participation.ex:135
msgid "Confirm your participation to event %{title}"
msgstr ""
@ -327,7 +322,7 @@ msgid "Mobilizon on %{instance}: email changed"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:46
#: lib/web/email/notification.ex:47
msgid "One event planned today"
msgid_plural "%{nb_events} events planned today"
msgstr[0] ""
@ -378,18 +373,18 @@ msgid "View the event on: %{link}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:32
#: lib/web/email/group.ex:33
msgid "You have been invited by %{inviter} to join group %{group}"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:70
#: lib/web/email/notification.ex:71
msgid "One event planned this week"
msgid_plural "%{nb_events} events planned this week"
msgstr[0] ""
#, elixir-format
#: lib/web/email/notification.ex:92
#: lib/web/email/notification.ex:93
msgid "One participation request for event %{title} to process"
msgid_plural "%{number_participation_requests} participation requests for event %{title} to process"
msgstr[0] ""
@ -1045,7 +1040,7 @@ msgid "So long, and thanks for the fish!"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:62
#: lib/web/email/group.ex:63
msgid "You have been removed from group %{group}"
msgstr ""
@ -1101,12 +1096,12 @@ msgid "Your instance's moderation team has decided to suspend %{group_name} (%{g
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:135
#: lib/web/email/group.ex:136
msgid "The group %{group} has been deleted on %{instance}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:96
#: lib/web/email/group.ex:97
msgid "The group %{group} has been suspended on %{instance}"
msgstr ""
@ -1266,12 +1261,12 @@ msgid "You have now confirmed your participation. Update your calendar, because
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:91
#: lib/mobilizon/posts/post.ex:94
msgid "A text is required for the post"
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:90
#: lib/mobilizon/posts/post.ex:93
msgid "A title is required for the post"
msgstr ""
@ -1363,3 +1358,23 @@ msgstr ""
#: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon."
msgstr ""
#, elixir-format
#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60
msgid "%{name}'s feed"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:77
msgid "%{actor}'s private events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:72
msgid "%{actor}'s public events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:203
msgid "Feed for %{email} on %{instance}"
msgstr ""

View File

@ -86,12 +86,12 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:202
#: lib/graphql/resolvers/group.ex:199
msgid "Current profile is not an administrator of the selected group"
msgstr ""
@ -101,13 +101,13 @@ msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:66
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr ""
@ -117,7 +117,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:258
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr ""
@ -133,16 +133,15 @@ msgid "No user to validate with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr ""
@ -208,22 +207,22 @@ msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:232
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:265
#: lib/graphql/resolvers/group.ex:262
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:94
#: lib/graphql/resolvers/group.ex:91
msgid "You may not list groups unless moderator."
msgstr ""
@ -238,7 +237,7 @@ msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:207
#: lib/graphql/resolvers/group.ex:204
msgid "You need to be logged-in to delete a group"
msgstr ""
@ -248,25 +247,20 @@ msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:237
#: lib/graphql/resolvers/group.ex:234
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:270
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:172
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token"
@ -318,22 +312,22 @@ msgid "Profile already suspended"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:93
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:184
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:181
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr ""
@ -343,7 +337,7 @@ msgid "Comment is already deleted"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr ""
@ -358,29 +352,29 @@ msgid "Error while updating report"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:128
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:100
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:193
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr ""
@ -395,14 +389,14 @@ msgid "No such feed token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:238
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr ""
@ -412,22 +406,17 @@ msgid "Person with ID %{id} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:50
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:41
msgid "Picture with ID %{id} was not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr ""
@ -442,8 +431,8 @@ msgid "Profile is already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
@ -451,12 +440,12 @@ msgid "Profile is not member of group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr ""
@ -471,12 +460,12 @@ msgid "Resource doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:121
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:261
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr ""
@ -502,22 +491,22 @@ msgid "Token is not a valid UUID"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:232
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:131
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:197
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr ""
@ -557,8 +546,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
@ -573,7 +562,7 @@ msgid "You cannot delete this comment"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:275
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr ""
@ -623,7 +612,7 @@ msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:75
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr ""
@ -633,12 +622,12 @@ msgid "You need to be logged-in to access resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:210
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:139
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr ""
@ -653,12 +642,12 @@ msgid "You need to be logged-in to create resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:284
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:209
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr ""
@ -668,22 +657,22 @@ msgid "You need to be logged-in to delete resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:105
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:204
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:249
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:176
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr ""
@ -697,11 +686,6 @@ msgstr ""
msgid "You need to be logged-in to view a resource preview"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:79
msgid "You need to login to upload a picture"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group"
@ -778,22 +762,22 @@ msgid "You can't reject this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:71
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:167
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:241
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr ""
@ -813,21 +797,27 @@ msgid "You don't have the right to remove this member."
msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:72
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:199
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:90
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

View File

@ -22,11 +22,6 @@ msgstr ""
"niet veranderen tot u op onderstaande link klikt en een nieuw wachtwoord "
"instelt."
#, elixir-format
#: lib/service/export/feed.ex:170
msgid "Feed for %{email} on Mobilizon"
msgstr "Feed voor %{email} op Mobilizon"
#, elixir-format
#: lib/web/templates/email/report.html.eex:74
msgid "%{title} by %{creator}"
@ -153,7 +148,7 @@ msgid "Warning"
msgstr "Waarschuwing"
#, elixir-format
#: lib/web/email/participation.ex:134
#: lib/web/email/participation.ex:135
msgid "Confirm your participation to event %{title}"
msgstr ""
@ -336,7 +331,7 @@ msgid "Mobilizon on %{instance}: email changed"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:46
#: lib/web/email/notification.ex:47
msgid "One event planned today"
msgid_plural "%{nb_events} events planned today"
msgstr[0] ""
@ -389,19 +384,19 @@ msgid "View the event on: %{link}"
msgstr "Bekijk het bijgewerkte evenement op: %{link}"
#, elixir-format
#: lib/web/email/group.ex:32
#: lib/web/email/group.ex:33
msgid "You have been invited by %{inviter} to join group %{group}"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:70
#: lib/web/email/notification.ex:71
msgid "One event planned this week"
msgid_plural "%{nb_events} events planned this week"
msgstr[0] ""
msgstr[1] ""
#, elixir-format
#: lib/web/email/notification.ex:92
#: lib/web/email/notification.ex:93
msgid "One participation request for event %{title} to process"
msgid_plural "%{number_participation_requests} participation requests for event %{title} to process"
msgstr[0] ""
@ -1069,7 +1064,7 @@ msgid "So long, and thanks for the fish!"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:62
#: lib/web/email/group.ex:63
msgid "You have been removed from group %{group}"
msgstr ""
@ -1125,12 +1120,12 @@ msgid "Your instance's moderation team has decided to suspend %{group_name} (%{g
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:135
#: lib/web/email/group.ex:136
msgid "The group %{group} has been deleted on %{instance}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:96
#: lib/web/email/group.ex:97
msgid "The group %{group} has been suspended on %{instance}"
msgstr ""
@ -1291,12 +1286,12 @@ msgid "You have now confirmed your participation. Update your calendar, because
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:91
#: lib/mobilizon/posts/post.ex:94
msgid "A text is required for the post"
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:90
#: lib/mobilizon/posts/post.ex:93
msgid "A title is required for the post"
msgstr ""
@ -1388,3 +1383,23 @@ msgstr ""
#: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon."
msgstr "Dit is een demosite om de bètaversie van Mobilizon te testen."
#, elixir-format
#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60
msgid "%{name}'s feed"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:77
msgid "%{actor}'s private events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:72
msgid "%{actor}'s public events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:203
msgid "Feed for %{email} on %{instance}"
msgstr ""

View File

@ -92,12 +92,12 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:202
#: lib/graphql/resolvers/group.ex:199
msgid "Current profile is not an administrator of the selected group"
msgstr ""
@ -107,13 +107,13 @@ msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:66
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr ""
@ -123,7 +123,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:258
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr ""
@ -139,16 +139,15 @@ msgid "No user to validate with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr ""
@ -214,22 +213,22 @@ msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:232
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:265
#: lib/graphql/resolvers/group.ex:262
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:94
#: lib/graphql/resolvers/group.ex:91
msgid "You may not list groups unless moderator."
msgstr ""
@ -244,7 +243,7 @@ msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:207
#: lib/graphql/resolvers/group.ex:204
msgid "You need to be logged-in to delete a group"
msgstr ""
@ -254,25 +253,20 @@ msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:237
#: lib/graphql/resolvers/group.ex:234
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:270
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:172
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token"
@ -324,22 +318,22 @@ msgid "Profile already suspended"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:93
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:184
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:181
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr ""
@ -349,7 +343,7 @@ msgid "Comment is already deleted"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr ""
@ -364,29 +358,29 @@ msgid "Error while updating report"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:128
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:100
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:193
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr ""
@ -401,14 +395,14 @@ msgid "No such feed token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:238
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr ""
@ -418,22 +412,17 @@ msgid "Person with ID %{id} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:50
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:41
msgid "Picture with ID %{id} was not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr ""
@ -448,8 +437,8 @@ msgid "Profile is already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
@ -457,12 +446,12 @@ msgid "Profile is not member of group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr ""
@ -477,12 +466,12 @@ msgid "Resource doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:121
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:261
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr ""
@ -508,22 +497,22 @@ msgid "Token is not a valid UUID"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:232
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:131
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:197
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr ""
@ -563,8 +552,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
@ -579,7 +568,7 @@ msgid "You cannot delete this comment"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:275
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr ""
@ -629,7 +618,7 @@ msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:75
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr ""
@ -639,12 +628,12 @@ msgid "You need to be logged-in to access resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:210
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:139
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr ""
@ -659,12 +648,12 @@ msgid "You need to be logged-in to create resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:284
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:209
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr ""
@ -674,22 +663,22 @@ msgid "You need to be logged-in to delete resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:105
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:204
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:249
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:176
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr ""
@ -703,11 +692,6 @@ msgstr ""
msgid "You need to be logged-in to view a resource preview"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:79
msgid "You need to login to upload a picture"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group"
@ -784,22 +768,22 @@ msgid "You can't reject this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:71
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:167
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:241
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr ""
@ -819,21 +803,27 @@ msgid "You don't have the right to remove this member."
msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:72
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:199
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:90
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

View File

@ -21,11 +21,6 @@ msgstr ""
"Viss du ikkje ba om dette, kan du sjå bort frå denne eposten. Passordet blir "
"ikkje endra før du klikkar på lenka under og lagar eit nytt."
#, elixir-format
#: lib/service/export/feed.ex:170
msgid "Feed for %{email} on Mobilizon"
msgstr "Kjelde for %{email} på Mobilizon"
#, elixir-format
#: lib/web/templates/email/report.html.eex:74
msgid "%{title} by %{creator}"
@ -153,7 +148,7 @@ msgid "Warning"
msgstr "Åtvaring"
#, elixir-format
#: lib/web/email/participation.ex:134
#: lib/web/email/participation.ex:135
msgid "Confirm your participation to event %{title}"
msgstr "Stadfest at du vil delta på hendinga %{title}"
@ -362,7 +357,7 @@ msgid "Mobilizon on %{instance}: email changed"
msgstr "Mobilizon på %{instance}: epostadressa er endra"
#, elixir-format
#: lib/web/email/notification.ex:46
#: lib/web/email/notification.ex:47
msgid "One event planned today"
msgid_plural "%{nb_events} events planned today"
msgstr[0] "Ei planlagd hending i dag"
@ -415,19 +410,19 @@ msgid "View the event on: %{link}"
msgstr "Sjå hendinga på: %{link}"
#, elixir-format
#: lib/web/email/group.ex:32
#: lib/web/email/group.ex:33
msgid "You have been invited by %{inviter} to join group %{group}"
msgstr "%{inviter} har invitert deg til å bli med i gruppa %{group}"
#, elixir-format
#: lib/web/email/notification.ex:70
#: lib/web/email/notification.ex:71
msgid "One event planned this week"
msgid_plural "%{nb_events} events planned this week"
msgstr[0] "Ei planlagd hending denne veka"
msgstr[1] "%{nb_events} planlagde hendingar denne veka"
#, elixir-format
#: lib/web/email/notification.ex:92
#: lib/web/email/notification.ex:93
msgid "One participation request for event %{title} to process"
msgid_plural "%{number_participation_requests} participation requests for event %{title} to process"
msgstr[0] "Du har ein førespurnad om å delta på %{title} å handtera"
@ -1241,7 +1236,7 @@ msgid "So long, and thanks for the fish!"
msgstr "Ha det så lenge, og takk for all fisken!"
#, elixir-format
#: lib/web/email/group.ex:62
#: lib/web/email/group.ex:63
msgid "You have been removed from group %{group}"
msgstr "Du er fjerna frå gruppa %{group}"
@ -1311,12 +1306,12 @@ msgstr ""
"(%{group_address}). Du er ikkje lenger medlem av gruppa."
#, elixir-format
#: lib/web/email/group.ex:135
#: lib/web/email/group.ex:136
msgid "The group %{group} has been deleted on %{instance}"
msgstr "Gruppa %{group} på %{instance} er sletta"
#, elixir-format
#: lib/web/email/group.ex:96
#: lib/web/email/group.ex:97
msgid "The group %{group} has been suspended on %{instance}"
msgstr "Gruppa %{group} på %{instance} er sperra"
@ -1554,12 +1549,12 @@ msgstr ""
"står på gjestelista no!"
#, elixir-format
#: lib/mobilizon/posts/post.ex:91
#: lib/mobilizon/posts/post.ex:94
msgid "A text is required for the post"
msgstr "Du treng tekst i innlegget"
#, elixir-format
#: lib/mobilizon/posts/post.ex:90
#: lib/mobilizon/posts/post.ex:93
msgid "A title is required for the post"
msgstr "Du treng ein tittel på innlegget"
@ -1661,3 +1656,23 @@ msgstr "Orsak, det skjedde noko feil hjå oss."
#: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon."
msgstr "Dette er ei demoside for å prøva ut Mobilizon."
#, elixir-format
#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60
msgid "%{name}'s feed"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:77
msgid "%{actor}'s private events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:72
msgid "%{actor}'s public events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:203
msgid "Feed for %{email} on %{instance}"
msgstr ""

View File

@ -109,769 +109,759 @@ msgstr "må vera større enn eller lik %{number}"
msgid "must be equal to %{number}"
msgstr "må vera lik %{number}"
#: lib/graphql/resolvers/user.ex:103
#, elixir-format
#: lib/graphql/resolvers/user.ex:103
msgid "Cannot refresh the token"
msgstr "Kan ikkje fornya teiknet"
#: lib/graphql/resolvers/group.ex:198
#, elixir-format
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr "Denne brukaren er ikkje medlem av gruppa"
#: lib/graphql/resolvers/group.ex:202
#, elixir-format
#: lib/graphql/resolvers/group.ex:199
msgid "Current profile is not an administrator of the selected group"
msgstr "Denne brukaren er ikkje styrar av gruppa"
#: lib/graphql/resolvers/user.ex:512
#, elixir-format
#: lib/graphql/resolvers/user.ex:512
msgid "Error while saving user settings"
msgstr "Greidde ikkje lagra brukarinnstillingane"
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr "Fann ikkje gruppa"
#: lib/graphql/resolvers/group.ex:66
#, elixir-format
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr "Fann ikkje gruppa med ID %{id}"
#: lib/graphql/resolvers/user.ex:83
#, elixir-format
#: lib/graphql/resolvers/user.ex:83
msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "Greier ikkje å logga inn. Epostadressa eller passordet ditt er feil."
#: lib/graphql/resolvers/group.ex:258
#, elixir-format
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr "Fann ikkje medlemen"
#, elixir-format
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
#: lib/graphql/resolvers/user.ex:417
#, elixir-format
msgid "No profile found for the moderator user"
msgstr "Fann ingen profil for moderator-brukaren"
#: lib/graphql/resolvers/user.ex:195
#, elixir-format
#: lib/graphql/resolvers/user.ex:195
msgid "No user to validate with this email was found"
msgstr "Fann ingen brukar med denne eposten å godkjenna"
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#, elixir-format
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr "Fann ingen brukar med denne eposten"
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr "Ingen godkjent brukar eig denne profilen"
#: lib/graphql/resolvers/user.ex:125
#, elixir-format
#: lib/graphql/resolvers/user.ex:125
msgid "Registrations are not open"
msgstr "Det er ikkje opna for å registrera seg"
#: lib/graphql/resolvers/user.ex:330
#, elixir-format
#: lib/graphql/resolvers/user.ex:330
msgid "The current password is invalid"
msgstr "Dette passordet er ugyldig"
#: lib/graphql/resolvers/user.ex:382
#, elixir-format
#: lib/graphql/resolvers/user.ex:382
msgid "The new email doesn't seem to be valid"
msgstr "Den nye epostadressa ser ut til å vera feil"
#: lib/graphql/resolvers/user.ex:379
#, elixir-format
#: lib/graphql/resolvers/user.ex:379
msgid "The new email must be different"
msgstr "Den nye epostadressa må vera annleis"
#: lib/graphql/resolvers/user.ex:333
#, elixir-format
#: lib/graphql/resolvers/user.ex:333
msgid "The new password must be different"
msgstr "Det nye passordet må vera annleis"
#, elixir-format
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
#: lib/graphql/resolvers/user.ex:442
#, elixir-format
msgid "The password provided is invalid"
msgstr "Dette passordet er ugyldig"
#: lib/graphql/resolvers/user.ex:337
#, elixir-format
#: lib/graphql/resolvers/user.ex:337
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr "Dette passordet er for kort. Passord må ha minst 6 teikn."
#: lib/graphql/resolvers/user.ex:215
#, elixir-format
#: lib/graphql/resolvers/user.ex:215
msgid "This user can't reset their password"
msgstr "Denne brukaren kan ikkje nullstilla passordet sitt"
#: lib/graphql/resolvers/user.ex:79
#, elixir-format
#: lib/graphql/resolvers/user.ex:79
msgid "This user has been disabled"
msgstr "Denne brukaren er avskrudd"
#: lib/graphql/resolvers/user.ex:179
#, elixir-format
#: lib/graphql/resolvers/user.ex:179
msgid "Unable to validate user"
msgstr "Greier ikkje godkjenna brukaren"
#: lib/graphql/resolvers/user.ex:420
#, elixir-format
#: lib/graphql/resolvers/user.ex:420
msgid "User already disabled"
msgstr "Brukaren er allereie inaktiv"
#: lib/graphql/resolvers/user.ex:487
#, elixir-format
#: lib/graphql/resolvers/user.ex:487
msgid "User requested is not logged-in"
msgstr "Den førespurte brukaren er ikkje innlogga"
#: lib/graphql/resolvers/group.ex:232
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr "Du er allereie medlem av denne gruppa"
#: lib/graphql/resolvers/group.ex:265
#, elixir-format
#: lib/graphql/resolvers/group.ex:262
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"
#: lib/graphql/resolvers/group.ex:229
#, elixir-format
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr "Du kan ikkje bli med i denne gruppa"
#: lib/graphql/resolvers/group.ex:94
#, elixir-format
#: lib/graphql/resolvers/group.ex:91
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:387
#, elixir-format
#: lib/graphql/resolvers/user.ex:387
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:345
#, elixir-format
#: lib/graphql/resolvers/user.ex:345
msgid "You need to be logged-in to change your password"
msgstr "Du må vera innlogga for å endra passordet ditt"
#: lib/graphql/resolvers/group.ex:207
#, elixir-format
#: lib/graphql/resolvers/group.ex:204
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:447
#, elixir-format
#: lib/graphql/resolvers/user.ex:447
msgid "You need to be logged-in to delete your account"
msgstr "Du må vera innlogga for å sletta kontoen din"
#: lib/graphql/resolvers/group.ex:237
#, elixir-format
#: lib/graphql/resolvers/group.ex:234
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:270
#, elixir-format
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr "Du må vera innlogga for å forlata ei gruppe"
#: lib/graphql/resolvers/group.ex:172
#, elixir-format
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr "Du må vera innlogga for å oppdatera ei gruppe"
#: lib/graphql/resolvers/user.ex:58
#, elixir-format
msgid "You need to have admin access to list users"
msgstr "Du må ha administratorløyve for å lista opp brukarar"
#: lib/graphql/resolvers/user.ex:108
#, elixir-format
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:198 lib/graphql/resolvers/user.ex:222
#, elixir-format
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
msgid "You requested again a confirmation email too soon"
msgstr "Du ba om ny stadfestingsepost for snøgt"
#: lib/graphql/resolvers/user.ex:128
#, elixir-format
#: lib/graphql/resolvers/user.ex:128
msgid "Your email is not on the allowlist"
msgstr "Epostadressa di er ikkje på lista over godkjende adresser"
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
#, elixir-format
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
msgid "Error while performing background task"
msgstr "Greidde ikkje utføra ei bakgrunnsoppgåve"
#: lib/graphql/resolvers/actor.ex:27
#, elixir-format
#: lib/graphql/resolvers/actor.ex:27
msgid "No profile found with this ID"
msgstr "Fann ingen profil med denne ID-en"
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
#, elixir-format
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
msgid "No remote profile found with this ID"
msgstr "Fann ingen fjern profil med denne ID-en"
#: lib/graphql/resolvers/actor.ex:69
#, elixir-format
#: lib/graphql/resolvers/actor.ex:69
msgid "Only moderators and administrators can suspend a profile"
msgstr "Berre moderatorar og styrarar kan sperra ein profil"
#: lib/graphql/resolvers/actor.ex:99
#, elixir-format
#: lib/graphql/resolvers/actor.ex:99
msgid "Only moderators and administrators can unsuspend a profile"
msgstr "Berre moderatorar og styrarar kan oppheva sperring av profilar"
#: lib/graphql/resolvers/actor.ex:24
#, elixir-format
#: lib/graphql/resolvers/actor.ex:24
msgid "Only remote profiles may be refreshed"
msgstr "Du kan berre lasta fjerne profilar på nytt"
#: lib/graphql/resolvers/actor.ex:61
#, elixir-format
#: lib/graphql/resolvers/actor.ex:61
msgid "Profile already suspended"
msgstr "Profilen er allereie sperra"
#: lib/graphql/resolvers/participant.ex:93
#, elixir-format
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr "Nettstaden din krev ei gyldig epostadresse"
#: lib/graphql/resolvers/participant.ex:87
#, elixir-format
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr "Det er ikkje høve til å vera med anonymt"
#: lib/graphql/resolvers/person.ex:184
#, elixir-format
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr "Kan ikkje fjerna den siste styraren i gruppa"
#: lib/graphql/resolvers/person.ex:181
#, elixir-format
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr "Kan ikkje fjerna den siste identiteten til ein brukar"
#: lib/graphql/resolvers/comment.ex:105
#, elixir-format
#: lib/graphql/resolvers/comment.ex:105
msgid "Comment is already deleted"
msgstr "Kommentaren er allereie sletta"
#: lib/graphql/resolvers/discussion.ex:61
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr "Fann ikkje ordskiftet"
#: lib/graphql/resolvers/report.ex:58 lib/graphql/resolvers/report.ex:77
#, elixir-format
#: lib/graphql/resolvers/report.ex:58 lib/graphql/resolvers/report.ex:77
msgid "Error while saving report"
msgstr "Greidde ikkje lagra rapporten"
#: lib/graphql/resolvers/report.ex:96
#, elixir-format
#: lib/graphql/resolvers/report.ex:96
msgid "Error while updating report"
msgstr "Greidde ikkje oppdatera rapporten"
#: lib/graphql/resolvers/participant.ex:128
#, elixir-format
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr "Fann ikkje ID-en til hendinga"
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr "Fann ikkje hendinga"
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#, elixir-format
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr "Det finst inga hending med ID-en %{id}"
#: lib/graphql/resolvers/participant.ex:100
#, elixir-format
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr "Intern feil"
#: lib/graphql/resolvers/discussion.ex:193
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr "Ikkje noko ordskifte med ID-en %{id}"
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:168
#, elixir-format
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:168
msgid "No profile found for user"
msgstr "Fann ingen profil for brukaren"
#: lib/graphql/resolvers/feed_token.ex:63
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token"
msgstr "Det finst ikkje noko slikt teikn for kjelda"
#: lib/graphql/resolvers/participant.ex:238
#, elixir-format
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr "Deltakaren har rolla %{role} allereie"
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#, elixir-format
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr "Fann ikkje deltakaren"
#: lib/graphql/resolvers/person.ex:29
#, elixir-format
#: lib/graphql/resolvers/person.ex:29
msgid "Person with ID %{id} not found"
msgstr "Fann ingen person med ID-en %{id}"
#: lib/graphql/resolvers/person.ex:50
#, elixir-format
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr "Fann ingen person med brukarnamnet %{username}"
#: lib/graphql/resolvers/picture.ex:41
#, elixir-format
msgid "Picture with ID %{id} was not found"
msgstr "Fann ikkje biletet med ID-en %{id}"
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#, elixir-format
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr "Innleggs-IDen er ugyldig"
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#, elixir-format
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr "Innlegget finst ikkje"
#: lib/graphql/resolvers/member.ex:83
#, elixir-format
#: lib/graphql/resolvers/member.ex:83
msgid "Profile invited doesn't exist"
msgstr "Den inviterte profilen finst ikkje"
#: lib/graphql/resolvers/member.ex:92 lib/graphql/resolvers/member.ex:96
#, elixir-format
#: lib/graphql/resolvers/member.ex:92 lib/graphql/resolvers/member.ex:96
msgid "Profile is already a member of this group"
msgstr "Profilen er allereie medlem i denne gruppa"
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#, elixir-format
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
#, elixir-format
msgid "Profile is not member of group"
msgstr "Profilen er ikkje medlem i gruppa"
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#, elixir-format
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr "Fann ikkje profilen"
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr "Moderatorprofilen har ikkje tilgang til denne hendinga"
#: lib/graphql/resolvers/report.ex:36
#, elixir-format
#: lib/graphql/resolvers/report.ex:36
msgid "Report not found"
msgstr "Fann ikkje rapporten"
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
#, elixir-format
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
msgid "Resource doesn't exist"
msgstr "Ressursen finst ikkje"
#: lib/graphql/resolvers/participant.ex:121
#, elixir-format
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr "Hendinga er fullteikna"
#: lib/graphql/resolvers/participant.ex:261
#, elixir-format
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr "Teiknet er ugyldig"
#: lib/graphql/resolvers/todos.ex:165 lib/graphql/resolvers/todos.ex:219
#, elixir-format
#: lib/graphql/resolvers/todos.ex:165 lib/graphql/resolvers/todos.ex:219
msgid "Todo doesn't exist"
msgstr "Gjeremålet finst ikkje"
#, elixir-format
#: lib/graphql/resolvers/todos.ex:75 lib/graphql/resolvers/todos.ex:191
#: lib/graphql/resolvers/todos.ex:216
#, elixir-format
msgid "Todo list doesn't exist"
msgstr "Gjeremålslista finst ikkje"
#: lib/graphql/resolvers/feed_token.ex:69
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist"
msgstr "Teiknet finst ikkje"
#: lib/graphql/resolvers/feed_token.ex:66
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID"
msgstr "Teiknet er ikkje ein gyldig UUID"
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr "Fann ikkje brukaren"
#: lib/graphql/resolvers/person.ex:232
#, elixir-format
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr "Du har allereie ein profil for denne brukaren"
#: lib/graphql/resolvers/participant.ex:131
#, elixir-format
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr "Du er allereie deltakar på denne hendinga"
#: lib/graphql/resolvers/discussion.ex:197
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr "Du er ikkje medlem i den gruppa der dei diskuterer dette"
#: lib/graphql/resolvers/member.ex:86
#, elixir-format
#: lib/graphql/resolvers/member.ex:86
msgid "You are not a member of this group"
msgstr "Du er ikkje medlem i denne gruppa"
#: lib/graphql/resolvers/member.ex:151
#, elixir-format
#: lib/graphql/resolvers/member.ex:151
msgid "You are not a moderator or admin for this group"
msgstr "Du er ikkje styrar eller administrator for denne gruppa"
#: lib/graphql/resolvers/comment.ex:51
#, elixir-format
#: lib/graphql/resolvers/comment.ex:51
msgid "You are not allowed to create a comment if not connected"
msgstr "Du har ikkje løyve til å skriva kommentarar viss du ikkje er kopla til"
#: lib/graphql/resolvers/feed_token.ex:41
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected"
msgstr "Du har ikkje løyve til å laga eit straumteikn når du ikkje er kopla til"
#: lib/graphql/resolvers/comment.ex:110
#, elixir-format
#: lib/graphql/resolvers/comment.ex:110
msgid "You are not allowed to delete a comment if not connected"
msgstr "Du har ikkje løyve til å sletta ein kommentar når du ikkje er kopla til"
#: lib/graphql/resolvers/feed_token.ex:78
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected"
msgstr "Du har ikkje løyve til å sletta straumteikn når du ikkje er kopla til"
#: lib/graphql/resolvers/comment.ex:73
#, elixir-format
#: lib/graphql/resolvers/comment.ex:73
msgid "You are not allowed to update a comment if not connected"
msgstr ""
"Du har ikkje løyve til å oppdatera kommentarar når du ikkje er kopla til"
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#, elixir-format
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
"Du kan ikkje forlata hendinga, fordi du er den einaste deltakaren som har "
"oppretta hendinga"
#: lib/graphql/resolvers/member.ex:155
#, elixir-format
#: lib/graphql/resolvers/member.ex:155
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
"Du kan ikkje gje deg sjølv ei deltakarrolle i denne gruppa, fordi du er den "
"einaste administratoren"
#: lib/graphql/resolvers/comment.ex:101
#, elixir-format
#: lib/graphql/resolvers/comment.ex:101
msgid "You cannot delete this comment"
msgstr "Du kan ikkje sletta denne kommentaren"
#: lib/graphql/resolvers/event.ex:275
#, elixir-format
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr "Du kan ikkje sletta denne hendinga"
#: lib/graphql/resolvers/member.ex:89
#, elixir-format
#: lib/graphql/resolvers/member.ex:89
msgid "You cannot invite to this group"
msgstr "Du kan ikkje invitera til denne gruppa"
#: lib/graphql/resolvers/feed_token.ex:72
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token"
msgstr "Du har ikkje løyve til å sletta dette teiknet"
#: lib/graphql/resolvers/admin.ex:52
#, elixir-format
#: lib/graphql/resolvers/admin.ex:52
msgid "You need to be logged-in and a moderator to list action logs"
msgstr ""
"Du må vera innlogga og ha ei moderatorrolle for å lista opp hendingsloggar"
#: lib/graphql/resolvers/report.ex:26
#, elixir-format
#: lib/graphql/resolvers/report.ex:26
msgid "You need to be logged-in and a moderator to list reports"
msgstr "Du må vera innlogga og ha ei moderatorrolle for å lista opp rapportar"
#: lib/graphql/resolvers/report.ex:101
#, elixir-format
#: lib/graphql/resolvers/report.ex:101
msgid "You need to be logged-in and a moderator to update a report"
msgstr "Du må vera innlogga og ha ei moderatorrolle for å oppdatera ein rapport"
#: lib/graphql/resolvers/report.ex:41
#, elixir-format
#: lib/graphql/resolvers/report.ex:41
msgid "You need to be logged-in and a moderator to view a report"
msgstr "Du må vera innlogga og ha ei moderatorrolle for å lesa rapportar"
#: lib/graphql/resolvers/admin.ex:236
#, elixir-format
#: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings"
msgstr ""
"Du må vera innlogga og ha ei administratorrolle for å sjå admin-"
"innstillingane"
#: lib/graphql/resolvers/admin.ex:221
#, elixir-format
#: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr ""
"Du må vera innlogga og ha ei administratorrolle for å sjå statistikk på "
"styringspanelet"
#: lib/graphql/resolvers/admin.ex:260
#, elixir-format
#: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
"Du må vera innlogga og ha ei administratorrolle for å lagra admin-"
"innstillingar"
#: lib/graphql/resolvers/discussion.ex:75
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr "Du må vera innlogga for å sjå ordskifte"
#: lib/graphql/resolvers/resource.ex:93
#, elixir-format
#: lib/graphql/resolvers/resource.ex:93
msgid "You need to be logged-in to access resources"
msgstr "Du må vera innlogga for å sjå ressursane"
#: lib/graphql/resolvers/event.ex:210
#, elixir-format
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr "Du må vera innlogga for å laga hendingar"
#: lib/graphql/resolvers/post.ex:139
#, elixir-format
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr "Du må vera innlogga for å skriva innlegg"
#: lib/graphql/resolvers/report.ex:74
#, elixir-format
#: lib/graphql/resolvers/report.ex:74
msgid "You need to be logged-in to create reports"
msgstr "Du må vera innlogga for å rapportera"
#: lib/graphql/resolvers/resource.ex:129
#, elixir-format
#: lib/graphql/resolvers/resource.ex:129
msgid "You need to be logged-in to create resources"
msgstr "Du må vera innlogga for å laga ressursar"
#: lib/graphql/resolvers/event.ex:284
#, elixir-format
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr "Du må vera innlogga for å sletta ei hending"
#: lib/graphql/resolvers/post.ex:209
#, elixir-format
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr "Du må vera innlogga for å sletta innlegg"
#: lib/graphql/resolvers/resource.ex:187
#, elixir-format
#: lib/graphql/resolvers/resource.ex:187
msgid "You need to be logged-in to delete resources"
msgstr "Du må vera innlogga for å sletta ressursar"
#: lib/graphql/resolvers/participant.ex:105
#, elixir-format
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr "Du må vera innlogga for å bli med på ei hending"
#: lib/graphql/resolvers/participant.ex:204
#, elixir-format
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr "Du må vera innlogga for å melda deg av ei hending"
#: lib/graphql/resolvers/event.ex:249
#, elixir-format
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr "Du må vera innlogga for å oppdatera hendingar"
#: lib/graphql/resolvers/post.ex:176
#, elixir-format
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr "Du må vera innlogga for å oppdatera innlegg"
#: lib/graphql/resolvers/resource.ex:158
#, elixir-format
#: lib/graphql/resolvers/resource.ex:158
msgid "You need to be logged-in to update resources"
msgstr "Du må vera innlogga for å oppdatera ressursar"
#: lib/graphql/resolvers/resource.ex:210
#, elixir-format
#: lib/graphql/resolvers/resource.ex:210
msgid "You need to be logged-in to view a resource preview"
msgstr "Du må vera innlogga for å førehandsvisa ressursar"
#: lib/graphql/resolvers/picture.ex:79
#, elixir-format
msgid "You need to login to upload a picture"
msgstr "Du må vera innlogga for å lasta opp bilete"
#: lib/graphql/resolvers/resource.ex:121
#, elixir-format
msgid "Parent resource doesn't belong to this group"
msgstr "Opphavsressursen høyrer ikkje til denne gruppa"
#: lib/mobilizon/users/user.ex:109
#, elixir-format
#: lib/mobilizon/users/user.ex:109
msgid "The chosen password is too short."
msgstr "Dette passordet er for kort."
#: lib/mobilizon/users/user.ex:138
#, elixir-format
#: lib/mobilizon/users/user.ex:138
msgid "The registration token is already in use, this looks like an issue on our side."
msgstr ""
"Registreringsteiknet er allereie i bruk, dette ser ut som ein feil frå vår "
"side."
#: lib/mobilizon/users/user.ex:104
#, elixir-format
#: lib/mobilizon/users/user.ex:104
msgid "This email is already used."
msgstr "Denne eposten er allereie i bruk."
#: lib/graphql/error.ex:88
#, elixir-format
#: lib/graphql/error.ex:88
msgid "Post not found"
msgstr "Fann ikkje innlegget"
#: lib/graphql/error.ex:75
#, elixir-format
#: lib/graphql/error.ex:75
msgid "Invalid arguments passed"
msgstr "Ugyldige argument"
#: lib/graphql/error.ex:81
#, elixir-format
#: lib/graphql/error.ex:81
msgid "Invalid credentials"
msgstr "Ugyldig innlogging"
#: lib/graphql/error.ex:79
#, elixir-format
#: lib/graphql/error.ex:79
msgid "Reset your password to login"
msgstr "Nullstill passordet for å logga inn"
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
#, elixir-format
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
msgid "Resource not found"
msgstr "Fann ikkje ressursen"
#: lib/graphql/error.ex:92
#, elixir-format
#: lib/graphql/error.ex:92
msgid "Something went wrong"
msgstr "Noko gjekk gale"
#: lib/graphql/error.ex:74
#, elixir-format
#: lib/graphql/error.ex:74
msgid "Unknown Resource"
msgstr "Ukjend ressurs"
#: lib/graphql/error.ex:84
#, elixir-format
#: lib/graphql/error.ex:84
msgid "You don't have permission to do this"
msgstr "Du har ikkje løyve til å gjera detet"
#: lib/graphql/error.ex:76
#, elixir-format
#: lib/graphql/error.ex:76
msgid "You need to be logged in"
msgstr "Du må vera innlogga"
#: lib/graphql/resolvers/member.ex:116
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
msgid "You can't accept this invitation with this profile."
msgstr "Du kan ikkje ta imot invitasjonar med denne profilen."
#: lib/graphql/resolvers/member.ex:134
#, elixir-format
#: lib/graphql/resolvers/member.ex:134
msgid "You can't reject this invitation with this profile."
msgstr "Du kan ikkje avslå invitasjonen med denne profilen."
#: lib/graphql/resolvers/picture.ex:71
#, elixir-format
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr "Fila har ingen tillaten MIME-type."
#: lib/graphql/resolvers/group.ex:167
#, elixir-format
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr "Profilen er ikkje administrator for gruppa"
#: lib/graphql/resolvers/event.ex:238
#, elixir-format
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr "Du kan ikkje endra denne hendinga."
#: lib/graphql/resolvers/event.ex:241
#, elixir-format
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr "Du kan ikkje kopla denne hendinga til denne profilen."
#: lib/graphql/resolvers/member.ex:137
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
msgid "This invitation doesn't exist."
msgstr "Invitasjonen finst ikkje."
#: lib/graphql/resolvers/member.ex:179
#, elixir-format
#: lib/graphql/resolvers/member.ex:179
msgid "This member already has been rejected."
msgstr "Denne medlemen har allereie fått avslag."
#: lib/graphql/resolvers/member.ex:186
#, elixir-format
#: lib/graphql/resolvers/member.ex:186
msgid "You don't have the right to remove this member."
msgstr "Du har ikkje løyve til å fjerna denne medlemen."
#: lib/mobilizon/actors/actor.ex:344
#, elixir-format
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr "Dette brukarnamnet er oppteke."
#: lib/graphql/resolvers/discussion.ex:72
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
"Du må gje anten ein ID eller ei stuttadresse for å få tilgang til ordskiftet"
#: lib/graphql/resolvers/event.ex:199
#, elixir-format
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr "Brukaren eig ikkje arrangørprofilen"
#: lib/graphql/resolvers/participant.ex:90
#, elixir-format
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr "Denne profil-IDen er ikkje den anonyme profilen"
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

View File

@ -20,11 +20,6 @@ msgid "If you didn't request this, please ignore this email. Your password won't
msgstr ""
"Savètz pas demandat aquò, podètz ignorar aqueste corrièl. Vòstre senhal cambiarà pas mentre que cliquetz pas lo ligam çai-jos e ne definiscatz un novèl."
#, elixir-format
#: lib/service/export/feed.ex:170
msgid "Feed for %{email} on Mobilizon"
msgstr "Flux per %{email} sus Mobilizon"
#, elixir-format
#: lib/web/templates/email/report.html.eex:74
msgid "%{title} by %{creator}"
@ -145,7 +140,7 @@ msgid "Warning"
msgstr "Avertiment"
#, elixir-format
#: lib/web/email/participation.ex:134
#: lib/web/email/participation.ex:135
msgid "Confirm your participation to event %{title}"
msgstr "Confirmatz vòstra participacion a leveniment %{title}"
@ -359,7 +354,7 @@ msgid "Mobilizon on %{instance}: email changed"
msgstr "Mobilizon sus %{instance}: adreça electronica cambiada"
#, elixir-format
#: lib/web/email/notification.ex:46
#: lib/web/email/notification.ex:47
msgid "One event planned today"
msgid_plural "%{nb_events} events planned today"
msgstr[0] "Un eveniment previst uèi"
@ -412,19 +407,19 @@ msgid "View the event on: %{link}"
msgstr "Veire leveniment actualizat sus : %{link}"
#, elixir-format
#: lib/web/email/group.ex:32
#: lib/web/email/group.ex:33
msgid "You have been invited by %{inviter} to join group %{group}"
msgstr "%{inviter} vos a convidat a rejónher lo grop %{group}"
#, elixir-format
#: lib/web/email/notification.ex:70
#: lib/web/email/notification.ex:71
msgid "One event planned this week"
msgid_plural "%{nb_events} events planned this week"
msgstr[0] "Un eveniment previst aquesta setmana"
msgstr[1] "%{nb_events} eveniments previstes aquesta setmana"
#, elixir-format
#: lib/web/email/notification.ex:92
#: lib/web/email/notification.ex:93
msgid "One participation request for event %{title} to process"
msgid_plural "%{number_participation_requests} participation requests for event %{title} to process"
msgstr[0] "Una demanda de participacion a leveniment %{title} a tractar"
@ -1146,7 +1141,7 @@ msgid "So long, and thanks for the fish!"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:62
#: lib/web/email/group.ex:63
msgid "You have been removed from group %{group}"
msgstr "Vos an tirat del grop %{group}"
@ -1208,12 +1203,12 @@ msgid "Your instance's moderation team has decided to suspend %{group_name} (%{g
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:135
#: lib/web/email/group.ex:136
msgid "The group %{group} has been deleted on %{instance}"
msgstr "Lo grop %{group} foguèt suprimit sus %{instance}"
#, elixir-format
#: lib/web/email/group.ex:96
#: lib/web/email/group.ex:97
msgid "The group %{group} has been suspended on %{instance}"
msgstr "Lo grop %{group} foguèt suspendut sus %{instance}"
@ -1375,12 +1370,12 @@ msgid "You have now confirmed your participation. Update your calendar, because
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:91
#: lib/mobilizon/posts/post.ex:94
msgid "A text is required for the post"
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:90
#: lib/mobilizon/posts/post.ex:93
msgid "A title is required for the post"
msgstr ""
@ -1473,3 +1468,23 @@ msgstr ""
msgid "This is a demonstration site to test Mobilizon."
msgstr ""
"Aquò es un site de demostracion per ensajar la version beta de Mobilizon."
#, elixir-format
#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60
msgid "%{name}'s feed"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:77
msgid "%{actor}'s private events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:72
msgid "%{actor}'s public events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:203
msgid "Feed for %{email} on %{instance}"
msgstr ""

View File

@ -93,759 +93,749 @@ msgstr "deu èsser superior o egal a %{number}"
msgid "must be equal to %{number}"
msgstr "deu èsser egal a %{number}"
#: lib/graphql/resolvers/user.ex:103
#, elixir-format
#: lib/graphql/resolvers/user.ex:103
msgid "Cannot refresh the token"
msgstr "Actualizacion impossibla del geton"
#: lib/graphql/resolvers/group.ex:198
#, elixir-format
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr "Lo perfil actual es pas un membre daqueste grop"
#: lib/graphql/resolvers/group.ex:202
#, elixir-format
#: lib/graphql/resolvers/group.ex:199
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:512
#, elixir-format
#: lib/graphql/resolvers/user.ex:512
msgid "Error while saving user settings"
msgstr "Error en salvagardant los paramètres utilizaire"
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr "Grop pas trobat"
#: lib/graphql/resolvers/group.ex:66
#, elixir-format
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr "Grop amb lID %{id} pas trobat"
#: lib/graphql/resolvers/user.ex:83
#, elixir-format
#: lib/graphql/resolvers/user.ex:83
msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
"Autentificacion impossibla, vòstra adreça electronica o lo vòstre senhal es "
"invalid."
#: lib/graphql/resolvers/group.ex:258
#, elixir-format
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr "Membre pas trobat"
#, elixir-format
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
#: lib/graphql/resolvers/user.ex:417
#, elixir-format
msgid "No profile found for the moderator user"
msgstr "Cap de perfil pas trobat per lutilizaire moderator"
#: lib/graphql/resolvers/user.ex:195
#, elixir-format
#: lib/graphql/resolvers/user.ex:195
msgid "No user to validate with this email was found"
msgstr "Cap dutilizaire de validar amb aqueste email pas trobat"
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#, elixir-format
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr "Degun trobat d'amb aquesta email"
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr "Lo perhiu es pas proprietat del utilizator autenticat"
#: lib/graphql/resolvers/user.ex:125
#, elixir-format
#: lib/graphql/resolvers/user.ex:125
msgid "Registrations are not open"
msgstr "Las inscripciones sèn pas obèrtas"
#: lib/graphql/resolvers/user.ex:330
#, elixir-format
#: lib/graphql/resolvers/user.ex:330
msgid "The current password is invalid"
msgstr "Lo mòt de santa clara actuau es invalid"
#: lib/graphql/resolvers/user.ex:382
#, elixir-format
#: lib/graphql/resolvers/user.ex:382
msgid "The new email doesn't seem to be valid"
msgstr "Lo email nau sèm invalid"
#: lib/graphql/resolvers/user.ex:379
#, elixir-format
#: lib/graphql/resolvers/user.ex:379
msgid "The new email must be different"
msgstr "Lo email nau deb esser different"
#: lib/graphql/resolvers/user.ex:333
#, elixir-format
#: lib/graphql/resolvers/user.ex:333
msgid "The new password must be different"
msgstr "Lo mòt de santa clara nau deb esser different"
#, elixir-format
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
#: lib/graphql/resolvers/user.ex:442
#, elixir-format
msgid "The password provided is invalid"
msgstr "Lo mòt de santa clara aprovedit es invalid"
#: lib/graphql/resolvers/user.ex:337
#, elixir-format
#: lib/graphql/resolvers/user.ex:337
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
"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:215
#, elixir-format
#: lib/graphql/resolvers/user.ex:215
msgid "This user can't reset their password"
msgstr "Aquest utilizator pod pas reinicializar lo sèn mòt de santa clara"
#: lib/graphql/resolvers/user.ex:79
#, elixir-format
#: lib/graphql/resolvers/user.ex:79
msgid "This user has been disabled"
msgstr "Aquest utilizator a essat dasactivat"
#: lib/graphql/resolvers/user.ex:179
#, elixir-format
#: lib/graphql/resolvers/user.ex:179
msgid "Unable to validate user"
msgstr "Es impossible de validar l'utilizator"
#: lib/graphql/resolvers/user.ex:420
#, elixir-format
#: lib/graphql/resolvers/user.ex:420
msgid "User already disabled"
msgstr "Utilizator déjà desactivat"
#: lib/graphql/resolvers/user.ex:487
#, elixir-format
#: lib/graphql/resolvers/user.ex:487
msgid "User requested is not logged-in"
msgstr "L'utilizator demandat es pas conectat"
#: lib/graphql/resolvers/group.ex:232
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr "Essetz déjà membre d'aquest grop"
#: lib/graphql/resolvers/group.ex:265
#, elixir-format
#: lib/graphql/resolvers/group.ex:262
msgid "You can't leave this group because you are the only administrator"
msgstr "Podetz pas quitar aquest grop perque essetz lo sol administrator"
#: lib/graphql/resolvers/group.ex:229
#, elixir-format
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr "Podetz pas rejónher aquest grop"
#: lib/graphql/resolvers/group.ex:94
#, elixir-format
#: lib/graphql/resolvers/group.ex:91
msgid "You may not list groups unless moderator."
msgstr "Podetz listar los grops sonque se essetz moderator."
#: lib/graphql/resolvers/user.ex:387
#, elixir-format
#: lib/graphql/resolvers/user.ex:387
msgid "You need to be logged-in to change your email"
msgstr "Debetz esser conectat per cambiar lo voste email"
#: lib/graphql/resolvers/user.ex:345
#, elixir-format
#: lib/graphql/resolvers/user.ex:345
msgid "You need to be logged-in to change your password"
msgstr "Debetz d'esser conectat per cambiar lo voste mòt de santa clara"
#: lib/graphql/resolvers/group.ex:207
#, elixir-format
#: lib/graphql/resolvers/group.ex:204
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:447
#, elixir-format
#: lib/graphql/resolvers/user.ex:447
msgid "You need to be logged-in to delete your account"
msgstr "Devetz d'esser conectat per suprimir lo voste compte"
#: lib/graphql/resolvers/group.ex:237
#, elixir-format
#: lib/graphql/resolvers/group.ex:234
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:270
#, elixir-format
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr "Devetz d'esser conectat per quitar un grop"
#: lib/graphql/resolvers/group.ex:172
#, elixir-format
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr "Devetz d'esser conectat per metre à jorn un grop"
#: lib/graphql/resolvers/user.ex:58
#, elixir-format
msgid "You need to have admin access to list users"
msgstr "Devetz aver un accès admin per listar los utilizators"
#: lib/graphql/resolvers/user.ex:108
#, elixir-format
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:198 lib/graphql/resolvers/user.ex:222
#, elixir-format
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
msgid "You requested again a confirmation email too soon"
msgstr "Demandatz de nau un email de confirmacion tròp lèu"
#: lib/graphql/resolvers/user.ex:128
#, elixir-format
#: lib/graphql/resolvers/user.ex:128
msgid "Your email is not on the allowlist"
msgstr "Vòstre email es pas en la lista d'autorizacions"
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
#, elixir-format
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
msgid "Error while performing background task"
msgstr "Error mentre que efectuant ua tasca de plan darrèr"
#: lib/graphql/resolvers/actor.ex:27
#, elixir-format
#: lib/graphql/resolvers/actor.ex:27
msgid "No profile found with this ID"
msgstr "Cap de profiu trobat d'amb aquesta ID"
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
#, elixir-format
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
msgid "No remote profile found with this ID"
msgstr "Cap de profiu distant trobat d'amb aquesta ID"
#: lib/graphql/resolvers/actor.ex:69
#, elixir-format
#: lib/graphql/resolvers/actor.ex:69
msgid "Only moderators and administrators can suspend a profile"
msgstr "Sonque moderators e administrators pòden suspendre un profiu"
#: lib/graphql/resolvers/actor.ex:99
#, elixir-format
#: lib/graphql/resolvers/actor.ex:99
msgid "Only moderators and administrators can unsuspend a profile"
msgstr ""
"Sonque moderators e administrators pòden annular la suspension d'un profiu"
#: lib/graphql/resolvers/actor.ex:24
#, elixir-format
#: lib/graphql/resolvers/actor.ex:24
msgid "Only remote profiles may be refreshed"
msgstr "Sonque profius distants pòden esser refrescats"
#: lib/graphql/resolvers/actor.ex:61
#, elixir-format
#: lib/graphql/resolvers/actor.ex:61
msgid "Profile already suspended"
msgstr "Profiu déjà suspendut"
#: lib/graphql/resolvers/participant.ex:93
#, elixir-format
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr "Un email valid es requerit per la vòstra instància"
#: lib/graphql/resolvers/participant.ex:87
#, elixir-format
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr "Ua participacion anonima es pas permetuda"
#: lib/graphql/resolvers/person.ex:184
#, elixir-format
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr "Pòden pas suprimir lo darrièr administrator d'un grop"
#: lib/graphql/resolvers/person.ex:181
#, elixir-format
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr "Pòden pas suprimir la darrièra identitat d'un utilizator"
#: lib/graphql/resolvers/comment.ex:105
#, elixir-format
#: lib/graphql/resolvers/comment.ex:105
msgid "Comment is already deleted"
msgstr "Comentari déjà suprimit"
#: lib/graphql/resolvers/discussion.ex:61
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr "Discussion non trobada"
#: lib/graphql/resolvers/report.ex:58 lib/graphql/resolvers/report.ex:77
#, elixir-format
#: lib/graphql/resolvers/report.ex:58 lib/graphql/resolvers/report.ex:77
msgid "Error while saving report"
msgstr "Error mentre que sauvant lo rapòrt"
#: lib/graphql/resolvers/report.ex:96
#, elixir-format
#: lib/graphql/resolvers/report.ex:96
msgid "Error while updating report"
msgstr "Error mentre la mesa a jorn dèu rapòrt"
#: lib/graphql/resolvers/participant.ex:128
#, elixir-format
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr "ID d'eveniment non trobat"
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr "Eveniment non trobat"
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#, elixir-format
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr "Un eveniment d'amb aquesta ID %{id} existís pas"
#: lib/graphql/resolvers/participant.ex:100
#, elixir-format
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr "Error interna"
#: lib/graphql/resolvers/discussion.ex:193
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr "Cap de discussion d'amb aquesta ID %{id}"
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:168
#, elixir-format
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:168
msgid "No profile found for user"
msgstr "Cap de profiu trobat per l'utilizator"
#: lib/graphql/resolvers/feed_token.ex:63
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token"
msgstr "Cap de senhau d'alimentacion"
#: lib/graphql/resolvers/participant.ex:238
#, elixir-format
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr "Lo/a participant-a a déjà lo ròtle %{role}"
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#, elixir-format
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr "Participant non trobat"
#: lib/graphql/resolvers/person.ex:29
#, elixir-format
#: lib/graphql/resolvers/person.ex:29
msgid "Person with ID %{id} not found"
msgstr "Degun trobat d'amb ID %{id}"
#: lib/graphql/resolvers/person.ex:50
#, elixir-format
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr "Degun trobat d'amb l'utilizator %{username}"
#: lib/graphql/resolvers/picture.ex:41
#, elixir-format
msgid "Picture with ID %{id} was not found"
msgstr ""
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#, elixir-format
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr ""
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#, elixir-format
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr ""
#: lib/graphql/resolvers/member.ex:83
#, elixir-format
#: lib/graphql/resolvers/member.ex:83
msgid "Profile invited doesn't exist"
msgstr ""
#: lib/graphql/resolvers/member.ex:92 lib/graphql/resolvers/member.ex:96
#, elixir-format
#: lib/graphql/resolvers/member.ex:92 lib/graphql/resolvers/member.ex:96
msgid "Profile is already a member of this group"
msgstr ""
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#, elixir-format
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
#, elixir-format
msgid "Profile is not member of group"
msgstr ""
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#, elixir-format
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr ""
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr ""
#: lib/graphql/resolvers/report.ex:36
#, elixir-format
#: lib/graphql/resolvers/report.ex:36
msgid "Report not found"
msgstr ""
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
#, elixir-format
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
msgid "Resource doesn't exist"
msgstr ""
#: lib/graphql/resolvers/participant.ex:121
#, elixir-format
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr ""
#: lib/graphql/resolvers/participant.ex:261
#, elixir-format
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr ""
#: lib/graphql/resolvers/todos.ex:165 lib/graphql/resolvers/todos.ex:219
#, elixir-format
#: lib/graphql/resolvers/todos.ex:165 lib/graphql/resolvers/todos.ex:219
msgid "Todo doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/todos.ex:75 lib/graphql/resolvers/todos.ex:191
#: lib/graphql/resolvers/todos.ex:216
#, elixir-format
msgid "Todo list doesn't exist"
msgstr ""
#: lib/graphql/resolvers/feed_token.ex:69
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist"
msgstr ""
#: lib/graphql/resolvers/feed_token.ex:66
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID"
msgstr ""
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr ""
#: lib/graphql/resolvers/person.ex:232
#, elixir-format
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr ""
#: lib/graphql/resolvers/participant.ex:131
#, elixir-format
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr ""
#: lib/graphql/resolvers/discussion.ex:197
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr ""
#: lib/graphql/resolvers/member.ex:86
#, elixir-format
#: lib/graphql/resolvers/member.ex:86
msgid "You are not a member of this group"
msgstr ""
#: lib/graphql/resolvers/member.ex:151
#, elixir-format
#: lib/graphql/resolvers/member.ex:151
msgid "You are not a moderator or admin for this group"
msgstr ""
#: lib/graphql/resolvers/comment.ex:51
#, elixir-format
#: lib/graphql/resolvers/comment.ex:51
msgid "You are not allowed to create a comment if not connected"
msgstr ""
#: lib/graphql/resolvers/feed_token.ex:41
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected"
msgstr ""
#: lib/graphql/resolvers/comment.ex:110
#, elixir-format
#: lib/graphql/resolvers/comment.ex:110
msgid "You are not allowed to delete a comment if not connected"
msgstr ""
#: lib/graphql/resolvers/feed_token.ex:78
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected"
msgstr ""
#: lib/graphql/resolvers/comment.ex:73
#, elixir-format
#: lib/graphql/resolvers/comment.ex:73
msgid "You are not allowed to update a comment if not connected"
msgstr ""
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#, elixir-format
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
#: lib/graphql/resolvers/member.ex:155
#, elixir-format
#: lib/graphql/resolvers/member.ex:155
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
#: lib/graphql/resolvers/comment.ex:101
#, elixir-format
#: lib/graphql/resolvers/comment.ex:101
msgid "You cannot delete this comment"
msgstr ""
#: lib/graphql/resolvers/event.ex:275
#, elixir-format
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr ""
#: lib/graphql/resolvers/member.ex:89
#, elixir-format
#: lib/graphql/resolvers/member.ex:89
msgid "You cannot invite to this group"
msgstr ""
#: lib/graphql/resolvers/feed_token.ex:72
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token"
msgstr ""
#: lib/graphql/resolvers/admin.ex:52
#, elixir-format
#: lib/graphql/resolvers/admin.ex:52
msgid "You need to be logged-in and a moderator to list action logs"
msgstr ""
#: lib/graphql/resolvers/report.ex:26
#, elixir-format
#: lib/graphql/resolvers/report.ex:26
msgid "You need to be logged-in and a moderator to list reports"
msgstr ""
#: lib/graphql/resolvers/report.ex:101
#, elixir-format
#: lib/graphql/resolvers/report.ex:101
msgid "You need to be logged-in and a moderator to update a report"
msgstr ""
#: lib/graphql/resolvers/report.ex:41
#, elixir-format
#: lib/graphql/resolvers/report.ex:41
msgid "You need to be logged-in and a moderator to view a report"
msgstr ""
#: lib/graphql/resolvers/admin.ex:236
#, elixir-format
#: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings"
msgstr ""
#: lib/graphql/resolvers/admin.ex:221
#, elixir-format
#: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr ""
#: lib/graphql/resolvers/admin.ex:260
#, elixir-format
#: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
#: lib/graphql/resolvers/discussion.ex:75
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr ""
#: lib/graphql/resolvers/resource.ex:93
#, elixir-format
#: lib/graphql/resolvers/resource.ex:93
msgid "You need to be logged-in to access resources"
msgstr ""
#: lib/graphql/resolvers/event.ex:210
#, elixir-format
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr ""
#: lib/graphql/resolvers/post.ex:139
#, elixir-format
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr ""
#: lib/graphql/resolvers/report.ex:74
#, elixir-format
#: lib/graphql/resolvers/report.ex:74
msgid "You need to be logged-in to create reports"
msgstr ""
#: lib/graphql/resolvers/resource.ex:129
#, elixir-format
#: lib/graphql/resolvers/resource.ex:129
msgid "You need to be logged-in to create resources"
msgstr ""
#: lib/graphql/resolvers/event.ex:284
#, elixir-format
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr ""
#: lib/graphql/resolvers/post.ex:209
#, elixir-format
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr ""
#: lib/graphql/resolvers/resource.ex:187
#, elixir-format
#: lib/graphql/resolvers/resource.ex:187
msgid "You need to be logged-in to delete resources"
msgstr ""
#: lib/graphql/resolvers/participant.ex:105
#, elixir-format
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr ""
#: lib/graphql/resolvers/participant.ex:204
#, elixir-format
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr ""
#: lib/graphql/resolvers/event.ex:249
#, elixir-format
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr ""
#: lib/graphql/resolvers/post.ex:176
#, elixir-format
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr ""
#: lib/graphql/resolvers/resource.ex:158
#, elixir-format
#: lib/graphql/resolvers/resource.ex:158
msgid "You need to be logged-in to update resources"
msgstr ""
#: lib/graphql/resolvers/resource.ex:210
#, elixir-format
#: lib/graphql/resolvers/resource.ex:210
msgid "You need to be logged-in to view a resource preview"
msgstr ""
#: lib/graphql/resolvers/picture.ex:79
#, elixir-format
msgid "You need to login to upload a picture"
msgstr ""
#: lib/graphql/resolvers/resource.ex:121
#, elixir-format
msgid "Parent resource doesn't belong to this group"
msgstr ""
#: lib/mobilizon/users/user.ex:109
#, elixir-format
#: lib/mobilizon/users/user.ex:109
msgid "The chosen password is too short."
msgstr ""
#: lib/mobilizon/users/user.ex:138
#, elixir-format
#: lib/mobilizon/users/user.ex:138
msgid "The registration token is already in use, this looks like an issue on our side."
msgstr ""
#: lib/mobilizon/users/user.ex:104
#, elixir-format
#: lib/mobilizon/users/user.ex:104
msgid "This email is already used."
msgstr ""
#: lib/graphql/error.ex:88
#, elixir-format
#: lib/graphql/error.ex:88
msgid "Post not found"
msgstr ""
#: lib/graphql/error.ex:75
#, elixir-format
#: lib/graphql/error.ex:75
msgid "Invalid arguments passed"
msgstr ""
#: lib/graphql/error.ex:81
#, elixir-format
#: lib/graphql/error.ex:81
msgid "Invalid credentials"
msgstr ""
#: lib/graphql/error.ex:79
#, elixir-format
#: lib/graphql/error.ex:79
msgid "Reset your password to login"
msgstr ""
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
#, elixir-format
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
msgid "Resource not found"
msgstr ""
#: lib/graphql/error.ex:92
#, elixir-format
#: lib/graphql/error.ex:92
msgid "Something went wrong"
msgstr ""
#: lib/graphql/error.ex:74
#, elixir-format
#: lib/graphql/error.ex:74
msgid "Unknown Resource"
msgstr ""
#: lib/graphql/error.ex:84
#, elixir-format
#: lib/graphql/error.ex:84
msgid "You don't have permission to do this"
msgstr ""
#: lib/graphql/error.ex:76
#, elixir-format
#: lib/graphql/error.ex:76
msgid "You need to be logged in"
msgstr ""
#: lib/graphql/resolvers/member.ex:116
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
msgid "You can't accept this invitation with this profile."
msgstr ""
#: lib/graphql/resolvers/member.ex:134
#, elixir-format
#: lib/graphql/resolvers/member.ex:134
msgid "You can't reject this invitation with this profile."
msgstr ""
#: lib/graphql/resolvers/picture.ex:71
#, elixir-format
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr ""
#: lib/graphql/resolvers/group.ex:167
#, elixir-format
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr ""
#: lib/graphql/resolvers/event.ex:238
#, elixir-format
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr ""
#: lib/graphql/resolvers/event.ex:241
#, elixir-format
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr ""
#: lib/graphql/resolvers/member.ex:137
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
msgid "This invitation doesn't exist."
msgstr ""
#: lib/graphql/resolvers/member.ex:179
#, elixir-format
#: lib/graphql/resolvers/member.ex:179
msgid "This member already has been rejected."
msgstr ""
#: lib/graphql/resolvers/member.ex:186
#, elixir-format
#: lib/graphql/resolvers/member.ex:186
msgid "You don't have the right to remove this member."
msgstr ""
#: lib/mobilizon/actors/actor.ex:344
#, elixir-format
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr ""
#: lib/graphql/resolvers/discussion.ex:72
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
#: lib/graphql/resolvers/event.ex:199
#, elixir-format
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr ""
#: lib/graphql/resolvers/participant.ex:90
#, elixir-format
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

View File

@ -23,11 +23,6 @@ msgstr ""
"zostanie zmienione, jeżeli nie skorzystasz z poniższego linku i nie ustawisz "
"nowego."
#, elixir-format
#: lib/service/export/feed.ex:170
msgid "Feed for %{email} on Mobilizon"
msgstr "Strumień dla %{email} na Mobilizon"
#, elixir-format
#: lib/web/templates/email/report.html.eex:74
msgid "%{title} by %{creator}"
@ -155,7 +150,7 @@ msgid "Warning"
msgstr "Ostrzeżenie"
#, elixir-format
#: lib/web/email/participation.ex:134
#: lib/web/email/participation.ex:135
msgid "Confirm your participation to event %{title}"
msgstr "Potwierdź swoje uczestnictwo w wydarzeniu %{title}"
@ -358,7 +353,7 @@ msgid "Mobilizon on %{instance}: email changed"
msgstr "Mobilizon na %{instance}: zmieniono e-mail"
#, elixir-format
#: lib/web/email/notification.ex:46
#: lib/web/email/notification.ex:47
msgid "One event planned today"
msgid_plural "%{nb_events} events planned today"
msgstr[0] "Jedno wydarzenie zaplanowane na dzisiaj"
@ -414,12 +409,12 @@ msgid "View the event on: %{link}"
msgstr "Zobacz zaktualizowane wydarzenie na %{link}"
#, elixir-format
#: lib/web/email/group.ex:32
#: lib/web/email/group.ex:33
msgid "You have been invited by %{inviter} to join group %{group}"
msgstr "Dostałeś(-aś) zaproszenie od %{inviter}, aby dołączyć do grupy %{group}"
#, elixir-format
#: lib/web/email/notification.ex:70
#: lib/web/email/notification.ex:71
msgid "One event planned this week"
msgid_plural "%{nb_events} events planned this week"
msgstr[0] "Jedno wydarzenie zaplanowane na ten tydzień"
@ -427,7 +422,7 @@ msgstr[1] "%{nb_events} wydarzenia zaplanowane na ten tydzień"
msgstr[2] "%{nb_events} wydarzeń zaplanowanych na ten tydzień"
#, elixir-format
#: lib/web/email/notification.ex:92
#: lib/web/email/notification.ex:93
msgid "One participation request for event %{title} to process"
msgid_plural "%{number_participation_requests} participation requests for event %{title} to process"
msgstr[0] "Jedno zgłoszenie uczestnictwa dla wydarzenia %{title} do zatwierdzenia"
@ -1155,7 +1150,7 @@ msgid "So long, and thanks for the fish!"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:62
#: lib/web/email/group.ex:63
msgid "You have been removed from group %{group}"
msgstr "Zostałeś(-aś) usunięty(-a) z grupy %{group}"
@ -1223,12 +1218,12 @@ msgid "Your instance's moderation team has decided to suspend %{group_name} (%{g
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:135
#: lib/web/email/group.ex:136
msgid "The group %{group} has been deleted on %{instance}"
msgstr "Grupa %{group} została usunięta na %{instance}"
#, elixir-format
#: lib/web/email/group.ex:96
#: lib/web/email/group.ex:97
msgid "The group %{group} has been suspended on %{instance}"
msgstr "Grupa %{group} została zawieszona na %{instance}"
@ -1389,12 +1384,12 @@ msgid "You have now confirmed your participation. Update your calendar, because
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:91
#: lib/mobilizon/posts/post.ex:94
msgid "A text is required for the post"
msgstr "Wpis wymaga tekstu"
#, elixir-format
#: lib/mobilizon/posts/post.ex:90
#: lib/mobilizon/posts/post.ex:93
msgid "A title is required for the post"
msgstr "Wpis wymaga tytułu"
@ -1489,3 +1484,23 @@ msgstr "Przepraszamy, ale coś poszło nie tak po naszej stronie."
#: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon."
msgstr "To jest strona demonstracyjna pozwalająca na przetestowanie Mobilizon."
#, elixir-format
#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60
msgid "%{name}'s feed"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:77
msgid "%{actor}'s private events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:72
msgid "%{actor}'s public events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:203
msgid "Feed for %{email} on %{instance}"
msgstr ""

View File

@ -106,12 +106,12 @@ msgid "Cannot refresh the token"
msgstr "Nie można odświeżyć tokenu"
#, elixir-format
#: lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr "Obency profil nie jest członkiem tej grupy"
#, elixir-format
#: lib/graphql/resolvers/group.ex:202
#: lib/graphql/resolvers/group.ex:199
msgid "Current profile is not an administrator of the selected group"
msgstr "Obecny profil nie jest administratorem zaznaczonej grupy"
@ -121,13 +121,13 @@ msgid "Error while saving user settings"
msgstr "Błąd zapisywania ustawień użytkownika"
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr "Nie odnaleziono grupy"
#, elixir-format
#: lib/graphql/resolvers/group.ex:66
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr "Nie odnaleziono grupy o ID %{id}"
@ -138,7 +138,7 @@ msgstr ""
"Nie udało się uwierzytelnić. Adres e-mail bądź hasło jest nieprawidłowe."
#, elixir-format
#: lib/graphql/resolvers/group.ex:258
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr "Nie odnaleziono użytkownika"
@ -155,16 +155,15 @@ msgstr ""
"Nie znaleziono użytkownika do zatwierdzenia z użyciem tego adresu e-mail"
#, elixir-format
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr "Nie znaleziono użytkownika o tym adresie e-mail"
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr "Profil nie należy do uwierzytelnionego użytkownika"
@ -232,23 +231,23 @@ msgid "User requested is not logged-in"
msgstr "Żądany użytkownik nie jest zalogowany"
#, elixir-format
#: lib/graphql/resolvers/group.ex:232
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr "Już jesteś członkiem tej grupy"
#, elixir-format
#: lib/graphql/resolvers/group.ex:265
#: lib/graphql/resolvers/group.ex:262
msgid "You can't leave this group because you are the only administrator"
msgstr ""
"Nie możesz opuścić tej grupy, ponieważ jesteś jej jedynym administratorem"
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr "Nie możesz dołączyć do tej grupy"
#, elixir-format
#: lib/graphql/resolvers/group.ex:94
#: lib/graphql/resolvers/group.ex:91
msgid "You may not list groups unless moderator."
msgstr "Nie masz dostępu do listy grup, jeżeli nie jesteś moderatorem."
@ -263,7 +262,7 @@ msgid "You need to be logged-in to change your password"
msgstr "Musisz być zalogowany(-a), aby zmienić hasło"
#, elixir-format
#: lib/graphql/resolvers/group.ex:207
#: lib/graphql/resolvers/group.ex:204
msgid "You need to be logged-in to delete a group"
msgstr "Musisz być zalogowany(-a), aby usunąć grupę"
@ -273,27 +272,20 @@ msgid "You need to be logged-in to delete your account"
msgstr "Musisz być zalogowany(-a), aby usunąć konto"
#, elixir-format
#: lib/graphql/resolvers/group.ex:237
#: lib/graphql/resolvers/group.ex:234
msgid "You need to be logged-in to join a group"
msgstr "Musisz być zalogowany(-a), aby dołączyć do grupy"
#, elixir-format
#: lib/graphql/resolvers/group.ex:270
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr "Musisz być zalogowany(-a), aby opuścić grupę"
#, elixir-format
#: lib/graphql/resolvers/group.ex:172
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr "Musisz być zalogowany(-a), aby zaktualizować grupę"
#, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users"
msgstr ""
"Musisz mieć uprawnienia administratora, aby uzyskać dostęp do listy "
"użytkowników"
#, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token"
@ -345,22 +337,22 @@ msgid "Profile already suspended"
msgstr "Już zawieszono profil"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:93
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr "Twoja instancja wymaga prawidłowego adresu e-mail"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr "Anonimowe uczestnictwa nie są włączone"
#, elixir-format
#: lib/graphql/resolvers/person.ex:184
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr "Nie można usunać jedynego administratora grupy"
#, elixir-format
#: lib/graphql/resolvers/person.ex:181
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr "Nie można usunąć jedynej tożsamości użytkownika"
@ -370,7 +362,7 @@ msgid "Comment is already deleted"
msgstr "Komentarz jest już usunięty"
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr "Nie znaleziono dyskusji"
@ -385,29 +377,29 @@ msgid "Error while updating report"
msgstr "Wystąpił błąd podczas aktualizacji zgłoszenia"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:128
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr "Nie znaleziono id wydarzenia"
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr "Nie znaleziono wydarzenia"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr "Wydarzenie o ID %{id} nie istnieje"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:100
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr "Wewnętrzny błąd"
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:193
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr "Nie znaleziono dyskusji o ID ${id}"
@ -422,14 +414,14 @@ msgid "No such feed token"
msgstr "Nie ma takiego tokenu strumienia"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:238
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr "Uczestnik już ma rolę %{role}"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr "Nie znaleziono uczestnika"
@ -439,22 +431,17 @@ msgid "Person with ID %{id} not found"
msgstr "Osoba o ID %{id} nie istnieje"
#, elixir-format
#: lib/graphql/resolvers/person.ex:50
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr "Nie znaleziono osoby o nazwie użytkownika %{username}"
#, elixir-format
#: lib/graphql/resolvers/picture.ex:41
msgid "Picture with ID %{id} was not found"
msgstr "Nie znaleziono obrazka o ID %{id}"
#, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr "ID wpisu nie jest prawidłowym ID"
#, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr "Wpis nie istnieje"
@ -469,8 +456,8 @@ msgid "Profile is already a member of this group"
msgstr "Profil jest już członkiem tej grupy"
#, elixir-format
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
@ -478,12 +465,12 @@ msgid "Profile is not member of group"
msgstr "Profil nie jest członkiem grupy"
#, elixir-format
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr "Nie znaleziono profilu"
#, elixir-format
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr "Wskazany profil moderatora nie ma uprawnień dla tego wydarzenia"
@ -498,12 +485,12 @@ msgid "Resource doesn't exist"
msgstr "Zasób nie istnieje"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:121
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr "Wydarzenie już przekroczyło maksymalną zasobność"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:261
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr "Ten token jest nieprawidłowy"
@ -529,22 +516,22 @@ msgid "Token is not a valid UUID"
msgstr "Token nie jest prawidłowym UUID"
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr "Nie znaleziono użytkownika"
#, elixir-format
#: lib/graphql/resolvers/person.ex:232
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr "Już masz profil dla tego użytkownika"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:131
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr "Już jesteś uczestnikiem tego wydarzenia"
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:197
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr "Nie jesteś członkiem grupy do której należy ta dyskusja"
@ -584,8 +571,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
@ -602,7 +589,7 @@ msgid "You cannot delete this comment"
msgstr "Nie możesz usunąć tego komentarza"
#, elixir-format
#: lib/graphql/resolvers/event.ex:275
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr "Nie możesz usunąć tego wydarzenia"
@ -658,7 +645,7 @@ msgstr ""
"administratora"
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:75
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr "Musisz być zalogowany(-a), aby uzyskać dostęp do dyskusji"
@ -668,12 +655,12 @@ msgid "You need to be logged-in to access resources"
msgstr "Musisz być zalogowany(-a), aby uzyskać dostęp do zasobów"
#, elixir-format
#: lib/graphql/resolvers/event.ex:210
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr "Musisz być zalogowany(-a), aby móc utworzyć wydarzenia"
#, elixir-format
#: lib/graphql/resolvers/post.ex:139
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr "Musisz być zalogowany(-a), aby utworzyć wpis"
@ -688,12 +675,12 @@ msgid "You need to be logged-in to create resources"
msgstr "Musisz być zalogowany(-a), aby utworzyć zasób"
#, elixir-format
#: lib/graphql/resolvers/event.ex:284
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr "Musisz być zalogowany(-a), aby usunąć wydarzenie"
#, elixir-format
#: lib/graphql/resolvers/post.ex:209
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr "Musisz być zalogowany(-a), aby usunąć wpis"
@ -703,22 +690,22 @@ msgid "You need to be logged-in to delete resources"
msgstr "Musisz być zalogowany(-a), aby usunąć zasób"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:105
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr "Musisz być zalogowany(-a), aby dołączyć do wydarzenia"
#, elixir-format
#: lib/graphql/resolvers/participant.ex:204
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr "Musisz być zalogowany(-a), aby opuścić wydarzenie"
#, elixir-format
#: lib/graphql/resolvers/event.ex:249
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr "Musisz być zalogowany(-a), aby zaktualizować wydarzenie"
#, elixir-format
#: lib/graphql/resolvers/post.ex:176
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr "Musisz być zalogowany(-a), aby zaktualizować wpis"
@ -732,11 +719,6 @@ msgstr "Musisz być zalogowany(-a), aby zaktualizować zasób"
msgid "You need to be logged-in to view a resource preview"
msgstr "Musisz być zalogowany(-a), aby zobaczyć podgląd zasobu"
#, elixir-format
#: lib/graphql/resolvers/picture.ex:79
msgid "You need to login to upload a picture"
msgstr "Musisz się zalogować, aby dodać obraz"
#, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group"
@ -815,22 +797,22 @@ msgid "You can't reject this invitation with this profile."
msgstr "Nie możesz odrzucić tego zaproszenia z tego profilu."
#, elixir-format
#: lib/graphql/resolvers/picture.ex:71
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr "Plik nie ma dozwolonego typu MIME."
#, elixir-format
#: lib/graphql/resolvers/group.ex:167
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr "Profil nie jest administratorem grupy"
#, elixir-format
#: lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr "Nie możesz edytować tego wydarzenia."
#, elixir-format
#: lib/graphql/resolvers/event.ex:241
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr "Nie możesz przypisać tego wydarzenia do tego profilu."
@ -850,21 +832,27 @@ msgid "You don't have the right to remove this member."
msgstr "Nie masz uprawnień do usunięcia tego członka."
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:72
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:199
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:90
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

View File

@ -17,11 +17,6 @@ msgstr ""
msgid "If you didn't request this, please ignore this email. Your password won't change until you access the link below and create a new one."
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:170
msgid "Feed for %{email} on Mobilizon"
msgstr ""
#, elixir-format
#: lib/web/templates/email/report.html.eex:74
msgid "%{title} by %{creator}"
@ -142,7 +137,7 @@ msgid "Warning"
msgstr ""
#, elixir-format
#: lib/web/email/participation.ex:134
#: lib/web/email/participation.ex:135
msgid "Confirm your participation to event %{title}"
msgstr ""
@ -325,7 +320,7 @@ msgid "Mobilizon on %{instance}: email changed"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:46
#: lib/web/email/notification.ex:47
msgid "One event planned today"
msgid_plural "%{nb_events} events planned today"
msgstr[0] ""
@ -378,19 +373,19 @@ msgid "View the event on: %{link}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:32
#: lib/web/email/group.ex:33
msgid "You have been invited by %{inviter} to join group %{group}"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:70
#: lib/web/email/notification.ex:71
msgid "One event planned this week"
msgid_plural "%{nb_events} events planned this week"
msgstr[0] ""
msgstr[1] ""
#, elixir-format
#: lib/web/email/notification.ex:92
#: lib/web/email/notification.ex:93
msgid "One participation request for event %{title} to process"
msgid_plural "%{number_participation_requests} participation requests for event %{title} to process"
msgstr[0] ""
@ -1050,7 +1045,7 @@ msgid "So long, and thanks for the fish!"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:62
#: lib/web/email/group.ex:63
msgid "You have been removed from group %{group}"
msgstr ""
@ -1106,12 +1101,12 @@ msgid "Your instance's moderation team has decided to suspend %{group_name} (%{g
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:135
#: lib/web/email/group.ex:136
msgid "The group %{group} has been deleted on %{instance}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:96
#: lib/web/email/group.ex:97
msgid "The group %{group} has been suspended on %{instance}"
msgstr ""
@ -1271,12 +1266,12 @@ msgid "You have now confirmed your participation. Update your calendar, because
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:91
#: lib/mobilizon/posts/post.ex:94
msgid "A text is required for the post"
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:90
#: lib/mobilizon/posts/post.ex:93
msgid "A title is required for the post"
msgstr ""
@ -1368,3 +1363,23 @@ msgstr ""
#: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon."
msgstr ""
#, elixir-format
#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60
msgid "%{name}'s feed"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:77
msgid "%{actor}'s private events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:72
msgid "%{actor}'s public events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:203
msgid "Feed for %{email} on %{instance}"
msgstr ""

View File

@ -92,12 +92,12 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:202
#: lib/graphql/resolvers/group.ex:199
msgid "Current profile is not an administrator of the selected group"
msgstr ""
@ -107,13 +107,13 @@ msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:66
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr ""
@ -123,7 +123,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:258
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr ""
@ -139,16 +139,15 @@ msgid "No user to validate with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr ""
@ -214,22 +213,22 @@ msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:232
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:265
#: lib/graphql/resolvers/group.ex:262
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:94
#: lib/graphql/resolvers/group.ex:91
msgid "You may not list groups unless moderator."
msgstr ""
@ -244,7 +243,7 @@ msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:207
#: lib/graphql/resolvers/group.ex:204
msgid "You need to be logged-in to delete a group"
msgstr ""
@ -254,25 +253,20 @@ msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:237
#: lib/graphql/resolvers/group.ex:234
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:270
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:172
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token"
@ -324,22 +318,22 @@ msgid "Profile already suspended"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:93
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:184
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:181
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr ""
@ -349,7 +343,7 @@ msgid "Comment is already deleted"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr ""
@ -364,29 +358,29 @@ msgid "Error while updating report"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:128
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:100
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:193
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr ""
@ -401,14 +395,14 @@ msgid "No such feed token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:238
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr ""
@ -418,22 +412,17 @@ msgid "Person with ID %{id} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:50
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:41
msgid "Picture with ID %{id} was not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr ""
@ -448,8 +437,8 @@ msgid "Profile is already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
@ -457,12 +446,12 @@ msgid "Profile is not member of group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr ""
@ -477,12 +466,12 @@ msgid "Resource doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:121
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:261
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr ""
@ -508,22 +497,22 @@ msgid "Token is not a valid UUID"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:232
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:131
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:197
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr ""
@ -563,8 +552,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
@ -579,7 +568,7 @@ msgid "You cannot delete this comment"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:275
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr ""
@ -629,7 +618,7 @@ msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:75
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr ""
@ -639,12 +628,12 @@ msgid "You need to be logged-in to access resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:210
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:139
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr ""
@ -659,12 +648,12 @@ msgid "You need to be logged-in to create resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:284
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:209
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr ""
@ -674,22 +663,22 @@ msgid "You need to be logged-in to delete resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:105
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:204
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:249
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:176
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr ""
@ -703,11 +692,6 @@ msgstr ""
msgid "You need to be logged-in to view a resource preview"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:79
msgid "You need to login to upload a picture"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group"
@ -784,22 +768,22 @@ msgid "You can't reject this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:71
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:167
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:241
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr ""
@ -819,21 +803,27 @@ msgid "You don't have the right to remove this member."
msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:72
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:199
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:90
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

View File

@ -21,11 +21,6 @@ msgstr ""
"Se você não fez essa solicitação, favor ignorar este email. Sua senha não "
"será modificada até que você acesse o link abaixo e crie uma nova senha."
#, elixir-format
#: lib/service/export/feed.ex:170
msgid "Feed for %{email} on Mobilizon"
msgstr "Feed para %{email} sobre o Mobilizon"
#, elixir-format
#: lib/web/templates/email/report.html.eex:74
msgid "%{title} by %{creator}"
@ -153,7 +148,7 @@ msgid "Warning"
msgstr "Atenção"
#, elixir-format
#: lib/web/email/participation.ex:134
#: lib/web/email/participation.ex:135
msgid "Confirm your participation to event %{title}"
msgstr "Confirmar sua participação no evento %{title}"
@ -371,7 +366,7 @@ msgid "Mobilizon on %{instance}: email changed"
msgstr "Mobilizon da instância %{instance}: email alterado"
#, elixir-format
#: lib/web/email/notification.ex:46
#: lib/web/email/notification.ex:47
msgid "One event planned today"
msgid_plural "%{nb_events} events planned today"
msgstr[0] ""
@ -424,19 +419,19 @@ msgid "View the event on: %{link}"
msgstr "Veja o evento atualizado em: %{link}"
#, elixir-format
#: lib/web/email/group.ex:32
#: lib/web/email/group.ex:33
msgid "You have been invited by %{inviter} to join group %{group}"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:70
#: lib/web/email/notification.ex:71
msgid "One event planned this week"
msgid_plural "%{nb_events} events planned this week"
msgstr[0] ""
msgstr[1] ""
#, elixir-format
#: lib/web/email/notification.ex:92
#: lib/web/email/notification.ex:93
msgid "One participation request for event %{title} to process"
msgid_plural "%{number_participation_requests} participation requests for event %{title} to process"
msgstr[0] ""
@ -1127,7 +1122,7 @@ msgid "So long, and thanks for the fish!"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:62
#: lib/web/email/group.ex:63
msgid "You have been removed from group %{group}"
msgstr ""
@ -1183,12 +1178,12 @@ msgid "Your instance's moderation team has decided to suspend %{group_name} (%{g
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:135
#: lib/web/email/group.ex:136
msgid "The group %{group} has been deleted on %{instance}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:96
#: lib/web/email/group.ex:97
msgid "The group %{group} has been suspended on %{instance}"
msgstr ""
@ -1383,12 +1378,12 @@ msgid "You have now confirmed your participation. Update your calendar, because
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:91
#: lib/mobilizon/posts/post.ex:94
msgid "A text is required for the post"
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:90
#: lib/mobilizon/posts/post.ex:93
msgid "A title is required for the post"
msgstr ""
@ -1480,3 +1475,23 @@ msgstr ""
#: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon."
msgstr "Este é um site de demonstração para testar a versão beta do Mobilizon."
#, elixir-format
#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60
msgid "%{name}'s feed"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:77
msgid "%{actor}'s private events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:72
msgid "%{actor}'s public events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:203
msgid "Feed for %{email} on %{instance}"
msgstr ""

View File

@ -92,12 +92,12 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:202
#: lib/graphql/resolvers/group.ex:199
msgid "Current profile is not an administrator of the selected group"
msgstr ""
@ -107,13 +107,13 @@ msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:66
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr ""
@ -123,7 +123,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:258
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr ""
@ -139,16 +139,15 @@ msgid "No user to validate with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr ""
@ -214,22 +213,22 @@ msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:232
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:265
#: lib/graphql/resolvers/group.ex:262
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:94
#: lib/graphql/resolvers/group.ex:91
msgid "You may not list groups unless moderator."
msgstr ""
@ -244,7 +243,7 @@ msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:207
#: lib/graphql/resolvers/group.ex:204
msgid "You need to be logged-in to delete a group"
msgstr ""
@ -254,25 +253,20 @@ msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:237
#: lib/graphql/resolvers/group.ex:234
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:270
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:172
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token"
@ -324,22 +318,22 @@ msgid "Profile already suspended"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:93
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:184
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:181
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr ""
@ -349,7 +343,7 @@ msgid "Comment is already deleted"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr ""
@ -364,29 +358,29 @@ msgid "Error while updating report"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:128
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:100
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:193
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr ""
@ -401,14 +395,14 @@ msgid "No such feed token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:238
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr ""
@ -418,22 +412,17 @@ msgid "Person with ID %{id} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:50
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:41
msgid "Picture with ID %{id} was not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr ""
@ -448,8 +437,8 @@ msgid "Profile is already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
@ -457,12 +446,12 @@ msgid "Profile is not member of group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr ""
@ -477,12 +466,12 @@ msgid "Resource doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:121
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:261
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr ""
@ -508,22 +497,22 @@ msgid "Token is not a valid UUID"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:232
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:131
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:197
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr ""
@ -563,8 +552,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
@ -579,7 +568,7 @@ msgid "You cannot delete this comment"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:275
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr ""
@ -629,7 +618,7 @@ msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:75
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr ""
@ -639,12 +628,12 @@ msgid "You need to be logged-in to access resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:210
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:139
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr ""
@ -659,12 +648,12 @@ msgid "You need to be logged-in to create resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:284
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:209
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr ""
@ -674,22 +663,22 @@ msgid "You need to be logged-in to delete resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:105
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:204
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:249
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:176
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr ""
@ -703,11 +692,6 @@ msgstr ""
msgid "You need to be logged-in to view a resource preview"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:79
msgid "You need to login to upload a picture"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group"
@ -784,22 +768,22 @@ msgid "You can't reject this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:71
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:167
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:241
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr ""
@ -819,21 +803,27 @@ msgid "You don't have the right to remove this member."
msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:72
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:199
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:90
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

View File

@ -22,11 +22,6 @@ msgstr ""
"Если вы не оставляли такой запрос, проигнорируйте данное письмо. Пароль не "
"изменится, если не перейти по приведённой ссылке и не указать новый."
#, elixir-format
#: lib/service/export/feed.ex:170
msgid "Feed for %{email} on Mobilizon"
msgstr "Лента для %{email} в Mobilizon"
#, elixir-format
#: lib/web/templates/email/report.html.eex:74
msgid "%{title} by %{creator}"
@ -149,7 +144,7 @@ msgid "Warning"
msgstr ""
#, elixir-format
#: lib/web/email/participation.ex:134
#: lib/web/email/participation.ex:135
msgid "Confirm your participation to event %{title}"
msgstr ""
@ -332,7 +327,7 @@ msgid "Mobilizon on %{instance}: email changed"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:46
#: lib/web/email/notification.ex:47
msgid "One event planned today"
msgid_plural "%{nb_events} events planned today"
msgstr[0] ""
@ -387,12 +382,12 @@ msgid "View the event on: %{link}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:32
#: lib/web/email/group.ex:33
msgid "You have been invited by %{inviter} to join group %{group}"
msgstr ""
#, elixir-format
#: lib/web/email/notification.ex:70
#: lib/web/email/notification.ex:71
msgid "One event planned this week"
msgid_plural "%{nb_events} events planned this week"
msgstr[0] ""
@ -400,7 +395,7 @@ msgstr[1] ""
msgstr[2] ""
#, elixir-format
#: lib/web/email/notification.ex:92
#: lib/web/email/notification.ex:93
msgid "One participation request for event %{title} to process"
msgid_plural "%{number_participation_requests} participation requests for event %{title} to process"
msgstr[0] ""
@ -1066,7 +1061,7 @@ msgid "So long, and thanks for the fish!"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:62
#: lib/web/email/group.ex:63
msgid "You have been removed from group %{group}"
msgstr ""
@ -1122,12 +1117,12 @@ msgid "Your instance's moderation team has decided to suspend %{group_name} (%{g
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:135
#: lib/web/email/group.ex:136
msgid "The group %{group} has been deleted on %{instance}"
msgstr ""
#, elixir-format
#: lib/web/email/group.ex:96
#: lib/web/email/group.ex:97
msgid "The group %{group} has been suspended on %{instance}"
msgstr ""
@ -1289,12 +1284,12 @@ msgid "You have now confirmed your participation. Update your calendar, because
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:91
#: lib/mobilizon/posts/post.ex:94
msgid "A text is required for the post"
msgstr ""
#, elixir-format
#: lib/mobilizon/posts/post.ex:90
#: lib/mobilizon/posts/post.ex:93
msgid "A title is required for the post"
msgstr ""
@ -1386,3 +1381,23 @@ msgstr ""
#: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon."
msgstr ""
#, elixir-format
#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60
msgid "%{name}'s feed"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:77
msgid "%{actor}'s private events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:72
msgid "%{actor}'s public events feed on %{instance}"
msgstr ""
#, elixir-format
#: lib/service/export/feed.ex:203
msgid "Feed for %{email} on %{instance}"
msgstr ""

View File

@ -98,12 +98,12 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:202
#: lib/graphql/resolvers/group.ex:199
msgid "Current profile is not an administrator of the selected group"
msgstr ""
@ -113,13 +113,13 @@ msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:66
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr ""
@ -129,7 +129,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:258
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr ""
@ -145,16 +145,15 @@ msgid "No user to validate with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr ""
@ -220,22 +219,22 @@ msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:232
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:265
#: lib/graphql/resolvers/group.ex:262
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:94
#: lib/graphql/resolvers/group.ex:91
msgid "You may not list groups unless moderator."
msgstr ""
@ -250,7 +249,7 @@ msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:207
#: lib/graphql/resolvers/group.ex:204
msgid "You need to be logged-in to delete a group"
msgstr ""
@ -260,25 +259,20 @@ msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:237
#: lib/graphql/resolvers/group.ex:234
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:270
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:172
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token"
@ -330,22 +324,22 @@ msgid "Profile already suspended"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:93
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:184
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:181
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr ""
@ -355,7 +349,7 @@ msgid "Comment is already deleted"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr ""
@ -370,29 +364,29 @@ msgid "Error while updating report"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:128
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:100
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:193
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr ""
@ -407,14 +401,14 @@ msgid "No such feed token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:238
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr ""
@ -424,22 +418,17 @@ msgid "Person with ID %{id} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:50
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:41
msgid "Picture with ID %{id} was not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr ""
@ -454,8 +443,8 @@ msgid "Profile is already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
@ -463,12 +452,12 @@ msgid "Profile is not member of group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr ""
@ -483,12 +472,12 @@ msgid "Resource doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:121
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:261
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr ""
@ -514,22 +503,22 @@ msgid "Token is not a valid UUID"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:232
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:131
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:197
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr ""
@ -569,8 +558,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
@ -585,7 +574,7 @@ msgid "You cannot delete this comment"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:275
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr ""
@ -635,7 +624,7 @@ msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:75
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr ""
@ -645,12 +634,12 @@ msgid "You need to be logged-in to access resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:210
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:139
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr ""
@ -665,12 +654,12 @@ msgid "You need to be logged-in to create resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:284
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:209
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr ""
@ -680,22 +669,22 @@ msgid "You need to be logged-in to delete resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:105
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:204
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:249
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:176
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr ""
@ -709,11 +698,6 @@ msgstr ""
msgid "You need to be logged-in to view a resource preview"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:79
msgid "You need to login to upload a picture"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group"
@ -790,22 +774,22 @@ msgid "You can't reject this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:71
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:167
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:241
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr ""
@ -825,21 +809,27 @@ msgid "You don't have the right to remove this member."
msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:72
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:199
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:90
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -99,12 +99,12 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:195
msgid "Current profile is not a member of this group"
msgstr "Den nuvarande profilen är inte med i den här gruppen"
#, elixir-format
#: lib/graphql/resolvers/group.ex:202
#: lib/graphql/resolvers/group.ex:199
msgid "Current profile is not an administrator of the selected group"
msgstr ""
@ -114,13 +114,13 @@ msgid "Error while saving user settings"
msgstr "Ett fel uppstod när användarinställningarna skulle sparas"
#, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:195
#: lib/graphql/resolvers/group.ex:226 lib/graphql/resolvers/group.ex:261 lib/graphql/resolvers/member.ex:80
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:192
#: lib/graphql/resolvers/group.ex:223 lib/graphql/resolvers/group.ex:258 lib/graphql/resolvers/member.ex:80
msgid "Group not found"
msgstr "Gruppen kunde inte hittas"
#, elixir-format
#: lib/graphql/resolvers/group.ex:66
#: lib/graphql/resolvers/group.ex:63
msgid "Group with ID %{id} not found"
msgstr "Gruppen med %{id} kunde inte hittas"
@ -130,7 +130,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:258
#: lib/graphql/resolvers/group.ex:255
msgid "Member not found"
msgstr ""
@ -146,16 +146,15 @@ msgid "No user to validate with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:229 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#: lib/graphql/resolvers/person.ex:249 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/feed_token.ex:28
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:153 lib/graphql/resolvers/person.ex:187
#: lib/graphql/resolvers/person.ex:253 lib/graphql/resolvers/person.ex:282 lib/graphql/resolvers/person.ex:295
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:161 lib/graphql/resolvers/person.ex:195
#: lib/graphql/resolvers/person.ex:273 lib/graphql/resolvers/person.ex:302 lib/graphql/resolvers/person.ex:315
msgid "Profile is not owned by authenticated user"
msgstr ""
@ -221,22 +220,22 @@ msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:232
#: lib/graphql/resolvers/group.ex:229
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:265
#: lib/graphql/resolvers/group.ex:262
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:229
#: lib/graphql/resolvers/group.ex:226
msgid "You cannot join this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:94
#: lib/graphql/resolvers/group.ex:91
msgid "You may not list groups unless moderator."
msgstr ""
@ -251,7 +250,7 @@ msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:207
#: lib/graphql/resolvers/group.ex:204
msgid "You need to be logged-in to delete a group"
msgstr ""
@ -261,25 +260,20 @@ msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:237
#: lib/graphql/resolvers/group.ex:234
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:270
#: lib/graphql/resolvers/group.ex:267
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:172
#: lib/graphql/resolvers/group.ex:169
msgid "You need to be logged-in to update a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token"
@ -331,22 +325,22 @@ msgid "Profile already suspended"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:93
#: lib/graphql/resolvers/participant.ex:92
msgid "A valid email is required by your instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:86
msgid "Anonymous participation is not enabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:184
#: lib/graphql/resolvers/person.ex:192
msgid "Cannot remove the last administrator of a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:181
#: lib/graphql/resolvers/person.ex:189
msgid "Cannot remove the last identity of a user"
msgstr ""
@ -356,7 +350,7 @@ msgid "Comment is already deleted"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
#: lib/graphql/resolvers/discussion.ex:62
msgid "Discussion not found"
msgstr ""
@ -371,29 +365,29 @@ msgid "Error while updating report"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:128
#: lib/graphql/resolvers/participant.ex:127
msgid "Event id not found"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:235
#: lib/graphql/resolvers/event.ex:279
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:236
#: lib/graphql/resolvers/event.ex:280
msgid "Event not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
#: lib/graphql/resolvers/participant.ex:83
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
msgid "Event with this ID %{id} doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:100
#: lib/graphql/resolvers/participant.ex:99
msgid "Internal Error"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:193
#: lib/graphql/resolvers/discussion.ex:186
msgid "No discussion with ID %{id}"
msgstr ""
@ -408,14 +402,14 @@ msgid "No such feed token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:238
#: lib/graphql/resolvers/participant.ex:237
msgid "Participant already has role %{role}"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:231
#: lib/graphql/resolvers/participant.ex:241
#: lib/graphql/resolvers/participant.ex:169
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
#: lib/graphql/resolvers/participant.ex:240
msgid "Participant not found"
msgstr ""
@ -425,22 +419,17 @@ msgid "Person with ID %{id} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:50
#: lib/graphql/resolvers/person.ex:51
msgid "Person with username %{username} not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:41
msgid "Picture with ID %{id} was not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
msgid "Post ID is not a valid ID"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
msgid "Post doesn't exist"
msgstr ""
@ -455,8 +444,8 @@ msgid "Profile is already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
#: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
@ -464,12 +453,12 @@ msgid "Profile is not member of group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:150 lib/graphql/resolvers/person.ex:178
#: lib/graphql/resolvers/person.ex:158 lib/graphql/resolvers/person.ex:186
msgid "Profile not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:101 lib/graphql/resolvers/participant.ex:235
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
msgid "Provided moderator profile doesn't have permission on this event"
msgstr ""
@ -484,12 +473,12 @@ msgid "Resource doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:121
#: lib/graphql/resolvers/participant.ex:120
msgid "The event has already reached its maximum capacity"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:261
#: lib/graphql/resolvers/participant.ex:260
msgid "This token is invalid"
msgstr ""
@ -515,22 +504,22 @@ msgid "Token is not a valid UUID"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:317
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:331
msgid "User not found"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:232
#: lib/graphql/resolvers/person.ex:252
msgid "You already have a profile for this user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:131
#: lib/graphql/resolvers/participant.ex:130
msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:197
#: lib/graphql/resolvers/discussion.ex:190
msgid "You are not a member of the group the discussion belongs to"
msgstr ""
@ -570,8 +559,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
#: lib/graphql/resolvers/participant.ex:163
#: lib/graphql/resolvers/participant.ex:192
msgid "You can't leave event because you're the only event creator participant"
msgstr ""
@ -586,7 +575,7 @@ msgid "You cannot delete this comment"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:275
#: lib/graphql/resolvers/event.ex:276
msgid "You cannot delete this event"
msgstr ""
@ -636,7 +625,7 @@ msgid "You need to be logged-in and an administrator to save admin settings"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:75
#: lib/graphql/resolvers/discussion.ex:76
msgid "You need to be logged-in to access discussions"
msgstr ""
@ -646,12 +635,12 @@ msgid "You need to be logged-in to access resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:210
#: lib/graphql/resolvers/event.ex:211
msgid "You need to be logged-in to create events"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:139
#: lib/graphql/resolvers/post.ex:140
msgid "You need to be logged-in to create posts"
msgstr ""
@ -666,12 +655,12 @@ msgid "You need to be logged-in to create resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:284
#: lib/graphql/resolvers/event.ex:285
msgid "You need to be logged-in to delete an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:209
#: lib/graphql/resolvers/post.ex:211
msgid "You need to be logged-in to delete posts"
msgstr ""
@ -681,22 +670,22 @@ msgid "You need to be logged-in to delete resources"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:105
#: lib/graphql/resolvers/participant.ex:104
msgid "You need to be logged-in to join an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:204
#: lib/graphql/resolvers/participant.ex:203
msgid "You need to be logged-in to leave an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:249
#: lib/graphql/resolvers/event.ex:250
msgid "You need to be logged-in to update an event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:176
#: lib/graphql/resolvers/post.ex:178
msgid "You need to be logged-in to update posts"
msgstr ""
@ -710,11 +699,6 @@ msgstr ""
msgid "You need to be logged-in to view a resource preview"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:79
msgid "You need to login to upload a picture"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group"
@ -791,22 +775,22 @@ msgid "You can't reject this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/picture.ex:71
#: lib/graphql/resolvers/media.ex:62
msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:167
#: lib/graphql/resolvers/group.ex:164
msgid "Profile is not administrator for the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:239
msgid "You can't edit this event."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:241
#: lib/graphql/resolvers/event.ex:242
msgid "You can't attribute this event to this profile."
msgstr ""
@ -826,21 +810,27 @@ msgid "You don't have the right to remove this member."
msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
#: lib/mobilizon/actors/actor.ex:351
msgid "This username is already taken."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/discussion.ex:72
#: lib/graphql/resolvers/discussion.ex:73
msgid "You must provide either an ID or a slug to access a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/event.ex:199
#: lib/graphql/resolvers/event.ex:200
msgid "Organizer profile is not owned by the user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/participant.ex:90
#: lib/graphql/resolvers/participant.ex:89
msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/person.ex:128 lib/graphql/resolvers/person.ex:155
#: lib/graphql/resolvers/person.ex:246
msgid "The provided picture is too heavy"
msgstr ""

View File

@ -5,6 +5,8 @@ defmodule Mobilizon.Service.MetadataTest do
alias Mobilizon.Posts.Post
alias Mobilizon.Service.Metadata
alias Mobilizon.Tombstone
alias Mobilizon.Web.Endpoint
alias Mobilizon.Web.Router.Helpers, as: Routes
use Mobilizon.DataCase
import Mobilizon.Factory
@ -21,7 +23,11 @@ defmodule Mobilizon.Service.MetadataTest do
group.avatar.url
}\" property=\"og:image\"><script type=\"application/ld+json\">{\"@context\":\"http://schema.org\",\"@type\":\"Organization\",\"address\":null,\"name\":\"#{
group.name
}\",\"url\":\"#{group.url}\"}</script>"
}\",\"url\":\"#{group.url}\"}</script><link href=\"#{
Routes.feed_url(Endpoint, :actor, group.preferred_username, "atom")
}\" rel=\"alternate\" title=\"#{group.name}'s feed\" type=\"application/atom+xml\"><link href=\"#{
Routes.feed_url(Endpoint, :actor, group.preferred_username, "ics")
}\" rel=\"alternate\" title=\"#{group.name}'s feed\" type=\"text/calendar\">"
assert group
|> Map.put(:avatar, nil)
@ -33,7 +39,11 @@ defmodule Mobilizon.Service.MetadataTest do
group.preferred_username
}\" property=\"profile:username\"><meta content=\"summary\" property=\"twitter:card\"><script type=\"application/ld+json\">{\"@context\":\"http://schema.org\",\"@type\":\"Organization\",\"address\":null,\"name\":\"#{
group.name
}\",\"url\":\"#{group.url}\"}</script>"
}\",\"url\":\"#{group.url}\"}</script><link href=\"#{
Routes.feed_url(Endpoint, :actor, group.preferred_username, "atom")
}\" rel=\"alternate\" title=\"#{group.name}'s feed\" type=\"application/atom+xml\"><link href=\"#{
Routes.feed_url(Endpoint, :actor, group.preferred_username, "ics")
}\" rel=\"alternate\" title=\"#{group.name}'s feed\" type=\"text/calendar\">"
end
test "that is not a group doesn't give anything" do

View File

@ -3,6 +3,7 @@ defmodule Mobilizon.Web.FeedControllerTest do
import Mobilizon.Factory
alias Mobilizon.Config
alias Mobilizon.Web.Endpoint
alias Mobilizon.Web.Router.Helpers, as: Routes
@ -28,7 +29,8 @@ defmodule Mobilizon.Web.FeedControllerTest do
{:ok, feed} = ElixirFeedParser.parse(conn.resp_body)
assert feed.title == actor.preferred_username <> "'s public events feed on Mobilizon"
assert feed.title ==
actor.preferred_username <> "'s public events feed on #{Config.instance_name()}"
[entry1, entry2] = entries = feed.entries
@ -232,7 +234,7 @@ defmodule Mobilizon.Web.FeedControllerTest do
{:ok, feed} = ElixirFeedParser.parse(conn.resp_body)
assert feed.title == "Feed for #{user.email} on Mobilizon"
assert feed.title == "Feed for #{user.email} on #{Config.instance_name()}"
entries = feed.entries
@ -267,7 +269,8 @@ defmodule Mobilizon.Web.FeedControllerTest do
{:ok, feed} = ElixirFeedParser.parse(conn.resp_body)
assert feed.title == "#{actor1.preferred_username}'s private events feed on Mobilizon"
assert feed.title ==
"#{actor1.preferred_username}'s private events feed on #{Config.instance_name()}"
[entry] = feed.entries
assert entry.title == event1.title