Forbid creating usernames with uppercase characters

We don't actually enforce anything on the ActivityPub level, only
user-facing interfaces

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2020-11-17 19:14:55 +01:00
parent c28dae45bb
commit e6077d0dc3
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
55 changed files with 6436 additions and 4808 deletions

View File

@ -231,7 +231,7 @@
"On {date} starting at {startTime}": "On {date} starting at {startTime}", "On {date} starting at {startTime}": "On {date} starting at {startTime}",
"On {date}": "On {date}", "On {date}": "On {date}",
"Only accessible through link (private)": "Only accessible through link (private)", "Only accessible through link (private)": "Only accessible through link (private)",
"Only alphanumeric characters and underscores are supported.": "Only alphanumeric characters and underscores are supported.", "Only alphanumeric lowercased characters and underscores are supported.": "Only alphanumeric lowercased characters and underscores are supported.",
"Open": "Open", "Open": "Open",
"Opened reports": "Opened reports", "Opened reports": "Opened reports",
"Or": "Or", "Or": "Or",

View File

@ -480,7 +480,7 @@
"Only accessible through link": "Accessible uniquement par le lien", "Only accessible through link": "Accessible uniquement par le lien",
"Only accessible through link (private)": "Uniquement accessible par lien (privé)", "Only accessible through link (private)": "Uniquement accessible par lien (privé)",
"Only accessible to members of the group": "Accessible uniquement aux membres du groupe", "Only accessible to members of the group": "Accessible uniquement aux membres du groupe",
"Only alphanumeric characters and underscores are supported.": "Seuls les caractères alphanumériques et les tirets bas sont acceptés.", "Only alphanumeric lowercased characters and underscores are supported.": "Seuls les caractères alphanumériques minuscules et les tirets bas sont acceptés.",
"Only group moderators can create, edit and delete posts.": "Seul·e·s les modérateur·rice·s du groupe peuvent créer, éditer et supprimer des billets.", "Only group moderators can create, edit and delete posts.": "Seul·e·s les modérateur·rice·s du groupe peuvent créer, éditer et supprimer des billets.",
"Open": "Ouvert", "Open": "Ouvert",
"Opened reports": "Signalements ouverts", "Opened reports": "Signalements ouverts",

View File

@ -26,12 +26,21 @@
:type="errors.preferred_username ? 'is-danger' : null" :type="errors.preferred_username ? 'is-danger' : null"
:message="errors.preferred_username" :message="errors.preferred_username"
> >
<b-field> <b-field
:message="
$t('Only alphanumeric lowercased characters and underscores are supported.')
"
>
<b-input <b-input
aria-required="true" aria-required="true"
required required
expanded expanded
v-model="identity.preferredUsername" v-model="identity.preferredUsername"
:validation-message="
identity.preferredUsername
? $t('Only alphanumeric lowercased characters and underscores are supported.')
: null
"
/> />
<p class="control"> <p class="control">
<span class="button is-static">@{{ host }}</span> <span class="button is-static">@{{ host }}</span>
@ -164,7 +173,7 @@ export default class Register extends mixins(identityEditionMixin) {
} catch (errorCatched) { } catch (errorCatched) {
this.errors = errorCatched.graphQLErrors.reduce( this.errors = errorCatched.graphQLErrors.reduce(
(acc: { [key: string]: string }, error: any) => { (acc: { [key: string]: string }, error: any) => {
acc[error.details] = error.message; acc[error.details || error.field] = error.message;
return acc; return acc;
}, },
{} {}

View File

@ -181,7 +181,9 @@ export default class EditIdentity extends mixins(identityEditionMixin) {
get message(): string | null { get message(): string | null {
if (this.isUpdate) return null; if (this.isUpdate) return null;
return this.$t("Only alphanumeric characters and underscores are supported.") as string; return this.$t(
"Only alphanumeric lowercased characters and underscores are supported."
) as string;
} }
get avatarUrl(): string | null { get avatarUrl(): string | null {

View File

@ -1,6 +1,6 @@
<template> <template>
<section class="section container"> <section class="section container">
<h1>{{ $t("Create a new group") }}</h1> <h1 class="title">{{ $t("Create a new group") }}</h1>
<b-message type="is-danger" v-for="(value, index) in errors" :key="index"> <b-message type="is-danger" v-for="(value, index) in errors" :key="index">
{{ value }} {{ value }}
@ -14,8 +14,23 @@
<div class="field"> <div class="field">
<label class="label">{{ $t("Federated Group Name") }}</label> <label class="label">{{ $t("Federated Group Name") }}</label>
<div class="field-body"> <div class="field-body">
<b-field> <b-field
<b-input aria-required="true" required expanded v-model="group.preferredUsername" /> :message="$t('Only alphanumeric lowercased characters and underscores are supported.')"
>
<b-input
ref="preferredUsernameInput"
aria-required="true"
required
expanded
v-model="group.preferredUsername"
pattern="[a-z0-9_]+"
:useHtml5Validation="true"
:validation-message="
group.preferredUsername
? $t('Only alphanumeric lowercased characters and underscores are supported.')
: null
"
/>
<p class="control"> <p class="control">
<span class="button is-static">@{{ host }}</span> <span class="button is-static">@{{ host }}</span>
</p> </p>
@ -36,12 +51,12 @@
</b-field> </b-field>
<div> <div>
{{ $t("Avatar") }} <b>{{ $t("Avatar") }}</b>
<picture-upload :textFallback="$t('Avatar')" v-model="avatarFile" /> <picture-upload :textFallback="$t('Avatar')" v-model="avatarFile" />
</div> </div>
<div> <div>
{{ $t("Banner") }} <b>{{ $t("Banner") }}</b>
<picture-upload :textFallback="$t('Banner')" v-model="bannerFile" /> <picture-upload :textFallback="$t('Banner')" v-model="bannerFile" />
</div> </div>

View File

@ -95,7 +95,7 @@ describe("Login", () => {
.find("textarea") .find("textarea")
.type("This shouln't work because it' using a dupublicated username"); .type("This shouln't work because it' using a dupublicated username");
cy.get(".control.has-text-centered").contains("button", "Create my profile").click(); cy.get(".control.has-text-centered").contains("button", "Create my profile").click();
cy.contains(".help.is-danger", "Username is already taken"); cy.contains(".help.is-danger", "This username is already taken.");
cy.get("form .field input").first(0).clear().type("test_user_2"); cy.get("form .field input").first(0).clear().type("test_user_2");
cy.get("form .field input").eq(1).type("Not"); cy.get("form .field input").eq(1).type("Not");

View File

@ -123,6 +123,7 @@ defmodule Mobilizon.GraphQL.Resolvers.Group do
) do ) do
with creator_actor_id <- Map.get(args, :creator_actor_id), with creator_actor_id <- Map.get(args, :creator_actor_id),
{:is_owned, %Actor{} = creator_actor} <- User.owns_actor(user, creator_actor_id), {:is_owned, %Actor{} = creator_actor} <- User.owns_actor(user, creator_actor_id),
args <- Map.update(args, :preferred_username, "", &String.downcase/1),
args <- Map.put(args, :creator_actor, creator_actor), args <- Map.put(args, :creator_actor, creator_actor),
args <- save_attached_pictures(args), args <- save_attached_pictures(args),
{:ok, _activity, %Actor{type: :Group} = group} <- {:ok, _activity, %Actor{type: :Group} = group} <-

View File

@ -120,7 +120,8 @@ defmodule Mobilizon.GraphQL.Resolvers.Person do
) do ) do
args = Map.put(args, :user_id, user.id) args = Map.put(args, :user_id, user.id)
with args <- save_attached_pictures(args), with args <- Map.update(args, :preferred_username, "", &String.downcase/1),
args <- save_attached_pictures(args),
{:ok, %Actor{} = new_person} <- Actors.new_person(args) do {:ok, %Actor{} = new_person} <- Actors.new_person(args) do
{:ok, new_person} {:ok, new_person}
end end
@ -220,6 +221,7 @@ defmodule Mobilizon.GraphQL.Resolvers.Person do
user_actor <- Users.get_actor_for_user(user), user_actor <- Users.get_actor_for_user(user),
no_actor <- is_nil(user_actor), no_actor <- is_nil(user_actor),
{:no_actor, true} <- {:no_actor, no_actor}, {:no_actor, true} <- {:no_actor, no_actor},
args <- Map.update(args, :preferred_username, "", &String.downcase/1),
args <- Map.put(args, :user_id, user.id), args <- Map.put(args, :user_id, user.id),
args <- save_attached_pictures(args), args <- save_attached_pictures(args),
{:ok, %Actor{} = new_person} <- Actors.new_person(args, true) do {:ok, %Actor{} = new_person} <- Actors.new_person(args, true) do

View File

@ -18,6 +18,7 @@ defmodule Mobilizon.Actors.Actor do
alias Mobilizon.Web.Endpoint alias Mobilizon.Web.Endpoint
alias Mobilizon.Web.Router.Helpers, as: Routes alias Mobilizon.Web.Router.Helpers, as: Routes
import Mobilizon.Web.Gettext, only: [dgettext: 2]
require Logger require Logger
@ -337,7 +338,11 @@ defmodule Mobilizon.Actors.Actor do
) do ) do
with nil <- Map.get(changes, :domain, nil), with nil <- Map.get(changes, :domain, nil),
%__MODULE__{preferred_username: _} <- Actors.get_local_actor_by_name(username) do %__MODULE__{preferred_username: _} <- Actors.get_local_actor_by_name(username) do
add_error(changeset, :preferred_username, "Username is already taken") add_error(
changeset,
:preferred_username,
dgettext("errors", "This username is already taken.")
)
else else
_ -> changeset _ -> changeset
end end

View File

@ -115,17 +115,17 @@ msgid "You created an account on %{host} with this email address. You are one cl
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:113 #: lib/web/email/participation.ex:112
msgid "Your participation to event %{title} has been approved" msgid "Your participation to event %{title} has been approved"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:71 #: lib/web/email/participation.ex:70
msgid "Your participation to event %{title} has been rejected" msgid "Your participation to event %{title} has been rejected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/event.ex:36 #: lib/web/email/event.ex:37
msgid "Event %{title} has been updated" msgid "Event %{title} has been updated"
msgstr "تم تحديث الفعالية %{title}" msgstr "تم تحديث الفعالية %{title}"
@ -145,7 +145,7 @@ msgid "Warning"
msgstr "تنبيه" msgstr "تنبيه"
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:135 #: lib/web/email/participation.ex:134
msgid "Confirm your participation to event %{title}" msgid "Confirm your participation to event %{title}"
msgstr "" msgstr ""
@ -417,7 +417,7 @@ msgstr[5] ""
#, elixir-format #, elixir-format
#: lib/web/templates/email/notification_each_week.html.eex:38 #: lib/web/templates/email/notification_each_week.html.eex:38
#: lib/web/templates/email/notification_each_week.text.eex:4 #: lib/web/templates/email/notification_each_week.text.eex:3
msgid "You have one event this week:" msgid "You have one event this week:"
msgid_plural "You have %{total} events this week:" msgid_plural "You have %{total} events this week:"
msgstr[0] "" msgstr[0] ""
@ -428,7 +428,7 @@ msgstr[4] ""
msgstr[5] "" msgstr[5] ""
#, elixir-format #, elixir-format
#: lib/service/metadata/utils.ex:27 #: lib/service/metadata/utils.ex:52
msgid "The event organizer didn't add any description." msgid "The event organizer didn't add any description."
msgstr "" msgstr ""
@ -783,7 +783,7 @@ msgstr ""
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 #: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133 #: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:11 lib/web/templates/email/on_day_notification.html.eex:70
#: lib/web/templates/email/on_day_notification.text.eex:14 #: lib/web/templates/email/on_day_notification.text.eex:14
msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button." msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button."
msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button." msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button."
@ -1267,7 +1267,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
msgstr "لقد قمتَ بتقديم طلب للمشاركة في فعالية %{title}." msgstr "لقد قمتَ بتقديم طلب للمشاركة في فعالية %{title}."
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:92 #: lib/web/email/participation.ex:91
msgid "Your participation to event %{title} has been confirmed" msgid "Your participation to event %{title} has been confirmed"
msgstr "" msgstr ""
@ -1394,7 +1394,7 @@ msgstr ""
msgid "We're sorry, but something went wrong on our end." msgid "We're sorry, but something went wrong on our end."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/web/templates/email/email.html.eex:88 #: lib/web/templates/email/email.html.eex:88
#: lib/web/templates/email/email.text.eex:4 #: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon." msgid "This is a demonstration site to test Mobilizon."

View File

@ -124,17 +124,17 @@ msgid "Cannot refresh the token"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:139 #: lib/graphql/resolvers/group.ex:137
msgid "Creator profile is not owned by the current user" msgid "Creator profile is not owned by the current user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:203 #: lib/graphql/resolvers/group.ex:201
msgid "Current profile is not a member of this group" msgid "Current profile is not a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:207 #: lib/graphql/resolvers/group.ex:205
msgid "Current profile is not an administrator of the selected group" msgid "Current profile is not an administrator of the selected group"
msgstr "" msgstr ""
@ -144,13 +144,13 @@ msgid "Error while saving user settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200 #: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83 #: lib/graphql/resolvers/group.ex:229 lib/graphql/resolvers/group.ex:264 lib/graphql/resolvers/member.ex:83
msgid "Group not found" msgid "Group not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:69 #: lib/graphql/resolvers/group.ex:66
msgid "Group with ID %{id} not found" msgid "Group with ID %{id} not found"
msgstr "" msgstr ""
@ -160,7 +160,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:280 #: lib/graphql/resolvers/group.ex:261
msgid "Member not found" msgid "Member not found"
msgstr "" msgstr ""
@ -176,19 +176,18 @@ msgid "No user to validate with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76 #: lib/graphql/resolvers/person.ex:231 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219 #: lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found" msgid "No user with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:245 #: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/member.ex:80
#: lib/graphql/resolvers/member.ex:80 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 #: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:155 lib/graphql/resolvers/person.ex:189
#: lib/graphql/resolvers/person.ex:191 lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288 #: lib/graphql/resolvers/person.ex:255 lib/graphql/resolvers/person.ex:284 lib/graphql/resolvers/person.ex:297
#: lib/graphql/resolvers/person.ex:301 lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110 #: lib/graphql/resolvers/picture.ex:72 lib/graphql/resolvers/report.ex:107 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:57
msgid "Profile is not owned by authenticated user" msgid "Profile is not owned by authenticated user"
msgstr "" msgstr ""
@ -254,22 +253,22 @@ msgid "User requested is not logged-in"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:254 #: lib/graphql/resolvers/group.ex:235
msgid "You are already a member of this group" msgid "You are already a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:287 #: lib/graphql/resolvers/group.ex:268
msgid "You can't leave this group because you are the only administrator" msgid "You can't leave this group because you are the only administrator"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:251 #: lib/graphql/resolvers/group.ex:232
msgid "You cannot join this group" msgid "You cannot join this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:97 #: lib/graphql/resolvers/group.ex:94
msgid "You may not list groups unless moderator." msgid "You may not list groups unless moderator."
msgstr "" msgstr ""
@ -284,7 +283,7 @@ msgid "You need to be logged-in to change your password"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:212 #: lib/graphql/resolvers/group.ex:210
msgid "You need to be logged-in to delete a group" msgid "You need to be logged-in to delete a group"
msgstr "" msgstr ""
@ -294,17 +293,17 @@ msgid "You need to be logged-in to delete your account"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:259 #: lib/graphql/resolvers/group.ex:240
msgid "You need to be logged-in to join a group" msgid "You need to be logged-in to join a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:292 #: lib/graphql/resolvers/group.ex:273
msgid "You need to be logged-in to leave a group" msgid "You need to be logged-in to leave a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:177 #: lib/graphql/resolvers/group.ex:175
msgid "You need to be logged-in to update a group" msgid "You need to be logged-in to update a group"
msgstr "" msgstr ""
@ -364,22 +363,22 @@ msgid "Profile already suspended"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:96 #: lib/graphql/resolvers/participant.ex:93
msgid "A valid email is required by your instance" msgid "A valid email is required by your instance"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:90 #: lib/graphql/resolvers/participant.ex:87
msgid "Anonymous participation is not enabled" msgid "Anonymous participation is not enabled"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:188 #: lib/graphql/resolvers/person.ex:186
msgid "Cannot remove the last administrator of a group" msgid "Cannot remove the last administrator of a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:185 #: lib/graphql/resolvers/person.ex:183
msgid "Cannot remove the last identity of a user" msgid "Cannot remove the last identity of a user"
msgstr "" msgstr ""
@ -394,17 +393,17 @@ msgid "Discussion not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87 #: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
msgid "Error while saving report" msgid "Error while saving report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:113 #: lib/graphql/resolvers/report.ex:110
msgid "Error while updating report" msgid "Error while updating report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:131 #: lib/graphql/resolvers/participant.ex:128
msgid "Event id not found" msgid "Event id not found"
msgstr "" msgstr ""
@ -415,23 +414,23 @@ msgid "Event not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:87 #: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160 #: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
msgid "Event with this ID %{id} doesn't exist" msgid "Event with this ID %{id} doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:103 #: lib/graphql/resolvers/participant.ex:100
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234 #: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
msgid "Moderator profile is not owned by authenticated user" msgid "Moderator profile is not owned by authenticated user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:181 #: lib/graphql/resolvers/discussion.ex:184
msgid "No discussion with ID %{id}" msgid "No discussion with ID %{id}"
msgstr "" msgstr ""
@ -441,7 +440,7 @@ msgid "No profile found for user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66 #: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token" msgid "No such feed token"
msgstr "" msgstr ""
@ -451,14 +450,14 @@ msgid "Organizer profile is not owned by the user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:244 #: lib/graphql/resolvers/participant.ex:241
msgid "Participant already has role %{role}" msgid "Participant already has role %{role}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:173 #: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237 #: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:234
#: lib/graphql/resolvers/participant.ex:247 #: lib/graphql/resolvers/participant.ex:244
msgid "Participant not found" msgid "Participant not found"
msgstr "" msgstr ""
@ -473,7 +472,7 @@ msgid "Person with username %{username} not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:45 #: lib/graphql/resolvers/picture.ex:42
msgid "Picture with ID %{id} was not found" msgid "Picture with ID %{id} was not found"
msgstr "" msgstr ""
@ -507,12 +506,12 @@ msgid "Profile is not member of group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182 #: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
msgid "Profile not found" msgid "Profile not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241 #: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
msgid "Provided moderator profile doesn't have permission on this event" msgid "Provided moderator profile doesn't have permission on this event"
msgstr "" msgstr ""
@ -527,12 +526,12 @@ msgid "Resource doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:124 #: lib/graphql/resolvers/participant.ex:121
msgid "The event has already reached its maximum capacity" msgid "The event has already reached its maximum capacity"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:267 #: lib/graphql/resolvers/participant.ex:264
msgid "This token is invalid" msgid "This token is invalid"
msgstr "" msgstr ""
@ -548,32 +547,32 @@ msgid "Todo list doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72 #: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist" msgid "Token does not exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69 #: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID" msgid "Token is not a valid UUID"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323 #: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
msgid "User not found" msgid "User not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:235 #: lib/graphql/resolvers/person.ex:234
msgid "You already have a profile for this user" msgid "You already have a profile for this user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:134 #: lib/graphql/resolvers/participant.ex:131
msgid "You are already a participant of this event" msgid "You are already a participant of this event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:185 #: lib/graphql/resolvers/discussion.ex:188
msgid "You are not a member of the group the discussion belongs to" msgid "You are not a member of the group the discussion belongs to"
msgstr "" msgstr ""
@ -593,7 +592,7 @@ msgid "You are not allowed to create a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:44 #: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected" msgid "You are not allowed to create a feed token if not connected"
msgstr "" msgstr ""
@ -603,7 +602,7 @@ msgid "You are not allowed to delete a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:81 #: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected" msgid "You are not allowed to delete a feed token if not connected"
msgstr "" msgstr ""
@ -613,8 +612,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:167 #: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:196 #: lib/graphql/resolvers/participant.ex:193
msgid "You can't leave event because you're the only event creator participant" msgid "You can't leave event because you're the only event creator participant"
msgstr "" msgstr ""
@ -639,7 +638,7 @@ msgid "You cannot invite to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:75 #: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token" msgid "You don't have permission to delete this token"
msgstr "" msgstr ""
@ -654,7 +653,7 @@ msgid "You need to be logged-in and a moderator to list reports"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:118 #: lib/graphql/resolvers/report.ex:115
msgid "You need to be logged-in and a moderator to update a report" msgid "You need to be logged-in and a moderator to update a report"
msgstr "" msgstr ""
@ -664,17 +663,17 @@ msgid "You need to be logged-in and a moderator to view a report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:220 #: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings" msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:205 #: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics" msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:244 #: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings" msgid "You need to be logged-in and an administrator to save admin settings"
msgstr "" msgstr ""
@ -699,7 +698,7 @@ msgid "You need to be logged-in to create posts"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92 #: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
msgid "You need to be logged-in to create reports" msgid "You need to be logged-in to create reports"
msgstr "" msgstr ""
@ -724,12 +723,12 @@ msgid "You need to be logged-in to delete resources"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:108 #: lib/graphql/resolvers/participant.ex:105
msgid "You need to be logged-in to join an event" msgid "You need to be logged-in to join an event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:207 #: lib/graphql/resolvers/participant.ex:204
msgid "You need to be logged-in to leave an event" msgid "You need to be logged-in to leave an event"
msgstr "" msgstr ""
@ -754,12 +753,12 @@ msgid "You need to be logged-in to view a resource preview"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:86 #: lib/graphql/resolvers/picture.ex:83
msgid "You need to login to upload a picture" msgid "You need to login to upload a picture"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:84 #: lib/graphql/resolvers/report.ex:81
msgid "Reporter ID does not match the anonymous profile id" msgid "Reporter ID does not match the anonymous profile id"
msgstr "" msgstr ""
@ -774,7 +773,7 @@ msgid "Parent resource doesn't belong to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:93 #: lib/graphql/resolvers/participant.ex:90
msgid "Profile ID provided is not the anonymous profile one" msgid "Profile ID provided is not the anonymous profile one"
msgstr "" msgstr ""
@ -849,12 +848,12 @@ msgid "You can't reject this invitation with this profile."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:78 #: lib/graphql/resolvers/picture.ex:75
msgid "File doesn't have an allowed MIME type." msgid "File doesn't have an allowed MIME type."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:172 #: lib/graphql/resolvers/group.ex:170
msgid "Profile is not administrator for the group" msgid "Profile is not administrator for the group"
msgstr "" msgstr ""
@ -882,3 +881,8 @@ msgstr ""
#: lib/graphql/resolvers/member.ex:189 #: lib/graphql/resolvers/member.ex:189
msgid "You don't have the right to remove this member." msgid "You don't have the right to remove this member."
msgstr "" msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
msgid "This username is already taken."
msgstr ""

View File

@ -112,17 +112,17 @@ msgid "You created an account on %{host} with this email address. You are one cl
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:113 #: lib/web/email/participation.ex:112
msgid "Your participation to event %{title} has been approved" msgid "Your participation to event %{title} has been approved"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:71 #: lib/web/email/participation.ex:70
msgid "Your participation to event %{title} has been rejected" msgid "Your participation to event %{title} has been rejected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/event.ex:36 #: lib/web/email/event.ex:37
msgid "Event %{title} has been updated" msgid "Event %{title} has been updated"
msgstr "" msgstr ""
@ -142,7 +142,7 @@ msgid "Warning"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:135 #: lib/web/email/participation.ex:134
msgid "Confirm your participation to event %{title}" msgid "Confirm your participation to event %{title}"
msgstr "" msgstr ""
@ -402,7 +402,7 @@ msgstr[2] ""
#, elixir-format #, elixir-format
#: lib/web/templates/email/notification_each_week.html.eex:38 #: lib/web/templates/email/notification_each_week.html.eex:38
#: lib/web/templates/email/notification_each_week.text.eex:4 #: lib/web/templates/email/notification_each_week.text.eex:3
msgid "You have one event this week:" msgid "You have one event this week:"
msgid_plural "You have %{total} events this week:" msgid_plural "You have %{total} events this week:"
msgstr[0] "" msgstr[0] ""
@ -410,7 +410,7 @@ msgstr[1] ""
msgstr[2] "" msgstr[2] ""
#, elixir-format #, elixir-format
#: lib/service/metadata/utils.ex:27 #: lib/service/metadata/utils.ex:52
msgid "The event organizer didn't add any description." msgid "The event organizer didn't add any description."
msgstr "" msgstr ""
@ -765,7 +765,7 @@ msgstr ""
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 #: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133 #: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:11 lib/web/templates/email/on_day_notification.html.eex:70
#: lib/web/templates/email/on_day_notification.text.eex:14 #: lib/web/templates/email/on_day_notification.text.eex:14
msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button." msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button."
msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button." msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button."
@ -1243,7 +1243,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:92 #: lib/web/email/participation.ex:91
msgid "Your participation to event %{title} has been confirmed" msgid "Your participation to event %{title} has been confirmed"
msgstr "" msgstr ""
@ -1370,7 +1370,7 @@ msgstr ""
msgid "We're sorry, but something went wrong on our end." msgid "We're sorry, but something went wrong on our end."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/web/templates/email/email.html.eex:88 #: lib/web/templates/email/email.html.eex:88
#: lib/web/templates/email/email.text.eex:4 #: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon." msgid "This is a demonstration site to test Mobilizon."

View File

@ -98,17 +98,17 @@ msgid "Cannot refresh the token"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:139 #: lib/graphql/resolvers/group.ex:137
msgid "Creator profile is not owned by the current user" msgid "Creator profile is not owned by the current user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:203 #: lib/graphql/resolvers/group.ex:201
msgid "Current profile is not a member of this group" msgid "Current profile is not a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:207 #: lib/graphql/resolvers/group.ex:205
msgid "Current profile is not an administrator of the selected group" msgid "Current profile is not an administrator of the selected group"
msgstr "" msgstr ""
@ -118,13 +118,13 @@ msgid "Error while saving user settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200 #: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83 #: lib/graphql/resolvers/group.ex:229 lib/graphql/resolvers/group.ex:264 lib/graphql/resolvers/member.ex:83
msgid "Group not found" msgid "Group not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:69 #: lib/graphql/resolvers/group.ex:66
msgid "Group with ID %{id} not found" msgid "Group with ID %{id} not found"
msgstr "" msgstr ""
@ -134,7 +134,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:280 #: lib/graphql/resolvers/group.ex:261
msgid "Member not found" msgid "Member not found"
msgstr "" msgstr ""
@ -150,19 +150,18 @@ msgid "No user to validate with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76 #: lib/graphql/resolvers/person.ex:231 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219 #: lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found" msgid "No user with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:245 #: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/member.ex:80
#: lib/graphql/resolvers/member.ex:80 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 #: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:155 lib/graphql/resolvers/person.ex:189
#: lib/graphql/resolvers/person.ex:191 lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288 #: lib/graphql/resolvers/person.ex:255 lib/graphql/resolvers/person.ex:284 lib/graphql/resolvers/person.ex:297
#: lib/graphql/resolvers/person.ex:301 lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110 #: lib/graphql/resolvers/picture.ex:72 lib/graphql/resolvers/report.ex:107 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:57
msgid "Profile is not owned by authenticated user" msgid "Profile is not owned by authenticated user"
msgstr "" msgstr ""
@ -228,22 +227,22 @@ msgid "User requested is not logged-in"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:254 #: lib/graphql/resolvers/group.ex:235
msgid "You are already a member of this group" msgid "You are already a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:287 #: lib/graphql/resolvers/group.ex:268
msgid "You can't leave this group because you are the only administrator" msgid "You can't leave this group because you are the only administrator"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:251 #: lib/graphql/resolvers/group.ex:232
msgid "You cannot join this group" msgid "You cannot join this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:97 #: lib/graphql/resolvers/group.ex:94
msgid "You may not list groups unless moderator." msgid "You may not list groups unless moderator."
msgstr "" msgstr ""
@ -258,7 +257,7 @@ msgid "You need to be logged-in to change your password"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:212 #: lib/graphql/resolvers/group.ex:210
msgid "You need to be logged-in to delete a group" msgid "You need to be logged-in to delete a group"
msgstr "" msgstr ""
@ -268,17 +267,17 @@ msgid "You need to be logged-in to delete your account"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:259 #: lib/graphql/resolvers/group.ex:240
msgid "You need to be logged-in to join a group" msgid "You need to be logged-in to join a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:292 #: lib/graphql/resolvers/group.ex:273
msgid "You need to be logged-in to leave a group" msgid "You need to be logged-in to leave a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:177 #: lib/graphql/resolvers/group.ex:175
msgid "You need to be logged-in to update a group" msgid "You need to be logged-in to update a group"
msgstr "" msgstr ""
@ -338,22 +337,22 @@ msgid "Profile already suspended"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:96 #: lib/graphql/resolvers/participant.ex:93
msgid "A valid email is required by your instance" msgid "A valid email is required by your instance"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:90 #: lib/graphql/resolvers/participant.ex:87
msgid "Anonymous participation is not enabled" msgid "Anonymous participation is not enabled"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:188 #: lib/graphql/resolvers/person.ex:186
msgid "Cannot remove the last administrator of a group" msgid "Cannot remove the last administrator of a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:185 #: lib/graphql/resolvers/person.ex:183
msgid "Cannot remove the last identity of a user" msgid "Cannot remove the last identity of a user"
msgstr "" msgstr ""
@ -368,17 +367,17 @@ msgid "Discussion not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87 #: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
msgid "Error while saving report" msgid "Error while saving report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:113 #: lib/graphql/resolvers/report.ex:110
msgid "Error while updating report" msgid "Error while updating report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:131 #: lib/graphql/resolvers/participant.ex:128
msgid "Event id not found" msgid "Event id not found"
msgstr "" msgstr ""
@ -389,23 +388,23 @@ msgid "Event not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:87 #: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160 #: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
msgid "Event with this ID %{id} doesn't exist" msgid "Event with this ID %{id} doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:103 #: lib/graphql/resolvers/participant.ex:100
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234 #: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
msgid "Moderator profile is not owned by authenticated user" msgid "Moderator profile is not owned by authenticated user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:181 #: lib/graphql/resolvers/discussion.ex:184
msgid "No discussion with ID %{id}" msgid "No discussion with ID %{id}"
msgstr "" msgstr ""
@ -415,7 +414,7 @@ msgid "No profile found for user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66 #: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token" msgid "No such feed token"
msgstr "" msgstr ""
@ -425,14 +424,14 @@ msgid "Organizer profile is not owned by the user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:244 #: lib/graphql/resolvers/participant.ex:241
msgid "Participant already has role %{role}" msgid "Participant already has role %{role}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:173 #: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237 #: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:234
#: lib/graphql/resolvers/participant.ex:247 #: lib/graphql/resolvers/participant.ex:244
msgid "Participant not found" msgid "Participant not found"
msgstr "" msgstr ""
@ -447,7 +446,7 @@ msgid "Person with username %{username} not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:45 #: lib/graphql/resolvers/picture.ex:42
msgid "Picture with ID %{id} was not found" msgid "Picture with ID %{id} was not found"
msgstr "" msgstr ""
@ -481,12 +480,12 @@ msgid "Profile is not member of group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182 #: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
msgid "Profile not found" msgid "Profile not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241 #: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
msgid "Provided moderator profile doesn't have permission on this event" msgid "Provided moderator profile doesn't have permission on this event"
msgstr "" msgstr ""
@ -501,12 +500,12 @@ msgid "Resource doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:124 #: lib/graphql/resolvers/participant.ex:121
msgid "The event has already reached its maximum capacity" msgid "The event has already reached its maximum capacity"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:267 #: lib/graphql/resolvers/participant.ex:264
msgid "This token is invalid" msgid "This token is invalid"
msgstr "" msgstr ""
@ -522,32 +521,32 @@ msgid "Todo list doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72 #: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist" msgid "Token does not exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69 #: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID" msgid "Token is not a valid UUID"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323 #: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
msgid "User not found" msgid "User not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:235 #: lib/graphql/resolvers/person.ex:234
msgid "You already have a profile for this user" msgid "You already have a profile for this user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:134 #: lib/graphql/resolvers/participant.ex:131
msgid "You are already a participant of this event" msgid "You are already a participant of this event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:185 #: lib/graphql/resolvers/discussion.ex:188
msgid "You are not a member of the group the discussion belongs to" msgid "You are not a member of the group the discussion belongs to"
msgstr "" msgstr ""
@ -567,7 +566,7 @@ msgid "You are not allowed to create a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:44 #: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected" msgid "You are not allowed to create a feed token if not connected"
msgstr "" msgstr ""
@ -577,7 +576,7 @@ msgid "You are not allowed to delete a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:81 #: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected" msgid "You are not allowed to delete a feed token if not connected"
msgstr "" msgstr ""
@ -587,8 +586,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:167 #: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:196 #: lib/graphql/resolvers/participant.ex:193
msgid "You can't leave event because you're the only event creator participant" msgid "You can't leave event because you're the only event creator participant"
msgstr "" msgstr ""
@ -613,7 +612,7 @@ msgid "You cannot invite to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:75 #: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token" msgid "You don't have permission to delete this token"
msgstr "" msgstr ""
@ -628,7 +627,7 @@ msgid "You need to be logged-in and a moderator to list reports"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:118 #: lib/graphql/resolvers/report.ex:115
msgid "You need to be logged-in and a moderator to update a report" msgid "You need to be logged-in and a moderator to update a report"
msgstr "" msgstr ""
@ -638,17 +637,17 @@ msgid "You need to be logged-in and a moderator to view a report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:220 #: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings" msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:205 #: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics" msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:244 #: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings" msgid "You need to be logged-in and an administrator to save admin settings"
msgstr "" msgstr ""
@ -673,7 +672,7 @@ msgid "You need to be logged-in to create posts"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92 #: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
msgid "You need to be logged-in to create reports" msgid "You need to be logged-in to create reports"
msgstr "" msgstr ""
@ -698,12 +697,12 @@ msgid "You need to be logged-in to delete resources"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:108 #: lib/graphql/resolvers/participant.ex:105
msgid "You need to be logged-in to join an event" msgid "You need to be logged-in to join an event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:207 #: lib/graphql/resolvers/participant.ex:204
msgid "You need to be logged-in to leave an event" msgid "You need to be logged-in to leave an event"
msgstr "" msgstr ""
@ -728,12 +727,12 @@ msgid "You need to be logged-in to view a resource preview"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:86 #: lib/graphql/resolvers/picture.ex:83
msgid "You need to login to upload a picture" msgid "You need to login to upload a picture"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:84 #: lib/graphql/resolvers/report.ex:81
msgid "Reporter ID does not match the anonymous profile id" msgid "Reporter ID does not match the anonymous profile id"
msgstr "" msgstr ""
@ -748,7 +747,7 @@ msgid "Parent resource doesn't belong to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:93 #: lib/graphql/resolvers/participant.ex:90
msgid "Profile ID provided is not the anonymous profile one" msgid "Profile ID provided is not the anonymous profile one"
msgstr "" msgstr ""
@ -823,12 +822,12 @@ msgid "You can't reject this invitation with this profile."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:78 #: lib/graphql/resolvers/picture.ex:75
msgid "File doesn't have an allowed MIME type." msgid "File doesn't have an allowed MIME type."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:172 #: lib/graphql/resolvers/group.ex:170
msgid "Profile is not administrator for the group" msgid "Profile is not administrator for the group"
msgstr "" msgstr ""
@ -856,3 +855,8 @@ msgstr ""
#: lib/graphql/resolvers/member.ex:189 #: lib/graphql/resolvers/member.ex:189
msgid "You don't have the right to remove this member." msgid "You don't have the right to remove this member."
msgstr "" msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
msgid "This username is already taken."
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -93,767 +93,771 @@ msgstr "ha de ser superior o igual a %{number}"
msgid "must be equal to %{number}" msgid "must be equal to %{number}"
msgstr "ha de ser igual a %{number}" msgstr "ha de ser igual a %{number}"
#: lib/graphql/resolvers/user.ex:103
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:103
msgid "Cannot refresh the token" msgid "Cannot refresh the token"
msgstr "No s'ha pogut actualitzar el codi d'accés" msgstr "No s'ha pogut actualitzar el codi d'accés"
#: lib/graphql/resolvers/group.ex:139
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:137
msgid "Creator profile is not owned by the current user" msgid "Creator profile is not owned by the current user"
msgstr "El perfil del creador no pertany a l'usuària actual" msgstr "El perfil del creador no pertany a l'usuària actual"
#: lib/graphql/resolvers/group.ex:203
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:201
msgid "Current profile is not a member of this group" msgid "Current profile is not a member of this group"
msgstr "El perfil actual no pertany a aquest grup" msgstr "El perfil actual no pertany a aquest grup"
#: lib/graphql/resolvers/group.ex:207
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:205
msgid "Current profile is not an administrator of the selected group" msgid "Current profile is not an administrator of the selected group"
msgstr "El perfil actual no administra el grup seleccionat" msgstr "El perfil actual no administra el grup seleccionat"
#: lib/graphql/resolvers/user.ex:512
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:512
msgid "Error while saving user settings" msgid "Error while saving user settings"
msgstr "No s'han pogut desar les preferències" msgstr "No s'han pogut desar les preferències"
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:229 lib/graphql/resolvers/group.ex:264 lib/graphql/resolvers/member.ex:83
msgid "Group not found" msgid "Group not found"
msgstr "No s'ha trobat el grup" msgstr "No s'ha trobat el grup"
#: lib/graphql/resolvers/group.ex:69
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:66
msgid "Group with ID %{id} not found" msgid "Group with ID %{id} not found"
msgstr "No s'ha trobat el grup amb identificador %{id}" msgstr "No s'ha trobat el grup amb identificador %{id}"
#: lib/graphql/resolvers/user.ex:83
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:83
msgid "Impossible to authenticate, either your email or password are invalid." 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." msgstr "No t'hem pogut autenticar. El teu correu o contrasenya són incorrectes."
#: lib/graphql/resolvers/group.ex:280
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:261
msgid "Member not found" msgid "Member not found"
msgstr "No s'ha trobat el/la membre" msgstr "No s'ha trobat el/la membre"
#, elixir-format
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88 #: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
#: lib/graphql/resolvers/user.ex:417 #: lib/graphql/resolvers/user.ex:417
#, elixir-format
msgid "No profile found for the moderator user" msgid "No profile found for the moderator user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:195
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:195
msgid "No user to validate with this email was found" msgid "No user to validate with this email was found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:231 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found" msgid "No user with this email was found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/member.ex:80 lib/graphql/resolvers/participant.ex:29
#: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157
#: lib/graphql/resolvers/person.ex:191 lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288
#: lib/graphql/resolvers/person.ex:301 lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110
#: lib/graphql/resolvers/todos.ex:57
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/member.ex:80
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:155 lib/graphql/resolvers/person.ex:189
#: lib/graphql/resolvers/person.ex:255 lib/graphql/resolvers/person.ex:284 lib/graphql/resolvers/person.ex:297
#: lib/graphql/resolvers/picture.ex:72 lib/graphql/resolvers/report.ex:107 lib/graphql/resolvers/todos.ex:57
msgid "Profile is not owned by authenticated user" msgid "Profile is not owned by authenticated user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:125
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:125
msgid "Registrations are not open" msgid "Registrations are not open"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:330
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:330
msgid "The current password is invalid" msgid "The current password is invalid"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:382
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:382
msgid "The new email doesn't seem to be valid" msgid "The new email doesn't seem to be valid"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:379
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:379
msgid "The new email must be different" msgid "The new email must be different"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:333
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:333
msgid "The new password must be different" msgid "The new password must be different"
msgstr "" msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439 #: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
#: lib/graphql/resolvers/user.ex:442 #: lib/graphql/resolvers/user.ex:442
#, elixir-format
msgid "The password provided is invalid" msgid "The password provided is invalid"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:337
#, elixir-format #, 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." msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:215
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:215
msgid "This user can't reset their password" msgid "This user can't reset their password"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:79
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:79
msgid "This user has been disabled" msgid "This user has been disabled"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:179
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:179
msgid "Unable to validate user" msgid "Unable to validate user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:420
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:420
msgid "User already disabled" msgid "User already disabled"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:487
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:487
msgid "User requested is not logged-in" msgid "User requested is not logged-in"
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:254
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:235
msgid "You are already a member of this group" msgid "You are already a member of this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:287
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:268
msgid "You can't leave this group because you are the only administrator" msgid "You can't leave this group because you are the only administrator"
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:251
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:232
msgid "You cannot join this group" msgid "You cannot join this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:97
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:94
msgid "You may not list groups unless moderator." msgid "You may not list groups unless moderator."
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:387
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:387
msgid "You need to be logged-in to change your email" msgid "You need to be logged-in to change your email"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:345
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:345
msgid "You need to be logged-in to change your password" msgid "You need to be logged-in to change your password"
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:212
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:210
msgid "You need to be logged-in to delete a group" msgid "You need to be logged-in to delete a group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:447
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:447
msgid "You need to be logged-in to delete your account" msgid "You need to be logged-in to delete your account"
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:259
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:240
msgid "You need to be logged-in to join a group" msgid "You need to be logged-in to join a group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:292
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:273
msgid "You need to be logged-in to leave a group" msgid "You need to be logged-in to leave a group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:177
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:175
msgid "You need to be logged-in to update a group" msgid "You need to be logged-in to update a group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:58
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users" msgid "You need to have admin access to list users"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:108
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token" msgid "You need to have an existing token to get a refresh token"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
msgid "You requested again a confirmation email too soon" msgid "You requested again a confirmation email too soon"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:128
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:128
msgid "Your email is not on the allowlist" msgid "Your email is not on the allowlist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
msgid "Error while performing background task" msgid "Error while performing background task"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:27
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:27
msgid "No profile found with this ID" msgid "No profile found with this ID"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
msgid "No remote profile found with this ID" msgid "No remote profile found with this ID"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:69
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:69
msgid "Only moderators and administrators can suspend a profile" msgid "Only moderators and administrators can suspend a profile"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:99
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:99
msgid "Only moderators and administrators can unsuspend a profile" msgid "Only moderators and administrators can unsuspend a profile"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:24
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:24
msgid "Only remote profiles may be refreshed" msgid "Only remote profiles may be refreshed"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:61
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:61
msgid "Profile already suspended" msgid "Profile already suspended"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:96
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:93
msgid "A valid email is required by your instance" msgid "A valid email is required by your instance"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:90
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:87
msgid "Anonymous participation is not enabled" msgid "Anonymous participation is not enabled"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:188
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:186
msgid "Cannot remove the last administrator of a group" msgid "Cannot remove the last administrator of a group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:185
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:183
msgid "Cannot remove the last identity of a user" msgid "Cannot remove the last identity of a user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:109
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:109
msgid "Comment is already deleted" msgid "Comment is already deleted"
msgstr "" msgstr ""
#: lib/graphql/resolvers/discussion.ex:61
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
msgid "Discussion not found" msgid "Discussion not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
msgid "Error while saving report" msgid "Error while saving report"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:113
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:110
msgid "Error while updating report" msgid "Error while updating report"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:131
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:128
msgid "Event id not found" msgid "Event id not found"
msgstr "" msgstr ""
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238 #: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:283 #: lib/graphql/resolvers/event.ex:283
#, elixir-format
msgid "Event not found" msgid "Event not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
msgid "Event with this ID %{id} doesn't exist" msgid "Event with this ID %{id} doesn't exist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:103
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:100
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
msgid "Moderator profile is not owned by authenticated user" msgid "Moderator profile is not owned by authenticated user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/discussion.ex:181
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:184
msgid "No discussion with ID %{id}" msgid "No discussion with ID %{id}"
msgstr "" msgstr ""
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
msgid "No profile found for user" msgid "No profile found for user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:66
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token" msgid "No such feed token"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:202
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:202
msgid "Organizer profile is not owned by the user" msgid "Organizer profile is not owned by the user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:244
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:241
msgid "Participant already has role %{role}" msgid "Participant already has role %{role}"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:173
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237
#: lib/graphql/resolvers/participant.ex:247
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:234
#: lib/graphql/resolvers/participant.ex:244
msgid "Participant not found" msgid "Participant not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:31
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:31
msgid "Person with ID %{id} not found" msgid "Person with ID %{id} not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:52
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:52
msgid "Person with username %{username} not found" msgid "Person with username %{username} not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/picture.ex:45
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:42
msgid "Picture with ID %{id} was not found" msgid "Picture with ID %{id} was not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
msgid "Post ID is not a valid ID" msgid "Post ID is not a valid ID"
msgstr "" msgstr ""
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
msgid "Post doesn't exist" msgid "Post doesn't exist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:86
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:86
msgid "Profile invited doesn't exist" msgid "Profile invited doesn't exist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
msgid "Profile is already a member of this group" msgid "Profile is already a member of this group"
msgstr "" msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171 #: 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:204 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:60 #: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:60
#: lib/graphql/resolvers/todos.ex:84 lib/graphql/resolvers/todos.ex:102 lib/graphql/resolvers/todos.ex:174 #: lib/graphql/resolvers/todos.ex:84 lib/graphql/resolvers/todos.ex:102 lib/graphql/resolvers/todos.ex:174
#: lib/graphql/resolvers/todos.ex:197 lib/graphql/resolvers/todos.ex:225 #: lib/graphql/resolvers/todos.ex:197 lib/graphql/resolvers/todos.ex:225
#, elixir-format
msgid "Profile is not member of group" msgid "Profile is not member of group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
msgid "Profile not found" msgid "Profile not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
msgid "Provided moderator profile doesn't have permission on this event" msgid "Provided moderator profile doesn't have permission on this event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:38
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:38
msgid "Report not found" msgid "Report not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
msgid "Resource doesn't exist" msgid "Resource doesn't exist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:124
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:121
msgid "The event has already reached its maximum capacity" msgid "The event has already reached its maximum capacity"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:267
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:264
msgid "This token is invalid" msgid "This token is invalid"
msgstr "" msgstr ""
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
msgid "Todo doesn't exist" msgid "Todo doesn't exist"
msgstr "" msgstr ""
#, elixir-format
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:194 #: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:194
#: lib/graphql/resolvers/todos.ex:219 #: lib/graphql/resolvers/todos.ex:219
#, elixir-format
msgid "Todo list doesn't exist" msgid "Todo list doesn't exist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:72
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist" msgid "Token does not exist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:69
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID" msgid "Token is not a valid UUID"
msgstr "" msgstr ""
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
msgid "User not found" msgid "User not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:235
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:234
msgid "You already have a profile for this user" msgid "You already have a profile for this user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:134
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:131
msgid "You are already a participant of this event" msgid "You are already a participant of this event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/discussion.ex:185
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:188
msgid "You are not a member of the group the discussion belongs to" msgid "You are not a member of the group the discussion belongs to"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:89
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:89
msgid "You are not a member of this group" msgid "You are not a member of this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:154
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:154
msgid "You are not a moderator or admin for this group" msgid "You are not a moderator or admin for this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:55
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:55
msgid "You are not allowed to create a comment if not connected" msgid "You are not allowed to create a comment if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:44
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected" msgid "You are not allowed to create a feed token if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:117
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:117
msgid "You are not allowed to delete a comment if not connected" msgid "You are not allowed to delete a comment if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:81
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected" msgid "You are not allowed to delete a feed token if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:77
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:77
msgid "You are not allowed to update a comment if not connected" msgid "You are not allowed to update a comment if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:167
#: lib/graphql/resolvers/participant.ex:196
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
msgid "You can't leave event because you're the only event creator participant" msgid "You can't leave event because you're the only event creator participant"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:158
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:158
msgid "You can't set yourself to a lower member role for this group because you are the only administrator" msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:105
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:105
msgid "You cannot delete this comment" msgid "You cannot delete this comment"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:279
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:279
msgid "You cannot delete this event" msgid "You cannot delete this event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:92
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:92
msgid "You cannot invite to this group" msgid "You cannot invite to this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:75
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token" msgid "You don't have permission to delete this token"
msgstr "" msgstr ""
#: lib/graphql/resolvers/admin.ex:52
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:52
msgid "You need to be logged-in and a moderator to list action logs" msgid "You need to be logged-in and a moderator to list action logs"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:28
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:28
msgid "You need to be logged-in and a moderator to list reports" msgid "You need to be logged-in and a moderator to list reports"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:118
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:115
msgid "You need to be logged-in and a moderator to update a report" msgid "You need to be logged-in and a moderator to update a report"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:43
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:43
msgid "You need to be logged-in and a moderator to view a report" msgid "You need to be logged-in and a moderator to view a report"
msgstr "" msgstr ""
#: lib/graphql/resolvers/admin.ex:220
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings" msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "" msgstr ""
#: lib/graphql/resolvers/admin.ex:205
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics" msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "" msgstr ""
#: lib/graphql/resolvers/admin.ex:244
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings" msgid "You need to be logged-in and an administrator to save admin settings"
msgstr "" msgstr ""
#: lib/graphql/resolvers/discussion.ex:66
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:66
msgid "You need to be logged-in to access discussions" msgid "You need to be logged-in to access discussions"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:93
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:93
msgid "You need to be logged-in to access resources" msgid "You need to be logged-in to access resources"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:213
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:213
msgid "You need to be logged-in to create events" msgid "You need to be logged-in to create events"
msgstr "" msgstr ""
#: lib/graphql/resolvers/post.ex:139
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:139
msgid "You need to be logged-in to create posts" msgid "You need to be logged-in to create posts"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
msgid "You need to be logged-in to create reports" msgid "You need to be logged-in to create reports"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:129
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:129
msgid "You need to be logged-in to create resources" msgid "You need to be logged-in to create resources"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:291
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:291
msgid "You need to be logged-in to delete an event" msgid "You need to be logged-in to delete an event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/post.ex:209
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:209
msgid "You need to be logged-in to delete posts" msgid "You need to be logged-in to delete posts"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:187
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:187
msgid "You need to be logged-in to delete resources" msgid "You need to be logged-in to delete resources"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:108
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:105
msgid "You need to be logged-in to join an event" msgid "You need to be logged-in to join an event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:207
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:204
msgid "You need to be logged-in to leave an event" msgid "You need to be logged-in to leave an event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:252
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:252
msgid "You need to be logged-in to update an event" msgid "You need to be logged-in to update an event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/post.ex:176
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:176
msgid "You need to be logged-in to update posts" msgid "You need to be logged-in to update posts"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:158
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:158
msgid "You need to be logged-in to update resources" msgid "You need to be logged-in to update resources"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:210
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:210
msgid "You need to be logged-in to view a resource preview" msgid "You need to be logged-in to view a resource preview"
msgstr "" msgstr ""
#: lib/graphql/resolvers/picture.ex:86
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:83
msgid "You need to login to upload a picture" msgid "You need to login to upload a picture"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:84
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:81
msgid "Reporter ID does not match the anonymous profile id" msgid "Reporter ID does not match the anonymous profile id"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:59
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:59
msgid "Reporter profile is not owned by authenticated user" msgid "Reporter profile is not owned by authenticated user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:121
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group" msgid "Parent resource doesn't belong to this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:93
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:90
msgid "Profile ID provided is not the anonymous profile one" msgid "Profile ID provided is not the anonymous profile one"
msgstr "" msgstr ""
#: lib/mobilizon/users/user.ex:109
#, elixir-format #, elixir-format
#: lib/mobilizon/users/user.ex:109
msgid "The chosen password is too short." msgid "The chosen password is too short."
msgstr "" msgstr ""
#: lib/mobilizon/users/user.ex:138
#, elixir-format #, elixir-format
#: lib/mobilizon/users/user.ex:138
msgid "The registration token is already in use, this looks like an issue on our side." msgid "The registration token is already in use, this looks like an issue on our side."
msgstr "" msgstr ""
#: lib/mobilizon/users/user.ex:104
#, elixir-format #, elixir-format
#: lib/mobilizon/users/user.ex:104
msgid "This email is already used." msgid "This email is already used."
msgstr "" msgstr ""
#: lib/graphql/error.ex:88
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:88
msgid "Post not found" msgid "Post not found"
msgstr "" msgstr ""
#: lib/graphql/error.ex:75
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:75
msgid "Invalid arguments passed" msgid "Invalid arguments passed"
msgstr "" msgstr ""
#: lib/graphql/error.ex:81
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:81
msgid "Invalid credentials" msgid "Invalid credentials"
msgstr "" msgstr ""
#: lib/graphql/error.ex:79
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:79
msgid "Reset your password to login" msgid "Reset your password to login"
msgstr "" msgstr ""
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
msgid "Resource not found" msgid "Resource not found"
msgstr "" msgstr ""
#: lib/graphql/error.ex:92
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:92
msgid "Something went wrong" msgid "Something went wrong"
msgstr "" msgstr ""
#: lib/graphql/error.ex:74
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:74
msgid "Unknown Resource" msgid "Unknown Resource"
msgstr "" msgstr ""
#: lib/graphql/error.ex:84
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:84
msgid "You don't have permission to do this" msgid "You don't have permission to do this"
msgstr "" msgstr ""
#: lib/graphql/error.ex:76
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:76
msgid "You need to be logged in" msgid "You need to be logged in"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:119
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:119
msgid "You can't accept this invitation with this profile." msgid "You can't accept this invitation with this profile."
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:137
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:137
msgid "You can't reject this invitation with this profile." msgid "You can't reject this invitation with this profile."
msgstr "" msgstr ""
#: lib/graphql/resolvers/picture.ex:78
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:75
msgid "File doesn't have an allowed MIME type." msgid "File doesn't have an allowed MIME type."
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:172
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:170
msgid "Profile is not administrator for the group" msgid "Profile is not administrator for the group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:241
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:241
msgid "You can't edit this event." msgid "You can't edit this event."
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:244
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:244
msgid "You can't attribute this event to this profile." msgid "You can't attribute this event to this profile."
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:140
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:140
msgid "This invitation doesn't exist." msgid "This invitation doesn't exist."
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:182
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:182
msgid "This member already has been rejected." msgid "This member already has been rejected."
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:189
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:189
msgid "You don't have the right to remove this member." msgid "You don't have the right to remove this member."
msgstr "" msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
msgid "This username is already taken."
msgstr ""

View File

@ -112,17 +112,17 @@ msgid "You created an account on %{host} with this email address. You are one cl
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:113 #: lib/web/email/participation.ex:112
msgid "Your participation to event %{title} has been approved" msgid "Your participation to event %{title} has been approved"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:71 #: lib/web/email/participation.ex:70
msgid "Your participation to event %{title} has been rejected" msgid "Your participation to event %{title} has been rejected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/event.ex:36 #: lib/web/email/event.ex:37
msgid "Event %{title} has been updated" msgid "Event %{title} has been updated"
msgstr "" msgstr ""
@ -142,7 +142,7 @@ msgid "Warning"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:135 #: lib/web/email/participation.ex:134
msgid "Confirm your participation to event %{title}" msgid "Confirm your participation to event %{title}"
msgstr "" msgstr ""
@ -402,7 +402,7 @@ msgstr[2] ""
#, elixir-format #, elixir-format
#: lib/web/templates/email/notification_each_week.html.eex:38 #: lib/web/templates/email/notification_each_week.html.eex:38
#: lib/web/templates/email/notification_each_week.text.eex:4 #: lib/web/templates/email/notification_each_week.text.eex:3
msgid "You have one event this week:" msgid "You have one event this week:"
msgid_plural "You have %{total} events this week:" msgid_plural "You have %{total} events this week:"
msgstr[0] "" msgstr[0] ""
@ -410,7 +410,7 @@ msgstr[1] ""
msgstr[2] "" msgstr[2] ""
#, elixir-format #, elixir-format
#: lib/service/metadata/utils.ex:27 #: lib/service/metadata/utils.ex:52
msgid "The event organizer didn't add any description." msgid "The event organizer didn't add any description."
msgstr "" msgstr ""
@ -765,7 +765,7 @@ msgstr ""
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 #: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133 #: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:11 lib/web/templates/email/on_day_notification.html.eex:70
#: lib/web/templates/email/on_day_notification.text.eex:14 #: lib/web/templates/email/on_day_notification.text.eex:14
msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button." msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button."
msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button." msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button."
@ -1243,7 +1243,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:92 #: lib/web/email/participation.ex:91
msgid "Your participation to event %{title} has been confirmed" msgid "Your participation to event %{title} has been confirmed"
msgstr "" msgstr ""
@ -1370,7 +1370,7 @@ msgstr ""
msgid "We're sorry, but something went wrong on our end." msgid "We're sorry, but something went wrong on our end."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/web/templates/email/email.html.eex:88 #: lib/web/templates/email/email.html.eex:88
#: lib/web/templates/email/email.text.eex:4 #: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon." msgid "This is a demonstration site to test Mobilizon."

View File

@ -98,17 +98,17 @@ msgid "Cannot refresh the token"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:139 #: lib/graphql/resolvers/group.ex:137
msgid "Creator profile is not owned by the current user" msgid "Creator profile is not owned by the current user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:203 #: lib/graphql/resolvers/group.ex:201
msgid "Current profile is not a member of this group" msgid "Current profile is not a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:207 #: lib/graphql/resolvers/group.ex:205
msgid "Current profile is not an administrator of the selected group" msgid "Current profile is not an administrator of the selected group"
msgstr "" msgstr ""
@ -118,13 +118,13 @@ msgid "Error while saving user settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200 #: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83 #: lib/graphql/resolvers/group.ex:229 lib/graphql/resolvers/group.ex:264 lib/graphql/resolvers/member.ex:83
msgid "Group not found" msgid "Group not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:69 #: lib/graphql/resolvers/group.ex:66
msgid "Group with ID %{id} not found" msgid "Group with ID %{id} not found"
msgstr "" msgstr ""
@ -134,7 +134,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:280 #: lib/graphql/resolvers/group.ex:261
msgid "Member not found" msgid "Member not found"
msgstr "" msgstr ""
@ -150,19 +150,18 @@ msgid "No user to validate with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76 #: lib/graphql/resolvers/person.ex:231 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219 #: lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found" msgid "No user with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:245 #: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/member.ex:80
#: lib/graphql/resolvers/member.ex:80 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 #: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:155 lib/graphql/resolvers/person.ex:189
#: lib/graphql/resolvers/person.ex:191 lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288 #: lib/graphql/resolvers/person.ex:255 lib/graphql/resolvers/person.ex:284 lib/graphql/resolvers/person.ex:297
#: lib/graphql/resolvers/person.ex:301 lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110 #: lib/graphql/resolvers/picture.ex:72 lib/graphql/resolvers/report.ex:107 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:57
msgid "Profile is not owned by authenticated user" msgid "Profile is not owned by authenticated user"
msgstr "" msgstr ""
@ -228,22 +227,22 @@ msgid "User requested is not logged-in"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:254 #: lib/graphql/resolvers/group.ex:235
msgid "You are already a member of this group" msgid "You are already a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:287 #: lib/graphql/resolvers/group.ex:268
msgid "You can't leave this group because you are the only administrator" msgid "You can't leave this group because you are the only administrator"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:251 #: lib/graphql/resolvers/group.ex:232
msgid "You cannot join this group" msgid "You cannot join this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:97 #: lib/graphql/resolvers/group.ex:94
msgid "You may not list groups unless moderator." msgid "You may not list groups unless moderator."
msgstr "" msgstr ""
@ -258,7 +257,7 @@ msgid "You need to be logged-in to change your password"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:212 #: lib/graphql/resolvers/group.ex:210
msgid "You need to be logged-in to delete a group" msgid "You need to be logged-in to delete a group"
msgstr "" msgstr ""
@ -268,17 +267,17 @@ msgid "You need to be logged-in to delete your account"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:259 #: lib/graphql/resolvers/group.ex:240
msgid "You need to be logged-in to join a group" msgid "You need to be logged-in to join a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:292 #: lib/graphql/resolvers/group.ex:273
msgid "You need to be logged-in to leave a group" msgid "You need to be logged-in to leave a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:177 #: lib/graphql/resolvers/group.ex:175
msgid "You need to be logged-in to update a group" msgid "You need to be logged-in to update a group"
msgstr "" msgstr ""
@ -338,22 +337,22 @@ msgid "Profile already suspended"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:96 #: lib/graphql/resolvers/participant.ex:93
msgid "A valid email is required by your instance" msgid "A valid email is required by your instance"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:90 #: lib/graphql/resolvers/participant.ex:87
msgid "Anonymous participation is not enabled" msgid "Anonymous participation is not enabled"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:188 #: lib/graphql/resolvers/person.ex:186
msgid "Cannot remove the last administrator of a group" msgid "Cannot remove the last administrator of a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:185 #: lib/graphql/resolvers/person.ex:183
msgid "Cannot remove the last identity of a user" msgid "Cannot remove the last identity of a user"
msgstr "" msgstr ""
@ -368,17 +367,17 @@ msgid "Discussion not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87 #: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
msgid "Error while saving report" msgid "Error while saving report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:113 #: lib/graphql/resolvers/report.ex:110
msgid "Error while updating report" msgid "Error while updating report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:131 #: lib/graphql/resolvers/participant.ex:128
msgid "Event id not found" msgid "Event id not found"
msgstr "" msgstr ""
@ -389,23 +388,23 @@ msgid "Event not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:87 #: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160 #: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
msgid "Event with this ID %{id} doesn't exist" msgid "Event with this ID %{id} doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:103 #: lib/graphql/resolvers/participant.ex:100
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234 #: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
msgid "Moderator profile is not owned by authenticated user" msgid "Moderator profile is not owned by authenticated user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:181 #: lib/graphql/resolvers/discussion.ex:184
msgid "No discussion with ID %{id}" msgid "No discussion with ID %{id}"
msgstr "" msgstr ""
@ -415,7 +414,7 @@ msgid "No profile found for user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66 #: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token" msgid "No such feed token"
msgstr "" msgstr ""
@ -425,14 +424,14 @@ msgid "Organizer profile is not owned by the user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:244 #: lib/graphql/resolvers/participant.ex:241
msgid "Participant already has role %{role}" msgid "Participant already has role %{role}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:173 #: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237 #: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:234
#: lib/graphql/resolvers/participant.ex:247 #: lib/graphql/resolvers/participant.ex:244
msgid "Participant not found" msgid "Participant not found"
msgstr "" msgstr ""
@ -447,7 +446,7 @@ msgid "Person with username %{username} not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:45 #: lib/graphql/resolvers/picture.ex:42
msgid "Picture with ID %{id} was not found" msgid "Picture with ID %{id} was not found"
msgstr "" msgstr ""
@ -481,12 +480,12 @@ msgid "Profile is not member of group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182 #: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
msgid "Profile not found" msgid "Profile not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241 #: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
msgid "Provided moderator profile doesn't have permission on this event" msgid "Provided moderator profile doesn't have permission on this event"
msgstr "" msgstr ""
@ -501,12 +500,12 @@ msgid "Resource doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:124 #: lib/graphql/resolvers/participant.ex:121
msgid "The event has already reached its maximum capacity" msgid "The event has already reached its maximum capacity"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:267 #: lib/graphql/resolvers/participant.ex:264
msgid "This token is invalid" msgid "This token is invalid"
msgstr "" msgstr ""
@ -522,32 +521,32 @@ msgid "Todo list doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72 #: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist" msgid "Token does not exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69 #: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID" msgid "Token is not a valid UUID"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323 #: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
msgid "User not found" msgid "User not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:235 #: lib/graphql/resolvers/person.ex:234
msgid "You already have a profile for this user" msgid "You already have a profile for this user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:134 #: lib/graphql/resolvers/participant.ex:131
msgid "You are already a participant of this event" msgid "You are already a participant of this event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:185 #: lib/graphql/resolvers/discussion.ex:188
msgid "You are not a member of the group the discussion belongs to" msgid "You are not a member of the group the discussion belongs to"
msgstr "" msgstr ""
@ -567,7 +566,7 @@ msgid "You are not allowed to create a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:44 #: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected" msgid "You are not allowed to create a feed token if not connected"
msgstr "" msgstr ""
@ -577,7 +576,7 @@ msgid "You are not allowed to delete a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:81 #: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected" msgid "You are not allowed to delete a feed token if not connected"
msgstr "" msgstr ""
@ -587,8 +586,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:167 #: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:196 #: lib/graphql/resolvers/participant.ex:193
msgid "You can't leave event because you're the only event creator participant" msgid "You can't leave event because you're the only event creator participant"
msgstr "" msgstr ""
@ -613,7 +612,7 @@ msgid "You cannot invite to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:75 #: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token" msgid "You don't have permission to delete this token"
msgstr "" msgstr ""
@ -628,7 +627,7 @@ msgid "You need to be logged-in and a moderator to list reports"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:118 #: lib/graphql/resolvers/report.ex:115
msgid "You need to be logged-in and a moderator to update a report" msgid "You need to be logged-in and a moderator to update a report"
msgstr "" msgstr ""
@ -638,17 +637,17 @@ msgid "You need to be logged-in and a moderator to view a report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:220 #: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings" msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:205 #: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics" msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:244 #: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings" msgid "You need to be logged-in and an administrator to save admin settings"
msgstr "" msgstr ""
@ -673,7 +672,7 @@ msgid "You need to be logged-in to create posts"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92 #: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
msgid "You need to be logged-in to create reports" msgid "You need to be logged-in to create reports"
msgstr "" msgstr ""
@ -698,12 +697,12 @@ msgid "You need to be logged-in to delete resources"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:108 #: lib/graphql/resolvers/participant.ex:105
msgid "You need to be logged-in to join an event" msgid "You need to be logged-in to join an event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:207 #: lib/graphql/resolvers/participant.ex:204
msgid "You need to be logged-in to leave an event" msgid "You need to be logged-in to leave an event"
msgstr "" msgstr ""
@ -728,12 +727,12 @@ msgid "You need to be logged-in to view a resource preview"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:86 #: lib/graphql/resolvers/picture.ex:83
msgid "You need to login to upload a picture" msgid "You need to login to upload a picture"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:84 #: lib/graphql/resolvers/report.ex:81
msgid "Reporter ID does not match the anonymous profile id" msgid "Reporter ID does not match the anonymous profile id"
msgstr "" msgstr ""
@ -748,7 +747,7 @@ msgid "Parent resource doesn't belong to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:93 #: lib/graphql/resolvers/participant.ex:90
msgid "Profile ID provided is not the anonymous profile one" msgid "Profile ID provided is not the anonymous profile one"
msgstr "" msgstr ""
@ -823,12 +822,12 @@ msgid "You can't reject this invitation with this profile."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:78 #: lib/graphql/resolvers/picture.ex:75
msgid "File doesn't have an allowed MIME type." msgid "File doesn't have an allowed MIME type."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:172 #: lib/graphql/resolvers/group.ex:170
msgid "Profile is not administrator for the group" msgid "Profile is not administrator for the group"
msgstr "" msgstr ""
@ -856,3 +855,8 @@ msgstr ""
#: lib/graphql/resolvers/member.ex:189 #: lib/graphql/resolvers/member.ex:189
msgid "You don't have the right to remove this member." msgid "You don't have the right to remove this member."
msgstr "" msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
msgid "This username is already taken."
msgstr ""

View File

@ -124,17 +124,17 @@ msgstr ""
"E-Mail bitte." "E-Mail bitte."
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:113 #: lib/web/email/participation.ex:112
msgid "Your participation to event %{title} has been approved" msgid "Your participation to event %{title} has been approved"
msgstr "Deine Teilnahme an der Veranstaltung %{title}wurde akzeptiert" msgstr "Deine Teilnahme an der Veranstaltung %{title}wurde akzeptiert"
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:71 #: lib/web/email/participation.ex:70
msgid "Your participation to event %{title} has been rejected" msgid "Your participation to event %{title} has been rejected"
msgstr "Deine Teilnahme an der Veranstaltung %{title}wurde abgelehnt" msgstr "Deine Teilnahme an der Veranstaltung %{title}wurde abgelehnt"
#, elixir-format #, elixir-format
#: lib/web/email/event.ex:36 #: lib/web/email/event.ex:37
msgid "Event %{title} has been updated" msgid "Event %{title} has been updated"
msgstr "Veranstaltung %{title} wurde aktualisiert" msgstr "Veranstaltung %{title} wurde aktualisiert"
@ -155,7 +155,7 @@ msgid "Warning"
msgstr "Warnung" msgstr "Warnung"
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:135 #: lib/web/email/participation.ex:134
msgid "Confirm your participation to event %{title}" msgid "Confirm your participation to event %{title}"
msgstr "Meine Teilnahme an der Veranstaltung %{title} zusagen" msgstr "Meine Teilnahme an der Veranstaltung %{title} zusagen"
@ -415,14 +415,14 @@ msgstr[1] ""
#, elixir-format #, elixir-format
#: lib/web/templates/email/notification_each_week.html.eex:38 #: lib/web/templates/email/notification_each_week.html.eex:38
#: lib/web/templates/email/notification_each_week.text.eex:4 #: lib/web/templates/email/notification_each_week.text.eex:3
msgid "You have one event this week:" msgid "You have one event this week:"
msgid_plural "You have %{total} events this week:" msgid_plural "You have %{total} events this week:"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#, elixir-format #, elixir-format
#: lib/service/metadata/utils.ex:27 #: lib/service/metadata/utils.ex:52
msgid "The event organizer didn't add any description." msgid "The event organizer didn't add any description."
msgstr "Der Eventorganisator hat keine Beschreibung hinzugefügt." msgstr "Der Eventorganisator hat keine Beschreibung hinzugefügt."
@ -784,7 +784,7 @@ msgstr ""
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 #: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133 #: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:11 lib/web/templates/email/on_day_notification.html.eex:70
#: lib/web/templates/email/on_day_notification.text.eex:14 #: lib/web/templates/email/on_day_notification.text.eex:14
msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button." msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button."
msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button." msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button."
@ -1266,7 +1266,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
msgstr "Du hast angefragt, an der Veranstaltung %{title} teilzunehmen." msgstr "Du hast angefragt, an der Veranstaltung %{title} teilzunehmen."
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:92 #: lib/web/email/participation.ex:91
msgid "Your participation to event %{title} has been confirmed" msgid "Your participation to event %{title} has been confirmed"
msgstr "Deine Teilnahme an der Veranstaltung %{title}wurde akzeptiert" msgstr "Deine Teilnahme an der Veranstaltung %{title}wurde akzeptiert"
@ -1394,7 +1394,7 @@ msgstr ""
msgid "We're sorry, but something went wrong on our end." msgid "We're sorry, but something went wrong on our end."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/web/templates/email/email.html.eex:88 #: lib/web/templates/email/email.html.eex:88
#: lib/web/templates/email/email.text.eex:4 #: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon." msgid "This is a demonstration site to test Mobilizon."

View File

@ -92,17 +92,17 @@ msgid "Cannot refresh the token"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:139 #: lib/graphql/resolvers/group.ex:137
msgid "Creator profile is not owned by the current user" msgid "Creator profile is not owned by the current user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:203 #: lib/graphql/resolvers/group.ex:201
msgid "Current profile is not a member of this group" msgid "Current profile is not a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:207 #: lib/graphql/resolvers/group.ex:205
msgid "Current profile is not an administrator of the selected group" msgid "Current profile is not an administrator of the selected group"
msgstr "" msgstr ""
@ -112,13 +112,13 @@ msgid "Error while saving user settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200 #: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83 #: lib/graphql/resolvers/group.ex:229 lib/graphql/resolvers/group.ex:264 lib/graphql/resolvers/member.ex:83
msgid "Group not found" msgid "Group not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:69 #: lib/graphql/resolvers/group.ex:66
msgid "Group with ID %{id} not found" msgid "Group with ID %{id} not found"
msgstr "" msgstr ""
@ -128,7 +128,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:280 #: lib/graphql/resolvers/group.ex:261
msgid "Member not found" msgid "Member not found"
msgstr "" msgstr ""
@ -144,19 +144,18 @@ msgid "No user to validate with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76 #: lib/graphql/resolvers/person.ex:231 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219 #: lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found" msgid "No user with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:245 #: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/member.ex:80
#: lib/graphql/resolvers/member.ex:80 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 #: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:155 lib/graphql/resolvers/person.ex:189
#: lib/graphql/resolvers/person.ex:191 lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288 #: lib/graphql/resolvers/person.ex:255 lib/graphql/resolvers/person.ex:284 lib/graphql/resolvers/person.ex:297
#: lib/graphql/resolvers/person.ex:301 lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110 #: lib/graphql/resolvers/picture.ex:72 lib/graphql/resolvers/report.ex:107 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:57
msgid "Profile is not owned by authenticated user" msgid "Profile is not owned by authenticated user"
msgstr "" msgstr ""
@ -222,22 +221,22 @@ msgid "User requested is not logged-in"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:254 #: lib/graphql/resolvers/group.ex:235
msgid "You are already a member of this group" msgid "You are already a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:287 #: lib/graphql/resolvers/group.ex:268
msgid "You can't leave this group because you are the only administrator" msgid "You can't leave this group because you are the only administrator"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:251 #: lib/graphql/resolvers/group.ex:232
msgid "You cannot join this group" msgid "You cannot join this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:97 #: lib/graphql/resolvers/group.ex:94
msgid "You may not list groups unless moderator." msgid "You may not list groups unless moderator."
msgstr "" msgstr ""
@ -252,7 +251,7 @@ msgid "You need to be logged-in to change your password"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:212 #: lib/graphql/resolvers/group.ex:210
msgid "You need to be logged-in to delete a group" msgid "You need to be logged-in to delete a group"
msgstr "" msgstr ""
@ -262,17 +261,17 @@ msgid "You need to be logged-in to delete your account"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:259 #: lib/graphql/resolvers/group.ex:240
msgid "You need to be logged-in to join a group" msgid "You need to be logged-in to join a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:292 #: lib/graphql/resolvers/group.ex:273
msgid "You need to be logged-in to leave a group" msgid "You need to be logged-in to leave a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:177 #: lib/graphql/resolvers/group.ex:175
msgid "You need to be logged-in to update a group" msgid "You need to be logged-in to update a group"
msgstr "" msgstr ""
@ -332,22 +331,22 @@ msgid "Profile already suspended"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:96 #: lib/graphql/resolvers/participant.ex:93
msgid "A valid email is required by your instance" msgid "A valid email is required by your instance"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:90 #: lib/graphql/resolvers/participant.ex:87
msgid "Anonymous participation is not enabled" msgid "Anonymous participation is not enabled"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:188 #: lib/graphql/resolvers/person.ex:186
msgid "Cannot remove the last administrator of a group" msgid "Cannot remove the last administrator of a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:185 #: lib/graphql/resolvers/person.ex:183
msgid "Cannot remove the last identity of a user" msgid "Cannot remove the last identity of a user"
msgstr "" msgstr ""
@ -362,17 +361,17 @@ msgid "Discussion not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87 #: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
msgid "Error while saving report" msgid "Error while saving report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:113 #: lib/graphql/resolvers/report.ex:110
msgid "Error while updating report" msgid "Error while updating report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:131 #: lib/graphql/resolvers/participant.ex:128
msgid "Event id not found" msgid "Event id not found"
msgstr "" msgstr ""
@ -383,23 +382,23 @@ msgid "Event not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:87 #: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160 #: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
msgid "Event with this ID %{id} doesn't exist" msgid "Event with this ID %{id} doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:103 #: lib/graphql/resolvers/participant.ex:100
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234 #: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
msgid "Moderator profile is not owned by authenticated user" msgid "Moderator profile is not owned by authenticated user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:181 #: lib/graphql/resolvers/discussion.ex:184
msgid "No discussion with ID %{id}" msgid "No discussion with ID %{id}"
msgstr "" msgstr ""
@ -409,7 +408,7 @@ msgid "No profile found for user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66 #: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token" msgid "No such feed token"
msgstr "" msgstr ""
@ -419,14 +418,14 @@ msgid "Organizer profile is not owned by the user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:244 #: lib/graphql/resolvers/participant.ex:241
msgid "Participant already has role %{role}" msgid "Participant already has role %{role}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:173 #: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237 #: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:234
#: lib/graphql/resolvers/participant.ex:247 #: lib/graphql/resolvers/participant.ex:244
msgid "Participant not found" msgid "Participant not found"
msgstr "" msgstr ""
@ -441,7 +440,7 @@ msgid "Person with username %{username} not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:45 #: lib/graphql/resolvers/picture.ex:42
msgid "Picture with ID %{id} was not found" msgid "Picture with ID %{id} was not found"
msgstr "" msgstr ""
@ -475,12 +474,12 @@ msgid "Profile is not member of group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182 #: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
msgid "Profile not found" msgid "Profile not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241 #: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
msgid "Provided moderator profile doesn't have permission on this event" msgid "Provided moderator profile doesn't have permission on this event"
msgstr "" msgstr ""
@ -495,12 +494,12 @@ msgid "Resource doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:124 #: lib/graphql/resolvers/participant.ex:121
msgid "The event has already reached its maximum capacity" msgid "The event has already reached its maximum capacity"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:267 #: lib/graphql/resolvers/participant.ex:264
msgid "This token is invalid" msgid "This token is invalid"
msgstr "" msgstr ""
@ -516,32 +515,32 @@ msgid "Todo list doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72 #: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist" msgid "Token does not exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69 #: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID" msgid "Token is not a valid UUID"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323 #: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
msgid "User not found" msgid "User not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:235 #: lib/graphql/resolvers/person.ex:234
msgid "You already have a profile for this user" msgid "You already have a profile for this user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:134 #: lib/graphql/resolvers/participant.ex:131
msgid "You are already a participant of this event" msgid "You are already a participant of this event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:185 #: lib/graphql/resolvers/discussion.ex:188
msgid "You are not a member of the group the discussion belongs to" msgid "You are not a member of the group the discussion belongs to"
msgstr "" msgstr ""
@ -561,7 +560,7 @@ msgid "You are not allowed to create a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:44 #: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected" msgid "You are not allowed to create a feed token if not connected"
msgstr "" msgstr ""
@ -571,7 +570,7 @@ msgid "You are not allowed to delete a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:81 #: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected" msgid "You are not allowed to delete a feed token if not connected"
msgstr "" msgstr ""
@ -581,8 +580,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:167 #: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:196 #: lib/graphql/resolvers/participant.ex:193
msgid "You can't leave event because you're the only event creator participant" msgid "You can't leave event because you're the only event creator participant"
msgstr "" msgstr ""
@ -607,7 +606,7 @@ msgid "You cannot invite to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:75 #: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token" msgid "You don't have permission to delete this token"
msgstr "" msgstr ""
@ -622,7 +621,7 @@ msgid "You need to be logged-in and a moderator to list reports"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:118 #: lib/graphql/resolvers/report.ex:115
msgid "You need to be logged-in and a moderator to update a report" msgid "You need to be logged-in and a moderator to update a report"
msgstr "" msgstr ""
@ -632,17 +631,17 @@ msgid "You need to be logged-in and a moderator to view a report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:220 #: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings" msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:205 #: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics" msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:244 #: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings" msgid "You need to be logged-in and an administrator to save admin settings"
msgstr "" msgstr ""
@ -667,7 +666,7 @@ msgid "You need to be logged-in to create posts"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92 #: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
msgid "You need to be logged-in to create reports" msgid "You need to be logged-in to create reports"
msgstr "" msgstr ""
@ -692,12 +691,12 @@ msgid "You need to be logged-in to delete resources"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:108 #: lib/graphql/resolvers/participant.ex:105
msgid "You need to be logged-in to join an event" msgid "You need to be logged-in to join an event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:207 #: lib/graphql/resolvers/participant.ex:204
msgid "You need to be logged-in to leave an event" msgid "You need to be logged-in to leave an event"
msgstr "" msgstr ""
@ -722,12 +721,12 @@ msgid "You need to be logged-in to view a resource preview"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:86 #: lib/graphql/resolvers/picture.ex:83
msgid "You need to login to upload a picture" msgid "You need to login to upload a picture"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:84 #: lib/graphql/resolvers/report.ex:81
msgid "Reporter ID does not match the anonymous profile id" msgid "Reporter ID does not match the anonymous profile id"
msgstr "" msgstr ""
@ -742,7 +741,7 @@ msgid "Parent resource doesn't belong to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:93 #: lib/graphql/resolvers/participant.ex:90
msgid "Profile ID provided is not the anonymous profile one" msgid "Profile ID provided is not the anonymous profile one"
msgstr "" msgstr ""
@ -817,12 +816,12 @@ msgid "You can't reject this invitation with this profile."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:78 #: lib/graphql/resolvers/picture.ex:75
msgid "File doesn't have an allowed MIME type." msgid "File doesn't have an allowed MIME type."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:172 #: lib/graphql/resolvers/group.ex:170
msgid "Profile is not administrator for the group" msgid "Profile is not administrator for the group"
msgstr "" msgstr ""
@ -850,3 +849,8 @@ msgstr ""
#: lib/graphql/resolvers/member.ex:189 #: lib/graphql/resolvers/member.ex:189
msgid "You don't have the right to remove this member." msgid "You don't have the right to remove this member."
msgstr "" msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
msgid "This username is already taken."
msgstr ""

View File

@ -98,17 +98,17 @@ msgid "You created an account on %{host} with this email address. You are one cl
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:113 #: lib/web/email/participation.ex:112
msgid "Your participation to event %{title} has been approved" msgid "Your participation to event %{title} has been approved"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:71 #: lib/web/email/participation.ex:70
msgid "Your participation to event %{title} has been rejected" msgid "Your participation to event %{title} has been rejected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/event.ex:36 #: lib/web/email/event.ex:37
msgid "Event %{title} has been updated" msgid "Event %{title} has been updated"
msgstr "" msgstr ""
@ -128,7 +128,7 @@ msgid "Warning"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:135 #: lib/web/email/participation.ex:134
msgid "Confirm your participation to event %{title}" msgid "Confirm your participation to event %{title}"
msgstr "" msgstr ""
@ -384,14 +384,14 @@ msgstr[1] ""
#, elixir-format #, elixir-format
#: lib/web/templates/email/notification_each_week.html.eex:38 #: lib/web/templates/email/notification_each_week.html.eex:38
#: lib/web/templates/email/notification_each_week.text.eex:4 #: lib/web/templates/email/notification_each_week.text.eex:3
msgid "You have one event this week:" msgid "You have one event this week:"
msgid_plural "You have %{total} events this week:" msgid_plural "You have %{total} events this week:"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#, elixir-format #, elixir-format
#: lib/service/metadata/utils.ex:27 #: lib/service/metadata/utils.ex:52
msgid "The event organizer didn't add any description." msgid "The event organizer didn't add any description."
msgstr "" msgstr ""
@ -746,7 +746,7 @@ msgstr ""
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 #: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133 #: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:11 lib/web/templates/email/on_day_notification.html.eex:70
#: lib/web/templates/email/on_day_notification.text.eex:14 #: lib/web/templates/email/on_day_notification.text.eex:14
msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button." msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button."
msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button." msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button."
@ -1222,7 +1222,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:92 #: lib/web/email/participation.ex:91
msgid "Your participation to event %{title} has been confirmed" msgid "Your participation to event %{title} has been confirmed"
msgstr "" msgstr ""

View File

@ -121,17 +121,17 @@ msgid "You created an account on %{host} with this email address. You are one cl
msgstr "You created an account on %{host} with this email address. You are one click away from activating it." msgstr "You created an account on %{host} with this email address. You are one click away from activating it."
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:113 #: lib/web/email/participation.ex:112
msgid "Your participation to event %{title} has been approved" msgid "Your participation to event %{title} has been approved"
msgstr "Your participation to event %{title} has been approved" msgstr "Your participation to event %{title} has been approved"
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:71 #: lib/web/email/participation.ex:70
msgid "Your participation to event %{title} has been rejected" msgid "Your participation to event %{title} has been rejected"
msgstr "Your participation to event %{title} has been rejected" msgstr "Your participation to event %{title} has been rejected"
#, elixir-format #, elixir-format
#: lib/web/email/event.ex:36 #: lib/web/email/event.ex:37
msgid "Event %{title} has been updated" msgid "Event %{title} has been updated"
msgstr "Event %{title} has been updated" msgstr "Event %{title} has been updated"
@ -151,7 +151,7 @@ msgid "Warning"
msgstr "Warning" msgstr "Warning"
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:135 #: lib/web/email/participation.ex:134
msgid "Confirm your participation to event %{title}" msgid "Confirm your participation to event %{title}"
msgstr "Confirm your participation to event %{title}" msgstr "Confirm your participation to event %{title}"
@ -437,14 +437,14 @@ msgstr[1] ""
#, elixir-format #, elixir-format
#: lib/web/templates/email/notification_each_week.html.eex:38 #: lib/web/templates/email/notification_each_week.html.eex:38
#: lib/web/templates/email/notification_each_week.text.eex:4 #: lib/web/templates/email/notification_each_week.text.eex:3
msgid "You have one event this week:" msgid "You have one event this week:"
msgid_plural "You have %{total} events this week:" msgid_plural "You have %{total} events this week:"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#, elixir-format #, elixir-format
#: lib/service/metadata/utils.ex:27 #: lib/service/metadata/utils.ex:52
msgid "The event organizer didn't add any description." msgid "The event organizer didn't add any description."
msgstr "" msgstr ""
@ -799,7 +799,7 @@ msgstr "Please do not use it in any real way"
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 #: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133 #: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:11 lib/web/templates/email/on_day_notification.html.eex:70
#: lib/web/templates/email/on_day_notification.text.eex:14 #: lib/web/templates/email/on_day_notification.text.eex:14
msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button." msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button."
msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button." msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button."
@ -1275,7 +1275,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
msgstr "You requested to participate in event %{title}." msgstr "You requested to participate in event %{title}."
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:92 #: lib/web/email/participation.ex:91
msgid "Your participation to event %{title} has been confirmed" msgid "Your participation to event %{title} has been confirmed"
msgstr "Your participation to event %{title} has been approved" msgstr "Your participation to event %{title} has been approved"
@ -1402,7 +1402,7 @@ msgstr ""
msgid "We're sorry, but something went wrong on our end." msgid "We're sorry, but something went wrong on our end."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/web/templates/email/email.html.eex:88 #: lib/web/templates/email/email.html.eex:88
#: lib/web/templates/email/email.text.eex:4 #: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon." msgid "This is a demonstration site to test Mobilizon."

View File

@ -102,17 +102,17 @@ msgid "Cannot refresh the token"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:139 #: lib/graphql/resolvers/group.ex:137
msgid "Creator profile is not owned by the current user" msgid "Creator profile is not owned by the current user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:203 #: lib/graphql/resolvers/group.ex:201
msgid "Current profile is not a member of this group" msgid "Current profile is not a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:207 #: lib/graphql/resolvers/group.ex:205
msgid "Current profile is not an administrator of the selected group" msgid "Current profile is not an administrator of the selected group"
msgstr "" msgstr ""
@ -122,13 +122,13 @@ msgid "Error while saving user settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200 #: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83 #: lib/graphql/resolvers/group.ex:229 lib/graphql/resolvers/group.ex:264 lib/graphql/resolvers/member.ex:83
msgid "Group not found" msgid "Group not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:69 #: lib/graphql/resolvers/group.ex:66
msgid "Group with ID %{id} not found" msgid "Group with ID %{id} not found"
msgstr "" msgstr ""
@ -138,7 +138,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:280 #: lib/graphql/resolvers/group.ex:261
msgid "Member not found" msgid "Member not found"
msgstr "" msgstr ""
@ -154,19 +154,18 @@ msgid "No user to validate with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76 #: lib/graphql/resolvers/person.ex:231 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219 #: lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found" msgid "No user with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:245 #: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/member.ex:80
#: lib/graphql/resolvers/member.ex:80 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 #: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:155 lib/graphql/resolvers/person.ex:189
#: lib/graphql/resolvers/person.ex:191 lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288 #: lib/graphql/resolvers/person.ex:255 lib/graphql/resolvers/person.ex:284 lib/graphql/resolvers/person.ex:297
#: lib/graphql/resolvers/person.ex:301 lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110 #: lib/graphql/resolvers/picture.ex:72 lib/graphql/resolvers/report.ex:107 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:57
msgid "Profile is not owned by authenticated user" msgid "Profile is not owned by authenticated user"
msgstr "" msgstr ""
@ -232,22 +231,22 @@ msgid "User requested is not logged-in"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:254 #: lib/graphql/resolvers/group.ex:235
msgid "You are already a member of this group" msgid "You are already a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:287 #: lib/graphql/resolvers/group.ex:268
msgid "You can't leave this group because you are the only administrator" msgid "You can't leave this group because you are the only administrator"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:251 #: lib/graphql/resolvers/group.ex:232
msgid "You cannot join this group" msgid "You cannot join this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:97 #: lib/graphql/resolvers/group.ex:94
msgid "You may not list groups unless moderator." msgid "You may not list groups unless moderator."
msgstr "" msgstr ""
@ -262,7 +261,7 @@ msgid "You need to be logged-in to change your password"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:212 #: lib/graphql/resolvers/group.ex:210
msgid "You need to be logged-in to delete a group" msgid "You need to be logged-in to delete a group"
msgstr "" msgstr ""
@ -272,17 +271,17 @@ msgid "You need to be logged-in to delete your account"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:259 #: lib/graphql/resolvers/group.ex:240
msgid "You need to be logged-in to join a group" msgid "You need to be logged-in to join a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:292 #: lib/graphql/resolvers/group.ex:273
msgid "You need to be logged-in to leave a group" msgid "You need to be logged-in to leave a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:177 #: lib/graphql/resolvers/group.ex:175
msgid "You need to be logged-in to update a group" msgid "You need to be logged-in to update a group"
msgstr "" msgstr ""
@ -342,22 +341,22 @@ msgid "Profile already suspended"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:96 #: lib/graphql/resolvers/participant.ex:93
msgid "A valid email is required by your instance" msgid "A valid email is required by your instance"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:90 #: lib/graphql/resolvers/participant.ex:87
msgid "Anonymous participation is not enabled" msgid "Anonymous participation is not enabled"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:188 #: lib/graphql/resolvers/person.ex:186
msgid "Cannot remove the last administrator of a group" msgid "Cannot remove the last administrator of a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:185 #: lib/graphql/resolvers/person.ex:183
msgid "Cannot remove the last identity of a user" msgid "Cannot remove the last identity of a user"
msgstr "" msgstr ""
@ -372,17 +371,17 @@ msgid "Discussion not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87 #: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
msgid "Error while saving report" msgid "Error while saving report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:113 #: lib/graphql/resolvers/report.ex:110
msgid "Error while updating report" msgid "Error while updating report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:131 #: lib/graphql/resolvers/participant.ex:128
msgid "Event id not found" msgid "Event id not found"
msgstr "" msgstr ""
@ -393,23 +392,23 @@ msgid "Event not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:87 #: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160 #: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
msgid "Event with this ID %{id} doesn't exist" msgid "Event with this ID %{id} doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:103 #: lib/graphql/resolvers/participant.ex:100
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234 #: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
msgid "Moderator profile is not owned by authenticated user" msgid "Moderator profile is not owned by authenticated user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:181 #: lib/graphql/resolvers/discussion.ex:184
msgid "No discussion with ID %{id}" msgid "No discussion with ID %{id}"
msgstr "" msgstr ""
@ -419,7 +418,7 @@ msgid "No profile found for user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66 #: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token" msgid "No such feed token"
msgstr "" msgstr ""
@ -429,14 +428,14 @@ msgid "Organizer profile is not owned by the user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:244 #: lib/graphql/resolvers/participant.ex:241
msgid "Participant already has role %{role}" msgid "Participant already has role %{role}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:173 #: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237 #: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:234
#: lib/graphql/resolvers/participant.ex:247 #: lib/graphql/resolvers/participant.ex:244
msgid "Participant not found" msgid "Participant not found"
msgstr "" msgstr ""
@ -451,7 +450,7 @@ msgid "Person with username %{username} not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:45 #: lib/graphql/resolvers/picture.ex:42
msgid "Picture with ID %{id} was not found" msgid "Picture with ID %{id} was not found"
msgstr "" msgstr ""
@ -485,12 +484,12 @@ msgid "Profile is not member of group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182 #: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
msgid "Profile not found" msgid "Profile not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241 #: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
msgid "Provided moderator profile doesn't have permission on this event" msgid "Provided moderator profile doesn't have permission on this event"
msgstr "" msgstr ""
@ -505,12 +504,12 @@ msgid "Resource doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:124 #: lib/graphql/resolvers/participant.ex:121
msgid "The event has already reached its maximum capacity" msgid "The event has already reached its maximum capacity"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:267 #: lib/graphql/resolvers/participant.ex:264
msgid "This token is invalid" msgid "This token is invalid"
msgstr "" msgstr ""
@ -526,32 +525,32 @@ msgid "Todo list doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72 #: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist" msgid "Token does not exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69 #: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID" msgid "Token is not a valid UUID"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323 #: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
msgid "User not found" msgid "User not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:235 #: lib/graphql/resolvers/person.ex:234
msgid "You already have a profile for this user" msgid "You already have a profile for this user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:134 #: lib/graphql/resolvers/participant.ex:131
msgid "You are already a participant of this event" msgid "You are already a participant of this event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:185 #: lib/graphql/resolvers/discussion.ex:188
msgid "You are not a member of the group the discussion belongs to" msgid "You are not a member of the group the discussion belongs to"
msgstr "" msgstr ""
@ -571,7 +570,7 @@ msgid "You are not allowed to create a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:44 #: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected" msgid "You are not allowed to create a feed token if not connected"
msgstr "" msgstr ""
@ -581,7 +580,7 @@ msgid "You are not allowed to delete a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:81 #: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected" msgid "You are not allowed to delete a feed token if not connected"
msgstr "" msgstr ""
@ -591,8 +590,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:167 #: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:196 #: lib/graphql/resolvers/participant.ex:193
msgid "You can't leave event because you're the only event creator participant" msgid "You can't leave event because you're the only event creator participant"
msgstr "" msgstr ""
@ -617,7 +616,7 @@ msgid "You cannot invite to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:75 #: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token" msgid "You don't have permission to delete this token"
msgstr "" msgstr ""
@ -632,7 +631,7 @@ msgid "You need to be logged-in and a moderator to list reports"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:118 #: lib/graphql/resolvers/report.ex:115
msgid "You need to be logged-in and a moderator to update a report" msgid "You need to be logged-in and a moderator to update a report"
msgstr "" msgstr ""
@ -642,17 +641,17 @@ msgid "You need to be logged-in and a moderator to view a report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:220 #: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings" msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:205 #: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics" msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:244 #: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings" msgid "You need to be logged-in and an administrator to save admin settings"
msgstr "" msgstr ""
@ -677,7 +676,7 @@ msgid "You need to be logged-in to create posts"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92 #: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
msgid "You need to be logged-in to create reports" msgid "You need to be logged-in to create reports"
msgstr "" msgstr ""
@ -702,12 +701,12 @@ msgid "You need to be logged-in to delete resources"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:108 #: lib/graphql/resolvers/participant.ex:105
msgid "You need to be logged-in to join an event" msgid "You need to be logged-in to join an event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:207 #: lib/graphql/resolvers/participant.ex:204
msgid "You need to be logged-in to leave an event" msgid "You need to be logged-in to leave an event"
msgstr "" msgstr ""
@ -732,12 +731,12 @@ msgid "You need to be logged-in to view a resource preview"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:86 #: lib/graphql/resolvers/picture.ex:83
msgid "You need to login to upload a picture" msgid "You need to login to upload a picture"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:84 #: lib/graphql/resolvers/report.ex:81
msgid "Reporter ID does not match the anonymous profile id" msgid "Reporter ID does not match the anonymous profile id"
msgstr "" msgstr ""
@ -752,7 +751,7 @@ msgid "Parent resource doesn't belong to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:93 #: lib/graphql/resolvers/participant.ex:90
msgid "Profile ID provided is not the anonymous profile one" msgid "Profile ID provided is not the anonymous profile one"
msgstr "" msgstr ""
@ -827,12 +826,12 @@ msgid "You can't reject this invitation with this profile."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:78 #: lib/graphql/resolvers/picture.ex:75
msgid "File doesn't have an allowed MIME type." msgid "File doesn't have an allowed MIME type."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:172 #: lib/graphql/resolvers/group.ex:170
msgid "Profile is not administrator for the group" msgid "Profile is not administrator for the group"
msgstr "" msgstr ""
@ -860,3 +859,8 @@ msgstr ""
#: lib/graphql/resolvers/member.ex:189 #: lib/graphql/resolvers/member.ex:189
msgid "You don't have the right to remove this member." msgid "You don't have the right to remove this member."
msgstr "" msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
msgid "This username is already taken."
msgstr ""

View File

@ -99,17 +99,17 @@ msgid "Cannot refresh the token"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:139 #: lib/graphql/resolvers/group.ex:137
msgid "Creator profile is not owned by the current user" msgid "Creator profile is not owned by the current user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:203 #: lib/graphql/resolvers/group.ex:201
msgid "Current profile is not a member of this group" msgid "Current profile is not a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:207 #: lib/graphql/resolvers/group.ex:205
msgid "Current profile is not an administrator of the selected group" msgid "Current profile is not an administrator of the selected group"
msgstr "" msgstr ""
@ -119,13 +119,13 @@ msgid "Error while saving user settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200 #: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83 #: lib/graphql/resolvers/group.ex:229 lib/graphql/resolvers/group.ex:264 lib/graphql/resolvers/member.ex:83
msgid "Group not found" msgid "Group not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:69 #: lib/graphql/resolvers/group.ex:66
msgid "Group with ID %{id} not found" msgid "Group with ID %{id} not found"
msgstr "" msgstr ""
@ -135,7 +135,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:280 #: lib/graphql/resolvers/group.ex:261
msgid "Member not found" msgid "Member not found"
msgstr "" msgstr ""
@ -151,19 +151,18 @@ msgid "No user to validate with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76 #: lib/graphql/resolvers/person.ex:231 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219 #: lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found" msgid "No user with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:245 #: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/member.ex:80
#: lib/graphql/resolvers/member.ex:80 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 #: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:155 lib/graphql/resolvers/person.ex:189
#: lib/graphql/resolvers/person.ex:191 lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288 #: lib/graphql/resolvers/person.ex:255 lib/graphql/resolvers/person.ex:284 lib/graphql/resolvers/person.ex:297
#: lib/graphql/resolvers/person.ex:301 lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110 #: lib/graphql/resolvers/picture.ex:72 lib/graphql/resolvers/report.ex:107 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:57
msgid "Profile is not owned by authenticated user" msgid "Profile is not owned by authenticated user"
msgstr "" msgstr ""
@ -229,22 +228,22 @@ msgid "User requested is not logged-in"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:254 #: lib/graphql/resolvers/group.ex:235
msgid "You are already a member of this group" msgid "You are already a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:287 #: lib/graphql/resolvers/group.ex:268
msgid "You can't leave this group because you are the only administrator" msgid "You can't leave this group because you are the only administrator"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:251 #: lib/graphql/resolvers/group.ex:232
msgid "You cannot join this group" msgid "You cannot join this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:97 #: lib/graphql/resolvers/group.ex:94
msgid "You may not list groups unless moderator." msgid "You may not list groups unless moderator."
msgstr "" msgstr ""
@ -259,7 +258,7 @@ msgid "You need to be logged-in to change your password"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:212 #: lib/graphql/resolvers/group.ex:210
msgid "You need to be logged-in to delete a group" msgid "You need to be logged-in to delete a group"
msgstr "" msgstr ""
@ -269,17 +268,17 @@ msgid "You need to be logged-in to delete your account"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:259 #: lib/graphql/resolvers/group.ex:240
msgid "You need to be logged-in to join a group" msgid "You need to be logged-in to join a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:292 #: lib/graphql/resolvers/group.ex:273
msgid "You need to be logged-in to leave a group" msgid "You need to be logged-in to leave a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:177 #: lib/graphql/resolvers/group.ex:175
msgid "You need to be logged-in to update a group" msgid "You need to be logged-in to update a group"
msgstr "" msgstr ""
@ -339,22 +338,22 @@ msgid "Profile already suspended"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:96 #: lib/graphql/resolvers/participant.ex:93
msgid "A valid email is required by your instance" msgid "A valid email is required by your instance"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:90 #: lib/graphql/resolvers/participant.ex:87
msgid "Anonymous participation is not enabled" msgid "Anonymous participation is not enabled"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:188 #: lib/graphql/resolvers/person.ex:186
msgid "Cannot remove the last administrator of a group" msgid "Cannot remove the last administrator of a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:185 #: lib/graphql/resolvers/person.ex:183
msgid "Cannot remove the last identity of a user" msgid "Cannot remove the last identity of a user"
msgstr "" msgstr ""
@ -369,17 +368,17 @@ msgid "Discussion not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87 #: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
msgid "Error while saving report" msgid "Error while saving report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:113 #: lib/graphql/resolvers/report.ex:110
msgid "Error while updating report" msgid "Error while updating report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:131 #: lib/graphql/resolvers/participant.ex:128
msgid "Event id not found" msgid "Event id not found"
msgstr "" msgstr ""
@ -390,23 +389,23 @@ msgid "Event not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:87 #: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160 #: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
msgid "Event with this ID %{id} doesn't exist" msgid "Event with this ID %{id} doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:103 #: lib/graphql/resolvers/participant.ex:100
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234 #: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
msgid "Moderator profile is not owned by authenticated user" msgid "Moderator profile is not owned by authenticated user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:181 #: lib/graphql/resolvers/discussion.ex:184
msgid "No discussion with ID %{id}" msgid "No discussion with ID %{id}"
msgstr "" msgstr ""
@ -416,7 +415,7 @@ msgid "No profile found for user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66 #: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token" msgid "No such feed token"
msgstr "" msgstr ""
@ -426,14 +425,14 @@ msgid "Organizer profile is not owned by the user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:244 #: lib/graphql/resolvers/participant.ex:241
msgid "Participant already has role %{role}" msgid "Participant already has role %{role}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:173 #: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237 #: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:234
#: lib/graphql/resolvers/participant.ex:247 #: lib/graphql/resolvers/participant.ex:244
msgid "Participant not found" msgid "Participant not found"
msgstr "" msgstr ""
@ -448,7 +447,7 @@ msgid "Person with username %{username} not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:45 #: lib/graphql/resolvers/picture.ex:42
msgid "Picture with ID %{id} was not found" msgid "Picture with ID %{id} was not found"
msgstr "" msgstr ""
@ -482,12 +481,12 @@ msgid "Profile is not member of group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182 #: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
msgid "Profile not found" msgid "Profile not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241 #: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
msgid "Provided moderator profile doesn't have permission on this event" msgid "Provided moderator profile doesn't have permission on this event"
msgstr "" msgstr ""
@ -502,12 +501,12 @@ msgid "Resource doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:124 #: lib/graphql/resolvers/participant.ex:121
msgid "The event has already reached its maximum capacity" msgid "The event has already reached its maximum capacity"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:267 #: lib/graphql/resolvers/participant.ex:264
msgid "This token is invalid" msgid "This token is invalid"
msgstr "" msgstr ""
@ -523,32 +522,32 @@ msgid "Todo list doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72 #: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist" msgid "Token does not exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69 #: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID" msgid "Token is not a valid UUID"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323 #: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
msgid "User not found" msgid "User not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:235 #: lib/graphql/resolvers/person.ex:234
msgid "You already have a profile for this user" msgid "You already have a profile for this user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:134 #: lib/graphql/resolvers/participant.ex:131
msgid "You are already a participant of this event" msgid "You are already a participant of this event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:185 #: lib/graphql/resolvers/discussion.ex:188
msgid "You are not a member of the group the discussion belongs to" msgid "You are not a member of the group the discussion belongs to"
msgstr "" msgstr ""
@ -568,7 +567,7 @@ msgid "You are not allowed to create a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:44 #: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected" msgid "You are not allowed to create a feed token if not connected"
msgstr "" msgstr ""
@ -578,7 +577,7 @@ msgid "You are not allowed to delete a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:81 #: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected" msgid "You are not allowed to delete a feed token if not connected"
msgstr "" msgstr ""
@ -588,8 +587,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:167 #: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:196 #: lib/graphql/resolvers/participant.ex:193
msgid "You can't leave event because you're the only event creator participant" msgid "You can't leave event because you're the only event creator participant"
msgstr "" msgstr ""
@ -614,7 +613,7 @@ msgid "You cannot invite to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:75 #: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token" msgid "You don't have permission to delete this token"
msgstr "" msgstr ""
@ -629,7 +628,7 @@ msgid "You need to be logged-in and a moderator to list reports"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:118 #: lib/graphql/resolvers/report.ex:115
msgid "You need to be logged-in and a moderator to update a report" msgid "You need to be logged-in and a moderator to update a report"
msgstr "" msgstr ""
@ -639,17 +638,17 @@ msgid "You need to be logged-in and a moderator to view a report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:220 #: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings" msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:205 #: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics" msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:244 #: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings" msgid "You need to be logged-in and an administrator to save admin settings"
msgstr "" msgstr ""
@ -674,7 +673,7 @@ msgid "You need to be logged-in to create posts"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92 #: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
msgid "You need to be logged-in to create reports" msgid "You need to be logged-in to create reports"
msgstr "" msgstr ""
@ -699,12 +698,12 @@ msgid "You need to be logged-in to delete resources"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:108 #: lib/graphql/resolvers/participant.ex:105
msgid "You need to be logged-in to join an event" msgid "You need to be logged-in to join an event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:207 #: lib/graphql/resolvers/participant.ex:204
msgid "You need to be logged-in to leave an event" msgid "You need to be logged-in to leave an event"
msgstr "" msgstr ""
@ -729,12 +728,12 @@ msgid "You need to be logged-in to view a resource preview"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:86 #: lib/graphql/resolvers/picture.ex:83
msgid "You need to login to upload a picture" msgid "You need to login to upload a picture"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:84 #: lib/graphql/resolvers/report.ex:81
msgid "Reporter ID does not match the anonymous profile id" msgid "Reporter ID does not match the anonymous profile id"
msgstr "" msgstr ""
@ -749,7 +748,7 @@ msgid "Parent resource doesn't belong to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:93 #: lib/graphql/resolvers/participant.ex:90
msgid "Profile ID provided is not the anonymous profile one" msgid "Profile ID provided is not the anonymous profile one"
msgstr "" msgstr ""
@ -824,12 +823,12 @@ msgid "You can't reject this invitation with this profile."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:78 #: lib/graphql/resolvers/picture.ex:75
msgid "File doesn't have an allowed MIME type." msgid "File doesn't have an allowed MIME type."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:172 #: lib/graphql/resolvers/group.ex:170
msgid "Profile is not administrator for the group" msgid "Profile is not administrator for the group"
msgstr "" msgstr ""
@ -857,3 +856,8 @@ msgstr ""
#: lib/graphql/resolvers/member.ex:189 #: lib/graphql/resolvers/member.ex:189
msgid "You don't have the right to remove this member." msgid "You don't have the right to remove this member."
msgstr "" msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
msgid "This username is already taken."
msgstr ""

File diff suppressed because it is too large Load Diff

View File

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

File diff suppressed because it is too large Load Diff

View File

@ -93,768 +93,772 @@ msgstr "tulee olla vähintään %{number}"
msgid "must be equal to %{number}" msgid "must be equal to %{number}"
msgstr "tulee olla tasas %{number}" msgstr "tulee olla tasas %{number}"
#: lib/graphql/resolvers/user.ex:103
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:103
msgid "Cannot refresh the token" msgid "Cannot refresh the token"
msgstr "Ei voida päivittää tokenia" msgstr "Ei voida päivittää tokenia"
#: lib/graphql/resolvers/group.ex:139
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:137
msgid "Creator profile is not owned by the current user" msgid "Creator profile is not owned by the current user"
msgstr "Nykyinen käyttäjä ei omista luontiprofiilia" msgstr "Nykyinen käyttäjä ei omista luontiprofiilia"
#: lib/graphql/resolvers/group.ex:203
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:201
msgid "Current profile is not a member of this group" msgid "Current profile is not a member of this group"
msgstr "Nykyinen profiili ei kuulu tähän ryhmään" msgstr "Nykyinen profiili ei kuulu tähän ryhmään"
#: lib/graphql/resolvers/group.ex:207
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:205
msgid "Current profile is not an administrator of the selected group" msgid "Current profile is not an administrator of the selected group"
msgstr "Nykyinen profiili ei ole valitun ryhmän ylläpitäjä" msgstr "Nykyinen profiili ei ole valitun ryhmän ylläpitäjä"
#: lib/graphql/resolvers/user.ex:512
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:512
msgid "Error while saving user settings" msgid "Error while saving user settings"
msgstr "Käyttäjän asetusten tallennuksessa tapahtui virhe" msgstr "Käyttäjän asetusten tallennuksessa tapahtui virhe"
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:229 lib/graphql/resolvers/group.ex:264 lib/graphql/resolvers/member.ex:83
msgid "Group not found" msgid "Group not found"
msgstr "Ryhmää ei löydy" msgstr "Ryhmää ei löydy"
#: lib/graphql/resolvers/group.ex:69
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:66
msgid "Group with ID %{id} not found" msgid "Group with ID %{id} not found"
msgstr "Ryhmää jonka ID on %{id} ei löydy" msgstr "Ryhmää jonka ID on %{id} ei löydy"
#: lib/graphql/resolvers/user.ex:83
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:83
msgid "Impossible to authenticate, either your email or password are invalid." msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "" msgstr ""
"Kirjautuminen epäonnistui - joko sähköpostiosoitteesi tai salasana on väärin." "Kirjautuminen epäonnistui - joko sähköpostiosoitteesi tai salasana on väärin."
#: lib/graphql/resolvers/group.ex:280
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:261
msgid "Member not found" msgid "Member not found"
msgstr "Jäsentä ei löydy" msgstr "Jäsentä ei löydy"
#, elixir-format
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88 #: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
#: lib/graphql/resolvers/user.ex:417 #: lib/graphql/resolvers/user.ex:417
#, elixir-format
msgid "No profile found for the moderator user" msgid "No profile found for the moderator user"
msgstr "Moderaattorikäyttäjän profiilia ei löydy" msgstr "Moderaattorikäyttäjän profiilia ei löydy"
#: lib/graphql/resolvers/user.ex:195
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:195
msgid "No user to validate with this email was found" msgid "No user to validate with this email was found"
msgstr "Käyttäjää tämän sähköpostin vahvistamiseksi ei löydy" msgstr "Käyttäjää tämän sähköpostin vahvistamiseksi ei löydy"
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:231 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found" msgid "No user with this email was found"
msgstr "Käyttäjää, jolla on tämä sähköpostiosoite ei löydy" msgstr "Käyttäjää, jolla on tämä sähköpostiosoite ei löydy"
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/member.ex:80 lib/graphql/resolvers/participant.ex:29
#: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157
#: lib/graphql/resolvers/person.ex:191 lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288
#: lib/graphql/resolvers/person.ex:301 lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110
#: lib/graphql/resolvers/todos.ex:57
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/member.ex:80
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:155 lib/graphql/resolvers/person.ex:189
#: lib/graphql/resolvers/person.ex:255 lib/graphql/resolvers/person.ex:284 lib/graphql/resolvers/person.ex:297
#: lib/graphql/resolvers/picture.ex:72 lib/graphql/resolvers/report.ex:107 lib/graphql/resolvers/todos.ex:57
msgid "Profile is not owned by authenticated user" msgid "Profile is not owned by authenticated user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:125
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:125
msgid "Registrations are not open" msgid "Registrations are not open"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:330
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:330
msgid "The current password is invalid" msgid "The current password is invalid"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:382
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:382
msgid "The new email doesn't seem to be valid" msgid "The new email doesn't seem to be valid"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:379
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:379
msgid "The new email must be different" msgid "The new email must be different"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:333
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:333
msgid "The new password must be different" msgid "The new password must be different"
msgstr "" msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439 #: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
#: lib/graphql/resolvers/user.ex:442 #: lib/graphql/resolvers/user.ex:442
#, elixir-format
msgid "The password provided is invalid" msgid "The password provided is invalid"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:337
#, elixir-format #, 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." msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:215
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:215
msgid "This user can't reset their password" msgid "This user can't reset their password"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:79
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:79
msgid "This user has been disabled" msgid "This user has been disabled"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:179
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:179
msgid "Unable to validate user" msgid "Unable to validate user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:420
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:420
msgid "User already disabled" msgid "User already disabled"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:487
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:487
msgid "User requested is not logged-in" msgid "User requested is not logged-in"
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:254
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:235
msgid "You are already a member of this group" msgid "You are already a member of this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:287
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:268
msgid "You can't leave this group because you are the only administrator" msgid "You can't leave this group because you are the only administrator"
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:251
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:232
msgid "You cannot join this group" msgid "You cannot join this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:97
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:94
msgid "You may not list groups unless moderator." msgid "You may not list groups unless moderator."
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:387
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:387
msgid "You need to be logged-in to change your email" msgid "You need to be logged-in to change your email"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:345
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:345
msgid "You need to be logged-in to change your password" msgid "You need to be logged-in to change your password"
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:212
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:210
msgid "You need to be logged-in to delete a group" msgid "You need to be logged-in to delete a group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:447
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:447
msgid "You need to be logged-in to delete your account" msgid "You need to be logged-in to delete your account"
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:259
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:240
msgid "You need to be logged-in to join a group" msgid "You need to be logged-in to join a group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:292
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:273
msgid "You need to be logged-in to leave a group" msgid "You need to be logged-in to leave a group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:177
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:175
msgid "You need to be logged-in to update a group" msgid "You need to be logged-in to update a group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:58
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users" msgid "You need to have admin access to list users"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:108
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token" msgid "You need to have an existing token to get a refresh token"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
msgid "You requested again a confirmation email too soon" msgid "You requested again a confirmation email too soon"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:128
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:128
msgid "Your email is not on the allowlist" msgid "Your email is not on the allowlist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
msgid "Error while performing background task" msgid "Error while performing background task"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:27
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:27
msgid "No profile found with this ID" msgid "No profile found with this ID"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
msgid "No remote profile found with this ID" msgid "No remote profile found with this ID"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:69
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:69
msgid "Only moderators and administrators can suspend a profile" msgid "Only moderators and administrators can suspend a profile"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:99
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:99
msgid "Only moderators and administrators can unsuspend a profile" msgid "Only moderators and administrators can unsuspend a profile"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:24
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:24
msgid "Only remote profiles may be refreshed" msgid "Only remote profiles may be refreshed"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:61
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:61
msgid "Profile already suspended" msgid "Profile already suspended"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:96
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:93
msgid "A valid email is required by your instance" msgid "A valid email is required by your instance"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:90
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:87
msgid "Anonymous participation is not enabled" msgid "Anonymous participation is not enabled"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:188
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:186
msgid "Cannot remove the last administrator of a group" msgid "Cannot remove the last administrator of a group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:185
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:183
msgid "Cannot remove the last identity of a user" msgid "Cannot remove the last identity of a user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:109
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:109
msgid "Comment is already deleted" msgid "Comment is already deleted"
msgstr "" msgstr ""
#: lib/graphql/resolvers/discussion.ex:61
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
msgid "Discussion not found" msgid "Discussion not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
msgid "Error while saving report" msgid "Error while saving report"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:113
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:110
msgid "Error while updating report" msgid "Error while updating report"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:131
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:128
msgid "Event id not found" msgid "Event id not found"
msgstr "" msgstr ""
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238 #: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:283 #: lib/graphql/resolvers/event.ex:283
#, elixir-format
msgid "Event not found" msgid "Event not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
msgid "Event with this ID %{id} doesn't exist" msgid "Event with this ID %{id} doesn't exist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:103
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:100
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
msgid "Moderator profile is not owned by authenticated user" msgid "Moderator profile is not owned by authenticated user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/discussion.ex:181
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:184
msgid "No discussion with ID %{id}" msgid "No discussion with ID %{id}"
msgstr "" msgstr ""
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
msgid "No profile found for user" msgid "No profile found for user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:66
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token" msgid "No such feed token"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:202
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:202
msgid "Organizer profile is not owned by the user" msgid "Organizer profile is not owned by the user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:244
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:241
msgid "Participant already has role %{role}" msgid "Participant already has role %{role}"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:173
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237
#: lib/graphql/resolvers/participant.ex:247
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:234
#: lib/graphql/resolvers/participant.ex:244
msgid "Participant not found" msgid "Participant not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:31
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:31
msgid "Person with ID %{id} not found" msgid "Person with ID %{id} not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:52
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:52
msgid "Person with username %{username} not found" msgid "Person with username %{username} not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/picture.ex:45
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:42
msgid "Picture with ID %{id} was not found" msgid "Picture with ID %{id} was not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
msgid "Post ID is not a valid ID" msgid "Post ID is not a valid ID"
msgstr "" msgstr ""
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
msgid "Post doesn't exist" msgid "Post doesn't exist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:86
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:86
msgid "Profile invited doesn't exist" msgid "Profile invited doesn't exist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
msgid "Profile is already a member of this group" msgid "Profile is already a member of this group"
msgstr "" msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171 #: 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:204 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:60 #: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:60
#: lib/graphql/resolvers/todos.ex:84 lib/graphql/resolvers/todos.ex:102 lib/graphql/resolvers/todos.ex:174 #: lib/graphql/resolvers/todos.ex:84 lib/graphql/resolvers/todos.ex:102 lib/graphql/resolvers/todos.ex:174
#: lib/graphql/resolvers/todos.ex:197 lib/graphql/resolvers/todos.ex:225 #: lib/graphql/resolvers/todos.ex:197 lib/graphql/resolvers/todos.ex:225
#, elixir-format
msgid "Profile is not member of group" msgid "Profile is not member of group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
msgid "Profile not found" msgid "Profile not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
msgid "Provided moderator profile doesn't have permission on this event" msgid "Provided moderator profile doesn't have permission on this event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:38
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:38
msgid "Report not found" msgid "Report not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
msgid "Resource doesn't exist" msgid "Resource doesn't exist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:124
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:121
msgid "The event has already reached its maximum capacity" msgid "The event has already reached its maximum capacity"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:267
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:264
msgid "This token is invalid" msgid "This token is invalid"
msgstr "" msgstr ""
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
msgid "Todo doesn't exist" msgid "Todo doesn't exist"
msgstr "" msgstr ""
#, elixir-format
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:194 #: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:194
#: lib/graphql/resolvers/todos.ex:219 #: lib/graphql/resolvers/todos.ex:219
#, elixir-format
msgid "Todo list doesn't exist" msgid "Todo list doesn't exist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:72
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist" msgid "Token does not exist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:69
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID" msgid "Token is not a valid UUID"
msgstr "" msgstr ""
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
msgid "User not found" msgid "User not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:235
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:234
msgid "You already have a profile for this user" msgid "You already have a profile for this user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:134
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:131
msgid "You are already a participant of this event" msgid "You are already a participant of this event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/discussion.ex:185
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:188
msgid "You are not a member of the group the discussion belongs to" msgid "You are not a member of the group the discussion belongs to"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:89
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:89
msgid "You are not a member of this group" msgid "You are not a member of this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:154
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:154
msgid "You are not a moderator or admin for this group" msgid "You are not a moderator or admin for this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:55
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:55
msgid "You are not allowed to create a comment if not connected" msgid "You are not allowed to create a comment if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:44
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected" msgid "You are not allowed to create a feed token if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:117
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:117
msgid "You are not allowed to delete a comment if not connected" msgid "You are not allowed to delete a comment if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:81
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected" msgid "You are not allowed to delete a feed token if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:77
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:77
msgid "You are not allowed to update a comment if not connected" msgid "You are not allowed to update a comment if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:167
#: lib/graphql/resolvers/participant.ex:196
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
msgid "You can't leave event because you're the only event creator participant" msgid "You can't leave event because you're the only event creator participant"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:158
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:158
msgid "You can't set yourself to a lower member role for this group because you are the only administrator" msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:105
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:105
msgid "You cannot delete this comment" msgid "You cannot delete this comment"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:279
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:279
msgid "You cannot delete this event" msgid "You cannot delete this event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:92
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:92
msgid "You cannot invite to this group" msgid "You cannot invite to this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:75
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token" msgid "You don't have permission to delete this token"
msgstr "" msgstr ""
#: lib/graphql/resolvers/admin.ex:52
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:52
msgid "You need to be logged-in and a moderator to list action logs" msgid "You need to be logged-in and a moderator to list action logs"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:28
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:28
msgid "You need to be logged-in and a moderator to list reports" msgid "You need to be logged-in and a moderator to list reports"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:118
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:115
msgid "You need to be logged-in and a moderator to update a report" msgid "You need to be logged-in and a moderator to update a report"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:43
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:43
msgid "You need to be logged-in and a moderator to view a report" msgid "You need to be logged-in and a moderator to view a report"
msgstr "" msgstr ""
#: lib/graphql/resolvers/admin.ex:220
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings" msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "" msgstr ""
#: lib/graphql/resolvers/admin.ex:205
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics" msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "" msgstr ""
#: lib/graphql/resolvers/admin.ex:244
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings" msgid "You need to be logged-in and an administrator to save admin settings"
msgstr "" msgstr ""
#: lib/graphql/resolvers/discussion.ex:66
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:66
msgid "You need to be logged-in to access discussions" msgid "You need to be logged-in to access discussions"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:93
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:93
msgid "You need to be logged-in to access resources" msgid "You need to be logged-in to access resources"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:213
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:213
msgid "You need to be logged-in to create events" msgid "You need to be logged-in to create events"
msgstr "" msgstr ""
#: lib/graphql/resolvers/post.ex:139
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:139
msgid "You need to be logged-in to create posts" msgid "You need to be logged-in to create posts"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
msgid "You need to be logged-in to create reports" msgid "You need to be logged-in to create reports"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:129
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:129
msgid "You need to be logged-in to create resources" msgid "You need to be logged-in to create resources"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:291
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:291
msgid "You need to be logged-in to delete an event" msgid "You need to be logged-in to delete an event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/post.ex:209
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:209
msgid "You need to be logged-in to delete posts" msgid "You need to be logged-in to delete posts"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:187
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:187
msgid "You need to be logged-in to delete resources" msgid "You need to be logged-in to delete resources"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:108
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:105
msgid "You need to be logged-in to join an event" msgid "You need to be logged-in to join an event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:207
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:204
msgid "You need to be logged-in to leave an event" msgid "You need to be logged-in to leave an event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:252
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:252
msgid "You need to be logged-in to update an event" msgid "You need to be logged-in to update an event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/post.ex:176
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:176
msgid "You need to be logged-in to update posts" msgid "You need to be logged-in to update posts"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:158
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:158
msgid "You need to be logged-in to update resources" msgid "You need to be logged-in to update resources"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:210
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:210
msgid "You need to be logged-in to view a resource preview" msgid "You need to be logged-in to view a resource preview"
msgstr "" msgstr ""
#: lib/graphql/resolvers/picture.ex:86
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:83
msgid "You need to login to upload a picture" msgid "You need to login to upload a picture"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:84
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:81
msgid "Reporter ID does not match the anonymous profile id" msgid "Reporter ID does not match the anonymous profile id"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:59
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:59
msgid "Reporter profile is not owned by authenticated user" msgid "Reporter profile is not owned by authenticated user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:121
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group" msgid "Parent resource doesn't belong to this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:93
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:90
msgid "Profile ID provided is not the anonymous profile one" msgid "Profile ID provided is not the anonymous profile one"
msgstr "" msgstr ""
#: lib/mobilizon/users/user.ex:109
#, elixir-format #, elixir-format
#: lib/mobilizon/users/user.ex:109
msgid "The chosen password is too short." msgid "The chosen password is too short."
msgstr "" msgstr ""
#: lib/mobilizon/users/user.ex:138
#, elixir-format #, elixir-format
#: lib/mobilizon/users/user.ex:138
msgid "The registration token is already in use, this looks like an issue on our side." msgid "The registration token is already in use, this looks like an issue on our side."
msgstr "" msgstr ""
#: lib/mobilizon/users/user.ex:104
#, elixir-format #, elixir-format
#: lib/mobilizon/users/user.ex:104
msgid "This email is already used." msgid "This email is already used."
msgstr "" msgstr ""
#: lib/graphql/error.ex:88
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:88
msgid "Post not found" msgid "Post not found"
msgstr "" msgstr ""
#: lib/graphql/error.ex:75
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:75
msgid "Invalid arguments passed" msgid "Invalid arguments passed"
msgstr "" msgstr ""
#: lib/graphql/error.ex:81
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:81
msgid "Invalid credentials" msgid "Invalid credentials"
msgstr "" msgstr ""
#: lib/graphql/error.ex:79
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:79
msgid "Reset your password to login" msgid "Reset your password to login"
msgstr "" msgstr ""
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
msgid "Resource not found" msgid "Resource not found"
msgstr "" msgstr ""
#: lib/graphql/error.ex:92
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:92
msgid "Something went wrong" msgid "Something went wrong"
msgstr "" msgstr ""
#: lib/graphql/error.ex:74
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:74
msgid "Unknown Resource" msgid "Unknown Resource"
msgstr "" msgstr ""
#: lib/graphql/error.ex:84
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:84
msgid "You don't have permission to do this" msgid "You don't have permission to do this"
msgstr "" msgstr ""
#: lib/graphql/error.ex:76
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:76
msgid "You need to be logged in" msgid "You need to be logged in"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:119
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:119
msgid "You can't accept this invitation with this profile." msgid "You can't accept this invitation with this profile."
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:137
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:137
msgid "You can't reject this invitation with this profile." msgid "You can't reject this invitation with this profile."
msgstr "" msgstr ""
#: lib/graphql/resolvers/picture.ex:78
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:75
msgid "File doesn't have an allowed MIME type." msgid "File doesn't have an allowed MIME type."
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:172
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:170
msgid "Profile is not administrator for the group" msgid "Profile is not administrator for the group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:241
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:241
msgid "You can't edit this event." msgid "You can't edit this event."
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:244
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:244
msgid "You can't attribute this event to this profile." msgid "You can't attribute this event to this profile."
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:140
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:140
msgid "This invitation doesn't exist." msgid "This invitation doesn't exist."
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:182
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:182
msgid "This member already has been rejected." msgid "This member already has been rejected."
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:189
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:189
msgid "You don't have the right to remove this member." msgid "You don't have the right to remove this member."
msgstr "" msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
msgid "This username is already taken."
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@
# # to merge POT files into PO files. # # to merge POT files into PO files.
msgid "" msgid ""
msgstr "" msgstr ""
"PO-Revision-Date: 2020-10-28 11:41+0100\n" "PO-Revision-Date: 2020-11-17 19:10+0100\n"
"Last-Translator: Thomas Citharel <thomas.citharel@framasoft.org>\n" "Last-Translator: Thomas Citharel <thomas.citharel@framasoft.org>\n"
"Language-Team: French <https://weblate.framasoft.org/projects/mobilizon/backend-errors/fr/>\n" "Language-Team: French <https://weblate.framasoft.org/projects/mobilizon/backend-errors/fr/>\n"
"Language: fr\n" "Language: fr\n"
@ -99,15 +99,15 @@ msgstr "doit être égal à %{number}"
msgid "Cannot refresh the token" msgid "Cannot refresh the token"
msgstr "Impossible de rafraîchir le jeton" msgstr "Impossible de rafraîchir le jeton"
#: lib/graphql/resolvers/group.ex:139 #: lib/graphql/resolvers/group.ex:137
msgid "Creator profile is not owned by the current user" msgid "Creator profile is not owned by the current user"
msgstr "Le profil créateur n'est pas possédé par l'utilisateur actuel" msgstr "Le profil créateur n'est pas possédé par l'utilisateur actuel"
#: lib/graphql/resolvers/group.ex:203 #: lib/graphql/resolvers/group.ex:201
msgid "Current profile is not a member of this group" msgid "Current profile is not a member of this group"
msgstr "Le profil actuel n'est pas un membre de ce groupe" msgstr "Le profil actuel n'est pas un membre de ce groupe"
#: lib/graphql/resolvers/group.ex:207 #: lib/graphql/resolvers/group.ex:205
msgid "Current profile is not an administrator of the selected group" 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é" msgstr "Le profil actuel n'est pas un·e administrateur·ice du groupe sélectionné"
@ -115,12 +115,12 @@ msgstr "Le profil actuel n'est pas un·e administrateur·ice du groupe sélectio
msgid "Error while saving user settings" msgid "Error while saving user settings"
msgstr "Erreur lors de la sauvegarde des paramètres utilisateur" msgstr "Erreur lors de la sauvegarde des paramètres utilisateur"
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200 lib/graphql/resolvers/group.ex:248 #: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:198 lib/graphql/resolvers/group.ex:229
#: lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83 #: lib/graphql/resolvers/group.ex:264 lib/graphql/resolvers/member.ex:83
msgid "Group not found" msgid "Group not found"
msgstr "Groupe non trouvé" msgstr "Groupe non trouvé"
#: lib/graphql/resolvers/group.ex:69 #: lib/graphql/resolvers/group.ex:66
msgid "Group with ID %{id} not found" msgid "Group with ID %{id} not found"
msgstr "Groupe avec l'ID %{id} non trouvé" msgstr "Groupe avec l'ID %{id} non trouvé"
@ -128,7 +128,7 @@ msgstr "Groupe avec l'ID %{id} non trouvé"
msgid "Impossible to authenticate, either your email or password are invalid." 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." msgstr "Impossible de s'authentifier, votre adresse e-mail ou bien votre mot de passe sont invalides."
#: lib/graphql/resolvers/group.ex:280 #: lib/graphql/resolvers/group.ex:261
msgid "Member not found" msgid "Member not found"
msgstr "Membre non trouvé" msgstr "Membre non trouvé"
@ -140,16 +140,16 @@ msgstr "Aucun profil trouvé pour l'utilisateur modérateur"
msgid "No user to validate with this email was found" msgid "No user to validate with this email was found"
msgstr "Aucun·e utilisateur·ice à valider avec cet email n'a été trouvé·e" msgstr "Aucun·e utilisateur·ice à valider avec cet email n'a été trouvé·e"
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76 lib/graphql/resolvers/user.ex:219 #: lib/graphql/resolvers/person.ex:231 lib/graphql/resolvers/user.ex:76 lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found" msgid "No user with this email was found"
msgstr "Aucun·e utilisateur·ice avec cette adresse e-mail n'a été trouvé·e" msgstr "Aucun·e utilisateur·ice avec cette adresse e-mail n'a été trouvé·e"
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 lib/graphql/resolvers/event.ex:286 #: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 lib/graphql/resolvers/event.ex:286
#: lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:245 lib/graphql/resolvers/member.ex:80 #: lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/member.ex:80 lib/graphql/resolvers/participant.ex:29
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:163 #: lib/graphql/resolvers/participant.ex:160 lib/graphql/resolvers/participant.ex:189
#: lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 lib/graphql/resolvers/person.ex:191 #: lib/graphql/resolvers/person.ex:155 lib/graphql/resolvers/person.ex:189 lib/graphql/resolvers/person.ex:255
#: lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288 lib/graphql/resolvers/person.ex:301 #: lib/graphql/resolvers/person.ex:284 lib/graphql/resolvers/person.ex:297 lib/graphql/resolvers/picture.ex:72
#: lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110 lib/graphql/resolvers/todos.ex:57 #: lib/graphql/resolvers/report.ex:107 lib/graphql/resolvers/todos.ex:57
msgid "Profile is not owned by authenticated user" msgid "Profile is not owned by authenticated user"
msgstr "Le profil n'est pas possédé par l'utilisateur connecté" msgstr "Le profil n'est pas possédé par l'utilisateur connecté"
@ -203,19 +203,19 @@ msgstr "L'utilisateur·ice est déjà désactivé·e"
msgid "User requested is not logged-in" msgid "User requested is not logged-in"
msgstr "L'utilisateur·ice demandé·e n'est pas connecté·e" msgstr "L'utilisateur·ice demandé·e n'est pas connecté·e"
#: lib/graphql/resolvers/group.ex:254 #: lib/graphql/resolvers/group.ex:235
msgid "You are already a member of this group" msgid "You are already a member of this group"
msgstr "Vous êtes déjà membre de ce groupe" msgstr "Vous êtes déjà membre de ce groupe"
#: lib/graphql/resolvers/group.ex:287 #: lib/graphql/resolvers/group.ex:268
msgid "You can't leave this group because you are the only administrator" 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" msgstr "Vous ne pouvez pas quitter ce groupe car vous en êtes le ou la seul·e administrateur·ice"
#: lib/graphql/resolvers/group.ex:251 #: lib/graphql/resolvers/group.ex:232
msgid "You cannot join this group" msgid "You cannot join this group"
msgstr "Vous ne pouvez pas rejoindre ce groupe" msgstr "Vous ne pouvez pas rejoindre ce groupe"
#: lib/graphql/resolvers/group.ex:97 #: lib/graphql/resolvers/group.ex:94
msgid "You may not list groups unless moderator." msgid "You may not list groups unless moderator."
msgstr "Vous ne pouvez pas lister les groupes sauf à être modérateur·ice." msgstr "Vous ne pouvez pas lister les groupes sauf à être modérateur·ice."
@ -227,7 +227,7 @@ msgstr "Vous devez être connecté·e pour changer votre adresse e-mail"
msgid "You need to be logged-in to change your password" msgid "You need to be logged-in to change your password"
msgstr "Vous devez être connecté·e pour changer votre mot de passe" msgstr "Vous devez être connecté·e pour changer votre mot de passe"
#: lib/graphql/resolvers/group.ex:212 #: lib/graphql/resolvers/group.ex:210
msgid "You need to be logged-in to delete a group" msgid "You need to be logged-in to delete a group"
msgstr "Vous devez être connecté·e pour supprimer un groupe" msgstr "Vous devez être connecté·e pour supprimer un groupe"
@ -235,15 +235,15 @@ msgstr "Vous devez être connecté·e pour supprimer un groupe"
msgid "You need to be logged-in to delete your account" msgid "You need to be logged-in to delete your account"
msgstr "Vous devez être connecté·e pour supprimer votre compte" msgstr "Vous devez être connecté·e pour supprimer votre compte"
#: lib/graphql/resolvers/group.ex:259 #: lib/graphql/resolvers/group.ex:240
msgid "You need to be logged-in to join a group" msgid "You need to be logged-in to join a group"
msgstr "Vous devez être connecté·e pour rejoindre un groupe" msgstr "Vous devez être connecté·e pour rejoindre un groupe"
#: lib/graphql/resolvers/group.ex:292 #: lib/graphql/resolvers/group.ex:273
msgid "You need to be logged-in to leave a group" msgid "You need to be logged-in to leave a group"
msgstr "Vous devez être connecté·e pour quitter un groupe" msgstr "Vous devez être connecté·e pour quitter un groupe"
#: lib/graphql/resolvers/group.ex:177 #: lib/graphql/resolvers/group.ex:175
msgid "You need to be logged-in to update a group" msgid "You need to be logged-in to update a group"
msgstr "Vous devez être connecté·e pour mettre à jour un groupe" msgstr "Vous devez être connecté·e pour mettre à jour un groupe"
@ -291,19 +291,19 @@ msgstr "Seuls les profils distants peuvent être rafraîchis"
msgid "Profile already suspended" msgid "Profile already suspended"
msgstr "Le profil est déjà suspendu" msgstr "Le profil est déjà suspendu"
#: lib/graphql/resolvers/participant.ex:96 #: lib/graphql/resolvers/participant.ex:93
msgid "A valid email is required by your instance" msgid "A valid email is required by your instance"
msgstr "Une adresse e-mail valide est requise par votre instance" msgstr "Une adresse e-mail valide est requise par votre instance"
#: lib/graphql/resolvers/participant.ex:90 #: lib/graphql/resolvers/participant.ex:87
msgid "Anonymous participation is not enabled" msgid "Anonymous participation is not enabled"
msgstr "La participation anonyme n'est pas activée" msgstr "La participation anonyme n'est pas activée"
#: lib/graphql/resolvers/person.ex:188 #: lib/graphql/resolvers/person.ex:186
msgid "Cannot remove the last administrator of a group" msgid "Cannot remove the last administrator of a group"
msgstr "Impossible de supprimer le ou la dernier·ère administrateur·ice d'un groupe" msgstr "Impossible de supprimer le ou la dernier·ère administrateur·ice d'un groupe"
#: lib/graphql/resolvers/person.ex:185 #: lib/graphql/resolvers/person.ex:183
msgid "Cannot remove the last identity of a user" msgid "Cannot remove the last identity of a user"
msgstr "Impossible de supprimer le dernier profil d'un·e utilisateur·ice" msgstr "Impossible de supprimer le dernier profil d'un·e utilisateur·ice"
@ -315,15 +315,15 @@ msgstr "Le commentaire est déjà supprimé"
msgid "Discussion not found" msgid "Discussion not found"
msgstr "Discussion non trouvée" msgstr "Discussion non trouvée"
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87 #: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
msgid "Error while saving report" msgid "Error while saving report"
msgstr "Erreur lors de la sauvegarde du signalement" msgstr "Erreur lors de la sauvegarde du signalement"
#: lib/graphql/resolvers/report.ex:113 #: lib/graphql/resolvers/report.ex:110
msgid "Error while updating report" msgid "Error while updating report"
msgstr "Erreur lors de la mise à jour du signalement" msgstr "Erreur lors de la mise à jour du signalement"
#: lib/graphql/resolvers/participant.ex:131 #: lib/graphql/resolvers/participant.ex:128
msgid "Event id not found" msgid "Event id not found"
msgstr "ID de l'événement non trouvé" msgstr "ID de l'événement non trouvé"
@ -331,20 +331,20 @@ msgstr "ID de l'événement non trouvé"
msgid "Event not found" msgid "Event not found"
msgstr "Événement non trouvé" msgstr "Événement non trouvé"
#: lib/graphql/resolvers/participant.ex:87 lib/graphql/resolvers/participant.ex:128 #: lib/graphql/resolvers/participant.ex:84 lib/graphql/resolvers/participant.ex:125
#: lib/graphql/resolvers/participant.ex:160 #: lib/graphql/resolvers/participant.ex:157
msgid "Event with this ID %{id} doesn't exist" msgid "Event with this ID %{id} doesn't exist"
msgstr "L'événement avec cet ID %{id} n'existe pas" msgstr "L'événement avec cet ID %{id} n'existe pas"
#: lib/graphql/resolvers/participant.ex:103 #: lib/graphql/resolvers/participant.ex:100
msgid "Internal Error" msgid "Internal Error"
msgstr "Erreur interne" msgstr "Erreur interne"
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234 #: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
msgid "Moderator profile is not owned by authenticated user" msgid "Moderator profile is not owned by authenticated user"
msgstr "Le profil créateur n'est pas possédé par l'utilisateur actuel" msgstr "Le profil créateur n'est pas possédé par l'utilisateur actuel"
#: lib/graphql/resolvers/discussion.ex:181 #: lib/graphql/resolvers/discussion.ex:184
msgid "No discussion with ID %{id}" msgid "No discussion with ID %{id}"
msgstr "Aucune discussion avec l'ID %{id}" msgstr "Aucune discussion avec l'ID %{id}"
@ -352,7 +352,7 @@ msgstr "Aucune discussion avec l'ID %{id}"
msgid "No profile found for user" msgid "No profile found for user"
msgstr "Aucun profil trouvé pour l'utilisateur modérateur" msgstr "Aucun profil trouvé pour l'utilisateur modérateur"
#: lib/graphql/resolvers/feed_token.ex:66 #: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token" msgid "No such feed token"
msgstr "Aucun jeton de flux correspondant" msgstr "Aucun jeton de flux correspondant"
@ -360,12 +360,12 @@ msgstr "Aucun jeton de flux correspondant"
msgid "Organizer profile is not owned by the user" msgid "Organizer profile is not owned by the user"
msgstr "Le profil créateur n'est pas possédé par l'utilisateur actuel" msgstr "Le profil créateur n'est pas possédé par l'utilisateur actuel"
#: lib/graphql/resolvers/participant.ex:244 #: lib/graphql/resolvers/participant.ex:241
msgid "Participant already has role %{role}" msgid "Participant already has role %{role}"
msgstr "Le ou la participant·e a déjà le rôle %{role}" msgstr "Le ou la participant·e a déjà le rôle %{role}"
#: lib/graphql/resolvers/participant.ex:173 lib/graphql/resolvers/participant.ex:202 #: lib/graphql/resolvers/participant.ex:170 lib/graphql/resolvers/participant.ex:199
#: lib/graphql/resolvers/participant.ex:237 lib/graphql/resolvers/participant.ex:247 #: lib/graphql/resolvers/participant.ex:234 lib/graphql/resolvers/participant.ex:244
msgid "Participant not found" msgid "Participant not found"
msgstr "Participant·e non trouvé·e" msgstr "Participant·e non trouvé·e"
@ -377,7 +377,7 @@ msgstr "Personne avec l'ID %{id} non trouvé"
msgid "Person with username %{username} not found" msgid "Person with username %{username} not found"
msgstr "Personne avec le nom %{name} non trouvé" msgstr "Personne avec le nom %{name} non trouvé"
#: lib/graphql/resolvers/picture.ex:45 #: lib/graphql/resolvers/picture.ex:42
msgid "Picture with ID %{id} was not found" msgid "Picture with ID %{id} was not found"
msgstr "Groupe avec l'ID %{id} non trouvé" msgstr "Groupe avec l'ID %{id} non trouvé"
@ -405,11 +405,11 @@ msgstr "Ce profil est déjà membre de ce groupe"
msgid "Profile is not member of group" msgid "Profile is not member of group"
msgstr "Le profil n'est pas un·e membre du groupe" msgstr "Le profil n'est pas un·e membre du groupe"
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182 #: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
msgid "Profile not found" msgid "Profile not found"
msgstr "Profile non trouvé" msgstr "Profile non trouvé"
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241 #: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
msgid "Provided moderator profile doesn't have permission on this event" 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" msgstr "Le profil modérateur fourni n'a pas de permissions sur cet événement"
@ -421,11 +421,11 @@ msgstr "Groupe non trouvé"
msgid "Resource doesn't exist" msgid "Resource doesn't exist"
msgstr "La ressource n'existe pas" msgstr "La ressource n'existe pas"
#: lib/graphql/resolvers/participant.ex:124 #: lib/graphql/resolvers/participant.ex:121
msgid "The event has already reached its maximum capacity" msgid "The event has already reached its maximum capacity"
msgstr "L'événement a déjà atteint sa capacité maximale" msgstr "L'événement a déjà atteint sa capacité maximale"
#: lib/graphql/resolvers/participant.ex:267 #: lib/graphql/resolvers/participant.ex:264
msgid "This token is invalid" msgid "This token is invalid"
msgstr "Ce jeton est invalide" msgstr "Ce jeton est invalide"
@ -437,27 +437,27 @@ msgstr "Ce todo n'existe pas"
msgid "Todo list doesn't exist" msgid "Todo list doesn't exist"
msgstr "Cette todo-liste n'existe pas" msgstr "Cette todo-liste n'existe pas"
#: lib/graphql/resolvers/feed_token.ex:72 #: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist" msgid "Token does not exist"
msgstr "Ce jeton n'existe pas" msgstr "Ce jeton n'existe pas"
#: lib/graphql/resolvers/feed_token.ex:69 #: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID" msgid "Token is not a valid UUID"
msgstr "Ce jeton n'est pas un UUID valide" msgstr "Ce jeton n'est pas un UUID valide"
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323 #: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
msgid "User not found" msgid "User not found"
msgstr "Membre non trouvé" msgstr "Membre non trouvé"
#: lib/graphql/resolvers/person.ex:235 #: lib/graphql/resolvers/person.ex:234
msgid "You already have a profile for this user" msgid "You already have a profile for this user"
msgstr "Vous avez déjà un profil pour cet utilisateur" msgstr "Vous avez déjà un profil pour cet utilisateur"
#: lib/graphql/resolvers/participant.ex:134 #: lib/graphql/resolvers/participant.ex:131
msgid "You are already a participant of this event" msgid "You are already a participant of this event"
msgstr "Vous êtes déjà un·e participant·e à cet événement" msgstr "Vous êtes déjà un·e participant·e à cet événement"
#: lib/graphql/resolvers/discussion.ex:185 #: lib/graphql/resolvers/discussion.ex:188
msgid "You are not a member of the group the discussion belongs to" 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" msgstr "Vous n'êtes pas un membre du groupe dans lequel se fait la discussion"
@ -473,7 +473,7 @@ msgstr "Vous n'êtes pas administrateur·ice ou modérateur·ice de ce groupe"
msgid "You are not allowed to create a comment if not connected" msgid "You are not allowed to create a comment if not connected"
msgstr "Vous n'êtes pas autorisé·e à créer un commentaire si non connecté·e" msgstr "Vous n'êtes pas autorisé·e à créer un commentaire si non connecté·e"
#: lib/graphql/resolvers/feed_token.ex:44 #: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected" msgid "You are not allowed to create a feed token if not connected"
msgstr "Vous n'êtes pas autorisé·e à créer un jeton de flux si non connecté·e" msgstr "Vous n'êtes pas autorisé·e à créer un jeton de flux si non connecté·e"
@ -481,7 +481,7 @@ msgstr "Vous n'êtes pas autorisé·e à créer un jeton de flux si non connect
msgid "You are not allowed to delete a comment if not connected" msgid "You are not allowed to delete a comment if not connected"
msgstr "Vous n'êtes pas autorisé·e à supprimer un commentaire si non connecté·e" msgstr "Vous n'êtes pas autorisé·e à supprimer un commentaire si non connecté·e"
#: lib/graphql/resolvers/feed_token.ex:81 #: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected" msgid "You are not allowed to delete a feed token if not connected"
msgstr "Vous n'êtes pas autorisé·e à supprimer un jeton de flux si non connecté·e" msgstr "Vous n'êtes pas autorisé·e à supprimer un jeton de flux si non connecté·e"
@ -489,7 +489,7 @@ msgstr "Vous n'êtes pas autorisé·e à supprimer un jeton de flux si non conne
msgid "You are not allowed to update a comment if not connected" 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" msgstr "Vous n'êtes pas autorisé·e à mettre à jour un commentaire si non connecté·e"
#: lib/graphql/resolvers/participant.ex:167 lib/graphql/resolvers/participant.ex:196 #: lib/graphql/resolvers/participant.ex:164 lib/graphql/resolvers/participant.ex:193
msgid "You can't leave event because you're the only event creator participant" 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" msgstr "Vous ne pouvez pas quitter cet événement car vous en êtes le ou la seule créateur·ice participant"
@ -511,7 +511,7 @@ msgstr "Vous ne pouvez pas supprimer cet événement"
msgid "You cannot invite to this group" msgid "You cannot invite to this group"
msgstr "Vous ne pouvez pas rejoindre ce groupe" msgstr "Vous ne pouvez pas rejoindre ce groupe"
#: lib/graphql/resolvers/feed_token.ex:75 #: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token" msgid "You don't have permission to delete this token"
msgstr "Vous n'avez pas la permission de supprimer ce jeton" msgstr "Vous n'avez pas la permission de supprimer ce jeton"
@ -523,7 +523,7 @@ msgstr "Vous devez être connecté·e pour rejoindre un groupe"
msgid "You need to be logged-in and a moderator to list reports" msgid "You need to be logged-in and a moderator to list reports"
msgstr "Vous devez être connecté·e pour rejoindre un groupe" msgstr "Vous devez être connecté·e pour rejoindre un groupe"
#: lib/graphql/resolvers/report.ex:118 #: lib/graphql/resolvers/report.ex:115
msgid "You need to be logged-in and a moderator to update a report" msgid "You need to be logged-in and a moderator to update a report"
msgstr "Vous devez être connecté·e pour supprimer un groupe" msgstr "Vous devez être connecté·e pour supprimer un groupe"
@ -531,15 +531,15 @@ msgstr "Vous devez être connecté·e pour supprimer un groupe"
msgid "You need to be logged-in and a moderator to view a report" msgid "You need to be logged-in and a moderator to view a report"
msgstr "Vous devez être connecté·e pour rejoindre un groupe" msgstr "Vous devez être connecté·e pour rejoindre un groupe"
#: lib/graphql/resolvers/admin.ex:220 #: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings" msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "Vous devez être connecté·e et un·e administrateur·ice pour accéder aux paramètres administrateur" msgstr "Vous devez être connecté·e et un·e administrateur·ice pour accéder aux paramètres administrateur"
#: lib/graphql/resolvers/admin.ex:205 #: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics" msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "Vous devez être connecté·e et un·e administrateur·ice pour accéder aux panneau de statistiques" msgstr "Vous devez être connecté·e et un·e administrateur·ice pour accéder aux panneau de statistiques"
#: lib/graphql/resolvers/admin.ex:244 #: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings" 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" msgstr "Vous devez être connecté·e et un·e administrateur·ice pour sauvegarder les paramètres administrateur"
@ -559,7 +559,7 @@ msgstr "Vous devez être connecté·e pour créer des événements"
msgid "You need to be logged-in to create posts" msgid "You need to be logged-in to create posts"
msgstr "Vous devez être connecté·e pour quitter un groupe" msgstr "Vous devez être connecté·e pour quitter un groupe"
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92 #: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
msgid "You need to be logged-in to create reports" msgid "You need to be logged-in to create reports"
msgstr "Vous devez être connecté·e pour quitter un groupe" msgstr "Vous devez être connecté·e pour quitter un groupe"
@ -579,11 +579,11 @@ msgstr "Vous devez être connecté·e pour supprimer un groupe"
msgid "You need to be logged-in to delete resources" msgid "You need to be logged-in to delete resources"
msgstr "Vous devez être connecté·e pour supprimer un groupe" msgstr "Vous devez être connecté·e pour supprimer un groupe"
#: lib/graphql/resolvers/participant.ex:108 #: lib/graphql/resolvers/participant.ex:105
msgid "You need to be logged-in to join an event" msgid "You need to be logged-in to join an event"
msgstr "Vous devez être connecté·e pour rejoindre un groupe" msgstr "Vous devez être connecté·e pour rejoindre un groupe"
#: lib/graphql/resolvers/participant.ex:207 #: lib/graphql/resolvers/participant.ex:204
msgid "You need to be logged-in to leave an event" msgid "You need to be logged-in to leave an event"
msgstr "Vous devez être connecté·e pour quitter un groupe" msgstr "Vous devez être connecté·e pour quitter un groupe"
@ -603,11 +603,11 @@ msgstr "Vous devez être connecté·e pour mettre à jour un groupe"
msgid "You need to be logged-in to view a resource preview" msgid "You need to be logged-in to view a resource preview"
msgstr "Vous devez être connecté·e pour supprimer un groupe" msgstr "Vous devez être connecté·e pour supprimer un groupe"
#: lib/graphql/resolvers/picture.ex:86 #: lib/graphql/resolvers/picture.ex:83
msgid "You need to login to upload a picture" msgid "You need to login to upload a picture"
msgstr "Vous devez être connecté·e pour mettre à jour un groupe" msgstr "Vous devez être connecté·e pour mettre à jour un groupe"
#: lib/graphql/resolvers/report.ex:84 #: lib/graphql/resolvers/report.ex:81
msgid "Reporter ID does not match the anonymous profile id" msgid "Reporter ID does not match the anonymous profile id"
msgstr "L'ID du signalant ne correspond pas à l'ID du profil anonyme" msgstr "L'ID du signalant ne correspond pas à l'ID du profil anonyme"
@ -619,7 +619,7 @@ msgstr "Le profil du signalant n'est pas possédé par l'utilisateur actuel"
msgid "Parent resource doesn't belong to this group" msgid "Parent resource doesn't belong to this group"
msgstr "La ressource parente n'appartient pas à ce groupe" msgstr "La ressource parente n'appartient pas à ce groupe"
#: lib/graphql/resolvers/participant.ex:93 #: lib/graphql/resolvers/participant.ex:90
msgid "Profile ID provided is not the anonymous profile one" msgid "Profile ID provided is not the anonymous profile one"
msgstr "L'ID du profil fourni ne correspond pas au profil anonyme" msgstr "L'ID du profil fourni ne correspond pas au profil anonyme"
@ -679,11 +679,11 @@ msgstr "Vous ne pouvez pas accepter cette invitation avec ce profil."
msgid "You can't reject this invitation with this profile." msgid "You can't reject this invitation with this profile."
msgstr "Vous ne pouvez pas rejeter cette invitation avec ce profil." msgstr "Vous ne pouvez pas rejeter cette invitation avec ce profil."
#: lib/graphql/resolvers/picture.ex:78 #: lib/graphql/resolvers/picture.ex:75
msgid "File doesn't have an allowed MIME type." msgid "File doesn't have an allowed MIME type."
msgstr "Le fichier n'a pas un type MIME autorisé." msgstr "Le fichier n'a pas un type MIME autorisé."
#: lib/graphql/resolvers/group.ex:172 #: lib/graphql/resolvers/group.ex:170
msgid "Profile is not administrator for the group" msgid "Profile is not administrator for the group"
msgstr "Le profil n'est pas administrateur·ice pour le groupe" msgstr "Le profil n'est pas administrateur·ice pour le groupe"
@ -706,3 +706,7 @@ msgstr "Ce·tte membre a déjà été rejetté·e."
#: lib/graphql/resolvers/member.ex:189 #: lib/graphql/resolvers/member.ex:189
msgid "You don't have the right to remove this member." msgid "You don't have the right to remove this member."
msgstr "Vous n'avez pas les droits pour supprimer ce·tte membre." msgstr "Vous n'avez pas les droits pour supprimer ce·tte membre."
#: lib/mobilizon/actors/actor.ex:344
msgid "This username is already taken."
msgstr "Cet identifiant est déjà pris."

File diff suppressed because it is too large Load Diff

View File

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

File diff suppressed because it is too large Load Diff

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -114,17 +114,17 @@ msgid "You created an account on %{host} with this email address. You are one cl
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:113 #: lib/web/email/participation.ex:112
msgid "Your participation to event %{title} has been approved" msgid "Your participation to event %{title} has been approved"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:71 #: lib/web/email/participation.ex:70
msgid "Your participation to event %{title} has been rejected" msgid "Your participation to event %{title} has been rejected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/event.ex:36 #: lib/web/email/event.ex:37
msgid "Event %{title} has been updated" msgid "Event %{title} has been updated"
msgstr "" msgstr ""
@ -144,7 +144,7 @@ msgid "Warning"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:135 #: lib/web/email/participation.ex:134
msgid "Confirm your participation to event %{title}" msgid "Confirm your participation to event %{title}"
msgstr "" msgstr ""
@ -396,13 +396,13 @@ msgstr[0] ""
#, elixir-format #, elixir-format
#: lib/web/templates/email/notification_each_week.html.eex:38 #: lib/web/templates/email/notification_each_week.html.eex:38
#: lib/web/templates/email/notification_each_week.text.eex:4 #: lib/web/templates/email/notification_each_week.text.eex:3
msgid "You have one event this week:" msgid "You have one event this week:"
msgid_plural "You have %{total} events this week:" msgid_plural "You have %{total} events this week:"
msgstr[0] "" msgstr[0] ""
#, elixir-format #, elixir-format
#: lib/service/metadata/utils.ex:27 #: lib/service/metadata/utils.ex:52
msgid "The event organizer didn't add any description." msgid "The event organizer didn't add any description."
msgstr "" msgstr ""
@ -757,7 +757,7 @@ msgstr ""
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 #: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133 #: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:11 lib/web/templates/email/on_day_notification.html.eex:70
#: lib/web/templates/email/on_day_notification.text.eex:14 #: lib/web/templates/email/on_day_notification.text.eex:14
msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button." msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button."
msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button." msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button."
@ -1231,7 +1231,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:92 #: lib/web/email/participation.ex:91
msgid "Your participation to event %{title} has been confirmed" msgid "Your participation to event %{title} has been confirmed"
msgstr "" msgstr ""
@ -1358,7 +1358,7 @@ msgstr ""
msgid "We're sorry, but something went wrong on our end." msgid "We're sorry, but something went wrong on our end."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/web/templates/email/email.html.eex:88 #: lib/web/templates/email/email.html.eex:88
#: lib/web/templates/email/email.text.eex:4 #: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon." msgid "This is a demonstration site to test Mobilizon."

View File

@ -86,17 +86,17 @@ msgid "Cannot refresh the token"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:139 #: lib/graphql/resolvers/group.ex:137
msgid "Creator profile is not owned by the current user" msgid "Creator profile is not owned by the current user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:203 #: lib/graphql/resolvers/group.ex:201
msgid "Current profile is not a member of this group" msgid "Current profile is not a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:207 #: lib/graphql/resolvers/group.ex:205
msgid "Current profile is not an administrator of the selected group" msgid "Current profile is not an administrator of the selected group"
msgstr "" msgstr ""
@ -106,13 +106,13 @@ msgid "Error while saving user settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200 #: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83 #: lib/graphql/resolvers/group.ex:229 lib/graphql/resolvers/group.ex:264 lib/graphql/resolvers/member.ex:83
msgid "Group not found" msgid "Group not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:69 #: lib/graphql/resolvers/group.ex:66
msgid "Group with ID %{id} not found" msgid "Group with ID %{id} not found"
msgstr "" msgstr ""
@ -122,7 +122,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:280 #: lib/graphql/resolvers/group.ex:261
msgid "Member not found" msgid "Member not found"
msgstr "" msgstr ""
@ -138,19 +138,18 @@ msgid "No user to validate with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76 #: lib/graphql/resolvers/person.ex:231 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219 #: lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found" msgid "No user with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:245 #: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/member.ex:80
#: lib/graphql/resolvers/member.ex:80 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 #: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:155 lib/graphql/resolvers/person.ex:189
#: lib/graphql/resolvers/person.ex:191 lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288 #: lib/graphql/resolvers/person.ex:255 lib/graphql/resolvers/person.ex:284 lib/graphql/resolvers/person.ex:297
#: lib/graphql/resolvers/person.ex:301 lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110 #: lib/graphql/resolvers/picture.ex:72 lib/graphql/resolvers/report.ex:107 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:57
msgid "Profile is not owned by authenticated user" msgid "Profile is not owned by authenticated user"
msgstr "" msgstr ""
@ -216,22 +215,22 @@ msgid "User requested is not logged-in"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:254 #: lib/graphql/resolvers/group.ex:235
msgid "You are already a member of this group" msgid "You are already a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:287 #: lib/graphql/resolvers/group.ex:268
msgid "You can't leave this group because you are the only administrator" msgid "You can't leave this group because you are the only administrator"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:251 #: lib/graphql/resolvers/group.ex:232
msgid "You cannot join this group" msgid "You cannot join this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:97 #: lib/graphql/resolvers/group.ex:94
msgid "You may not list groups unless moderator." msgid "You may not list groups unless moderator."
msgstr "" msgstr ""
@ -246,7 +245,7 @@ msgid "You need to be logged-in to change your password"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:212 #: lib/graphql/resolvers/group.ex:210
msgid "You need to be logged-in to delete a group" msgid "You need to be logged-in to delete a group"
msgstr "" msgstr ""
@ -256,17 +255,17 @@ msgid "You need to be logged-in to delete your account"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:259 #: lib/graphql/resolvers/group.ex:240
msgid "You need to be logged-in to join a group" msgid "You need to be logged-in to join a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:292 #: lib/graphql/resolvers/group.ex:273
msgid "You need to be logged-in to leave a group" msgid "You need to be logged-in to leave a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:177 #: lib/graphql/resolvers/group.ex:175
msgid "You need to be logged-in to update a group" msgid "You need to be logged-in to update a group"
msgstr "" msgstr ""
@ -326,22 +325,22 @@ msgid "Profile already suspended"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:96 #: lib/graphql/resolvers/participant.ex:93
msgid "A valid email is required by your instance" msgid "A valid email is required by your instance"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:90 #: lib/graphql/resolvers/participant.ex:87
msgid "Anonymous participation is not enabled" msgid "Anonymous participation is not enabled"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:188 #: lib/graphql/resolvers/person.ex:186
msgid "Cannot remove the last administrator of a group" msgid "Cannot remove the last administrator of a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:185 #: lib/graphql/resolvers/person.ex:183
msgid "Cannot remove the last identity of a user" msgid "Cannot remove the last identity of a user"
msgstr "" msgstr ""
@ -356,17 +355,17 @@ msgid "Discussion not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87 #: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
msgid "Error while saving report" msgid "Error while saving report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:113 #: lib/graphql/resolvers/report.ex:110
msgid "Error while updating report" msgid "Error while updating report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:131 #: lib/graphql/resolvers/participant.ex:128
msgid "Event id not found" msgid "Event id not found"
msgstr "" msgstr ""
@ -377,23 +376,23 @@ msgid "Event not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:87 #: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160 #: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
msgid "Event with this ID %{id} doesn't exist" msgid "Event with this ID %{id} doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:103 #: lib/graphql/resolvers/participant.ex:100
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234 #: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
msgid "Moderator profile is not owned by authenticated user" msgid "Moderator profile is not owned by authenticated user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:181 #: lib/graphql/resolvers/discussion.ex:184
msgid "No discussion with ID %{id}" msgid "No discussion with ID %{id}"
msgstr "" msgstr ""
@ -403,7 +402,7 @@ msgid "No profile found for user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66 #: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token" msgid "No such feed token"
msgstr "" msgstr ""
@ -413,14 +412,14 @@ msgid "Organizer profile is not owned by the user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:244 #: lib/graphql/resolvers/participant.ex:241
msgid "Participant already has role %{role}" msgid "Participant already has role %{role}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:173 #: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237 #: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:234
#: lib/graphql/resolvers/participant.ex:247 #: lib/graphql/resolvers/participant.ex:244
msgid "Participant not found" msgid "Participant not found"
msgstr "" msgstr ""
@ -435,7 +434,7 @@ msgid "Person with username %{username} not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:45 #: lib/graphql/resolvers/picture.ex:42
msgid "Picture with ID %{id} was not found" msgid "Picture with ID %{id} was not found"
msgstr "" msgstr ""
@ -469,12 +468,12 @@ msgid "Profile is not member of group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182 #: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
msgid "Profile not found" msgid "Profile not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241 #: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
msgid "Provided moderator profile doesn't have permission on this event" msgid "Provided moderator profile doesn't have permission on this event"
msgstr "" msgstr ""
@ -489,12 +488,12 @@ msgid "Resource doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:124 #: lib/graphql/resolvers/participant.ex:121
msgid "The event has already reached its maximum capacity" msgid "The event has already reached its maximum capacity"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:267 #: lib/graphql/resolvers/participant.ex:264
msgid "This token is invalid" msgid "This token is invalid"
msgstr "" msgstr ""
@ -510,32 +509,32 @@ msgid "Todo list doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72 #: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist" msgid "Token does not exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69 #: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID" msgid "Token is not a valid UUID"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323 #: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
msgid "User not found" msgid "User not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:235 #: lib/graphql/resolvers/person.ex:234
msgid "You already have a profile for this user" msgid "You already have a profile for this user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:134 #: lib/graphql/resolvers/participant.ex:131
msgid "You are already a participant of this event" msgid "You are already a participant of this event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:185 #: lib/graphql/resolvers/discussion.ex:188
msgid "You are not a member of the group the discussion belongs to" msgid "You are not a member of the group the discussion belongs to"
msgstr "" msgstr ""
@ -555,7 +554,7 @@ msgid "You are not allowed to create a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:44 #: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected" msgid "You are not allowed to create a feed token if not connected"
msgstr "" msgstr ""
@ -565,7 +564,7 @@ msgid "You are not allowed to delete a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:81 #: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected" msgid "You are not allowed to delete a feed token if not connected"
msgstr "" msgstr ""
@ -575,8 +574,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:167 #: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:196 #: lib/graphql/resolvers/participant.ex:193
msgid "You can't leave event because you're the only event creator participant" msgid "You can't leave event because you're the only event creator participant"
msgstr "" msgstr ""
@ -601,7 +600,7 @@ msgid "You cannot invite to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:75 #: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token" msgid "You don't have permission to delete this token"
msgstr "" msgstr ""
@ -616,7 +615,7 @@ msgid "You need to be logged-in and a moderator to list reports"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:118 #: lib/graphql/resolvers/report.ex:115
msgid "You need to be logged-in and a moderator to update a report" msgid "You need to be logged-in and a moderator to update a report"
msgstr "" msgstr ""
@ -626,17 +625,17 @@ msgid "You need to be logged-in and a moderator to view a report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:220 #: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings" msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:205 #: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics" msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:244 #: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings" msgid "You need to be logged-in and an administrator to save admin settings"
msgstr "" msgstr ""
@ -661,7 +660,7 @@ msgid "You need to be logged-in to create posts"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92 #: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
msgid "You need to be logged-in to create reports" msgid "You need to be logged-in to create reports"
msgstr "" msgstr ""
@ -686,12 +685,12 @@ msgid "You need to be logged-in to delete resources"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:108 #: lib/graphql/resolvers/participant.ex:105
msgid "You need to be logged-in to join an event" msgid "You need to be logged-in to join an event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:207 #: lib/graphql/resolvers/participant.ex:204
msgid "You need to be logged-in to leave an event" msgid "You need to be logged-in to leave an event"
msgstr "" msgstr ""
@ -716,12 +715,12 @@ msgid "You need to be logged-in to view a resource preview"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:86 #: lib/graphql/resolvers/picture.ex:83
msgid "You need to login to upload a picture" msgid "You need to login to upload a picture"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:84 #: lib/graphql/resolvers/report.ex:81
msgid "Reporter ID does not match the anonymous profile id" msgid "Reporter ID does not match the anonymous profile id"
msgstr "" msgstr ""
@ -736,7 +735,7 @@ msgid "Parent resource doesn't belong to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:93 #: lib/graphql/resolvers/participant.ex:90
msgid "Profile ID provided is not the anonymous profile one" msgid "Profile ID provided is not the anonymous profile one"
msgstr "" msgstr ""
@ -811,12 +810,12 @@ msgid "You can't reject this invitation with this profile."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:78 #: lib/graphql/resolvers/picture.ex:75
msgid "File doesn't have an allowed MIME type." msgid "File doesn't have an allowed MIME type."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:172 #: lib/graphql/resolvers/group.ex:170
msgid "Profile is not administrator for the group" msgid "Profile is not administrator for the group"
msgstr "" msgstr ""
@ -844,3 +843,8 @@ msgstr ""
#: lib/graphql/resolvers/member.ex:189 #: lib/graphql/resolvers/member.ex:189
msgid "You don't have the right to remove this member." msgid "You don't have the right to remove this member."
msgstr "" msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
msgid "This username is already taken."
msgstr ""

View File

@ -123,17 +123,17 @@ msgstr ""
"klik van de activering. Gelieve deze email te negeren als u dit niet was." "klik van de activering. Gelieve deze email te negeren als u dit niet was."
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:113 #: lib/web/email/participation.ex:112
msgid "Your participation to event %{title} has been approved" msgid "Your participation to event %{title} has been approved"
msgstr "Uw deelname aan het evenement %{title} is goedgekeurd" msgstr "Uw deelname aan het evenement %{title} is goedgekeurd"
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:71 #: lib/web/email/participation.ex:70
msgid "Your participation to event %{title} has been rejected" msgid "Your participation to event %{title} has been rejected"
msgstr "Uw deelname aan het evenement %{title} is afgewezen" msgstr "Uw deelname aan het evenement %{title} is afgewezen"
#, elixir-format #, elixir-format
#: lib/web/email/event.ex:36 #: lib/web/email/event.ex:37
msgid "Event %{title} has been updated" msgid "Event %{title} has been updated"
msgstr "Evenement %{title} is bijgewerkt" msgstr "Evenement %{title} is bijgewerkt"
@ -153,7 +153,7 @@ msgid "Warning"
msgstr "Waarschuwing" msgstr "Waarschuwing"
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:135 #: lib/web/email/participation.ex:134
msgid "Confirm your participation to event %{title}" msgid "Confirm your participation to event %{title}"
msgstr "" msgstr ""
@ -409,14 +409,14 @@ msgstr[1] ""
#, elixir-format #, elixir-format
#: lib/web/templates/email/notification_each_week.html.eex:38 #: lib/web/templates/email/notification_each_week.html.eex:38
#: lib/web/templates/email/notification_each_week.text.eex:4 #: lib/web/templates/email/notification_each_week.text.eex:3
msgid "You have one event this week:" msgid "You have one event this week:"
msgid_plural "You have %{total} events this week:" msgid_plural "You have %{total} events this week:"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#, elixir-format #, elixir-format
#: lib/service/metadata/utils.ex:27 #: lib/service/metadata/utils.ex:52
msgid "The event organizer didn't add any description." msgid "The event organizer didn't add any description."
msgstr "" msgstr ""
@ -773,7 +773,7 @@ msgstr ""
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 #: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133 #: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:11 lib/web/templates/email/on_day_notification.html.eex:70
#: lib/web/templates/email/on_day_notification.text.eex:14 #: lib/web/templates/email/on_day_notification.text.eex:14
msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button." msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button."
msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button." msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button."
@ -1255,7 +1255,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
msgstr "U hebt gevraagd om deel te nemen aan het evenement %{title}." msgstr "U hebt gevraagd om deel te nemen aan het evenement %{title}."
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:92 #: lib/web/email/participation.ex:91
msgid "Your participation to event %{title} has been confirmed" msgid "Your participation to event %{title} has been confirmed"
msgstr "Uw deelname aan het evenement %{title} is goedgekeurd" msgstr "Uw deelname aan het evenement %{title} is goedgekeurd"
@ -1383,7 +1383,7 @@ msgstr ""
msgid "We're sorry, but something went wrong on our end." msgid "We're sorry, but something went wrong on our end."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/web/templates/email/email.html.eex:88 #: lib/web/templates/email/email.html.eex:88
#: lib/web/templates/email/email.text.eex:4 #: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon." msgid "This is a demonstration site to test Mobilizon."

View File

@ -92,17 +92,17 @@ msgid "Cannot refresh the token"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:139 #: lib/graphql/resolvers/group.ex:137
msgid "Creator profile is not owned by the current user" msgid "Creator profile is not owned by the current user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:203 #: lib/graphql/resolvers/group.ex:201
msgid "Current profile is not a member of this group" msgid "Current profile is not a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:207 #: lib/graphql/resolvers/group.ex:205
msgid "Current profile is not an administrator of the selected group" msgid "Current profile is not an administrator of the selected group"
msgstr "" msgstr ""
@ -112,13 +112,13 @@ msgid "Error while saving user settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200 #: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83 #: lib/graphql/resolvers/group.ex:229 lib/graphql/resolvers/group.ex:264 lib/graphql/resolvers/member.ex:83
msgid "Group not found" msgid "Group not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:69 #: lib/graphql/resolvers/group.ex:66
msgid "Group with ID %{id} not found" msgid "Group with ID %{id} not found"
msgstr "" msgstr ""
@ -128,7 +128,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:280 #: lib/graphql/resolvers/group.ex:261
msgid "Member not found" msgid "Member not found"
msgstr "" msgstr ""
@ -144,19 +144,18 @@ msgid "No user to validate with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76 #: lib/graphql/resolvers/person.ex:231 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219 #: lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found" msgid "No user with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:245 #: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/member.ex:80
#: lib/graphql/resolvers/member.ex:80 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 #: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:155 lib/graphql/resolvers/person.ex:189
#: lib/graphql/resolvers/person.ex:191 lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288 #: lib/graphql/resolvers/person.ex:255 lib/graphql/resolvers/person.ex:284 lib/graphql/resolvers/person.ex:297
#: lib/graphql/resolvers/person.ex:301 lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110 #: lib/graphql/resolvers/picture.ex:72 lib/graphql/resolvers/report.ex:107 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:57
msgid "Profile is not owned by authenticated user" msgid "Profile is not owned by authenticated user"
msgstr "" msgstr ""
@ -222,22 +221,22 @@ msgid "User requested is not logged-in"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:254 #: lib/graphql/resolvers/group.ex:235
msgid "You are already a member of this group" msgid "You are already a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:287 #: lib/graphql/resolvers/group.ex:268
msgid "You can't leave this group because you are the only administrator" msgid "You can't leave this group because you are the only administrator"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:251 #: lib/graphql/resolvers/group.ex:232
msgid "You cannot join this group" msgid "You cannot join this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:97 #: lib/graphql/resolvers/group.ex:94
msgid "You may not list groups unless moderator." msgid "You may not list groups unless moderator."
msgstr "" msgstr ""
@ -252,7 +251,7 @@ msgid "You need to be logged-in to change your password"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:212 #: lib/graphql/resolvers/group.ex:210
msgid "You need to be logged-in to delete a group" msgid "You need to be logged-in to delete a group"
msgstr "" msgstr ""
@ -262,17 +261,17 @@ msgid "You need to be logged-in to delete your account"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:259 #: lib/graphql/resolvers/group.ex:240
msgid "You need to be logged-in to join a group" msgid "You need to be logged-in to join a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:292 #: lib/graphql/resolvers/group.ex:273
msgid "You need to be logged-in to leave a group" msgid "You need to be logged-in to leave a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:177 #: lib/graphql/resolvers/group.ex:175
msgid "You need to be logged-in to update a group" msgid "You need to be logged-in to update a group"
msgstr "" msgstr ""
@ -332,22 +331,22 @@ msgid "Profile already suspended"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:96 #: lib/graphql/resolvers/participant.ex:93
msgid "A valid email is required by your instance" msgid "A valid email is required by your instance"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:90 #: lib/graphql/resolvers/participant.ex:87
msgid "Anonymous participation is not enabled" msgid "Anonymous participation is not enabled"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:188 #: lib/graphql/resolvers/person.ex:186
msgid "Cannot remove the last administrator of a group" msgid "Cannot remove the last administrator of a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:185 #: lib/graphql/resolvers/person.ex:183
msgid "Cannot remove the last identity of a user" msgid "Cannot remove the last identity of a user"
msgstr "" msgstr ""
@ -362,17 +361,17 @@ msgid "Discussion not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87 #: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
msgid "Error while saving report" msgid "Error while saving report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:113 #: lib/graphql/resolvers/report.ex:110
msgid "Error while updating report" msgid "Error while updating report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:131 #: lib/graphql/resolvers/participant.ex:128
msgid "Event id not found" msgid "Event id not found"
msgstr "" msgstr ""
@ -383,23 +382,23 @@ msgid "Event not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:87 #: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160 #: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
msgid "Event with this ID %{id} doesn't exist" msgid "Event with this ID %{id} doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:103 #: lib/graphql/resolvers/participant.ex:100
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234 #: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
msgid "Moderator profile is not owned by authenticated user" msgid "Moderator profile is not owned by authenticated user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:181 #: lib/graphql/resolvers/discussion.ex:184
msgid "No discussion with ID %{id}" msgid "No discussion with ID %{id}"
msgstr "" msgstr ""
@ -409,7 +408,7 @@ msgid "No profile found for user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66 #: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token" msgid "No such feed token"
msgstr "" msgstr ""
@ -419,14 +418,14 @@ msgid "Organizer profile is not owned by the user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:244 #: lib/graphql/resolvers/participant.ex:241
msgid "Participant already has role %{role}" msgid "Participant already has role %{role}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:173 #: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237 #: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:234
#: lib/graphql/resolvers/participant.ex:247 #: lib/graphql/resolvers/participant.ex:244
msgid "Participant not found" msgid "Participant not found"
msgstr "" msgstr ""
@ -441,7 +440,7 @@ msgid "Person with username %{username} not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:45 #: lib/graphql/resolvers/picture.ex:42
msgid "Picture with ID %{id} was not found" msgid "Picture with ID %{id} was not found"
msgstr "" msgstr ""
@ -475,12 +474,12 @@ msgid "Profile is not member of group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182 #: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
msgid "Profile not found" msgid "Profile not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241 #: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
msgid "Provided moderator profile doesn't have permission on this event" msgid "Provided moderator profile doesn't have permission on this event"
msgstr "" msgstr ""
@ -495,12 +494,12 @@ msgid "Resource doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:124 #: lib/graphql/resolvers/participant.ex:121
msgid "The event has already reached its maximum capacity" msgid "The event has already reached its maximum capacity"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:267 #: lib/graphql/resolvers/participant.ex:264
msgid "This token is invalid" msgid "This token is invalid"
msgstr "" msgstr ""
@ -516,32 +515,32 @@ msgid "Todo list doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72 #: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist" msgid "Token does not exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69 #: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID" msgid "Token is not a valid UUID"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323 #: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
msgid "User not found" msgid "User not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:235 #: lib/graphql/resolvers/person.ex:234
msgid "You already have a profile for this user" msgid "You already have a profile for this user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:134 #: lib/graphql/resolvers/participant.ex:131
msgid "You are already a participant of this event" msgid "You are already a participant of this event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:185 #: lib/graphql/resolvers/discussion.ex:188
msgid "You are not a member of the group the discussion belongs to" msgid "You are not a member of the group the discussion belongs to"
msgstr "" msgstr ""
@ -561,7 +560,7 @@ msgid "You are not allowed to create a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:44 #: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected" msgid "You are not allowed to create a feed token if not connected"
msgstr "" msgstr ""
@ -571,7 +570,7 @@ msgid "You are not allowed to delete a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:81 #: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected" msgid "You are not allowed to delete a feed token if not connected"
msgstr "" msgstr ""
@ -581,8 +580,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:167 #: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:196 #: lib/graphql/resolvers/participant.ex:193
msgid "You can't leave event because you're the only event creator participant" msgid "You can't leave event because you're the only event creator participant"
msgstr "" msgstr ""
@ -607,7 +606,7 @@ msgid "You cannot invite to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:75 #: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token" msgid "You don't have permission to delete this token"
msgstr "" msgstr ""
@ -622,7 +621,7 @@ msgid "You need to be logged-in and a moderator to list reports"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:118 #: lib/graphql/resolvers/report.ex:115
msgid "You need to be logged-in and a moderator to update a report" msgid "You need to be logged-in and a moderator to update a report"
msgstr "" msgstr ""
@ -632,17 +631,17 @@ msgid "You need to be logged-in and a moderator to view a report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:220 #: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings" msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:205 #: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics" msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:244 #: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings" msgid "You need to be logged-in and an administrator to save admin settings"
msgstr "" msgstr ""
@ -667,7 +666,7 @@ msgid "You need to be logged-in to create posts"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92 #: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
msgid "You need to be logged-in to create reports" msgid "You need to be logged-in to create reports"
msgstr "" msgstr ""
@ -692,12 +691,12 @@ msgid "You need to be logged-in to delete resources"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:108 #: lib/graphql/resolvers/participant.ex:105
msgid "You need to be logged-in to join an event" msgid "You need to be logged-in to join an event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:207 #: lib/graphql/resolvers/participant.ex:204
msgid "You need to be logged-in to leave an event" msgid "You need to be logged-in to leave an event"
msgstr "" msgstr ""
@ -722,12 +721,12 @@ msgid "You need to be logged-in to view a resource preview"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:86 #: lib/graphql/resolvers/picture.ex:83
msgid "You need to login to upload a picture" msgid "You need to login to upload a picture"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:84 #: lib/graphql/resolvers/report.ex:81
msgid "Reporter ID does not match the anonymous profile id" msgid "Reporter ID does not match the anonymous profile id"
msgstr "" msgstr ""
@ -742,7 +741,7 @@ msgid "Parent resource doesn't belong to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:93 #: lib/graphql/resolvers/participant.ex:90
msgid "Profile ID provided is not the anonymous profile one" msgid "Profile ID provided is not the anonymous profile one"
msgstr "" msgstr ""
@ -817,12 +816,12 @@ msgid "You can't reject this invitation with this profile."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:78 #: lib/graphql/resolvers/picture.ex:75
msgid "File doesn't have an allowed MIME type." msgid "File doesn't have an allowed MIME type."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:172 #: lib/graphql/resolvers/group.ex:170
msgid "Profile is not administrator for the group" msgid "Profile is not administrator for the group"
msgstr "" msgstr ""
@ -850,3 +849,8 @@ msgstr ""
#: lib/graphql/resolvers/member.ex:189 #: lib/graphql/resolvers/member.ex:189
msgid "You don't have the right to remove this member." msgid "You don't have the right to remove this member."
msgstr "" msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
msgid "This username is already taken."
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -109,767 +109,771 @@ msgstr "må vera større enn eller lik %{number}"
msgid "must be equal to %{number}" msgid "must be equal to %{number}"
msgstr "må vera lik %{number}" msgstr "må vera lik %{number}"
#: lib/graphql/resolvers/user.ex:103
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:103
msgid "Cannot refresh the token" msgid "Cannot refresh the token"
msgstr "Kan ikkje fornya teiknet" msgstr "Kan ikkje fornya teiknet"
#: lib/graphql/resolvers/group.ex:139
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:137
msgid "Creator profile is not owned by the current user" msgid "Creator profile is not owned by the current user"
msgstr "Denne brukaren eig ikkje opphavsprofilen" msgstr "Denne brukaren eig ikkje opphavsprofilen"
#: lib/graphql/resolvers/group.ex:203
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:201
msgid "Current profile is not a member of this group" msgid "Current profile is not a member of this group"
msgstr "Denne brukaren er ikkje medlem av gruppa" msgstr "Denne brukaren er ikkje medlem av gruppa"
#: lib/graphql/resolvers/group.ex:207
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:205
msgid "Current profile is not an administrator of the selected group" msgid "Current profile is not an administrator of the selected group"
msgstr "Denne brukaren er ikkje styrar av gruppa" msgstr "Denne brukaren er ikkje styrar av gruppa"
#: lib/graphql/resolvers/user.ex:512
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:512
msgid "Error while saving user settings" msgid "Error while saving user settings"
msgstr "Greidde ikkje lagra brukarinnstillingane" msgstr "Greidde ikkje lagra brukarinnstillingane"
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:229 lib/graphql/resolvers/group.ex:264 lib/graphql/resolvers/member.ex:83
msgid "Group not found" msgid "Group not found"
msgstr "Fann ikkje gruppa" msgstr "Fann ikkje gruppa"
#: lib/graphql/resolvers/group.ex:69
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:66
msgid "Group with ID %{id} not found" msgid "Group with ID %{id} not found"
msgstr "Fann ikkje gruppa med ID %{id}" msgstr "Fann ikkje gruppa med ID %{id}"
#: lib/graphql/resolvers/user.ex:83
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:83
msgid "Impossible to authenticate, either your email or password are invalid." msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "Greier ikkje å logga inn. Epostadressa eller passordet ditt er feil." msgstr "Greier ikkje å logga inn. Epostadressa eller passordet ditt er feil."
#: lib/graphql/resolvers/group.ex:280
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:261
msgid "Member not found" msgid "Member not found"
msgstr "Fann ikkje medlemen" msgstr "Fann ikkje medlemen"
#, elixir-format
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88 #: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
#: lib/graphql/resolvers/user.ex:417 #: lib/graphql/resolvers/user.ex:417
#, elixir-format
msgid "No profile found for the moderator user" msgid "No profile found for the moderator user"
msgstr "Fann ingen profil for moderator-brukaren" msgstr "Fann ingen profil for moderator-brukaren"
#: lib/graphql/resolvers/user.ex:195
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:195
msgid "No user to validate with this email was found" msgid "No user to validate with this email was found"
msgstr "Fann ingen brukar med denne eposten å godkjenna" msgstr "Fann ingen brukar med denne eposten å godkjenna"
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:231 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found" msgid "No user with this email was found"
msgstr "Fann ingen brukar med denne eposten" msgstr "Fann ingen brukar med denne eposten"
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/member.ex:80 lib/graphql/resolvers/participant.ex:29
#: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157
#: lib/graphql/resolvers/person.ex:191 lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288
#: lib/graphql/resolvers/person.ex:301 lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110
#: lib/graphql/resolvers/todos.ex:57
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/member.ex:80
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:155 lib/graphql/resolvers/person.ex:189
#: lib/graphql/resolvers/person.ex:255 lib/graphql/resolvers/person.ex:284 lib/graphql/resolvers/person.ex:297
#: lib/graphql/resolvers/picture.ex:72 lib/graphql/resolvers/report.ex:107 lib/graphql/resolvers/todos.ex:57
msgid "Profile is not owned by authenticated user" msgid "Profile is not owned by authenticated user"
msgstr "Ingen godkjent brukar eig denne profilen" msgstr "Ingen godkjent brukar eig denne profilen"
#: lib/graphql/resolvers/user.ex:125
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:125
msgid "Registrations are not open" msgid "Registrations are not open"
msgstr "Det er ikkje opna for å registrera seg" msgstr "Det er ikkje opna for å registrera seg"
#: lib/graphql/resolvers/user.ex:330
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:330
msgid "The current password is invalid" msgid "The current password is invalid"
msgstr "Dette passordet er ugyldig" msgstr "Dette passordet er ugyldig"
#: lib/graphql/resolvers/user.ex:382
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:382
msgid "The new email doesn't seem to be valid" msgid "The new email doesn't seem to be valid"
msgstr "Den nye epostadressa ser ut til å vera feil" msgstr "Den nye epostadressa ser ut til å vera feil"
#: lib/graphql/resolvers/user.ex:379
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:379
msgid "The new email must be different" msgid "The new email must be different"
msgstr "Den nye epostadressa må vera annleis" msgstr "Den nye epostadressa må vera annleis"
#: lib/graphql/resolvers/user.ex:333
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:333
msgid "The new password must be different" msgid "The new password must be different"
msgstr "Det nye passordet må vera annleis" 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:376 lib/graphql/resolvers/user.ex:439
#: lib/graphql/resolvers/user.ex:442 #: lib/graphql/resolvers/user.ex:442
#, elixir-format
msgid "The password provided is invalid" msgid "The password provided is invalid"
msgstr "Dette passordet er ugyldig" msgstr "Dette passordet er ugyldig"
#: lib/graphql/resolvers/user.ex:337
#, elixir-format #, 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." 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." msgstr "Dette passordet er for kort. Passord må ha minst 6 teikn."
#: lib/graphql/resolvers/user.ex:215
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:215
msgid "This user can't reset their password" msgid "This user can't reset their password"
msgstr "Denne brukaren kan ikkje nullstilla passordet sitt" msgstr "Denne brukaren kan ikkje nullstilla passordet sitt"
#: lib/graphql/resolvers/user.ex:79
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:79
msgid "This user has been disabled" msgid "This user has been disabled"
msgstr "Denne brukaren er avskrudd" msgstr "Denne brukaren er avskrudd"
#: lib/graphql/resolvers/user.ex:179
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:179
msgid "Unable to validate user" msgid "Unable to validate user"
msgstr "Greier ikkje godkjenna brukaren" msgstr "Greier ikkje godkjenna brukaren"
#: lib/graphql/resolvers/user.ex:420
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:420
msgid "User already disabled" msgid "User already disabled"
msgstr "Brukaren er allereie inaktiv" msgstr "Brukaren er allereie inaktiv"
#: lib/graphql/resolvers/user.ex:487
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:487
msgid "User requested is not logged-in" msgid "User requested is not logged-in"
msgstr "Den førespurte brukaren er ikkje innlogga" msgstr "Den førespurte brukaren er ikkje innlogga"
#: lib/graphql/resolvers/group.ex:254
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:235
msgid "You are already a member of this group" msgid "You are already a member of this group"
msgstr "Du er allereie medlem av denne gruppa" msgstr "Du er allereie medlem av denne gruppa"
#: lib/graphql/resolvers/group.ex:287
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:268
msgid "You can't leave this group because you are the only administrator" 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" msgstr "Du kan ikkje forlata denne gruppa, fordi du er den einaste styraren"
#: lib/graphql/resolvers/group.ex:251
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:232
msgid "You cannot join this group" msgid "You cannot join this group"
msgstr "Du kan ikkje bli med i denne gruppa" msgstr "Du kan ikkje bli med i denne gruppa"
#: lib/graphql/resolvers/group.ex:97
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:94
msgid "You may not list groups unless moderator." msgid "You may not list groups unless moderator."
msgstr "Du kan ikkje lista opp grupper med mindre du er moderator." msgstr "Du kan ikkje lista opp grupper med mindre du er moderator."
#: lib/graphql/resolvers/user.ex:387
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:387
msgid "You need to be logged-in to change your email" msgid "You need to be logged-in to change your email"
msgstr "Du må vera innlogga for å endra epostadressa di" msgstr "Du må vera innlogga for å endra epostadressa di"
#: lib/graphql/resolvers/user.ex:345
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:345
msgid "You need to be logged-in to change your password" msgid "You need to be logged-in to change your password"
msgstr "Du må vera innlogga for å endra passordet ditt" msgstr "Du må vera innlogga for å endra passordet ditt"
#: lib/graphql/resolvers/group.ex:212
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:210
msgid "You need to be logged-in to delete a group" msgid "You need to be logged-in to delete a group"
msgstr "Du må vera innlogga for å sletta ei gruppe" msgstr "Du må vera innlogga for å sletta ei gruppe"
#: lib/graphql/resolvers/user.ex:447
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:447
msgid "You need to be logged-in to delete your account" msgid "You need to be logged-in to delete your account"
msgstr "Du må vera innlogga for å sletta kontoen din" msgstr "Du må vera innlogga for å sletta kontoen din"
#: lib/graphql/resolvers/group.ex:259
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:240
msgid "You need to be logged-in to join a group" msgid "You need to be logged-in to join a group"
msgstr "Du må vera innlogga for å bli med i ei gruppe" msgstr "Du må vera innlogga for å bli med i ei gruppe"
#: lib/graphql/resolvers/group.ex:292
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:273
msgid "You need to be logged-in to leave a group" msgid "You need to be logged-in to leave a group"
msgstr "Du må vera innlogga for å forlata ei gruppe" msgstr "Du må vera innlogga for å forlata ei gruppe"
#: lib/graphql/resolvers/group.ex:177
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:175
msgid "You need to be logged-in to update a group" msgid "You need to be logged-in to update a group"
msgstr "Du må vera innlogga for å oppdatera ei gruppe" msgstr "Du må vera innlogga for å oppdatera ei gruppe"
#: lib/graphql/resolvers/user.ex:58
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users" msgid "You need to have admin access to list users"
msgstr "Du må ha administratorløyve for å lista opp brukarar" msgstr "Du må ha administratorløyve for å lista opp brukarar"
#: lib/graphql/resolvers/user.ex:108
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token" msgid "You need to have an existing token to get a refresh token"
msgstr "Du treng eit eksisterande teikn for å få eit fornyingsteikn" msgstr "Du treng eit eksisterande teikn for å få eit fornyingsteikn"
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
msgid "You requested again a confirmation email too soon" msgid "You requested again a confirmation email too soon"
msgstr "Du ba om ny stadfestingsepost for snøgt" msgstr "Du ba om ny stadfestingsepost for snøgt"
#: lib/graphql/resolvers/user.ex:128
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:128
msgid "Your email is not on the allowlist" msgid "Your email is not on the allowlist"
msgstr "Epostadressa di er ikkje på lista over godkjende adresser" msgstr "Epostadressa di er ikkje på lista over godkjende adresser"
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
msgid "Error while performing background task" msgid "Error while performing background task"
msgstr "Greidde ikkje utføra ei bakgrunnsoppgåve" msgstr "Greidde ikkje utføra ei bakgrunnsoppgåve"
#: lib/graphql/resolvers/actor.ex:27
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:27
msgid "No profile found with this ID" msgid "No profile found with this ID"
msgstr "Fann ingen profil med denne ID-en" msgstr "Fann ingen profil med denne ID-en"
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
msgid "No remote profile found with this ID" msgid "No remote profile found with this ID"
msgstr "Fann ingen fjern profil med denne ID-en" msgstr "Fann ingen fjern profil med denne ID-en"
#: lib/graphql/resolvers/actor.ex:69
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:69
msgid "Only moderators and administrators can suspend a profile" msgid "Only moderators and administrators can suspend a profile"
msgstr "Berre moderatorar og styrarar kan sperra ein profil" msgstr "Berre moderatorar og styrarar kan sperra ein profil"
#: lib/graphql/resolvers/actor.ex:99
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:99
msgid "Only moderators and administrators can unsuspend a profile" msgid "Only moderators and administrators can unsuspend a profile"
msgstr "Berre moderatorar og styrarar kan oppheva sperring av profilar" msgstr "Berre moderatorar og styrarar kan oppheva sperring av profilar"
#: lib/graphql/resolvers/actor.ex:24
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:24
msgid "Only remote profiles may be refreshed" msgid "Only remote profiles may be refreshed"
msgstr "Du kan berre lasta fjerne profilar på nytt" msgstr "Du kan berre lasta fjerne profilar på nytt"
#: lib/graphql/resolvers/actor.ex:61
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:61
msgid "Profile already suspended" msgid "Profile already suspended"
msgstr "Profilen er allereie sperra" msgstr "Profilen er allereie sperra"
#: lib/graphql/resolvers/participant.ex:96
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:93
msgid "A valid email is required by your instance" msgid "A valid email is required by your instance"
msgstr "Nettstaden din krev ei gyldig epostadresse" msgstr "Nettstaden din krev ei gyldig epostadresse"
#: lib/graphql/resolvers/participant.ex:90
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:87
msgid "Anonymous participation is not enabled" msgid "Anonymous participation is not enabled"
msgstr "Det er ikkje høve til å vera med anonymt" msgstr "Det er ikkje høve til å vera med anonymt"
#: lib/graphql/resolvers/person.ex:188
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:186
msgid "Cannot remove the last administrator of a group" msgid "Cannot remove the last administrator of a group"
msgstr "Kan ikkje fjerna den siste styraren i gruppa" msgstr "Kan ikkje fjerna den siste styraren i gruppa"
#: lib/graphql/resolvers/person.ex:185
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:183
msgid "Cannot remove the last identity of a user" msgid "Cannot remove the last identity of a user"
msgstr "Kan ikkje fjerna den siste identiteten til ein brukar" msgstr "Kan ikkje fjerna den siste identiteten til ein brukar"
#: lib/graphql/resolvers/comment.ex:109
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:109
msgid "Comment is already deleted" msgid "Comment is already deleted"
msgstr "Kommentaren er allereie sletta" msgstr "Kommentaren er allereie sletta"
#: lib/graphql/resolvers/discussion.ex:61
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
msgid "Discussion not found" msgid "Discussion not found"
msgstr "Fann ikkje ordskiftet" msgstr "Fann ikkje ordskiftet"
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
msgid "Error while saving report" msgid "Error while saving report"
msgstr "Greidde ikkje lagra rapporten" msgstr "Greidde ikkje lagra rapporten"
#: lib/graphql/resolvers/report.ex:113
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:110
msgid "Error while updating report" msgid "Error while updating report"
msgstr "Greidde ikkje oppdatera rapporten" msgstr "Greidde ikkje oppdatera rapporten"
#: lib/graphql/resolvers/participant.ex:131
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:128
msgid "Event id not found" msgid "Event id not found"
msgstr "Fann ikkje ID-en til hendinga" msgstr "Fann ikkje ID-en til hendinga"
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238 #: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:283 #: lib/graphql/resolvers/event.ex:283
#, elixir-format
msgid "Event not found" msgid "Event not found"
msgstr "Fann ikkje hendinga" msgstr "Fann ikkje hendinga"
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
msgid "Event with this ID %{id} doesn't exist" msgid "Event with this ID %{id} doesn't exist"
msgstr "Det finst inga hending med ID-en %{id}" msgstr "Det finst inga hending med ID-en %{id}"
#: lib/graphql/resolvers/participant.ex:103
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:100
msgid "Internal Error" msgid "Internal Error"
msgstr "Intern feil" msgstr "Intern feil"
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
msgid "Moderator profile is not owned by authenticated user" msgid "Moderator profile is not owned by authenticated user"
msgstr "Det er ingen godkjend brukar som eig moderatorprofilen" msgstr "Det er ingen godkjend brukar som eig moderatorprofilen"
#: lib/graphql/resolvers/discussion.ex:181
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:184
msgid "No discussion with ID %{id}" msgid "No discussion with ID %{id}"
msgstr "Ikkje noko ordskifte med ID-en %{id}" msgstr "Ikkje noko ordskifte med ID-en %{id}"
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
msgid "No profile found for user" msgid "No profile found for user"
msgstr "Fann ingen profil for brukaren" msgstr "Fann ingen profil for brukaren"
#: lib/graphql/resolvers/feed_token.ex:66
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token" msgid "No such feed token"
msgstr "Det finst ikkje noko slikt teikn for kjelda" msgstr "Det finst ikkje noko slikt teikn for kjelda"
#: lib/graphql/resolvers/event.ex:202
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:202
msgid "Organizer profile is not owned by the user" msgid "Organizer profile is not owned by the user"
msgstr "Brukaren eig ikkje tilskiparprofilen" msgstr "Brukaren eig ikkje tilskiparprofilen"
#: lib/graphql/resolvers/participant.ex:244
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:241
msgid "Participant already has role %{role}" msgid "Participant already has role %{role}"
msgstr "Deltakaren har rolla %{role} allereie" msgstr "Deltakaren har rolla %{role} allereie"
#: lib/graphql/resolvers/participant.ex:173
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237
#: lib/graphql/resolvers/participant.ex:247
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:234
#: lib/graphql/resolvers/participant.ex:244
msgid "Participant not found" msgid "Participant not found"
msgstr "Fann ikkje deltakaren" msgstr "Fann ikkje deltakaren"
#: lib/graphql/resolvers/person.ex:31
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:31
msgid "Person with ID %{id} not found" msgid "Person with ID %{id} not found"
msgstr "Fann ingen person med ID-en %{id}" msgstr "Fann ingen person med ID-en %{id}"
#: lib/graphql/resolvers/person.ex:52
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:52
msgid "Person with username %{username} not found" msgid "Person with username %{username} not found"
msgstr "Fann ingen person med brukarnamnet %{username}" msgstr "Fann ingen person med brukarnamnet %{username}"
#: lib/graphql/resolvers/picture.ex:45
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:42
msgid "Picture with ID %{id} was not found" msgid "Picture with ID %{id} was not found"
msgstr "Fann ikkje biletet med ID-en %{id}" msgstr "Fann ikkje biletet med ID-en %{id}"
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
msgid "Post ID is not a valid ID" msgid "Post ID is not a valid ID"
msgstr "Innleggs-IDen er ugyldig" msgstr "Innleggs-IDen er ugyldig"
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
msgid "Post doesn't exist" msgid "Post doesn't exist"
msgstr "Innlegget finst ikkje" msgstr "Innlegget finst ikkje"
#: lib/graphql/resolvers/member.ex:86
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:86
msgid "Profile invited doesn't exist" msgid "Profile invited doesn't exist"
msgstr "Den inviterte profilen finst ikkje" msgstr "Den inviterte profilen finst ikkje"
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
msgid "Profile is already a member of this group" msgid "Profile is already a member of this group"
msgstr "Profilen er allereie medlem i denne gruppa" msgstr "Profilen er allereie medlem i denne gruppa"
#, elixir-format
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171 #: 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:204 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:60 #: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:60
#: lib/graphql/resolvers/todos.ex:84 lib/graphql/resolvers/todos.ex:102 lib/graphql/resolvers/todos.ex:174 #: lib/graphql/resolvers/todos.ex:84 lib/graphql/resolvers/todos.ex:102 lib/graphql/resolvers/todos.ex:174
#: lib/graphql/resolvers/todos.ex:197 lib/graphql/resolvers/todos.ex:225 #: lib/graphql/resolvers/todos.ex:197 lib/graphql/resolvers/todos.ex:225
#, elixir-format
msgid "Profile is not member of group" msgid "Profile is not member of group"
msgstr "Profilen er ikkje medlem i gruppa" msgstr "Profilen er ikkje medlem i gruppa"
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
msgid "Profile not found" msgid "Profile not found"
msgstr "Fann ikkje profilen" msgstr "Fann ikkje profilen"
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
msgid "Provided moderator profile doesn't have permission on this event" msgid "Provided moderator profile doesn't have permission on this event"
msgstr "Moderatorprofilen har ikkje tilgang til denne hendinga" msgstr "Moderatorprofilen har ikkje tilgang til denne hendinga"
#: lib/graphql/resolvers/report.ex:38
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:38
msgid "Report not found" msgid "Report not found"
msgstr "Fann ikkje rapporten" msgstr "Fann ikkje rapporten"
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
msgid "Resource doesn't exist" msgid "Resource doesn't exist"
msgstr "Ressursen finst ikkje" msgstr "Ressursen finst ikkje"
#: lib/graphql/resolvers/participant.ex:124
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:121
msgid "The event has already reached its maximum capacity" msgid "The event has already reached its maximum capacity"
msgstr "Hendinga er fullteikna" msgstr "Hendinga er fullteikna"
#: lib/graphql/resolvers/participant.ex:267
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:264
msgid "This token is invalid" msgid "This token is invalid"
msgstr "Teiknet er ugyldig" msgstr "Teiknet er ugyldig"
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
msgid "Todo doesn't exist" msgid "Todo doesn't exist"
msgstr "Gjeremålet finst ikkje" msgstr "Gjeremålet finst ikkje"
#, elixir-format
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:194 #: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:194
#: lib/graphql/resolvers/todos.ex:219 #: lib/graphql/resolvers/todos.ex:219
#, elixir-format
msgid "Todo list doesn't exist" msgid "Todo list doesn't exist"
msgstr "Gjeremålslista finst ikkje" msgstr "Gjeremålslista finst ikkje"
#: lib/graphql/resolvers/feed_token.ex:72
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist" msgid "Token does not exist"
msgstr "Teiknet finst ikkje" msgstr "Teiknet finst ikkje"
#: lib/graphql/resolvers/feed_token.ex:69
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID" msgid "Token is not a valid UUID"
msgstr "" msgstr ""
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
msgid "User not found" msgid "User not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:235
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:234
msgid "You already have a profile for this user" msgid "You already have a profile for this user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:134
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:131
msgid "You are already a participant of this event" msgid "You are already a participant of this event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/discussion.ex:185
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:188
msgid "You are not a member of the group the discussion belongs to" msgid "You are not a member of the group the discussion belongs to"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:89
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:89
msgid "You are not a member of this group" msgid "You are not a member of this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:154
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:154
msgid "You are not a moderator or admin for this group" msgid "You are not a moderator or admin for this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:55
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:55
msgid "You are not allowed to create a comment if not connected" msgid "You are not allowed to create a comment if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:44
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected" msgid "You are not allowed to create a feed token if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:117
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:117
msgid "You are not allowed to delete a comment if not connected" msgid "You are not allowed to delete a comment if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:81
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected" msgid "You are not allowed to delete a feed token if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:77
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:77
msgid "You are not allowed to update a comment if not connected" msgid "You are not allowed to update a comment if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:167
#: lib/graphql/resolvers/participant.ex:196
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
msgid "You can't leave event because you're the only event creator participant" msgid "You can't leave event because you're the only event creator participant"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:158
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:158
msgid "You can't set yourself to a lower member role for this group because you are the only administrator" msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:105
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:105
msgid "You cannot delete this comment" msgid "You cannot delete this comment"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:279
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:279
msgid "You cannot delete this event" msgid "You cannot delete this event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:92
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:92
msgid "You cannot invite to this group" msgid "You cannot invite to this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:75
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token" msgid "You don't have permission to delete this token"
msgstr "" msgstr ""
#: lib/graphql/resolvers/admin.ex:52
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:52
msgid "You need to be logged-in and a moderator to list action logs" msgid "You need to be logged-in and a moderator to list action logs"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:28
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:28
msgid "You need to be logged-in and a moderator to list reports" msgid "You need to be logged-in and a moderator to list reports"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:118
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:115
msgid "You need to be logged-in and a moderator to update a report" msgid "You need to be logged-in and a moderator to update a report"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:43
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:43
msgid "You need to be logged-in and a moderator to view a report" msgid "You need to be logged-in and a moderator to view a report"
msgstr "" msgstr ""
#: lib/graphql/resolvers/admin.ex:220
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings" msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "" msgstr ""
#: lib/graphql/resolvers/admin.ex:205
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics" msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "" msgstr ""
#: lib/graphql/resolvers/admin.ex:244
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings" msgid "You need to be logged-in and an administrator to save admin settings"
msgstr "" msgstr ""
#: lib/graphql/resolvers/discussion.ex:66
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:66
msgid "You need to be logged-in to access discussions" msgid "You need to be logged-in to access discussions"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:93
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:93
msgid "You need to be logged-in to access resources" msgid "You need to be logged-in to access resources"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:213
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:213
msgid "You need to be logged-in to create events" msgid "You need to be logged-in to create events"
msgstr "" msgstr ""
#: lib/graphql/resolvers/post.ex:139
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:139
msgid "You need to be logged-in to create posts" msgid "You need to be logged-in to create posts"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
msgid "You need to be logged-in to create reports" msgid "You need to be logged-in to create reports"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:129
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:129
msgid "You need to be logged-in to create resources" msgid "You need to be logged-in to create resources"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:291
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:291
msgid "You need to be logged-in to delete an event" msgid "You need to be logged-in to delete an event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/post.ex:209
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:209
msgid "You need to be logged-in to delete posts" msgid "You need to be logged-in to delete posts"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:187
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:187
msgid "You need to be logged-in to delete resources" msgid "You need to be logged-in to delete resources"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:108
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:105
msgid "You need to be logged-in to join an event" msgid "You need to be logged-in to join an event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:207
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:204
msgid "You need to be logged-in to leave an event" msgid "You need to be logged-in to leave an event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:252
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:252
msgid "You need to be logged-in to update an event" msgid "You need to be logged-in to update an event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/post.ex:176
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:176
msgid "You need to be logged-in to update posts" msgid "You need to be logged-in to update posts"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:158
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:158
msgid "You need to be logged-in to update resources" msgid "You need to be logged-in to update resources"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:210
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:210
msgid "You need to be logged-in to view a resource preview" msgid "You need to be logged-in to view a resource preview"
msgstr "" msgstr ""
#: lib/graphql/resolvers/picture.ex:86
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:83
msgid "You need to login to upload a picture" msgid "You need to login to upload a picture"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:84
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:81
msgid "Reporter ID does not match the anonymous profile id" msgid "Reporter ID does not match the anonymous profile id"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:59
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:59
msgid "Reporter profile is not owned by authenticated user" msgid "Reporter profile is not owned by authenticated user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:121
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group" msgid "Parent resource doesn't belong to this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:93
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:90
msgid "Profile ID provided is not the anonymous profile one" msgid "Profile ID provided is not the anonymous profile one"
msgstr "" msgstr ""
#: lib/mobilizon/users/user.ex:109
#, elixir-format #, elixir-format
#: lib/mobilizon/users/user.ex:109
msgid "The chosen password is too short." msgid "The chosen password is too short."
msgstr "" msgstr ""
#: lib/mobilizon/users/user.ex:138
#, elixir-format #, elixir-format
#: lib/mobilizon/users/user.ex:138
msgid "The registration token is already in use, this looks like an issue on our side." msgid "The registration token is already in use, this looks like an issue on our side."
msgstr "" msgstr ""
#: lib/mobilizon/users/user.ex:104
#, elixir-format #, elixir-format
#: lib/mobilizon/users/user.ex:104
msgid "This email is already used." msgid "This email is already used."
msgstr "" msgstr ""
#: lib/graphql/error.ex:88
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:88
msgid "Post not found" msgid "Post not found"
msgstr "" msgstr ""
#: lib/graphql/error.ex:75
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:75
msgid "Invalid arguments passed" msgid "Invalid arguments passed"
msgstr "" msgstr ""
#: lib/graphql/error.ex:81
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:81
msgid "Invalid credentials" msgid "Invalid credentials"
msgstr "" msgstr ""
#: lib/graphql/error.ex:79
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:79
msgid "Reset your password to login" msgid "Reset your password to login"
msgstr "" msgstr ""
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
msgid "Resource not found" msgid "Resource not found"
msgstr "" msgstr ""
#: lib/graphql/error.ex:92
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:92
msgid "Something went wrong" msgid "Something went wrong"
msgstr "" msgstr ""
#: lib/graphql/error.ex:74
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:74
msgid "Unknown Resource" msgid "Unknown Resource"
msgstr "" msgstr ""
#: lib/graphql/error.ex:84
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:84
msgid "You don't have permission to do this" msgid "You don't have permission to do this"
msgstr "" msgstr ""
#: lib/graphql/error.ex:76
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:76
msgid "You need to be logged in" msgid "You need to be logged in"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:119
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:119
msgid "You can't accept this invitation with this profile." msgid "You can't accept this invitation with this profile."
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:137
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:137
msgid "You can't reject this invitation with this profile." msgid "You can't reject this invitation with this profile."
msgstr "" msgstr ""
#: lib/graphql/resolvers/picture.ex:78
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:75
msgid "File doesn't have an allowed MIME type." msgid "File doesn't have an allowed MIME type."
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:172
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:170
msgid "Profile is not administrator for the group" msgid "Profile is not administrator for the group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:241
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:241
msgid "You can't edit this event." msgid "You can't edit this event."
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:244
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:244
msgid "You can't attribute this event to this profile." msgid "You can't attribute this event to this profile."
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:140
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:140
msgid "This invitation doesn't exist." msgid "This invitation doesn't exist."
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:182
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:182
msgid "This member already has been rejected." msgid "This member already has been rejected."
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:189
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:189
msgid "You don't have the right to remove this member." msgid "You don't have the right to remove this member."
msgstr "" msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
msgid "This username is already taken."
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -93,771 +93,775 @@ msgstr "deu èsser superior o egal a %{number}"
msgid "must be equal to %{number}" msgid "must be equal to %{number}"
msgstr "deu èsser egal a %{number}" msgstr "deu èsser egal a %{number}"
#: lib/graphql/resolvers/user.ex:103
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:103
msgid "Cannot refresh the token" msgid "Cannot refresh the token"
msgstr "Actualizacion impossibla del geton" msgstr "Actualizacion impossibla del geton"
#: lib/graphql/resolvers/group.ex:139
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:137
msgid "Creator profile is not owned by the current user" msgid "Creator profile is not owned by the current user"
msgstr "Lo perfil creator es pas tengut per lutilizaire actual" msgstr "Lo perfil creator es pas tengut per lutilizaire actual"
#: lib/graphql/resolvers/group.ex:203
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:201
msgid "Current profile is not a member of this group" msgid "Current profile is not a member of this group"
msgstr "Lo perfil actual es pas un membre daqueste grop" msgstr "Lo perfil actual es pas un membre daqueste grop"
#: lib/graphql/resolvers/group.ex:207
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:205
msgid "Current profile is not an administrator of the selected group" msgid "Current profile is not an administrator of the selected group"
msgstr "Lo perfil actual es pas administrator del grop seleccionat" msgstr "Lo perfil actual es pas administrator del grop seleccionat"
#: lib/graphql/resolvers/user.ex:512
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:512
msgid "Error while saving user settings" msgid "Error while saving user settings"
msgstr "Error en salvagardant los paramètres utilizaire" msgstr "Error en salvagardant los paramètres utilizaire"
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:229 lib/graphql/resolvers/group.ex:264 lib/graphql/resolvers/member.ex:83
msgid "Group not found" msgid "Group not found"
msgstr "Grop pas trobat" msgstr "Grop pas trobat"
#: lib/graphql/resolvers/group.ex:69
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:66
msgid "Group with ID %{id} not found" msgid "Group with ID %{id} not found"
msgstr "Grop amb lID %{id} pas trobat" msgstr "Grop amb lID %{id} pas trobat"
#: lib/graphql/resolvers/user.ex:83
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:83
msgid "Impossible to authenticate, either your email or password are invalid." msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "" msgstr ""
"Autentificacion impossibla, vòstra adreça electronica o lo vòstre senhal es " "Autentificacion impossibla, vòstra adreça electronica o lo vòstre senhal es "
"invalid." "invalid."
#: lib/graphql/resolvers/group.ex:280
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:261
msgid "Member not found" msgid "Member not found"
msgstr "Membre pas trobat" msgstr "Membre pas trobat"
#, elixir-format
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88 #: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
#: lib/graphql/resolvers/user.ex:417 #: lib/graphql/resolvers/user.ex:417
#, elixir-format
msgid "No profile found for the moderator user" msgid "No profile found for the moderator user"
msgstr "Cap de perfil pas trobat per lutilizaire moderator" msgstr "Cap de perfil pas trobat per lutilizaire moderator"
#: lib/graphql/resolvers/user.ex:195
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:195
msgid "No user to validate with this email was found" msgid "No user to validate with this email was found"
msgstr "Cap dutilizaire de validar amb aqueste email pas trobat" msgstr "Cap dutilizaire de validar amb aqueste email pas trobat"
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:231 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found" msgid "No user with this email was found"
msgstr "Degun trobat d'amb aquesta email" msgstr "Degun trobat d'amb aquesta email"
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/member.ex:80 lib/graphql/resolvers/participant.ex:29
#: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157
#: lib/graphql/resolvers/person.ex:191 lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288
#: lib/graphql/resolvers/person.ex:301 lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110
#: lib/graphql/resolvers/todos.ex:57
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/member.ex:80
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:155 lib/graphql/resolvers/person.ex:189
#: lib/graphql/resolvers/person.ex:255 lib/graphql/resolvers/person.ex:284 lib/graphql/resolvers/person.ex:297
#: lib/graphql/resolvers/picture.ex:72 lib/graphql/resolvers/report.ex:107 lib/graphql/resolvers/todos.ex:57
msgid "Profile is not owned by authenticated user" msgid "Profile is not owned by authenticated user"
msgstr "Lo perhiu es pas proprietat del utilizator autenticat" msgstr "Lo perhiu es pas proprietat del utilizator autenticat"
#: lib/graphql/resolvers/user.ex:125
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:125
msgid "Registrations are not open" msgid "Registrations are not open"
msgstr "Las inscripciones sèn pas obèrtas" msgstr "Las inscripciones sèn pas obèrtas"
#: lib/graphql/resolvers/user.ex:330
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:330
msgid "The current password is invalid" msgid "The current password is invalid"
msgstr "Lo mòt de santa clara actuau es invalid" msgstr "Lo mòt de santa clara actuau es invalid"
#: lib/graphql/resolvers/user.ex:382
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:382
msgid "The new email doesn't seem to be valid" msgid "The new email doesn't seem to be valid"
msgstr "Lo email nau sèm invalid" msgstr "Lo email nau sèm invalid"
#: lib/graphql/resolvers/user.ex:379
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:379
msgid "The new email must be different" msgid "The new email must be different"
msgstr "Lo email nau deb esser different" msgstr "Lo email nau deb esser different"
#: lib/graphql/resolvers/user.ex:333
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:333
msgid "The new password must be different" msgid "The new password must be different"
msgstr "Lo mòt de santa clara nau deb esser 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:376 lib/graphql/resolvers/user.ex:439
#: lib/graphql/resolvers/user.ex:442 #: lib/graphql/resolvers/user.ex:442
#, elixir-format
msgid "The password provided is invalid" msgid "The password provided is invalid"
msgstr "Lo mòt de santa clara aprovedit es invalid" msgstr "Lo mòt de santa clara aprovedit es invalid"
#: lib/graphql/resolvers/user.ex:337
#, elixir-format #, 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." msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr "" msgstr ""
"Lo mòt de santa clara que avetz causit es tròp cort. Merci de vos assegurar " "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." "que vostre mòt de santa clara contienga au mèns 6 caracteres."
#: lib/graphql/resolvers/user.ex:215
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:215
msgid "This user can't reset their password" msgid "This user can't reset their password"
msgstr "Aquest utilizator pod pas reinicializar lo sèn mòt de santa clara" msgstr "Aquest utilizator pod pas reinicializar lo sèn mòt de santa clara"
#: lib/graphql/resolvers/user.ex:79
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:79
msgid "This user has been disabled" msgid "This user has been disabled"
msgstr "Aquest utilizator a essat dasactivat" msgstr "Aquest utilizator a essat dasactivat"
#: lib/graphql/resolvers/user.ex:179
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:179
msgid "Unable to validate user" msgid "Unable to validate user"
msgstr "Es impossible de validar l'utilizator" msgstr "Es impossible de validar l'utilizator"
#: lib/graphql/resolvers/user.ex:420
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:420
msgid "User already disabled" msgid "User already disabled"
msgstr "Utilizator déjà desactivat" msgstr "Utilizator déjà desactivat"
#: lib/graphql/resolvers/user.ex:487
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:487
msgid "User requested is not logged-in" msgid "User requested is not logged-in"
msgstr "L'utilizator demandat es pas conectat" msgstr "L'utilizator demandat es pas conectat"
#: lib/graphql/resolvers/group.ex:254
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:235
msgid "You are already a member of this group" msgid "You are already a member of this group"
msgstr "Essetz déjà membre d'aquest grop" msgstr "Essetz déjà membre d'aquest grop"
#: lib/graphql/resolvers/group.ex:287
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:268
msgid "You can't leave this group because you are the only administrator" msgid "You can't leave this group because you are the only administrator"
msgstr "Podetz pas quitar aquest grop perque essetz lo sol administrator" msgstr "Podetz pas quitar aquest grop perque essetz lo sol administrator"
#: lib/graphql/resolvers/group.ex:251
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:232
msgid "You cannot join this group" msgid "You cannot join this group"
msgstr "Podetz pas rejónher aquest grop" msgstr "Podetz pas rejónher aquest grop"
#: lib/graphql/resolvers/group.ex:97
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:94
msgid "You may not list groups unless moderator." msgid "You may not list groups unless moderator."
msgstr "Podetz listar los grops sonque se essetz moderator." msgstr "Podetz listar los grops sonque se essetz moderator."
#: lib/graphql/resolvers/user.ex:387
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:387
msgid "You need to be logged-in to change your email" msgid "You need to be logged-in to change your email"
msgstr "Debetz esser conectat per cambiar lo voste email" msgstr "Debetz esser conectat per cambiar lo voste email"
#: lib/graphql/resolvers/user.ex:345
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:345
msgid "You need to be logged-in to change your password" 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" msgstr "Debetz d'esser conectat per cambiar lo voste mòt de santa clara"
#: lib/graphql/resolvers/group.ex:212
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:210
msgid "You need to be logged-in to delete a group" msgid "You need to be logged-in to delete a group"
msgstr "Debetz d'esser conectat per suprimir un grop" msgstr "Debetz d'esser conectat per suprimir un grop"
#: lib/graphql/resolvers/user.ex:447
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:447
msgid "You need to be logged-in to delete your account" msgid "You need to be logged-in to delete your account"
msgstr "Debetz d'esser conectat per suprimir lo voste compte" msgstr "Debetz d'esser conectat per suprimir lo voste compte"
#: lib/graphql/resolvers/group.ex:259
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:240
msgid "You need to be logged-in to join a group" msgid "You need to be logged-in to join a group"
msgstr "Deves-tz d'esser conectat-ada per rejónher un grop" msgstr "Deves-tz d'esser conectat-ada per rejónher un grop"
#: lib/graphql/resolvers/group.ex:292
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:273
msgid "You need to be logged-in to leave a group" msgid "You need to be logged-in to leave a group"
msgstr "Deves-tz d'esser conectat-ada per quitar un grop" msgstr "Deves-tz d'esser conectat-ada per quitar un grop"
#: lib/graphql/resolvers/group.ex:177
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:175
msgid "You need to be logged-in to update a group" msgid "You need to be logged-in to update a group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:58
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users" msgid "You need to have admin access to list users"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:108
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token" msgid "You need to have an existing token to get a refresh token"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
msgid "You requested again a confirmation email too soon" msgid "You requested again a confirmation email too soon"
msgstr "" msgstr ""
#: lib/graphql/resolvers/user.ex:128
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:128
msgid "Your email is not on the allowlist" msgid "Your email is not on the allowlist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
msgid "Error while performing background task" msgid "Error while performing background task"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:27
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:27
msgid "No profile found with this ID" msgid "No profile found with this ID"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
msgid "No remote profile found with this ID" msgid "No remote profile found with this ID"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:69
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:69
msgid "Only moderators and administrators can suspend a profile" msgid "Only moderators and administrators can suspend a profile"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:99
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:99
msgid "Only moderators and administrators can unsuspend a profile" msgid "Only moderators and administrators can unsuspend a profile"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:24
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:24
msgid "Only remote profiles may be refreshed" msgid "Only remote profiles may be refreshed"
msgstr "" msgstr ""
#: lib/graphql/resolvers/actor.ex:61
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:61
msgid "Profile already suspended" msgid "Profile already suspended"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:96
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:93
msgid "A valid email is required by your instance" msgid "A valid email is required by your instance"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:90
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:87
msgid "Anonymous participation is not enabled" msgid "Anonymous participation is not enabled"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:188
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:186
msgid "Cannot remove the last administrator of a group" msgid "Cannot remove the last administrator of a group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:185
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:183
msgid "Cannot remove the last identity of a user" msgid "Cannot remove the last identity of a user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:109
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:109
msgid "Comment is already deleted" msgid "Comment is already deleted"
msgstr "" msgstr ""
#: lib/graphql/resolvers/discussion.ex:61
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
msgid "Discussion not found" msgid "Discussion not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
msgid "Error while saving report" msgid "Error while saving report"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:113
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:110
msgid "Error while updating report" msgid "Error while updating report"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:131
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:128
msgid "Event id not found" msgid "Event id not found"
msgstr "" msgstr ""
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238 #: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:283 #: lib/graphql/resolvers/event.ex:283
#, elixir-format
msgid "Event not found" msgid "Event not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
msgid "Event with this ID %{id} doesn't exist" msgid "Event with this ID %{id} doesn't exist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:103
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:100
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
msgid "Moderator profile is not owned by authenticated user" msgid "Moderator profile is not owned by authenticated user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/discussion.ex:181
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:184
msgid "No discussion with ID %{id}" msgid "No discussion with ID %{id}"
msgstr "" msgstr ""
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
msgid "No profile found for user" msgid "No profile found for user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:66
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token" msgid "No such feed token"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:202
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:202
msgid "Organizer profile is not owned by the user" msgid "Organizer profile is not owned by the user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:244
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:241
msgid "Participant already has role %{role}" msgid "Participant already has role %{role}"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:173
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237
#: lib/graphql/resolvers/participant.ex:247
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:234
#: lib/graphql/resolvers/participant.ex:244
msgid "Participant not found" msgid "Participant not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:31
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:31
msgid "Person with ID %{id} not found" msgid "Person with ID %{id} not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:52
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:52
msgid "Person with username %{username} not found" msgid "Person with username %{username} not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/picture.ex:45
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:42
msgid "Picture with ID %{id} was not found" msgid "Picture with ID %{id} was not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
msgid "Post ID is not a valid ID" msgid "Post ID is not a valid ID"
msgstr "" msgstr ""
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
msgid "Post doesn't exist" msgid "Post doesn't exist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:86
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:86
msgid "Profile invited doesn't exist" msgid "Profile invited doesn't exist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
msgid "Profile is already a member of this group" msgid "Profile is already a member of this group"
msgstr "" msgstr ""
#, elixir-format
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171 #: 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:204 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:60 #: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:60
#: lib/graphql/resolvers/todos.ex:84 lib/graphql/resolvers/todos.ex:102 lib/graphql/resolvers/todos.ex:174 #: lib/graphql/resolvers/todos.ex:84 lib/graphql/resolvers/todos.ex:102 lib/graphql/resolvers/todos.ex:174
#: lib/graphql/resolvers/todos.ex:197 lib/graphql/resolvers/todos.ex:225 #: lib/graphql/resolvers/todos.ex:197 lib/graphql/resolvers/todos.ex:225
#, elixir-format
msgid "Profile is not member of group" msgid "Profile is not member of group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
msgid "Profile not found" msgid "Profile not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
msgid "Provided moderator profile doesn't have permission on this event" msgid "Provided moderator profile doesn't have permission on this event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:38
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:38
msgid "Report not found" msgid "Report not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
msgid "Resource doesn't exist" msgid "Resource doesn't exist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:124
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:121
msgid "The event has already reached its maximum capacity" msgid "The event has already reached its maximum capacity"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:267
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:264
msgid "This token is invalid" msgid "This token is invalid"
msgstr "" msgstr ""
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
msgid "Todo doesn't exist" msgid "Todo doesn't exist"
msgstr "" msgstr ""
#, elixir-format
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:194 #: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:194
#: lib/graphql/resolvers/todos.ex:219 #: lib/graphql/resolvers/todos.ex:219
#, elixir-format
msgid "Todo list doesn't exist" msgid "Todo list doesn't exist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:72
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist" msgid "Token does not exist"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:69
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID" msgid "Token is not a valid UUID"
msgstr "" msgstr ""
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
msgid "User not found" msgid "User not found"
msgstr "" msgstr ""
#: lib/graphql/resolvers/person.ex:235
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:234
msgid "You already have a profile for this user" msgid "You already have a profile for this user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:134
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:131
msgid "You are already a participant of this event" msgid "You are already a participant of this event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/discussion.ex:185
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:188
msgid "You are not a member of the group the discussion belongs to" msgid "You are not a member of the group the discussion belongs to"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:89
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:89
msgid "You are not a member of this group" msgid "You are not a member of this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:154
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:154
msgid "You are not a moderator or admin for this group" msgid "You are not a moderator or admin for this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:55
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:55
msgid "You are not allowed to create a comment if not connected" msgid "You are not allowed to create a comment if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:44
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected" msgid "You are not allowed to create a feed token if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:117
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:117
msgid "You are not allowed to delete a comment if not connected" msgid "You are not allowed to delete a comment if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:81
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected" msgid "You are not allowed to delete a feed token if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:77
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:77
msgid "You are not allowed to update a comment if not connected" msgid "You are not allowed to update a comment if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:167
#: lib/graphql/resolvers/participant.ex:196
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
msgid "You can't leave event because you're the only event creator participant" msgid "You can't leave event because you're the only event creator participant"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:158
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:158
msgid "You can't set yourself to a lower member role for this group because you are the only administrator" msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:105
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:105
msgid "You cannot delete this comment" msgid "You cannot delete this comment"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:279
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:279
msgid "You cannot delete this event" msgid "You cannot delete this event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:92
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:92
msgid "You cannot invite to this group" msgid "You cannot invite to this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:75
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token" msgid "You don't have permission to delete this token"
msgstr "" msgstr ""
#: lib/graphql/resolvers/admin.ex:52
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:52
msgid "You need to be logged-in and a moderator to list action logs" msgid "You need to be logged-in and a moderator to list action logs"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:28
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:28
msgid "You need to be logged-in and a moderator to list reports" msgid "You need to be logged-in and a moderator to list reports"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:118
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:115
msgid "You need to be logged-in and a moderator to update a report" msgid "You need to be logged-in and a moderator to update a report"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:43
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:43
msgid "You need to be logged-in and a moderator to view a report" msgid "You need to be logged-in and a moderator to view a report"
msgstr "" msgstr ""
#: lib/graphql/resolvers/admin.ex:220
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings" msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "" msgstr ""
#: lib/graphql/resolvers/admin.ex:205
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics" msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "" msgstr ""
#: lib/graphql/resolvers/admin.ex:244
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings" msgid "You need to be logged-in and an administrator to save admin settings"
msgstr "" msgstr ""
#: lib/graphql/resolvers/discussion.ex:66
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:66
msgid "You need to be logged-in to access discussions" msgid "You need to be logged-in to access discussions"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:93
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:93
msgid "You need to be logged-in to access resources" msgid "You need to be logged-in to access resources"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:213
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:213
msgid "You need to be logged-in to create events" msgid "You need to be logged-in to create events"
msgstr "" msgstr ""
#: lib/graphql/resolvers/post.ex:139
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:139
msgid "You need to be logged-in to create posts" msgid "You need to be logged-in to create posts"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
msgid "You need to be logged-in to create reports" msgid "You need to be logged-in to create reports"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:129
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:129
msgid "You need to be logged-in to create resources" msgid "You need to be logged-in to create resources"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:291
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:291
msgid "You need to be logged-in to delete an event" msgid "You need to be logged-in to delete an event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/post.ex:209
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:209
msgid "You need to be logged-in to delete posts" msgid "You need to be logged-in to delete posts"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:187
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:187
msgid "You need to be logged-in to delete resources" msgid "You need to be logged-in to delete resources"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:108
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:105
msgid "You need to be logged-in to join an event" msgid "You need to be logged-in to join an event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:207
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:204
msgid "You need to be logged-in to leave an event" msgid "You need to be logged-in to leave an event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:252
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:252
msgid "You need to be logged-in to update an event" msgid "You need to be logged-in to update an event"
msgstr "" msgstr ""
#: lib/graphql/resolvers/post.ex:176
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:176
msgid "You need to be logged-in to update posts" msgid "You need to be logged-in to update posts"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:158
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:158
msgid "You need to be logged-in to update resources" msgid "You need to be logged-in to update resources"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:210
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:210
msgid "You need to be logged-in to view a resource preview" msgid "You need to be logged-in to view a resource preview"
msgstr "" msgstr ""
#: lib/graphql/resolvers/picture.ex:86
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:83
msgid "You need to login to upload a picture" msgid "You need to login to upload a picture"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:84
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:81
msgid "Reporter ID does not match the anonymous profile id" msgid "Reporter ID does not match the anonymous profile id"
msgstr "" msgstr ""
#: lib/graphql/resolvers/report.ex:59
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:59
msgid "Reporter profile is not owned by authenticated user" msgid "Reporter profile is not owned by authenticated user"
msgstr "" msgstr ""
#: lib/graphql/resolvers/resource.ex:121
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group" msgid "Parent resource doesn't belong to this group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:93
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:90
msgid "Profile ID provided is not the anonymous profile one" msgid "Profile ID provided is not the anonymous profile one"
msgstr "" msgstr ""
#: lib/mobilizon/users/user.ex:109
#, elixir-format #, elixir-format
#: lib/mobilizon/users/user.ex:109
msgid "The chosen password is too short." msgid "The chosen password is too short."
msgstr "" msgstr ""
#: lib/mobilizon/users/user.ex:138
#, elixir-format #, elixir-format
#: lib/mobilizon/users/user.ex:138
msgid "The registration token is already in use, this looks like an issue on our side." msgid "The registration token is already in use, this looks like an issue on our side."
msgstr "" msgstr ""
#: lib/mobilizon/users/user.ex:104
#, elixir-format #, elixir-format
#: lib/mobilizon/users/user.ex:104
msgid "This email is already used." msgid "This email is already used."
msgstr "" msgstr ""
#: lib/graphql/error.ex:88
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:88
msgid "Post not found" msgid "Post not found"
msgstr "" msgstr ""
#: lib/graphql/error.ex:75
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:75
msgid "Invalid arguments passed" msgid "Invalid arguments passed"
msgstr "" msgstr ""
#: lib/graphql/error.ex:81
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:81
msgid "Invalid credentials" msgid "Invalid credentials"
msgstr "" msgstr ""
#: lib/graphql/error.ex:79
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:79
msgid "Reset your password to login" msgid "Reset your password to login"
msgstr "" msgstr ""
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
msgid "Resource not found" msgid "Resource not found"
msgstr "" msgstr ""
#: lib/graphql/error.ex:92
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:92
msgid "Something went wrong" msgid "Something went wrong"
msgstr "" msgstr ""
#: lib/graphql/error.ex:74
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:74
msgid "Unknown Resource" msgid "Unknown Resource"
msgstr "" msgstr ""
#: lib/graphql/error.ex:84
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:84
msgid "You don't have permission to do this" msgid "You don't have permission to do this"
msgstr "" msgstr ""
#: lib/graphql/error.ex:76
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:76
msgid "You need to be logged in" msgid "You need to be logged in"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:119
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:119
msgid "You can't accept this invitation with this profile." msgid "You can't accept this invitation with this profile."
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:137
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:137
msgid "You can't reject this invitation with this profile." msgid "You can't reject this invitation with this profile."
msgstr "" msgstr ""
#: lib/graphql/resolvers/picture.ex:78
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:75
msgid "File doesn't have an allowed MIME type." msgid "File doesn't have an allowed MIME type."
msgstr "" msgstr ""
#: lib/graphql/resolvers/group.ex:172
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:170
msgid "Profile is not administrator for the group" msgid "Profile is not administrator for the group"
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:241
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:241
msgid "You can't edit this event." msgid "You can't edit this event."
msgstr "" msgstr ""
#: lib/graphql/resolvers/event.ex:244
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:244
msgid "You can't attribute this event to this profile." msgid "You can't attribute this event to this profile."
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:140
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:140
msgid "This invitation doesn't exist." msgid "This invitation doesn't exist."
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:182
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:182
msgid "This member already has been rejected." msgid "This member already has been rejected."
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:189
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:189
msgid "You don't have the right to remove this member." msgid "You don't have the right to remove this member."
msgstr "" msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
msgid "This username is already taken."
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -100,784 +100,788 @@ msgstr "musi być większy lub równy od %{number}"
msgid "must be equal to %{number}" msgid "must be equal to %{number}"
msgstr "musi być równy %{number}" msgstr "musi być równy %{number}"
#: lib/graphql/resolvers/user.ex:103
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:103
msgid "Cannot refresh the token" msgid "Cannot refresh the token"
msgstr "Nie można odświeżyć tokenu" msgstr "Nie można odświeżyć tokenu"
#: lib/graphql/resolvers/group.ex:139
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:137
msgid "Creator profile is not owned by the current user" msgid "Creator profile is not owned by the current user"
msgstr "Profil autora nie należy do obecnego użytkownika" msgstr "Profil autora nie należy do obecnego użytkownika"
#: lib/graphql/resolvers/group.ex:203
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:201
msgid "Current profile is not a member of this group" msgid "Current profile is not a member of this group"
msgstr "Obency profil nie jest członkiem tej grupy" msgstr "Obency profil nie jest członkiem tej grupy"
#: lib/graphql/resolvers/group.ex:207
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:205
msgid "Current profile is not an administrator of the selected group" msgid "Current profile is not an administrator of the selected group"
msgstr "Obecny profil nie jest administratorem zaznaczonej grupy" msgstr "Obecny profil nie jest administratorem zaznaczonej grupy"
#: lib/graphql/resolvers/user.ex:512
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:512
msgid "Error while saving user settings" msgid "Error while saving user settings"
msgstr "Błąd zapisywania ustawień użytkownika" msgstr "Błąd zapisywania ustawień użytkownika"
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:229 lib/graphql/resolvers/group.ex:264 lib/graphql/resolvers/member.ex:83
msgid "Group not found" msgid "Group not found"
msgstr "Nie odnaleziono grupy" msgstr "Nie odnaleziono grupy"
#: lib/graphql/resolvers/group.ex:69
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:66
msgid "Group with ID %{id} not found" msgid "Group with ID %{id} not found"
msgstr "Nie odnaleziono grupy o ID %{id}" msgstr "Nie odnaleziono grupy o ID %{id}"
#: lib/graphql/resolvers/user.ex:83
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:83
msgid "Impossible to authenticate, either your email or password are invalid." msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "" msgstr ""
"Nie udało się uwierzytelnić. Adres e-mail bądź hasło jest nieprawidłowe." "Nie udało się uwierzytelnić. Adres e-mail bądź hasło jest nieprawidłowe."
#: lib/graphql/resolvers/group.ex:280
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:261
msgid "Member not found" msgid "Member not found"
msgstr "Nie odnaleziono użytkownika" msgstr "Nie odnaleziono użytkownika"
#, elixir-format
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88 #: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
#: lib/graphql/resolvers/user.ex:417 #: lib/graphql/resolvers/user.ex:417
#, elixir-format
msgid "No profile found for the moderator user" msgid "No profile found for the moderator user"
msgstr "Nie znaleziono profilu dla konta moderatora" msgstr "Nie znaleziono profilu dla konta moderatora"
#: lib/graphql/resolvers/user.ex:195
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:195
msgid "No user to validate with this email was found" msgid "No user to validate with this email was found"
msgstr "" msgstr ""
"Nie znaleziono użytkownika do zatwierdzenia z użyciem tego adresu e-mail" "Nie znaleziono użytkownika do zatwierdzenia z użyciem tego adresu e-mail"
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:231 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found" msgid "No user with this email was found"
msgstr "Nie znaleziono użytkownika o tym adresie e-mail" msgstr "Nie znaleziono użytkownika o tym adresie e-mail"
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/member.ex:80 lib/graphql/resolvers/participant.ex:29
#: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157
#: lib/graphql/resolvers/person.ex:191 lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288
#: lib/graphql/resolvers/person.ex:301 lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110
#: lib/graphql/resolvers/todos.ex:57
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/member.ex:80
#: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:155 lib/graphql/resolvers/person.ex:189
#: lib/graphql/resolvers/person.ex:255 lib/graphql/resolvers/person.ex:284 lib/graphql/resolvers/person.ex:297
#: lib/graphql/resolvers/picture.ex:72 lib/graphql/resolvers/report.ex:107 lib/graphql/resolvers/todos.ex:57
msgid "Profile is not owned by authenticated user" msgid "Profile is not owned by authenticated user"
msgstr "Profil nie należy do uwierzytelnionego użytkownika" msgstr "Profil nie należy do uwierzytelnionego użytkownika"
#: lib/graphql/resolvers/user.ex:125
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:125
msgid "Registrations are not open" msgid "Registrations are not open"
msgstr "Rejestracje nie są otwarte" msgstr "Rejestracje nie są otwarte"
#: lib/graphql/resolvers/user.ex:330
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:330
msgid "The current password is invalid" msgid "The current password is invalid"
msgstr "Obecne hasło jest nieprawidłowe" msgstr "Obecne hasło jest nieprawidłowe"
#: lib/graphql/resolvers/user.ex:382
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:382
msgid "The new email doesn't seem to be valid" msgid "The new email doesn't seem to be valid"
msgstr "Nowy adres e-mail nie wydaje się być prawidłowy" msgstr "Nowy adres e-mail nie wydaje się być prawidłowy"
#: lib/graphql/resolvers/user.ex:379
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:379
msgid "The new email must be different" msgid "The new email must be different"
msgstr "Nowy adres e-mail musi się różnić od obecnego" msgstr "Nowy adres e-mail musi się różnić od obecnego"
#: lib/graphql/resolvers/user.ex:333
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:333
msgid "The new password must be different" msgid "The new password must be different"
msgstr "Nowe hasło musi różnić się od obecnego" msgstr "Nowe hasło musi różnić się od obecnego"
#, elixir-format
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439 #: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
#: lib/graphql/resolvers/user.ex:442 #: lib/graphql/resolvers/user.ex:442
#, elixir-format
msgid "The password provided is invalid" msgid "The password provided is invalid"
msgstr "Wprowadzone hasło jest nieprawidłowe" msgstr "Wprowadzone hasło jest nieprawidłowe"
#: lib/graphql/resolvers/user.ex:337
#, elixir-format #, 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." msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr "" msgstr ""
"Wprowadzone hasło jest zbyt krótkie. Upewnij się, że Twoje hasło składa się " "Wprowadzone hasło jest zbyt krótkie. Upewnij się, że Twoje hasło składa się "
"z przynajmniej 6 znaków." "z przynajmniej 6 znaków."
#: lib/graphql/resolvers/user.ex:215
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:215
msgid "This user can't reset their password" msgid "This user can't reset their password"
msgstr "Ten użytkownik nie może resetować swojego hasła" msgstr "Ten użytkownik nie może resetować swojego hasła"
#: lib/graphql/resolvers/user.ex:79
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:79
msgid "This user has been disabled" msgid "This user has been disabled"
msgstr "Ten użytkownik jest wyłączony" msgstr "Ten użytkownik jest wyłączony"
#: lib/graphql/resolvers/user.ex:179
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:179
msgid "Unable to validate user" msgid "Unable to validate user"
msgstr "Nie udało się zwalidować użytkownika" msgstr "Nie udało się zwalidować użytkownika"
#: lib/graphql/resolvers/user.ex:420
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:420
msgid "User already disabled" msgid "User already disabled"
msgstr "Użytkownik jest już wyłączony" msgstr "Użytkownik jest już wyłączony"
#: lib/graphql/resolvers/user.ex:487
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:487
msgid "User requested is not logged-in" msgid "User requested is not logged-in"
msgstr "Żądany użytkownik nie jest zalogowany" msgstr "Żądany użytkownik nie jest zalogowany"
#: lib/graphql/resolvers/group.ex:254
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:235
msgid "You are already a member of this group" msgid "You are already a member of this group"
msgstr "Już jesteś członkiem tej grupy" msgstr "Już jesteś członkiem tej grupy"
#: lib/graphql/resolvers/group.ex:287
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:268
msgid "You can't leave this group because you are the only administrator" msgid "You can't leave this group because you are the only administrator"
msgstr "" msgstr ""
"Nie możesz opuścić tej grupy, ponieważ jesteś jej jedynym administratorem" "Nie możesz opuścić tej grupy, ponieważ jesteś jej jedynym administratorem"
#: lib/graphql/resolvers/group.ex:251
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:232
msgid "You cannot join this group" msgid "You cannot join this group"
msgstr "Nie możesz dołączyć do tej grupy" msgstr "Nie możesz dołączyć do tej grupy"
#: lib/graphql/resolvers/group.ex:97
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:94
msgid "You may not list groups unless moderator." msgid "You may not list groups unless moderator."
msgstr "Nie masz dostępu do listy grup, jeżeli nie jesteś moderatorem." msgstr "Nie masz dostępu do listy grup, jeżeli nie jesteś moderatorem."
#: lib/graphql/resolvers/user.ex:387
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:387
msgid "You need to be logged-in to change your email" msgid "You need to be logged-in to change your email"
msgstr "Musisz być zalogowany(-a), aby zmienić adres e-mail" msgstr "Musisz być zalogowany(-a), aby zmienić adres e-mail"
#: lib/graphql/resolvers/user.ex:345
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:345
msgid "You need to be logged-in to change your password" msgid "You need to be logged-in to change your password"
msgstr "Musisz być zalogowany(-a), aby zmienić hasło" msgstr "Musisz być zalogowany(-a), aby zmienić hasło"
#: lib/graphql/resolvers/group.ex:212
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:210
msgid "You need to be logged-in to delete a group" msgid "You need to be logged-in to delete a group"
msgstr "Musisz być zalogowany(-a), aby usunąć grupę" msgstr "Musisz być zalogowany(-a), aby usunąć grupę"
#: lib/graphql/resolvers/user.ex:447
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:447
msgid "You need to be logged-in to delete your account" msgid "You need to be logged-in to delete your account"
msgstr "Musisz być zalogowany(-a), aby usunąć konto" msgstr "Musisz być zalogowany(-a), aby usunąć konto"
#: lib/graphql/resolvers/group.ex:259
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:240
msgid "You need to be logged-in to join a group" msgid "You need to be logged-in to join a group"
msgstr "Musisz być zalogowany(-a), aby dołączyć do grupy" msgstr "Musisz być zalogowany(-a), aby dołączyć do grupy"
#: lib/graphql/resolvers/group.ex:292
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:273
msgid "You need to be logged-in to leave a group" msgid "You need to be logged-in to leave a group"
msgstr "Musisz być zalogowany(-a), aby opuścić grupę" msgstr "Musisz być zalogowany(-a), aby opuścić grupę"
#: lib/graphql/resolvers/group.ex:177
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:175
msgid "You need to be logged-in to update a group" msgid "You need to be logged-in to update a group"
msgstr "Musisz być zalogowany(-a), aby zaktualizować grupę" msgstr "Musisz być zalogowany(-a), aby zaktualizować grupę"
#: lib/graphql/resolvers/user.ex:58
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:58
msgid "You need to have admin access to list users" msgid "You need to have admin access to list users"
msgstr "" msgstr ""
"Musisz mieć uprawnienia administratora, aby uzyskać dostęp do listy " "Musisz mieć uprawnienia administratora, aby uzyskać dostęp do listy "
"użytkowników" "użytkowników"
#: lib/graphql/resolvers/user.ex:108
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:108
msgid "You need to have an existing token to get a refresh token" msgid "You need to have an existing token to get a refresh token"
msgstr "Musisz mieć istniejący token, aby uzyskać token odświeżający" msgstr "Musisz mieć istniejący token, aby uzyskać token odświeżający"
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
msgid "You requested again a confirmation email too soon" msgid "You requested again a confirmation email too soon"
msgstr "Zbyt wcześnie poprosiłeś(-aś) o nową wiadomość potwierdzającą" msgstr "Zbyt wcześnie poprosiłeś(-aś) o nową wiadomość potwierdzającą"
#: lib/graphql/resolvers/user.ex:128
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/user.ex:128
msgid "Your email is not on the allowlist" msgid "Your email is not on the allowlist"
msgstr "Twój adres e-mail nie jest na białej liście" msgstr "Twój adres e-mail nie jest na białej liście"
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
msgid "Error while performing background task" msgid "Error while performing background task"
msgstr "Błąd podczas przetwarzania zadań w tle" msgstr "Błąd podczas przetwarzania zadań w tle"
#: lib/graphql/resolvers/actor.ex:27
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:27
msgid "No profile found with this ID" msgid "No profile found with this ID"
msgstr "Nie ma profilu o tym ID" msgstr "Nie ma profilu o tym ID"
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
msgid "No remote profile found with this ID" msgid "No remote profile found with this ID"
msgstr "Nie ma zdalnego profilu o tym ID" msgstr "Nie ma zdalnego profilu o tym ID"
#: lib/graphql/resolvers/actor.ex:69
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:69
msgid "Only moderators and administrators can suspend a profile" msgid "Only moderators and administrators can suspend a profile"
msgstr "Tylko moderatorzy i administratorzy mogą zawiesić profil" msgstr "Tylko moderatorzy i administratorzy mogą zawiesić profil"
#: lib/graphql/resolvers/actor.ex:99
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:99
msgid "Only moderators and administrators can unsuspend a profile" msgid "Only moderators and administrators can unsuspend a profile"
msgstr "Tylko moderatorzy i administratorzy mogą cofnąć zawieszenie profilu" msgstr "Tylko moderatorzy i administratorzy mogą cofnąć zawieszenie profilu"
#: lib/graphql/resolvers/actor.ex:24
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:24
msgid "Only remote profiles may be refreshed" msgid "Only remote profiles may be refreshed"
msgstr "Tylko zdalne profile mogą być odświeżane" msgstr "Tylko zdalne profile mogą być odświeżane"
#: lib/graphql/resolvers/actor.ex:61
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/actor.ex:61
msgid "Profile already suspended" msgid "Profile already suspended"
msgstr "Już zawieszono profil" msgstr "Już zawieszono profil"
#: lib/graphql/resolvers/participant.ex:96
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:93
msgid "A valid email is required by your instance" msgid "A valid email is required by your instance"
msgstr "Twoja instancja wymaga prawidłowego adresu e-mail" msgstr "Twoja instancja wymaga prawidłowego adresu e-mail"
#: lib/graphql/resolvers/participant.ex:90
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:87
msgid "Anonymous participation is not enabled" msgid "Anonymous participation is not enabled"
msgstr "Anonimowe uczestnictwa nie są włączone" msgstr "Anonimowe uczestnictwa nie są włączone"
#: lib/graphql/resolvers/person.ex:188
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:186
msgid "Cannot remove the last administrator of a group" msgid "Cannot remove the last administrator of a group"
msgstr "Nie można usunać jedynego administratora grupy" msgstr "Nie można usunać jedynego administratora grupy"
#: lib/graphql/resolvers/person.ex:185
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:183
msgid "Cannot remove the last identity of a user" msgid "Cannot remove the last identity of a user"
msgstr "Nie można usunąć jedynej tożsamości użytkownika" msgstr "Nie można usunąć jedynej tożsamości użytkownika"
#: lib/graphql/resolvers/comment.ex:109
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:109
msgid "Comment is already deleted" msgid "Comment is already deleted"
msgstr "Komentarz jest już usunięty" msgstr "Komentarz jest już usunięty"
#: lib/graphql/resolvers/discussion.ex:61
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:61
msgid "Discussion not found" msgid "Discussion not found"
msgstr "Nie znaleziono dyskusji" msgstr "Nie znaleziono dyskusji"
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
msgid "Error while saving report" msgid "Error while saving report"
msgstr "Wystąpił błąd podczas zapisywania zgłoszenia" msgstr "Wystąpił błąd podczas zapisywania zgłoszenia"
#: lib/graphql/resolvers/report.ex:113
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:110
msgid "Error while updating report" msgid "Error while updating report"
msgstr "Wystąpił błąd podczas aktualizacji zgłoszenia" msgstr "Wystąpił błąd podczas aktualizacji zgłoszenia"
#: lib/graphql/resolvers/participant.ex:131
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:128
msgid "Event id not found" msgid "Event id not found"
msgstr "Nie znaleziono id wydarzenia" msgstr "Nie znaleziono id wydarzenia"
#, elixir-format
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238 #: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238
#: lib/graphql/resolvers/event.ex:283 #: lib/graphql/resolvers/event.ex:283
#, elixir-format
msgid "Event not found" msgid "Event not found"
msgstr "Nie znaleziono wydarzenia" msgstr "Nie znaleziono wydarzenia"
#: lib/graphql/resolvers/participant.ex:87
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
msgid "Event with this ID %{id} doesn't exist" msgid "Event with this ID %{id} doesn't exist"
msgstr "Wydarzenie o ID %{id} nie istnieje" msgstr "Wydarzenie o ID %{id} nie istnieje"
#: lib/graphql/resolvers/participant.ex:103
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:100
msgid "Internal Error" msgid "Internal Error"
msgstr "Wewnętrzny błąd" msgstr "Wewnętrzny błąd"
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
msgid "Moderator profile is not owned by authenticated user" msgid "Moderator profile is not owned by authenticated user"
msgstr "Profil moderatora nie należy do uwierzytelnionego użytkownika" msgstr "Profil moderatora nie należy do uwierzytelnionego użytkownika"
#: lib/graphql/resolvers/discussion.ex:181
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:184
msgid "No discussion with ID %{id}" msgid "No discussion with ID %{id}"
msgstr "Nie znaleziono dyskusji o ID ${id}" msgstr "Nie znaleziono dyskusji o ID ${id}"
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
msgid "No profile found for user" msgid "No profile found for user"
msgstr "Nie znaleziono profilu dla użytkownika" msgstr "Nie znaleziono profilu dla użytkownika"
#: lib/graphql/resolvers/feed_token.ex:66
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token" msgid "No such feed token"
msgstr "Nie ma takiego tokenu strumienia" msgstr "Nie ma takiego tokenu strumienia"
#: lib/graphql/resolvers/event.ex:202
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:202
msgid "Organizer profile is not owned by the user" msgid "Organizer profile is not owned by the user"
msgstr "Profil organizatora nie należy do użytkownika" msgstr "Profil organizatora nie należy do użytkownika"
#: lib/graphql/resolvers/participant.ex:244
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:241
msgid "Participant already has role %{role}" msgid "Participant already has role %{role}"
msgstr "Uczestnik już ma rolę %{role}" msgstr "Uczestnik już ma rolę %{role}"
#: lib/graphql/resolvers/participant.ex:173
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237
#: lib/graphql/resolvers/participant.ex:247
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:234
#: lib/graphql/resolvers/participant.ex:244
msgid "Participant not found" msgid "Participant not found"
msgstr "Nie znaleziono uczestnika" msgstr "Nie znaleziono uczestnika"
#: lib/graphql/resolvers/person.ex:31
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:31
msgid "Person with ID %{id} not found" msgid "Person with ID %{id} not found"
msgstr "Osoba o ID %{id} nie istnieje" msgstr "Osoba o ID %{id} nie istnieje"
#: lib/graphql/resolvers/person.ex:52
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:52
msgid "Person with username %{username} not found" msgid "Person with username %{username} not found"
msgstr "Nie znaleziono osoby o nazwie użytkownika %{username}" msgstr "Nie znaleziono osoby o nazwie użytkownika %{username}"
#: lib/graphql/resolvers/picture.ex:45
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:42
msgid "Picture with ID %{id} was not found" msgid "Picture with ID %{id} was not found"
msgstr "Nie znaleziono obrazka o ID %{id}" msgstr "Nie znaleziono obrazka o ID %{id}"
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
msgid "Post ID is not a valid ID" msgid "Post ID is not a valid ID"
msgstr "ID wpisu nie jest prawidłowym ID" msgstr "ID wpisu nie jest prawidłowym ID"
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
msgid "Post doesn't exist" msgid "Post doesn't exist"
msgstr "Wpis nie istnieje" msgstr "Wpis nie istnieje"
#: lib/graphql/resolvers/member.ex:86
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:86
msgid "Profile invited doesn't exist" msgid "Profile invited doesn't exist"
msgstr "Zaproszony profil nie istnieje" msgstr "Zaproszony profil nie istnieje"
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
msgid "Profile is already a member of this group" msgid "Profile is already a member of this group"
msgstr "Profil jest już członkiem tej grupy" 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: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:204 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:60 #: lib/graphql/resolvers/resource.ex:153 lib/graphql/resolvers/resource.ex:182 lib/graphql/resolvers/todos.ex:60
#: lib/graphql/resolvers/todos.ex:84 lib/graphql/resolvers/todos.ex:102 lib/graphql/resolvers/todos.ex:174 #: lib/graphql/resolvers/todos.ex:84 lib/graphql/resolvers/todos.ex:102 lib/graphql/resolvers/todos.ex:174
#: lib/graphql/resolvers/todos.ex:197 lib/graphql/resolvers/todos.ex:225 #: lib/graphql/resolvers/todos.ex:197 lib/graphql/resolvers/todos.ex:225
#, elixir-format
msgid "Profile is not member of group" msgid "Profile is not member of group"
msgstr "Profil nie jest członkiem grupy" msgstr "Profil nie jest członkiem grupy"
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
msgid "Profile not found" msgid "Profile not found"
msgstr "Nie znaleziono profilu" msgstr "Nie znaleziono profilu"
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
msgid "Provided moderator profile doesn't have permission on this event" msgid "Provided moderator profile doesn't have permission on this event"
msgstr "Wskazany profil moderatora nie ma uprawnień dla tego wydarzenia" msgstr "Wskazany profil moderatora nie ma uprawnień dla tego wydarzenia"
#: lib/graphql/resolvers/report.ex:38
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:38
msgid "Report not found" msgid "Report not found"
msgstr "Nie znaleziono zgłoszenia" msgstr "Nie znaleziono zgłoszenia"
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
msgid "Resource doesn't exist" msgid "Resource doesn't exist"
msgstr "Zasób nie istnieje" msgstr "Zasób nie istnieje"
#: lib/graphql/resolvers/participant.ex:124
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:121
msgid "The event has already reached its maximum capacity" msgid "The event has already reached its maximum capacity"
msgstr "Wydarzenie już przekroczyło maksymalną zasobność" msgstr "Wydarzenie już przekroczyło maksymalną zasobność"
#: lib/graphql/resolvers/participant.ex:267
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:264
msgid "This token is invalid" msgid "This token is invalid"
msgstr "Ten token jest nieprawidłowy" msgstr "Ten token jest nieprawidłowy"
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
msgid "Todo doesn't exist" msgid "Todo doesn't exist"
msgstr "Element listy do zrobienia nie istnieje" msgstr "Element listy do zrobienia nie istnieje"
#, elixir-format
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:194 #: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:194
#: lib/graphql/resolvers/todos.ex:219 #: lib/graphql/resolvers/todos.ex:219
#, elixir-format
msgid "Todo list doesn't exist" msgid "Todo list doesn't exist"
msgstr "Lista do zrobienia nie istnieje" msgstr "Lista do zrobienia nie istnieje"
#: lib/graphql/resolvers/feed_token.ex:72
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist" msgid "Token does not exist"
msgstr "Token nie istnieje" msgstr "Token nie istnieje"
#: lib/graphql/resolvers/feed_token.ex:69
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID" msgid "Token is not a valid UUID"
msgstr "Token nie jest prawidłowym UUID" msgstr "Token nie jest prawidłowym UUID"
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
msgid "User not found" msgid "User not found"
msgstr "Nie znaleziono użytkownika" msgstr "Nie znaleziono użytkownika"
#: lib/graphql/resolvers/person.ex:235
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:234
msgid "You already have a profile for this user" msgid "You already have a profile for this user"
msgstr "Już masz profil dla tego użytkownika" msgstr "Już masz profil dla tego użytkownika"
#: lib/graphql/resolvers/participant.ex:134
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:131
msgid "You are already a participant of this event" msgid "You are already a participant of this event"
msgstr "Już jesteś uczestnikiem tego wydarzenia" msgstr "Już jesteś uczestnikiem tego wydarzenia"
#: lib/graphql/resolvers/discussion.ex:185
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:188
msgid "You are not a member of the group the discussion belongs to" 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" msgstr "Nie jesteś członkiem grupy do której należy ta dyskusja"
#: lib/graphql/resolvers/member.ex:89
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:89
msgid "You are not a member of this group" msgid "You are not a member of this group"
msgstr "Nie jesteś członkiem tej grupy" msgstr "Nie jesteś członkiem tej grupy"
#: lib/graphql/resolvers/member.ex:154
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:154
msgid "You are not a moderator or admin for this group" msgid "You are not a moderator or admin for this group"
msgstr "Nie jesteś moderatorem ani administratorem tej grupy" msgstr "Nie jesteś moderatorem ani administratorem tej grupy"
#: lib/graphql/resolvers/comment.ex:55
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:55
msgid "You are not allowed to create a comment if not connected" msgid "You are not allowed to create a comment if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:44
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected" msgid "You are not allowed to create a feed token if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:117
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:117
msgid "You are not allowed to delete a comment if not connected" msgid "You are not allowed to delete a comment if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/feed_token.ex:81
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected" msgid "You are not allowed to delete a feed token if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/comment.ex:77
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:77
msgid "You are not allowed to update a comment if not connected" msgid "You are not allowed to update a comment if not connected"
msgstr "" msgstr ""
#: lib/graphql/resolvers/participant.ex:167
#: lib/graphql/resolvers/participant.ex:196
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:193
msgid "You can't leave event because you're the only event creator participant" msgid "You can't leave event because you're the only event creator participant"
msgstr "" msgstr ""
#: lib/graphql/resolvers/member.ex:158
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:158
msgid "You can't set yourself to a lower member role for this group because you are the only administrator" msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr "" msgstr ""
"Nie możesz przydzielić sobie niższej rangi grupy, ponieważ jesteś jedynym " "Nie możesz przydzielić sobie niższej rangi grupy, ponieważ jesteś jedynym "
"administratorem" "administratorem"
#: lib/graphql/resolvers/comment.ex:105
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:105
msgid "You cannot delete this comment" msgid "You cannot delete this comment"
msgstr "Nie możesz usunąć tego komentarza" msgstr "Nie możesz usunąć tego komentarza"
#: lib/graphql/resolvers/event.ex:279
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:279
msgid "You cannot delete this event" msgid "You cannot delete this event"
msgstr "Nie możesz usunąć tego wydarzenia" msgstr "Nie możesz usunąć tego wydarzenia"
#: lib/graphql/resolvers/member.ex:92
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:92
msgid "You cannot invite to this group" msgid "You cannot invite to this group"
msgstr "Nie możesz zaprosić do tej grupy" msgstr "Nie możesz zaprosić do tej grupy"
#: lib/graphql/resolvers/feed_token.ex:75
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token" msgid "You don't have permission to delete this token"
msgstr "Nie masz uprawnień do usunięcia tego tokenu" msgstr "Nie masz uprawnień do usunięcia tego tokenu"
#: lib/graphql/resolvers/admin.ex:52
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:52
msgid "You need to be logged-in and a moderator to list action logs" msgid "You need to be logged-in and a moderator to list action logs"
msgstr "Musisz być zalogowanym moderatorem, aby mieć dostęp do dzennika działań" msgstr "Musisz być zalogowanym moderatorem, aby mieć dostęp do dzennika działań"
#: lib/graphql/resolvers/report.ex:28
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:28
msgid "You need to be logged-in and a moderator to list reports" msgid "You need to be logged-in and a moderator to list reports"
msgstr "Musisz być zalogowanym moderatorem, aby mieć dostęp do listy zgłoszeń" msgstr "Musisz być zalogowanym moderatorem, aby mieć dostęp do listy zgłoszeń"
#: lib/graphql/resolvers/report.ex:118
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:115
msgid "You need to be logged-in and a moderator to update a report" msgid "You need to be logged-in and a moderator to update a report"
msgstr "Musisz być zalogowanym moderatorem, aby móc zaktualizować zgłoszenie" msgstr "Musisz być zalogowanym moderatorem, aby móc zaktualizować zgłoszenie"
#: lib/graphql/resolvers/report.ex:43
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:43
msgid "You need to be logged-in and a moderator to view a report" msgid "You need to be logged-in and a moderator to view a report"
msgstr "Musisz być zalogowanym moderatorem, aby wyświetlić zgłoszenie" msgstr "Musisz być zalogowanym moderatorem, aby wyświetlić zgłoszenie"
#: lib/graphql/resolvers/admin.ex:220
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings" msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "" msgstr ""
"Musisz być zalogowanym moderatorem, aby uzyskać dostęp do ustawień " "Musisz być zalogowanym moderatorem, aby uzyskać dostęp do ustawień "
"administratora" "administratora"
#: lib/graphql/resolvers/admin.ex:205
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics" msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "" msgstr ""
"Musisz być zalogowanym administratorem, aby uzyskać dostęp do statystyk w " "Musisz być zalogowanym administratorem, aby uzyskać dostęp do statystyk w "
"panelu" "panelu"
#: lib/graphql/resolvers/admin.ex:244
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings" msgid "You need to be logged-in and an administrator to save admin settings"
msgstr "" msgstr ""
"Musisz być zalogowanym administratorem, aby zapisywać ustawienia " "Musisz być zalogowanym administratorem, aby zapisywać ustawienia "
"administratora" "administratora"
#: lib/graphql/resolvers/discussion.ex:66
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:66
msgid "You need to be logged-in to access discussions" msgid "You need to be logged-in to access discussions"
msgstr "Musisz być zalogowany(-a), aby uzyskać dostęp do dyskusji" msgstr "Musisz być zalogowany(-a), aby uzyskać dostęp do dyskusji"
#: lib/graphql/resolvers/resource.ex:93
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:93
msgid "You need to be logged-in to access resources" msgid "You need to be logged-in to access resources"
msgstr "Musisz być zalogowany(-a), aby uzyskać dostęp do zasobów" msgstr "Musisz być zalogowany(-a), aby uzyskać dostęp do zasobów"
#: lib/graphql/resolvers/event.ex:213
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:213
msgid "You need to be logged-in to create events" msgid "You need to be logged-in to create events"
msgstr "Musisz być zalogowany(-a), aby móc utworzyć wydarzenia" msgstr "Musisz być zalogowany(-a), aby móc utworzyć wydarzenia"
#: lib/graphql/resolvers/post.ex:139
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:139
msgid "You need to be logged-in to create posts" msgid "You need to be logged-in to create posts"
msgstr "Musisz być zalogowany(-a), aby utworzyć wpis" msgstr "Musisz być zalogowany(-a), aby utworzyć wpis"
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
msgid "You need to be logged-in to create reports" msgid "You need to be logged-in to create reports"
msgstr "Musisz być zalogowany(-a), aby utworzyć zgłoszenie" msgstr "Musisz być zalogowany(-a), aby utworzyć zgłoszenie"
#: lib/graphql/resolvers/resource.ex:129
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:129
msgid "You need to be logged-in to create resources" msgid "You need to be logged-in to create resources"
msgstr "Musisz być zalogowany(-a), aby utworzyć zasób" msgstr "Musisz być zalogowany(-a), aby utworzyć zasób"
#: lib/graphql/resolvers/event.ex:291
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:291
msgid "You need to be logged-in to delete an event" msgid "You need to be logged-in to delete an event"
msgstr "Musisz być zalogowany(-a), aby usunąć wydarzenie" msgstr "Musisz być zalogowany(-a), aby usunąć wydarzenie"
#: lib/graphql/resolvers/post.ex:209
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:209
msgid "You need to be logged-in to delete posts" msgid "You need to be logged-in to delete posts"
msgstr "Musisz być zalogowany(-a), aby usunąć wpis" msgstr "Musisz być zalogowany(-a), aby usunąć wpis"
#: lib/graphql/resolvers/resource.ex:187
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:187
msgid "You need to be logged-in to delete resources" msgid "You need to be logged-in to delete resources"
msgstr "Musisz być zalogowany(-a), aby usunąć zasób" msgstr "Musisz być zalogowany(-a), aby usunąć zasób"
#: lib/graphql/resolvers/participant.ex:108
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:105
msgid "You need to be logged-in to join an event" msgid "You need to be logged-in to join an event"
msgstr "Musisz być zalogowany(-a), aby dołączyć do wydarzenia" msgstr "Musisz być zalogowany(-a), aby dołączyć do wydarzenia"
#: lib/graphql/resolvers/participant.ex:207
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:204
msgid "You need to be logged-in to leave an event" msgid "You need to be logged-in to leave an event"
msgstr "Musisz być zalogowany(-a), aby opuścić wydarzenie" msgstr "Musisz być zalogowany(-a), aby opuścić wydarzenie"
#: lib/graphql/resolvers/event.ex:252
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:252
msgid "You need to be logged-in to update an event" msgid "You need to be logged-in to update an event"
msgstr "Musisz być zalogowany(-a), aby zaktualizować wydarzenie" msgstr "Musisz być zalogowany(-a), aby zaktualizować wydarzenie"
#: lib/graphql/resolvers/post.ex:176
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/post.ex:176
msgid "You need to be logged-in to update posts" msgid "You need to be logged-in to update posts"
msgstr "Musisz być zalogowany(-a), aby zaktualizować wpis" msgstr "Musisz być zalogowany(-a), aby zaktualizować wpis"
#: lib/graphql/resolvers/resource.ex:158
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:158
msgid "You need to be logged-in to update resources" msgid "You need to be logged-in to update resources"
msgstr "Musisz być zalogowany(-a), aby zaktualizować zasób" msgstr "Musisz być zalogowany(-a), aby zaktualizować zasób"
#: lib/graphql/resolvers/resource.ex:210
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:210
msgid "You need to be logged-in to view a resource preview" msgid "You need to be logged-in to view a resource preview"
msgstr "Musisz być zalogowany(-a), aby zobaczyć podgląd zasobu" msgstr "Musisz być zalogowany(-a), aby zobaczyć podgląd zasobu"
#: lib/graphql/resolvers/picture.ex:86
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:83
msgid "You need to login to upload a picture" msgid "You need to login to upload a picture"
msgstr "Musisz się zalogować, aby dodać obraz" msgstr "Musisz się zalogować, aby dodać obraz"
#: lib/graphql/resolvers/report.ex:84
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:81
msgid "Reporter ID does not match the anonymous profile id" msgid "Reporter ID does not match the anonymous profile id"
msgstr "ID zgłaszającego nie zgadza się z ID anonimowego profilu" msgstr "ID zgłaszającego nie zgadza się z ID anonimowego profilu"
#: lib/graphql/resolvers/report.ex:59
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:59
msgid "Reporter profile is not owned by authenticated user" msgid "Reporter profile is not owned by authenticated user"
msgstr "Profil zgłaszającego nie należy od uwierzytelnionego użytkownika" msgstr "Profil zgłaszającego nie należy od uwierzytelnionego użytkownika"
#: lib/graphql/resolvers/resource.ex:121
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/resource.ex:121
msgid "Parent resource doesn't belong to this group" msgid "Parent resource doesn't belong to this group"
msgstr "Nadrzędny zasób nie należy do tej grupy" msgstr "Nadrzędny zasób nie należy do tej grupy"
#: lib/graphql/resolvers/participant.ex:93
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:90
msgid "Profile ID provided is not the anonymous profile one" msgid "Profile ID provided is not the anonymous profile one"
msgstr "Podane ID profilu nie jest anonimowym profilem" msgstr "Podane ID profilu nie jest anonimowym profilem"
#: lib/mobilizon/users/user.ex:109
#, elixir-format #, elixir-format
#: lib/mobilizon/users/user.ex:109
msgid "The chosen password is too short." msgid "The chosen password is too short."
msgstr "Wybrane hasło jest zbyt krótkie" msgstr "Wybrane hasło jest zbyt krótkie"
#: lib/mobilizon/users/user.ex:138
#, elixir-format #, elixir-format
#: lib/mobilizon/users/user.ex:138
msgid "The registration token is already in use, this looks like an issue on our side." msgid "The registration token is already in use, this looks like an issue on our side."
msgstr "" msgstr ""
"Token rejestracyjny jest już w użyciu, to wygląda na problem po naszej " "Token rejestracyjny jest już w użyciu, to wygląda na problem po naszej "
"stronie." "stronie."
#: lib/mobilizon/users/user.ex:104
#, elixir-format #, elixir-format
#: lib/mobilizon/users/user.ex:104
msgid "This email is already used." msgid "This email is already used."
msgstr "Ten adres e-mail jest już w użyciu." msgstr "Ten adres e-mail jest już w użyciu."
#: lib/graphql/error.ex:88
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:88
msgid "Post not found" msgid "Post not found"
msgstr "Nie znaleziono wpisu" msgstr "Nie znaleziono wpisu"
#: lib/graphql/error.ex:75
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:75
msgid "Invalid arguments passed" msgid "Invalid arguments passed"
msgstr "Podano nieprawidłowe argumenty" msgstr "Podano nieprawidłowe argumenty"
#: lib/graphql/error.ex:81
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:81
msgid "Invalid credentials" msgid "Invalid credentials"
msgstr "Nieprawidłowe dane uwierzytelniające" msgstr "Nieprawidłowe dane uwierzytelniające"
#: lib/graphql/error.ex:79
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:79
msgid "Reset your password to login" msgid "Reset your password to login"
msgstr "Resetuj swoje hasło, aby zalogować się" msgstr "Resetuj swoje hasło, aby zalogować się"
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
msgid "Resource not found" msgid "Resource not found"
msgstr "Nie znaleziono zasobu" msgstr "Nie znaleziono zasobu"
#: lib/graphql/error.ex:92
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:92
msgid "Something went wrong" msgid "Something went wrong"
msgstr "Coś poszło nie tak" msgstr "Coś poszło nie tak"
#: lib/graphql/error.ex:74
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:74
msgid "Unknown Resource" msgid "Unknown Resource"
msgstr "Nieznany zasób" msgstr "Nieznany zasób"
#: lib/graphql/error.ex:84
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:84
msgid "You don't have permission to do this" msgid "You don't have permission to do this"
msgstr "Nie masz uprawnień aby to zrobić" msgstr "Nie masz uprawnień aby to zrobić"
#: lib/graphql/error.ex:76
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:76
msgid "You need to be logged in" msgid "You need to be logged in"
msgstr "Musisz być zalogowany(-a)" msgstr "Musisz być zalogowany(-a)"
#: lib/graphql/resolvers/member.ex:119
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:119
msgid "You can't accept this invitation with this profile." msgid "You can't accept this invitation with this profile."
msgstr "Nie możesz zaakceptować tego zaproszenia z tego profilu." msgstr "Nie możesz zaakceptować tego zaproszenia z tego profilu."
#: lib/graphql/resolvers/member.ex:137
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:137
msgid "You can't reject this invitation with this profile." msgid "You can't reject this invitation with this profile."
msgstr "Nie możesz odrzucić tego zaproszenia z tego profilu." msgstr "Nie możesz odrzucić tego zaproszenia z tego profilu."
#: lib/graphql/resolvers/picture.ex:78
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:75
msgid "File doesn't have an allowed MIME type." msgid "File doesn't have an allowed MIME type."
msgstr "Plik nie ma dozwolonego typu MIME." msgstr "Plik nie ma dozwolonego typu MIME."
#: lib/graphql/resolvers/group.ex:172
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:170
msgid "Profile is not administrator for the group" msgid "Profile is not administrator for the group"
msgstr "Profil nie jest administratorem grupy" msgstr "Profil nie jest administratorem grupy"
#: lib/graphql/resolvers/event.ex:241
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:241
msgid "You can't edit this event." msgid "You can't edit this event."
msgstr "Nie możesz edytować tego wydarzenia." msgstr "Nie możesz edytować tego wydarzenia."
#: lib/graphql/resolvers/event.ex:244
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:244
msgid "You can't attribute this event to this profile." msgid "You can't attribute this event to this profile."
msgstr "Nie możesz przypisać tego wydarzenia do tego profilu." msgstr "Nie możesz przypisać tego wydarzenia do tego profilu."
#: lib/graphql/resolvers/member.ex:140
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:140
msgid "This invitation doesn't exist." msgid "This invitation doesn't exist."
msgstr "To zaproszenie nie istnieje." msgstr "To zaproszenie nie istnieje."
#: lib/graphql/resolvers/member.ex:182
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:182
msgid "This member already has been rejected." msgid "This member already has been rejected."
msgstr "Ten członek już został odrzucony." msgstr "Ten członek już został odrzucony."
#: lib/graphql/resolvers/member.ex:189
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/member.ex:189
msgid "You don't have the right to remove this member." msgid "You don't have the right to remove this member."
msgstr "Nie masz uprawnień do usunięcia tego członka." msgstr "Nie masz uprawnień do usunięcia tego członka."
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
msgid "This username is already taken."
msgstr ""

View File

@ -112,17 +112,17 @@ msgid "You created an account on %{host} with this email address. You are one cl
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:113 #: lib/web/email/participation.ex:112
msgid "Your participation to event %{title} has been approved" msgid "Your participation to event %{title} has been approved"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:71 #: lib/web/email/participation.ex:70
msgid "Your participation to event %{title} has been rejected" msgid "Your participation to event %{title} has been rejected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/event.ex:36 #: lib/web/email/event.ex:37
msgid "Event %{title} has been updated" msgid "Event %{title} has been updated"
msgstr "" msgstr ""
@ -142,7 +142,7 @@ msgid "Warning"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:135 #: lib/web/email/participation.ex:134
msgid "Confirm your participation to event %{title}" msgid "Confirm your participation to event %{title}"
msgstr "" msgstr ""
@ -398,14 +398,14 @@ msgstr[1] ""
#, elixir-format #, elixir-format
#: lib/web/templates/email/notification_each_week.html.eex:38 #: lib/web/templates/email/notification_each_week.html.eex:38
#: lib/web/templates/email/notification_each_week.text.eex:4 #: lib/web/templates/email/notification_each_week.text.eex:3
msgid "You have one event this week:" msgid "You have one event this week:"
msgid_plural "You have %{total} events this week:" msgid_plural "You have %{total} events this week:"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#, elixir-format #, elixir-format
#: lib/service/metadata/utils.ex:27 #: lib/service/metadata/utils.ex:52
msgid "The event organizer didn't add any description." msgid "The event organizer didn't add any description."
msgstr "" msgstr ""
@ -760,7 +760,7 @@ msgstr ""
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 #: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133 #: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:11 lib/web/templates/email/on_day_notification.html.eex:70
#: lib/web/templates/email/on_day_notification.text.eex:14 #: lib/web/templates/email/on_day_notification.text.eex:14
msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button." msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button."
msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button." msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button."
@ -1236,7 +1236,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:92 #: lib/web/email/participation.ex:91
msgid "Your participation to event %{title} has been confirmed" msgid "Your participation to event %{title} has been confirmed"
msgstr "" msgstr ""
@ -1363,7 +1363,7 @@ msgstr ""
msgid "We're sorry, but something went wrong on our end." msgid "We're sorry, but something went wrong on our end."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/web/templates/email/email.html.eex:88 #: lib/web/templates/email/email.html.eex:88
#: lib/web/templates/email/email.text.eex:4 #: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon." msgid "This is a demonstration site to test Mobilizon."

View File

@ -92,17 +92,17 @@ msgid "Cannot refresh the token"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:139 #: lib/graphql/resolvers/group.ex:137
msgid "Creator profile is not owned by the current user" msgid "Creator profile is not owned by the current user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:203 #: lib/graphql/resolvers/group.ex:201
msgid "Current profile is not a member of this group" msgid "Current profile is not a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:207 #: lib/graphql/resolvers/group.ex:205
msgid "Current profile is not an administrator of the selected group" msgid "Current profile is not an administrator of the selected group"
msgstr "" msgstr ""
@ -112,13 +112,13 @@ msgid "Error while saving user settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200 #: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83 #: lib/graphql/resolvers/group.ex:229 lib/graphql/resolvers/group.ex:264 lib/graphql/resolvers/member.ex:83
msgid "Group not found" msgid "Group not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:69 #: lib/graphql/resolvers/group.ex:66
msgid "Group with ID %{id} not found" msgid "Group with ID %{id} not found"
msgstr "" msgstr ""
@ -128,7 +128,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:280 #: lib/graphql/resolvers/group.ex:261
msgid "Member not found" msgid "Member not found"
msgstr "" msgstr ""
@ -144,19 +144,18 @@ msgid "No user to validate with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76 #: lib/graphql/resolvers/person.ex:231 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219 #: lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found" msgid "No user with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:245 #: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/member.ex:80
#: lib/graphql/resolvers/member.ex:80 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 #: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:155 lib/graphql/resolvers/person.ex:189
#: lib/graphql/resolvers/person.ex:191 lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288 #: lib/graphql/resolvers/person.ex:255 lib/graphql/resolvers/person.ex:284 lib/graphql/resolvers/person.ex:297
#: lib/graphql/resolvers/person.ex:301 lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110 #: lib/graphql/resolvers/picture.ex:72 lib/graphql/resolvers/report.ex:107 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:57
msgid "Profile is not owned by authenticated user" msgid "Profile is not owned by authenticated user"
msgstr "" msgstr ""
@ -222,22 +221,22 @@ msgid "User requested is not logged-in"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:254 #: lib/graphql/resolvers/group.ex:235
msgid "You are already a member of this group" msgid "You are already a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:287 #: lib/graphql/resolvers/group.ex:268
msgid "You can't leave this group because you are the only administrator" msgid "You can't leave this group because you are the only administrator"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:251 #: lib/graphql/resolvers/group.ex:232
msgid "You cannot join this group" msgid "You cannot join this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:97 #: lib/graphql/resolvers/group.ex:94
msgid "You may not list groups unless moderator." msgid "You may not list groups unless moderator."
msgstr "" msgstr ""
@ -252,7 +251,7 @@ msgid "You need to be logged-in to change your password"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:212 #: lib/graphql/resolvers/group.ex:210
msgid "You need to be logged-in to delete a group" msgid "You need to be logged-in to delete a group"
msgstr "" msgstr ""
@ -262,17 +261,17 @@ msgid "You need to be logged-in to delete your account"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:259 #: lib/graphql/resolvers/group.ex:240
msgid "You need to be logged-in to join a group" msgid "You need to be logged-in to join a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:292 #: lib/graphql/resolvers/group.ex:273
msgid "You need to be logged-in to leave a group" msgid "You need to be logged-in to leave a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:177 #: lib/graphql/resolvers/group.ex:175
msgid "You need to be logged-in to update a group" msgid "You need to be logged-in to update a group"
msgstr "" msgstr ""
@ -332,22 +331,22 @@ msgid "Profile already suspended"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:96 #: lib/graphql/resolvers/participant.ex:93
msgid "A valid email is required by your instance" msgid "A valid email is required by your instance"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:90 #: lib/graphql/resolvers/participant.ex:87
msgid "Anonymous participation is not enabled" msgid "Anonymous participation is not enabled"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:188 #: lib/graphql/resolvers/person.ex:186
msgid "Cannot remove the last administrator of a group" msgid "Cannot remove the last administrator of a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:185 #: lib/graphql/resolvers/person.ex:183
msgid "Cannot remove the last identity of a user" msgid "Cannot remove the last identity of a user"
msgstr "" msgstr ""
@ -362,17 +361,17 @@ msgid "Discussion not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87 #: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
msgid "Error while saving report" msgid "Error while saving report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:113 #: lib/graphql/resolvers/report.ex:110
msgid "Error while updating report" msgid "Error while updating report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:131 #: lib/graphql/resolvers/participant.ex:128
msgid "Event id not found" msgid "Event id not found"
msgstr "" msgstr ""
@ -383,23 +382,23 @@ msgid "Event not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:87 #: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160 #: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
msgid "Event with this ID %{id} doesn't exist" msgid "Event with this ID %{id} doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:103 #: lib/graphql/resolvers/participant.ex:100
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234 #: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
msgid "Moderator profile is not owned by authenticated user" msgid "Moderator profile is not owned by authenticated user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:181 #: lib/graphql/resolvers/discussion.ex:184
msgid "No discussion with ID %{id}" msgid "No discussion with ID %{id}"
msgstr "" msgstr ""
@ -409,7 +408,7 @@ msgid "No profile found for user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66 #: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token" msgid "No such feed token"
msgstr "" msgstr ""
@ -419,14 +418,14 @@ msgid "Organizer profile is not owned by the user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:244 #: lib/graphql/resolvers/participant.ex:241
msgid "Participant already has role %{role}" msgid "Participant already has role %{role}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:173 #: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237 #: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:234
#: lib/graphql/resolvers/participant.ex:247 #: lib/graphql/resolvers/participant.ex:244
msgid "Participant not found" msgid "Participant not found"
msgstr "" msgstr ""
@ -441,7 +440,7 @@ msgid "Person with username %{username} not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:45 #: lib/graphql/resolvers/picture.ex:42
msgid "Picture with ID %{id} was not found" msgid "Picture with ID %{id} was not found"
msgstr "" msgstr ""
@ -475,12 +474,12 @@ msgid "Profile is not member of group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182 #: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
msgid "Profile not found" msgid "Profile not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241 #: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
msgid "Provided moderator profile doesn't have permission on this event" msgid "Provided moderator profile doesn't have permission on this event"
msgstr "" msgstr ""
@ -495,12 +494,12 @@ msgid "Resource doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:124 #: lib/graphql/resolvers/participant.ex:121
msgid "The event has already reached its maximum capacity" msgid "The event has already reached its maximum capacity"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:267 #: lib/graphql/resolvers/participant.ex:264
msgid "This token is invalid" msgid "This token is invalid"
msgstr "" msgstr ""
@ -516,32 +515,32 @@ msgid "Todo list doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72 #: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist" msgid "Token does not exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69 #: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID" msgid "Token is not a valid UUID"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323 #: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
msgid "User not found" msgid "User not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:235 #: lib/graphql/resolvers/person.ex:234
msgid "You already have a profile for this user" msgid "You already have a profile for this user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:134 #: lib/graphql/resolvers/participant.ex:131
msgid "You are already a participant of this event" msgid "You are already a participant of this event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:185 #: lib/graphql/resolvers/discussion.ex:188
msgid "You are not a member of the group the discussion belongs to" msgid "You are not a member of the group the discussion belongs to"
msgstr "" msgstr ""
@ -561,7 +560,7 @@ msgid "You are not allowed to create a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:44 #: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected" msgid "You are not allowed to create a feed token if not connected"
msgstr "" msgstr ""
@ -571,7 +570,7 @@ msgid "You are not allowed to delete a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:81 #: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected" msgid "You are not allowed to delete a feed token if not connected"
msgstr "" msgstr ""
@ -581,8 +580,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:167 #: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:196 #: lib/graphql/resolvers/participant.ex:193
msgid "You can't leave event because you're the only event creator participant" msgid "You can't leave event because you're the only event creator participant"
msgstr "" msgstr ""
@ -607,7 +606,7 @@ msgid "You cannot invite to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:75 #: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token" msgid "You don't have permission to delete this token"
msgstr "" msgstr ""
@ -622,7 +621,7 @@ msgid "You need to be logged-in and a moderator to list reports"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:118 #: lib/graphql/resolvers/report.ex:115
msgid "You need to be logged-in and a moderator to update a report" msgid "You need to be logged-in and a moderator to update a report"
msgstr "" msgstr ""
@ -632,17 +631,17 @@ msgid "You need to be logged-in and a moderator to view a report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:220 #: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings" msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:205 #: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics" msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:244 #: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings" msgid "You need to be logged-in and an administrator to save admin settings"
msgstr "" msgstr ""
@ -667,7 +666,7 @@ msgid "You need to be logged-in to create posts"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92 #: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
msgid "You need to be logged-in to create reports" msgid "You need to be logged-in to create reports"
msgstr "" msgstr ""
@ -692,12 +691,12 @@ msgid "You need to be logged-in to delete resources"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:108 #: lib/graphql/resolvers/participant.ex:105
msgid "You need to be logged-in to join an event" msgid "You need to be logged-in to join an event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:207 #: lib/graphql/resolvers/participant.ex:204
msgid "You need to be logged-in to leave an event" msgid "You need to be logged-in to leave an event"
msgstr "" msgstr ""
@ -722,12 +721,12 @@ msgid "You need to be logged-in to view a resource preview"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:86 #: lib/graphql/resolvers/picture.ex:83
msgid "You need to login to upload a picture" msgid "You need to login to upload a picture"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:84 #: lib/graphql/resolvers/report.ex:81
msgid "Reporter ID does not match the anonymous profile id" msgid "Reporter ID does not match the anonymous profile id"
msgstr "" msgstr ""
@ -742,7 +741,7 @@ msgid "Parent resource doesn't belong to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:93 #: lib/graphql/resolvers/participant.ex:90
msgid "Profile ID provided is not the anonymous profile one" msgid "Profile ID provided is not the anonymous profile one"
msgstr "" msgstr ""
@ -817,12 +816,12 @@ msgid "You can't reject this invitation with this profile."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:78 #: lib/graphql/resolvers/picture.ex:75
msgid "File doesn't have an allowed MIME type." msgid "File doesn't have an allowed MIME type."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:172 #: lib/graphql/resolvers/group.ex:170
msgid "Profile is not administrator for the group" msgid "Profile is not administrator for the group"
msgstr "" msgstr ""
@ -850,3 +849,8 @@ msgstr ""
#: lib/graphql/resolvers/member.ex:189 #: lib/graphql/resolvers/member.ex:189
msgid "You don't have the right to remove this member." msgid "You don't have the right to remove this member."
msgstr "" msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
msgid "This username is already taken."
msgstr ""

View File

@ -123,17 +123,17 @@ msgstr ""
"ignorar este e-mail." "ignorar este e-mail."
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:113 #: lib/web/email/participation.ex:112
msgid "Your participation to event %{title} has been approved" msgid "Your participation to event %{title} has been approved"
msgstr "A sua participação no evento %{title} foi aprovada" msgstr "A sua participação no evento %{title} foi aprovada"
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:71 #: lib/web/email/participation.ex:70
msgid "Your participation to event %{title} has been rejected" msgid "Your participation to event %{title} has been rejected"
msgstr "A sua participação no evento %{title} foi rejeitada" msgstr "A sua participação no evento %{title} foi rejeitada"
#, elixir-format #, elixir-format
#: lib/web/email/event.ex:36 #: lib/web/email/event.ex:37
msgid "Event %{title} has been updated" msgid "Event %{title} has been updated"
msgstr "Evento %{title} foi atualizado" msgstr "Evento %{title} foi atualizado"
@ -153,7 +153,7 @@ msgid "Warning"
msgstr "Atenção" msgstr "Atenção"
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:135 #: lib/web/email/participation.ex:134
msgid "Confirm your participation to event %{title}" msgid "Confirm your participation to event %{title}"
msgstr "Confirmar sua participação no evento %{title}" msgstr "Confirmar sua participação no evento %{title}"
@ -444,14 +444,14 @@ msgstr[1] ""
#, elixir-format #, elixir-format
#: lib/web/templates/email/notification_each_week.html.eex:38 #: lib/web/templates/email/notification_each_week.html.eex:38
#: lib/web/templates/email/notification_each_week.text.eex:4 #: lib/web/templates/email/notification_each_week.text.eex:3
msgid "You have one event this week:" msgid "You have one event this week:"
msgid_plural "You have %{total} events this week:" msgid_plural "You have %{total} events this week:"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#, elixir-format #, elixir-format
#: lib/service/metadata/utils.ex:27 #: lib/service/metadata/utils.ex:52
msgid "The event organizer didn't add any description." msgid "The event organizer didn't add any description."
msgstr "" msgstr ""
@ -831,7 +831,7 @@ msgstr "Por favor não utilize este serviço em nenhum caso real"
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 #: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133 #: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:11 lib/web/templates/email/on_day_notification.html.eex:70
#: lib/web/templates/email/on_day_notification.text.eex:14 #: lib/web/templates/email/on_day_notification.text.eex:14
msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button." msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button."
msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button." msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button."
@ -1348,7 +1348,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
msgstr "Você solicitou participar no evento %{title}." msgstr "Você solicitou participar no evento %{title}."
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:92 #: lib/web/email/participation.ex:91
msgid "Your participation to event %{title} has been confirmed" msgid "Your participation to event %{title} has been confirmed"
msgstr "A sua participação no evento %{title} foi aprovada" msgstr "A sua participação no evento %{title} foi aprovada"
@ -1475,7 +1475,7 @@ msgstr ""
msgid "We're sorry, but something went wrong on our end." msgid "We're sorry, but something went wrong on our end."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/web/templates/email/email.html.eex:88 #: lib/web/templates/email/email.html.eex:88
#: lib/web/templates/email/email.text.eex:4 #: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon." msgid "This is a demonstration site to test Mobilizon."

View File

@ -92,17 +92,17 @@ msgid "Cannot refresh the token"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:139 #: lib/graphql/resolvers/group.ex:137
msgid "Creator profile is not owned by the current user" msgid "Creator profile is not owned by the current user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:203 #: lib/graphql/resolvers/group.ex:201
msgid "Current profile is not a member of this group" msgid "Current profile is not a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:207 #: lib/graphql/resolvers/group.ex:205
msgid "Current profile is not an administrator of the selected group" msgid "Current profile is not an administrator of the selected group"
msgstr "" msgstr ""
@ -112,13 +112,13 @@ msgid "Error while saving user settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200 #: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83 #: lib/graphql/resolvers/group.ex:229 lib/graphql/resolvers/group.ex:264 lib/graphql/resolvers/member.ex:83
msgid "Group not found" msgid "Group not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:69 #: lib/graphql/resolvers/group.ex:66
msgid "Group with ID %{id} not found" msgid "Group with ID %{id} not found"
msgstr "" msgstr ""
@ -128,7 +128,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:280 #: lib/graphql/resolvers/group.ex:261
msgid "Member not found" msgid "Member not found"
msgstr "" msgstr ""
@ -144,19 +144,18 @@ msgid "No user to validate with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76 #: lib/graphql/resolvers/person.ex:231 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219 #: lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found" msgid "No user with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:245 #: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/member.ex:80
#: lib/graphql/resolvers/member.ex:80 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 #: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:155 lib/graphql/resolvers/person.ex:189
#: lib/graphql/resolvers/person.ex:191 lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288 #: lib/graphql/resolvers/person.ex:255 lib/graphql/resolvers/person.ex:284 lib/graphql/resolvers/person.ex:297
#: lib/graphql/resolvers/person.ex:301 lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110 #: lib/graphql/resolvers/picture.ex:72 lib/graphql/resolvers/report.ex:107 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:57
msgid "Profile is not owned by authenticated user" msgid "Profile is not owned by authenticated user"
msgstr "" msgstr ""
@ -222,22 +221,22 @@ msgid "User requested is not logged-in"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:254 #: lib/graphql/resolvers/group.ex:235
msgid "You are already a member of this group" msgid "You are already a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:287 #: lib/graphql/resolvers/group.ex:268
msgid "You can't leave this group because you are the only administrator" msgid "You can't leave this group because you are the only administrator"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:251 #: lib/graphql/resolvers/group.ex:232
msgid "You cannot join this group" msgid "You cannot join this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:97 #: lib/graphql/resolvers/group.ex:94
msgid "You may not list groups unless moderator." msgid "You may not list groups unless moderator."
msgstr "" msgstr ""
@ -252,7 +251,7 @@ msgid "You need to be logged-in to change your password"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:212 #: lib/graphql/resolvers/group.ex:210
msgid "You need to be logged-in to delete a group" msgid "You need to be logged-in to delete a group"
msgstr "" msgstr ""
@ -262,17 +261,17 @@ msgid "You need to be logged-in to delete your account"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:259 #: lib/graphql/resolvers/group.ex:240
msgid "You need to be logged-in to join a group" msgid "You need to be logged-in to join a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:292 #: lib/graphql/resolvers/group.ex:273
msgid "You need to be logged-in to leave a group" msgid "You need to be logged-in to leave a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:177 #: lib/graphql/resolvers/group.ex:175
msgid "You need to be logged-in to update a group" msgid "You need to be logged-in to update a group"
msgstr "" msgstr ""
@ -332,22 +331,22 @@ msgid "Profile already suspended"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:96 #: lib/graphql/resolvers/participant.ex:93
msgid "A valid email is required by your instance" msgid "A valid email is required by your instance"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:90 #: lib/graphql/resolvers/participant.ex:87
msgid "Anonymous participation is not enabled" msgid "Anonymous participation is not enabled"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:188 #: lib/graphql/resolvers/person.ex:186
msgid "Cannot remove the last administrator of a group" msgid "Cannot remove the last administrator of a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:185 #: lib/graphql/resolvers/person.ex:183
msgid "Cannot remove the last identity of a user" msgid "Cannot remove the last identity of a user"
msgstr "" msgstr ""
@ -362,17 +361,17 @@ msgid "Discussion not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87 #: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
msgid "Error while saving report" msgid "Error while saving report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:113 #: lib/graphql/resolvers/report.ex:110
msgid "Error while updating report" msgid "Error while updating report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:131 #: lib/graphql/resolvers/participant.ex:128
msgid "Event id not found" msgid "Event id not found"
msgstr "" msgstr ""
@ -383,23 +382,23 @@ msgid "Event not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:87 #: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160 #: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
msgid "Event with this ID %{id} doesn't exist" msgid "Event with this ID %{id} doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:103 #: lib/graphql/resolvers/participant.ex:100
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234 #: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
msgid "Moderator profile is not owned by authenticated user" msgid "Moderator profile is not owned by authenticated user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:181 #: lib/graphql/resolvers/discussion.ex:184
msgid "No discussion with ID %{id}" msgid "No discussion with ID %{id}"
msgstr "" msgstr ""
@ -409,7 +408,7 @@ msgid "No profile found for user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66 #: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token" msgid "No such feed token"
msgstr "" msgstr ""
@ -419,14 +418,14 @@ msgid "Organizer profile is not owned by the user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:244 #: lib/graphql/resolvers/participant.ex:241
msgid "Participant already has role %{role}" msgid "Participant already has role %{role}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:173 #: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237 #: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:234
#: lib/graphql/resolvers/participant.ex:247 #: lib/graphql/resolvers/participant.ex:244
msgid "Participant not found" msgid "Participant not found"
msgstr "" msgstr ""
@ -441,7 +440,7 @@ msgid "Person with username %{username} not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:45 #: lib/graphql/resolvers/picture.ex:42
msgid "Picture with ID %{id} was not found" msgid "Picture with ID %{id} was not found"
msgstr "" msgstr ""
@ -475,12 +474,12 @@ msgid "Profile is not member of group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182 #: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
msgid "Profile not found" msgid "Profile not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241 #: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
msgid "Provided moderator profile doesn't have permission on this event" msgid "Provided moderator profile doesn't have permission on this event"
msgstr "" msgstr ""
@ -495,12 +494,12 @@ msgid "Resource doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:124 #: lib/graphql/resolvers/participant.ex:121
msgid "The event has already reached its maximum capacity" msgid "The event has already reached its maximum capacity"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:267 #: lib/graphql/resolvers/participant.ex:264
msgid "This token is invalid" msgid "This token is invalid"
msgstr "" msgstr ""
@ -516,32 +515,32 @@ msgid "Todo list doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72 #: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist" msgid "Token does not exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69 #: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID" msgid "Token is not a valid UUID"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323 #: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
msgid "User not found" msgid "User not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:235 #: lib/graphql/resolvers/person.ex:234
msgid "You already have a profile for this user" msgid "You already have a profile for this user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:134 #: lib/graphql/resolvers/participant.ex:131
msgid "You are already a participant of this event" msgid "You are already a participant of this event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:185 #: lib/graphql/resolvers/discussion.ex:188
msgid "You are not a member of the group the discussion belongs to" msgid "You are not a member of the group the discussion belongs to"
msgstr "" msgstr ""
@ -561,7 +560,7 @@ msgid "You are not allowed to create a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:44 #: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected" msgid "You are not allowed to create a feed token if not connected"
msgstr "" msgstr ""
@ -571,7 +570,7 @@ msgid "You are not allowed to delete a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:81 #: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected" msgid "You are not allowed to delete a feed token if not connected"
msgstr "" msgstr ""
@ -581,8 +580,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:167 #: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:196 #: lib/graphql/resolvers/participant.ex:193
msgid "You can't leave event because you're the only event creator participant" msgid "You can't leave event because you're the only event creator participant"
msgstr "" msgstr ""
@ -607,7 +606,7 @@ msgid "You cannot invite to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:75 #: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token" msgid "You don't have permission to delete this token"
msgstr "" msgstr ""
@ -622,7 +621,7 @@ msgid "You need to be logged-in and a moderator to list reports"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:118 #: lib/graphql/resolvers/report.ex:115
msgid "You need to be logged-in and a moderator to update a report" msgid "You need to be logged-in and a moderator to update a report"
msgstr "" msgstr ""
@ -632,17 +631,17 @@ msgid "You need to be logged-in and a moderator to view a report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:220 #: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings" msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:205 #: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics" msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:244 #: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings" msgid "You need to be logged-in and an administrator to save admin settings"
msgstr "" msgstr ""
@ -667,7 +666,7 @@ msgid "You need to be logged-in to create posts"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92 #: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
msgid "You need to be logged-in to create reports" msgid "You need to be logged-in to create reports"
msgstr "" msgstr ""
@ -692,12 +691,12 @@ msgid "You need to be logged-in to delete resources"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:108 #: lib/graphql/resolvers/participant.ex:105
msgid "You need to be logged-in to join an event" msgid "You need to be logged-in to join an event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:207 #: lib/graphql/resolvers/participant.ex:204
msgid "You need to be logged-in to leave an event" msgid "You need to be logged-in to leave an event"
msgstr "" msgstr ""
@ -722,12 +721,12 @@ msgid "You need to be logged-in to view a resource preview"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:86 #: lib/graphql/resolvers/picture.ex:83
msgid "You need to login to upload a picture" msgid "You need to login to upload a picture"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:84 #: lib/graphql/resolvers/report.ex:81
msgid "Reporter ID does not match the anonymous profile id" msgid "Reporter ID does not match the anonymous profile id"
msgstr "" msgstr ""
@ -742,7 +741,7 @@ msgid "Parent resource doesn't belong to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:93 #: lib/graphql/resolvers/participant.ex:90
msgid "Profile ID provided is not the anonymous profile one" msgid "Profile ID provided is not the anonymous profile one"
msgstr "" msgstr ""
@ -817,12 +816,12 @@ msgid "You can't reject this invitation with this profile."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:78 #: lib/graphql/resolvers/picture.ex:75
msgid "File doesn't have an allowed MIME type." msgid "File doesn't have an allowed MIME type."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:172 #: lib/graphql/resolvers/group.ex:170
msgid "Profile is not administrator for the group" msgid "Profile is not administrator for the group"
msgstr "" msgstr ""
@ -850,3 +849,8 @@ msgstr ""
#: lib/graphql/resolvers/member.ex:189 #: lib/graphql/resolvers/member.ex:189
msgid "You don't have the right to remove this member." msgid "You don't have the right to remove this member."
msgstr "" msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
msgid "This username is already taken."
msgstr ""

View File

@ -119,17 +119,17 @@ msgid "You created an account on %{host} with this email address. You are one cl
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:113 #: lib/web/email/participation.ex:112
msgid "Your participation to event %{title} has been approved" msgid "Your participation to event %{title} has been approved"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:71 #: lib/web/email/participation.ex:70
msgid "Your participation to event %{title} has been rejected" msgid "Your participation to event %{title} has been rejected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/event.ex:36 #: lib/web/email/event.ex:37
msgid "Event %{title} has been updated" msgid "Event %{title} has been updated"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgid "Warning"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:135 #: lib/web/email/participation.ex:134
msgid "Confirm your participation to event %{title}" msgid "Confirm your participation to event %{title}"
msgstr "" msgstr ""
@ -409,7 +409,7 @@ msgstr[2] ""
#, elixir-format #, elixir-format
#: lib/web/templates/email/notification_each_week.html.eex:38 #: lib/web/templates/email/notification_each_week.html.eex:38
#: lib/web/templates/email/notification_each_week.text.eex:4 #: lib/web/templates/email/notification_each_week.text.eex:3
msgid "You have one event this week:" msgid "You have one event this week:"
msgid_plural "You have %{total} events this week:" msgid_plural "You have %{total} events this week:"
msgstr[0] "" msgstr[0] ""
@ -417,7 +417,7 @@ msgstr[1] ""
msgstr[2] "" msgstr[2] ""
#, elixir-format #, elixir-format
#: lib/service/metadata/utils.ex:27 #: lib/service/metadata/utils.ex:52
msgid "The event organizer didn't add any description." msgid "The event organizer didn't add any description."
msgstr "" msgstr ""
@ -774,7 +774,7 @@ msgstr ""
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 #: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133 #: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:11 lib/web/templates/email/on_day_notification.html.eex:70
#: lib/web/templates/email/on_day_notification.text.eex:14 #: lib/web/templates/email/on_day_notification.text.eex:14
msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button." msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button."
msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button." msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button."
@ -1252,7 +1252,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:92 #: lib/web/email/participation.ex:91
msgid "Your participation to event %{title} has been confirmed" msgid "Your participation to event %{title} has been confirmed"
msgstr "" msgstr ""
@ -1381,7 +1381,7 @@ msgstr ""
msgid "We're sorry, but something went wrong on our end." msgid "We're sorry, but something went wrong on our end."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/web/templates/email/email.html.eex:88 #: lib/web/templates/email/email.html.eex:88
#: lib/web/templates/email/email.text.eex:4 #: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon." msgid "This is a demonstration site to test Mobilizon."

View File

@ -98,17 +98,17 @@ msgid "Cannot refresh the token"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:139 #: lib/graphql/resolvers/group.ex:137
msgid "Creator profile is not owned by the current user" msgid "Creator profile is not owned by the current user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:203 #: lib/graphql/resolvers/group.ex:201
msgid "Current profile is not a member of this group" msgid "Current profile is not a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:207 #: lib/graphql/resolvers/group.ex:205
msgid "Current profile is not an administrator of the selected group" msgid "Current profile is not an administrator of the selected group"
msgstr "" msgstr ""
@ -118,13 +118,13 @@ msgid "Error while saving user settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200 #: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83 #: lib/graphql/resolvers/group.ex:229 lib/graphql/resolvers/group.ex:264 lib/graphql/resolvers/member.ex:83
msgid "Group not found" msgid "Group not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:69 #: lib/graphql/resolvers/group.ex:66
msgid "Group with ID %{id} not found" msgid "Group with ID %{id} not found"
msgstr "" msgstr ""
@ -134,7 +134,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:280 #: lib/graphql/resolvers/group.ex:261
msgid "Member not found" msgid "Member not found"
msgstr "" msgstr ""
@ -150,19 +150,18 @@ msgid "No user to validate with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76 #: lib/graphql/resolvers/person.ex:231 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219 #: lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found" msgid "No user with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:245 #: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/member.ex:80
#: lib/graphql/resolvers/member.ex:80 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 #: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:155 lib/graphql/resolvers/person.ex:189
#: lib/graphql/resolvers/person.ex:191 lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288 #: lib/graphql/resolvers/person.ex:255 lib/graphql/resolvers/person.ex:284 lib/graphql/resolvers/person.ex:297
#: lib/graphql/resolvers/person.ex:301 lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110 #: lib/graphql/resolvers/picture.ex:72 lib/graphql/resolvers/report.ex:107 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:57
msgid "Profile is not owned by authenticated user" msgid "Profile is not owned by authenticated user"
msgstr "" msgstr ""
@ -228,22 +227,22 @@ msgid "User requested is not logged-in"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:254 #: lib/graphql/resolvers/group.ex:235
msgid "You are already a member of this group" msgid "You are already a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:287 #: lib/graphql/resolvers/group.ex:268
msgid "You can't leave this group because you are the only administrator" msgid "You can't leave this group because you are the only administrator"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:251 #: lib/graphql/resolvers/group.ex:232
msgid "You cannot join this group" msgid "You cannot join this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:97 #: lib/graphql/resolvers/group.ex:94
msgid "You may not list groups unless moderator." msgid "You may not list groups unless moderator."
msgstr "" msgstr ""
@ -258,7 +257,7 @@ msgid "You need to be logged-in to change your password"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:212 #: lib/graphql/resolvers/group.ex:210
msgid "You need to be logged-in to delete a group" msgid "You need to be logged-in to delete a group"
msgstr "" msgstr ""
@ -268,17 +267,17 @@ msgid "You need to be logged-in to delete your account"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:259 #: lib/graphql/resolvers/group.ex:240
msgid "You need to be logged-in to join a group" msgid "You need to be logged-in to join a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:292 #: lib/graphql/resolvers/group.ex:273
msgid "You need to be logged-in to leave a group" msgid "You need to be logged-in to leave a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:177 #: lib/graphql/resolvers/group.ex:175
msgid "You need to be logged-in to update a group" msgid "You need to be logged-in to update a group"
msgstr "" msgstr ""
@ -338,22 +337,22 @@ msgid "Profile already suspended"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:96 #: lib/graphql/resolvers/participant.ex:93
msgid "A valid email is required by your instance" msgid "A valid email is required by your instance"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:90 #: lib/graphql/resolvers/participant.ex:87
msgid "Anonymous participation is not enabled" msgid "Anonymous participation is not enabled"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:188 #: lib/graphql/resolvers/person.ex:186
msgid "Cannot remove the last administrator of a group" msgid "Cannot remove the last administrator of a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:185 #: lib/graphql/resolvers/person.ex:183
msgid "Cannot remove the last identity of a user" msgid "Cannot remove the last identity of a user"
msgstr "" msgstr ""
@ -368,17 +367,17 @@ msgid "Discussion not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87 #: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
msgid "Error while saving report" msgid "Error while saving report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:113 #: lib/graphql/resolvers/report.ex:110
msgid "Error while updating report" msgid "Error while updating report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:131 #: lib/graphql/resolvers/participant.ex:128
msgid "Event id not found" msgid "Event id not found"
msgstr "" msgstr ""
@ -389,23 +388,23 @@ msgid "Event not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:87 #: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160 #: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
msgid "Event with this ID %{id} doesn't exist" msgid "Event with this ID %{id} doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:103 #: lib/graphql/resolvers/participant.ex:100
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234 #: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
msgid "Moderator profile is not owned by authenticated user" msgid "Moderator profile is not owned by authenticated user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:181 #: lib/graphql/resolvers/discussion.ex:184
msgid "No discussion with ID %{id}" msgid "No discussion with ID %{id}"
msgstr "" msgstr ""
@ -415,7 +414,7 @@ msgid "No profile found for user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66 #: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token" msgid "No such feed token"
msgstr "" msgstr ""
@ -425,14 +424,14 @@ msgid "Organizer profile is not owned by the user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:244 #: lib/graphql/resolvers/participant.ex:241
msgid "Participant already has role %{role}" msgid "Participant already has role %{role}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:173 #: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237 #: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:234
#: lib/graphql/resolvers/participant.ex:247 #: lib/graphql/resolvers/participant.ex:244
msgid "Participant not found" msgid "Participant not found"
msgstr "" msgstr ""
@ -447,7 +446,7 @@ msgid "Person with username %{username} not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:45 #: lib/graphql/resolvers/picture.ex:42
msgid "Picture with ID %{id} was not found" msgid "Picture with ID %{id} was not found"
msgstr "" msgstr ""
@ -481,12 +480,12 @@ msgid "Profile is not member of group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182 #: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
msgid "Profile not found" msgid "Profile not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241 #: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
msgid "Provided moderator profile doesn't have permission on this event" msgid "Provided moderator profile doesn't have permission on this event"
msgstr "" msgstr ""
@ -501,12 +500,12 @@ msgid "Resource doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:124 #: lib/graphql/resolvers/participant.ex:121
msgid "The event has already reached its maximum capacity" msgid "The event has already reached its maximum capacity"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:267 #: lib/graphql/resolvers/participant.ex:264
msgid "This token is invalid" msgid "This token is invalid"
msgstr "" msgstr ""
@ -522,32 +521,32 @@ msgid "Todo list doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72 #: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist" msgid "Token does not exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69 #: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID" msgid "Token is not a valid UUID"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323 #: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
msgid "User not found" msgid "User not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:235 #: lib/graphql/resolvers/person.ex:234
msgid "You already have a profile for this user" msgid "You already have a profile for this user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:134 #: lib/graphql/resolvers/participant.ex:131
msgid "You are already a participant of this event" msgid "You are already a participant of this event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:185 #: lib/graphql/resolvers/discussion.ex:188
msgid "You are not a member of the group the discussion belongs to" msgid "You are not a member of the group the discussion belongs to"
msgstr "" msgstr ""
@ -567,7 +566,7 @@ msgid "You are not allowed to create a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:44 #: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected" msgid "You are not allowed to create a feed token if not connected"
msgstr "" msgstr ""
@ -577,7 +576,7 @@ msgid "You are not allowed to delete a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:81 #: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected" msgid "You are not allowed to delete a feed token if not connected"
msgstr "" msgstr ""
@ -587,8 +586,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:167 #: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:196 #: lib/graphql/resolvers/participant.ex:193
msgid "You can't leave event because you're the only event creator participant" msgid "You can't leave event because you're the only event creator participant"
msgstr "" msgstr ""
@ -613,7 +612,7 @@ msgid "You cannot invite to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:75 #: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token" msgid "You don't have permission to delete this token"
msgstr "" msgstr ""
@ -628,7 +627,7 @@ msgid "You need to be logged-in and a moderator to list reports"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:118 #: lib/graphql/resolvers/report.ex:115
msgid "You need to be logged-in and a moderator to update a report" msgid "You need to be logged-in and a moderator to update a report"
msgstr "" msgstr ""
@ -638,17 +637,17 @@ msgid "You need to be logged-in and a moderator to view a report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:220 #: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings" msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:205 #: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics" msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:244 #: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings" msgid "You need to be logged-in and an administrator to save admin settings"
msgstr "" msgstr ""
@ -673,7 +672,7 @@ msgid "You need to be logged-in to create posts"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92 #: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
msgid "You need to be logged-in to create reports" msgid "You need to be logged-in to create reports"
msgstr "" msgstr ""
@ -698,12 +697,12 @@ msgid "You need to be logged-in to delete resources"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:108 #: lib/graphql/resolvers/participant.ex:105
msgid "You need to be logged-in to join an event" msgid "You need to be logged-in to join an event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:207 #: lib/graphql/resolvers/participant.ex:204
msgid "You need to be logged-in to leave an event" msgid "You need to be logged-in to leave an event"
msgstr "" msgstr ""
@ -728,12 +727,12 @@ msgid "You need to be logged-in to view a resource preview"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:86 #: lib/graphql/resolvers/picture.ex:83
msgid "You need to login to upload a picture" msgid "You need to login to upload a picture"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:84 #: lib/graphql/resolvers/report.ex:81
msgid "Reporter ID does not match the anonymous profile id" msgid "Reporter ID does not match the anonymous profile id"
msgstr "" msgstr ""
@ -748,7 +747,7 @@ msgid "Parent resource doesn't belong to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:93 #: lib/graphql/resolvers/participant.ex:90
msgid "Profile ID provided is not the anonymous profile one" msgid "Profile ID provided is not the anonymous profile one"
msgstr "" msgstr ""
@ -823,12 +822,12 @@ msgid "You can't reject this invitation with this profile."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:78 #: lib/graphql/resolvers/picture.ex:75
msgid "File doesn't have an allowed MIME type." msgid "File doesn't have an allowed MIME type."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:172 #: lib/graphql/resolvers/group.ex:170
msgid "Profile is not administrator for the group" msgid "Profile is not administrator for the group"
msgstr "" msgstr ""
@ -856,3 +855,8 @@ msgstr ""
#: lib/graphql/resolvers/member.ex:189 #: lib/graphql/resolvers/member.ex:189
msgid "You don't have the right to remove this member." msgid "You don't have the right to remove this member."
msgstr "" msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
msgid "This username is already taken."
msgstr ""

View File

@ -124,17 +124,17 @@ msgstr ""
"du strunta i det här meddelandet." "du strunta i det här meddelandet."
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:113 #: lib/web/email/participation.ex:112
msgid "Your participation to event %{title} has been approved" msgid "Your participation to event %{title} has been approved"
msgstr "Din förfrågan om att få delta i evenemanget %{title} har godkännts" msgstr "Din förfrågan om att få delta i evenemanget %{title} har godkännts"
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:71 #: lib/web/email/participation.ex:70
msgid "Your participation to event %{title} has been rejected" msgid "Your participation to event %{title} has been rejected"
msgstr "Din förfrågan om att få delta i evenemanget %{title} har fått avslag" msgstr "Din förfrågan om att få delta i evenemanget %{title} har fått avslag"
#, elixir-format #, elixir-format
#: lib/web/email/event.ex:36 #: lib/web/email/event.ex:37
msgid "Event %{title} has been updated" msgid "Event %{title} has been updated"
msgstr "Evenemanget %{title} har uppdaterats" msgstr "Evenemanget %{title} har uppdaterats"
@ -154,7 +154,7 @@ msgid "Warning"
msgstr "Varning" msgstr "Varning"
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:135 #: lib/web/email/participation.ex:134
msgid "Confirm your participation to event %{title}" msgid "Confirm your participation to event %{title}"
msgstr "" msgstr ""
@ -410,14 +410,14 @@ msgstr[1] ""
#, elixir-format #, elixir-format
#: lib/web/templates/email/notification_each_week.html.eex:38 #: lib/web/templates/email/notification_each_week.html.eex:38
#: lib/web/templates/email/notification_each_week.text.eex:4 #: lib/web/templates/email/notification_each_week.text.eex:3
msgid "You have one event this week:" msgid "You have one event this week:"
msgid_plural "You have %{total} events this week:" msgid_plural "You have %{total} events this week:"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#, elixir-format #, elixir-format
#: lib/service/metadata/utils.ex:27 #: lib/service/metadata/utils.ex:52
msgid "The event organizer didn't add any description." msgid "The event organizer didn't add any description."
msgstr "" msgstr ""
@ -774,7 +774,7 @@ msgstr ""
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 #: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133 #: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:11 lib/web/templates/email/on_day_notification.html.eex:70
#: lib/web/templates/email/on_day_notification.text.eex:14 #: lib/web/templates/email/on_day_notification.text.eex:14
msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button." msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button."
msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button." msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button."
@ -1257,7 +1257,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
msgstr "Du har bett om att få delta i evenemanget <b>%{title}</b>." msgstr "Du har bett om att få delta i evenemanget <b>%{title}</b>."
#, elixir-format #, elixir-format
#: lib/web/email/participation.ex:92 #: lib/web/email/participation.ex:91
msgid "Your participation to event %{title} has been confirmed" msgid "Your participation to event %{title} has been confirmed"
msgstr "Din förfrågan om att få delta i evenemanget %{title} har godkännts" msgstr "Din förfrågan om att få delta i evenemanget %{title} har godkännts"
@ -1386,7 +1386,7 @@ msgstr ""
msgid "We're sorry, but something went wrong on our end." msgid "We're sorry, but something went wrong on our end."
msgstr "" msgstr ""
#, elixir-format, fuzzy #, elixir-format
#: lib/web/templates/email/email.html.eex:88 #: lib/web/templates/email/email.html.eex:88
#: lib/web/templates/email/email.text.eex:4 #: lib/web/templates/email/email.text.eex:4
msgid "This is a demonstration site to test Mobilizon." msgid "This is a demonstration site to test Mobilizon."

View File

@ -99,17 +99,17 @@ msgid "Cannot refresh the token"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:139 #: lib/graphql/resolvers/group.ex:137
msgid "Creator profile is not owned by the current user" msgid "Creator profile is not owned by the current user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:203 #: lib/graphql/resolvers/group.ex:201
msgid "Current profile is not a member of this group" msgid "Current profile is not a member of this group"
msgstr "Den nuvarande profilen är inte med i den här gruppen" msgstr "Den nuvarande profilen är inte med i den här gruppen"
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:207 #: lib/graphql/resolvers/group.ex:205
msgid "Current profile is not an administrator of the selected group" msgid "Current profile is not an administrator of the selected group"
msgstr "" msgstr ""
@ -119,13 +119,13 @@ msgid "Error while saving user settings"
msgstr "Ett fel uppstod när användarinställningarna skulle sparas" msgstr "Ett fel uppstod när användarinställningarna skulle sparas"
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200 #: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:198
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83 #: lib/graphql/resolvers/group.ex:229 lib/graphql/resolvers/group.ex:264 lib/graphql/resolvers/member.ex:83
msgid "Group not found" msgid "Group not found"
msgstr "Gruppen kunde inte hittas" msgstr "Gruppen kunde inte hittas"
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:69 #: lib/graphql/resolvers/group.ex:66
msgid "Group with ID %{id} not found" msgid "Group with ID %{id} not found"
msgstr "Gruppen med %{id} kunde inte hittas" msgstr "Gruppen med %{id} kunde inte hittas"
@ -135,7 +135,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:280 #: lib/graphql/resolvers/group.ex:261
msgid "Member not found" msgid "Member not found"
msgstr "" msgstr ""
@ -151,19 +151,18 @@ msgid "No user to validate with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76 #: lib/graphql/resolvers/person.ex:231 lib/graphql/resolvers/user.ex:76
#: lib/graphql/resolvers/user.ex:219 #: lib/graphql/resolvers/user.ex:219
msgid "No user with this email was found" msgid "No user with this email was found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112 #: lib/graphql/resolvers/comment.ex:50 lib/graphql/resolvers/comment.ex:112
#: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/group.ex:245 #: lib/graphql/resolvers/event.ex:286 lib/graphql/resolvers/feed_token.ex:28 lib/graphql/resolvers/member.ex:80
#: lib/graphql/resolvers/member.ex:80 lib/graphql/resolvers/participant.ex:29 #: lib/graphql/resolvers/participant.ex:29 lib/graphql/resolvers/participant.ex:160
#: lib/graphql/resolvers/participant.ex:163 lib/graphql/resolvers/participant.ex:192 lib/graphql/resolvers/person.ex:157 #: lib/graphql/resolvers/participant.ex:189 lib/graphql/resolvers/person.ex:155 lib/graphql/resolvers/person.ex:189
#: lib/graphql/resolvers/person.ex:191 lib/graphql/resolvers/person.ex:256 lib/graphql/resolvers/person.ex:288 #: lib/graphql/resolvers/person.ex:255 lib/graphql/resolvers/person.ex:284 lib/graphql/resolvers/person.ex:297
#: lib/graphql/resolvers/person.ex:301 lib/graphql/resolvers/picture.ex:75 lib/graphql/resolvers/report.ex:110 #: lib/graphql/resolvers/picture.ex:72 lib/graphql/resolvers/report.ex:107 lib/graphql/resolvers/todos.ex:57
#: lib/graphql/resolvers/todos.ex:57
msgid "Profile is not owned by authenticated user" msgid "Profile is not owned by authenticated user"
msgstr "" msgstr ""
@ -229,22 +228,22 @@ msgid "User requested is not logged-in"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:254 #: lib/graphql/resolvers/group.ex:235
msgid "You are already a member of this group" msgid "You are already a member of this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:287 #: lib/graphql/resolvers/group.ex:268
msgid "You can't leave this group because you are the only administrator" msgid "You can't leave this group because you are the only administrator"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:251 #: lib/graphql/resolvers/group.ex:232
msgid "You cannot join this group" msgid "You cannot join this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:97 #: lib/graphql/resolvers/group.ex:94
msgid "You may not list groups unless moderator." msgid "You may not list groups unless moderator."
msgstr "" msgstr ""
@ -259,7 +258,7 @@ msgid "You need to be logged-in to change your password"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:212 #: lib/graphql/resolvers/group.ex:210
msgid "You need to be logged-in to delete a group" msgid "You need to be logged-in to delete a group"
msgstr "" msgstr ""
@ -269,17 +268,17 @@ msgid "You need to be logged-in to delete your account"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:259 #: lib/graphql/resolvers/group.ex:240
msgid "You need to be logged-in to join a group" msgid "You need to be logged-in to join a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:292 #: lib/graphql/resolvers/group.ex:273
msgid "You need to be logged-in to leave a group" msgid "You need to be logged-in to leave a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:177 #: lib/graphql/resolvers/group.ex:175
msgid "You need to be logged-in to update a group" msgid "You need to be logged-in to update a group"
msgstr "" msgstr ""
@ -339,22 +338,22 @@ msgid "Profile already suspended"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:96 #: lib/graphql/resolvers/participant.ex:93
msgid "A valid email is required by your instance" msgid "A valid email is required by your instance"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:90 #: lib/graphql/resolvers/participant.ex:87
msgid "Anonymous participation is not enabled" msgid "Anonymous participation is not enabled"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:188 #: lib/graphql/resolvers/person.ex:186
msgid "Cannot remove the last administrator of a group" msgid "Cannot remove the last administrator of a group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:185 #: lib/graphql/resolvers/person.ex:183
msgid "Cannot remove the last identity of a user" msgid "Cannot remove the last identity of a user"
msgstr "" msgstr ""
@ -369,17 +368,17 @@ msgid "Discussion not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87 #: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
msgid "Error while saving report" msgid "Error while saving report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:113 #: lib/graphql/resolvers/report.ex:110
msgid "Error while updating report" msgid "Error while updating report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:131 #: lib/graphql/resolvers/participant.ex:128
msgid "Event id not found" msgid "Event id not found"
msgstr "" msgstr ""
@ -390,23 +389,23 @@ msgid "Event not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:87 #: lib/graphql/resolvers/participant.ex:84
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160 #: lib/graphql/resolvers/participant.ex:125 lib/graphql/resolvers/participant.ex:157
msgid "Event with this ID %{id} doesn't exist" msgid "Event with this ID %{id} doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:103 #: lib/graphql/resolvers/participant.ex:100
msgid "Internal Error" msgid "Internal Error"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234 #: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
msgid "Moderator profile is not owned by authenticated user" msgid "Moderator profile is not owned by authenticated user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:181 #: lib/graphql/resolvers/discussion.ex:184
msgid "No discussion with ID %{id}" msgid "No discussion with ID %{id}"
msgstr "" msgstr ""
@ -416,7 +415,7 @@ msgid "No profile found for user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:66 #: lib/graphql/resolvers/feed_token.ex:63
msgid "No such feed token" msgid "No such feed token"
msgstr "" msgstr ""
@ -426,14 +425,14 @@ msgid "Organizer profile is not owned by the user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:244 #: lib/graphql/resolvers/participant.ex:241
msgid "Participant already has role %{role}" msgid "Participant already has role %{role}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:173 #: lib/graphql/resolvers/participant.ex:170
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237 #: lib/graphql/resolvers/participant.ex:199 lib/graphql/resolvers/participant.ex:234
#: lib/graphql/resolvers/participant.ex:247 #: lib/graphql/resolvers/participant.ex:244
msgid "Participant not found" msgid "Participant not found"
msgstr "" msgstr ""
@ -448,7 +447,7 @@ msgid "Person with username %{username} not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:45 #: lib/graphql/resolvers/picture.ex:42
msgid "Picture with ID %{id} was not found" msgid "Picture with ID %{id} was not found"
msgstr "" msgstr ""
@ -482,12 +481,12 @@ msgid "Profile is not member of group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182 #: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
msgid "Profile not found" msgid "Profile not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241 #: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
msgid "Provided moderator profile doesn't have permission on this event" msgid "Provided moderator profile doesn't have permission on this event"
msgstr "" msgstr ""
@ -502,12 +501,12 @@ msgid "Resource doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:124 #: lib/graphql/resolvers/participant.ex:121
msgid "The event has already reached its maximum capacity" msgid "The event has already reached its maximum capacity"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:267 #: lib/graphql/resolvers/participant.ex:264
msgid "This token is invalid" msgid "This token is invalid"
msgstr "" msgstr ""
@ -523,32 +522,32 @@ msgid "Todo list doesn't exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:72 #: lib/graphql/resolvers/feed_token.ex:69
msgid "Token does not exist" msgid "Token does not exist"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:69 #: lib/graphql/resolvers/feed_token.ex:66
msgid "Token is not a valid UUID" msgid "Token is not a valid UUID"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323 #: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
msgid "User not found" msgid "User not found"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/person.ex:235 #: lib/graphql/resolvers/person.ex:234
msgid "You already have a profile for this user" msgid "You already have a profile for this user"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:134 #: lib/graphql/resolvers/participant.ex:131
msgid "You are already a participant of this event" msgid "You are already a participant of this event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/discussion.ex:185 #: lib/graphql/resolvers/discussion.ex:188
msgid "You are not a member of the group the discussion belongs to" msgid "You are not a member of the group the discussion belongs to"
msgstr "" msgstr ""
@ -568,7 +567,7 @@ msgid "You are not allowed to create a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:44 #: lib/graphql/resolvers/feed_token.ex:41
msgid "You are not allowed to create a feed token if not connected" msgid "You are not allowed to create a feed token if not connected"
msgstr "" msgstr ""
@ -578,7 +577,7 @@ msgid "You are not allowed to delete a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:81 #: lib/graphql/resolvers/feed_token.ex:78
msgid "You are not allowed to delete a feed token if not connected" msgid "You are not allowed to delete a feed token if not connected"
msgstr "" msgstr ""
@ -588,8 +587,8 @@ msgid "You are not allowed to update a comment if not connected"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:167 #: lib/graphql/resolvers/participant.ex:164
#: lib/graphql/resolvers/participant.ex:196 #: lib/graphql/resolvers/participant.ex:193
msgid "You can't leave event because you're the only event creator participant" msgid "You can't leave event because you're the only event creator participant"
msgstr "" msgstr ""
@ -614,7 +613,7 @@ msgid "You cannot invite to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/feed_token.ex:75 #: lib/graphql/resolvers/feed_token.ex:72
msgid "You don't have permission to delete this token" msgid "You don't have permission to delete this token"
msgstr "" msgstr ""
@ -629,7 +628,7 @@ msgid "You need to be logged-in and a moderator to list reports"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:118 #: lib/graphql/resolvers/report.ex:115
msgid "You need to be logged-in and a moderator to update a report" msgid "You need to be logged-in and a moderator to update a report"
msgstr "" msgstr ""
@ -639,17 +638,17 @@ msgid "You need to be logged-in and a moderator to view a report"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:220 #: lib/graphql/resolvers/admin.ex:236
msgid "You need to be logged-in and an administrator to access admin settings" msgid "You need to be logged-in and an administrator to access admin settings"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:205 #: lib/graphql/resolvers/admin.ex:221
msgid "You need to be logged-in and an administrator to access dashboard statistics" msgid "You need to be logged-in and an administrator to access dashboard statistics"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/admin.ex:244 #: lib/graphql/resolvers/admin.ex:260
msgid "You need to be logged-in and an administrator to save admin settings" msgid "You need to be logged-in and an administrator to save admin settings"
msgstr "" msgstr ""
@ -674,7 +673,7 @@ msgid "You need to be logged-in to create posts"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92 #: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
msgid "You need to be logged-in to create reports" msgid "You need to be logged-in to create reports"
msgstr "" msgstr ""
@ -699,12 +698,12 @@ msgid "You need to be logged-in to delete resources"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:108 #: lib/graphql/resolvers/participant.ex:105
msgid "You need to be logged-in to join an event" msgid "You need to be logged-in to join an event"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:207 #: lib/graphql/resolvers/participant.ex:204
msgid "You need to be logged-in to leave an event" msgid "You need to be logged-in to leave an event"
msgstr "" msgstr ""
@ -729,12 +728,12 @@ msgid "You need to be logged-in to view a resource preview"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:86 #: lib/graphql/resolvers/picture.ex:83
msgid "You need to login to upload a picture" msgid "You need to login to upload a picture"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/report.ex:84 #: lib/graphql/resolvers/report.ex:81
msgid "Reporter ID does not match the anonymous profile id" msgid "Reporter ID does not match the anonymous profile id"
msgstr "" msgstr ""
@ -749,7 +748,7 @@ msgid "Parent resource doesn't belong to this group"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/participant.ex:93 #: lib/graphql/resolvers/participant.ex:90
msgid "Profile ID provided is not the anonymous profile one" msgid "Profile ID provided is not the anonymous profile one"
msgstr "" msgstr ""
@ -824,12 +823,12 @@ msgid "You can't reject this invitation with this profile."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/picture.ex:78 #: lib/graphql/resolvers/picture.ex:75
msgid "File doesn't have an allowed MIME type." msgid "File doesn't have an allowed MIME type."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/graphql/resolvers/group.ex:172 #: lib/graphql/resolvers/group.ex:170
msgid "Profile is not administrator for the group" msgid "Profile is not administrator for the group"
msgstr "" msgstr ""
@ -857,3 +856,8 @@ msgstr ""
#: lib/graphql/resolvers/member.ex:189 #: lib/graphql/resolvers/member.ex:189
msgid "You don't have the right to remove this member." msgid "You don't have the right to remove this member."
msgstr "" msgstr ""
#, elixir-format
#: lib/mobilizon/actors/actor.ex:344
msgid "This username is already taken."
msgstr ""

View File

@ -16,6 +16,67 @@ defmodule Mobilizon.GraphQL.Resolvers.UserTest do
alias Mobilizon.Web.Email alias Mobilizon.Web.Email
@get_user_query """
query GetUser($id: ID!) {
user(id: $id) {
id
email
}
}
"""
@logged_user_query """
query LoggedUser {
loggedUser {
id
email
}
}
"""
@list_users_query """
query ListUsers($page: Int, $limit: Int, $sort: SortableUserField, $direction: SortDirection) {
users(page: $page, limit: $limit, sort: $sort, direction: $direction) {
total,
elements {
email
}
}
}
"""
@create_user_mutation """
mutation CreateUser($email: String!, $password: String!, $locale: String) {
createUser(
email: $email
password: $password
locale: $locale
) {
id,
email,
locale
}
}
"""
@register_person_mutation """
mutation RegisterPerson($preferredUsername: String!, $name: String, $summary: String, $email: String!) {
registerPerson(
preferredUsername: $preferredUsername,
name: $name,
summary: $summary,
email: $email,
) {
preferredUsername,
name,
summary,
avatar {
url
},
}
}
"""
@change_email_mutation """ @change_email_mutation """
mutation ChangeEmail($email: String!, $password: String!) { mutation ChangeEmail($email: String!, $password: String!) {
changeEmail(email: $email, password: $password) { changeEmail(email: $email, password: $password) {
@ -68,201 +129,129 @@ defmodule Mobilizon.GraphQL.Resolvers.UserTest do
user = insert(:user) user = insert(:user)
modo = insert(:user, role: :moderator) modo = insert(:user, role: :moderator)
query = """ res =
{ conn
user(id: "#{user.id}") { |> auth_conn(modo)
email, |> AbsintheHelpers.graphql_query(
} query: @get_user_query,
} variables: %{id: user.id}
""" )
assert res["data"]["user"]["email"] == user.email
res = res =
conn conn
|> auth_conn(modo) |> auth_conn(modo)
|> get("/api", AbsintheHelpers.query_skeleton(query, "user")) |> AbsintheHelpers.graphql_query(
query: @get_user_query,
variables: %{id: 0}
)
assert json_response(res, 200)["data"]["user"]["email"] == user.email assert res["data"]["user"] == nil
assert hd(res["errors"])["message"] == "User with ID #{0} not found"
query = """
{
user(id: "#{0}") {
email,
}
}
"""
res =
conn
|> auth_conn(modo)
|> get("/api", AbsintheHelpers.query_skeleton(query, "user"))
assert json_response(res, 200)["data"]["user"] == nil
assert hd(json_response(res, 200)["errors"])["message"] == "User with ID #{0} not found"
end end
test "get_current_user/3 returns the current logged-in user", context do test "get_current_user/3 returns the current logged-in user", %{conn: conn} do
user = insert(:user) user = insert(:user)
query = """
{
loggedUser {
id
}
}
"""
res = res =
context.conn conn
|> get("/api", AbsintheHelpers.query_skeleton(query, "logged_user")) |> AbsintheHelpers.graphql_query(
query: @logged_user_query,
variables: %{}
)
assert json_response(res, 200)["data"]["loggedUser"] == nil assert res["data"]["loggedUser"] == nil
assert hd(json_response(res, 200)["errors"])["message"] == assert hd(res["errors"])["message"] ==
"You need to be logged-in to view current user" "You need to be logged-in to view current user"
res = res =
context.conn conn
|> auth_conn(user) |> auth_conn(user)
|> get("/api", AbsintheHelpers.query_skeleton(query, "logged_user")) |> AbsintheHelpers.graphql_query(
query: @logged_user_query,
variables: %{}
)
assert json_response(res, 200)["data"]["loggedUser"]["id"] == to_string(user.id) assert res["data"]["loggedUser"]["id"] == to_string(user.id)
end end
end end
describe "Resolver: List users" do describe "Resolver: List users" do
test "list_users/3 doesn't return anything with a non moderator user", context do test "list_users/3 doesn't return anything with a non moderator user", %{conn: conn} do
insert(:user, email: "riri@example.com", role: :moderator) insert(:user, email: "riri@example.com", role: :moderator)
user = insert(:user, email: "fifi@example.com") user = insert(:user, email: "fifi@example.com")
insert(:user, email: "loulou@example.com", role: :administrator) insert(:user, email: "loulou@example.com", role: :administrator)
query = """
{
users {
total,
elements {
email
}
}
}
"""
res = res =
context.conn conn
|> auth_conn(user) |> auth_conn(user)
|> get("/api", AbsintheHelpers.query_skeleton(query, "user")) |> AbsintheHelpers.graphql_query(
query: @list_users_query,
variables: %{}
)
assert hd(json_response(res, 200)["errors"])["message"] == assert hd(res["errors"])["message"] ==
"You need to have admin access to list users" "You need to have admin access to list users"
end end
test "list_users/3 returns a list of users", context do test "list_users/3 returns a list of users", %{conn: conn} do
user = insert(:user, email: "riri@example.com", role: :moderator) user = insert(:user, email: "riri@example.com", role: :moderator)
insert(:user, email: "fifi@example.com") insert(:user, email: "fifi@example.com")
insert(:user, email: "loulou@example.com") insert(:user, email: "loulou@example.com")
query = """
{
users {
total,
elements {
email
}
}
}
"""
res = res =
context.conn conn
|> auth_conn(user) |> auth_conn(user)
|> get("/api", AbsintheHelpers.query_skeleton(query, "user")) |> AbsintheHelpers.graphql_query(
query: @list_users_query,
variables: %{}
)
assert json_response(res, 200)["errors"] == nil assert res["errors"] == nil
assert json_response(res, 200)["data"]["users"]["total"] == 3 assert res["data"]["users"]["total"] == 3
assert json_response(res, 200)["data"]["users"]["elements"] |> length == 3 assert res["data"]["users"]["elements"] |> length == 3
assert json_response(res, 200)["data"]["users"]["elements"] assert res["data"]["users"]["elements"]
|> Enum.map(& &1["email"]) == [ |> Enum.map(& &1["email"]) == [
"loulou@example.com", "loulou@example.com",
"fifi@example.com", "fifi@example.com",
"riri@example.com" "riri@example.com"
] ]
query = """
{
users(page: 2, limit: 1) {
total,
elements {
email
}
}
}
"""
res = res =
context.conn conn
|> auth_conn(user) |> auth_conn(user)
|> get("/api", AbsintheHelpers.query_skeleton(query, "user")) |> AbsintheHelpers.graphql_query(
query: @list_users_query,
variables: %{page: 2, limit: 1}
)
assert json_response(res, 200)["errors"] == nil assert res["errors"] == nil
assert json_response(res, 200)["data"]["users"]["total"] == 3 assert res["data"]["users"]["total"] == 3
assert json_response(res, 200)["data"]["users"]["elements"] |> length == 1 assert res["data"]["users"]["elements"] |> length == 1
assert json_response(res, 200)["data"]["users"]["elements"] |> Enum.map(& &1["email"]) == [ assert res["data"]["users"]["elements"] |> Enum.map(& &1["email"]) == [
"fifi@example.com" "fifi@example.com"
] ]
query = """
{
users(page: 3, limit: 1, sort: ID, direction: DESC) {
total,
elements {
email
}
}
}
"""
res = res =
context.conn conn
|> auth_conn(user) |> auth_conn(user)
|> get("/api", AbsintheHelpers.query_skeleton(query, "user")) |> AbsintheHelpers.graphql_query(
query: @list_users_query,
variables: %{page: 3, limit: 1, sort: "ID", direction: "DESC"}
)
assert json_response(res, 200)["errors"] == nil assert res["errors"] == nil
assert json_response(res, 200)["data"]["users"]["total"] == 3 assert res["data"]["users"]["total"] == 3
assert json_response(res, 200)["data"]["users"]["elements"] |> length == 1 assert res["data"]["users"]["elements"] |> length == 1
assert json_response(res, 200)["data"]["users"]["elements"] |> Enum.map(& &1["email"]) == [ assert res["data"]["users"]["elements"] |> Enum.map(& &1["email"]) == [
"riri@example.com" "riri@example.com"
] ]
end end
test "get_current_user/3 returns the current logged-in user", context do
user = insert(:user)
query = """
{
loggedUser {
id
}
}
"""
res =
context.conn
|> get("/api", AbsintheHelpers.query_skeleton(query, "logged_user"))
assert json_response(res, 200)["data"]["loggedUser"] == nil
assert hd(json_response(res, 200)["errors"])["message"] ==
"You need to be logged-in to view current user"
res =
context.conn
|> auth_conn(user)
|> get("/api", AbsintheHelpers.query_skeleton(query, "logged_user"))
assert json_response(res, 200)["data"]["loggedUser"]["id"] == to_string(user.id)
end
end end
describe "Resolver: Create an user & actor" do describe "Resolver: Create an user & actor" do
@ -270,7 +259,7 @@ defmodule Mobilizon.GraphQL.Resolvers.UserTest do
email: "test@demo.tld", email: "test@demo.tld",
password: "long password", password: "long password",
locale: "fr_FR", locale: "fr_FR",
username: "toto", preferredUsername: "toto",
name: "Sir Toto", name: "Sir Toto",
summary: "Sir Toto, prince of the functional tests" summary: "Sir Toto, prince of the functional tests"
} }
@ -280,117 +269,61 @@ defmodule Mobilizon.GraphQL.Resolvers.UserTest do
} }
test "test create_user/3 creates an user and register_person/3 registers a profile", test "test create_user/3 creates an user and register_person/3 registers a profile",
context do %{conn: conn} do
mutation = """
mutation {
createUser(
email: "#{@user_creation.email}",
password: "#{@user_creation.password}",
locale: "#{@user_creation.locale}"
) {
id,
email,
locale
}
}
"""
res = res =
context.conn conn
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation)) |> AbsintheHelpers.graphql_query(
query: @create_user_mutation,
variables: @user_creation
)
assert json_response(res, 200)["data"]["createUser"]["email"] == @user_creation.email assert res["data"]["createUser"]["email"] == @user_creation.email
assert json_response(res, 200)["data"]["createUser"]["locale"] == @user_creation.locale assert res["data"]["createUser"]["locale"] == @user_creation.locale
{:ok, user} = Users.get_user_by_email(@user_creation.email) {:ok, user} = Users.get_user_by_email(@user_creation.email)
assert_delivered_email(Email.User.confirmation_email(user, @user_creation.locale)) assert_delivered_email(Email.User.confirmation_email(user, @user_creation.locale))
mutation = """
mutation {
registerPerson(
preferredUsername: "#{@user_creation.username}",
name: "#{@user_creation.name}",
summary: "#{@user_creation.summary}",
email: "#{@user_creation.email}",
) {
preferredUsername,
name,
summary,
avatar {
url
},
}
}
"""
res = res =
context.conn conn
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation)) |> AbsintheHelpers.graphql_query(
query: @register_person_mutation,
variables: @user_creation
)
assert json_response(res, 200)["data"]["registerPerson"]["preferredUsername"] == assert res["data"]["registerPerson"]["preferredUsername"] ==
@user_creation.username @user_creation.preferredUsername
end end
test "create_user/3 doesn't allow two users with the same email", %{conn: conn} do test "create_user/3 doesn't allow two users with the same email", %{conn: conn} do
mutation = """ res =
mutation { conn
createUser( |> AbsintheHelpers.graphql_query(
email: "#{@user_creation.email}", query: @create_user_mutation,
password: "#{@user_creation.password}", variables: @user_creation
) { )
id,
email assert res["data"]["createUser"]["email"] == @user_creation.email
}
}
"""
res = res =
conn conn
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation)) |> AbsintheHelpers.graphql_query(
query: @create_user_mutation,
variables: @user_creation
)
assert json_response(res, 200)["data"]["createUser"]["email"] == @user_creation.email assert hd(res["errors"])["message"] == ["Cette adresse e-mail est déjà utilisée."]
mutation = """
mutation {
createUser(
email: "#{@user_creation.email}",
password: "#{@user_creation.password}",
) {
id,
email
}
}
"""
res =
conn
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation))
assert hd(json_response(res, 200)["errors"])["message"] == ["This email is already used."]
end end
test "create_user/3 doesn't allow registration when registration is closed", %{conn: conn} do test "create_user/3 doesn't allow registration when registration is closed", %{conn: conn} do
Config.put([:instance, :registrations_open], false) Config.put([:instance, :registrations_open], false)
Config.put([:instance, :registration_email_allowlist], []) Config.put([:instance, :registration_email_allowlist], [])
mutation = """
mutation createUser($email: String!, $password: String!) {
createUser(
email: $email,
password: $password,
) {
id,
email
}
}
"""
res = res =
conn conn
|> AbsintheHelpers.graphql_query( |> AbsintheHelpers.graphql_query(
query: mutation, query: @create_user_mutation,
variables: %{email: @user_creation.email, password: @user_creation.password} variables: @user_creation
) )
assert hd(res["errors"])["message"] == "Registrations are not open" assert hd(res["errors"])["message"] == "Registrations are not open"
@ -403,23 +336,11 @@ defmodule Mobilizon.GraphQL.Resolvers.UserTest do
Config.put([:instance, :registrations_open], false) Config.put([:instance, :registrations_open], false)
Config.put([:instance, :registration_email_allowlist], ["random.org"]) Config.put([:instance, :registration_email_allowlist], ["random.org"])
mutation = """
mutation createUser($email: String!, $password: String!) {
createUser(
email: $email,
password: $password,
) {
id,
email
}
}
"""
res = res =
conn conn
|> AbsintheHelpers.graphql_query( |> AbsintheHelpers.graphql_query(
query: mutation, query: @create_user_mutation,
variables: %{email: @user_creation.email, password: @user_creation.password} variables: @user_creation
) )
assert hd(res["errors"])["message"] == "Your email is not on the allowlist" assert hd(res["errors"])["message"] == "Your email is not on the allowlist"
@ -433,23 +354,11 @@ defmodule Mobilizon.GraphQL.Resolvers.UserTest do
Config.put([:instance, :registrations_open], false) Config.put([:instance, :registrations_open], false)
Config.put([:instance, :registration_email_allowlist], ["demo.tld"]) Config.put([:instance, :registration_email_allowlist], ["demo.tld"])
mutation = """
mutation createUser($email: String!, $password: String!) {
createUser(
email: $email,
password: $password,
) {
id,
email
}
}
"""
res = res =
conn conn
|> AbsintheHelpers.graphql_query( |> AbsintheHelpers.graphql_query(
query: mutation, query: @create_user_mutation,
variables: %{email: @user_creation.email, password: @user_creation.password} variables: @user_creation
) )
refute res["errors"] refute res["errors"]
@ -462,23 +371,11 @@ defmodule Mobilizon.GraphQL.Resolvers.UserTest do
Config.put([:instance, :registrations_open], false) Config.put([:instance, :registrations_open], false)
Config.put([:instance, :registration_email_allowlist], [@user_creation.email]) Config.put([:instance, :registration_email_allowlist], [@user_creation.email])
mutation = """
mutation createUser($email: String!, $password: String!) {
createUser(
email: $email,
password: $password,
) {
id,
email
}
}
"""
res = res =
conn conn
|> AbsintheHelpers.graphql_query( |> AbsintheHelpers.graphql_query(
query: mutation, query: @create_user_mutation,
variables: %{email: @user_creation.email, password: @user_creation.password} variables: @user_creation
) )
refute res["errors"] refute res["errors"]
@ -487,133 +384,83 @@ defmodule Mobilizon.GraphQL.Resolvers.UserTest do
Config.put([:instance, :registration_email_allowlist], []) Config.put([:instance, :registration_email_allowlist], [])
end end
test "register_person/3 doesn't register a profile from an unknown email", context do test "register_person/3 doesn't register a profile from an unknown email", %{conn: conn} do
mutation = """ conn
mutation { |> AbsintheHelpers.graphql_query(
createUser( query: @create_user_mutation,
email: "#{@user_creation.email}", variables: @user_creation
password: "#{@user_creation.password}", )
) {
id,
email
}
}
"""
context.conn
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation))
mutation = """
mutation {
registerPerson(
preferredUsername: "#{@user_creation.username}",
name: "#{@user_creation.name}",
summary: "#{@user_creation.summary}",
email: "random",
) {
preferredUsername,
name,
summary,
avatar {
url
},
}
}
"""
res = res =
context.conn conn
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation)) |> AbsintheHelpers.graphql_query(
query: @register_person_mutation,
variables: Map.put(@user_creation, :email, "random")
)
assert hd(json_response(res, 200)["errors"])["message"] == assert hd(res["errors"])["message"] ==
"No user with this email was found" "Aucun·e utilisateur·ice avec cette adresse e-mail n'a été trouvé·e"
end end
test "register_person/3 can't be called with an existing profile", context do test "register_person/3 can't be called with an existing profile", %{conn: conn} do
mutation = """ conn
mutation { |> AbsintheHelpers.graphql_query(
createUser( query: @create_user_mutation,
email: "#{@user_creation.email}", variables: @user_creation
password: "#{@user_creation.password}", )
) {
id,
email
}
}
"""
context.conn
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation))
mutation = """
mutation {
registerPerson(
preferredUsername: "#{@user_creation.username}",
name: "#{@user_creation.name}",
summary: "#{@user_creation.summary}",
email: "#{@user_creation.email}",
) {
preferredUsername,
name,
summary,
avatar {
url
},
}
}
"""
res = res =
context.conn conn
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation)) |> AbsintheHelpers.graphql_query(
query: @register_person_mutation,
variables: @user_creation
)
assert json_response(res, 200)["data"]["registerPerson"]["preferredUsername"] == assert res["data"]["registerPerson"]["preferredUsername"] ==
@user_creation.username @user_creation.preferredUsername
mutation = """
mutation {
registerPerson(
preferredUsername: "#{@user_creation.username}",
name: "#{@user_creation.name}",
summary: "#{@user_creation.summary}",
email: "#{@user_creation.email}",
) {
preferredUsername,
name,
summary,
avatar {
url
},
}
}
"""
res = res =
context.conn conn
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation)) |> AbsintheHelpers.graphql_query(
query: @register_person_mutation,
variables: @user_creation
)
assert hd(json_response(res, 200)["errors"])["message"] == assert hd(res["errors"])["message"] ==
"You already have a profile for this user" "Vous avez déjà un profil pour cet utilisateur"
end end
test "test create_user/3 doesn't create an user with bad email", context do test "register_person/3 is case insensitive", %{conn: conn} do
mutation = """ insert(:actor, preferred_username: "myactor")
mutation {
createUser( conn
email: "#{@user_creation_bad_email.email}", |> AbsintheHelpers.graphql_query(
password: "#{@user_creation_bad_email.password}", query: @create_user_mutation,
) { variables: @user_creation
id, )
email
}
}
"""
res = res =
context.conn conn
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation)) |> AbsintheHelpers.graphql_query(
query: @register_person_mutation,
variables: Map.put(@user_creation, :preferredUsername, "Myactor")
)
assert hd(json_response(res, 200)["errors"])["message"] == refute is_nil(res["errors"])
assert hd(res["errors"])["message"] ==
["Cet identifiant est déjà pris."]
end
test "test create_user/3 doesn't create an user with bad email", %{conn: conn} do
res =
conn
|> AbsintheHelpers.graphql_query(
query: @create_user_mutation,
variables: @user_creation_bad_email
)
assert hd(res["errors"])["message"] ==
["Email doesn't fit required format"] ["Email doesn't fit required format"]
end end
end end
@ -993,7 +840,7 @@ defmodule Mobilizon.GraphQL.Resolvers.UserTest do
user = insert(:user) user = insert(:user)
insert(:actor, user: user) insert(:actor, user: user)
assert {:ok, %User{actors: actors}} = Users.get_user_with_actors(user.id) assert {:ok, %User{actors: _actors}} = Users.get_user_with_actors(user.id)
actor_params = @valid_single_actor_params |> Map.put(:user_id, user.id) actor_params = @valid_single_actor_params |> Map.put(:user_id, user.id)
assert {:ok, %Actor{} = actor2} = Actors.create_actor(actor_params) assert {:ok, %Actor{} = actor2} = Actors.create_actor(actor_params)

View File

@ -435,8 +435,9 @@ defmodule Mobilizon.ActorsTest do
_actor = insert(:actor, preferred_username: @valid_attrs.preferred_username) _actor = insert(:actor, preferred_username: @valid_attrs.preferred_username)
assert {:error, :insert_group, assert {:error, :insert_group,
%Ecto.Changeset{errors: [preferred_username: {"Username is already taken", []}]}, %Ecto.Changeset{
%{}} = Actors.create_group(@valid_attrs) errors: [preferred_username: {"This username is already taken.", []}]
}, %{}} = Actors.create_group(@valid_attrs)
end end
test "create_group/1 with an existing group username fails" do test "create_group/1 with an existing group username fails" do
@ -445,8 +446,9 @@ defmodule Mobilizon.ActorsTest do
assert {:ok, %Actor{} = group} = Actors.create_group(attrs) assert {:ok, %Actor{} = group} = Actors.create_group(attrs)
assert {:error, :insert_group, assert {:error, :insert_group,
%Ecto.Changeset{errors: [preferred_username: {"Username is already taken", []}]}, %Ecto.Changeset{
%{}} = Actors.create_group(attrs) errors: [preferred_username: {"This username is already taken.", []}]
}, %{}} = Actors.create_group(attrs)
end end
test "create_group/1 with invalid data returns error changeset" do test "create_group/1 with invalid data returns error changeset" do