Merge branch 'fix-creating-usernames-with-uppercase' into 'master'
Forbid creating usernames with uppercase characters See merge request framasoft/mobilizon!715
This commit is contained in:
commit
fd87704f43
@ -231,7 +231,7 @@
|
||||
"On {date} starting at {startTime}": "On {date} starting at {startTime}",
|
||||
"On {date}": "On {date}",
|
||||
"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",
|
||||
"Opened reports": "Opened reports",
|
||||
"Or": "Or",
|
||||
|
@ -480,7 +480,7 @@
|
||||
"Only accessible through link": "Accessible uniquement par le lien",
|
||||
"Only accessible through link (private)": "Uniquement accessible par lien (privé)",
|
||||
"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.",
|
||||
"Open": "Ouvert",
|
||||
"Opened reports": "Signalements ouverts",
|
||||
|
@ -26,12 +26,21 @@
|
||||
:type="errors.preferred_username ? 'is-danger' : null"
|
||||
:message="errors.preferred_username"
|
||||
>
|
||||
<b-field>
|
||||
<b-field
|
||||
:message="
|
||||
$t('Only alphanumeric lowercased characters and underscores are supported.')
|
||||
"
|
||||
>
|
||||
<b-input
|
||||
aria-required="true"
|
||||
required
|
||||
expanded
|
||||
v-model="identity.preferredUsername"
|
||||
:validation-message="
|
||||
identity.preferredUsername
|
||||
? $t('Only alphanumeric lowercased characters and underscores are supported.')
|
||||
: null
|
||||
"
|
||||
/>
|
||||
<p class="control">
|
||||
<span class="button is-static">@{{ host }}</span>
|
||||
@ -164,7 +173,7 @@ export default class Register extends mixins(identityEditionMixin) {
|
||||
} catch (errorCatched) {
|
||||
this.errors = errorCatched.graphQLErrors.reduce(
|
||||
(acc: { [key: string]: string }, error: any) => {
|
||||
acc[error.details] = error.message;
|
||||
acc[error.details || error.field] = error.message;
|
||||
return acc;
|
||||
},
|
||||
{}
|
||||
|
@ -181,7 +181,9 @@ export default class EditIdentity extends mixins(identityEditionMixin) {
|
||||
|
||||
get message(): string | 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 {
|
||||
|
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<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">
|
||||
{{ value }}
|
||||
@ -14,8 +14,23 @@
|
||||
<div class="field">
|
||||
<label class="label">{{ $t("Federated Group Name") }}</label>
|
||||
<div class="field-body">
|
||||
<b-field>
|
||||
<b-input aria-required="true" required expanded v-model="group.preferredUsername" />
|
||||
<b-field
|
||||
: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">
|
||||
<span class="button is-static">@{{ host }}</span>
|
||||
</p>
|
||||
@ -36,12 +51,12 @@
|
||||
</b-field>
|
||||
|
||||
<div>
|
||||
{{ $t("Avatar") }}
|
||||
<b>{{ $t("Avatar") }}</b>
|
||||
<picture-upload :textFallback="$t('Avatar')" v-model="avatarFile" />
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{{ $t("Banner") }}
|
||||
<b>{{ $t("Banner") }}</b>
|
||||
<picture-upload :textFallback="$t('Banner')" v-model="bannerFile" />
|
||||
</div>
|
||||
|
||||
|
@ -95,7 +95,7 @@ describe("Login", () => {
|
||||
.find("textarea")
|
||||
.type("This shouln't work because it' using a dupublicated username");
|
||||
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").eq(1).type("Not");
|
||||
|
@ -123,6 +123,7 @@ defmodule Mobilizon.GraphQL.Resolvers.Group do
|
||||
) do
|
||||
with creator_actor_id <- Map.get(args, :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 <- save_attached_pictures(args),
|
||||
{:ok, _activity, %Actor{type: :Group} = group} <-
|
||||
|
@ -120,7 +120,8 @@ defmodule Mobilizon.GraphQL.Resolvers.Person do
|
||||
) do
|
||||
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, new_person}
|
||||
end
|
||||
@ -220,6 +221,7 @@ defmodule Mobilizon.GraphQL.Resolvers.Person do
|
||||
user_actor <- Users.get_actor_for_user(user),
|
||||
no_actor <- is_nil(user_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 <- save_attached_pictures(args),
|
||||
{:ok, %Actor{} = new_person} <- Actors.new_person(args, true) do
|
||||
|
@ -18,6 +18,7 @@ defmodule Mobilizon.Actors.Actor do
|
||||
|
||||
alias Mobilizon.Web.Endpoint
|
||||
alias Mobilizon.Web.Router.Helpers, as: Routes
|
||||
import Mobilizon.Web.Gettext, only: [dgettext: 2]
|
||||
|
||||
require Logger
|
||||
|
||||
@ -337,7 +338,11 @@ defmodule Mobilizon.Actors.Actor do
|
||||
) do
|
||||
with nil <- Map.get(changes, :domain, nil),
|
||||
%__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
|
||||
_ -> changeset
|
||||
end
|
||||
|
@ -115,17 +115,17 @@ msgid "You created an account on %{host} with this email address. You are one cl
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:113
|
||||
#: lib/web/email/participation.ex:112
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:71
|
||||
#: lib/web/email/participation.ex:70
|
||||
msgid "Your participation to event %{title} has been rejected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:36
|
||||
#: lib/web/email/event.ex:37
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "تم تحديث الفعالية %{title}"
|
||||
|
||||
@ -145,7 +145,7 @@ msgid "Warning"
|
||||
msgstr "تنبيه"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:135
|
||||
#: lib/web/email/participation.ex:134
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
||||
@ -417,7 +417,7 @@ msgstr[5] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/notification_each_week.html.eex:38
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:4
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:3
|
||||
msgid "You have one event this week:"
|
||||
msgid_plural "You have %{total} events this week:"
|
||||
msgstr[0] ""
|
||||
@ -428,7 +428,7 @@ msgstr[4] ""
|
||||
msgstr[5] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/service/metadata/utils.ex:27
|
||||
#: lib/service/metadata/utils.ex:52
|
||||
msgid "The event organizer didn't add any description."
|
||||
msgstr ""
|
||||
|
||||
@ -783,7 +783,7 @@ msgstr ""
|
||||
#: 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/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
|
||||
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."
|
||||
@ -1267,7 +1267,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
|
||||
msgstr "لقد قمتَ بتقديم طلب للمشاركة في فعالية %{title}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:92
|
||||
#: lib/web/email/participation.ex:91
|
||||
msgid "Your participation to event %{title} has been confirmed"
|
||||
msgstr ""
|
||||
|
||||
@ -1394,7 +1394,7 @@ msgstr ""
|
||||
msgid "We're sorry, but something went wrong on our end."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email.html.eex:88
|
||||
#: lib/web/templates/email/email.text.eex:4
|
||||
msgid "This is a demonstration site to test Mobilizon."
|
||||
|
@ -124,17 +124,17 @@ msgid "Cannot refresh the token"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -144,13 +144,13 @@ msgid "Error while saving user settings"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr ""
|
||||
|
||||
@ -160,7 +160,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr ""
|
||||
|
||||
@ -176,19 +176,18 @@ msgid "No user to validate with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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
|
||||
msgid "No user with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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/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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -254,22 +253,22 @@ msgid "User requested is not logged-in"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr ""
|
||||
|
||||
@ -284,7 +283,7 @@ msgid "You need to be logged-in to change your password"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -294,17 +293,17 @@ msgid "You need to be logged-in to delete your account"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -364,22 +363,22 @@ msgid "Profile already suspended"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr ""
|
||||
|
||||
@ -394,17 +393,17 @@ msgid "Discussion not found"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr ""
|
||||
|
||||
@ -415,23 +414,23 @@ msgid "Event not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr ""
|
||||
|
||||
@ -441,7 +440,7 @@ msgid "No profile found for user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr ""
|
||||
|
||||
@ -451,14 +450,14 @@ msgid "Organizer profile is not owned by the user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{role}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:173
|
||||
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237
|
||||
#: lib/graphql/resolvers/participant.ex:247
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -473,7 +472,7 @@ msgid "Person with username %{username} not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr ""
|
||||
|
||||
@ -507,12 +506,12 @@ msgid "Profile is not member of group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -527,12 +526,12 @@ msgid "Resource doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr ""
|
||||
|
||||
@ -548,32 +547,32 @@ msgid "Todo list doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -593,7 +592,7 @@ msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -603,7 +602,7 @@ msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -613,8 +612,8 @@ msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -639,7 +638,7 @@ msgid "You cannot invite to this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -654,7 +653,7 @@ msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -664,17 +663,17 @@ msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -699,7 +698,7 @@ msgid "You need to be logged-in to create posts"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -724,12 +723,12 @@ msgid "You need to be logged-in to delete resources"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -754,12 +753,12 @@ msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr ""
|
||||
|
||||
@ -774,7 +773,7 @@ msgid "Parent resource doesn't belong to this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr ""
|
||||
|
||||
@ -849,12 +848,12 @@ msgid "You can't reject this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr ""
|
||||
|
||||
@ -882,3 +881,8 @@ msgstr ""
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/actors/actor.ex:344
|
||||
msgid "This username is already taken."
|
||||
msgstr ""
|
||||
|
@ -112,17 +112,17 @@ msgid "You created an account on %{host} with this email address. You are one cl
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:113
|
||||
#: lib/web/email/participation.ex:112
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:71
|
||||
#: lib/web/email/participation.ex:70
|
||||
msgid "Your participation to event %{title} has been rejected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:36
|
||||
#: lib/web/email/event.ex:37
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr ""
|
||||
|
||||
@ -142,7 +142,7 @@ msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:135
|
||||
#: lib/web/email/participation.ex:134
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
||||
@ -402,7 +402,7 @@ msgstr[2] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/notification_each_week.html.eex:38
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:4
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:3
|
||||
msgid "You have one event this week:"
|
||||
msgid_plural "You have %{total} events this week:"
|
||||
msgstr[0] ""
|
||||
@ -410,7 +410,7 @@ msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/service/metadata/utils.ex:27
|
||||
#: lib/service/metadata/utils.ex:52
|
||||
msgid "The event organizer didn't add any description."
|
||||
msgstr ""
|
||||
|
||||
@ -765,7 +765,7 @@ msgstr ""
|
||||
#: 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/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
|
||||
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."
|
||||
@ -1243,7 +1243,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:92
|
||||
#: lib/web/email/participation.ex:91
|
||||
msgid "Your participation to event %{title} has been confirmed"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,7 +1370,7 @@ msgstr ""
|
||||
msgid "We're sorry, but something went wrong on our end."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email.html.eex:88
|
||||
#: lib/web/templates/email/email.text.eex:4
|
||||
msgid "This is a demonstration site to test Mobilizon."
|
||||
|
@ -98,17 +98,17 @@ msgid "Cannot refresh the token"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -118,13 +118,13 @@ msgid "Error while saving user settings"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr ""
|
||||
|
||||
@ -134,7 +134,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr ""
|
||||
|
||||
@ -150,19 +150,18 @@ msgid "No user to validate with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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
|
||||
msgid "No user with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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/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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -228,22 +227,22 @@ msgid "User requested is not logged-in"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr ""
|
||||
|
||||
@ -258,7 +257,7 @@ msgid "You need to be logged-in to change your password"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -268,17 +267,17 @@ msgid "You need to be logged-in to delete your account"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -338,22 +337,22 @@ msgid "Profile already suspended"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr ""
|
||||
|
||||
@ -368,17 +367,17 @@ msgid "Discussion not found"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr ""
|
||||
|
||||
@ -389,23 +388,23 @@ msgid "Event not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr ""
|
||||
|
||||
@ -415,7 +414,7 @@ msgid "No profile found for user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr ""
|
||||
|
||||
@ -425,14 +424,14 @@ msgid "Organizer profile is not owned by the user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{role}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:173
|
||||
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237
|
||||
#: lib/graphql/resolvers/participant.ex:247
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -447,7 +446,7 @@ msgid "Person with username %{username} not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr ""
|
||||
|
||||
@ -481,12 +480,12 @@ msgid "Profile is not member of group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -501,12 +500,12 @@ msgid "Resource doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr ""
|
||||
|
||||
@ -522,32 +521,32 @@ msgid "Todo list doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -567,7 +566,7 @@ msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -577,7 +576,7 @@ msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -587,8 +586,8 @@ msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -613,7 +612,7 @@ msgid "You cannot invite to this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -628,7 +627,7 @@ msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -638,17 +637,17 @@ msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -673,7 +672,7 @@ msgid "You need to be logged-in to create posts"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -698,12 +697,12 @@ msgid "You need to be logged-in to delete resources"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -728,12 +727,12 @@ msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr ""
|
||||
|
||||
@ -748,7 +747,7 @@ msgid "Parent resource doesn't belong to this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr ""
|
||||
|
||||
@ -823,12 +822,12 @@ msgid "You can't reject this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr ""
|
||||
|
||||
@ -856,3 +855,8 @@ msgstr ""
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
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
@ -93,767 +93,771 @@ msgstr "ha de ser superior o igual a %{number}"
|
||||
msgid "must be equal to %{number}"
|
||||
msgstr "ha de ser igual a %{number}"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:103
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:103
|
||||
msgid "Cannot refresh the token"
|
||||
msgstr "No s'ha pogut actualitzar el codi d'accés"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr "El perfil del creador no pertany a l'usuària actual"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr "El perfil actual no pertany a aquest grup"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:207
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:205
|
||||
msgid "Current profile is not an administrator of the selected group"
|
||||
msgstr "El perfil actual no administra el grup seleccionat"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:512
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:512
|
||||
msgid "Error while saving user settings"
|
||||
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
|
||||
#: 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"
|
||||
msgstr "No s'ha trobat el grup"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr "No s'ha trobat el grup amb identificador %{id}"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:83
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:83
|
||||
msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr "No t'hem pogut autenticar. El teu correu o contrasenya són incorrectes."
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
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/user.ex:417
|
||||
#, elixir-format
|
||||
msgid "No profile found for the moderator user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:195
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:195
|
||||
msgid "No user to validate with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76
|
||||
#: lib/graphql/resolvers/user.ex:219
|
||||
#, 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"
|
||||
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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:125
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:125
|
||||
msgid "Registrations are not open"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:330
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:330
|
||||
msgid "The current password is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:382
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:382
|
||||
msgid "The new email doesn't seem to be valid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:379
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:379
|
||||
msgid "The new email must be different"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:333
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:333
|
||||
msgid "The new password must be different"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
|
||||
#: lib/graphql/resolvers/user.ex:442
|
||||
#, elixir-format
|
||||
msgid "The password provided is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:337
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:337
|
||||
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:215
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:215
|
||||
msgid "This user can't reset their password"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:79
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:79
|
||||
msgid "This user has been disabled"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:179
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:179
|
||||
msgid "Unable to validate user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:420
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:420
|
||||
msgid "User already disabled"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:487
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:487
|
||||
msgid "User requested is not logged-in"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:287
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:268
|
||||
msgid "You can't leave this group because you are the only administrator"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:387
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:387
|
||||
msgid "You need to be logged-in to change your email"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:345
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:345
|
||||
msgid "You need to be logged-in to change your password"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:212
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:210
|
||||
msgid "You need to be logged-in to delete a group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:447
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:447
|
||||
msgid "You need to be logged-in to delete your account"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:259
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:240
|
||||
msgid "You need to be logged-in to join a group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:292
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:273
|
||||
msgid "You need to be logged-in to leave a group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:177
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:175
|
||||
msgid "You need to be logged-in to update a group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:58
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:58
|
||||
msgid "You need to have admin access to list users"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:108
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:108
|
||||
msgid "You need to have an existing token to get a refresh token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
|
||||
msgid "You requested again a confirmation email too soon"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:128
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:128
|
||||
msgid "Your email is not on the allowlist"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
|
||||
msgid "Error while performing background task"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:27
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:27
|
||||
msgid "No profile found with this ID"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
|
||||
msgid "No remote profile found with this ID"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:69
|
||||
msgid "Only moderators and administrators can suspend a profile"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:99
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:99
|
||||
msgid "Only moderators and administrators can unsuspend a profile"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:24
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:24
|
||||
msgid "Only remote profiles may be refreshed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:61
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:61
|
||||
msgid "Profile already suspended"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:109
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:109
|
||||
msgid "Comment is already deleted"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:61
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:61
|
||||
msgid "Discussion not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
|
||||
msgid "Error while saving report"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238
|
||||
#: lib/graphql/resolvers/event.ex:283
|
||||
#, elixir-format
|
||||
msgid "Event not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
|
||||
msgid "Moderator profile is not owned by authenticated user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
|
||||
msgid "No profile found for user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:202
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:202
|
||||
msgid "Organizer profile is not owned by the user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{role}"
|
||||
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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:31
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:31
|
||||
msgid "Person with ID %{id} not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:52
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:52
|
||||
msgid "Person with username %{username} not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
|
||||
msgid "Post ID is not a valid ID"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
|
||||
msgid "Post doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:86
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:86
|
||||
msgid "Profile invited doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
|
||||
msgid "Profile is already a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
|
||||
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
|
||||
#: lib/graphql/resolvers/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:197 lib/graphql/resolvers/todos.ex:225
|
||||
#, elixir-format
|
||||
msgid "Profile is not member of group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
|
||||
msgid "Profile not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
|
||||
msgid "Provided moderator profile doesn't have permission on this event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:38
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:38
|
||||
msgid "Report not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
|
||||
msgid "Resource doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
|
||||
msgid "Todo doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:194
|
||||
#: lib/graphql/resolvers/todos.ex:219
|
||||
#, elixir-format
|
||||
msgid "Todo list doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
|
||||
msgid "User not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:185
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:188
|
||||
msgid "You are not a member of the group the discussion belongs to"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:89
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:89
|
||||
msgid "You are not a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:154
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:154
|
||||
msgid "You are not a moderator or admin for this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:55
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:55
|
||||
msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:44
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:41
|
||||
msgid "You are not allowed to create a feed token if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:117
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:117
|
||||
msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:81
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:78
|
||||
msgid "You are not allowed to delete a feed token if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:77
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:77
|
||||
msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:167
|
||||
#: lib/graphql/resolvers/participant.ex:196
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:158
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:105
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:105
|
||||
msgid "You cannot delete this comment"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:279
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:279
|
||||
msgid "You cannot delete this event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:92
|
||||
msgid "You cannot invite to this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:75
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
msgid "You don't have permission to delete this token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:52
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:52
|
||||
msgid "You need to be logged-in and a moderator to list action logs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:28
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:28
|
||||
msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:118
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:115
|
||||
msgid "You need to be logged-in and a moderator to update a report"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:43
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:43
|
||||
msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:220
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:236
|
||||
msgid "You need to be logged-in and an administrator to access admin settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:205
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:221
|
||||
msgid "You need to be logged-in and an administrator to access dashboard statistics"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:260
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:66
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:66
|
||||
msgid "You need to be logged-in to access discussions"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:93
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:93
|
||||
msgid "You need to be logged-in to access resources"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:213
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:213
|
||||
msgid "You need to be logged-in to create events"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:139
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:139
|
||||
msgid "You need to be logged-in to create posts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
|
||||
msgid "You need to be logged-in to create reports"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:129
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:129
|
||||
msgid "You need to be logged-in to create resources"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:291
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:291
|
||||
msgid "You need to be logged-in to delete an event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:209
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:209
|
||||
msgid "You need to be logged-in to delete posts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:187
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:187
|
||||
msgid "You need to be logged-in to delete resources"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:108
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:105
|
||||
msgid "You need to be logged-in to join an event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:207
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:204
|
||||
msgid "You need to be logged-in to leave an event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:252
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:252
|
||||
msgid "You need to be logged-in to update an event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:176
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:176
|
||||
msgid "You need to be logged-in to update posts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:158
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:158
|
||||
msgid "You need to be logged-in to update resources"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:210
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:210
|
||||
msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:59
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:59
|
||||
msgid "Reporter profile is not owned by authenticated user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:121
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:121
|
||||
msgid "Parent resource doesn't belong to this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr ""
|
||||
|
||||
#: lib/mobilizon/users/user.ex:109
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:109
|
||||
msgid "The chosen password is too short."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mobilizon/users/user.ex:138
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:138
|
||||
msgid "The registration token is already in use, this looks like an issue on our side."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mobilizon/users/user.ex:104
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:104
|
||||
msgid "This email is already used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:88
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:88
|
||||
msgid "Post not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:75
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:75
|
||||
msgid "Invalid arguments passed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:81
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:81
|
||||
msgid "Invalid credentials"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:79
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:79
|
||||
msgid "Reset your password to login"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
||||
msgid "Resource not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:92
|
||||
msgid "Something went wrong"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:74
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:74
|
||||
msgid "Unknown Resource"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:84
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:84
|
||||
msgid "You don't have permission to do this"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:76
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:76
|
||||
msgid "You need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:119
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:119
|
||||
msgid "You can't accept this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:137
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:137
|
||||
msgid "You can't reject this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:241
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:241
|
||||
msgid "You can't edit this event."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:244
|
||||
msgid "You can't attribute this event to this profile."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:140
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:140
|
||||
msgid "This invitation doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:182
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:182
|
||||
msgid "This member already has been rejected."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/actors/actor.ex:344
|
||||
msgid "This username is already taken."
|
||||
msgstr ""
|
||||
|
@ -112,17 +112,17 @@ msgid "You created an account on %{host} with this email address. You are one cl
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:113
|
||||
#: lib/web/email/participation.ex:112
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:71
|
||||
#: lib/web/email/participation.ex:70
|
||||
msgid "Your participation to event %{title} has been rejected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:36
|
||||
#: lib/web/email/event.ex:37
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr ""
|
||||
|
||||
@ -142,7 +142,7 @@ msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:135
|
||||
#: lib/web/email/participation.ex:134
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
||||
@ -402,7 +402,7 @@ msgstr[2] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/notification_each_week.html.eex:38
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:4
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:3
|
||||
msgid "You have one event this week:"
|
||||
msgid_plural "You have %{total} events this week:"
|
||||
msgstr[0] ""
|
||||
@ -410,7 +410,7 @@ msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/service/metadata/utils.ex:27
|
||||
#: lib/service/metadata/utils.ex:52
|
||||
msgid "The event organizer didn't add any description."
|
||||
msgstr ""
|
||||
|
||||
@ -765,7 +765,7 @@ msgstr ""
|
||||
#: 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/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
|
||||
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."
|
||||
@ -1243,7 +1243,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:92
|
||||
#: lib/web/email/participation.ex:91
|
||||
msgid "Your participation to event %{title} has been confirmed"
|
||||
msgstr ""
|
||||
|
||||
@ -1370,7 +1370,7 @@ msgstr ""
|
||||
msgid "We're sorry, but something went wrong on our end."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email.html.eex:88
|
||||
#: lib/web/templates/email/email.text.eex:4
|
||||
msgid "This is a demonstration site to test Mobilizon."
|
||||
|
@ -98,17 +98,17 @@ msgid "Cannot refresh the token"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -118,13 +118,13 @@ msgid "Error while saving user settings"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr ""
|
||||
|
||||
@ -134,7 +134,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr ""
|
||||
|
||||
@ -150,19 +150,18 @@ msgid "No user to validate with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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
|
||||
msgid "No user with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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/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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -228,22 +227,22 @@ msgid "User requested is not logged-in"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr ""
|
||||
|
||||
@ -258,7 +257,7 @@ msgid "You need to be logged-in to change your password"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -268,17 +267,17 @@ msgid "You need to be logged-in to delete your account"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -338,22 +337,22 @@ msgid "Profile already suspended"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr ""
|
||||
|
||||
@ -368,17 +367,17 @@ msgid "Discussion not found"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr ""
|
||||
|
||||
@ -389,23 +388,23 @@ msgid "Event not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr ""
|
||||
|
||||
@ -415,7 +414,7 @@ msgid "No profile found for user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr ""
|
||||
|
||||
@ -425,14 +424,14 @@ msgid "Organizer profile is not owned by the user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{role}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:173
|
||||
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237
|
||||
#: lib/graphql/resolvers/participant.ex:247
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -447,7 +446,7 @@ msgid "Person with username %{username} not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr ""
|
||||
|
||||
@ -481,12 +480,12 @@ msgid "Profile is not member of group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -501,12 +500,12 @@ msgid "Resource doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr ""
|
||||
|
||||
@ -522,32 +521,32 @@ msgid "Todo list doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -567,7 +566,7 @@ msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -577,7 +576,7 @@ msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -587,8 +586,8 @@ msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -613,7 +612,7 @@ msgid "You cannot invite to this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -628,7 +627,7 @@ msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -638,17 +637,17 @@ msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -673,7 +672,7 @@ msgid "You need to be logged-in to create posts"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -698,12 +697,12 @@ msgid "You need to be logged-in to delete resources"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -728,12 +727,12 @@ msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr ""
|
||||
|
||||
@ -748,7 +747,7 @@ msgid "Parent resource doesn't belong to this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr ""
|
||||
|
||||
@ -823,12 +822,12 @@ msgid "You can't reject this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr ""
|
||||
|
||||
@ -856,3 +855,8 @@ msgstr ""
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/actors/actor.ex:344
|
||||
msgid "This username is already taken."
|
||||
msgstr ""
|
||||
|
@ -124,17 +124,17 @@ msgstr ""
|
||||
"E-Mail bitte."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:113
|
||||
#: lib/web/email/participation.ex:112
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Deine Teilnahme an der Veranstaltung %{title}wurde akzeptiert"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:71
|
||||
#: lib/web/email/participation.ex:70
|
||||
msgid "Your participation to event %{title} has been rejected"
|
||||
msgstr "Deine Teilnahme an der Veranstaltung %{title}wurde abgelehnt"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:36
|
||||
#: lib/web/email/event.ex:37
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "Veranstaltung %{title} wurde aktualisiert"
|
||||
|
||||
@ -155,7 +155,7 @@ msgid "Warning"
|
||||
msgstr "Warnung"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:135
|
||||
#: lib/web/email/participation.ex:134
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Meine Teilnahme an der Veranstaltung %{title} zusagen"
|
||||
|
||||
@ -415,14 +415,14 @@ msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/notification_each_week.html.eex:38
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:4
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:3
|
||||
msgid "You have one event this week:"
|
||||
msgid_plural "You have %{total} events this week:"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/service/metadata/utils.ex:27
|
||||
#: lib/service/metadata/utils.ex:52
|
||||
msgid "The event organizer didn't add any description."
|
||||
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.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/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
|
||||
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."
|
||||
@ -1266,7 +1266,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
|
||||
msgstr "Du hast angefragt, an der Veranstaltung %{title} teilzunehmen."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:92
|
||||
#: lib/web/email/participation.ex:91
|
||||
msgid "Your participation to event %{title} has been confirmed"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email.html.eex:88
|
||||
#: lib/web/templates/email/email.text.eex:4
|
||||
msgid "This is a demonstration site to test Mobilizon."
|
||||
|
@ -92,17 +92,17 @@ msgid "Cannot refresh the token"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -112,13 +112,13 @@ msgid "Error while saving user settings"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr ""
|
||||
|
||||
@ -128,7 +128,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr ""
|
||||
|
||||
@ -144,19 +144,18 @@ msgid "No user to validate with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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
|
||||
msgid "No user with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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/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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -222,22 +221,22 @@ msgid "User requested is not logged-in"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr ""
|
||||
|
||||
@ -252,7 +251,7 @@ msgid "You need to be logged-in to change your password"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -262,17 +261,17 @@ msgid "You need to be logged-in to delete your account"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -332,22 +331,22 @@ msgid "Profile already suspended"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr ""
|
||||
|
||||
@ -362,17 +361,17 @@ msgid "Discussion not found"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr ""
|
||||
|
||||
@ -383,23 +382,23 @@ msgid "Event not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr ""
|
||||
|
||||
@ -409,7 +408,7 @@ msgid "No profile found for user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr ""
|
||||
|
||||
@ -419,14 +418,14 @@ msgid "Organizer profile is not owned by the user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{role}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:173
|
||||
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237
|
||||
#: lib/graphql/resolvers/participant.ex:247
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -441,7 +440,7 @@ msgid "Person with username %{username} not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr ""
|
||||
|
||||
@ -475,12 +474,12 @@ msgid "Profile is not member of group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -495,12 +494,12 @@ msgid "Resource doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr ""
|
||||
|
||||
@ -516,32 +515,32 @@ msgid "Todo list doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -561,7 +560,7 @@ msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -571,7 +570,7 @@ msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -581,8 +580,8 @@ msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -607,7 +606,7 @@ msgid "You cannot invite to this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -622,7 +621,7 @@ msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -632,17 +631,17 @@ msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -667,7 +666,7 @@ msgid "You need to be logged-in to create posts"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -692,12 +691,12 @@ msgid "You need to be logged-in to delete resources"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -722,12 +721,12 @@ msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr ""
|
||||
|
||||
@ -742,7 +741,7 @@ msgid "Parent resource doesn't belong to this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr ""
|
||||
|
||||
@ -817,12 +816,12 @@ msgid "You can't reject this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr ""
|
||||
|
||||
@ -850,3 +849,8 @@ msgstr ""
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/actors/actor.ex:344
|
||||
msgid "This username is already taken."
|
||||
msgstr ""
|
||||
|
@ -98,17 +98,17 @@ msgid "You created an account on %{host} with this email address. You are one cl
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:113
|
||||
#: lib/web/email/participation.ex:112
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:71
|
||||
#: lib/web/email/participation.ex:70
|
||||
msgid "Your participation to event %{title} has been rejected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:36
|
||||
#: lib/web/email/event.ex:37
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr ""
|
||||
|
||||
@ -128,7 +128,7 @@ msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:135
|
||||
#: lib/web/email/participation.ex:134
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
||||
@ -384,14 +384,14 @@ msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/notification_each_week.html.eex:38
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:4
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:3
|
||||
msgid "You have one event this week:"
|
||||
msgid_plural "You have %{total} events this week:"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/service/metadata/utils.ex:27
|
||||
#: lib/service/metadata/utils.ex:52
|
||||
msgid "The event organizer didn't add any description."
|
||||
msgstr ""
|
||||
|
||||
@ -746,7 +746,7 @@ msgstr ""
|
||||
#: 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/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
|
||||
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."
|
||||
@ -1222,7 +1222,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:92
|
||||
#: lib/web/email/participation.ex:91
|
||||
msgid "Your participation to event %{title} has been confirmed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -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."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:113
|
||||
#: lib/web/email/participation.ex:112
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Your participation to event %{title} has been approved"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:71
|
||||
#: lib/web/email/participation.ex:70
|
||||
msgid "Your participation to event %{title} has been rejected"
|
||||
msgstr "Your participation to event %{title} has been rejected"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:36
|
||||
#: lib/web/email/event.ex:37
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "Event %{title} has been updated"
|
||||
|
||||
@ -151,7 +151,7 @@ msgid "Warning"
|
||||
msgstr "Warning"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:135
|
||||
#: lib/web/email/participation.ex:134
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Confirm your participation to event %{title}"
|
||||
|
||||
@ -437,14 +437,14 @@ msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/notification_each_week.html.eex:38
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:4
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:3
|
||||
msgid "You have one event this week:"
|
||||
msgid_plural "You have %{total} events this week:"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/service/metadata/utils.ex:27
|
||||
#: lib/service/metadata/utils.ex:52
|
||||
msgid "The event organizer didn't add any description."
|
||||
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.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/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
|
||||
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."
|
||||
@ -1275,7 +1275,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
|
||||
msgstr "You requested to participate in event %{title}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:92
|
||||
#: lib/web/email/participation.ex:91
|
||||
msgid "Your participation to event %{title} has been confirmed"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email.html.eex:88
|
||||
#: lib/web/templates/email/email.text.eex:4
|
||||
msgid "This is a demonstration site to test Mobilizon."
|
||||
|
@ -102,17 +102,17 @@ msgid "Cannot refresh the token"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -122,13 +122,13 @@ msgid "Error while saving user settings"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr ""
|
||||
|
||||
@ -138,7 +138,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr ""
|
||||
|
||||
@ -154,19 +154,18 @@ msgid "No user to validate with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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
|
||||
msgid "No user with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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/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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -232,22 +231,22 @@ msgid "User requested is not logged-in"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr ""
|
||||
|
||||
@ -262,7 +261,7 @@ msgid "You need to be logged-in to change your password"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -272,17 +271,17 @@ msgid "You need to be logged-in to delete your account"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -342,22 +341,22 @@ msgid "Profile already suspended"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr ""
|
||||
|
||||
@ -372,17 +371,17 @@ msgid "Discussion not found"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr ""
|
||||
|
||||
@ -393,23 +392,23 @@ msgid "Event not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr ""
|
||||
|
||||
@ -419,7 +418,7 @@ msgid "No profile found for user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr ""
|
||||
|
||||
@ -429,14 +428,14 @@ msgid "Organizer profile is not owned by the user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{role}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:173
|
||||
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237
|
||||
#: lib/graphql/resolvers/participant.ex:247
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -451,7 +450,7 @@ msgid "Person with username %{username} not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr ""
|
||||
|
||||
@ -485,12 +484,12 @@ msgid "Profile is not member of group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -505,12 +504,12 @@ msgid "Resource doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr ""
|
||||
|
||||
@ -526,32 +525,32 @@ msgid "Todo list doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -571,7 +570,7 @@ msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -581,7 +580,7 @@ msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -591,8 +590,8 @@ msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -617,7 +616,7 @@ msgid "You cannot invite to this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -632,7 +631,7 @@ msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -642,17 +641,17 @@ msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -677,7 +676,7 @@ msgid "You need to be logged-in to create posts"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -702,12 +701,12 @@ msgid "You need to be logged-in to delete resources"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -732,12 +731,12 @@ msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr ""
|
||||
|
||||
@ -752,7 +751,7 @@ msgid "Parent resource doesn't belong to this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr ""
|
||||
|
||||
@ -827,12 +826,12 @@ msgid "You can't reject this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr ""
|
||||
|
||||
@ -860,3 +859,8 @@ msgstr ""
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/actors/actor.ex:344
|
||||
msgid "This username is already taken."
|
||||
msgstr ""
|
||||
|
@ -99,17 +99,17 @@ msgid "Cannot refresh the token"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -119,13 +119,13 @@ msgid "Error while saving user settings"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr ""
|
||||
|
||||
@ -135,7 +135,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr ""
|
||||
|
||||
@ -151,19 +151,18 @@ msgid "No user to validate with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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
|
||||
msgid "No user with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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/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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -229,22 +228,22 @@ msgid "User requested is not logged-in"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr ""
|
||||
|
||||
@ -259,7 +258,7 @@ msgid "You need to be logged-in to change your password"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -269,17 +268,17 @@ msgid "You need to be logged-in to delete your account"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -339,22 +338,22 @@ msgid "Profile already suspended"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr ""
|
||||
|
||||
@ -369,17 +368,17 @@ msgid "Discussion not found"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr ""
|
||||
|
||||
@ -390,23 +389,23 @@ msgid "Event not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr ""
|
||||
|
||||
@ -416,7 +415,7 @@ msgid "No profile found for user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr ""
|
||||
|
||||
@ -426,14 +425,14 @@ msgid "Organizer profile is not owned by the user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{role}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:173
|
||||
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237
|
||||
#: lib/graphql/resolvers/participant.ex:247
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -448,7 +447,7 @@ msgid "Person with username %{username} not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr ""
|
||||
|
||||
@ -482,12 +481,12 @@ msgid "Profile is not member of group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -502,12 +501,12 @@ msgid "Resource doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr ""
|
||||
|
||||
@ -523,32 +522,32 @@ msgid "Todo list doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -568,7 +567,7 @@ msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -578,7 +577,7 @@ msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -588,8 +587,8 @@ msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -614,7 +613,7 @@ msgid "You cannot invite to this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -629,7 +628,7 @@ msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -639,17 +638,17 @@ msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -674,7 +673,7 @@ msgid "You need to be logged-in to create posts"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -699,12 +698,12 @@ msgid "You need to be logged-in to delete resources"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -729,12 +728,12 @@ msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr ""
|
||||
|
||||
@ -749,7 +748,7 @@ msgid "Parent resource doesn't belong to this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr ""
|
||||
|
||||
@ -824,12 +823,12 @@ msgid "You can't reject this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr ""
|
||||
|
||||
@ -857,3 +856,8 @@ msgstr ""
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
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
@ -93,788 +93,792 @@ msgstr "debe ser mayor o igual que% {number}"
|
||||
msgid "must be equal to %{number}"
|
||||
msgstr "debe ser igual a% {number}"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:103
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:103
|
||||
msgid "Cannot refresh the token"
|
||||
msgstr "No se puede actualizar el token"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr "El perfil del creador no es propiedad del usuario actual"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr "El perfil actual no es miembro de este grupo"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:207
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:205
|
||||
msgid "Current profile is not an administrator of the selected group"
|
||||
msgstr "El perfil actual no es un administrador del grupo seleccionado"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:512
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:512
|
||||
msgid "Error while saving user settings"
|
||||
msgstr "Error al guardar los parámetros del usuario"
|
||||
|
||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200
|
||||
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83
|
||||
#, 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"
|
||||
msgstr "Grupo no encontrado"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr "No se encontró el grupo con ID% {id}"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:83
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:83
|
||||
msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr ""
|
||||
"Imposible autenticarse, su correo electrónico o contraseña no son válidos."
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr "Miembro no encontrado"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
|
||||
#: lib/graphql/resolvers/user.ex:417
|
||||
#, elixir-format
|
||||
msgid "No profile found for the moderator user"
|
||||
msgstr "No se encontró el perfil del usuario moderador"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:195
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:195
|
||||
msgid "No user to validate with this email was found"
|
||||
msgstr "No se encontró ningún usuario para validar con este correo electrónico"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76
|
||||
#: lib/graphql/resolvers/user.ex:219
|
||||
#, 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"
|
||||
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
|
||||
#: 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"
|
||||
msgstr "El perfil no es propiedad del usuario autenticado"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:125
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:125
|
||||
msgid "Registrations are not open"
|
||||
msgstr "Las inscripciones no están abiertas"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:330
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:330
|
||||
msgid "The current password is invalid"
|
||||
msgstr "La contraseña actual no es válida"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:382
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:382
|
||||
msgid "The new email doesn't seem to be valid"
|
||||
msgstr "El nuevo correo electrónico no parece ser válido"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:379
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:379
|
||||
msgid "The new email must be different"
|
||||
msgstr "El nuevo correo electrónico debe ser diferente"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:333
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:333
|
||||
msgid "The new password must be different"
|
||||
msgstr "La nueva contraseña debe ser diferente"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
|
||||
#: lib/graphql/resolvers/user.ex:442
|
||||
#, elixir-format
|
||||
msgid "The password provided is invalid"
|
||||
msgstr "La contraseña proporcionada no es válida"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:337
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:337
|
||||
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
|
||||
msgstr ""
|
||||
"La contraseña que ha elegido es demasiado corta. Asegúrese de que su "
|
||||
"contraseña contenga al menos 6 caracteres."
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:215
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:215
|
||||
msgid "This user can't reset their password"
|
||||
msgstr "Este usuario no puede restablecer su contraseña"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:79
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:79
|
||||
msgid "This user has been disabled"
|
||||
msgstr "Este usuario ha sido inhabilitado"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:179
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:179
|
||||
msgid "Unable to validate user"
|
||||
msgstr "No se puede validar al usuario"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:420
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:420
|
||||
msgid "User already disabled"
|
||||
msgstr "El usuario ya está inhabilitado"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:487
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:487
|
||||
msgid "User requested is not logged-in"
|
||||
msgstr "El usuario solicitado no ha iniciado sesión"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr "Ya eres miembro de este grupo"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:287
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:268
|
||||
msgid "You can't leave this group because you are the only administrator"
|
||||
msgstr "No puedes dejar este grupo porque eres el único administrador"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr "No puedes unirte a este grupo"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr "No puedes enumerar grupos a menos que seas moderador."
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:387
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:387
|
||||
msgid "You need to be logged-in to change your email"
|
||||
msgstr "Debes iniciar sesión para cambiar tu correo electrónico"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:345
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:345
|
||||
msgid "You need to be logged-in to change your password"
|
||||
msgstr "Debes iniciar sesión para cambiar tu contraseña"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:212
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:210
|
||||
msgid "You need to be logged-in to delete a group"
|
||||
msgstr "Debes iniciar sesión para eliminar un grupo"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:447
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:447
|
||||
msgid "You need to be logged-in to delete your account"
|
||||
msgstr "Debes iniciar sesión para eliminar su cuenta"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:259
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:240
|
||||
msgid "You need to be logged-in to join a group"
|
||||
msgstr "Debes iniciar sesión para eliminar su cuenta"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:292
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:273
|
||||
msgid "You need to be logged-in to leave a group"
|
||||
msgstr "Debes iniciar sesión para dejar un grupo"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:177
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:175
|
||||
msgid "You need to be logged-in to update a group"
|
||||
msgstr "Debes iniciar sesión para actualizar un grupo"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:58
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:58
|
||||
msgid "You need to have admin access to list users"
|
||||
msgstr "Necesitas tener acceso de administrador para listar usuarios"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:108
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:108
|
||||
msgid "You need to have an existing token to get a refresh token"
|
||||
msgstr "Debes tener un token existente para obtener un token de actualización"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
|
||||
msgid "You requested again a confirmation email too soon"
|
||||
msgstr ""
|
||||
"Solicitó de nuevo un correo electrónico de confirmación demasiado pronto"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:128
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:128
|
||||
msgid "Your email is not on the allowlist"
|
||||
msgstr "Tu correo electrónico no está en la lista de permitidos"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
|
||||
msgid "Error while performing background task"
|
||||
msgstr "Error al realizar la tarea en segundo plano"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:27
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:27
|
||||
msgid "No profile found with this ID"
|
||||
msgstr "No se encontró ningún perfil con este ID"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
|
||||
msgid "No remote profile found with this ID"
|
||||
msgstr "No se encontró ningún perfil remoto con este ID"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:69
|
||||
msgid "Only moderators and administrators can suspend a profile"
|
||||
msgstr "Solo los moderadores y administradores pueden suspender un perfil"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:99
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:99
|
||||
msgid "Only moderators and administrators can unsuspend a profile"
|
||||
msgstr ""
|
||||
"Solo los moderadores y administradores pueden anular la suspensión de un "
|
||||
"perfil"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:24
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:24
|
||||
msgid "Only remote profiles may be refreshed"
|
||||
msgstr "Solo se pueden actualizar los perfiles remotos"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:61
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:61
|
||||
msgid "Profile already suspended"
|
||||
msgstr "Perfil ya suspendido"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr "Su instancia requiere un correo electrónico válido"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr "La participación anónima no está habilitada"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr "No se puede eliminar al último administrador de un grupo"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr "No se puede eliminar la última identidad de un usuario"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:109
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:109
|
||||
msgid "Comment is already deleted"
|
||||
msgstr "El comentario ya está eliminado"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:61
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:61
|
||||
msgid "Discussion not found"
|
||||
msgstr "Discusión no encontrada"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
|
||||
msgid "Error while saving report"
|
||||
msgstr "Error al guardar el informe"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr "Error al actualizar el informe"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr "ID de evento no encontrado"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238
|
||||
#: lib/graphql/resolvers/event.ex:283
|
||||
#, elixir-format
|
||||
msgid "Event not found"
|
||||
msgstr "Evento no encontrado"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#, 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"
|
||||
msgstr "El evento con este ID%{id} no existe"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr "Error interno"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
|
||||
msgid "Moderator profile is not owned by authenticated user"
|
||||
msgstr "El perfil del moderador no es propiedad del usuario autenticado"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr "Sin discusión con ID%{id}"
|
||||
|
||||
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
|
||||
msgid "No profile found for user"
|
||||
msgstr "No se encontró perfil para el usuario"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr "No existe tal token de alimentación"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:202
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:202
|
||||
msgid "Organizer profile is not owned by the user"
|
||||
msgstr "El perfil del organizador no es propiedad del usuario"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{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
|
||||
#: 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"
|
||||
msgstr "Participante no encontrado"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:31
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:31
|
||||
msgid "Person with ID %{id} not found"
|
||||
msgstr "Persona con ID%{id} no encontrada"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:52
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:52
|
||||
msgid "Person with username %{username} not found"
|
||||
msgstr "Persona con nombre de usuario %{username} no encontrada"
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr "No se encontró la foto con ID %{id}"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
|
||||
msgid "Post ID is not a valid ID"
|
||||
msgstr "La ID de publicación no es válida"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
|
||||
msgid "Post doesn't exist"
|
||||
msgstr "La publicación no existe"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:86
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:86
|
||||
msgid "Profile invited doesn't exist"
|
||||
msgstr "El perfil invitado no existe"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
|
||||
msgid "Profile is already a member of this group"
|
||||
msgstr "Perfil ya es miembro de este grupo"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
|
||||
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex: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/todos.ex:84 lib/graphql/resolvers/todos.ex:102 lib/graphql/resolvers/todos.ex:174
|
||||
#: lib/graphql/resolvers/todos.ex:197 lib/graphql/resolvers/todos.ex:225
|
||||
#, elixir-format
|
||||
msgid "Profile is not member of group"
|
||||
msgstr "El perfil no es miembro del grupo"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
|
||||
msgid "Profile not found"
|
||||
msgstr "Perfil no encontrado"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
|
||||
msgid "Provided moderator profile doesn't have permission on this event"
|
||||
msgstr "El perfil de moderador proporcionado no tiene permiso para este evento"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:38
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:38
|
||||
msgid "Report not found"
|
||||
msgstr "Informe no encontrado"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
|
||||
msgid "Resource doesn't exist"
|
||||
msgstr "El recurso no existe"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr "El evento ya alcanzó su capacidad máxima"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr "Este token no es válido"
|
||||
|
||||
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
|
||||
msgid "Todo doesn't exist"
|
||||
msgstr "Todo no existe"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:194
|
||||
#: lib/graphql/resolvers/todos.ex:219
|
||||
#, elixir-format
|
||||
msgid "Todo list doesn't exist"
|
||||
msgstr "La lista de tareas pendientes no existe"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr "El token no existe"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr "El token no es un UUID válido"
|
||||
|
||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
|
||||
msgid "User not found"
|
||||
msgstr "Usuario no encontrado"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr "Ya tienes un perfil para este usuario"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr "Ya eres participante de este evento"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:185
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:188
|
||||
msgid "You are not a member of the group the discussion belongs to"
|
||||
msgstr "No eres miembro del grupo al que pertenece la discusión"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:89
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:89
|
||||
msgid "You are not a member of this group"
|
||||
msgstr "no eres un miembro de este grupo"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:154
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:154
|
||||
msgid "You are not a moderator or admin for this group"
|
||||
msgstr "No eres moderador ni administrador de este grupo"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:55
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:55
|
||||
msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr "No está permitido crear un comentario si no está conectado"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:44
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:41
|
||||
msgid "You are not allowed to create a feed token if not connected"
|
||||
msgstr "No puede crear un token de feed si no está conectado"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:117
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:117
|
||||
msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr "No puede eliminar un comentario si no está conectado"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:81
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:78
|
||||
msgid "You are not allowed to delete a feed token if not connected"
|
||||
msgstr "No puede eliminar un token de feed si no está conectado"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:77
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:77
|
||||
msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr "No se le permite actualizar un comentario si no está conectado"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:167
|
||||
#: lib/graphql/resolvers/participant.ex:196
|
||||
#, 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"
|
||||
msgstr ""
|
||||
"No puedes abandonar el evento porque eres el único participante creador del "
|
||||
"evento"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:158
|
||||
#, 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"
|
||||
msgstr ""
|
||||
"No puede establecerse en un rol de miembro inferior para este grupo porque "
|
||||
"es el único administrador"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:105
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:105
|
||||
msgid "You cannot delete this comment"
|
||||
msgstr "No puedes borrar este comentario"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:279
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:279
|
||||
msgid "You cannot delete this event"
|
||||
msgstr "No puedes borrar este evento"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:92
|
||||
msgid "You cannot invite to this group"
|
||||
msgstr "No puedes invitar a este grupo"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:75
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
msgid "You don't have permission to delete this token"
|
||||
msgstr "No tienes permiso para eliminar este token"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:52
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:52
|
||||
msgid "You need to be logged-in and a moderator to list action logs"
|
||||
msgstr ""
|
||||
"Debe iniciar sesión y un moderador para enumerar los registros de acción"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:28
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:28
|
||||
msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr "Debe iniciar sesión y un moderador para enumerar los informes"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:118
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:115
|
||||
msgid "You need to be logged-in and a moderator to update a report"
|
||||
msgstr "Debe iniciar sesión y ser un moderador para actualizar un informe"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:43
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:43
|
||||
msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr "Debe iniciar sesión y ser un moderador para actualizar un informe"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:220
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:236
|
||||
msgid "You need to be logged-in and an administrator to access admin settings"
|
||||
msgstr ""
|
||||
"Debe iniciar sesión y ser administrador para acceder a la configuración de "
|
||||
"administrador"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:205
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:221
|
||||
msgid "You need to be logged-in and an administrator to access dashboard statistics"
|
||||
msgstr ""
|
||||
"Debe iniciar sesión y ser administrador para acceder a las estadísticas del "
|
||||
"panel"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:260
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
"Debe iniciar sesión y ser administrador para acceder a las estadísticas del "
|
||||
"panel"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:66
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:66
|
||||
msgid "You need to be logged-in to access discussions"
|
||||
msgstr "Debe iniciar sesión para acceder a las discusiones"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:93
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:93
|
||||
msgid "You need to be logged-in to access resources"
|
||||
msgstr "Debes iniciar sesión para acceder a los recursos"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:213
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:213
|
||||
msgid "You need to be logged-in to create events"
|
||||
msgstr "Debes iniciar sesión para crear eventos"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:139
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:139
|
||||
msgid "You need to be logged-in to create posts"
|
||||
msgstr "Debes iniciar sesión para crear publicaciones"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
|
||||
msgid "You need to be logged-in to create reports"
|
||||
msgstr "Debe iniciar sesión para crear informes"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:129
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:129
|
||||
msgid "You need to be logged-in to create resources"
|
||||
msgstr "Debe iniciar sesión para crear recursos"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:291
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:291
|
||||
msgid "You need to be logged-in to delete an event"
|
||||
msgstr "Debe iniciar sesión para eliminar un evento"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:209
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:209
|
||||
msgid "You need to be logged-in to delete posts"
|
||||
msgstr "Debes iniciar sesión para eliminar publicaciones"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:187
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:187
|
||||
msgid "You need to be logged-in to delete resources"
|
||||
msgstr "Debes iniciar sesión para eliminar recursos"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:108
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:105
|
||||
msgid "You need to be logged-in to join an event"
|
||||
msgstr "Debes iniciar sesión para eliminar recursos"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:207
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:204
|
||||
msgid "You need to be logged-in to leave an event"
|
||||
msgstr "Debes iniciar sesión para salir de un evento"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:252
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:252
|
||||
msgid "You need to be logged-in to update an event"
|
||||
msgstr "Debe iniciar sesión para actualizar un evento"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:176
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:176
|
||||
msgid "You need to be logged-in to update posts"
|
||||
msgstr "Debes iniciar sesión para actualizar las publicaciones"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:158
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:158
|
||||
msgid "You need to be logged-in to update resources"
|
||||
msgstr "Debes iniciar sesión para actualizar los recursos"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:210
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:210
|
||||
msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr "Debe iniciar sesión para ver una vista previa del recurso"
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr "Debes iniciar sesión para subir una imagen"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr ""
|
||||
"La identificación del informante no coincide con la identificación del "
|
||||
"perfil anónimo"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:59
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:59
|
||||
msgid "Reporter profile is not owned by authenticated user"
|
||||
msgstr "El perfil del denunciante no es propiedad de un usuario autenticado"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:121
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:121
|
||||
msgid "Parent resource doesn't belong to this group"
|
||||
msgstr "El recurso principal no pertenece a este grupo"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr "El ID de perfil proporcionado no es el del perfil anónimo"
|
||||
|
||||
#: lib/mobilizon/users/user.ex:109
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:109
|
||||
msgid "The chosen password is too short."
|
||||
msgstr "La contraseña elegida es demasiado corta."
|
||||
|
||||
#: lib/mobilizon/users/user.ex:138
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:138
|
||||
msgid "The registration token is already in use, this looks like an issue on our side."
|
||||
msgstr ""
|
||||
"El token de registro ya está en uso, esto parece un problema de nuestra "
|
||||
"parte."
|
||||
|
||||
#: lib/mobilizon/users/user.ex:104
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:104
|
||||
msgid "This email is already used."
|
||||
msgstr "Este correo electrónico ya está en uso."
|
||||
|
||||
#: lib/graphql/error.ex:88
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:88
|
||||
msgid "Post not found"
|
||||
msgstr "Informe no encontrado"
|
||||
|
||||
#: lib/graphql/error.ex:75
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:75
|
||||
msgid "Invalid arguments passed"
|
||||
msgstr "Se pasaron argumentos no válidos"
|
||||
|
||||
#: lib/graphql/error.ex:81
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:81
|
||||
msgid "Invalid credentials"
|
||||
msgstr "Credenciales no válidas"
|
||||
|
||||
#: lib/graphql/error.ex:79
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:79
|
||||
msgid "Reset your password to login"
|
||||
msgstr "Restablezca su contraseña para iniciar sesión"
|
||||
|
||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
||||
msgid "Resource not found"
|
||||
msgstr "Recurso no encontrado"
|
||||
|
||||
#: lib/graphql/error.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:92
|
||||
msgid "Something went wrong"
|
||||
msgstr "Algo salió mal"
|
||||
|
||||
#: lib/graphql/error.ex:74
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:74
|
||||
msgid "Unknown Resource"
|
||||
msgstr "Recurso desconocido"
|
||||
|
||||
#: lib/graphql/error.ex:84
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:84
|
||||
msgid "You don't have permission to do this"
|
||||
msgstr "No tienes permiso para hacer esto"
|
||||
|
||||
#: lib/graphql/error.ex:76
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:76
|
||||
msgid "You need to be logged in"
|
||||
msgstr "Debes iniciar sesión"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:119
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:119
|
||||
msgid "You can't accept this invitation with this profile."
|
||||
msgstr "No puedes aceptar esta invitación con este perfil."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:137
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:137
|
||||
msgid "You can't reject this invitation with this profile."
|
||||
msgstr "No puedes rechazar esta invitación con este perfil."
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr "El archivo no tiene un tipo MIME permitido."
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr "El perfil no es miembro del grupo"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:241
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:241
|
||||
msgid "You can't edit this event."
|
||||
msgstr "No puedes borrar este evento."
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:244
|
||||
msgid "You can't attribute this event to this profile."
|
||||
msgstr "No puedes rechazar esta invitación con este perfil."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:140
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:140
|
||||
msgid "This invitation doesn't exist."
|
||||
msgstr "Esta invitación no existe."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:182
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:182
|
||||
msgid "This member already has been rejected."
|
||||
msgstr "Este miembro ya ha sido rechazado."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
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
@ -93,768 +93,772 @@ msgstr "tulee olla vähintään %{number}"
|
||||
msgid "must be equal to %{number}"
|
||||
msgstr "tulee olla tasas %{number}"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:103
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:103
|
||||
msgid "Cannot refresh the token"
|
||||
msgstr "Ei voida päivittää tokenia"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr "Nykyinen käyttäjä ei omista luontiprofiilia"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr "Nykyinen profiili ei kuulu tähän ryhmään"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:207
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:205
|
||||
msgid "Current profile is not an administrator of the selected group"
|
||||
msgstr "Nykyinen profiili ei ole valitun ryhmän ylläpitäjä"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:512
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:512
|
||||
msgid "Error while saving user settings"
|
||||
msgstr "Käyttäjän asetusten tallennuksessa tapahtui virhe"
|
||||
|
||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200
|
||||
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83
|
||||
#, 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"
|
||||
msgstr "Ryhmää ei löydy"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr "Ryhmää jonka ID on %{id} ei löydy"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:83
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:83
|
||||
msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr ""
|
||||
"Kirjautuminen epäonnistui - joko sähköpostiosoitteesi tai salasana on väärin."
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr "Jäsentä ei löydy"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
|
||||
#: lib/graphql/resolvers/user.ex:417
|
||||
#, elixir-format
|
||||
msgid "No profile found for the moderator user"
|
||||
msgstr "Moderaattorikäyttäjän profiilia ei löydy"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:195
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:195
|
||||
msgid "No user to validate with this email was found"
|
||||
msgstr "Käyttäjää tämän sähköpostin vahvistamiseksi ei löydy"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76
|
||||
#: lib/graphql/resolvers/user.ex:219
|
||||
#, 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"
|
||||
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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:125
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:125
|
||||
msgid "Registrations are not open"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:330
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:330
|
||||
msgid "The current password is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:382
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:382
|
||||
msgid "The new email doesn't seem to be valid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:379
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:379
|
||||
msgid "The new email must be different"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:333
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:333
|
||||
msgid "The new password must be different"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
|
||||
#: lib/graphql/resolvers/user.ex:442
|
||||
#, elixir-format
|
||||
msgid "The password provided is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:337
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:337
|
||||
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:215
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:215
|
||||
msgid "This user can't reset their password"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:79
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:79
|
||||
msgid "This user has been disabled"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:179
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:179
|
||||
msgid "Unable to validate user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:420
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:420
|
||||
msgid "User already disabled"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:487
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:487
|
||||
msgid "User requested is not logged-in"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:287
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:268
|
||||
msgid "You can't leave this group because you are the only administrator"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:387
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:387
|
||||
msgid "You need to be logged-in to change your email"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:345
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:345
|
||||
msgid "You need to be logged-in to change your password"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:212
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:210
|
||||
msgid "You need to be logged-in to delete a group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:447
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:447
|
||||
msgid "You need to be logged-in to delete your account"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:259
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:240
|
||||
msgid "You need to be logged-in to join a group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:292
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:273
|
||||
msgid "You need to be logged-in to leave a group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:177
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:175
|
||||
msgid "You need to be logged-in to update a group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:58
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:58
|
||||
msgid "You need to have admin access to list users"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:108
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:108
|
||||
msgid "You need to have an existing token to get a refresh token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
|
||||
msgid "You requested again a confirmation email too soon"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:128
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:128
|
||||
msgid "Your email is not on the allowlist"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
|
||||
msgid "Error while performing background task"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:27
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:27
|
||||
msgid "No profile found with this ID"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
|
||||
msgid "No remote profile found with this ID"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:69
|
||||
msgid "Only moderators and administrators can suspend a profile"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:99
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:99
|
||||
msgid "Only moderators and administrators can unsuspend a profile"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:24
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:24
|
||||
msgid "Only remote profiles may be refreshed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:61
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:61
|
||||
msgid "Profile already suspended"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:109
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:109
|
||||
msgid "Comment is already deleted"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:61
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:61
|
||||
msgid "Discussion not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
|
||||
msgid "Error while saving report"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238
|
||||
#: lib/graphql/resolvers/event.ex:283
|
||||
#, elixir-format
|
||||
msgid "Event not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
|
||||
msgid "Moderator profile is not owned by authenticated user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
|
||||
msgid "No profile found for user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:202
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:202
|
||||
msgid "Organizer profile is not owned by the user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{role}"
|
||||
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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:31
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:31
|
||||
msgid "Person with ID %{id} not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:52
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:52
|
||||
msgid "Person with username %{username} not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
|
||||
msgid "Post ID is not a valid ID"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
|
||||
msgid "Post doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:86
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:86
|
||||
msgid "Profile invited doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
|
||||
msgid "Profile is already a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
|
||||
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
|
||||
#: lib/graphql/resolvers/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:197 lib/graphql/resolvers/todos.ex:225
|
||||
#, elixir-format
|
||||
msgid "Profile is not member of group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
|
||||
msgid "Profile not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
|
||||
msgid "Provided moderator profile doesn't have permission on this event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:38
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:38
|
||||
msgid "Report not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
|
||||
msgid "Resource doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
|
||||
msgid "Todo doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:194
|
||||
#: lib/graphql/resolvers/todos.ex:219
|
||||
#, elixir-format
|
||||
msgid "Todo list doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
|
||||
msgid "User not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:185
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:188
|
||||
msgid "You are not a member of the group the discussion belongs to"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:89
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:89
|
||||
msgid "You are not a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:154
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:154
|
||||
msgid "You are not a moderator or admin for this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:55
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:55
|
||||
msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:44
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:41
|
||||
msgid "You are not allowed to create a feed token if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:117
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:117
|
||||
msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:81
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:78
|
||||
msgid "You are not allowed to delete a feed token if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:77
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:77
|
||||
msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:167
|
||||
#: lib/graphql/resolvers/participant.ex:196
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:158
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:105
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:105
|
||||
msgid "You cannot delete this comment"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:279
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:279
|
||||
msgid "You cannot delete this event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:92
|
||||
msgid "You cannot invite to this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:75
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
msgid "You don't have permission to delete this token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:52
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:52
|
||||
msgid "You need to be logged-in and a moderator to list action logs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:28
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:28
|
||||
msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:118
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:115
|
||||
msgid "You need to be logged-in and a moderator to update a report"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:43
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:43
|
||||
msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:220
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:236
|
||||
msgid "You need to be logged-in and an administrator to access admin settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:205
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:221
|
||||
msgid "You need to be logged-in and an administrator to access dashboard statistics"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:260
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:66
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:66
|
||||
msgid "You need to be logged-in to access discussions"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:93
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:93
|
||||
msgid "You need to be logged-in to access resources"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:213
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:213
|
||||
msgid "You need to be logged-in to create events"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:139
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:139
|
||||
msgid "You need to be logged-in to create posts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
|
||||
msgid "You need to be logged-in to create reports"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:129
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:129
|
||||
msgid "You need to be logged-in to create resources"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:291
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:291
|
||||
msgid "You need to be logged-in to delete an event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:209
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:209
|
||||
msgid "You need to be logged-in to delete posts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:187
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:187
|
||||
msgid "You need to be logged-in to delete resources"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:108
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:105
|
||||
msgid "You need to be logged-in to join an event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:207
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:204
|
||||
msgid "You need to be logged-in to leave an event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:252
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:252
|
||||
msgid "You need to be logged-in to update an event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:176
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:176
|
||||
msgid "You need to be logged-in to update posts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:158
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:158
|
||||
msgid "You need to be logged-in to update resources"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:210
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:210
|
||||
msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:59
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:59
|
||||
msgid "Reporter profile is not owned by authenticated user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:121
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:121
|
||||
msgid "Parent resource doesn't belong to this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr ""
|
||||
|
||||
#: lib/mobilizon/users/user.ex:109
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:109
|
||||
msgid "The chosen password is too short."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mobilizon/users/user.ex:138
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:138
|
||||
msgid "The registration token is already in use, this looks like an issue on our side."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mobilizon/users/user.ex:104
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:104
|
||||
msgid "This email is already used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:88
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:88
|
||||
msgid "Post not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:75
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:75
|
||||
msgid "Invalid arguments passed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:81
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:81
|
||||
msgid "Invalid credentials"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:79
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:79
|
||||
msgid "Reset your password to login"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
||||
msgid "Resource not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:92
|
||||
msgid "Something went wrong"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:74
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:74
|
||||
msgid "Unknown Resource"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:84
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:84
|
||||
msgid "You don't have permission to do this"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:76
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:76
|
||||
msgid "You need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:119
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:119
|
||||
msgid "You can't accept this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:137
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:137
|
||||
msgid "You can't reject this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:241
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:241
|
||||
msgid "You can't edit this event."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:244
|
||||
msgid "You can't attribute this event to this profile."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:140
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:140
|
||||
msgid "This invitation doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:182
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:182
|
||||
msgid "This member already has been rejected."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
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
@ -8,7 +8,7 @@
|
||||
# # to merge POT files into PO files.
|
||||
msgid ""
|
||||
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"
|
||||
"Language-Team: French <https://weblate.framasoft.org/projects/mobilizon/backend-errors/fr/>\n"
|
||||
"Language: fr\n"
|
||||
@ -99,15 +99,15 @@ msgstr "doit être égal à %{number}"
|
||||
msgid "Cannot refresh the token"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83
|
||||
#: 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"
|
||||
msgstr "Groupe non trouvé"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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/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
|
||||
#: 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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "ID de l'événement non trouvé"
|
||||
|
||||
@ -331,20 +331,20 @@ msgstr "ID de l'événement non trouvé"
|
||||
msgid "Event not found"
|
||||
msgstr "Événement non trouvé"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:87 lib/graphql/resolvers/participant.ex:128
|
||||
#: lib/graphql/resolvers/participant.ex:160
|
||||
#: 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"
|
||||
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"
|
||||
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"
|
||||
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}"
|
||||
msgstr "Aucune discussion avec l'ID %{id}"
|
||||
|
||||
@ -352,7 +352,7 @@ msgstr "Aucune discussion avec l'ID %{id}"
|
||||
msgid "No profile found for user"
|
||||
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"
|
||||
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"
|
||||
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}"
|
||||
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:237 lib/graphql/resolvers/participant.ex:247
|
||||
#: 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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Ce jeton est invalide"
|
||||
|
||||
@ -437,27 +437,27 @@ msgstr "Ce todo n'existe pas"
|
||||
msgid "Todo list doesn't exist"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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
|
||||
msgid "You don't have the right to remove this member."
|
||||
msgstr "Vous n'avez pas les droits pour supprimer ce·tte membre."
|
||||
|
||||
#: lib/mobilizon/actors/actor.ex:344
|
||||
msgid "This username is already taken."
|
||||
msgstr "Cet identifiant est déjà pris."
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -93,782 +93,786 @@ msgstr "ten que ser maior ou igual a %{number}"
|
||||
msgid "must be equal to %{number}"
|
||||
msgstr "ten que ser igual a %{number}"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:103
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:103
|
||||
msgid "Cannot refresh the token"
|
||||
msgstr "Non puido actualizar o token"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr "A usuaria actual non é dona da creadora do perfil"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr "O perfil actual non é membro deste grupo"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:207
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:205
|
||||
msgid "Current profile is not an administrator of the selected group"
|
||||
msgstr "O perfil actual non é administrador do grupo seleccionado"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:512
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:512
|
||||
msgid "Error while saving user settings"
|
||||
msgstr "Erro ó gardar os axustes de usuaria"
|
||||
|
||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200
|
||||
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83
|
||||
#, 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"
|
||||
msgstr "Grupo non atopado"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr "Grupo con ID %{id} non atopado"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:83
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:83
|
||||
msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr ""
|
||||
"A autenticación non foi posible, o contrasinal ou o email non son correctos."
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr "Membro non atopado"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
|
||||
#: lib/graphql/resolvers/user.ex:417
|
||||
#, elixir-format
|
||||
msgid "No profile found for the moderator user"
|
||||
msgstr "Non se atopou o perfil para a usuaria moderadora"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:195
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:195
|
||||
msgid "No user to validate with this email was found"
|
||||
msgstr "Non se atopou unha usuaria con este email para validar"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76
|
||||
#: lib/graphql/resolvers/user.ex:219
|
||||
#, 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"
|
||||
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
|
||||
#: 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"
|
||||
msgstr "O perfil non pertence a unha usuaria autenticada"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:125
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:125
|
||||
msgid "Registrations are not open"
|
||||
msgstr "O rexistro está pechado"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:330
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:330
|
||||
msgid "The current password is invalid"
|
||||
msgstr "O contrasinal actual non é válido"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:382
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:382
|
||||
msgid "The new email doesn't seem to be valid"
|
||||
msgstr "O novo email non semella ser válido"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:379
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:379
|
||||
msgid "The new email must be different"
|
||||
msgstr "O novo email ten que ser diferente"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:333
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:333
|
||||
msgid "The new password must be different"
|
||||
msgstr "O novo contrasinal ten que ser diferente"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
|
||||
#: lib/graphql/resolvers/user.ex:442
|
||||
#, elixir-format
|
||||
msgid "The password provided is invalid"
|
||||
msgstr "O contrasinal escrito non é válido"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:337
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:337
|
||||
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
|
||||
msgstr ""
|
||||
"O contrasinal escollido é demasiado curto, ten que ter 6 caracteres polo "
|
||||
"menos."
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:215
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:215
|
||||
msgid "This user can't reset their password"
|
||||
msgstr "Esta usuaria non pode restablecer o seu contrasinal"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:79
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:79
|
||||
msgid "This user has been disabled"
|
||||
msgstr "Estab usuaria foi desactivada"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:179
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:179
|
||||
msgid "Unable to validate user"
|
||||
msgstr "Non se puido validar a usuaria"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:420
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:420
|
||||
msgid "User already disabled"
|
||||
msgstr "A usuaria xa está desactivada"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:487
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:487
|
||||
msgid "User requested is not logged-in"
|
||||
msgstr "A usuaria solicitada non está conectada"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr "Xa es membro deste grupo"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:287
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:268
|
||||
msgid "You can't leave this group because you are the only administrator"
|
||||
msgstr "Non podes deixar este grupo porque es a única administradora"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr "Non podes unirte a este grupo"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr "Non podes facer listas de grupos porque non es moderadora."
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:387
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:387
|
||||
msgid "You need to be logged-in to change your email"
|
||||
msgstr "Tes que estar conectada para poder cambiar o email"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:345
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:345
|
||||
msgid "You need to be logged-in to change your password"
|
||||
msgstr "Tes que estar conectada para poder cambiar o contrasinal"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:212
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:210
|
||||
msgid "You need to be logged-in to delete a group"
|
||||
msgstr "Tes que estar conectada para poder eleminar un grupo"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:447
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:447
|
||||
msgid "You need to be logged-in to delete your account"
|
||||
msgstr "Tes que estar conectada para poder eliminar a conta"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:259
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:240
|
||||
msgid "You need to be logged-in to join a group"
|
||||
msgstr "Tes que estar conectada para poder unirte a un grupo"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:292
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:273
|
||||
msgid "You need to be logged-in to leave a group"
|
||||
msgstr "Tes que estar conectada para poder deixar un grupo"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:177
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:175
|
||||
msgid "You need to be logged-in to update a group"
|
||||
msgstr "Tes que estar conectada para poder actualizar un grupo"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:58
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:58
|
||||
msgid "You need to have admin access to list users"
|
||||
msgstr "Tes que ter acceso de administración para ver lista de usuarias"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:108
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:108
|
||||
msgid "You need to have an existing token to get a refresh token"
|
||||
msgstr "Tes que ter un token existente para obter un token actualizado"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
|
||||
msgid "You requested again a confirmation email too soon"
|
||||
msgstr "Solicitaches demasiado pronto un email de confirmación"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:128
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:128
|
||||
msgid "Your email is not on the allowlist"
|
||||
msgstr "O teu email non está na lista dos permitidos"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
|
||||
msgid "Error while performing background task"
|
||||
msgstr "Erro ó executar a tarefa en segundo plano"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:27
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:27
|
||||
msgid "No profile found with this ID"
|
||||
msgstr "Non se atopa o perfil con este ID"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
|
||||
msgid "No remote profile found with this ID"
|
||||
msgstr "Non se atopa o perfil remoto con este ID"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:69
|
||||
msgid "Only moderators and administrators can suspend a profile"
|
||||
msgstr "Só moderadoras e administradoras poden suspender un perfil"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:99
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:99
|
||||
msgid "Only moderators and administrators can unsuspend a profile"
|
||||
msgstr "Só moderadoras e administradoras pode restablecer un perfil"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:24
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:24
|
||||
msgid "Only remote profiles may be refreshed"
|
||||
msgstr "Só os perfís remotos poderían ser actualizdos"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:61
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:61
|
||||
msgid "Profile already suspended"
|
||||
msgstr "O perfil xa está suspendido"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr "A túa instancia require un email válido"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr "Non está permitida a participación ánonima"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr "Non se pode eliminar a última administradora dun grupo"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr "Non se pode eliminar a última identidade dunha usuaria"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:109
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:109
|
||||
msgid "Comment is already deleted"
|
||||
msgstr "O comentario xa foi eliminado"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:61
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:61
|
||||
msgid "Discussion not found"
|
||||
msgstr "Non se atopa a conversa"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
|
||||
msgid "Error while saving report"
|
||||
msgstr "Erro ó gardar a denuncia"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr "Erro ó actualizar a denuncia"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr "Non se atopou o ID do evento"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238
|
||||
#: lib/graphql/resolvers/event.ex:283
|
||||
#, elixir-format
|
||||
msgid "Event not found"
|
||||
msgstr "Evento non atopado"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#, 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"
|
||||
msgstr "Non existe un evento co ID %{id}"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr "Erro interno"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
|
||||
msgid "Moderator profile is not owned by authenticated user"
|
||||
msgstr "O perfil da moderadora non pertence a unha usuaria autenticada"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr "Non hai conversa con ID %{id}"
|
||||
|
||||
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
|
||||
msgid "No profile found for user"
|
||||
msgstr "Non se atopou o perfil da usuaria"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr "Non hai tal token da fonte"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:202
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:202
|
||||
msgid "Organizer profile is not owned by the user"
|
||||
msgstr "O perfil da organización non pertence á usuaria"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{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
|
||||
#: 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"
|
||||
msgstr "Non se atopou a participante"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:31
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:31
|
||||
msgid "Person with ID %{id} not found"
|
||||
msgstr "Non se atopou a persoa con ID %{id}"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:52
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:52
|
||||
msgid "Person with username %{username} not found"
|
||||
msgstr "Non se atopa a persoa con nome de usuaria %{username}"
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr "Non se atopa a imaxe con ID %{id}"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
|
||||
msgid "Post ID is not a valid ID"
|
||||
msgstr "ID da publicación non é un ID válido"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
|
||||
msgid "Post doesn't exist"
|
||||
msgstr "Non existe a publicación"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:86
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:86
|
||||
msgid "Profile invited doesn't exist"
|
||||
msgstr "O perfil convidado non existe"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
|
||||
msgid "Profile is already a member of this group"
|
||||
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: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/todos.ex:84 lib/graphql/resolvers/todos.ex:102 lib/graphql/resolvers/todos.ex:174
|
||||
#: lib/graphql/resolvers/todos.ex:197 lib/graphql/resolvers/todos.ex:225
|
||||
#, elixir-format
|
||||
msgid "Profile is not member of group"
|
||||
msgstr "O perfil non é membro do grupo"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
|
||||
msgid "Profile not found"
|
||||
msgstr "Perfil non atopado"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
|
||||
msgid "Provided moderator profile doesn't have permission on this event"
|
||||
msgstr "O perfil da moderadora proporcionado non ten permisos neste evento"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:38
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:38
|
||||
msgid "Report not found"
|
||||
msgstr "Denuncia non atopada"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
|
||||
msgid "Resource doesn't exist"
|
||||
msgstr "Non existe o recurso"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr "Este evento xa acadou a súa capacidade máxima"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr "Este token non é válido"
|
||||
|
||||
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
|
||||
msgid "Todo doesn't exist"
|
||||
msgstr "Lista de tarefas non existe"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:194
|
||||
#: lib/graphql/resolvers/todos.ex:219
|
||||
#, elixir-format
|
||||
msgid "Todo list doesn't exist"
|
||||
msgstr "A lista de tarefas non existe"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr "Non existe o token"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr "O token non é un UUID válido"
|
||||
|
||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
|
||||
msgid "User not found"
|
||||
msgstr "Usuaria non atopada"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr "Xa tes un perfil para esta usuaria"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr "Xa es unha participante neste evento"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:185
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:188
|
||||
msgid "You are not a member of the group the discussion belongs to"
|
||||
msgstr "Non es membro do grupo ó que pertence a conversa"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:89
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:89
|
||||
msgid "You are not a member of this group"
|
||||
msgstr "Non es membro deste grupo"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:154
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:154
|
||||
msgid "You are not a moderator or admin for this group"
|
||||
msgstr "Non es moderadora ou administradora deste grupo"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:55
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:55
|
||||
msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr "Non tes permiso para crear un comentario sen estar conectada"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:44
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:41
|
||||
msgid "You are not allowed to create a feed token if not connected"
|
||||
msgstr "Non tes permiso para crear un token da fonte se non estás conectada"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:117
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:117
|
||||
msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr "Non tes permiso para eliminar un comentario se non estás conectada"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:81
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:78
|
||||
msgid "You are not allowed to delete a feed token if not connected"
|
||||
msgstr "Non tes permiso para eliminar o token da fonte se non estás conectada"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:77
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:77
|
||||
msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr "Non tes permiso para actualizar un comentario se non estás conectada"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:167
|
||||
#: lib/graphql/resolvers/participant.ex:196
|
||||
#, 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"
|
||||
msgstr ""
|
||||
"Non podes saír do evento porque es a única creadora do evento que participa"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:158
|
||||
#, 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"
|
||||
msgstr ""
|
||||
"Non podes adxudicarte un rol menor neste grupo porque es a única "
|
||||
"administradora"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:105
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:105
|
||||
msgid "You cannot delete this comment"
|
||||
msgstr "Non podes eliminar este comentario"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:279
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:279
|
||||
msgid "You cannot delete this event"
|
||||
msgstr "Non podes eliminar este evento"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:92
|
||||
msgid "You cannot invite to this group"
|
||||
msgstr "Non podes convidar a este grupo"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:75
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
msgid "You don't have permission to delete this token"
|
||||
msgstr "Non tes permiso para eliminar este token"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:52
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:52
|
||||
msgid "You need to be logged-in and a moderator to list action logs"
|
||||
msgstr ""
|
||||
"Tes que estar conectada e ser moderadora para ver listas de rexistros de "
|
||||
"accións"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:28
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:28
|
||||
msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr "Tes que estar conectada e ser moderadora para ver listas de denuncias"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:118
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:115
|
||||
msgid "You need to be logged-in and a moderator to update a report"
|
||||
msgstr "Tes que estas conectada e ser moderadora para actualizar unha denuncia"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:43
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:43
|
||||
msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr "Tes que estar conectada e ser moderadora para ver unha denuncia"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:220
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:236
|
||||
msgid "You need to be logged-in and an administrator to access admin settings"
|
||||
msgstr ""
|
||||
"Tes que estar conectada e ser administradora para acceder ós axustes de "
|
||||
"administración"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:205
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:221
|
||||
msgid "You need to be logged-in and an administrator to access dashboard statistics"
|
||||
msgstr ""
|
||||
"Tes que estar conectada e ser administradora para acceder ó taboleiro de "
|
||||
"estatísticas"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:260
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
"Tes que estar conectada e ser administradora para gardar os axustes de "
|
||||
"administración"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:66
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:66
|
||||
msgid "You need to be logged-in to access discussions"
|
||||
msgstr "Tes que estar conectada para acceder ás conversas"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:93
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:93
|
||||
msgid "You need to be logged-in to access resources"
|
||||
msgstr "Tes que estar conectada para acceder ós recursos"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:213
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:213
|
||||
msgid "You need to be logged-in to create events"
|
||||
msgstr "Tes que estar conectada para crear eventos"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:139
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:139
|
||||
msgid "You need to be logged-in to create posts"
|
||||
msgstr "Tes que estar conectada para crear publicacións"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
|
||||
msgid "You need to be logged-in to create reports"
|
||||
msgstr "Tes que estar conectada para crear denuncias"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:129
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:129
|
||||
msgid "You need to be logged-in to create resources"
|
||||
msgstr "Tes que estar conectada para crear recursos"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:291
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:291
|
||||
msgid "You need to be logged-in to delete an event"
|
||||
msgstr "Tes que estar conectada para eliminar un evento"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:209
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:209
|
||||
msgid "You need to be logged-in to delete posts"
|
||||
msgstr "Tes que estar conectada para eliminar publicacións"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:187
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:187
|
||||
msgid "You need to be logged-in to delete resources"
|
||||
msgstr "Tes que estar conectada para eliminar recursos"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:108
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:105
|
||||
msgid "You need to be logged-in to join an event"
|
||||
msgstr "Tes que estar conectada para unirte a un evento"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:207
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:204
|
||||
msgid "You need to be logged-in to leave an event"
|
||||
msgstr "Tes que estar conectada para saír dun evento"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:252
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:252
|
||||
msgid "You need to be logged-in to update an event"
|
||||
msgstr "Tes que estar conectada para actualizar un evento"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:176
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:176
|
||||
msgid "You need to be logged-in to update posts"
|
||||
msgstr "Tes que estar conectada para actualizar publicacións"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:158
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:158
|
||||
msgid "You need to be logged-in to update resources"
|
||||
msgstr "Tes que estar conectada para actualizar recursos"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:210
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:210
|
||||
msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr "Tes que estar conectada para ver vista previa dun recurso"
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr "Tes que estar conectada para subir unha imaxe"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr "O ID da denunciante non concorda co ID do perfil anónimo"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:59
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:59
|
||||
msgid "Reporter profile is not owned by authenticated user"
|
||||
msgstr "O perfil da denunciante non pertence á usuaria autenticada"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:121
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:121
|
||||
msgid "Parent resource doesn't belong to this group"
|
||||
msgstr "O recurso relacionado non pertence a este grupo"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr "O ID do perfil proporcionado non é o perfil anónimo"
|
||||
|
||||
#: lib/mobilizon/users/user.ex:109
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:109
|
||||
msgid "The chosen password is too short."
|
||||
msgstr "O contrasinal elexido é demasiado curto."
|
||||
|
||||
#: lib/mobilizon/users/user.ex:138
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:138
|
||||
msgid "The registration token is already in use, this looks like an issue on our side."
|
||||
msgstr ""
|
||||
"O token de rexistro xa está a ser usado, semella un problema pola nosa parte."
|
||||
|
||||
#: lib/mobilizon/users/user.ex:104
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:104
|
||||
msgid "This email is already used."
|
||||
msgstr "Este email xa se está a usar."
|
||||
|
||||
#: lib/graphql/error.ex:88
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:88
|
||||
msgid "Post not found"
|
||||
msgstr "Non se atopa a publicación"
|
||||
|
||||
#: lib/graphql/error.ex:75
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:75
|
||||
msgid "Invalid arguments passed"
|
||||
msgstr "Argumentos proporcionados non válidos"
|
||||
|
||||
#: lib/graphql/error.ex:81
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:81
|
||||
msgid "Invalid credentials"
|
||||
msgstr "Credenciais non válidas"
|
||||
|
||||
#: lib/graphql/error.ex:79
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:79
|
||||
msgid "Reset your password to login"
|
||||
msgstr "Restablece o teu contrasinal para conectar"
|
||||
|
||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
||||
msgid "Resource not found"
|
||||
msgstr "Recurso non atopado"
|
||||
|
||||
#: lib/graphql/error.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:92
|
||||
msgid "Something went wrong"
|
||||
msgstr "Algo foi mal"
|
||||
|
||||
#: lib/graphql/error.ex:74
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:74
|
||||
msgid "Unknown Resource"
|
||||
msgstr "Recurso descoñecido"
|
||||
|
||||
#: lib/graphql/error.ex:84
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:84
|
||||
msgid "You don't have permission to do this"
|
||||
msgstr "Non tes permiso para facer isto"
|
||||
|
||||
#: lib/graphql/error.ex:76
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:76
|
||||
msgid "You need to be logged in"
|
||||
msgstr "Tes que estar conectada"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:119
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:119
|
||||
msgid "You can't accept this invitation with this profile."
|
||||
msgstr "Non podes aceptar este convite con este perfil."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:137
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:137
|
||||
msgid "You can't reject this invitation with this profile."
|
||||
msgstr "Non podes rexeitar este convite con este perfil."
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr "O ficheiro non ten un tipo MIME permitido."
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr "O perfil non é administrador do grupo"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:241
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:241
|
||||
msgid "You can't edit this event."
|
||||
msgstr "Non podes editar este evento."
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:244
|
||||
msgid "You can't attribute this event to this profile."
|
||||
msgstr "Non podes atribuír este evento a este perfil."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:140
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:140
|
||||
msgid "This invitation doesn't exist."
|
||||
msgstr "O convite non existe."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:182
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:182
|
||||
msgid "This member already has been rejected."
|
||||
msgstr "Este membro xa foi rexeitado."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
msgstr "Non tes permiso para eliminar este membro."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/actors/actor.ex:344
|
||||
msgid "This username is already taken."
|
||||
msgstr ""
|
||||
|
1369
priv/gettext/hu/LC_MESSAGES/default.po
Normal file
1369
priv/gettext/hu/LC_MESSAGES/default.po
Normal file
File diff suppressed because it is too large
Load Diff
@ -109,789 +109,793 @@ msgstr "nagyobbnak vagy egyenlőnek kell lennie mint %{number}"
|
||||
msgid "must be equal to %{number}"
|
||||
msgstr "egyenlőnek kell lennie ezzel: %{number}"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:103
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:103
|
||||
msgid "Cannot refresh the token"
|
||||
msgstr "Nem lehet frissíteni a tokent"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr "A létrehozó profilját nem a jelenlegi felhasználó birtokolja"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr "A jelenlegi profil nem tagja ennek a csoportnak"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:207
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:205
|
||||
msgid "Current profile is not an administrator of the selected group"
|
||||
msgstr "A jelenlegi profil nem adminisztrátora a kijelölt csoportnak"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:512
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:512
|
||||
msgid "Error while saving user settings"
|
||||
msgstr "Hiba a felhasználói beállítások mentésekor"
|
||||
|
||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200
|
||||
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83
|
||||
#, 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"
|
||||
msgstr "Nem található a csoport"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr "Nem található %{id} azonosítóval rendelkező csoport"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:83
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:83
|
||||
msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr "Lehetetlen hitelesíteni, vagy az e-mail, vagy a jelszó érvénytelen."
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr "Nem található a tag"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
|
||||
#: lib/graphql/resolvers/user.ex:417
|
||||
#, elixir-format
|
||||
msgid "No profile found for the moderator user"
|
||||
msgstr "Nem található profil a moderátor felhasználóhoz"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:195
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:195
|
||||
msgid "No user to validate with this email was found"
|
||||
msgstr "Nem található ezzel az e-mail-címmel ellenőrzendő felhasználó"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76
|
||||
#: lib/graphql/resolvers/user.ex:219
|
||||
#, 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"
|
||||
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
|
||||
#: 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"
|
||||
msgstr "A profilt nem hitelesített felhasználó birtokolja"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:125
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:125
|
||||
msgid "Registrations are not open"
|
||||
msgstr "A regisztrációk nincsenek nyitva"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:330
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:330
|
||||
msgid "The current password is invalid"
|
||||
msgstr "A jelenlegi jelszó érvénytelen"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:382
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:382
|
||||
msgid "The new email doesn't seem to be valid"
|
||||
msgstr "Az új e-mail-cím nem tűnik érvényesnek"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:379
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:379
|
||||
msgid "The new email must be different"
|
||||
msgstr "Az új e-mail-címnek eltérőnek kell lennie"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:333
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:333
|
||||
msgid "The new password must be different"
|
||||
msgstr "Az új jelszónak eltérőnek kell lennie"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
|
||||
#: lib/graphql/resolvers/user.ex:442
|
||||
#, elixir-format
|
||||
msgid "The password provided is invalid"
|
||||
msgstr "A megadott jelszó érvénytelen"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:337
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:337
|
||||
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
|
||||
msgstr ""
|
||||
"A választott jelszó túl rövid. Győződjön meg arról, hogy a jelszava "
|
||||
"tartalmazzon legalább 6 karaktert."
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:215
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:215
|
||||
msgid "This user can't reset their password"
|
||||
msgstr "Ez a felhasználó nem tudja visszaállítani a jelszavát"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:79
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:79
|
||||
msgid "This user has been disabled"
|
||||
msgstr "Ez a felhasználó le lett tiltva"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:179
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:179
|
||||
msgid "Unable to validate user"
|
||||
msgstr "Nem lehet ellenőrizni a felhasználót"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:420
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:420
|
||||
msgid "User already disabled"
|
||||
msgstr "A felhasználó már le van tiltva"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:487
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:487
|
||||
msgid "User requested is not logged-in"
|
||||
msgstr "A kért felhasználó nincs bejelentkezve"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr "Már tagja ennek a csoportnak"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:287
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:268
|
||||
msgid "You can't leave this group because you are the only administrator"
|
||||
msgstr "Nem hagyhatja el ezt a csoportot, mert Ön az egyedüli adminisztrátor"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr "Nem csatlakozhat ehhez a csoporthoz"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr "Lehet, hogy nem sorolhatja fel a csoportokat, hacsak nem moderátor."
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:387
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:387
|
||||
msgid "You need to be logged-in to change your email"
|
||||
msgstr "Bejelentkezve kell lennie az e-mail-címe megváltoztatásához"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:345
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:345
|
||||
msgid "You need to be logged-in to change your password"
|
||||
msgstr "Bejelentkezve kell lennie a jelszava megváltoztatásához"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:212
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:210
|
||||
msgid "You need to be logged-in to delete a group"
|
||||
msgstr "Bejelentkezve kell lennie egy csoport törléséhez"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:447
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:447
|
||||
msgid "You need to be logged-in to delete your account"
|
||||
msgstr "Bejelentkezve kell lennie a fiókja törléséhez"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:259
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:240
|
||||
msgid "You need to be logged-in to join a group"
|
||||
msgstr "Bejelentkezve kell lennie egy csoporthoz való csatlakozáshoz"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:292
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:273
|
||||
msgid "You need to be logged-in to leave a group"
|
||||
msgstr "Bejelentkezve kell lennie egy csoportból való kilépéshez"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:177
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:175
|
||||
msgid "You need to be logged-in to update a group"
|
||||
msgstr "Bejelentkezve kell lennie egy csoport frissítéséhez"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:58
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:58
|
||||
msgid "You need to have admin access to list users"
|
||||
msgstr "Adminisztrátori hozzáférésre van szüksége a felhasználók felsorolásához"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:108
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:108
|
||||
msgid "You need to have an existing token to get a refresh token"
|
||||
msgstr "Szüksége van egy meglévő tokenre egy frissítési token beszerzéséhez"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
|
||||
msgid "You requested again a confirmation email too soon"
|
||||
msgstr "Túl hamar kért újra egy megerősítő e-mailt"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:128
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:128
|
||||
msgid "Your email is not on the allowlist"
|
||||
msgstr "Az e-mail-címe nincs rajta az engedélyezési listán"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
|
||||
msgid "Error while performing background task"
|
||||
msgstr "Hiba a háttérfeladat végrehajtásakor"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:27
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:27
|
||||
msgid "No profile found with this ID"
|
||||
msgstr "Nem található profil ezzel az azonosítóval"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
|
||||
msgid "No remote profile found with this ID"
|
||||
msgstr "Nem található távoli profil ezzel az azonosítóval"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:69
|
||||
msgid "Only moderators and administrators can suspend a profile"
|
||||
msgstr "Csak moderátorok és adminisztrátorok függeszthetnek fel egy profilt"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:99
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:99
|
||||
msgid "Only moderators and administrators can unsuspend a profile"
|
||||
msgstr ""
|
||||
"Csak moderátorok és adminisztrátorok szüntethetik meg egy profil "
|
||||
"felfüggesztését"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:24
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:24
|
||||
msgid "Only remote profiles may be refreshed"
|
||||
msgstr "Csak távoli profilokat lehet frissíteni"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:61
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:61
|
||||
msgid "Profile already suspended"
|
||||
msgstr "A profil már fel van függesztve"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr "Érvényes e-mail-címet követelt meg az Ön példánya"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr "A névtelen részvétel nincs engedélyezve"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr "Nem lehet eltávolítani egy csoport utolsó adminisztrátorát"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr "Nem lehet eltávolítani egy felhasználó utolsó személyazonosságát"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:109
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:109
|
||||
msgid "Comment is already deleted"
|
||||
msgstr "A hozzászólást már törölték"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:61
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:61
|
||||
msgid "Discussion not found"
|
||||
msgstr "Nem található a megbeszélés"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
|
||||
msgid "Error while saving report"
|
||||
msgstr "Hiba a jelentés mentésekor"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr "Hiba a jelentés frissítésekor"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr "Nem található az eseményazonosító"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238
|
||||
#: lib/graphql/resolvers/event.ex:283
|
||||
#, elixir-format
|
||||
msgid "Event not found"
|
||||
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
|
||||
#: 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"
|
||||
msgstr "Ezzel a(z) %{id} azonosítóval rendelkező esemény nem létezik"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr "Belső hiba"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
|
||||
msgid "Moderator profile is not owned by authenticated user"
|
||||
msgstr "A moderátor profilját nem hitelesített felhasználó birtokolja"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr "Nincs %{id} azonosítóval rendelkező megbeszélés"
|
||||
|
||||
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
|
||||
msgid "No profile found for user"
|
||||
msgstr "Nem található profil a felhasználóhoz"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr "Nincs ilyen hírforrástoken"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:202
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:202
|
||||
msgid "Organizer profile is not owned by the user"
|
||||
msgstr "A szervező profilját nem a felhasználó birtokolja"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{role}"
|
||||
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
|
||||
#: 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"
|
||||
msgstr "Nem található a résztvevő"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:31
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:31
|
||||
msgid "Person with ID %{id} not found"
|
||||
msgstr "Nem található %{id} azonosítóval rendelkező személy"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:52
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:52
|
||||
msgid "Person with username %{username} not found"
|
||||
msgstr "Nem található %{username} felhasználónévvel rendelkező személy"
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr "Nem található %{id} azonosítóval rendelkező fénykép"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
|
||||
msgid "Post ID is not a valid ID"
|
||||
msgstr "A hozzászólás-azonosító nem érvényes azonosító"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
|
||||
msgid "Post doesn't exist"
|
||||
msgstr "A hozzászólás nem létezik"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:86
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:86
|
||||
msgid "Profile invited doesn't exist"
|
||||
msgstr "A meghívott profil nem létezik"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
|
||||
msgid "Profile is already a member of this group"
|
||||
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: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/todos.ex:84 lib/graphql/resolvers/todos.ex:102 lib/graphql/resolvers/todos.ex:174
|
||||
#: lib/graphql/resolvers/todos.ex:197 lib/graphql/resolvers/todos.ex:225
|
||||
#, elixir-format
|
||||
msgid "Profile is not member of group"
|
||||
msgstr "A profil nem tagja a csoportnak"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
|
||||
msgid "Profile not found"
|
||||
msgstr "Nem található a profil"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
|
||||
msgid "Provided moderator profile doesn't have permission on this event"
|
||||
msgstr "A megadott moderátorprofilnak nincs jogosultsága ezen az eseményen"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:38
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:38
|
||||
msgid "Report not found"
|
||||
msgstr "Nem található a jelentés"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
|
||||
msgid "Resource doesn't exist"
|
||||
msgstr "Az erőforrás nem létezik"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr "Az esemény már elérte a legnagyobb kapacitását"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr "Ez a token érvénytelen"
|
||||
|
||||
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
|
||||
msgid "Todo doesn't exist"
|
||||
msgstr "A tennivaló nem létezik"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:194
|
||||
#: lib/graphql/resolvers/todos.ex:219
|
||||
#, elixir-format
|
||||
msgid "Todo list doesn't exist"
|
||||
msgstr "A tennivalólista nem létezik"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr "A token nem létezik"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr "A token nem érvényes UUID"
|
||||
|
||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
|
||||
msgid "User not found"
|
||||
msgstr "Nem található a felhasználó"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr "Már rendelkezik profillal ehhez a felhasználóhoz"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr "Már résztvevője ennek az eseménynek"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:185
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:188
|
||||
msgid "You are not a member of the group the discussion belongs to"
|
||||
msgstr "Nem tagja annak a csoportnak, amelyhez a megbeszélés tartozik"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:89
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:89
|
||||
msgid "You are not a member of this group"
|
||||
msgstr "Nem tagja ennek a csoportnak"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:154
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:154
|
||||
msgid "You are not a moderator or admin for this group"
|
||||
msgstr "Nem moderátor vagy adminisztrátor ennél a csoportnál"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:55
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:55
|
||||
msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr "Nem hozhat létre hozzászólást, ha nincs kapcsolódva"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:44
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:41
|
||||
msgid "You are not allowed to create a feed token if not connected"
|
||||
msgstr "Nem hozhat létre hírforrástokent, ha nincs kapcsolódva"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:117
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:117
|
||||
msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr "Nem törölhet hozzászólást, ha nincs kapcsolódva"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:81
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:78
|
||||
msgid "You are not allowed to delete a feed token if not connected"
|
||||
msgstr "Nem törölhet hírforrástokent, ha nincs kapcsolódva"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:77
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:77
|
||||
msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr "Nem frissíthet hozzászólást, ha nincs kapcsolódva"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:167
|
||||
#: lib/graphql/resolvers/participant.ex:196
|
||||
#, 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"
|
||||
msgstr ""
|
||||
"Nem hagyhatja el az eseményt, mert Ön az egyedüli eseménylétrehozó résztvevő"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:158
|
||||
#, 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"
|
||||
msgstr ""
|
||||
"Nem állíthatja magát alacsonyabb tagszerepre ennél a csoportnál, mert Ön az "
|
||||
"egyedüli adminisztrátor"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:105
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:105
|
||||
msgid "You cannot delete this comment"
|
||||
msgstr "Nem tudja törölni ezt a hozzászólást"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:279
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:279
|
||||
msgid "You cannot delete this event"
|
||||
msgstr "Nem tudja törölni ezt az eseményt"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:92
|
||||
msgid "You cannot invite to this group"
|
||||
msgstr "Nem tud meghívni ebbe a csoportba"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:75
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
msgid "You don't have permission to delete this token"
|
||||
msgstr "Nincs jogosultsága a token törléséhez"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:52
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:52
|
||||
msgid "You need to be logged-in and a moderator to list action logs"
|
||||
msgstr ""
|
||||
"Bejelentkezve kell lennie és moderátornak kell lennie a műveletnaplók "
|
||||
"felsorolásához"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:28
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:28
|
||||
msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr ""
|
||||
"Bejelentkezve kell lennie és moderátornak kell lennie a jelentések "
|
||||
"felsorolásához"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:118
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:115
|
||||
msgid "You need to be logged-in and a moderator to update a report"
|
||||
msgstr ""
|
||||
"Bejelentkezve kell lennie és moderátornak kell lennie egy jelentés "
|
||||
"frissítéséhez"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:43
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:43
|
||||
msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr ""
|
||||
"Bejelentkezve kell lennie és moderátornak kell lennie egy jelentés "
|
||||
"megtekintéséhez"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:220
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:236
|
||||
msgid "You need to be logged-in and an administrator to access admin settings"
|
||||
msgstr ""
|
||||
"Bejelentkezve kell lennie és adminisztrátornak kell lennie az "
|
||||
"adminisztrátori beállításokhoz való hozzáféréshez"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:205
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:221
|
||||
msgid "You need to be logged-in and an administrator to access dashboard statistics"
|
||||
msgstr ""
|
||||
"Bejelentkezve kell lennie és adminisztrátornak kell lennie a vezérlőpulti "
|
||||
"statisztikákhoz való hozzáféréshez"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:260
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
"Bejelentkezve kell lennie és adminisztrátornak kell lennie az "
|
||||
"adminisztrátori beállítások mentéséhez"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:66
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:66
|
||||
msgid "You need to be logged-in to access discussions"
|
||||
msgstr "Bejelentkezve kell lennie a megbeszélésekhez való hozzáféréshez"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:93
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:93
|
||||
msgid "You need to be logged-in to access resources"
|
||||
msgstr "Bejelentkezve kell lennie az erőforrásokhoz való hozzáféréshez"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:213
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:213
|
||||
msgid "You need to be logged-in to create events"
|
||||
msgstr "Bejelentkezve kell lennie az események létrehozásához"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:139
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:139
|
||||
msgid "You need to be logged-in to create posts"
|
||||
msgstr "Bejelentkezve kell lennie a hozzászólások létrehozásához"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
|
||||
msgid "You need to be logged-in to create reports"
|
||||
msgstr "Bejelentkezve kell lennie a jelentések létrehozásához"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:129
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:129
|
||||
msgid "You need to be logged-in to create resources"
|
||||
msgstr "Bejelentkezve kell lennie az erőforrások létrehozásához"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:291
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:291
|
||||
msgid "You need to be logged-in to delete an event"
|
||||
msgstr "Bejelentkezve kell lennie egy esemény törléséhez"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:209
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:209
|
||||
msgid "You need to be logged-in to delete posts"
|
||||
msgstr "Bejelentkezve kell lennie a hozzászólások törléséhez"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:187
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:187
|
||||
msgid "You need to be logged-in to delete resources"
|
||||
msgstr "Bejelentkezve kell lennie az erőforrások törléséhez"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:108
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:105
|
||||
msgid "You need to be logged-in to join an event"
|
||||
msgstr "Bejelentkezve kell lennie egy eseményhez való csatlakozáshoz"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:207
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:204
|
||||
msgid "You need to be logged-in to leave an event"
|
||||
msgstr "Bejelentkezve kell lennie egy esemény elhagyásához"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:252
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:252
|
||||
msgid "You need to be logged-in to update an event"
|
||||
msgstr "Bejelentkezve kell lennie egy esemény frissítéséhez"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:176
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:176
|
||||
msgid "You need to be logged-in to update posts"
|
||||
msgstr "Bejelentkezve kell lennie a hozzászólások frissítéséhez"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:158
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:158
|
||||
msgid "You need to be logged-in to update resources"
|
||||
msgstr "Bejelentkezve kell lennie az erőforrások frissítéséhez"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:210
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:210
|
||||
msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr "Bejelentkezve kell lennie egy erőforrás előnézetének megtekintéséhez"
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr "Be kell jelentkeznie egy fénykép feltöltéséhez"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
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"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:59
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:59
|
||||
msgid "Reporter profile is not owned by authenticated user"
|
||||
msgstr "A jelentő profilját nem hitelesített felhasználó birtokolja"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:121
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:121
|
||||
msgid "Parent resource doesn't belong to this group"
|
||||
msgstr "A szülőerőforrás nem tartozik ehhez a csoporthoz"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr "A megadott profilazonosító nem a névtelen profil"
|
||||
|
||||
#: lib/mobilizon/users/user.ex:109
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:109
|
||||
msgid "The chosen password is too short."
|
||||
msgstr "A választott jelszó túl rövid."
|
||||
|
||||
#: lib/mobilizon/users/user.ex:138
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:138
|
||||
msgid "The registration token is already in use, this looks like an issue on our side."
|
||||
msgstr ""
|
||||
"A regisztrációs token már használatban van. Ez hibának tűnik a mi oldalunkon."
|
||||
|
||||
#: lib/mobilizon/users/user.ex:104
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:104
|
||||
msgid "This email is already used."
|
||||
msgstr "Ez az e-mail-cím már használatban van."
|
||||
|
||||
#: lib/graphql/error.ex:88
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:88
|
||||
msgid "Post not found"
|
||||
msgstr "Nem található a hozzászólás"
|
||||
|
||||
#: lib/graphql/error.ex:75
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:75
|
||||
msgid "Invalid arguments passed"
|
||||
msgstr "Érvénytelen argumentumok lettek átadva"
|
||||
|
||||
#: lib/graphql/error.ex:81
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:81
|
||||
msgid "Invalid credentials"
|
||||
msgstr "Érvénytelen hitelesítési adatok"
|
||||
|
||||
#: lib/graphql/error.ex:79
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:79
|
||||
msgid "Reset your password to login"
|
||||
msgstr "Állítsa vissza a jelszavát a bejelentkezéshez"
|
||||
|
||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
||||
msgid "Resource not found"
|
||||
msgstr "Nem található az erőforrás"
|
||||
|
||||
#: lib/graphql/error.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:92
|
||||
msgid "Something went wrong"
|
||||
msgstr "Valami elromlott"
|
||||
|
||||
#: lib/graphql/error.ex:74
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:74
|
||||
msgid "Unknown Resource"
|
||||
msgstr "Ismeretlen erőforrás"
|
||||
|
||||
#: lib/graphql/error.ex:84
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:84
|
||||
msgid "You don't have permission to do this"
|
||||
msgstr "Nincs jogosultsága, hogy ezt tegye"
|
||||
|
||||
#: lib/graphql/error.ex:76
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:76
|
||||
msgid "You need to be logged in"
|
||||
msgstr "Bejelentkezve kell lennie"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:119
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:119
|
||||
msgid "You can't accept this invitation with this profile."
|
||||
msgstr "Nem tudja elfogadni ezt a meghívást ezzel a profillal."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:137
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:137
|
||||
msgid "You can't reject this invitation with this profile."
|
||||
msgstr "Nem tudja visszautasítani ezt a meghívást ezzel a profillal."
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr "A fájl nem rendelkezik engedélyezett MIME-típussal."
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr "A profil nem adminisztrátor ennél a csoportnál"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:241
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:241
|
||||
msgid "You can't edit this event."
|
||||
msgstr "Nem tudja szerkeszteni ezt az eseményt."
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:244
|
||||
msgid "You can't attribute this event to this profile."
|
||||
msgstr "Nem tudja ezt az eseményt ennek a profilnak tulajdonítani."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:140
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:140
|
||||
msgid "This invitation doesn't exist."
|
||||
msgstr "Ez a meghívás nem létezik."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:182
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:182
|
||||
msgid "This member already has been rejected."
|
||||
msgstr "Ez a tag már vissza lett utasítva."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
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
@ -93,784 +93,788 @@ msgstr "dev'essere maggiore o uguale di %{number}"
|
||||
msgid "must be equal to %{number}"
|
||||
msgstr "dev'essere uguale a %{number}"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:103
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:103
|
||||
msgid "Cannot refresh the token"
|
||||
msgstr "Il token non può essere aggiornato"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr "L'utente corrente non è proprietario del profilo dell'autore"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr "Il profilo corrente non è membro di questo gruppo"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:207
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:205
|
||||
msgid "Current profile is not an administrator of the selected group"
|
||||
msgstr "Il profilo corrente non è amministratore del gruppo selezionato"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:512
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:512
|
||||
msgid "Error while saving user settings"
|
||||
msgstr "Errore nel salvare le preferenze utente"
|
||||
|
||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200
|
||||
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83
|
||||
#, 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"
|
||||
msgstr "Gruppo non trovato"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr "Gruppo con ID %{id} non trovato"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:83
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:83
|
||||
msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr "Impossibile autenticarsi: email e/o password non validi."
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr "Membro non trovato"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
|
||||
#: lib/graphql/resolvers/user.ex:417
|
||||
#, elixir-format
|
||||
msgid "No profile found for the moderator user"
|
||||
msgstr "Nessun profilo trovato per l'utente moderatore"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:195
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:195
|
||||
msgid "No user to validate with this email was found"
|
||||
msgstr "Nessun utente da convalidare trovato con questa email"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76
|
||||
#: lib/graphql/resolvers/user.ex:219
|
||||
#, 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"
|
||||
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
|
||||
#: 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"
|
||||
msgstr "L'utente autenticato non è propietario di questo profilo"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:125
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:125
|
||||
msgid "Registrations are not open"
|
||||
msgstr "Le registrazioni non sono aperte"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:330
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:330
|
||||
msgid "The current password is invalid"
|
||||
msgstr "la password corrente non è valida"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:382
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:382
|
||||
msgid "The new email doesn't seem to be valid"
|
||||
msgstr "La nuova email sembra non valida"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:379
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:379
|
||||
msgid "The new email must be different"
|
||||
msgstr "La nuova email dev'essere diversa"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:333
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:333
|
||||
msgid "The new password must be different"
|
||||
msgstr "La nuova password deve essere diversa"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
|
||||
#: lib/graphql/resolvers/user.ex:442
|
||||
#, elixir-format
|
||||
msgid "The password provided is invalid"
|
||||
msgstr "La password assegnata non è valida"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:337
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:337
|
||||
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
|
||||
msgstr "la password scelta è troppo corta, deve avere almeno 6 caratteri."
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:215
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:215
|
||||
msgid "This user can't reset their password"
|
||||
msgstr "Questo utente non può resettare la password"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:79
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:79
|
||||
msgid "This user has been disabled"
|
||||
msgstr "L'utente è stato disabilitato"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:179
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:179
|
||||
msgid "Unable to validate user"
|
||||
msgstr "Impossibile convalidare l'utente"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:420
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:420
|
||||
msgid "User already disabled"
|
||||
msgstr "Utente già disabilitato"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:487
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:487
|
||||
msgid "User requested is not logged-in"
|
||||
msgstr "L'utente richiesto non è loggato"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr "Sei già un membro di questo gruppo"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:287
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:268
|
||||
msgid "You can't leave this group because you are the only administrator"
|
||||
msgstr "Non puoi lasciare questo gruppo perchè sei l'unico amministratore"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr "Non puoi unirti a questo gruppo"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr "Non è possibile elencare i gruppi a meno che non sia un moderatore."
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:387
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:387
|
||||
msgid "You need to be logged-in to change your email"
|
||||
msgstr "È necessario effettuare il login per modificare la tua email"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:345
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:345
|
||||
msgid "You need to be logged-in to change your password"
|
||||
msgstr "È necessario effettuare il login per modificare la tua password"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:212
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:210
|
||||
msgid "You need to be logged-in to delete a group"
|
||||
msgstr "È necessario effettuare il login per eliminare un gruppo"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:447
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:447
|
||||
msgid "You need to be logged-in to delete your account"
|
||||
msgstr "È necessario effettuare il login per eliminare il tuo account"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:259
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:240
|
||||
msgid "You need to be logged-in to join a group"
|
||||
msgstr "È necessario effettuare il login per entrare a far parte di un gruppo"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:292
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:273
|
||||
msgid "You need to be logged-in to leave a group"
|
||||
msgstr "È necessario effettuare il login per lasciare un gruppo"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:177
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:175
|
||||
msgid "You need to be logged-in to update a group"
|
||||
msgstr "È necessario effettuare il login per aggiornare un gruppo"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:58
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:58
|
||||
msgid "You need to have admin access to list users"
|
||||
msgstr ""
|
||||
"È necessario disporre dell'accesso come amministratore per elencare gli "
|
||||
"utenti"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:108
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:108
|
||||
msgid "You need to have an existing token to get a refresh token"
|
||||
msgstr ""
|
||||
"È necessario disporre di un token esistente per ottenere un token di "
|
||||
"aggiornamento"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
|
||||
msgid "You requested again a confirmation email too soon"
|
||||
msgstr "Hai richiesto di nuovo un'e-mail di conferma troppo presto"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:128
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:128
|
||||
msgid "Your email is not on the allowlist"
|
||||
msgstr "La tua mail non è nella lista delle autorizzazioni"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
|
||||
msgid "Error while performing background task"
|
||||
msgstr "Errore nell'eseguire un processo in background"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:27
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:27
|
||||
msgid "No profile found with this ID"
|
||||
msgstr "Nessun profilo trovato con questo ID"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
|
||||
msgid "No remote profile found with this ID"
|
||||
msgstr "Nessun profilo remoto trovato con questo ID"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:69
|
||||
msgid "Only moderators and administrators can suspend a profile"
|
||||
msgstr "Solo i moderatori e gli amministratori possono sospendere un profilo"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:99
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:99
|
||||
msgid "Only moderators and administrators can unsuspend a profile"
|
||||
msgstr "Solo i moderatori e gli amministratori possono riattivare un profilo"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:24
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:24
|
||||
msgid "Only remote profiles may be refreshed"
|
||||
msgstr "È possibile aggiornare solo i profili remoti"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:61
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:61
|
||||
msgid "Profile already suspended"
|
||||
msgstr "Profilo già sospeso"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr "Un'email valida è richiesta dalla vostra istanza"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr "La partecipazione anonima non è abilitata"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr "Impossibile rimuovere l'ultimo amministratore di un gruppo"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr "Impossibile rimuovere l'ultima identità di un utente"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:109
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:109
|
||||
msgid "Comment is already deleted"
|
||||
msgstr "Commento già cancellato"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:61
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:61
|
||||
msgid "Discussion not found"
|
||||
msgstr "Discussione non trovata"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
|
||||
msgid "Error while saving report"
|
||||
msgstr "Errore nel salvare la segnalazione"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr "Errore durante l'aggiornamento del rapporto"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr "ID evento non trovato"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238
|
||||
#: lib/graphql/resolvers/event.ex:283
|
||||
#, elixir-format
|
||||
msgid "Event not found"
|
||||
msgstr "Evento non trovato"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#, 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"
|
||||
msgstr "L'evento con questo ID %{id} non esiste"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr "Errore Interno"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
|
||||
msgid "Moderator profile is not owned by authenticated user"
|
||||
msgstr "Il profilo del moderatore non è di proprietà dell'utente autenticato"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr "Nessuna discussione con l'ID %{id}"
|
||||
|
||||
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
|
||||
msgid "No profile found for user"
|
||||
msgstr "Nessuno profilo trovato per l'utente"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr "Nessun token di rifornimento corrispondente"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:202
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:202
|
||||
msgid "Organizer profile is not owned by the user"
|
||||
msgstr "Il profilo dell'organizzatore non è di proprietà dell'utente"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{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
|
||||
#: 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"
|
||||
msgstr "Partecipante non trovato"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:31
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:31
|
||||
msgid "Person with ID %{id} not found"
|
||||
msgstr "La persona con l'ID %{id} non è stata trovata"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:52
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:52
|
||||
msgid "Person with username %{username} not found"
|
||||
msgstr "La persona con il nome utente %{username} non è stata trovata"
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr "L'immagine con l'ID %{id} non è stata trovata"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
|
||||
msgid "Post ID is not a valid ID"
|
||||
msgstr "L'ID del post non è un ID valido"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
|
||||
msgid "Post doesn't exist"
|
||||
msgstr "Il post non esiste"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:86
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:86
|
||||
msgid "Profile invited doesn't exist"
|
||||
msgstr "Il profilo invitato non esiste"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
|
||||
msgid "Profile is already a member of this group"
|
||||
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: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/todos.ex:84 lib/graphql/resolvers/todos.ex:102 lib/graphql/resolvers/todos.ex:174
|
||||
#: lib/graphql/resolvers/todos.ex:197 lib/graphql/resolvers/todos.ex:225
|
||||
#, elixir-format
|
||||
msgid "Profile is not member of group"
|
||||
msgstr "Il profilo non è membro del gruppo"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
|
||||
msgid "Profile not found"
|
||||
msgstr "Profilo non trovato"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
|
||||
msgid "Provided moderator profile doesn't have permission on this event"
|
||||
msgstr ""
|
||||
"Il profilo del moderatore fornito non dispone dell'autorizzazione per questo "
|
||||
"evento"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:38
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:38
|
||||
msgid "Report not found"
|
||||
msgstr "Segnalazione non trovata"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
|
||||
msgid "Resource doesn't exist"
|
||||
msgstr "La risorsa non esiste"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr "L'evento ha già raggiunto la sua massima capacità"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr "Questo token non è valido"
|
||||
|
||||
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
|
||||
msgid "Todo doesn't exist"
|
||||
msgstr "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:219
|
||||
#, elixir-format
|
||||
msgid "Todo list doesn't exist"
|
||||
msgstr "la lista non esiste"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr "Il token non esiste"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr "Il token non è un UUID valido"
|
||||
|
||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
|
||||
msgid "User not found"
|
||||
msgstr "Utente non trovato"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr "Hai già un profilo per questo utente"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr "Se già un partecipante di questo evento"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:185
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:188
|
||||
msgid "You are not a member of the group the discussion belongs to"
|
||||
msgstr "Non sei membro del gruppo a cui la discussione appartiene"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:89
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:89
|
||||
msgid "You are not a member of this group"
|
||||
msgstr "Non sei un membro di questo gruppo"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:154
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:154
|
||||
msgid "You are not a moderator or admin for this group"
|
||||
msgstr "Non sei un moderatore o amministratore di questo gruppo"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:55
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:55
|
||||
msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr "Non è consentito creare un commento se non si è collegati"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:44
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:41
|
||||
msgid "You are not allowed to create a feed token if not connected"
|
||||
msgstr "Non puoi creare un token di rifornimento senza connessione"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:117
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:117
|
||||
msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr "Non è consentito eliminare un commento se non si è collegati"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:81
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:78
|
||||
msgid "You are not allowed to delete a feed token if not connected"
|
||||
msgstr "Non puoi eliminare un token di rifornimento senza connettersi"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:77
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:77
|
||||
msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr "Non è consentito aggiornare un commento se non si è collegati"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:167
|
||||
#: lib/graphql/resolvers/participant.ex:196
|
||||
#, 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"
|
||||
msgstr ""
|
||||
"Non puoi lasciare l'evento perchè sei l'unico partecipante creatore di eventi"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:158
|
||||
#, 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"
|
||||
msgstr ""
|
||||
"Non puoi impostare te stesso per un ruolo di membro inferiore per questo "
|
||||
"gruppo perché sei l'unico amministratore"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:105
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:105
|
||||
msgid "You cannot delete this comment"
|
||||
msgstr "Non puoi eliminare questo commento"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:279
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:279
|
||||
msgid "You cannot delete this event"
|
||||
msgstr "Non puoi eliminare questo evento"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:92
|
||||
msgid "You cannot invite to this group"
|
||||
msgstr "Non puoi invitare in questo gruppo"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:75
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
msgid "You don't have permission to delete this token"
|
||||
msgstr "Non hai il permesso di cancellare questo token"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:52
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:52
|
||||
msgid "You need to be logged-in and a moderator to list action logs"
|
||||
msgstr "Devi essere connesso e un moderatore per elencare i log delle azioni"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:28
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:28
|
||||
msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr "Devi essere connesso e un moderatore per elencare i rapporti"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:118
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:115
|
||||
msgid "You need to be logged-in and a moderator to update a report"
|
||||
msgstr "Devi essere connesso e un moderatore per aggiornare un rapporto"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:43
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:43
|
||||
msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr "Devi essere connesso e un moderatore per visualizzare un rapporto"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:220
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:236
|
||||
msgid "You need to be logged-in and an administrator to access admin settings"
|
||||
msgstr ""
|
||||
"Devi essere connesso e un moderatore per accedere alle opzioni "
|
||||
"dell'amministratore"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:205
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:221
|
||||
msgid "You need to be logged-in and an administrator to access dashboard statistics"
|
||||
msgstr ""
|
||||
"Devi essere connesso e un moderatore per accedere alle statistiche del "
|
||||
"dashboard"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:260
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
"Devi essere connesso e un moderatore per salvare le impostazioni "
|
||||
"dell'amministratore"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:66
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:66
|
||||
msgid "You need to be logged-in to access discussions"
|
||||
msgstr "Devi essere connesso per accedere alle discussioni"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:93
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:93
|
||||
msgid "You need to be logged-in to access resources"
|
||||
msgstr "Devi essere connesso per accedere alle risorse"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:213
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:213
|
||||
msgid "You need to be logged-in to create events"
|
||||
msgstr "Devi essere connesso per creare eventi"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:139
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:139
|
||||
msgid "You need to be logged-in to create posts"
|
||||
msgstr "Devi essere connesso per creare dei post"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
|
||||
msgid "You need to be logged-in to create reports"
|
||||
msgstr "Devi essere connesso per creare rapporti"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:129
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:129
|
||||
msgid "You need to be logged-in to create resources"
|
||||
msgstr "Devi essere connesso per creare risorse"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:291
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:291
|
||||
msgid "You need to be logged-in to delete an event"
|
||||
msgstr "Devi essere connesso per eliminare un evento"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:209
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:209
|
||||
msgid "You need to be logged-in to delete posts"
|
||||
msgstr "Devi essere connesso per eliminare dei post"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:187
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:187
|
||||
msgid "You need to be logged-in to delete resources"
|
||||
msgstr "Devi essere connesso per eliminare risorse"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:108
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:105
|
||||
msgid "You need to be logged-in to join an event"
|
||||
msgstr "Devi essere connesso per partecipare a un evento"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:207
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:204
|
||||
msgid "You need to be logged-in to leave an event"
|
||||
msgstr "Devi essere connesso per lasciare un evento"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:252
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:252
|
||||
msgid "You need to be logged-in to update an event"
|
||||
msgstr "Devi essere connesso per aggiornare un evento"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:176
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:176
|
||||
msgid "You need to be logged-in to update posts"
|
||||
msgstr "Devi essere connesso per aggiornare dei post"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:158
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:158
|
||||
msgid "You need to be logged-in to update resources"
|
||||
msgstr "Devi essere connesso per aggiornare le risorse"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:210
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:210
|
||||
msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr "Devi essere connesso per visualizzare l'anteprima di una risorsa"
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr "Devi essere connesso per caricare un'immagine"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr "L'ID reporter non corrisponde all'ID del profilo anonimo"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:59
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:59
|
||||
msgid "Reporter profile is not owned by authenticated user"
|
||||
msgstr "Il profilo del reporter non è di proprietà dell'utente autenticato"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:121
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:121
|
||||
msgid "Parent resource doesn't belong to this group"
|
||||
msgstr "La risorsa principale non appartiene a questo gruppo"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr "L'ID profilo fornito non è quello del profilo anonimo"
|
||||
|
||||
#: lib/mobilizon/users/user.ex:109
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:109
|
||||
msgid "The chosen password is too short."
|
||||
msgstr "La password scelta è troppo corta."
|
||||
|
||||
#: lib/mobilizon/users/user.ex:138
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:138
|
||||
msgid "The registration token is already in use, this looks like an issue on our side."
|
||||
msgstr ""
|
||||
"Il token di registrazione è già in uso, questo sembra un problema dalla "
|
||||
"nostra parte."
|
||||
|
||||
#: lib/mobilizon/users/user.ex:104
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:104
|
||||
msgid "This email is already used."
|
||||
msgstr "Questa email è già in uso."
|
||||
|
||||
#: lib/graphql/error.ex:88
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:88
|
||||
msgid "Post not found"
|
||||
msgstr "Post non trovato"
|
||||
|
||||
#: lib/graphql/error.ex:75
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:75
|
||||
msgid "Invalid arguments passed"
|
||||
msgstr "Sono stati trasmessi argomenti non validi"
|
||||
|
||||
#: lib/graphql/error.ex:81
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:81
|
||||
msgid "Invalid credentials"
|
||||
msgstr "Credenziali non valide"
|
||||
|
||||
#: lib/graphql/error.ex:79
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:79
|
||||
msgid "Reset your password to login"
|
||||
msgstr "Reimposta la tua password per connetterti"
|
||||
|
||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
||||
msgid "Resource not found"
|
||||
msgstr "Segnalazione non trovata"
|
||||
|
||||
#: lib/graphql/error.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:92
|
||||
msgid "Something went wrong"
|
||||
msgstr "Qualcosa è andato storto"
|
||||
|
||||
#: lib/graphql/error.ex:74
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:74
|
||||
msgid "Unknown Resource"
|
||||
msgstr "Risorsa sconosciuta"
|
||||
|
||||
#: lib/graphql/error.ex:84
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:84
|
||||
msgid "You don't have permission to do this"
|
||||
msgstr "Non hai il permesso di farlo"
|
||||
|
||||
#: lib/graphql/error.ex:76
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:76
|
||||
msgid "You need to be logged in"
|
||||
msgstr "Devi essere connesso"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:119
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:119
|
||||
msgid "You can't accept this invitation with this profile."
|
||||
msgstr "Non puoi accettare l'invito con questo profilo."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:137
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:137
|
||||
msgid "You can't reject this invitation with this profile."
|
||||
msgstr "Non puoi rifiutare l'invito con questo profilo."
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr "Il file non ha un tipo MIME consentito."
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr "Il profilo non è amministratore del gruppo"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:241
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:241
|
||||
msgid "You can't edit this event."
|
||||
msgstr "Non puoi modificare questo evento."
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:244
|
||||
msgid "You can't attribute this event to this profile."
|
||||
msgstr "Non puo iattribuire questo evento a questo profilo."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:140
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:140
|
||||
msgid "This invitation doesn't exist."
|
||||
msgstr "Questo invito non esiste."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:182
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:182
|
||||
msgid "This member already has been rejected."
|
||||
msgstr "Questo memebro è già stato rifiutato."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
msgstr "Non hai il diritto di rimuovere questo membro."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/actors/actor.ex:344
|
||||
msgid "This username is already taken."
|
||||
msgstr ""
|
||||
|
@ -114,17 +114,17 @@ msgid "You created an account on %{host} with this email address. You are one cl
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:113
|
||||
#: lib/web/email/participation.ex:112
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:71
|
||||
#: lib/web/email/participation.ex:70
|
||||
msgid "Your participation to event %{title} has been rejected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:36
|
||||
#: lib/web/email/event.ex:37
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr ""
|
||||
|
||||
@ -144,7 +144,7 @@ msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:135
|
||||
#: lib/web/email/participation.ex:134
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
||||
@ -396,13 +396,13 @@ msgstr[0] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/notification_each_week.html.eex:38
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:4
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:3
|
||||
msgid "You have one event this week:"
|
||||
msgid_plural "You have %{total} events this week:"
|
||||
msgstr[0] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/service/metadata/utils.ex:27
|
||||
#: lib/service/metadata/utils.ex:52
|
||||
msgid "The event organizer didn't add any description."
|
||||
msgstr ""
|
||||
|
||||
@ -757,7 +757,7 @@ msgstr ""
|
||||
#: 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/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
|
||||
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."
|
||||
@ -1231,7 +1231,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:92
|
||||
#: lib/web/email/participation.ex:91
|
||||
msgid "Your participation to event %{title} has been confirmed"
|
||||
msgstr ""
|
||||
|
||||
@ -1358,7 +1358,7 @@ msgstr ""
|
||||
msgid "We're sorry, but something went wrong on our end."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email.html.eex:88
|
||||
#: lib/web/templates/email/email.text.eex:4
|
||||
msgid "This is a demonstration site to test Mobilizon."
|
||||
|
@ -86,17 +86,17 @@ msgid "Cannot refresh the token"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -106,13 +106,13 @@ msgid "Error while saving user settings"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr ""
|
||||
|
||||
@ -122,7 +122,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr ""
|
||||
|
||||
@ -138,19 +138,18 @@ msgid "No user to validate with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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
|
||||
msgid "No user with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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/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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -216,22 +215,22 @@ msgid "User requested is not logged-in"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr ""
|
||||
|
||||
@ -246,7 +245,7 @@ msgid "You need to be logged-in to change your password"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -256,17 +255,17 @@ msgid "You need to be logged-in to delete your account"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -326,22 +325,22 @@ msgid "Profile already suspended"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr ""
|
||||
|
||||
@ -356,17 +355,17 @@ msgid "Discussion not found"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr ""
|
||||
|
||||
@ -377,23 +376,23 @@ msgid "Event not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr ""
|
||||
|
||||
@ -403,7 +402,7 @@ msgid "No profile found for user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr ""
|
||||
|
||||
@ -413,14 +412,14 @@ msgid "Organizer profile is not owned by the user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{role}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:173
|
||||
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237
|
||||
#: lib/graphql/resolvers/participant.ex:247
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -435,7 +434,7 @@ msgid "Person with username %{username} not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr ""
|
||||
|
||||
@ -469,12 +468,12 @@ msgid "Profile is not member of group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -489,12 +488,12 @@ msgid "Resource doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr ""
|
||||
|
||||
@ -510,32 +509,32 @@ msgid "Todo list doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -555,7 +554,7 @@ msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -565,7 +564,7 @@ msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -575,8 +574,8 @@ msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -601,7 +600,7 @@ msgid "You cannot invite to this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -616,7 +615,7 @@ msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -626,17 +625,17 @@ msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -661,7 +660,7 @@ msgid "You need to be logged-in to create posts"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -686,12 +685,12 @@ msgid "You need to be logged-in to delete resources"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -716,12 +715,12 @@ msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr ""
|
||||
|
||||
@ -736,7 +735,7 @@ msgid "Parent resource doesn't belong to this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr ""
|
||||
|
||||
@ -811,12 +810,12 @@ msgid "You can't reject this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr ""
|
||||
|
||||
@ -844,3 +843,8 @@ msgstr ""
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/actors/actor.ex:344
|
||||
msgid "This username is already taken."
|
||||
msgstr ""
|
||||
|
@ -123,17 +123,17 @@ msgstr ""
|
||||
"klik van de activering. Gelieve deze email te negeren als u dit niet was."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:113
|
||||
#: lib/web/email/participation.ex:112
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Uw deelname aan het evenement %{title} is goedgekeurd"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:71
|
||||
#: lib/web/email/participation.ex:70
|
||||
msgid "Your participation to event %{title} has been rejected"
|
||||
msgstr "Uw deelname aan het evenement %{title} is afgewezen"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:36
|
||||
#: lib/web/email/event.ex:37
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "Evenement %{title} is bijgewerkt"
|
||||
|
||||
@ -153,7 +153,7 @@ msgid "Warning"
|
||||
msgstr "Waarschuwing"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:135
|
||||
#: lib/web/email/participation.ex:134
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
||||
@ -409,14 +409,14 @@ msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/notification_each_week.html.eex:38
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:4
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:3
|
||||
msgid "You have one event this week:"
|
||||
msgid_plural "You have %{total} events this week:"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/service/metadata/utils.ex:27
|
||||
#: lib/service/metadata/utils.ex:52
|
||||
msgid "The event organizer didn't add any description."
|
||||
msgstr ""
|
||||
|
||||
@ -773,7 +773,7 @@ msgstr ""
|
||||
#: 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/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
|
||||
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."
|
||||
@ -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}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:92
|
||||
#: lib/web/email/participation.ex:91
|
||||
msgid "Your participation to event %{title} has been confirmed"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email.html.eex:88
|
||||
#: lib/web/templates/email/email.text.eex:4
|
||||
msgid "This is a demonstration site to test Mobilizon."
|
||||
|
@ -92,17 +92,17 @@ msgid "Cannot refresh the token"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -112,13 +112,13 @@ msgid "Error while saving user settings"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr ""
|
||||
|
||||
@ -128,7 +128,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr ""
|
||||
|
||||
@ -144,19 +144,18 @@ msgid "No user to validate with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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
|
||||
msgid "No user with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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/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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -222,22 +221,22 @@ msgid "User requested is not logged-in"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr ""
|
||||
|
||||
@ -252,7 +251,7 @@ msgid "You need to be logged-in to change your password"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -262,17 +261,17 @@ msgid "You need to be logged-in to delete your account"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -332,22 +331,22 @@ msgid "Profile already suspended"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr ""
|
||||
|
||||
@ -362,17 +361,17 @@ msgid "Discussion not found"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr ""
|
||||
|
||||
@ -383,23 +382,23 @@ msgid "Event not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr ""
|
||||
|
||||
@ -409,7 +408,7 @@ msgid "No profile found for user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr ""
|
||||
|
||||
@ -419,14 +418,14 @@ msgid "Organizer profile is not owned by the user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{role}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:173
|
||||
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237
|
||||
#: lib/graphql/resolvers/participant.ex:247
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -441,7 +440,7 @@ msgid "Person with username %{username} not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr ""
|
||||
|
||||
@ -475,12 +474,12 @@ msgid "Profile is not member of group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -495,12 +494,12 @@ msgid "Resource doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr ""
|
||||
|
||||
@ -516,32 +515,32 @@ msgid "Todo list doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -561,7 +560,7 @@ msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -571,7 +570,7 @@ msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -581,8 +580,8 @@ msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -607,7 +606,7 @@ msgid "You cannot invite to this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -622,7 +621,7 @@ msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -632,17 +631,17 @@ msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -667,7 +666,7 @@ msgid "You need to be logged-in to create posts"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -692,12 +691,12 @@ msgid "You need to be logged-in to delete resources"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -722,12 +721,12 @@ msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr ""
|
||||
|
||||
@ -742,7 +741,7 @@ msgid "Parent resource doesn't belong to this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr ""
|
||||
|
||||
@ -817,12 +816,12 @@ msgid "You can't reject this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr ""
|
||||
|
||||
@ -850,3 +849,8 @@ msgstr ""
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
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
@ -109,767 +109,771 @@ msgstr "må vera større enn eller lik %{number}"
|
||||
msgid "must be equal to %{number}"
|
||||
msgstr "må vera lik %{number}"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:103
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:103
|
||||
msgid "Cannot refresh the token"
|
||||
msgstr "Kan ikkje fornya teiknet"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr "Denne brukaren eig ikkje opphavsprofilen"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr "Denne brukaren er ikkje medlem av gruppa"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:207
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:205
|
||||
msgid "Current profile is not an administrator of the selected group"
|
||||
msgstr "Denne brukaren er ikkje styrar av gruppa"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:512
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:512
|
||||
msgid "Error while saving user settings"
|
||||
msgstr "Greidde ikkje lagra brukarinnstillingane"
|
||||
|
||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200
|
||||
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83
|
||||
#, 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"
|
||||
msgstr "Fann ikkje gruppa"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr "Fann ikkje gruppa med ID %{id}"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:83
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:83
|
||||
msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr "Greier ikkje å logga inn. Epostadressa eller passordet ditt er feil."
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr "Fann ikkje medlemen"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
|
||||
#: lib/graphql/resolvers/user.ex:417
|
||||
#, elixir-format
|
||||
msgid "No profile found for the moderator user"
|
||||
msgstr "Fann ingen profil for moderator-brukaren"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:195
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:195
|
||||
msgid "No user to validate with this email was found"
|
||||
msgstr "Fann ingen brukar med denne eposten å godkjenna"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:232 lib/graphql/resolvers/user.ex:76
|
||||
#: lib/graphql/resolvers/user.ex:219
|
||||
#, 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"
|
||||
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
|
||||
#: 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"
|
||||
msgstr "Ingen godkjent brukar eig denne profilen"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:125
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:125
|
||||
msgid "Registrations are not open"
|
||||
msgstr "Det er ikkje opna for å registrera seg"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:330
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:330
|
||||
msgid "The current password is invalid"
|
||||
msgstr "Dette passordet er ugyldig"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:382
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:382
|
||||
msgid "The new email doesn't seem to be valid"
|
||||
msgstr "Den nye epostadressa ser ut til å vera feil"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:379
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:379
|
||||
msgid "The new email must be different"
|
||||
msgstr "Den nye epostadressa må vera annleis"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:333
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:333
|
||||
msgid "The new password must be different"
|
||||
msgstr "Det nye passordet må vera annleis"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
|
||||
#: lib/graphql/resolvers/user.ex:442
|
||||
#, elixir-format
|
||||
msgid "The password provided is invalid"
|
||||
msgstr "Dette passordet er ugyldig"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:337
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:337
|
||||
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
|
||||
msgstr "Dette passordet er for kort. Passord må ha minst 6 teikn."
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:215
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:215
|
||||
msgid "This user can't reset their password"
|
||||
msgstr "Denne brukaren kan ikkje nullstilla passordet sitt"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:79
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:79
|
||||
msgid "This user has been disabled"
|
||||
msgstr "Denne brukaren er avskrudd"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:179
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:179
|
||||
msgid "Unable to validate user"
|
||||
msgstr "Greier ikkje godkjenna brukaren"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:420
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:420
|
||||
msgid "User already disabled"
|
||||
msgstr "Brukaren er allereie inaktiv"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:487
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:487
|
||||
msgid "User requested is not logged-in"
|
||||
msgstr "Den førespurte brukaren er ikkje innlogga"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr "Du er allereie medlem av denne gruppa"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:287
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:268
|
||||
msgid "You can't leave this group because you are the only administrator"
|
||||
msgstr "Du kan ikkje forlata denne gruppa, fordi du er den einaste styraren"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr "Du kan ikkje bli med i denne gruppa"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr "Du kan ikkje lista opp grupper med mindre du er moderator."
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:387
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:387
|
||||
msgid "You need to be logged-in to change your email"
|
||||
msgstr "Du må vera innlogga for å endra epostadressa di"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:345
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:345
|
||||
msgid "You need to be logged-in to change your password"
|
||||
msgstr "Du må vera innlogga for å endra passordet ditt"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:212
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:210
|
||||
msgid "You need to be logged-in to delete a group"
|
||||
msgstr "Du må vera innlogga for å sletta ei gruppe"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:447
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:447
|
||||
msgid "You need to be logged-in to delete your account"
|
||||
msgstr "Du må vera innlogga for å sletta kontoen din"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:259
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:240
|
||||
msgid "You need to be logged-in to join a group"
|
||||
msgstr "Du må vera innlogga for å bli med i ei gruppe"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:292
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:273
|
||||
msgid "You need to be logged-in to leave a group"
|
||||
msgstr "Du må vera innlogga for å forlata ei gruppe"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:177
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:175
|
||||
msgid "You need to be logged-in to update a group"
|
||||
msgstr "Du må vera innlogga for å oppdatera ei gruppe"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:58
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:58
|
||||
msgid "You need to have admin access to list users"
|
||||
msgstr "Du må ha administratorløyve for å lista opp brukarar"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:108
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:108
|
||||
msgid "You need to have an existing token to get a refresh token"
|
||||
msgstr "Du treng eit eksisterande teikn for å få eit fornyingsteikn"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
|
||||
msgid "You requested again a confirmation email too soon"
|
||||
msgstr "Du ba om ny stadfestingsepost for snøgt"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:128
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:128
|
||||
msgid "Your email is not on the allowlist"
|
||||
msgstr "Epostadressa di er ikkje på lista over godkjende adresser"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
|
||||
msgid "Error while performing background task"
|
||||
msgstr "Greidde ikkje utføra ei bakgrunnsoppgåve"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:27
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:27
|
||||
msgid "No profile found with this ID"
|
||||
msgstr "Fann ingen profil med denne ID-en"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
|
||||
msgid "No remote profile found with this ID"
|
||||
msgstr "Fann ingen fjern profil med denne ID-en"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:69
|
||||
msgid "Only moderators and administrators can suspend a profile"
|
||||
msgstr "Berre moderatorar og styrarar kan sperra ein profil"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:99
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:99
|
||||
msgid "Only moderators and administrators can unsuspend a profile"
|
||||
msgstr "Berre moderatorar og styrarar kan oppheva sperring av profilar"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:24
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:24
|
||||
msgid "Only remote profiles may be refreshed"
|
||||
msgstr "Du kan berre lasta fjerne profilar på nytt"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:61
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:61
|
||||
msgid "Profile already suspended"
|
||||
msgstr "Profilen er allereie sperra"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr "Nettstaden din krev ei gyldig epostadresse"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr "Det er ikkje høve til å vera med anonymt"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr "Kan ikkje fjerna den siste styraren i gruppa"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr "Kan ikkje fjerna den siste identiteten til ein brukar"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:109
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:109
|
||||
msgid "Comment is already deleted"
|
||||
msgstr "Kommentaren er allereie sletta"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:61
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:61
|
||||
msgid "Discussion not found"
|
||||
msgstr "Fann ikkje ordskiftet"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
|
||||
msgid "Error while saving report"
|
||||
msgstr "Greidde ikkje lagra rapporten"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr "Greidde ikkje oppdatera rapporten"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr "Fann ikkje ID-en til hendinga"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238
|
||||
#: lib/graphql/resolvers/event.ex:283
|
||||
#, elixir-format
|
||||
msgid "Event not found"
|
||||
msgstr "Fann ikkje hendinga"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#, 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"
|
||||
msgstr "Det finst inga hending med ID-en %{id}"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr "Intern feil"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
|
||||
msgid "Moderator profile is not owned by authenticated user"
|
||||
msgstr "Det er ingen godkjend brukar som eig moderatorprofilen"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr "Ikkje noko ordskifte med ID-en %{id}"
|
||||
|
||||
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
|
||||
msgid "No profile found for user"
|
||||
msgstr "Fann ingen profil for brukaren"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr "Det finst ikkje noko slikt teikn for kjelda"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:202
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:202
|
||||
msgid "Organizer profile is not owned by the user"
|
||||
msgstr "Brukaren eig ikkje tilskiparprofilen"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{role}"
|
||||
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
|
||||
#: 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"
|
||||
msgstr "Fann ikkje deltakaren"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:31
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:31
|
||||
msgid "Person with ID %{id} not found"
|
||||
msgstr "Fann ingen person med ID-en %{id}"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:52
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:52
|
||||
msgid "Person with username %{username} not found"
|
||||
msgstr "Fann ingen person med brukarnamnet %{username}"
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr "Fann ikkje biletet med ID-en %{id}"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
|
||||
msgid "Post ID is not a valid ID"
|
||||
msgstr "Innleggs-IDen er ugyldig"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
|
||||
msgid "Post doesn't exist"
|
||||
msgstr "Innlegget finst ikkje"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:86
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:86
|
||||
msgid "Profile invited doesn't exist"
|
||||
msgstr "Den inviterte profilen finst ikkje"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
|
||||
msgid "Profile is already a member of this group"
|
||||
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: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/todos.ex:84 lib/graphql/resolvers/todos.ex:102 lib/graphql/resolvers/todos.ex:174
|
||||
#: lib/graphql/resolvers/todos.ex:197 lib/graphql/resolvers/todos.ex:225
|
||||
#, elixir-format
|
||||
msgid "Profile is not member of group"
|
||||
msgstr "Profilen er ikkje medlem i gruppa"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
|
||||
msgid "Profile not found"
|
||||
msgstr "Fann ikkje profilen"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
|
||||
msgid "Provided moderator profile doesn't have permission on this event"
|
||||
msgstr "Moderatorprofilen har ikkje tilgang til denne hendinga"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:38
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:38
|
||||
msgid "Report not found"
|
||||
msgstr "Fann ikkje rapporten"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
|
||||
msgid "Resource doesn't exist"
|
||||
msgstr "Ressursen finst ikkje"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr "Hendinga er fullteikna"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr "Teiknet er ugyldig"
|
||||
|
||||
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
|
||||
msgid "Todo doesn't exist"
|
||||
msgstr "Gjeremålet finst ikkje"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:194
|
||||
#: lib/graphql/resolvers/todos.ex:219
|
||||
#, elixir-format
|
||||
msgid "Todo list doesn't exist"
|
||||
msgstr "Gjeremålslista finst ikkje"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr "Teiknet finst ikkje"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
|
||||
msgid "User not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:185
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:188
|
||||
msgid "You are not a member of the group the discussion belongs to"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:89
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:89
|
||||
msgid "You are not a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:154
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:154
|
||||
msgid "You are not a moderator or admin for this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:55
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:55
|
||||
msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:44
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:41
|
||||
msgid "You are not allowed to create a feed token if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:117
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:117
|
||||
msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:81
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:78
|
||||
msgid "You are not allowed to delete a feed token if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:77
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:77
|
||||
msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:167
|
||||
#: lib/graphql/resolvers/participant.ex:196
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:158
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:105
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:105
|
||||
msgid "You cannot delete this comment"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:279
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:279
|
||||
msgid "You cannot delete this event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:92
|
||||
msgid "You cannot invite to this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:75
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
msgid "You don't have permission to delete this token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:52
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:52
|
||||
msgid "You need to be logged-in and a moderator to list action logs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:28
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:28
|
||||
msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:118
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:115
|
||||
msgid "You need to be logged-in and a moderator to update a report"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:43
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:43
|
||||
msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:220
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:236
|
||||
msgid "You need to be logged-in and an administrator to access admin settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:205
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:221
|
||||
msgid "You need to be logged-in and an administrator to access dashboard statistics"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:260
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:66
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:66
|
||||
msgid "You need to be logged-in to access discussions"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:93
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:93
|
||||
msgid "You need to be logged-in to access resources"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:213
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:213
|
||||
msgid "You need to be logged-in to create events"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:139
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:139
|
||||
msgid "You need to be logged-in to create posts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
|
||||
msgid "You need to be logged-in to create reports"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:129
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:129
|
||||
msgid "You need to be logged-in to create resources"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:291
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:291
|
||||
msgid "You need to be logged-in to delete an event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:209
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:209
|
||||
msgid "You need to be logged-in to delete posts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:187
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:187
|
||||
msgid "You need to be logged-in to delete resources"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:108
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:105
|
||||
msgid "You need to be logged-in to join an event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:207
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:204
|
||||
msgid "You need to be logged-in to leave an event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:252
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:252
|
||||
msgid "You need to be logged-in to update an event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:176
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:176
|
||||
msgid "You need to be logged-in to update posts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:158
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:158
|
||||
msgid "You need to be logged-in to update resources"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:210
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:210
|
||||
msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:59
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:59
|
||||
msgid "Reporter profile is not owned by authenticated user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:121
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:121
|
||||
msgid "Parent resource doesn't belong to this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr ""
|
||||
|
||||
#: lib/mobilizon/users/user.ex:109
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:109
|
||||
msgid "The chosen password is too short."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mobilizon/users/user.ex:138
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:138
|
||||
msgid "The registration token is already in use, this looks like an issue on our side."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mobilizon/users/user.ex:104
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:104
|
||||
msgid "This email is already used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:88
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:88
|
||||
msgid "Post not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:75
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:75
|
||||
msgid "Invalid arguments passed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:81
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:81
|
||||
msgid "Invalid credentials"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:79
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:79
|
||||
msgid "Reset your password to login"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
||||
msgid "Resource not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:92
|
||||
msgid "Something went wrong"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:74
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:74
|
||||
msgid "Unknown Resource"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:84
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:84
|
||||
msgid "You don't have permission to do this"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:76
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:76
|
||||
msgid "You need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:119
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:119
|
||||
msgid "You can't accept this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:137
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:137
|
||||
msgid "You can't reject this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:241
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:241
|
||||
msgid "You can't edit this event."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:244
|
||||
msgid "You can't attribute this event to this profile."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:140
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:140
|
||||
msgid "This invitation doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:182
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:182
|
||||
msgid "This member already has been rejected."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
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
@ -93,771 +93,775 @@ msgstr "deu èsser superior o egal a %{number}"
|
||||
msgid "must be equal to %{number}"
|
||||
msgstr "deu èsser egal a %{number}"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:103
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:103
|
||||
msgid "Cannot refresh the token"
|
||||
msgstr "Actualizacion impossibla del geton"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr "Lo perfil creator es pas tengut per l’utilizaire actual"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr "Lo perfil actual es pas un membre d’aqueste grop"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:207
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:205
|
||||
msgid "Current profile is not an administrator of the selected group"
|
||||
msgstr "Lo perfil actual es pas administrator del grop seleccionat"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:512
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:512
|
||||
msgid "Error while saving user settings"
|
||||
msgstr "Error en salvagardant los paramètres utilizaire"
|
||||
|
||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200
|
||||
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83
|
||||
#, 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"
|
||||
msgstr "Grop pas trobat"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr "Grop amb l’ID %{id} pas trobat"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:83
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:83
|
||||
msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr ""
|
||||
"Autentificacion impossibla, vòstra adreça electronica o lo vòstre senhal es "
|
||||
"invalid."
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr "Membre pas trobat"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
|
||||
#: lib/graphql/resolvers/user.ex:417
|
||||
#, elixir-format
|
||||
msgid "No profile found for the moderator user"
|
||||
msgstr "Cap de perfil pas trobat per l’utilizaire moderator"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:195
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:195
|
||||
msgid "No user to validate with this email was found"
|
||||
msgstr "Cap d’utilizaire 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
|
||||
#: 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"
|
||||
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
|
||||
#: 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"
|
||||
msgstr "Lo perhiu es pas proprietat del utilizator autenticat"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:125
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:125
|
||||
msgid "Registrations are not open"
|
||||
msgstr "Las inscripciones sèn pas obèrtas"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:330
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:330
|
||||
msgid "The current password is invalid"
|
||||
msgstr "Lo mòt de santa clara actuau es invalid"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:382
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:382
|
||||
msgid "The new email doesn't seem to be valid"
|
||||
msgstr "Lo email nau sèm invalid"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:379
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:379
|
||||
msgid "The new email must be different"
|
||||
msgstr "Lo email nau deb esser different"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:333
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:333
|
||||
msgid "The new password must be different"
|
||||
msgstr "Lo mòt de santa clara nau deb esser different"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:376 lib/graphql/resolvers/user.ex:439
|
||||
#: lib/graphql/resolvers/user.ex:442
|
||||
#, elixir-format
|
||||
msgid "The password provided is invalid"
|
||||
msgstr "Lo mòt de santa clara aprovedit es invalid"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:337
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:337
|
||||
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
|
||||
msgstr ""
|
||||
"Lo mòt de santa clara que avetz causit es tròp cort. Merci de vos assegurar "
|
||||
"que vostre mòt de santa clara contienga au mèns 6 caracteres."
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:215
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:215
|
||||
msgid "This user can't reset their password"
|
||||
msgstr "Aquest utilizator pod pas reinicializar lo sèn mòt de santa clara"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:79
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:79
|
||||
msgid "This user has been disabled"
|
||||
msgstr "Aquest utilizator a essat dasactivat"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:179
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:179
|
||||
msgid "Unable to validate user"
|
||||
msgstr "Es impossible de validar l'utilizator"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:420
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:420
|
||||
msgid "User already disabled"
|
||||
msgstr "Utilizator déjà desactivat"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:487
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:487
|
||||
msgid "User requested is not logged-in"
|
||||
msgstr "L'utilizator demandat es pas conectat"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr "Essetz déjà membre d'aquest grop"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:287
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:268
|
||||
msgid "You can't leave this group because you are the only administrator"
|
||||
msgstr "Podetz pas quitar aquest grop perque essetz lo sol administrator"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr "Podetz pas rejónher aquest grop"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr "Podetz listar los grops sonque se essetz moderator."
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:387
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:387
|
||||
msgid "You need to be logged-in to change your email"
|
||||
msgstr "Debetz esser conectat per cambiar lo voste email"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:345
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:345
|
||||
msgid "You need to be logged-in to change your password"
|
||||
msgstr "Debetz d'esser conectat per cambiar lo voste mòt de santa clara"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:212
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:210
|
||||
msgid "You need to be logged-in to delete a group"
|
||||
msgstr "Debetz d'esser conectat per suprimir un grop"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:447
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:447
|
||||
msgid "You need to be logged-in to delete your account"
|
||||
msgstr "Debetz d'esser conectat per suprimir lo voste compte"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:259
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:240
|
||||
msgid "You need to be logged-in to join a group"
|
||||
msgstr "Deves-tz d'esser conectat-ada per rejónher un grop"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:292
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:273
|
||||
msgid "You need to be logged-in to leave a group"
|
||||
msgstr "Deves-tz d'esser conectat-ada per quitar un grop"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:177
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:175
|
||||
msgid "You need to be logged-in to update a group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:58
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:58
|
||||
msgid "You need to have admin access to list users"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:108
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:108
|
||||
msgid "You need to have an existing token to get a refresh token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
|
||||
msgid "You requested again a confirmation email too soon"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:128
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:128
|
||||
msgid "Your email is not on the allowlist"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
|
||||
msgid "Error while performing background task"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:27
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:27
|
||||
msgid "No profile found with this ID"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
|
||||
msgid "No remote profile found with this ID"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:69
|
||||
msgid "Only moderators and administrators can suspend a profile"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:99
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:99
|
||||
msgid "Only moderators and administrators can unsuspend a profile"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:24
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:24
|
||||
msgid "Only remote profiles may be refreshed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:61
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:61
|
||||
msgid "Profile already suspended"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:109
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:109
|
||||
msgid "Comment is already deleted"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:61
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:61
|
||||
msgid "Discussion not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
|
||||
msgid "Error while saving report"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238
|
||||
#: lib/graphql/resolvers/event.ex:283
|
||||
#, elixir-format
|
||||
msgid "Event not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
|
||||
msgid "Moderator profile is not owned by authenticated user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
|
||||
msgid "No profile found for user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:202
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:202
|
||||
msgid "Organizer profile is not owned by the user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{role}"
|
||||
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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:31
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:31
|
||||
msgid "Person with ID %{id} not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:52
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:52
|
||||
msgid "Person with username %{username} not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
|
||||
msgid "Post ID is not a valid ID"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
|
||||
msgid "Post doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:86
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:86
|
||||
msgid "Profile invited doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
|
||||
msgid "Profile is already a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
|
||||
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
|
||||
#: lib/graphql/resolvers/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:197 lib/graphql/resolvers/todos.ex:225
|
||||
#, elixir-format
|
||||
msgid "Profile is not member of group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
|
||||
msgid "Profile not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
|
||||
msgid "Provided moderator profile doesn't have permission on this event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:38
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:38
|
||||
msgid "Report not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
|
||||
msgid "Resource doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
|
||||
msgid "Todo doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:194
|
||||
#: lib/graphql/resolvers/todos.ex:219
|
||||
#, elixir-format
|
||||
msgid "Todo list doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
|
||||
msgid "User not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:185
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:188
|
||||
msgid "You are not a member of the group the discussion belongs to"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:89
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:89
|
||||
msgid "You are not a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:154
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:154
|
||||
msgid "You are not a moderator or admin for this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:55
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:55
|
||||
msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:44
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:41
|
||||
msgid "You are not allowed to create a feed token if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:117
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:117
|
||||
msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:81
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:78
|
||||
msgid "You are not allowed to delete a feed token if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:77
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:77
|
||||
msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:167
|
||||
#: lib/graphql/resolvers/participant.ex:196
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:158
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:105
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:105
|
||||
msgid "You cannot delete this comment"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:279
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:279
|
||||
msgid "You cannot delete this event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:92
|
||||
msgid "You cannot invite to this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:75
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
msgid "You don't have permission to delete this token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:52
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:52
|
||||
msgid "You need to be logged-in and a moderator to list action logs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:28
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:28
|
||||
msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:118
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:115
|
||||
msgid "You need to be logged-in and a moderator to update a report"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:43
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:43
|
||||
msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:220
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:236
|
||||
msgid "You need to be logged-in and an administrator to access admin settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:205
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:221
|
||||
msgid "You need to be logged-in and an administrator to access dashboard statistics"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:260
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:66
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:66
|
||||
msgid "You need to be logged-in to access discussions"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:93
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:93
|
||||
msgid "You need to be logged-in to access resources"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:213
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:213
|
||||
msgid "You need to be logged-in to create events"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:139
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:139
|
||||
msgid "You need to be logged-in to create posts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
|
||||
msgid "You need to be logged-in to create reports"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:129
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:129
|
||||
msgid "You need to be logged-in to create resources"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:291
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:291
|
||||
msgid "You need to be logged-in to delete an event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:209
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:209
|
||||
msgid "You need to be logged-in to delete posts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:187
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:187
|
||||
msgid "You need to be logged-in to delete resources"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:108
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:105
|
||||
msgid "You need to be logged-in to join an event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:207
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:204
|
||||
msgid "You need to be logged-in to leave an event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:252
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:252
|
||||
msgid "You need to be logged-in to update an event"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:176
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:176
|
||||
msgid "You need to be logged-in to update posts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:158
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:158
|
||||
msgid "You need to be logged-in to update resources"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:210
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:210
|
||||
msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:59
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:59
|
||||
msgid "Reporter profile is not owned by authenticated user"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:121
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:121
|
||||
msgid "Parent resource doesn't belong to this group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr ""
|
||||
|
||||
#: lib/mobilizon/users/user.ex:109
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:109
|
||||
msgid "The chosen password is too short."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mobilizon/users/user.ex:138
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:138
|
||||
msgid "The registration token is already in use, this looks like an issue on our side."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mobilizon/users/user.ex:104
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:104
|
||||
msgid "This email is already used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:88
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:88
|
||||
msgid "Post not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:75
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:75
|
||||
msgid "Invalid arguments passed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:81
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:81
|
||||
msgid "Invalid credentials"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:79
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:79
|
||||
msgid "Reset your password to login"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
||||
msgid "Resource not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:92
|
||||
msgid "Something went wrong"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:74
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:74
|
||||
msgid "Unknown Resource"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:84
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:84
|
||||
msgid "You don't have permission to do this"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/error.ex:76
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:76
|
||||
msgid "You need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:119
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:119
|
||||
msgid "You can't accept this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:137
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:137
|
||||
msgid "You can't reject this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:241
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:241
|
||||
msgid "You can't edit this event."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:244
|
||||
msgid "You can't attribute this event to this profile."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:140
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:140
|
||||
msgid "This invitation doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:182
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:182
|
||||
msgid "This member already has been rejected."
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
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
@ -100,784 +100,788 @@ msgstr "musi być większy lub równy od %{number}"
|
||||
msgid "must be equal to %{number}"
|
||||
msgstr "musi być równy %{number}"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:103
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:103
|
||||
msgid "Cannot refresh the token"
|
||||
msgstr "Nie można odświeżyć tokenu"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr "Profil autora nie należy do obecnego użytkownika"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr "Obency profil nie jest członkiem tej grupy"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:207
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:205
|
||||
msgid "Current profile is not an administrator of the selected group"
|
||||
msgstr "Obecny profil nie jest administratorem zaznaczonej grupy"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:512
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:512
|
||||
msgid "Error while saving user settings"
|
||||
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
|
||||
#: 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"
|
||||
msgstr "Nie odnaleziono grupy"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr "Nie odnaleziono grupy o ID %{id}"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:83
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:83
|
||||
msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr ""
|
||||
"Nie udało się uwierzytelnić. Adres e-mail bądź hasło jest nieprawidłowe."
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr "Nie odnaleziono użytkownika"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:58 lib/graphql/resolvers/actor.ex:88
|
||||
#: lib/graphql/resolvers/user.ex:417
|
||||
#, elixir-format
|
||||
msgid "No profile found for the moderator user"
|
||||
msgstr "Nie znaleziono profilu dla konta moderatora"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:195
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:195
|
||||
msgid "No user to validate with this email was found"
|
||||
msgstr ""
|
||||
"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
|
||||
#: 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"
|
||||
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
|
||||
#: 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"
|
||||
msgstr "Profil nie należy do uwierzytelnionego użytkownika"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:125
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:125
|
||||
msgid "Registrations are not open"
|
||||
msgstr "Rejestracje nie są otwarte"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:330
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:330
|
||||
msgid "The current password is invalid"
|
||||
msgstr "Obecne hasło jest nieprawidłowe"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:382
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:382
|
||||
msgid "The new email doesn't seem to be valid"
|
||||
msgstr "Nowy adres e-mail nie wydaje się być prawidłowy"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:379
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:379
|
||||
msgid "The new email must be different"
|
||||
msgstr "Nowy adres e-mail musi się różnić od obecnego"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:333
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:333
|
||||
msgid "The new password must be different"
|
||||
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:442
|
||||
#, elixir-format
|
||||
msgid "The password provided is invalid"
|
||||
msgstr "Wprowadzone hasło jest nieprawidłowe"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:337
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:337
|
||||
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
|
||||
msgstr ""
|
||||
"Wprowadzone hasło jest zbyt krótkie. Upewnij się, że Twoje hasło składa się "
|
||||
"z przynajmniej 6 znaków."
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:215
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:215
|
||||
msgid "This user can't reset their password"
|
||||
msgstr "Ten użytkownik nie może resetować swojego hasła"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:79
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:79
|
||||
msgid "This user has been disabled"
|
||||
msgstr "Ten użytkownik jest wyłączony"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:179
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:179
|
||||
msgid "Unable to validate user"
|
||||
msgstr "Nie udało się zwalidować użytkownika"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:420
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:420
|
||||
msgid "User already disabled"
|
||||
msgstr "Użytkownik jest już wyłączony"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:487
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:487
|
||||
msgid "User requested is not logged-in"
|
||||
msgstr "Żądany użytkownik nie jest zalogowany"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr "Już jesteś członkiem tej grupy"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:287
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:268
|
||||
msgid "You can't leave this group because you are the only administrator"
|
||||
msgstr ""
|
||||
"Nie możesz opuścić tej grupy, ponieważ jesteś jej jedynym administratorem"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr "Nie możesz dołączyć do tej grupy"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr "Nie masz dostępu do listy grup, jeżeli nie jesteś moderatorem."
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:387
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:387
|
||||
msgid "You need to be logged-in to change your email"
|
||||
msgstr "Musisz być zalogowany(-a), aby zmienić adres e-mail"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:345
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:345
|
||||
msgid "You need to be logged-in to change your password"
|
||||
msgstr "Musisz być zalogowany(-a), aby zmienić hasło"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:212
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:210
|
||||
msgid "You need to be logged-in to delete a group"
|
||||
msgstr "Musisz być zalogowany(-a), aby usunąć grupę"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:447
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:447
|
||||
msgid "You need to be logged-in to delete your account"
|
||||
msgstr "Musisz być zalogowany(-a), aby usunąć konto"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:259
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:240
|
||||
msgid "You need to be logged-in to join a group"
|
||||
msgstr "Musisz być zalogowany(-a), aby dołączyć do grupy"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:292
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:273
|
||||
msgid "You need to be logged-in to leave a group"
|
||||
msgstr "Musisz być zalogowany(-a), aby opuścić grupę"
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:177
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:175
|
||||
msgid "You need to be logged-in to update a group"
|
||||
msgstr "Musisz być zalogowany(-a), aby zaktualizować grupę"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:58
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:58
|
||||
msgid "You need to have admin access to list users"
|
||||
msgstr ""
|
||||
"Musisz mieć uprawnienia administratora, aby uzyskać dostęp do listy "
|
||||
"użytkowników"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:108
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:108
|
||||
msgid "You need to have an existing token to get a refresh token"
|
||||
msgstr "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
|
||||
#: lib/graphql/resolvers/user.ex:198 lib/graphql/resolvers/user.ex:222
|
||||
msgid "You requested again a confirmation email too soon"
|
||||
msgstr "Zbyt wcześnie poprosiłeś(-aś) o nową wiadomość potwierdzającą"
|
||||
|
||||
#: lib/graphql/resolvers/user.ex:128
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/user.ex:128
|
||||
msgid "Your email is not on the allowlist"
|
||||
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
|
||||
#: lib/graphql/resolvers/actor.ex:64 lib/graphql/resolvers/actor.ex:94
|
||||
msgid "Error while performing background task"
|
||||
msgstr "Błąd podczas przetwarzania zadań w tle"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:27
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:27
|
||||
msgid "No profile found with this ID"
|
||||
msgstr "Nie ma profilu o tym ID"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:54 lib/graphql/resolvers/actor.ex:91
|
||||
msgid "No remote profile found with this ID"
|
||||
msgstr "Nie ma zdalnego profilu o tym ID"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:69
|
||||
msgid "Only moderators and administrators can suspend a profile"
|
||||
msgstr "Tylko moderatorzy i administratorzy mogą zawiesić profil"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:99
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:99
|
||||
msgid "Only moderators and administrators can unsuspend a profile"
|
||||
msgstr "Tylko moderatorzy i administratorzy mogą cofnąć zawieszenie profilu"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:24
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:24
|
||||
msgid "Only remote profiles may be refreshed"
|
||||
msgstr "Tylko zdalne profile mogą być odświeżane"
|
||||
|
||||
#: lib/graphql/resolvers/actor.ex:61
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/actor.ex:61
|
||||
msgid "Profile already suspended"
|
||||
msgstr "Już zawieszono profil"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr "Twoja instancja wymaga prawidłowego adresu e-mail"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr "Anonimowe uczestnictwa nie są włączone"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr "Nie można usunać jedynego administratora grupy"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr "Nie można usunąć jedynej tożsamości użytkownika"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:109
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:109
|
||||
msgid "Comment is already deleted"
|
||||
msgstr "Komentarz jest już usunięty"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:61
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:61
|
||||
msgid "Discussion not found"
|
||||
msgstr "Nie znaleziono dyskusji"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:87
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:62 lib/graphql/resolvers/report.ex:84
|
||||
msgid "Error while saving report"
|
||||
msgstr "Wystąpił błąd podczas zapisywania zgłoszenia"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr "Wystąpił błąd podczas aktualizacji zgłoszenia"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr "Nie znaleziono id wydarzenia"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:238
|
||||
#: lib/graphql/resolvers/event.ex:283
|
||||
#, elixir-format
|
||||
msgid "Event not found"
|
||||
msgstr "Nie znaleziono wydarzenia"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#, 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"
|
||||
msgstr "Wydarzenie o ID %{id} nie istnieje"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr "Wewnętrzny błąd"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:234
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:100 lib/graphql/resolvers/participant.ex:231
|
||||
msgid "Moderator profile is not owned by authenticated user"
|
||||
msgstr "Profil moderatora nie należy do uwierzytelnionego użytkownika"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr "Nie znaleziono dyskusji o ID ${id}"
|
||||
|
||||
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:171
|
||||
msgid "No profile found for user"
|
||||
msgstr "Nie znaleziono profilu dla użytkownika"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr "Nie ma takiego tokenu strumienia"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:202
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:202
|
||||
msgid "Organizer profile is not owned by the user"
|
||||
msgstr "Profil organizatora nie należy do użytkownika"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{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
|
||||
#: 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"
|
||||
msgstr "Nie znaleziono uczestnika"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:31
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:31
|
||||
msgid "Person with ID %{id} not found"
|
||||
msgstr "Osoba o ID %{id} nie istnieje"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:52
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:52
|
||||
msgid "Person with username %{username} not found"
|
||||
msgstr "Nie znaleziono osoby o nazwie użytkownika %{username}"
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr "Nie znaleziono obrazka o ID %{id}"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:165 lib/graphql/resolvers/post.ex:198
|
||||
msgid "Post ID is not a valid ID"
|
||||
msgstr "ID wpisu nie jest prawidłowym ID"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:168 lib/graphql/resolvers/post.ex:201
|
||||
msgid "Post doesn't exist"
|
||||
msgstr "Wpis nie istnieje"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:86
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:86
|
||||
msgid "Profile invited doesn't exist"
|
||||
msgstr "Zaproszony profil nie istnieje"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:95 lib/graphql/resolvers/member.ex:99
|
||||
msgid "Profile is already a member of this group"
|
||||
msgstr "Profil jest już członkiem tej grupy"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:131 lib/graphql/resolvers/post.ex:171
|
||||
#: lib/graphql/resolvers/post.ex:204 lib/graphql/resolvers/resource.ex:87 lib/graphql/resolvers/resource.ex:124
|
||||
#: lib/graphql/resolvers/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:197 lib/graphql/resolvers/todos.ex:225
|
||||
#, elixir-format
|
||||
msgid "Profile is not member of group"
|
||||
msgstr "Profil nie jest członkiem grupy"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:154 lib/graphql/resolvers/person.ex:182
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:152 lib/graphql/resolvers/person.ex:180
|
||||
msgid "Profile not found"
|
||||
msgstr "Nie znaleziono profilu"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:241
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:104 lib/graphql/resolvers/participant.ex:238
|
||||
msgid "Provided moderator profile doesn't have permission on this event"
|
||||
msgstr "Wskazany profil moderatora nie ma uprawnień dla tego wydarzenia"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:38
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:38
|
||||
msgid "Report not found"
|
||||
msgstr "Nie znaleziono zgłoszenia"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:150 lib/graphql/resolvers/resource.ex:179
|
||||
msgid "Resource doesn't exist"
|
||||
msgstr "Zasób nie istnieje"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr "Wydarzenie już przekroczyło maksymalną zasobność"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr "Ten token jest nieprawidłowy"
|
||||
|
||||
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/todos.ex:168 lib/graphql/resolvers/todos.ex:222
|
||||
msgid "Todo doesn't exist"
|
||||
msgstr "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:219
|
||||
#, elixir-format
|
||||
msgid "Todo list doesn't exist"
|
||||
msgstr "Lista do zrobienia nie istnieje"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr "Token nie istnieje"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr "Token nie jest prawidłowym UUID"
|
||||
|
||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:323
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:319
|
||||
msgid "User not found"
|
||||
msgstr "Nie znaleziono użytkownika"
|
||||
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr "Już masz profil dla tego użytkownika"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr "Już jesteś uczestnikiem tego wydarzenia"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:185
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:188
|
||||
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"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:89
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:89
|
||||
msgid "You are not a member of this group"
|
||||
msgstr "Nie jesteś członkiem tej grupy"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:154
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:154
|
||||
msgid "You are not a moderator or admin for this group"
|
||||
msgstr "Nie jesteś moderatorem ani administratorem tej grupy"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:55
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:55
|
||||
msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:44
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:41
|
||||
msgid "You are not allowed to create a feed token if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:117
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:117
|
||||
msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:81
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:78
|
||||
msgid "You are not allowed to delete a feed token if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:77
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:77
|
||||
msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:167
|
||||
#: lib/graphql/resolvers/participant.ex:196
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:158
|
||||
#, 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"
|
||||
msgstr ""
|
||||
"Nie możesz przydzielić sobie niższej rangi grupy, ponieważ jesteś jedynym "
|
||||
"administratorem"
|
||||
|
||||
#: lib/graphql/resolvers/comment.ex:105
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/comment.ex:105
|
||||
msgid "You cannot delete this comment"
|
||||
msgstr "Nie możesz usunąć tego komentarza"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:279
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:279
|
||||
msgid "You cannot delete this event"
|
||||
msgstr "Nie możesz usunąć tego wydarzenia"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:92
|
||||
msgid "You cannot invite to this group"
|
||||
msgstr "Nie możesz zaprosić do tej grupy"
|
||||
|
||||
#: lib/graphql/resolvers/feed_token.ex:75
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
msgid "You don't have permission to delete this token"
|
||||
msgstr "Nie masz uprawnień do usunięcia tego tokenu"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:52
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:52
|
||||
msgid "You need to be logged-in and a moderator to list action logs"
|
||||
msgstr "Musisz być zalogowanym moderatorem, aby mieć dostęp do dzennika działań"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:28
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:28
|
||||
msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr "Musisz być zalogowanym moderatorem, aby mieć dostęp do listy zgłoszeń"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:118
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:115
|
||||
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"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:43
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:43
|
||||
msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr "Musisz być zalogowanym moderatorem, aby wyświetlić zgłoszenie"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:220
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:236
|
||||
msgid "You need to be logged-in and an administrator to access admin settings"
|
||||
msgstr ""
|
||||
"Musisz być zalogowanym moderatorem, aby uzyskać dostęp do ustawień "
|
||||
"administratora"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:205
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:221
|
||||
msgid "You need to be logged-in and an administrator to access dashboard statistics"
|
||||
msgstr ""
|
||||
"Musisz być zalogowanym administratorem, aby uzyskać dostęp do statystyk w "
|
||||
"panelu"
|
||||
|
||||
#: lib/graphql/resolvers/admin.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:260
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
"Musisz być zalogowanym administratorem, aby zapisywać ustawienia "
|
||||
"administratora"
|
||||
|
||||
#: lib/graphql/resolvers/discussion.ex:66
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:66
|
||||
msgid "You need to be logged-in to access discussions"
|
||||
msgstr "Musisz być zalogowany(-a), aby uzyskać dostęp do dyskusji"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:93
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:93
|
||||
msgid "You need to be logged-in to access resources"
|
||||
msgstr "Musisz być zalogowany(-a), aby uzyskać dostęp do zasobów"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:213
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:213
|
||||
msgid "You need to be logged-in to create events"
|
||||
msgstr "Musisz być zalogowany(-a), aby móc utworzyć wydarzenia"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:139
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:139
|
||||
msgid "You need to be logged-in to create posts"
|
||||
msgstr "Musisz być zalogowany(-a), aby utworzyć wpis"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:81 lib/graphql/resolvers/report.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:78 lib/graphql/resolvers/report.ex:89
|
||||
msgid "You need to be logged-in to create reports"
|
||||
msgstr "Musisz być zalogowany(-a), aby utworzyć zgłoszenie"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:129
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:129
|
||||
msgid "You need to be logged-in to create resources"
|
||||
msgstr "Musisz być zalogowany(-a), aby utworzyć zasób"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:291
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:291
|
||||
msgid "You need to be logged-in to delete an event"
|
||||
msgstr "Musisz być zalogowany(-a), aby usunąć wydarzenie"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:209
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:209
|
||||
msgid "You need to be logged-in to delete posts"
|
||||
msgstr "Musisz być zalogowany(-a), aby usunąć wpis"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:187
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:187
|
||||
msgid "You need to be logged-in to delete resources"
|
||||
msgstr "Musisz być zalogowany(-a), aby usunąć zasób"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:108
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:105
|
||||
msgid "You need to be logged-in to join an event"
|
||||
msgstr "Musisz być zalogowany(-a), aby dołączyć do wydarzenia"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:207
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:204
|
||||
msgid "You need to be logged-in to leave an event"
|
||||
msgstr "Musisz być zalogowany(-a), aby opuścić wydarzenie"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:252
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:252
|
||||
msgid "You need to be logged-in to update an event"
|
||||
msgstr "Musisz być zalogowany(-a), aby zaktualizować wydarzenie"
|
||||
|
||||
#: lib/graphql/resolvers/post.ex:176
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/post.ex:176
|
||||
msgid "You need to be logged-in to update posts"
|
||||
msgstr "Musisz być zalogowany(-a), aby zaktualizować wpis"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:158
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:158
|
||||
msgid "You need to be logged-in to update resources"
|
||||
msgstr "Musisz być zalogowany(-a), aby zaktualizować zasób"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:210
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:210
|
||||
msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr "Musisz być zalogowany(-a), aby zobaczyć podgląd zasobu"
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr "Musisz się zalogować, aby dodać obraz"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr "ID zgłaszającego nie zgadza się z ID anonimowego profilu"
|
||||
|
||||
#: lib/graphql/resolvers/report.ex:59
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:59
|
||||
msgid "Reporter profile is not owned by authenticated user"
|
||||
msgstr "Profil zgłaszającego nie należy od uwierzytelnionego użytkownika"
|
||||
|
||||
#: lib/graphql/resolvers/resource.ex:121
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/resource.ex:121
|
||||
msgid "Parent resource doesn't belong to this group"
|
||||
msgstr "Nadrzędny zasób nie należy do tej grupy"
|
||||
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr "Podane ID profilu nie jest anonimowym profilem"
|
||||
|
||||
#: lib/mobilizon/users/user.ex:109
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:109
|
||||
msgid "The chosen password is too short."
|
||||
msgstr "Wybrane hasło jest zbyt krótkie"
|
||||
|
||||
#: lib/mobilizon/users/user.ex:138
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:138
|
||||
msgid "The registration token is already in use, this looks like an issue on our side."
|
||||
msgstr ""
|
||||
"Token rejestracyjny jest już w użyciu, to wygląda na problem po naszej "
|
||||
"stronie."
|
||||
|
||||
#: lib/mobilizon/users/user.ex:104
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/users/user.ex:104
|
||||
msgid "This email is already used."
|
||||
msgstr "Ten adres e-mail jest już w użyciu."
|
||||
|
||||
#: lib/graphql/error.ex:88
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:88
|
||||
msgid "Post not found"
|
||||
msgstr "Nie znaleziono wpisu"
|
||||
|
||||
#: lib/graphql/error.ex:75
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:75
|
||||
msgid "Invalid arguments passed"
|
||||
msgstr "Podano nieprawidłowe argumenty"
|
||||
|
||||
#: lib/graphql/error.ex:81
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:81
|
||||
msgid "Invalid credentials"
|
||||
msgstr "Nieprawidłowe dane uwierzytelniające"
|
||||
|
||||
#: lib/graphql/error.ex:79
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:79
|
||||
msgid "Reset your password to login"
|
||||
msgstr "Resetuj swoje hasło, aby zalogować się"
|
||||
|
||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
||||
msgid "Resource not found"
|
||||
msgstr "Nie znaleziono zasobu"
|
||||
|
||||
#: lib/graphql/error.ex:92
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:92
|
||||
msgid "Something went wrong"
|
||||
msgstr "Coś poszło nie tak"
|
||||
|
||||
#: lib/graphql/error.ex:74
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:74
|
||||
msgid "Unknown Resource"
|
||||
msgstr "Nieznany zasób"
|
||||
|
||||
#: lib/graphql/error.ex:84
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:84
|
||||
msgid "You don't have permission to do this"
|
||||
msgstr "Nie masz uprawnień aby to zrobić"
|
||||
|
||||
#: lib/graphql/error.ex:76
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:76
|
||||
msgid "You need to be logged in"
|
||||
msgstr "Musisz być zalogowany(-a)"
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:119
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:119
|
||||
msgid "You can't accept this invitation with this profile."
|
||||
msgstr "Nie możesz zaakceptować tego zaproszenia z tego profilu."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:137
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:137
|
||||
msgid "You can't reject this invitation with this profile."
|
||||
msgstr "Nie możesz odrzucić tego zaproszenia z tego profilu."
|
||||
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr "Plik nie ma dozwolonego typu MIME."
|
||||
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr "Profil nie jest administratorem grupy"
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:241
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:241
|
||||
msgid "You can't edit this event."
|
||||
msgstr "Nie możesz edytować tego wydarzenia."
|
||||
|
||||
#: lib/graphql/resolvers/event.ex:244
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/event.ex:244
|
||||
msgid "You can't attribute this event to this profile."
|
||||
msgstr "Nie możesz przypisać tego wydarzenia do tego profilu."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:140
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:140
|
||||
msgid "This invitation doesn't exist."
|
||||
msgstr "To zaproszenie nie istnieje."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:182
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:182
|
||||
msgid "This member already has been rejected."
|
||||
msgstr "Ten członek już został odrzucony."
|
||||
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
msgstr "Nie masz uprawnień do usunięcia tego członka."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/actors/actor.ex:344
|
||||
msgid "This username is already taken."
|
||||
msgstr ""
|
||||
|
@ -112,17 +112,17 @@ msgid "You created an account on %{host} with this email address. You are one cl
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:113
|
||||
#: lib/web/email/participation.ex:112
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:71
|
||||
#: lib/web/email/participation.ex:70
|
||||
msgid "Your participation to event %{title} has been rejected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:36
|
||||
#: lib/web/email/event.ex:37
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr ""
|
||||
|
||||
@ -142,7 +142,7 @@ msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:135
|
||||
#: lib/web/email/participation.ex:134
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
||||
@ -398,14 +398,14 @@ msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/notification_each_week.html.eex:38
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:4
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:3
|
||||
msgid "You have one event this week:"
|
||||
msgid_plural "You have %{total} events this week:"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/service/metadata/utils.ex:27
|
||||
#: lib/service/metadata/utils.ex:52
|
||||
msgid "The event organizer didn't add any description."
|
||||
msgstr ""
|
||||
|
||||
@ -760,7 +760,7 @@ msgstr ""
|
||||
#: 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/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
|
||||
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."
|
||||
@ -1236,7 +1236,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:92
|
||||
#: lib/web/email/participation.ex:91
|
||||
msgid "Your participation to event %{title} has been confirmed"
|
||||
msgstr ""
|
||||
|
||||
@ -1363,7 +1363,7 @@ msgstr ""
|
||||
msgid "We're sorry, but something went wrong on our end."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email.html.eex:88
|
||||
#: lib/web/templates/email/email.text.eex:4
|
||||
msgid "This is a demonstration site to test Mobilizon."
|
||||
|
@ -92,17 +92,17 @@ msgid "Cannot refresh the token"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -112,13 +112,13 @@ msgid "Error while saving user settings"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr ""
|
||||
|
||||
@ -128,7 +128,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr ""
|
||||
|
||||
@ -144,19 +144,18 @@ msgid "No user to validate with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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
|
||||
msgid "No user with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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/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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -222,22 +221,22 @@ msgid "User requested is not logged-in"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr ""
|
||||
|
||||
@ -252,7 +251,7 @@ msgid "You need to be logged-in to change your password"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -262,17 +261,17 @@ msgid "You need to be logged-in to delete your account"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -332,22 +331,22 @@ msgid "Profile already suspended"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr ""
|
||||
|
||||
@ -362,17 +361,17 @@ msgid "Discussion not found"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr ""
|
||||
|
||||
@ -383,23 +382,23 @@ msgid "Event not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr ""
|
||||
|
||||
@ -409,7 +408,7 @@ msgid "No profile found for user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr ""
|
||||
|
||||
@ -419,14 +418,14 @@ msgid "Organizer profile is not owned by the user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{role}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:173
|
||||
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237
|
||||
#: lib/graphql/resolvers/participant.ex:247
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -441,7 +440,7 @@ msgid "Person with username %{username} not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr ""
|
||||
|
||||
@ -475,12 +474,12 @@ msgid "Profile is not member of group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -495,12 +494,12 @@ msgid "Resource doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr ""
|
||||
|
||||
@ -516,32 +515,32 @@ msgid "Todo list doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -561,7 +560,7 @@ msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -571,7 +570,7 @@ msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -581,8 +580,8 @@ msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -607,7 +606,7 @@ msgid "You cannot invite to this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -622,7 +621,7 @@ msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -632,17 +631,17 @@ msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -667,7 +666,7 @@ msgid "You need to be logged-in to create posts"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -692,12 +691,12 @@ msgid "You need to be logged-in to delete resources"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -722,12 +721,12 @@ msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr ""
|
||||
|
||||
@ -742,7 +741,7 @@ msgid "Parent resource doesn't belong to this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr ""
|
||||
|
||||
@ -817,12 +816,12 @@ msgid "You can't reject this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr ""
|
||||
|
||||
@ -850,3 +849,8 @@ msgstr ""
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/actors/actor.ex:344
|
||||
msgid "This username is already taken."
|
||||
msgstr ""
|
||||
|
@ -123,17 +123,17 @@ msgstr ""
|
||||
"ignorar este e-mail."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:113
|
||||
#: lib/web/email/participation.ex:112
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "A sua participação no evento %{title} foi aprovada"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:71
|
||||
#: lib/web/email/participation.ex:70
|
||||
msgid "Your participation to event %{title} has been rejected"
|
||||
msgstr "A sua participação no evento %{title} foi rejeitada"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:36
|
||||
#: lib/web/email/event.ex:37
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "Evento %{title} foi atualizado"
|
||||
|
||||
@ -153,7 +153,7 @@ msgid "Warning"
|
||||
msgstr "Atenção"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:135
|
||||
#: lib/web/email/participation.ex:134
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Confirmar sua participação no evento %{title}"
|
||||
|
||||
@ -444,14 +444,14 @@ msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/notification_each_week.html.eex:38
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:4
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:3
|
||||
msgid "You have one event this week:"
|
||||
msgid_plural "You have %{total} events this week:"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/service/metadata/utils.ex:27
|
||||
#: lib/service/metadata/utils.ex:52
|
||||
msgid "The event organizer didn't add any description."
|
||||
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.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/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
|
||||
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."
|
||||
@ -1348,7 +1348,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
|
||||
msgstr "Você solicitou participar no evento %{title}."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:92
|
||||
#: lib/web/email/participation.ex:91
|
||||
msgid "Your participation to event %{title} has been confirmed"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email.html.eex:88
|
||||
#: lib/web/templates/email/email.text.eex:4
|
||||
msgid "This is a demonstration site to test Mobilizon."
|
||||
|
@ -92,17 +92,17 @@ msgid "Cannot refresh the token"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -112,13 +112,13 @@ msgid "Error while saving user settings"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr ""
|
||||
|
||||
@ -128,7 +128,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr ""
|
||||
|
||||
@ -144,19 +144,18 @@ msgid "No user to validate with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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
|
||||
msgid "No user with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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/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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -222,22 +221,22 @@ msgid "User requested is not logged-in"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr ""
|
||||
|
||||
@ -252,7 +251,7 @@ msgid "You need to be logged-in to change your password"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -262,17 +261,17 @@ msgid "You need to be logged-in to delete your account"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -332,22 +331,22 @@ msgid "Profile already suspended"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr ""
|
||||
|
||||
@ -362,17 +361,17 @@ msgid "Discussion not found"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr ""
|
||||
|
||||
@ -383,23 +382,23 @@ msgid "Event not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr ""
|
||||
|
||||
@ -409,7 +408,7 @@ msgid "No profile found for user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr ""
|
||||
|
||||
@ -419,14 +418,14 @@ msgid "Organizer profile is not owned by the user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{role}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:173
|
||||
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237
|
||||
#: lib/graphql/resolvers/participant.ex:247
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -441,7 +440,7 @@ msgid "Person with username %{username} not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr ""
|
||||
|
||||
@ -475,12 +474,12 @@ msgid "Profile is not member of group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -495,12 +494,12 @@ msgid "Resource doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr ""
|
||||
|
||||
@ -516,32 +515,32 @@ msgid "Todo list doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -561,7 +560,7 @@ msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -571,7 +570,7 @@ msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -581,8 +580,8 @@ msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -607,7 +606,7 @@ msgid "You cannot invite to this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -622,7 +621,7 @@ msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -632,17 +631,17 @@ msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -667,7 +666,7 @@ msgid "You need to be logged-in to create posts"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -692,12 +691,12 @@ msgid "You need to be logged-in to delete resources"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -722,12 +721,12 @@ msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr ""
|
||||
|
||||
@ -742,7 +741,7 @@ msgid "Parent resource doesn't belong to this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr ""
|
||||
|
||||
@ -817,12 +816,12 @@ msgid "You can't reject this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr ""
|
||||
|
||||
@ -850,3 +849,8 @@ msgstr ""
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/actors/actor.ex:344
|
||||
msgid "This username is already taken."
|
||||
msgstr ""
|
||||
|
@ -119,17 +119,17 @@ msgid "You created an account on %{host} with this email address. You are one cl
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:113
|
||||
#: lib/web/email/participation.ex:112
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:71
|
||||
#: lib/web/email/participation.ex:70
|
||||
msgid "Your participation to event %{title} has been rejected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:36
|
||||
#: lib/web/email/event.ex:37
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr ""
|
||||
|
||||
@ -149,7 +149,7 @@ msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:135
|
||||
#: lib/web/email/participation.ex:134
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
||||
@ -409,7 +409,7 @@ msgstr[2] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/notification_each_week.html.eex:38
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:4
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:3
|
||||
msgid "You have one event this week:"
|
||||
msgid_plural "You have %{total} events this week:"
|
||||
msgstr[0] ""
|
||||
@ -417,7 +417,7 @@ msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/service/metadata/utils.ex:27
|
||||
#: lib/service/metadata/utils.ex:52
|
||||
msgid "The event organizer didn't add any description."
|
||||
msgstr ""
|
||||
|
||||
@ -774,7 +774,7 @@ msgstr ""
|
||||
#: 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/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
|
||||
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."
|
||||
@ -1252,7 +1252,7 @@ msgid "You recently requested to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:92
|
||||
#: lib/web/email/participation.ex:91
|
||||
msgid "Your participation to event %{title} has been confirmed"
|
||||
msgstr ""
|
||||
|
||||
@ -1381,7 +1381,7 @@ msgstr ""
|
||||
msgid "We're sorry, but something went wrong on our end."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email.html.eex:88
|
||||
#: lib/web/templates/email/email.text.eex:4
|
||||
msgid "This is a demonstration site to test Mobilizon."
|
||||
|
@ -98,17 +98,17 @@ msgid "Cannot refresh the token"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -118,13 +118,13 @@ msgid "Error while saving user settings"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr ""
|
||||
|
||||
@ -134,7 +134,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr ""
|
||||
|
||||
@ -150,19 +150,18 @@ msgid "No user to validate with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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
|
||||
msgid "No user with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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/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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -228,22 +227,22 @@ msgid "User requested is not logged-in"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr ""
|
||||
|
||||
@ -258,7 +257,7 @@ msgid "You need to be logged-in to change your password"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -268,17 +267,17 @@ msgid "You need to be logged-in to delete your account"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -338,22 +337,22 @@ msgid "Profile already suspended"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr ""
|
||||
|
||||
@ -368,17 +367,17 @@ msgid "Discussion not found"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr ""
|
||||
|
||||
@ -389,23 +388,23 @@ msgid "Event not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr ""
|
||||
|
||||
@ -415,7 +414,7 @@ msgid "No profile found for user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr ""
|
||||
|
||||
@ -425,14 +424,14 @@ msgid "Organizer profile is not owned by the user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{role}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:173
|
||||
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237
|
||||
#: lib/graphql/resolvers/participant.ex:247
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -447,7 +446,7 @@ msgid "Person with username %{username} not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr ""
|
||||
|
||||
@ -481,12 +480,12 @@ msgid "Profile is not member of group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -501,12 +500,12 @@ msgid "Resource doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr ""
|
||||
|
||||
@ -522,32 +521,32 @@ msgid "Todo list doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -567,7 +566,7 @@ msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -577,7 +576,7 @@ msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -587,8 +586,8 @@ msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -613,7 +612,7 @@ msgid "You cannot invite to this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -628,7 +627,7 @@ msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -638,17 +637,17 @@ msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -673,7 +672,7 @@ msgid "You need to be logged-in to create posts"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -698,12 +697,12 @@ msgid "You need to be logged-in to delete resources"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -728,12 +727,12 @@ msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr ""
|
||||
|
||||
@ -748,7 +747,7 @@ msgid "Parent resource doesn't belong to this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr ""
|
||||
|
||||
@ -823,12 +822,12 @@ msgid "You can't reject this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr ""
|
||||
|
||||
@ -856,3 +855,8 @@ msgstr ""
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/actors/actor.ex:344
|
||||
msgid "This username is already taken."
|
||||
msgstr ""
|
||||
|
@ -124,17 +124,17 @@ msgstr ""
|
||||
"du strunta i det här meddelandet."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:113
|
||||
#: lib/web/email/participation.ex:112
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Din förfrågan om att få delta i evenemanget %{title} har godkännts"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:71
|
||||
#: lib/web/email/participation.ex:70
|
||||
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"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:36
|
||||
#: lib/web/email/event.ex:37
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "Evenemanget %{title} har uppdaterats"
|
||||
|
||||
@ -154,7 +154,7 @@ msgid "Warning"
|
||||
msgstr "Varning"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:135
|
||||
#: lib/web/email/participation.ex:134
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
||||
@ -410,14 +410,14 @@ msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/notification_each_week.html.eex:38
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:4
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:3
|
||||
msgid "You have one event this week:"
|
||||
msgid_plural "You have %{total} events this week:"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/service/metadata/utils.ex:27
|
||||
#: lib/service/metadata/utils.ex:52
|
||||
msgid "The event organizer didn't add any description."
|
||||
msgstr ""
|
||||
|
||||
@ -774,7 +774,7 @@ msgstr ""
|
||||
#: 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/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
|
||||
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."
|
||||
@ -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>."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/participation.ex:92
|
||||
#: lib/web/email/participation.ex:91
|
||||
msgid "Your participation to event %{title} has been confirmed"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/email.html.eex:88
|
||||
#: lib/web/templates/email/email.text.eex:4
|
||||
msgid "This is a demonstration site to test Mobilizon."
|
||||
|
@ -99,17 +99,17 @@ msgid "Cannot refresh the token"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:139
|
||||
#: lib/graphql/resolvers/group.ex:137
|
||||
msgid "Creator profile is not owned by the current user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:203
|
||||
#: lib/graphql/resolvers/group.ex:201
|
||||
msgid "Current profile is not a member of this group"
|
||||
msgstr "Den nuvarande profilen är inte med i den här gruppen"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:207
|
||||
#: lib/graphql/resolvers/group.ex:205
|
||||
msgid "Current profile is not an administrator of the selected group"
|
||||
msgstr ""
|
||||
|
||||
@ -119,13 +119,13 @@ msgid "Error while saving user settings"
|
||||
msgstr "Ett fel uppstod när användarinställningarna skulle sparas"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:200
|
||||
#: lib/graphql/resolvers/group.ex:248 lib/graphql/resolvers/group.ex:283 lib/graphql/resolvers/member.ex:83
|
||||
#: 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"
|
||||
msgstr "Gruppen kunde inte hittas"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:69
|
||||
#: lib/graphql/resolvers/group.ex:66
|
||||
msgid "Group with ID %{id} not found"
|
||||
msgstr "Gruppen med %{id} kunde inte hittas"
|
||||
|
||||
@ -135,7 +135,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:280
|
||||
#: lib/graphql/resolvers/group.ex:261
|
||||
msgid "Member not found"
|
||||
msgstr ""
|
||||
|
||||
@ -151,19 +151,18 @@ msgid "No user to validate with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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
|
||||
msgid "No user with this email was found"
|
||||
msgstr ""
|
||||
|
||||
#, 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/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
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -229,22 +228,22 @@ msgid "User requested is not logged-in"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:254
|
||||
#: lib/graphql/resolvers/group.ex:235
|
||||
msgid "You are already a member of this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:251
|
||||
#: lib/graphql/resolvers/group.ex:232
|
||||
msgid "You cannot join this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:97
|
||||
#: lib/graphql/resolvers/group.ex:94
|
||||
msgid "You may not list groups unless moderator."
|
||||
msgstr ""
|
||||
|
||||
@ -259,7 +258,7 @@ msgid "You need to be logged-in to change your password"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -269,17 +268,17 @@ msgid "You need to be logged-in to delete your account"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -339,22 +338,22 @@ msgid "Profile already suspended"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:96
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
msgid "A valid email is required by your instance"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
msgid "Anonymous participation is not enabled"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:188
|
||||
#: lib/graphql/resolvers/person.ex:186
|
||||
msgid "Cannot remove the last administrator of a group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:185
|
||||
#: lib/graphql/resolvers/person.ex:183
|
||||
msgid "Cannot remove the last identity of a user"
|
||||
msgstr ""
|
||||
|
||||
@ -369,17 +368,17 @@ msgid "Discussion not found"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:113
|
||||
#: lib/graphql/resolvers/report.ex:110
|
||||
msgid "Error while updating report"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
#: lib/graphql/resolvers/participant.ex:128
|
||||
msgid "Event id not found"
|
||||
msgstr ""
|
||||
|
||||
@ -390,23 +389,23 @@ msgid "Event not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:87
|
||||
#: lib/graphql/resolvers/participant.ex:128 lib/graphql/resolvers/participant.ex:160
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:103
|
||||
#: lib/graphql/resolvers/participant.ex:100
|
||||
msgid "Internal Error"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/discussion.ex:181
|
||||
#: lib/graphql/resolvers/discussion.ex:184
|
||||
msgid "No discussion with ID %{id}"
|
||||
msgstr ""
|
||||
|
||||
@ -416,7 +415,7 @@ msgid "No profile found for user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
#: lib/graphql/resolvers/feed_token.ex:63
|
||||
msgid "No such feed token"
|
||||
msgstr ""
|
||||
|
||||
@ -426,14 +425,14 @@ msgid "Organizer profile is not owned by the user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:244
|
||||
#: lib/graphql/resolvers/participant.ex:241
|
||||
msgid "Participant already has role %{role}"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:173
|
||||
#: lib/graphql/resolvers/participant.ex:202 lib/graphql/resolvers/participant.ex:237
|
||||
#: lib/graphql/resolvers/participant.ex:247
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -448,7 +447,7 @@ msgid "Person with username %{username} not found"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:45
|
||||
#: lib/graphql/resolvers/picture.ex:42
|
||||
msgid "Picture with ID %{id} was not found"
|
||||
msgstr ""
|
||||
|
||||
@ -482,12 +481,12 @@ msgid "Profile is not member of group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -502,12 +501,12 @@ msgid "Resource doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:124
|
||||
#: lib/graphql/resolvers/participant.ex:121
|
||||
msgid "The event has already reached its maximum capacity"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:267
|
||||
#: lib/graphql/resolvers/participant.ex:264
|
||||
msgid "This token is invalid"
|
||||
msgstr ""
|
||||
|
||||
@ -523,32 +522,32 @@ msgid "Todo list doesn't exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:72
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
msgid "Token does not exist"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/feed_token.ex:69
|
||||
#: lib/graphql/resolvers/feed_token.ex:66
|
||||
msgid "Token is not a valid UUID"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/person.ex:235
|
||||
#: lib/graphql/resolvers/person.ex:234
|
||||
msgid "You already have a profile for this user"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:134
|
||||
#: lib/graphql/resolvers/participant.ex:131
|
||||
msgid "You are already a participant of this event"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -568,7 +567,7 @@ msgid "You are not allowed to create a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -578,7 +577,7 @@ msgid "You are not allowed to delete a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -588,8 +587,8 @@ msgid "You are not allowed to update a comment if not connected"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
@ -614,7 +613,7 @@ msgid "You cannot invite to this group"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -629,7 +628,7 @@ msgid "You need to be logged-in and a moderator to list reports"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -639,17 +638,17 @@ msgid "You need to be logged-in and a moderator to view a report"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -674,7 +673,7 @@ msgid "You need to be logged-in to create posts"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -699,12 +698,12 @@ msgid "You need to be logged-in to delete resources"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
#, 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"
|
||||
msgstr ""
|
||||
|
||||
@ -729,12 +728,12 @@ msgid "You need to be logged-in to view a resource preview"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:86
|
||||
#: lib/graphql/resolvers/picture.ex:83
|
||||
msgid "You need to login to upload a picture"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/report.ex:84
|
||||
#: lib/graphql/resolvers/report.ex:81
|
||||
msgid "Reporter ID does not match the anonymous profile id"
|
||||
msgstr ""
|
||||
|
||||
@ -749,7 +748,7 @@ msgid "Parent resource doesn't belong to this group"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/participant.ex:93
|
||||
#: lib/graphql/resolvers/participant.ex:90
|
||||
msgid "Profile ID provided is not the anonymous profile one"
|
||||
msgstr ""
|
||||
|
||||
@ -824,12 +823,12 @@ msgid "You can't reject this invitation with this profile."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/picture.ex:78
|
||||
#: lib/graphql/resolvers/picture.ex:75
|
||||
msgid "File doesn't have an allowed MIME type."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/group.ex:172
|
||||
#: lib/graphql/resolvers/group.ex:170
|
||||
msgid "Profile is not administrator for the group"
|
||||
msgstr ""
|
||||
|
||||
@ -857,3 +856,8 @@ msgstr ""
|
||||
#: lib/graphql/resolvers/member.ex:189
|
||||
msgid "You don't have the right to remove this member."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/mobilizon/actors/actor.ex:344
|
||||
msgid "This username is already taken."
|
||||
msgstr ""
|
||||
|
@ -16,6 +16,67 @@ defmodule Mobilizon.GraphQL.Resolvers.UserTest do
|
||||
|
||||
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 """
|
||||
mutation ChangeEmail($email: String!, $password: String!) {
|
||||
changeEmail(email: $email, password: $password) {
|
||||
@ -68,201 +129,129 @@ defmodule Mobilizon.GraphQL.Resolvers.UserTest do
|
||||
user = insert(:user)
|
||||
modo = insert(:user, role: :moderator)
|
||||
|
||||
query = """
|
||||
{
|
||||
user(id: "#{user.id}") {
|
||||
email,
|
||||
}
|
||||
}
|
||||
"""
|
||||
res =
|
||||
conn
|
||||
|> auth_conn(modo)
|
||||
|> AbsintheHelpers.graphql_query(
|
||||
query: @get_user_query,
|
||||
variables: %{id: user.id}
|
||||
)
|
||||
|
||||
assert res["data"]["user"]["email"] == user.email
|
||||
|
||||
res =
|
||||
conn
|
||||
|> 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
|
||||
|
||||
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"
|
||||
assert res["data"]["user"] == nil
|
||||
assert hd(res["errors"])["message"] == "User with ID #{0} not found"
|
||||
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)
|
||||
|
||||
query = """
|
||||
{
|
||||
loggedUser {
|
||||
id
|
||||
}
|
||||
}
|
||||
"""
|
||||
|
||||
res =
|
||||
context.conn
|
||||
|> get("/api", AbsintheHelpers.query_skeleton(query, "logged_user"))
|
||||
conn
|
||||
|> 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"
|
||||
|
||||
res =
|
||||
context.conn
|
||||
conn
|
||||
|> 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
|
||||
|
||||
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)
|
||||
user = insert(:user, email: "fifi@example.com")
|
||||
insert(:user, email: "loulou@example.com", role: :administrator)
|
||||
|
||||
query = """
|
||||
{
|
||||
users {
|
||||
total,
|
||||
elements {
|
||||
email
|
||||
}
|
||||
}
|
||||
}
|
||||
"""
|
||||
|
||||
res =
|
||||
context.conn
|
||||
conn
|
||||
|> 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"
|
||||
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)
|
||||
insert(:user, email: "fifi@example.com")
|
||||
insert(:user, email: "loulou@example.com")
|
||||
|
||||
query = """
|
||||
{
|
||||
users {
|
||||
total,
|
||||
elements {
|
||||
email
|
||||
}
|
||||
}
|
||||
}
|
||||
"""
|
||||
|
||||
res =
|
||||
context.conn
|
||||
conn
|
||||
|> 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 json_response(res, 200)["data"]["users"]["total"] == 3
|
||||
assert json_response(res, 200)["data"]["users"]["elements"] |> length == 3
|
||||
assert res["errors"] == nil
|
||||
assert res["data"]["users"]["total"] == 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"]) == [
|
||||
"loulou@example.com",
|
||||
"fifi@example.com",
|
||||
"riri@example.com"
|
||||
]
|
||||
|
||||
query = """
|
||||
{
|
||||
users(page: 2, limit: 1) {
|
||||
total,
|
||||
elements {
|
||||
email
|
||||
}
|
||||
}
|
||||
}
|
||||
"""
|
||||
|
||||
res =
|
||||
context.conn
|
||||
conn
|
||||
|> 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 json_response(res, 200)["data"]["users"]["total"] == 3
|
||||
assert json_response(res, 200)["data"]["users"]["elements"] |> length == 1
|
||||
assert res["errors"] == nil
|
||||
assert res["data"]["users"]["total"] == 3
|
||||
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"
|
||||
]
|
||||
|
||||
query = """
|
||||
{
|
||||
users(page: 3, limit: 1, sort: ID, direction: DESC) {
|
||||
total,
|
||||
elements {
|
||||
email
|
||||
}
|
||||
}
|
||||
}
|
||||
"""
|
||||
|
||||
res =
|
||||
context.conn
|
||||
conn
|
||||
|> 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 json_response(res, 200)["data"]["users"]["total"] == 3
|
||||
assert json_response(res, 200)["data"]["users"]["elements"] |> length == 1
|
||||
assert res["errors"] == nil
|
||||
assert res["data"]["users"]["total"] == 3
|
||||
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"
|
||||
]
|
||||
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
|
||||
|
||||
describe "Resolver: Create an user & actor" do
|
||||
@ -270,7 +259,7 @@ defmodule Mobilizon.GraphQL.Resolvers.UserTest do
|
||||
email: "test@demo.tld",
|
||||
password: "long password",
|
||||
locale: "fr_FR",
|
||||
username: "toto",
|
||||
preferredUsername: "toto",
|
||||
name: "Sir Toto",
|
||||
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",
|
||||
context do
|
||||
mutation = """
|
||||
mutation {
|
||||
createUser(
|
||||
email: "#{@user_creation.email}",
|
||||
password: "#{@user_creation.password}",
|
||||
locale: "#{@user_creation.locale}"
|
||||
) {
|
||||
id,
|
||||
email,
|
||||
locale
|
||||
}
|
||||
}
|
||||
"""
|
||||
|
||||
%{conn: conn} do
|
||||
res =
|
||||
context.conn
|
||||
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation))
|
||||
conn
|
||||
|> AbsintheHelpers.graphql_query(
|
||||
query: @create_user_mutation,
|
||||
variables: @user_creation
|
||||
)
|
||||
|
||||
assert json_response(res, 200)["data"]["createUser"]["email"] == @user_creation.email
|
||||
assert json_response(res, 200)["data"]["createUser"]["locale"] == @user_creation.locale
|
||||
assert res["data"]["createUser"]["email"] == @user_creation.email
|
||||
assert res["data"]["createUser"]["locale"] == @user_creation.locale
|
||||
|
||||
{:ok, user} = Users.get_user_by_email(@user_creation.email)
|
||||
|
||||
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 =
|
||||
context.conn
|
||||
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation))
|
||||
conn
|
||||
|> AbsintheHelpers.graphql_query(
|
||||
query: @register_person_mutation,
|
||||
variables: @user_creation
|
||||
)
|
||||
|
||||
assert json_response(res, 200)["data"]["registerPerson"]["preferredUsername"] ==
|
||||
@user_creation.username
|
||||
assert res["data"]["registerPerson"]["preferredUsername"] ==
|
||||
@user_creation.preferredUsername
|
||||
end
|
||||
|
||||
test "create_user/3 doesn't allow two users with the same email", %{conn: conn} do
|
||||
mutation = """
|
||||
mutation {
|
||||
createUser(
|
||||
email: "#{@user_creation.email}",
|
||||
password: "#{@user_creation.password}",
|
||||
) {
|
||||
id,
|
||||
email
|
||||
}
|
||||
}
|
||||
"""
|
||||
res =
|
||||
conn
|
||||
|> AbsintheHelpers.graphql_query(
|
||||
query: @create_user_mutation,
|
||||
variables: @user_creation
|
||||
)
|
||||
|
||||
assert res["data"]["createUser"]["email"] == @user_creation.email
|
||||
|
||||
res =
|
||||
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
|
||||
|
||||
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."]
|
||||
assert hd(res["errors"])["message"] == ["Cette adresse e-mail est déjà utilisée."]
|
||||
end
|
||||
|
||||
test "create_user/3 doesn't allow registration when registration is closed", %{conn: conn} do
|
||||
Config.put([:instance, :registrations_open], false)
|
||||
Config.put([:instance, :registration_email_allowlist], [])
|
||||
|
||||
mutation = """
|
||||
mutation createUser($email: String!, $password: String!) {
|
||||
createUser(
|
||||
email: $email,
|
||||
password: $password,
|
||||
) {
|
||||
id,
|
||||
email
|
||||
}
|
||||
}
|
||||
"""
|
||||
|
||||
res =
|
||||
conn
|
||||
|> AbsintheHelpers.graphql_query(
|
||||
query: mutation,
|
||||
variables: %{email: @user_creation.email, password: @user_creation.password}
|
||||
query: @create_user_mutation,
|
||||
variables: @user_creation
|
||||
)
|
||||
|
||||
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, :registration_email_allowlist], ["random.org"])
|
||||
|
||||
mutation = """
|
||||
mutation createUser($email: String!, $password: String!) {
|
||||
createUser(
|
||||
email: $email,
|
||||
password: $password,
|
||||
) {
|
||||
id,
|
||||
email
|
||||
}
|
||||
}
|
||||
"""
|
||||
|
||||
res =
|
||||
conn
|
||||
|> AbsintheHelpers.graphql_query(
|
||||
query: mutation,
|
||||
variables: %{email: @user_creation.email, password: @user_creation.password}
|
||||
query: @create_user_mutation,
|
||||
variables: @user_creation
|
||||
)
|
||||
|
||||
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, :registration_email_allowlist], ["demo.tld"])
|
||||
|
||||
mutation = """
|
||||
mutation createUser($email: String!, $password: String!) {
|
||||
createUser(
|
||||
email: $email,
|
||||
password: $password,
|
||||
) {
|
||||
id,
|
||||
email
|
||||
}
|
||||
}
|
||||
"""
|
||||
|
||||
res =
|
||||
conn
|
||||
|> AbsintheHelpers.graphql_query(
|
||||
query: mutation,
|
||||
variables: %{email: @user_creation.email, password: @user_creation.password}
|
||||
query: @create_user_mutation,
|
||||
variables: @user_creation
|
||||
)
|
||||
|
||||
refute res["errors"]
|
||||
@ -462,23 +371,11 @@ defmodule Mobilizon.GraphQL.Resolvers.UserTest do
|
||||
Config.put([:instance, :registrations_open], false)
|
||||
Config.put([:instance, :registration_email_allowlist], [@user_creation.email])
|
||||
|
||||
mutation = """
|
||||
mutation createUser($email: String!, $password: String!) {
|
||||
createUser(
|
||||
email: $email,
|
||||
password: $password,
|
||||
) {
|
||||
id,
|
||||
email
|
||||
}
|
||||
}
|
||||
"""
|
||||
|
||||
res =
|
||||
conn
|
||||
|> AbsintheHelpers.graphql_query(
|
||||
query: mutation,
|
||||
variables: %{email: @user_creation.email, password: @user_creation.password}
|
||||
query: @create_user_mutation,
|
||||
variables: @user_creation
|
||||
)
|
||||
|
||||
refute res["errors"]
|
||||
@ -487,133 +384,83 @@ defmodule Mobilizon.GraphQL.Resolvers.UserTest do
|
||||
Config.put([:instance, :registration_email_allowlist], [])
|
||||
end
|
||||
|
||||
test "register_person/3 doesn't register a profile from an unknown email", context do
|
||||
mutation = """
|
||||
mutation {
|
||||
createUser(
|
||||
email: "#{@user_creation.email}",
|
||||
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
|
||||
},
|
||||
}
|
||||
}
|
||||
"""
|
||||
test "register_person/3 doesn't register a profile from an unknown email", %{conn: conn} do
|
||||
conn
|
||||
|> AbsintheHelpers.graphql_query(
|
||||
query: @create_user_mutation,
|
||||
variables: @user_creation
|
||||
)
|
||||
|
||||
res =
|
||||
context.conn
|
||||
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation))
|
||||
conn
|
||||
|> AbsintheHelpers.graphql_query(
|
||||
query: @register_person_mutation,
|
||||
variables: Map.put(@user_creation, :email, "random")
|
||||
)
|
||||
|
||||
assert hd(json_response(res, 200)["errors"])["message"] ==
|
||||
"No user with this email was found"
|
||||
assert hd(res["errors"])["message"] ==
|
||||
"Aucun·e utilisateur·ice avec cette adresse e-mail n'a été trouvé·e"
|
||||
end
|
||||
|
||||
test "register_person/3 can't be called with an existing profile", context do
|
||||
mutation = """
|
||||
mutation {
|
||||
createUser(
|
||||
email: "#{@user_creation.email}",
|
||||
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
|
||||
},
|
||||
}
|
||||
}
|
||||
"""
|
||||
test "register_person/3 can't be called with an existing profile", %{conn: conn} do
|
||||
conn
|
||||
|> AbsintheHelpers.graphql_query(
|
||||
query: @create_user_mutation,
|
||||
variables: @user_creation
|
||||
)
|
||||
|
||||
res =
|
||||
context.conn
|
||||
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation))
|
||||
conn
|
||||
|> AbsintheHelpers.graphql_query(
|
||||
query: @register_person_mutation,
|
||||
variables: @user_creation
|
||||
)
|
||||
|
||||
assert json_response(res, 200)["data"]["registerPerson"]["preferredUsername"] ==
|
||||
@user_creation.username
|
||||
|
||||
mutation = """
|
||||
mutation {
|
||||
registerPerson(
|
||||
preferredUsername: "#{@user_creation.username}",
|
||||
name: "#{@user_creation.name}",
|
||||
summary: "#{@user_creation.summary}",
|
||||
email: "#{@user_creation.email}",
|
||||
) {
|
||||
preferredUsername,
|
||||
name,
|
||||
summary,
|
||||
avatar {
|
||||
url
|
||||
},
|
||||
}
|
||||
}
|
||||
"""
|
||||
assert res["data"]["registerPerson"]["preferredUsername"] ==
|
||||
@user_creation.preferredUsername
|
||||
|
||||
res =
|
||||
context.conn
|
||||
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation))
|
||||
conn
|
||||
|> AbsintheHelpers.graphql_query(
|
||||
query: @register_person_mutation,
|
||||
variables: @user_creation
|
||||
)
|
||||
|
||||
assert hd(json_response(res, 200)["errors"])["message"] ==
|
||||
"You already have a profile for this user"
|
||||
assert hd(res["errors"])["message"] ==
|
||||
"Vous avez déjà un profil pour cet utilisateur"
|
||||
end
|
||||
|
||||
test "test create_user/3 doesn't create an user with bad email", context do
|
||||
mutation = """
|
||||
mutation {
|
||||
createUser(
|
||||
email: "#{@user_creation_bad_email.email}",
|
||||
password: "#{@user_creation_bad_email.password}",
|
||||
) {
|
||||
id,
|
||||
email
|
||||
}
|
||||
}
|
||||
"""
|
||||
test "register_person/3 is case insensitive", %{conn: conn} do
|
||||
insert(:actor, preferred_username: "myactor")
|
||||
|
||||
conn
|
||||
|> AbsintheHelpers.graphql_query(
|
||||
query: @create_user_mutation,
|
||||
variables: @user_creation
|
||||
)
|
||||
|
||||
res =
|
||||
context.conn
|
||||
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation))
|
||||
conn
|
||||
|> 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"]
|
||||
end
|
||||
end
|
||||
@ -993,7 +840,7 @@ defmodule Mobilizon.GraphQL.Resolvers.UserTest do
|
||||
user = insert(: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)
|
||||
assert {:ok, %Actor{} = actor2} = Actors.create_actor(actor_params)
|
||||
|
@ -435,8 +435,9 @@ defmodule Mobilizon.ActorsTest do
|
||||
_actor = insert(:actor, preferred_username: @valid_attrs.preferred_username)
|
||||
|
||||
assert {:error, :insert_group,
|
||||
%Ecto.Changeset{errors: [preferred_username: {"Username is already taken", []}]},
|
||||
%{}} = Actors.create_group(@valid_attrs)
|
||||
%Ecto.Changeset{
|
||||
errors: [preferred_username: {"This username is already taken.", []}]
|
||||
}, %{}} = Actors.create_group(@valid_attrs)
|
||||
end
|
||||
|
||||
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 {:error, :insert_group,
|
||||
%Ecto.Changeset{errors: [preferred_username: {"Username is already taken", []}]},
|
||||
%{}} = Actors.create_group(attrs)
|
||||
%Ecto.Changeset{
|
||||
errors: [preferred_username: {"This username is already taken.", []}]
|
||||
}, %{}} = Actors.create_group(attrs)
|
||||
end
|
||||
|
||||
test "create_group/1 with invalid data returns error changeset" do
|
||||
|
Loading…
Reference in New Issue
Block a user