Merge branch 'bugs' into 'main'

Various fixes

Closes #941, #969, #981, #966 et #965

See merge request framasoft/mobilizon!1141
This commit is contained in:
Thomas Citharel 2021-12-13 17:32:09 +00:00
commit 308f3a6d60
98 changed files with 4851 additions and 4611 deletions

View File

@ -253,7 +253,7 @@ package-app:
only:
- tags@framasoft/mobilizon
artifacts:
expire_in: 30 days
expire_in: 2 days
paths:
- ${APP_ASSET}
@ -302,7 +302,7 @@ multi-arch-release:
tags:
- "privileged"
artifacts:
expire_in: 30 days
expire_in: 2 days
paths:
- ${APP_ASSET}
parallel:

View File

@ -52,7 +52,7 @@
"intersection-observer": "^0.12.0",
"jwt-decode": "^3.1.2",
"leaflet": "^1.4.0",
"leaflet.locatecontrol": "^0.74.0",
"leaflet.locatecontrol": "^0.76.0",
"lodash": "^4.17.11",
"ngeohash": "^0.6.3",
"p-debounce": "^4.0.0",
@ -75,7 +75,7 @@
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/leaflet": "^1.5.2",
"@types/leaflet.locatecontrol": "^0.60.7",
"@types/leaflet.locatecontrol": "^0.74",
"@types/lodash": "^4.14.141",
"@types/ngeohash": "^0.6.2",
"@types/phoenix": "^1.5.2",

View File

@ -45,6 +45,7 @@ div.eventMetadataBlock {
.content-wrapper {
overflow: hidden;
width: 100%;
max-width: calc(100vw - 32px - 20px);
&.padding-left {
padding: 0 20px;

View File

@ -51,6 +51,13 @@ import { MemberRole } from "@/types/enums";
groupMemberships: {
query: LOGGED_USER_MEMBERSHIPS,
update: (data) => data.loggedUser.memberships,
variables() {
return {
page: 1,
limit: 10,
membershipName: this.actorFilter,
};
},
},
identities: IDENTITIES,
currentActor: CURRENT_ACTOR_CLIENT,

View File

@ -65,42 +65,60 @@
/>
</div>
<div class="column contact-picker">
<div v-if="isSelectedActorAGroup && actorMembers.length > 0">
<div v-if="isSelectedActorAGroup">
<p>{{ $t("Add a contact") }}</p>
<b-input
:placeholder="$t('Filter by name')"
v-model="contactFilter"
dir="auto"
/>
<p
class="field"
v-for="actor in filteredActorMembers"
:key="actor.id"
>
<b-checkbox v-model="actualContacts" :native-value="actor.id">
<div class="media">
<div class="media-left">
<figure class="image is-48x48" v-if="actor.avatar">
<img
class="image is-rounded"
:src="actor.avatar.url"
:alt="actor.avatar.alt"
<div v-if="actorMembers.length > 0">
<p
class="field"
v-for="actor in filteredActorMembers"
:key="actor.id"
>
<b-checkbox
v-model="actualContacts"
:native-value="actor.id"
>
<div class="media">
<div class="media-left">
<figure class="image is-48x48" v-if="actor.avatar">
<img
class="image is-rounded"
:src="actor.avatar.url"
:alt="actor.avatar.alt"
/>
</figure>
<b-icon
v-else
size="is-large"
icon="account-circle"
/>
</figure>
<b-icon v-else size="is-large" icon="account-circle" />
</div>
<div class="media-content" v-if="actor.name">
<p class="is-4">{{ actor.name }}</p>
<p class="is-6 has-text-grey-dark">
</div>
<div class="media-content" v-if="actor.name">
<p class="is-4">{{ actor.name }}</p>
<p class="is-6 has-text-grey-dark">
{{ `@${usernameWithDomain(actor)}` }}
</p>
</div>
<div class="media-content" v-else>
{{ `@${usernameWithDomain(actor)}` }}
</p>
</div>
</div>
<div class="media-content" v-else>
{{ `@${usernameWithDomain(actor)}` }}
</div>
</div>
</b-checkbox>
</p>
</b-checkbox>
</p>
</div>
<div
v-else-if="
actorMembers.length === 0 && contactFilter.length > 0
"
>
<empty-content icon="account-multiple" :inline="true">
{{ $t("No group member found") }}
</empty-content>
</div>
</div>
<div v-else class="content has-text-grey-dark has-text-centered">
<p>{{ $t("Your profile will be shown as contact.") }}</p>
@ -122,6 +140,7 @@ import { Component, Prop, Vue, Watch } from "vue-property-decorator";
import { IMember } from "@/types/actor/member.model";
import { IActor, IGroup, IPerson, usernameWithDomain } from "../../types/actor";
import OrganizerPicker from "./OrganizerPicker.vue";
import EmptyContent from "../Utils/EmptyContent.vue";
import {
CURRENT_ACTOR_CLIENT,
IDENTITIES,
@ -139,16 +158,17 @@ const MEMBER_ROLES = [
];
@Component({
components: { OrganizerPicker },
components: { OrganizerPicker, EmptyContent },
apollo: {
members: {
query: GROUP_MEMBERS,
variables() {
return {
name: usernameWithDomain(this.selectedActor),
groupName: usernameWithDomain(this.selectedActor),
page: this.membersPage,
limit: 10,
roles: MEMBER_ROLES.join(","),
name: this.contactFilter,
};
},
update: (data) => data.group.members,
@ -161,9 +181,11 @@ const MEMBER_ROLES = [
currentActor: CURRENT_ACTOR_CLIENT,
userMemberships: {
query: LOGGED_USER_MEMBERSHIPS,
variables: {
page: 1,
limit: 100,
variables() {
return {
page: 1,
limit: 10,
};
},
update: (data) => data.loggedUser.memberships,
},

View File

@ -11,7 +11,7 @@
<actor-auto-complete v-model="assignedTo" />
</b-field>
<b-field :label="$t('Due on')">
<b-datepicker v-model="dueDate" />
<b-datepicker v-model="dueDate" :first-day-of-week="firstDayOfWeek" />
</b-field>
</div>
</div>
@ -99,5 +99,9 @@ export default class Todo extends Vue {
});
}
}
get firstDayOfWeek(): number {
return this.$dateFnsLocale?.options?.weekStartsOn || 0;
}
}
</script>

View File

@ -239,10 +239,14 @@ export const LOGGED_USER_DRAFTS = gql`
`;
export const LOGGED_USER_MEMBERSHIPS = gql`
query LoggedUserMemberships($page: Int, $limit: Int) {
query LoggedUserMemberships(
$membershipName: String
$page: Int
$limit: Int
) {
loggedUser {
id
memberships(page: $page, limit: $limit) {
memberships(name: $membershipName, page: $page, limit: $limit) {
total
elements {
id

View File

@ -44,10 +44,16 @@ export const REJECT_INVITATION = gql`
`;
export const GROUP_MEMBERS = gql`
query ($name: String!, $roles: String, $page: Int, $limit: Int) {
group(preferredUsername: $name) {
query (
$groupName: String!
$name: String
$roles: String
$page: Int
$limit: Int
) {
group(preferredUsername: $groupName) {
...ActorFragment
members(page: $page, limit: $limit, roles: $roles) {
members(name: $name, page: $page, limit: $limit, roles: $roles) {
elements {
id
role

View File

@ -1253,5 +1253,12 @@
"The membership request from {profile} was rejected": "The membership request from {profile} was rejected",
"The member was approved": "The member was approved",
"Emails usually don't contain capitals, make sure you haven't made a typo.": "Emails usually don't contain capitals, make sure you haven't made a typo.",
"To follow groups and be informed of their latest events": "To follow groups and be informed of their latest events"
"To follow groups and be informed of their latest events": "To follow groups and be informed of their latest events",
"No group member found": "No group member found",
"This group was not found": "This group was not found",
"Back to group list": "Back to group list",
"This profile was not found": "This profile was not found",
"Back to profile list": "Back to profile list",
"This user was not found": "This user was not found",
"Back to user list": "Back to user list"
}

View File

@ -1357,5 +1357,12 @@
"The membership request from {profile} was rejected": "La demande d'adhésion de {profile} a été rejetée",
"The member was approved": "Le ou la membre a été approuvée",
"Emails usually don't contain capitals, make sure you haven't made a typo.": "Les emails ne contiennent d'ordinaire pas de capitales, assurez-vous de n'avoir pas fait de faute de frappe.",
"To follow groups and be informed of their latest events": "Afin de suivre des groupes et être informé de leurs derniers événements"
"To follow groups and be informed of their latest events": "Afin de suivre des groupes et être informé de leurs derniers événements",
"No group member found": "Aucun membre du groupe trouvé",
"This group was not found": "Ce groupe n'a pas été trouvé",
"Back to group list": "Retour à la liste des groupes",
"This profile was not found": "Ce profil n'a pas été trouvé",
"Back to profile list": "Retour à la liste des profiles",
"This user was not found": "Cet utilisateur⋅ice n'a pas été trouvé⋅e",
"Back to user list": "Retour à la liste des utilisateur⋅ices"
}

View File

@ -103,7 +103,7 @@
:aria-page-label="$t('Page')"
:aria-current-label="$t('Current page')"
:total="group.members.total"
:per-page="EVENTS_PER_PAGE"
:per-page="MEMBERS_PER_PAGE"
@page-change="onMembersPageChange"
>
<b-table-column
@ -286,6 +286,17 @@
</b-table>
</section>
</div>
<empty-content v-else-if="!$apollo.loading" icon="account-multiple">
{{ $t("This group was not found") }}
<template #desc>
<b-button
type="is-text"
tag="router-link"
:to="{ name: RouteName.ADMIN_GROUPS }"
>{{ $t("Back to group list") }}</b-button
>
</template>
</empty-content>
</template>
<script lang="ts">
import { Component, Vue, Prop } from "vue-property-decorator";
@ -318,6 +329,8 @@ const MEMBERS_PER_PAGE = 10;
organizedEventsLimit: EVENTS_PER_PAGE,
postsPage: this.postsPage,
postsLimit: POSTS_PER_PAGE,
membersLimit: MEMBERS_PER_PAGE,
membersPage: this.membersPage,
};
},
skip() {

View File

@ -258,6 +258,17 @@
</b-table>
</section>
</div>
<empty-content v-else-if="!$apollo.loading" icon="account">
{{ $t("This profile was not found") }}
<template #desc>
<b-button
type="is-text"
tag="router-link"
:to="{ name: RouteName.PROFILES }"
>{{ $t("Back to profile list") }}</b-button
>
</template>
</empty-content>
</template>
<script lang="ts">
import { Component, Vue, Prop } from "vue-property-decorator";

View File

@ -69,6 +69,17 @@
>
</div>
</div>
<empty-content v-else-if="!$apollo.loading" icon="account">
{{ $t("This user was not found") }}
<template #desc>
<b-button
type="is-text"
tag="router-link"
:to="{ name: RouteName.USERS }"
>{{ $t("Back to user list") }}</b-button
>
</template>
</empty-content>
</template>
<script lang="ts">
import { Component, Vue, Prop } from "vue-property-decorator";
@ -80,6 +91,7 @@ import { usernameWithDomain } from "../../types/actor/actor.model";
import RouteName from "../../router/name";
import { IUser } from "../../types/current-user.model";
import { IPerson } from "../../types/actor";
import EmptyContent from "../../components/Utils/EmptyContent.vue";
@Component({
apollo: {
@ -104,6 +116,9 @@ import { IPerson } from "../../types/actor";
title: user?.email,
};
},
components: {
EmptyContent,
},
})
export default class AdminUserProfile extends Vue {
@Prop({ required: true }) id!: string;

View File

@ -53,6 +53,7 @@
id: 'begins-on-field',
'aria-next-label': $t('Next month'),
'aria-previous-label': $t('Previous month'),
'first-day-of-week': firstDayOfWeek,
}"
>
</b-datetimepicker>
@ -73,6 +74,7 @@
id: 'ends-on-field',
'aria-next-label': $t('Next month'),
'aria-previous-label': $t('Previous month'),
'first-day-of-week': firstDayOfWeek,
}"
>
</b-datetimepicker>
@ -1325,5 +1327,9 @@ export default class EditEvent extends Vue {
isOnline,
};
}
get firstDayOfWeek(): number {
return this.$dateFnsLocale?.options?.weekStartsOn || 0;
}
}
</script>

View File

@ -59,7 +59,10 @@
: $t('Showing events before')
"
>
<b-datepicker v-model="dateFilter" />
<b-datepicker
v-model="dateFilter"
:first-day-of-week="firstDayOfWeek"
/>
<b-button
@click="dateFilter = new Date()"
class="reset-area"
@ -473,6 +476,10 @@ export default class MyEvents extends Vue {
get hideCreateEventButton(): boolean {
return !!this.config?.restrictions?.onlyGroupsCanCreateEvents;
}
get firstDayOfWeek(): number {
return this.$dateFnsLocale?.options?.weekStartsOn || 0;
}
}
</script>

View File

@ -275,7 +275,7 @@ import EmptyContent from "@/components/Utils/EmptyContent.vue";
query: GROUP_MEMBERS,
variables() {
return {
name: this.$route.params.preferredUsername,
groupName: this.$route.params.preferredUsername,
page: this.page,
limit: this.MEMBERS_PER_PAGE,
roles: this.roles,
@ -325,7 +325,7 @@ export default class GroupMembers extends mixins(GroupMixin) {
this.inviteError = "";
const { roles, MEMBERS_PER_PAGE, group, page } = this;
const variables = {
name: usernameWithDomain(group),
groupName: usernameWithDomain(group),
page,
limit: MEMBERS_PER_PAGE,
roles,
@ -393,7 +393,7 @@ export default class GroupMembers extends mixins(GroupMixin) {
async removeMember(oldMember: IMember): Promise<void> {
const { roles, MEMBERS_PER_PAGE, group, page } = this;
const variables = {
name: usernameWithDomain(group),
groupName: usernameWithDomain(group),
page,
limit: MEMBERS_PER_PAGE,
roles,

File diff suppressed because it is too large Load Diff

View File

@ -21,7 +21,7 @@ defmodule Mobilizon.GraphQL.Resolvers.Member do
{:ok, Page.t(Member.t())}
def find_members_for_group(
%Actor{id: group_id} = group,
%{page: page, limit: limit, roles: roles},
%{page: page, limit: limit, roles: roles} = args,
%{
context: %{current_user: %User{role: user_role}, current_actor: %Actor{id: actor_id}}
} = _resolution
@ -39,7 +39,9 @@ defmodule Mobilizon.GraphQL.Resolvers.Member do
|> Enum.map(&String.to_existing_atom/1)
end
%Page{} = page = Actors.list_members_for_group(group, roles, page, limit)
%Page{} =
page = Actors.list_members_for_group(group, Map.get(args, :name), roles, page, limit)
{:ok, page}
else
# Actor is not member of group, fallback to public

View File

@ -376,13 +376,14 @@ defmodule Mobilizon.GraphQL.Resolvers.User do
"""
def user_memberships(
%User{id: user_id},
%{page: page, limit: limit} = _args,
%{page: page, limit: limit} = args,
%{context: %{current_user: %User{id: logged_user_id}}}
) do
with true <- user_id == logged_user_id,
memberships <-
Actors.list_memberships_for_user(
user_id,
Map.get(args, :name),
page,
limit
) do

View File

@ -103,6 +103,7 @@ defmodule Mobilizon.GraphQL.Schema.Actors.GroupType do
)
field :members, :paginated_member_list do
arg(:name, :string, description: "A name to filter members by")
arg(:page, :integer, default_value: 1, description: "The page in the paginated member list")
arg(:limit, :integer, default_value: 10, description: "The limit of members per page")
arg(:roles, :string, default_value: "", description: "Filter members by their role")

View File

@ -85,6 +85,8 @@ defmodule Mobilizon.GraphQL.Schema.UserType do
field(:memberships, :paginated_member_list,
description: "The list of memberships for this user"
) do
arg(:name, :string, description: "A name to filter members by")
arg(:page, :integer,
default_value: 1,
description: "The page in the paginated memberships list"

View File

@ -794,12 +794,14 @@ defmodule Mobilizon.Actors do
"""
@spec list_memberships_for_user(
integer,
String.t() | nil,
integer | nil,
integer | nil
) :: Page.t()
def list_memberships_for_user(user_id, page, limit) do
) :: Page.t(Member.t())
def list_memberships_for_user(user_id, name, page, limit) do
user_id
|> list_members_for_user_query()
|> filter_members_by_group_name(name)
|> Page.build_page(page, limit)
end
@ -827,12 +829,15 @@ defmodule Mobilizon.Actors do
Page.t(Member.t())
def list_members_for_group(
%Actor{id: group_id, type: :Group},
name \\ nil,
roles \\ [],
page \\ nil,
limit \\ nil
) do
group_id
|> members_for_group_query()
|> join_members_actor()
|> filter_members_by_actor_name(name)
|> filter_member_role(roles)
|> Page.build_page(page, limit)
end
@ -1380,13 +1385,10 @@ defmodule Mobilizon.Actors do
@spec list_members_for_user_query(integer()) :: Ecto.Query.t()
defp list_members_for_user_query(user_id) do
from(
m in Member,
join: a in Actor,
on: m.actor_id == a.id,
where: a.user_id == ^user_id and m.role != ^:not_approved,
preload: [:parent, :actor, :invited_by]
)
Member
|> join_members_actor()
|> where([m, a], a.user_id == ^user_id and m.role != ^:not_approved)
|> preload([:parent, :actor, :invited_by])
end
@spec members_for_actor_query(integer | String.t()) :: Ecto.Query.t()
@ -1446,6 +1448,28 @@ defmodule Mobilizon.Actors do
from(m in query, where: m.role == ^role)
end
@spec filter_members_by_actor_name(Ecto.Query.t(), String.t() | nil) :: Ecto.Query.t()
defp filter_members_by_actor_name(query, nil), do: query
defp filter_members_by_actor_name(query, ""), do: query
defp filter_members_by_actor_name(query, name) when is_binary(name) do
where(query, [_q, a], like(a.name, ^"%#{name}%") or like(a.preferred_username, ^"%#{name}%"))
end
defp filter_members_by_group_name(query, nil), do: query
defp filter_members_by_group_name(query, ""), do: query
defp filter_members_by_group_name(query, name) when is_binary(name) do
query
|> join(:inner, [q], a in Actor, on: q.parent_id == a.id)
|> where([_q, ..., a], like(a.name, ^"%#{name}%") or like(a.preferred_username, ^"%#{name}%"))
end
@spec join_members_actor(Ecto.Query.t()) :: Ecto.Query.t()
defp join_members_actor(query) do
join(query, :inner, [q], a in Actor, on: q.actor_id == a.id)
end
@spec administrator_members_for_group_query(integer | String.t()) :: Ecto.Query.t()
defp administrator_members_for_group_query(group_id) do
from(

View File

@ -100,7 +100,7 @@ defmodule Mobilizon.Web.ActivityPub.ActorView do
end
defp fetch_collection(:members, actor, page) do
Actors.list_members_for_group(actor, @selected_member_roles, page)
Actors.list_members_for_group(actor, nil, @selected_member_roles, page)
end
defp fetch_collection(:resources, actor, page) do

View File

@ -24,8 +24,7 @@
"decimal": {:hex, :decimal, "2.0.0", "a78296e617b0f5dd4c6caf57c714431347912ffb1d0842e998e9792b5642d697", [:mix], [], "hexpm", "34666e9c55dea81013e77d9d87370fe6cb6291d1ef32f46a1600230b1d44f577"},
"dialyxir": {:hex, :dialyxir, "1.1.0", "c5aab0d6e71e5522e77beff7ba9e08f8e02bad90dfbeffae60eaf0cb47e29488", [:mix], [{:erlex, ">= 0.2.6", [hex: :erlex, repo: "hexpm", optional: false]}], "hexpm", "07ea8e49c45f15264ebe6d5b93799d4dd56a44036cf42d0ad9c960bc266c0b9a"},
"doctor": {:hex, :doctor, "0.18.0", "114934c1740239953208a39db617699b7e2660770e81129d7f95cdf7837ab766", [:mix], [{:decimal, "~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}], "hexpm", "829c88c365f72c0666e443ea670ffb6f180de7b90c23d536edabdd8c722b88f4"},
"earmark": {:hex, :earmark, "1.4.16", "2188754e590a3c379fdd2783bb44eedd8c54968fa0256b6f336f6d56b089d793", [:mix], [{:earmark_parser, ">= 1.4.16", [hex: :earmark_parser, repo: "hexpm", optional: false]}], "hexpm", "46f853f7ae10bee06923430dca522ba9dcbdc6b7a9729748e8dd5344d21b8418"},
"earmark_parser": {:hex, :earmark_parser, "1.4.17", "6f3c7e94170377ba45241d394389e800fb15adc5de51d0a3cd52ae766aafd63f", [:mix], [], "hexpm", "f93ac89c9feca61c165b264b5837bf82344d13bebc634cd575cb711e2e342023"},
"earmark_parser": {:hex, :earmark_parser, "1.4.18", "e1b2be73eb08a49fb032a0208bf647380682374a725dfb5b9e510def8397f6f2", [:mix], [], "hexpm", "114a0e85ec3cf9e04b811009e73c206394ffecfcc313e0b346de0d557774ee97"},
"eblurhash": {:hex, :eblurhash, "1.2.2", "7da4255aaea984b31bb71155f673257353b0e0554d0d30dcf859547e74602582", [:rebar3], [], "hexpm", "8c20ca00904de023a835a9dcb7b7762fed32264c85a80c3cafa85288e405044c"},
"ecto": {:hex, :ecto, "3.7.1", "a20598862351b29f80f285b21ec5297da1181c0442687f9b8329f0445d228892", [:mix], [{:decimal, "~> 1.6 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "d36e5b39fc479e654cffd4dbe1865d9716e4a9b6311faff799b6f90ab81b8638"},
"ecto_autoslug_field": {:hex, :ecto_autoslug_field, "3.0.0", "37fbc2f07e6691136afff246f2cf5b159ad395b665a55d06db918975fd2397db", [:mix], [{:ecto, ">= 3.7.0", [hex: :ecto, repo: "hexpm", optional: false]}, {:slugger, ">= 0.3.0", [hex: :slugger, repo: "hexpm", optional: false]}], "hexpm", "8ec252c7cf85f13132062f56a484d6a0ef1f981f7be9ce4ad7e9546dd8c0cc0f"},
@ -37,21 +36,19 @@
"erlex": {:hex, :erlex, "0.2.6", "c7987d15e899c7a2f34f5420d2a2ea0d659682c06ac607572df55a43753aa12e", [:mix], [], "hexpm", "2ed2e25711feb44d52b17d2780eabf998452f6efda104877a3881c2f8c0c0c75"},
"erlport": {:hex, :erlport, "0.10.1", "c96ffa51bbcab0298232fcdfe8c3e110f1598011de71ae6b9082b80c9e2e476a", [:rebar3], [], "hexpm", "34931e8cb62a131d1bc8a2bd04d4007c73c03e4f10e22ee4a218e7172227a918"},
"eternal": {:hex, :eternal, "1.2.2", "d1641c86368de99375b98d183042dd6c2b234262b8d08dfd72b9eeaafc2a1abd", [:mix], [], "hexpm", "2c9fe32b9c3726703ba5e1d43a1d255a4f3f2d8f8f9bc19f094c7cb1a7a9e782"},
"ex_cldr": {:hex, :ex_cldr, "2.24.1", "159b55b29b2f32897689c4edfcf699761c28d626455642514794a4848c7092d5", [:mix], [{:castore, "~> 0.1", [hex: :castore, repo: "hexpm", optional: true]}, {:certifi, "~> 2.5", [hex: :certifi, repo: "hexpm", optional: true]}, {:cldr_utils, "~> 2.17", [hex: :cldr_utils, repo: "hexpm", optional: false]}, {:decimal, "~> 1.6 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:gettext, "~> 0.13", [hex: :gettext, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:nimble_parsec, "~> 0.5 or ~> 1.0", [hex: :nimble_parsec, repo: "hexpm", optional: true]}, {:plug, "~> 1.9", [hex: :plug, repo: "hexpm", optional: true]}], "hexpm", "82a44fab6a09f6481e8dd869c27f0cad783dfe5ff83cb7eef42d556a5134275e"},
"ex_cldr": {:hex, :ex_cldr, "2.24.2", "9ff995503074883993c373882a8b663e2680acd4aedb1b92838b36cb2a470bae", [:mix], [{:castore, "~> 0.1", [hex: :castore, repo: "hexpm", optional: true]}, {:certifi, "~> 2.5", [hex: :certifi, repo: "hexpm", optional: true]}, {:cldr_utils, "~> 2.17", [hex: :cldr_utils, repo: "hexpm", optional: false]}, {:decimal, "~> 1.6 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:gettext, "~> 0.13", [hex: :gettext, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:nimble_parsec, "~> 0.5 or ~> 1.0", [hex: :nimble_parsec, repo: "hexpm", optional: true]}, {:plug, "~> 1.9", [hex: :plug, repo: "hexpm", optional: true]}], "hexpm", "72e33b7bac19a24bf1918d519d0cb5ad33a56cd53faa89c65f5bf79b873d93bb"},
"ex_cldr_calendars": {:hex, :ex_cldr_calendars, "1.17.1", "1371b2769ea892aa1c85f60c1358bf3558c021d4e3e824e27efc89c5d5f121cd", [:mix], [{:calendar_interval, "~> 0.2", [hex: :calendar_interval, repo: "hexpm", optional: true]}, {:ex_cldr, "~> 2.24", [hex: :ex_cldr, repo: "hexpm", optional: false]}, {:ex_cldr_lists, "~> 2.9", [hex: :ex_cldr_lists, repo: "hexpm", optional: true]}, {:ex_cldr_units, "~> 3.8", [hex: :ex_cldr_units, repo: "hexpm", optional: true]}, {:ex_doc, "~> 0.21", [hex: :ex_doc, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "0d57e476e8042f240ed4b8baeef0f12b7b8a4e22e4da97a33e2a85b11adc7bb4"},
"ex_cldr_currencies": {:hex, :ex_cldr_currencies, "2.12.0", "933b188d3a529e4a1140aac44d1d563b5ed0028d76c66983d85134b5e8f15393", [:mix], [{:ex_cldr, "~> 2.24", [hex: :ex_cldr, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "245ee8fb459cdfaffbfbfe31f8924e8cc31f92a962640f14fc4c3ddaf1ab8f12"},
"ex_cldr_dates_times": {:hex, :ex_cldr_dates_times, "2.10.0", "88ef1369839e5faaea163b663f22133a2e05ca9c7266b700d993140439507603", [:mix], [{:calendar_interval, "~> 0.2", [hex: :calendar_interval, repo: "hexpm", optional: true]}, {:ex_cldr_calendars, "~> 1.17", [hex: :ex_cldr_calendars, repo: "hexpm", optional: false]}, {:ex_cldr_numbers, "~> 2.23", [hex: :ex_cldr_numbers, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "1c2072dd2f798393c48bb61217b14af89b1833b7601dd29a73a9254125679695"},
"ex_cldr_dates_times": {:hex, :ex_cldr_dates_times, "2.10.1", "a9670d9d9079bfa096e4b18fb3c10a2e2df3bc63d71a9cee19723d4c6b263fb5", [:mix], [{:calendar_interval, "~> 0.2", [hex: :calendar_interval, repo: "hexpm", optional: true]}, {:ex_cldr_calendars, "~> 1.17", [hex: :ex_cldr_calendars, repo: "hexpm", optional: false]}, {:ex_cldr_numbers, "~> 2.23", [hex: :ex_cldr_numbers, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "099084f7f5acc0c14435add29a0b57434537cc5727d9ceb28f299c459882cef2"},
"ex_cldr_languages": {:hex, :ex_cldr_languages, "0.3.0", "91df38c2f5e89177e22dc70110ab3b131af381ad1063d3e6835ed30fddd42ed2", [:mix], [{:ex_cldr, "~> 2.24.0", [hex: :ex_cldr, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "6b473e4d91b37c6b7d09f8ea8127c3431f855b20c546c733a1c43a4ec914197e"},
"ex_cldr_numbers": {:hex, :ex_cldr_numbers, "2.23.0", "f77f2bc7ba3a09c5491c8c0dec9485113beb03582578a7c6377f9519ab65fc76", [:mix], [{:decimal, "~> 1.6 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:ex_cldr, "~> 2.24", [hex: :ex_cldr, repo: "hexpm", optional: false]}, {:ex_cldr_currencies, "~> 2.12", [hex: :ex_cldr_currencies, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "163a5fb4ed374b8f0290ec1809db475f8f874aa456e7f9ea120fcdedc93b63f7"},
"ex_cldr_numbers": {:hex, :ex_cldr_numbers, "2.23.2", "f42ac05286b32e5ea6f812882c453062f137ab062bc4e18506303863ec1c52d7", [:mix], [{:decimal, "~> 1.6 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:ex_cldr, "~> 2.24", [hex: :ex_cldr, repo: "hexpm", optional: false]}, {:ex_cldr_currencies, "~> 2.12", [hex: :ex_cldr_currencies, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "5edcaffa52f7b6fd6a7b9c5428d4aa3306e19e059a05988c53e6600c0b10463d"},
"ex_doc": {:hex, :ex_doc, "0.26.0", "1922164bac0b18b02f84d6f69cab1b93bc3e870e2ad18d5dacb50a9e06b542a3", [:mix], [{:earmark_parser, "~> 1.4.0", [hex: :earmark_parser, repo: "hexpm", optional: false]}, {:makeup_elixir, "~> 0.14", [hex: :makeup_elixir, repo: "hexpm", optional: false]}, {:makeup_erlang, "~> 0.1", [hex: :makeup_erlang, repo: "hexpm", optional: false]}], "hexpm", "2775d66e494a9a48355db7867478ffd997864c61c65a47d31c4949459281c78d"},
"ex_ical": {:hex, :ex_ical, "0.2.0", "4b928b554614704016cc0c9ee226eb854da9327a1cc460457621ceacb1ac29a6", [:mix], [{:timex, "~> 3.1", [hex: :timex, repo: "hexpm", optional: false]}], "hexpm", "db76473b2ae0259e6633c6c479a5a4d8603f09497f55c88f9ef4d53d2b75befb"},
"ex_machina": {:hex, :ex_machina, "2.7.0", "b792cc3127fd0680fecdb6299235b4727a4944a09ff0fa904cc639272cd92dc7", [:mix], [{:ecto, "~> 2.2 or ~> 3.0", [hex: :ecto, repo: "hexpm", optional: true]}, {:ecto_sql, "~> 3.0", [hex: :ecto_sql, repo: "hexpm", optional: true]}], "hexpm", "419aa7a39bde11894c87a615c4ecaa52d8f107bbdd81d810465186f783245bf8"},
"ex_optimizer": {:hex, :ex_optimizer, "0.1.1", "62da37e206fc2233ff7a4e54e40eae365c40f96c81992fcd15b782eb25169b80", [:mix], [{:file_info, "~> 0.0.4", [hex: :file_info, repo: "hexpm", optional: false]}], "hexpm", "e6f5c059bcd58b66be2f6f257fdc4f69b74b0fa5c9ddd669486af012e4b52286"},
"ex_unit_notifier": {:hex, :ex_unit_notifier, "1.2.0", "73ced2ecee0f2da0705e372c21ce61e4e5d927ddb797f73928e52818b9cc1754", [:mix], [], "hexpm", "f38044c9d50de68ad7f0aec4d781a10d9f1c92c62b36bf0227ec0aaa96aee332"},
"exactor": {:hex, :exactor, "2.2.4", "5efb4ddeb2c48d9a1d7c9b465a6fffdd82300eb9618ece5d34c3334d5d7245b1", [:mix], [], "hexpm", "1222419f706e01bfa1095aec9acf6421367dcfab798a6f67c54cf784733cd6b5"},
"excoveralls": {:hex, :excoveralls, "0.14.4", "295498f1ae47bdc6dce59af9a585c381e1aefc63298d48172efaaa90c3d251db", [:mix], [{:hackney, "~> 1.16", [hex: :hackney, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "e3ab02f2df4c1c7a519728a6f0a747e71d7d6e846020aae338173619217931c1"},
"exgravatar": {:hex, :exgravatar, "2.0.3", "2349709832ee535f826f48db98cddd294ae62b01acb44d539a16419bd8ebc3e5", [:mix], [], "hexpm", "aca18ff9bd8991d3be3e5446d3bdefc051be084c1ffc9ab2d43b3e65339300e1"},
"exjsx": {:hex, :exjsx, "4.0.0", "60548841e0212df401e38e63c0078ec57b33e7ea49b032c796ccad8cde794b5c", [:mix], [{:jsx, "~> 2.8.0", [hex: :jsx, repo: "hexpm", optional: false]}], "hexpm", "32e95820a97cffea67830e91514a2ad53b888850442d6d395f53a1ac60c82e07"},
"export": {:hex, :export, "0.1.1", "6dfd268b0692428f89b9285859a2dc02b6dcd2e8fdfbca34ac6e6a331351df91", [:mix], [{:erlport, "~> 0.9", [hex: :erlport, repo: "hexpm", optional: false]}], "hexpm", "3da7444ff4053f1824352f4bdb13fbd2c28c93c2011786fb686b649fdca1021f"},
"fast_html": {:hex, :fast_html, "2.0.4", "4910ee49f2f6b19692e3bf30bf97f1b6b7dac489cd6b0f34cd0fe3042c56ba30", [:make, :mix], [{:elixir_make, "~> 0.4", [hex: :elixir_make, repo: "hexpm", optional: false]}, {:nimble_pool, "~> 0.1.0", [hex: :nimble_pool, repo: "hexpm", optional: false]}], "hexpm", "3bb49d541dfc02ad5e425904f53376d758c09f89e521afc7d2b174b3227761ea"},
"fast_sanitize": {:hex, :fast_sanitize, "0.2.2", "3cbbaebaea6043865dfb5b4ecb0f1af066ad410a51470e353714b10c42007b81", [:mix], [{:fast_html, "~> 2.0", [hex: :fast_html, repo: "hexpm", optional: false]}, {:plug, "~> 1.8", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "69f204db9250afa94a0d559d9110139850f57de2b081719fbafa1e9a89e94466"},
@ -79,7 +76,6 @@
"ip_reserved": {:hex, :ip_reserved, "0.1.1", "e5112d71f1abf05207f82fd9597d369a5fde1e0b6d1bbe77c02a99bb26ecdc33", [:mix], [{:inet_cidr, "~> 1.0.0", [hex: :inet_cidr, repo: "hexpm", optional: false]}], "hexpm", "55fcd2b6e211caef09ea3f54ef37d43030bec486325d12fe865ab5ed8140a4fe"},
"jason": {:hex, :jason, "1.2.2", "ba43e3f2709fd1aa1dce90aaabfd039d000469c05c56f0b8e31978e03fa39052", [:mix], [{:decimal, "~> 1.0 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm", "18a228f5f0058ee183f29f9eae0805c6e59d61c3b006760668d8d18ff0d12179"},
"jose": {:hex, :jose, "1.11.2", "f4c018ccf4fdce22c71e44d471f15f723cb3efab5d909ab2ba202b5bf35557b3", [:mix, :rebar3], [], "hexpm", "98143fbc48d55f3a18daba82d34fe48959d44538e9697c08f34200fa5f0947d2"},
"jsx": {:hex, :jsx, "2.8.3", "a05252d381885240744d955fbe3cf810504eb2567164824e19303ea59eef62cf", [:mix, :rebar3], [], "hexpm", "fc3499fed7a726995aa659143a248534adc754ebd16ccd437cd93b649a95091f"},
"jumper": {:hex, :jumper, "1.0.1", "3c00542ef1a83532b72269fab9f0f0c82bf23a35e27d278bfd9ed0865cecabff", [:mix], [], "hexpm", "318c59078ac220e966d27af3646026db9b5a5e6703cb2aa3e26bcfaba65b7433"},
"junit_formatter": {:hex, :junit_formatter, "3.3.0", "bd7914d92885f7cf949dbe1dc6bacf76badfb2c1f5f7b3f9433c20e5b6ec42c8", [:mix], [], "hexpm", "4d040410925324b155ae4c7d41e884a0cdebe53b917bee4f22adf152e987a666"},
"linkify": {:hex, :linkify, "0.5.1", "6dc415cbc948b2f6ecec7cb226aab7ba9d3a1815bb501ae33e042334d707ecee", [:mix], [], "hexpm", "a3128c7e22fada4aa7214009501d8131e1fa3faf2f0a68b33dba379dc84ff944"},
@ -104,7 +100,7 @@
"oban": {:hex, :oban, "2.10.1", "202a90f2aed0130b7d750bdbfea8090c8321bce255bade10fd3699733565add0", [:mix], [{:ecto_sql, "~> 3.6", [hex: :ecto_sql, repo: "hexpm", optional: false]}, {:jason, "~> 1.1", [hex: :jason, repo: "hexpm", optional: false]}, {:postgrex, "~> 0.14", [hex: :postgrex, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "161cdd01194147cd6a3efdb1d6c3d9689309991412f799c1e242c18912e307c3"},
"paasaa": {:hex, :paasaa, "0.5.1", "58d8bf61902adfd1d04815a115f0eb3b996845c0360f1831854e21073411e822", [:mix], [], "hexpm", "571f1a33b8e184396a93fc18ee5331f2655c96ba9a6fc383dc675e4bc8fc7596"},
"parse_trans": {:hex, :parse_trans, "3.3.1", "16328ab840cc09919bd10dab29e431da3af9e9e7e7e6f0089dd5a2d2820011d8", [:rebar3], [], "hexpm", "07cd9577885f56362d414e8c4c4e6bdf10d43a8767abb92d24cbe8b24c54888b"},
"phoenix": {:hex, :phoenix, "1.6.2", "6cbd5c8ed7a797f25a919a37fafbc2fb1634c9cdb12a4448d7a5d0b26926f005", [:mix], [{:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:phoenix_pubsub, "~> 2.0", [hex: :phoenix_pubsub, repo: "hexpm", optional: false]}, {:phoenix_view, "~> 1.0", [hex: :phoenix_view, repo: "hexpm", optional: false]}, {:plug, "~> 1.10", [hex: :plug, repo: "hexpm", optional: false]}, {:plug_cowboy, "~> 2.2", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:plug_crypto, "~> 1.2", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "7bbee475acae0c3abc229b7f189e210ea788e63bd168e585f60c299a4b2f9133"},
"phoenix": {:hex, :phoenix, "1.6.4", "bc9a757f0a4eac88e1e3501245a6259e74d30970df8c072836d755608dbc4c7d", [:mix], [{:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:phoenix_pubsub, "~> 2.0", [hex: :phoenix_pubsub, repo: "hexpm", optional: false]}, {:phoenix_view, "~> 1.0", [hex: :phoenix_view, repo: "hexpm", optional: false]}, {:plug, "~> 1.10", [hex: :plug, repo: "hexpm", optional: false]}, {:plug_cowboy, "~> 2.2", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:plug_crypto, "~> 1.2", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "9b6cb3f31e3ea1049049852703eca794f7afdb0c1dc111d8f166ba032c103a80"},
"phoenix_ecto": {:hex, :phoenix_ecto, "4.4.0", "0672ed4e4808b3fbed494dded89958e22fb882de47a97634c0b13e7b0b5f7720", [:mix], [{:ecto, "~> 3.3", [hex: :ecto, repo: "hexpm", optional: false]}, {:phoenix_html, "~> 2.14.2 or ~> 3.0", [hex: :phoenix_html, repo: "hexpm", optional: true]}, {:plug, "~> 1.9", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "09864e558ed31ee00bd48fcc1d4fc58ae9678c9e81649075431e69dbabb43cc1"},
"phoenix_html": {:hex, :phoenix_html, "3.1.0", "0b499df05aad27160d697a9362f0e89fa0e24d3c7a9065c2bd9d38b4d1416c09", [:mix], [{:plug, "~> 1.5", [hex: :plug, repo: "hexpm", optional: true]}], "hexpm", "0c0a98a2cefa63433657983a2a594c7dee5927e4391e0f1bfd3a151d1def33fc"},
"phoenix_live_reload": {:hex, :phoenix_live_reload, "1.3.3", "3a53772a6118d5679bf50fc1670505a290e32a1d195df9e069d8c53ab040c054", [:mix], [{:file_system, "~> 0.2.1 or ~> 0.3", [hex: :file_system, repo: "hexpm", optional: false]}, {:phoenix, "~> 1.4", [hex: :phoenix, repo: "hexpm", optional: false]}], "hexpm", "766796676e5f558dbae5d1bdb066849673e956005e3730dfd5affd7a6da4abac"},

View File

@ -415,32 +415,32 @@ msgstr ""
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr ""

View File

@ -1427,8 +1427,8 @@ msgstr ""
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr ""

View File

@ -125,24 +125,24 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr ""
@ -157,7 +157,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr ""
@ -190,33 +190,33 @@ msgid "Registrations are not open"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
@ -236,27 +236,27 @@ msgid "Unable to validate user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr ""
@ -266,37 +266,37 @@ msgid "You may not list groups unless moderator."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr ""
@ -462,12 +462,12 @@ msgid "Post doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr ""
@ -542,13 +542,13 @@ msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr ""
@ -584,7 +584,7 @@ msgid "You can't leave event because you're the only event creator participant"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
@ -599,7 +599,7 @@ msgid "You cannot delete this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr ""
@ -784,12 +784,12 @@ msgid "You need to be logged in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr ""
@ -799,7 +799,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr ""
@ -814,17 +814,17 @@ msgid "You can't attribute this event to this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr ""
@ -849,7 +849,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr ""
@ -865,7 +865,7 @@ msgid "Error while creating resource"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr ""
@ -906,7 +906,7 @@ msgid "Error while creating a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr ""
@ -921,17 +921,17 @@ msgid "Failed to leave the event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr ""
@ -951,7 +951,7 @@ msgid "You are not the comment creator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr ""
@ -976,7 +976,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr ""
@ -991,17 +991,17 @@ msgid "Unknown error while creating event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -1016,37 +1016,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -409,32 +409,32 @@ msgstr ""
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr ""

View File

@ -1406,8 +1406,8 @@ msgstr ""
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr ""

View File

@ -99,24 +99,24 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr ""
@ -131,7 +131,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr ""
@ -164,33 +164,33 @@ msgid "Registrations are not open"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
@ -210,27 +210,27 @@ msgid "Unable to validate user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr ""
@ -240,37 +240,37 @@ msgid "You may not list groups unless moderator."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr ""
@ -436,12 +436,12 @@ msgid "Post doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr ""
@ -516,13 +516,13 @@ msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr ""
@ -558,7 +558,7 @@ msgid "You can't leave event because you're the only event creator participant"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
@ -573,7 +573,7 @@ msgid "You cannot delete this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr ""
@ -758,12 +758,12 @@ msgid "You need to be logged in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr ""
@ -773,7 +773,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr ""
@ -788,17 +788,17 @@ msgid "You can't attribute this event to this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr ""
@ -823,7 +823,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr ""
@ -839,7 +839,7 @@ msgid "Error while creating resource"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr ""
@ -880,7 +880,7 @@ msgid "Error while creating a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr ""
@ -895,17 +895,17 @@ msgid "Failed to leave the event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr ""
@ -925,7 +925,7 @@ msgid "You are not the comment creator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr ""
@ -950,7 +950,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr ""
@ -965,17 +965,17 @@ msgid "Unknown error while creating event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -990,37 +990,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -407,32 +407,32 @@ msgstr ""
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr ""

View File

@ -1661,8 +1661,8 @@ msgstr "T'han aprovat la participació a %{title}"
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr ""

View File

@ -100,24 +100,24 @@ msgid "Cannot refresh the token"
msgstr "No s'ha pogut actualitzar el codi d'accés"
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr "El perfil actual no pertany a aquest grup"
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr "El perfil actual no administra el grup seleccionat"
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr "No s'han pogut desar les preferències"
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr "No s'ha trobat el grup"
@ -132,7 +132,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "No t'hem pogut autenticar. El teu correu o contrasenya són incorrectes."
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr "No s'ha trobat el/la membre"
@ -165,33 +165,33 @@ msgid "Registrations are not open"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
@ -211,27 +211,27 @@ msgid "Unable to validate user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr ""
@ -241,37 +241,37 @@ msgid "You may not list groups unless moderator."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr ""
@ -437,12 +437,12 @@ msgid "Post doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr ""
@ -517,13 +517,13 @@ msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr ""
@ -559,7 +559,7 @@ msgid "You can't leave event because you're the only event creator participant"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
@ -574,7 +574,7 @@ msgid "You cannot delete this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr ""
@ -759,12 +759,12 @@ msgid "You need to be logged in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr ""
@ -774,7 +774,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr ""
@ -789,17 +789,17 @@ msgid "You can't attribute this event to this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr ""
@ -824,7 +824,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr ""
@ -840,7 +840,7 @@ msgid "Error while creating resource"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr ""
@ -881,7 +881,7 @@ msgid "Error while creating a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr ""
@ -896,17 +896,17 @@ msgid "Failed to leave the event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr ""
@ -926,7 +926,7 @@ msgid "You are not the comment creator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr ""
@ -951,7 +951,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr ""
@ -966,17 +966,17 @@ msgid "Unknown error while creating event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -991,37 +991,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -18,440 +18,440 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 4.9.1\n"
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:19
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
#, elixir-format
msgid "%{member} accepted the invitation to join the group."
msgstr "%{member} přijal pozvání do skupiny."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:26
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
#, elixir-format
msgid "%{member} rejected the invitation to join the group."
msgstr "%{member} odmítl pozvání do skupiny."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:4
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
#, elixir-format
msgid "%{member} requested to join the group."
msgstr "%{member} požádal o připojení ke skupině."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:11
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
#, elixir-format
msgid "%{member} was invited by %{profile}."
msgstr "%{member} pozval %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:40
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
#, elixir-format
msgid "%{profile} added the member %{member}."
msgstr "%{profile} přidal člena %{member}."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:46
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#, elixir-format
msgid "%{profile} archived the discussion %{discussion}."
msgstr "%{profile} archivoval diskusi %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:4
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#, elixir-format
msgid "%{profile} created the discussion %{discussion}."
msgstr "%{profile} založil diskusi %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:5
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
#, elixir-format
msgid "%{profile} created the folder %{resource}."
msgstr "%{profile} vytvořil složku %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_group_activity_item.html.heex:4
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
#, elixir-format
msgid "%{profile} created the group %{group}."
msgstr "%{profile} vytvořil skupinu %{group}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:20
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
#, elixir-format
msgid "%{profile} created the resource %{resource}."
msgstr "%{profile} vytvořil zdroj %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:60
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#, elixir-format
msgid "%{profile} deleted the discussion %{discussion}."
msgstr "%{profile} smazal diskusi %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:103
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
#, elixir-format
msgid "%{profile} deleted the folder %{resource}."
msgstr "%{profile} smazal složku %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:111
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
#, elixir-format
msgid "%{profile} deleted the resource %{resource}."
msgstr "%{profile} smazal prostředek %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:56
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
#, elixir-format
msgid "%{profile} excluded member %{member}."
msgstr "%{profile} vyloučil člena %{member}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:71
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
#, elixir-format
msgid "%{profile} moved the folder %{resource}."
msgstr "%{profile} přesunul složku %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
#, elixir-format
msgid "%{profile} moved the resource %{resource}."
msgstr "%{profile} přesunul prostředek %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:64
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
#, elixir-format
msgid "%{profile} quit the group."
msgstr "%{profile} ukončil skupinu."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:32
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#, elixir-format
msgid "%{profile} renamed the discussion %{discussion}."
msgstr "%{profile} přejmenoval diskusi %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:37
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
#, elixir-format
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
msgstr "%{profile} přejmenoval složku z %{old_resource_title} na %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:53
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
#, elixir-format
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
msgstr "%{profile} přejmenoval zdroj z %{old_resource_title} na %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:18
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#, elixir-format
msgid "%{profile} replied to the discussion %{discussion}."
msgstr "%{profile} odpověděl na příspěvek v diskusi %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_group_activity_item.html.heex:19
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
#, elixir-format
msgid "%{profile} updated the group %{group}."
msgstr "%{profile} aktualizoval skupinu %{group}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:48
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
#, elixir-format
msgid "%{profile} updated the member %{member}."
msgstr "%{profile} aktualizoval člena %{member}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:23
#: lib/web/templates/email/activity/_event_activity_item.html.heex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1
#, elixir-format
msgid "The event %{event} was created by %{profile}."
msgstr "Událost %{event} byla vytvořena pomocí %{profile}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:43
#: lib/web/templates/email/activity/_event_activity_item.html.heex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13
#, elixir-format
msgid "The event %{event} was deleted by %{profile}."
msgstr "Událost %{event} byla odstraněna pomocí %{profile}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:33
#: lib/web/templates/email/activity/_event_activity_item.html.heex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7
#, elixir-format
msgid "The event %{event} was updated by %{profile}."
msgstr "Událost %{event} byla aktualizována pomocí %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_post_activity_item.html.heex:4
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
#, elixir-format
msgid "The post %{post} was created by %{profile}."
msgstr "Příspěvek %{post} byl vytvořen uživatelem %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_post_activity_item.html.heex:34
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
#, elixir-format
msgid "The post %{post} was deleted by %{profile}."
msgstr "Příspěvek %{post} byl smazán uživatelem %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_post_activity_item.html.heex:19
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
#, elixir-format
msgid "The post %{post} was updated by %{profile}."
msgstr "Příspěvek %{post} byl aktualizován uživatelem %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:33
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
#, elixir-format
msgid "%{member} joined the group."
msgstr "%{member} se připojil ke skupině."
#, elixir-format
#: lib/service/activity/renderer/event.ex:63
#: lib/web/templates/email/activity/_event_activity_item.html.heex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25
#, elixir-format
msgid "%{profile} posted a comment on the event %{event}."
msgstr "%{profile} vložil komentář k události %{event}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:54
#: lib/web/templates/email/activity/_event_activity_item.html.heex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19
#, elixir-format
msgid "%{profile} replied to a comment on the event %{event}."
msgstr "%{profile} odpověděl na komentář k události %{event}."
#: lib/web/templates/email/email_direct_activity.text.eex:27
#, elixir-format
#: lib/web/templates/email/email_direct_activity.text.eex:27
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
msgstr ""
"Nechcete dostávat oznámení o aktivitách? V nastavení můžete změnit frekvenci "
"nebo je zakázat."
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:135
#: lib/web/templates/email/email_direct_activity.text.eex:23
#, elixir-format
msgid "View one more activity"
msgid_plural "View %{count} more activities"
msgstr[0] "Zobrazit jednu další aktivitu"
msgstr[1] "Zobrazit %{count} další aktivity"
msgstr[2] "Zobrazit %{count} dalších aktivit"
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:44
#: lib/web/templates/email/email_direct_activity.html.heex:46 lib/web/templates/email/email_direct_activity.text.eex:6
#: lib/web/templates/email/email_direct_activity.text.eex:7
#, elixir-format
msgid "There has been an activity!"
msgid_plural "There has been some activity!"
msgstr[0] "Došlo k aktivitě!"
msgstr[1] "Došlo k nějaké aktivitě!"
msgstr[2] "Došlo k nějakým aktivitám!"
#: lib/service/activity/renderer/renderer.ex:46
#, elixir-format
#: lib/service/activity/renderer/renderer.ex:46
msgid "Activity on %{instance}"
msgstr "Aktivita na %{instance}"
#, elixir-format
#: lib/service/activity/renderer/comment.ex:38
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7
#: lib/web/templates/email/email_anonymous_activity.html.heex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5
#, elixir-format
msgid "%{profile} has posted an announcement under event %{event}."
msgstr "%{profile} zveřejnil oznámení v rámci události %{event}."
#, elixir-format
#: lib/service/activity/renderer/comment.ex:24
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1
#, elixir-format
msgid "%{profile} mentionned you in a comment under event %{event}."
msgstr "%{profile} vás zmínil v komentáři pod událostí %{event}."
#: lib/web/templates/email/email_direct_activity.html.heex:155
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:155
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
msgstr ""
"Nechcete dostávat oznámení o aktivitách? Můžete změnit frekvenci nebo je "
"zakázat v %{tag_start}nastavení%{tag_end}."
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:42
#: lib/web/templates/email/email_direct_activity.text.eex:5
#, elixir-format
msgid "Here's your weekly activity recap"
msgstr "Zde je váš týdenní přehled aktivit"
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
#, elixir-format
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}"
msgstr "Oznámení o činnosti pro %{instance}"
#: lib/web/email/activity.ex:126
#, elixir-format
#: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}"
msgstr "Rekapitulace denní aktivity pro %{instance}"
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:40
#: lib/web/templates/email/email_direct_activity.text.eex:4
#, elixir-format
msgid "Here's your daily activity recap"
msgstr "Zde je přehled denních aktivit"
#: lib/web/email/activity.ex:133
#, elixir-format
#: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}"
msgstr "Týdenní shrnutí činnosti pro %{instance}"
#, elixir-format
#: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
#, elixir-format
msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "%{profile} vložil nový komentář pod vaši událost %{event}."
#, elixir-format
#: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
#, elixir-format
msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "%{profile} vložil novou odpověď pod vaši událost %{event}."
#: lib/web/email/activity.ex:46
#, elixir-format
#: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}"
msgstr "Oznámení o vaší události %{event}"
#: lib/service/activity/renderer/group.ex:23
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr "Skupina %{group} byla aktualizována pomocí %{profile}."
#: lib/service/activity/renderer/post.ex:47
#, elixir-format
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr "Příspěvek %{post} ze skupiny %{group} byl smazán uživatelem %{profile}."
#: lib/service/activity/renderer/post.ex:31
#, elixir-format
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
"Příspěvek %{post} ze skupiny %{group} byl zveřejněn uživatelem %{profile}."
#: lib/service/activity/renderer/post.ex:39
#, elixir-format
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""
"Příspěvek %{post} ze skupiny %{group} byl aktualizován uživatelem %{profile}."
#: lib/service/activity/renderer/member.ex:39
#, elixir-format
#: lib/service/activity/renderer/member.ex:39
msgid "%{member} accepted the invitation to join the group %{group}."
msgstr "%{member} přijal pozvání do skupiny %{group}."
#: lib/service/activity/renderer/member.ex:47
#, elixir-format
#: lib/service/activity/renderer/member.ex:47
msgid "%{member} joined the group %{group}."
msgstr "%{member} se připojil ke skupině %{group}."
#: lib/service/activity/renderer/member.ex:43
#, elixir-format
#: lib/service/activity/renderer/member.ex:43
msgid "%{member} rejected the invitation to join the group %{group}."
msgstr "%{member} odmítl pozvání do skupiny %{group}."
#: lib/service/activity/renderer/member.ex:31
#, elixir-format
#: lib/service/activity/renderer/member.ex:31
msgid "%{member} requested to join the group %{group}."
msgstr "%{member} požádal o připojení ke skupině %{group}."
#: lib/service/activity/renderer/member.ex:35
#, elixir-format
#: lib/service/activity/renderer/member.ex:35
msgid "%{member} was invited by %{profile} to group %{group}."
msgstr "%{member} byl pozván %{profile} do skupiny %{group}."
#: lib/service/activity/renderer/member.ex:51
#, elixir-format
#: lib/service/activity/renderer/member.ex:51
msgid "%{profile} added the member %{member} to group %{group}."
msgstr "%{profile} přidal člena %{member} do skupiny %{group}."
#: lib/service/activity/renderer/member.ex:55
#, elixir-format
#: lib/service/activity/renderer/member.ex:55
msgid "%{profile} approved the membership request from %{member} for group %{group}."
msgstr "%{profile} schválil žádost %{member} o členství ve skupině %{group}."
#: lib/service/activity/renderer/resource.ex:33
#, elixir-format
#: lib/service/activity/renderer/resource.ex:33
msgid "%{profile} created the folder %{resource} in group %{group}."
msgstr "%{profile} vytvořil složku %{resource} ve skupině %{group}."
#: lib/service/activity/renderer/resource.ex:69
#, elixir-format
#: lib/service/activity/renderer/resource.ex:69
msgid "%{profile} deleted the folder %{resource} in group %{group}."
msgstr "%{profile} odstranil složku %{resource} ve skupině %{group}."
#: lib/service/activity/renderer/resource.ex:71
#, elixir-format
#: lib/service/activity/renderer/resource.ex:71
msgid "%{profile} deleted the resource %{resource} in group %{group}."
msgstr "%{profile} odstranil prostředek %{resource} ve skupině %{group}."
#: lib/service/activity/renderer/member.ex:75
#, elixir-format
#: lib/service/activity/renderer/member.ex:75
msgid "%{profile} excluded member %{member} from the group %{group}."
msgstr "%{profile} vyloučil člena %{member} ze skupiny %{group}."
#: lib/service/activity/renderer/resource.ex:61
#, elixir-format
#: lib/service/activity/renderer/resource.ex:61
msgid "%{profile} moved the folder %{resource} in group %{group}."
msgstr "%{profile} přesunul složku %{resource} do skupiny %{group}."
#: lib/service/activity/renderer/resource.ex:63
#, elixir-format
#: lib/service/activity/renderer/resource.ex:63
msgid "%{profile} moved the resource %{resource} in group %{group}."
msgstr "%{profile} přesunul prostředek %{resource} do skupiny %{group}."
#: lib/service/activity/renderer/member.ex:79
#, elixir-format
#: lib/service/activity/renderer/member.ex:79
msgid "%{profile} quit the group %{group}."
msgstr "%{profile} ukončí skupinu %{group}."
#: lib/service/activity/renderer/member.ex:63
#, elixir-format
#: lib/service/activity/renderer/member.ex:63
msgid "%{profile} rejected the membership request from %{member} for group %{group}."
msgstr "%{profile} zamítl žádost o členství od %{member} pro skupinu %{group}."
#: lib/service/activity/renderer/resource.ex:45
#, elixir-format
#: lib/service/activity/renderer/resource.ex:45
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource} in group %{group}."
msgstr ""
"%{profile} přejmenoval složku z %{old_resource_title} na %{resource} ve "
"skupině %{group}."
#: lib/service/activity/renderer/resource.ex:51
#, elixir-format
#: lib/service/activity/renderer/resource.ex:51
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource} in group %{group}."
msgstr ""
"%{profile} přejmenoval prostředek z %{old_resource_title} na %{resource} ve "
"skupině %{group}."
#: lib/service/activity/renderer/member.ex:71
#, elixir-format
#: lib/service/activity/renderer/member.ex:71
msgid "%{profile} updated the member %{member} in group %{group}."
msgstr "%{profile} aktualizoval člena %{member} ve skupině %{group}."
#: lib/service/activity/renderer/resource.ex:35
#, elixir-format
#: lib/service/activity/renderer/resource.ex:35
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr "%{profile} vytvořil prostředek %{resource} ve skupině %{group}."
#: lib/service/activity/renderer/discussion.ex:86
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr "%{profile} archivoval diskusi %{discussion} ve skupině %{group}."
#: lib/service/activity/renderer/discussion.ex:26
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr "%{profile} založil diskusi %{discussion} ve skupině %{group}."
#: lib/service/activity/renderer/discussion.ex:101
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr "%{profile} smazal diskusi %{discussion} ve skupině %{group}."
#: lib/service/activity/renderer/discussion.ex:56
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr "%{profile} vás zmínil v diskusi %{discussion} ve skupině %{group}."
#: lib/service/activity/renderer/discussion.ex:71
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr "%{profile} přejmenoval diskusi %{discussion} ve skupině %{group}."
#: lib/service/activity/renderer/discussion.ex:41
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr "%{profile} odpověděl na diskusi %{discussion} ve skupině %{group}."

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -419,32 +419,32 @@ msgstr "%{profile} hat das Mitglied %{member} aktualisiert."
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr "%{profile} hat die Ressource %{resource} erstellt."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr "%{profile} hat die Diskussion %{discussion} archiviert."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr "%{profile} hat die Diskussion %{discussion} erstellt."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr "%{profile} hat die Diskussion %{discussion} gelöscht."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr "%{profile} hat die Diskussion %{discussion} umbenannt."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr "%{profile} hat auf die Diskussion %{discussion} geantwortet."

View File

@ -1775,8 +1775,8 @@ msgstr "Deine Teilnahme an der Veranstaltung %{title}wurde akzeptiert"
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr ""

View File

@ -100,24 +100,24 @@ msgid "Cannot refresh the token"
msgstr "Der Token konnte nicht aktualisiert werden"
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr "Aktuelles Profil ist nicht Mitglied dieser Gruppe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr "Aktuelles Profil ist kein Administrator der ausgewählten Gruppe"
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr "Fehler beim Speichern von Benutzereinstellungen"
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr "Gruppe nicht gefunden"
@ -134,7 +134,7 @@ msgstr ""
"Passwort sind ungültig."
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr "Mitglied wurde nicht gefunden"
@ -168,33 +168,33 @@ msgid "Registrations are not open"
msgstr "Registrierungen sind nicht geöffnet"
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr "Das aktuelle Passwort ist ungültig"
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr "Die neue E-Mail scheint nicht gültig zu sein"
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr "Die neue E-Mail muss anders lauten"
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr "Das neue Passwort muss anders lauten"
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr "Das angegebene Passwort ist ungültig"
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
"Das von Ihnen gewählte Passwort ist zu kurz. Bitte stellen Sie sicher, dass "
@ -216,29 +216,29 @@ msgid "Unable to validate user"
msgstr "Benutzer kann nicht validiert werden"
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr "Benutzer bereits deaktiviert"
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr "Angeforderter Benutzer ist nicht eingeloggt"
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr "Sie sind bereits Mitglied in dieser Gruppe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr ""
"Sie können diese Gruppe nicht verlassen, da Sie der einzige Administrator "
"sind"
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr "Sie können dieser Gruppe nicht beitreten"
@ -248,37 +248,37 @@ msgid "You may not list groups unless moderator."
msgstr "Sie dürfen keine Gruppen auflisten, es sei denn, Sie sind Moderator."
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr "Sie müssen eingeloggt sein, um Ihre E-Mail zu ändern"
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr "Sie müssen eingeloggt sein, um Ihr Passwort zu ändern"
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr "Sie müssen eingeloggt sein, um eine Gruppe zu löschen"
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr "Sie müssen eingeloggt sein, um Ihr Konto zu löschen"
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr "Sie müssen eingeloggt sein, um einer Gruppe beizutreten"
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr "Sie müssen eingeloggt sein, um eine Gruppe zu verlassen"
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr "Sie müssen eingeloggt sein, um eine Gruppe zu aktualisieren"
@ -445,12 +445,12 @@ msgid "Post doesn't exist"
msgstr "Beitrag existiert nicht"
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr "Eingeladenes Profil existiert nicht Eingeladenes Profil existiert nicht"
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr ""
"Profil ist bereits Mitglied in dieser Gruppe Profil ist bereits Mitglied in "
@ -527,13 +527,13 @@ msgid "You are already a participant of this event"
msgstr "Sie sind bereits ein Teilnehmer dieser Veranstaltung"
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr "Sie sind nicht Mitglied in dieser Gruppe"
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr "Sie sind kein Moderator oder Admin für diese Gruppe"
@ -572,7 +572,7 @@ msgstr ""
"Teilnehmer sind, der die Veranstaltung erstellt"
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
"Sie können sich nicht auf eine niedrigere Mitgliedsrolle für diese Gruppe "
@ -589,7 +589,7 @@ msgid "You cannot delete this event"
msgstr "Sie können diese Veranstaltung nicht löschen"
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr "Sie können nicht in diese Gruppe einladen"
@ -786,12 +786,12 @@ msgid "You need to be logged in"
msgstr "Sie müssen eingeloggt sein"
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr "Sie können diese Einladung mit diesem Profil nicht annehmen."
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr "Sie können diese Einladung mit diesem Profil nicht ablehnen."
@ -801,7 +801,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr "Die Datei hat keinen zulässigen MIME-Typ."
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr "Profil ist nicht Administrator für die Gruppe"
@ -816,17 +816,17 @@ msgid "You can't attribute this event to this profile."
msgstr "Sie können dieses Ereignis nicht diesem Profil zuordnen."
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr "Diese Einladung gibt es nicht."
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr "Dieses Mitglied ist bereits abgelehnt worden."
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr "Sie haben nicht das Recht, dieses Mitglied zu entfernen."
@ -853,7 +853,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr "Die angegebene Profil-ID ist nicht die des anonymen Profils"
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr "Das Bild ist zu groß"
@ -869,7 +869,7 @@ msgid "Error while creating resource"
msgstr "Fehler beim Speichern des Reports"
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr ""
@ -910,7 +910,7 @@ msgid "Error while creating a discussion"
msgstr "Fehler beim Speichern des Reports"
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr "Fehler beim Aktualisieren des Reports"
@ -925,17 +925,17 @@ msgid "Failed to leave the event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr "Benutzer kann nicht validiert werden"
@ -955,7 +955,7 @@ msgid "You are not the comment creator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr ""
@ -980,7 +980,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr ""
@ -995,17 +995,17 @@ msgid "Unknown error while creating event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -1020,37 +1020,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr "Sie müssen eingeloggt sein, um einer Gruppe beizutreten"
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr "Sie müssen eingeloggt sein, um einer Gruppe beizutreten"
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr "Sie müssen eingeloggt sein, um eine Gruppe zu aktualisieren"
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr "Sie haben nicht das Recht, dieses Mitglied zu entfernen."
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -1386,8 +1386,8 @@ msgstr ""
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr ""

View File

@ -407,32 +407,32 @@ msgstr ""
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr ""

View File

@ -1439,8 +1439,8 @@ msgstr "Your participation to event %{title} has been approved"
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr ""

View File

@ -103,24 +103,24 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group 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:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr ""
@ -168,33 +168,33 @@ msgid "Registrations are not open"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
@ -214,27 +214,27 @@ msgid "Unable to validate user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr ""
@ -244,37 +244,37 @@ msgid "You may not list groups unless moderator."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr ""
@ -440,12 +440,12 @@ msgid "Post doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr ""
@ -520,13 +520,13 @@ msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr ""
@ -562,7 +562,7 @@ msgid "You can't leave event because you're the only event creator participant"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
@ -577,7 +577,7 @@ msgid "You cannot delete this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr ""
@ -762,12 +762,12 @@ msgid "You need to be logged in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr ""
@ -777,7 +777,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr ""
@ -792,17 +792,17 @@ msgid "You can't attribute this event to this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr ""
@ -827,7 +827,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr ""
@ -843,7 +843,7 @@ msgid "Error while creating resource"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr ""
@ -884,7 +884,7 @@ msgid "Error while creating a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr ""
@ -899,17 +899,17 @@ msgid "Failed to leave the event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr ""
@ -929,7 +929,7 @@ msgid "You are not the comment creator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr ""
@ -954,7 +954,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr ""
@ -969,17 +969,17 @@ msgid "Unknown error while creating event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -994,37 +994,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -100,24 +100,24 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr ""
@ -132,7 +132,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr ""
@ -165,33 +165,33 @@ msgid "Registrations are not open"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
@ -211,27 +211,27 @@ msgid "Unable to validate user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr ""
@ -241,37 +241,37 @@ msgid "You may not list groups unless moderator."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr ""
@ -437,12 +437,12 @@ msgid "Post doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr ""
@ -517,13 +517,13 @@ msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr ""
@ -559,7 +559,7 @@ msgid "You can't leave event because you're the only event creator participant"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
@ -574,7 +574,7 @@ msgid "You cannot delete this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr ""
@ -759,12 +759,12 @@ msgid "You need to be logged in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr ""
@ -774,7 +774,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr ""
@ -789,17 +789,17 @@ msgid "You can't attribute this event to this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr ""
@ -824,7 +824,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr ""
@ -840,7 +840,7 @@ msgid "Error while creating resource"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr ""
@ -881,7 +881,7 @@ msgid "Error while creating a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr ""
@ -896,17 +896,17 @@ msgid "Failed to leave the event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr ""
@ -926,7 +926,7 @@ msgid "You are not the comment creator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr ""
@ -951,7 +951,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr ""
@ -966,17 +966,17 @@ msgid "Unknown error while creating event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -991,37 +991,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -18,436 +18,436 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.8.1\n"
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:19
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
#, elixir-format
msgid "%{member} accepted the invitation to join the group."
msgstr "%{member} aceptó la invitación para unirse al grupo."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:26
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
#, elixir-format
msgid "%{member} rejected the invitation to join the group."
msgstr "%{member} rechazó la invitación para unirse al grupo."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:4
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
#, elixir-format
msgid "%{member} requested to join the group."
msgstr "%{member} solicitó unirse al grupo."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:11
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
#, elixir-format
msgid "%{member} was invited by %{profile}."
msgstr "%{member} fue invitado por %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:40
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
#, elixir-format
msgid "%{profile} added the member %{member}."
msgstr "%{profile} agregó el miembro %{member}."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:46
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#, elixir-format
msgid "%{profile} archived the discussion %{discussion}."
msgstr "%{profile} archivó la discusión %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:4
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#, elixir-format
msgid "%{profile} created the discussion %{discussion}."
msgstr "%{profile} creó la discusión %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:5
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
#, elixir-format
msgid "%{profile} created the folder %{resource}."
msgstr "%{profile} creó la carpeta %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_group_activity_item.html.heex:4
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
#, elixir-format
msgid "%{profile} created the group %{group}."
msgstr "%{profile} crfeó el grupo %{group}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:20
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
#, elixir-format
msgid "%{profile} created the resource %{resource}."
msgstr "%{profile} creó el recurso %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:60
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#, elixir-format
msgid "%{profile} deleted the discussion %{discussion}."
msgstr "%{profile} eliminó la discusión %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:103
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
#, elixir-format
msgid "%{profile} deleted the folder %{resource}."
msgstr "%{profile} borró la carpeta %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:111
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
#, elixir-format
msgid "%{profile} deleted the resource %{resource}."
msgstr "%{profile} eliminado el recurso %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:56
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
#, elixir-format
msgid "%{profile} excluded member %{member}."
msgstr "%{profile }miembro excluido %{member}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:71
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
#, elixir-format
msgid "%{profile} moved the folder %{resource}."
msgstr "%{profile} movió la carpeta %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
#, elixir-format
msgid "%{profile} moved the resource %{resource}."
msgstr "%{profile} movió el recurso %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:64
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
#, elixir-format
msgid "%{profile} quit the group."
msgstr "%{profile} abandona el grupo."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:32
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#, elixir-format
msgid "%{profile} renamed the discussion %{discussion}."
msgstr "%{profile} renombrado la discusión %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:37
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
#, elixir-format
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
msgstr ""
"%{profile} ha renombrado la carpeta de %{old_resource_title} a %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:53
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
#, elixir-format
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
msgstr ""
"%{profile} ha renombrado el recurso de %{old_resource_title} a %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:18
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#, elixir-format
msgid "%{profile} replied to the discussion %{discussion}."
msgstr "%{profile} respondió a la discusión %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_group_activity_item.html.heex:19
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
#, elixir-format
msgid "%{profile} updated the group %{group}."
msgstr "%{profile} actualizó el grupo %{group}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:48
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
#, elixir-format
msgid "%{profile} updated the member %{member}."
msgstr "%{profile} actualizado el miembro %{member}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:23
#: lib/web/templates/email/activity/_event_activity_item.html.heex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1
#, elixir-format
msgid "The event %{event} was created by %{profile}."
msgstr "El evento %{event} fue creado por %{profile}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:43
#: lib/web/templates/email/activity/_event_activity_item.html.heex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13
#, elixir-format
msgid "The event %{event} was deleted by %{profile}."
msgstr "El evento% {event} fue eliminado por % {profile}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:33
#: lib/web/templates/email/activity/_event_activity_item.html.heex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7
#, elixir-format
msgid "The event %{event} was updated by %{profile}."
msgstr "El evento %{event} fue actualizado por %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_post_activity_item.html.heex:4
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
#, elixir-format
msgid "The post %{post} was created by %{profile}."
msgstr "El cargo %{post} fue creado por %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_post_activity_item.html.heex:34
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
#, elixir-format
msgid "The post %{post} was deleted by %{profile}."
msgstr "El post %{post} fue eliminado por %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_post_activity_item.html.heex:19
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
#, elixir-format
msgid "The post %{post} was updated by %{profile}."
msgstr "El post %{post} fue actualizado por %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:33
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
#, elixir-format
msgid "%{member} joined the group."
msgstr "%{member} se unió al grupo."
#, elixir-format
#: lib/service/activity/renderer/event.ex:63
#: lib/web/templates/email/activity/_event_activity_item.html.heex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25
#, elixir-format
msgid "%{profile} posted a comment on the event %{event}."
msgstr "%{profile} publicó un comentario sobre el evento %{event}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:54
#: lib/web/templates/email/activity/_event_activity_item.html.heex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19
#, elixir-format
msgid "%{profile} replied to a comment on the event %{event}."
msgstr "%{profile} respondió a un comentario sobre el evento %{event}."
#: lib/web/templates/email/email_direct_activity.text.eex:27
#, elixir-format
#: lib/web/templates/email/email_direct_activity.text.eex:27
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
msgstr ""
"¿No quieres recibir notificaciones de actividad? Puede cambiar la frecuencia "
"o deshabilitarlos en su configuración."
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:135
#: lib/web/templates/email/email_direct_activity.text.eex:23
#, elixir-format
msgid "View one more activity"
msgid_plural "View %{count} more activities"
msgstr[0] "Ver una actividad más"
msgstr[1] "Ver %{count} actividades mas"
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:44
#: lib/web/templates/email/email_direct_activity.html.heex:46 lib/web/templates/email/email_direct_activity.text.eex:6
#: lib/web/templates/email/email_direct_activity.text.eex:7
#, elixir-format
msgid "There has been an activity!"
msgid_plural "There has been some activity!"
msgstr[0] "¡Ha habido una actividad!"
msgstr[1] "¡Ha habido algopúnas actividades!"
#: lib/service/activity/renderer/renderer.ex:46
#, elixir-format
#: lib/service/activity/renderer/renderer.ex:46
msgid "Activity on %{instance}"
msgstr "Actividad en %{instance}"
#, elixir-format
#: lib/service/activity/renderer/comment.ex:38
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7
#: lib/web/templates/email/email_anonymous_activity.html.heex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5
#, elixir-format
msgid "%{profile} has posted an announcement under event %{event}."
msgstr "%{profile} ha publicado un anuncio en el evento %{event}."
#, elixir-format
#: lib/service/activity/renderer/comment.ex:24
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1
#, elixir-format
msgid "%{profile} mentionned you in a comment under event %{event}."
msgstr "%{profile} te mencionó en un comentario en el evento %{event}."
#: lib/web/templates/email/email_direct_activity.html.heex:155
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:155
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
msgstr ""
"¿No quieres recibir notificaciones de actividad? Puede cambiar la frecuencia "
"o deshabilitarlos en su configuración."
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:42
#: lib/web/templates/email/email_direct_activity.text.eex:5
#, elixir-format
msgid "Here's your weekly activity recap"
msgstr "Aquí está su resumen de actividad semanal"
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
#, elixir-format
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}"
msgstr "Actividad en %{instance}"
#: lib/web/email/activity.ex:126
#, elixir-format
#: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}"
msgstr "Resumen de actividad diaria en %{instance}"
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:40
#: lib/web/templates/email/email_direct_activity.text.eex:4
#, elixir-format
msgid "Here's your daily activity recap"
msgstr "Aquí está su resumen de actividad diaria"
#: lib/web/email/activity.ex:133
#, elixir-format
#: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}"
msgstr "Resumen de actividad semanal para %{instance}"
#, elixir-format
#: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
#, elixir-format
msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "%{profile} ha publicado un nuevo comentario en tu evento %{event}."
#, elixir-format
#: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
#, elixir-format
msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "%{profile} ha publicado una nueva respuesta en tu evento %{event}."
#: lib/web/email/activity.ex:46
#, elixir-format
#: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}"
msgstr "Anuncio para su evento %{event}"
#: lib/service/activity/renderer/group.ex:23
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr "El post %{post} fue actualizado por %{profile}."
#: lib/service/activity/renderer/post.ex:47
#, elixir-format
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr "El post %{post} del grupo %{group} fue actualizado por %{profile}."
#: lib/service/activity/renderer/post.ex:31
#, elixir-format
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr "El post %{post} del grupo %{group} fue actualizado por %{profile}."
#: lib/service/activity/renderer/post.ex:39
#, elixir-format
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr "El post %{post} del grupo %{group} fue actualizado por %{profile}."
#: lib/service/activity/renderer/member.ex:39
#, elixir-format
#: lib/service/activity/renderer/member.ex:39
msgid "%{member} accepted the invitation to join the group %{group}."
msgstr "%{member} aceptó la invitación para unirse al grupo."
#: lib/service/activity/renderer/member.ex:47
#, elixir-format
#: lib/service/activity/renderer/member.ex:47
msgid "%{member} joined the group %{group}."
msgstr "%{member} se unió al grupo."
#: lib/service/activity/renderer/member.ex:43
#, elixir-format
#: lib/service/activity/renderer/member.ex:43
msgid "%{member} rejected the invitation to join the group %{group}."
msgstr "%{member} rechazó la invitación para unirse al grupo."
#: lib/service/activity/renderer/member.ex:31
#, elixir-format
#: lib/service/activity/renderer/member.ex:31
msgid "%{member} requested to join the group %{group}."
msgstr "%{member} solicitó unirse al grupo."
#: lib/service/activity/renderer/member.ex:35
#, elixir-format
#: lib/service/activity/renderer/member.ex:35
msgid "%{member} was invited by %{profile} to group %{group}."
msgstr "%{member} fue invitado por %{profile}."
#: lib/service/activity/renderer/member.ex:51
#, elixir-format
#: lib/service/activity/renderer/member.ex:51
msgid "%{profile} added the member %{member} to group %{group}."
msgstr "%{profile} agregó el miembro %{member}."
#: lib/service/activity/renderer/member.ex:55
#, elixir-format
#: lib/service/activity/renderer/member.ex:55
msgid "%{profile} approved the membership request from %{member} for group %{group}."
msgstr "%{profile} actualizado el miembro %{member}."
#: lib/service/activity/renderer/resource.ex:33
#, elixir-format
#: lib/service/activity/renderer/resource.ex:33
msgid "%{profile} created the folder %{resource} in group %{group}."
msgstr "%{profile} creó la carpeta %{resource}."
#: lib/service/activity/renderer/resource.ex:69
#, elixir-format
#: lib/service/activity/renderer/resource.ex:69
msgid "%{profile} deleted the folder %{resource} in group %{group}."
msgstr "%{profile} borró la carpeta %{resource}."
#: lib/service/activity/renderer/resource.ex:71
#, elixir-format
#: lib/service/activity/renderer/resource.ex:71
msgid "%{profile} deleted the resource %{resource} in group %{group}."
msgstr "%{profile} eliminado el recurso %{resource}."
#: lib/service/activity/renderer/member.ex:75
#, elixir-format
#: lib/service/activity/renderer/member.ex:75
msgid "%{profile} excluded member %{member} from the group %{group}."
msgstr "%{profile }miembro excluido %{member}."
#: lib/service/activity/renderer/resource.ex:61
#, elixir-format
#: lib/service/activity/renderer/resource.ex:61
msgid "%{profile} moved the folder %{resource} in group %{group}."
msgstr "%{profile} movió la carpeta %{resource}."
#: lib/service/activity/renderer/resource.ex:63
#, elixir-format
#: lib/service/activity/renderer/resource.ex:63
msgid "%{profile} moved the resource %{resource} in group %{group}."
msgstr "%{profile} movió el recurso %{resource}."
#: lib/service/activity/renderer/member.ex:79
#, elixir-format
#: lib/service/activity/renderer/member.ex:79
msgid "%{profile} quit the group %{group}."
msgstr "%{profile} abandona el grupo."
#: lib/service/activity/renderer/member.ex:63
#, elixir-format
#: lib/service/activity/renderer/member.ex:63
msgid "%{profile} rejected the membership request from %{member} for group %{group}."
msgstr "%{profile} rechazó la solicitud de inscripción de %{member}."
#: lib/service/activity/renderer/resource.ex:45
#, elixir-format
#: lib/service/activity/renderer/resource.ex:45
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource} in group %{group}."
msgstr ""
"%{profile} ha renombrado la carpeta de %{old_resource_title} a %{resource}."
#: lib/service/activity/renderer/resource.ex:51
#, elixir-format
#: lib/service/activity/renderer/resource.ex:51
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource} in group %{group}."
msgstr ""
"%{profile} ha renombrado el recurso de %{old_resource_title} a %{resource}."
#: lib/service/activity/renderer/member.ex:71
#, elixir-format
#: lib/service/activity/renderer/member.ex:71
msgid "%{profile} updated the member %{member} in group %{group}."
msgstr "%{profile} actualizado el miembro %{member}."
#: lib/service/activity/renderer/resource.ex:35
#, elixir-format
#: lib/service/activity/renderer/resource.ex:35
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr "%{profile} creó el recurso %{resource}."
#: lib/service/activity/renderer/discussion.ex:86
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr "%{profile} archivó la discusión %{discussion}."
#: lib/service/activity/renderer/discussion.ex:26
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr "%{profile} creó la discusión %{discussion} del grupo %{group}."
#: lib/service/activity/renderer/discussion.ex:101
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr "%{profile} eliminó la discusión %{discussion} en el grupo %{group}."
#: lib/service/activity/renderer/discussion.ex:56
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr "%{profile} te mencionó en la %{discusión} grupo de discusión %{group}."
#: lib/service/activity/renderer/discussion.ex:71
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr "%{profile} renombrado la discusión %{discussion} del grupo% {group}.."
#: lib/service/activity/renderer/discussion.ex:41
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr "%{profile} respondió a la discusión %{discussion}en el grupo %{group}."

View File

@ -1732,8 +1732,8 @@ msgstr "¡Tu participación en %{event} en %{instance} ha sido cancelada!"
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr "%{event}_participantes"

File diff suppressed because it is too large Load Diff

View File

@ -418,32 +418,32 @@ msgstr "%{profile} päivitti jäsentä %{member}."
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr "%{profile} loi resurssin %{resource}."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr "%{profile} arkistoi keskustelun %{discussion}."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr "%{profile} loi keskustelun %{discussion}."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr "%{profile} poisti keskustelun %{discussion}."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr "%{profile} mainitsi sinut keskustelussa %{discussion}."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr "%{profile} muutti keskustelun %{discussion} nimer."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr "%{profile} vastasi keskusteluun %{discussion}."

View File

@ -1700,8 +1700,8 @@ msgstr "Osallistumisesi tapahtumaan %{title} on hyväksytty"
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr ""

View File

@ -100,24 +100,24 @@ msgid "Cannot refresh the token"
msgstr "Merkkiä ei voi päivittää"
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr "Nykyinen profiili ei kuulu tähän ryhmään"
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr "Nykyinen profiili ei ole valitun ryhmän ylläpitäjä"
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr "Käyttäjän asetusten tallennuksessa tapahtui virhe"
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr "Ryhmää ei löydy"
@ -133,7 +133,7 @@ msgstr ""
"Kirjautuminen epäonnistui - joko sähköpostiosoitteesi tai salasana on väärin."
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr "Jäsentä ei löydy"
@ -166,33 +166,33 @@ msgid "Registrations are not open"
msgstr "Ei voi rekisteröityä"
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr "Nykyinen salasana ei kelpaa"
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr "Uusi sähköpostiosoite ei vaikuta kelvolliselta"
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr "Uuden sähköpostiosoitteen on poikettava vanhasta"
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr "Uuden salasanan on poikettava vanhasta"
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr "Annettu salasana on epäkelpo"
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
"Valitsemasi salasana on liian lyhyt. Käytä vähintään kuuden merkin mittaista "
@ -214,27 +214,27 @@ msgid "Unable to validate user"
msgstr "Käyttäjää ei voi vahvistaa"
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr "Käyttäjä on jo poistettu käytöstä"
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr "Pyydetty käyttäjä ei ole kirjautuneena sisään"
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr "Olet jo tämän ryhmän jäsen"
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr "Et voi poistua ryhmästä, koska olet sen ainoa ylläpitäjä"
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr "Et voi liittyä tähän ryhmään"
@ -244,37 +244,37 @@ msgid "You may not list groups unless moderator."
msgstr "Voit nähdä ryhmäluettelon vain, jos olet moderaattori."
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr "Sähköpostiosoitteen voi vaihtaa vain sisäänkirjautuneena"
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr "Salasanan voi vaihtaa vain sisäänkirjautuneena"
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr "Ryhmän voi poistaa vain sisäänkirjautuneena"
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr "Voit poistaa tilisi vain sisäänkirjautuneena"
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr "Voit liittyä ryhmään vain sisäänkirjautuneena"
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr "Voit poistua ryhmästä vain sisäänkirjautuneena"
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr "Voit päivittää ryhmää vain sisäänkirjautuneena"
@ -440,12 +440,12 @@ msgid "Post doesn't exist"
msgstr "Julkaisua ei ole"
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr "Kutsuttua profiilia ei ole"
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr "Profiili on jo ryhmän jäsen"
@ -520,13 +520,13 @@ msgid "You are already a participant of this event"
msgstr "Olet jo tapahtuman osallistuja"
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr "Et ole ryhmän jäsen"
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr "Et ole ryhmän moderaattori tai ylläpitäjä"
@ -563,7 +563,7 @@ msgstr ""
"Et voi poistua tapahtumasta, koska olet ainoa tapahtuman luonut osallistuja"
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
"Et voi vaihtaa jäsenrooliasi ryhmässä nykyistä alemmaksi, koska olet ainoa "
@ -580,7 +580,7 @@ msgid "You cannot delete this event"
msgstr "Et voi poistaa tapahtumaa"
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr "Et voi kutsua tähän ryhmään"
@ -765,12 +765,12 @@ msgid "You need to be logged in"
msgstr "Kirjaudu ensin sisään"
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr "Et voi hyväksyä kutsua tällä profiililla."
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr "Et voi hylätä kutsua tällä profiililla."
@ -780,7 +780,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr "Tiedostolla ei ole sallittua MIME-tyyppiä."
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr "Profiili ei ole ryhmän ylläpitäjä"
@ -795,17 +795,17 @@ msgid "You can't attribute this event to this profile."
msgstr "Et voi yhdistää tapahtumaa tähän profiiliin."
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr "Kutsua ei ole."
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr "Jäsen on jo hylätty."
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr "Sinulla ei ole oikeutta poistaa jäsentä."
@ -830,7 +830,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr "Annettu profiilitunniste ei kuulu anonyymille profiilille"
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr "Toimitettu kuva on liian suuri"
@ -846,7 +846,7 @@ msgid "Error while creating resource"
msgstr "Virhe raporttia tallennettaessa"
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr "Virheellinen aktivointimerkki"
@ -887,7 +887,7 @@ msgid "Error while creating a discussion"
msgstr "Virhe raporttia tallennettaessa"
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr "Virhe raporttia päivitettäessä"
@ -902,17 +902,17 @@ msgid "Failed to leave the event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr "Käyttäjää ei voi vahvistaa"
@ -932,7 +932,7 @@ msgid "You are not the comment creator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr ""
@ -957,7 +957,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr ""
@ -972,17 +972,17 @@ msgid "Unknown error while creating event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -997,37 +997,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr "Voit liittyä ryhmään vain sisäänkirjautuneena"
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr "Voit liittyä ryhmään vain sisäänkirjautuneena"
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr "Voit päivittää ryhmää vain sisäänkirjautuneena"
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr "Sinulla ei ole oikeutta poistaa jäsentä."
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -20,323 +20,430 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Poedit 3.0\n"
#: lib/web/templates/email/activity/_member_activity_item.html.heex:19 lib/web/templates/email/activity/_member_activity_item.text.eex:12
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:19
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
msgid "%{member} accepted the invitation to join the group."
msgstr "%{member} a accepté l'invitation à rejoindre le groupe."
#: lib/web/templates/email/activity/_member_activity_item.html.heex:26 lib/web/templates/email/activity/_member_activity_item.text.eex:17
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:26
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
msgid "%{member} rejected the invitation to join the group."
msgstr "%{member} a refusé l'invitation à rejoindre le groupe."
#: lib/web/templates/email/activity/_member_activity_item.html.heex:4 lib/web/templates/email/activity/_member_activity_item.text.eex:1
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:4
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
msgid "%{member} requested to join the group."
msgstr "%{member} a demandé à rejoindre le groupe."
#: lib/web/templates/email/activity/_member_activity_item.html.heex:11 lib/web/templates/email/activity/_member_activity_item.text.eex:6
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:11
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
msgid "%{member} was invited by %{profile}."
msgstr "%{member} a été invité⋅e par %{profile}."
#: lib/web/templates/email/activity/_member_activity_item.html.heex:40 lib/web/templates/email/activity/_member_activity_item.text.eex:27
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:40
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
msgid "%{profile} added the member %{member}."
msgstr "%{profile} a ajouté le ou la membre %{member}."
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:46
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
msgid "%{profile} archived the discussion %{discussion}."
msgstr "%{profile} a archivé la discussion %{discussion}."
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:4
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
msgid "%{profile} created the discussion %{discussion}."
msgstr "%{profile} a créé la discussion %{discussion}."
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:5 lib/web/templates/email/activity/_resource_activity_item.text.eex:2
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:5
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
msgid "%{profile} created the folder %{resource}."
msgstr "%{profile} a créé le dossier %{resource}."
#: lib/web/templates/email/activity/_group_activity_item.html.heex:4 lib/web/templates/email/activity/_group_activity_item.text.eex:1
#, elixir-format
#: lib/web/templates/email/activity/_group_activity_item.html.heex:4
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
msgid "%{profile} created the group %{group}."
msgstr "%{profile} a créé le groupe %{group}."
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:20 lib/web/templates/email/activity/_resource_activity_item.text.eex:8
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:20
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
msgid "%{profile} created the resource %{resource}."
msgstr "%{profile} a créé la resource %{resource}."
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:60
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
msgid "%{profile} deleted the discussion %{discussion}."
msgstr "%{profile} a créé la discussion %{discussion}."
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:103 lib/web/templates/email/activity/_resource_activity_item.text.eex:40
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:103
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
msgid "%{profile} deleted the folder %{resource}."
msgstr "%{profile} a supprimé le dossier %{resource}."
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:111 lib/web/templates/email/activity/_resource_activity_item.text.eex:45
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:111
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
msgid "%{profile} deleted the resource %{resource}."
msgstr "%{profile} a supprimé la resource %{resource}."
#: lib/web/templates/email/activity/_member_activity_item.html.heex:56 lib/web/templates/email/activity/_member_activity_item.text.eex:39
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:56
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
msgid "%{profile} excluded member %{member}."
msgstr "%{profile} a exclu le ou la membre %{member}."
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:71 lib/web/templates/email/activity/_resource_activity_item.text.eex:28
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:71
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
msgid "%{profile} moved the folder %{resource}."
msgstr "%{profile} a déplacé le dossier %{resource}."
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86 lib/web/templates/email/activity/_resource_activity_item.text.eex:34
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
msgid "%{profile} moved the resource %{resource}."
msgstr "%{profile} a déplacé la ressource %{resource}."
#: lib/web/templates/email/activity/_member_activity_item.html.heex:64 lib/web/templates/email/activity/_member_activity_item.text.eex:45
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:64
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
msgid "%{profile} quit the group."
msgstr "%{profile} a quitté le groupe."
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:32
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
msgid "%{profile} renamed the discussion %{discussion}."
msgstr "%{profile} a renommé la discussion %{discussion}."
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:37 lib/web/templates/email/activity/_resource_activity_item.text.eex:14
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:37
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
msgstr "%{profile} a renommé le dossier %{old_resource_title} en %{resource}."
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:53 lib/web/templates/email/activity/_resource_activity_item.text.eex:21
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:53
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
msgstr "%{profile} a renommé la resource %{old_resource_title} en %{resource}."
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:18
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
msgid "%{profile} replied to the discussion %{discussion}."
msgstr "%{profile} a répondu à la discussion %{discussion}."
#: lib/web/templates/email/activity/_group_activity_item.html.heex:19 lib/web/templates/email/activity/_group_activity_item.text.eex:7
#, elixir-format
#: lib/web/templates/email/activity/_group_activity_item.html.heex:19
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
msgid "%{profile} updated the group %{group}."
msgstr "%{profile} a mis à jour le groupe %{group}."
#: lib/web/templates/email/activity/_member_activity_item.html.heex:48 lib/web/templates/email/activity/_member_activity_item.text.eex:33
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:48
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
msgid "%{profile} updated the member %{member}."
msgstr "%{profile} a mis à jour le membre %{member}."
#: lib/service/activity/renderer/event.ex:23 lib/web/templates/email/activity/_event_activity_item.html.heex:4
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
#, elixir-format
#: lib/service/activity/renderer/event.ex:23
#: lib/web/templates/email/activity/_event_activity_item.html.heex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1
msgid "The event %{event} was created by %{profile}."
msgstr "L'événement %{event} a été créé par %{profile}."
#: lib/service/activity/renderer/event.ex:43 lib/web/templates/email/activity/_event_activity_item.html.heex:34
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
#, elixir-format
#: lib/service/activity/renderer/event.ex:43
#: lib/web/templates/email/activity/_event_activity_item.html.heex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13
msgid "The event %{event} was deleted by %{profile}."
msgstr "L'événement %{event} a été supprimé par %{profile}."
#: lib/service/activity/renderer/event.ex:33 lib/web/templates/email/activity/_event_activity_item.html.heex:19
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
#, elixir-format
#: lib/service/activity/renderer/event.ex:33
#: lib/web/templates/email/activity/_event_activity_item.html.heex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7
msgid "The event %{event} was updated by %{profile}."
msgstr "L'événement %{event} a été mis à jour par %{profile}."
#: lib/web/templates/email/activity/_post_activity_item.html.heex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1
#, elixir-format
#: lib/web/templates/email/activity/_post_activity_item.html.heex:4
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
msgid "The post %{post} was created by %{profile}."
msgstr "Le billet %{post} a été créé par %{profile}."
#: lib/web/templates/email/activity/_post_activity_item.html.heex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13
#, elixir-format
#: lib/web/templates/email/activity/_post_activity_item.html.heex:34
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
msgid "The post %{post} was deleted by %{profile}."
msgstr "Le billet %{post} a été supprimé par %{profile}."
#: lib/web/templates/email/activity/_post_activity_item.html.heex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7
#, elixir-format
#: lib/web/templates/email/activity/_post_activity_item.html.heex:19
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
msgid "The post %{post} was updated by %{profile}."
msgstr "Le billet %{post} a été mis à jour par %{profile}."
#: lib/web/templates/email/activity/_member_activity_item.html.heex:33 lib/web/templates/email/activity/_member_activity_item.text.eex:22
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:33
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
msgid "%{member} joined the group."
msgstr "%{member} a rejoint le groupe."
#: lib/service/activity/renderer/event.ex:63 lib/web/templates/email/activity/_event_activity_item.html.heex:58
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
#, elixir-format
#: lib/service/activity/renderer/event.ex:63
#: lib/web/templates/email/activity/_event_activity_item.html.heex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25
msgid "%{profile} posted a comment on the event %{event}."
msgstr "%{profile} a posté un commentaire sur l'événement %{event}."
#: lib/service/activity/renderer/event.ex:54 lib/web/templates/email/activity/_event_activity_item.html.heex:43
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
#, elixir-format
#: lib/service/activity/renderer/event.ex:54
#: lib/web/templates/email/activity/_event_activity_item.html.heex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19
msgid "%{profile} replied to a comment on the event %{event}."
msgstr "%{profile} a répondu à un commentaire sur l'événement %{event}."
#, elixir-format
#: lib/web/templates/email/email_direct_activity.text.eex:27
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
msgstr "Vous ne voulez pas recevoir de notifications d'activité ? Vous pouvez changer leur fréquence ou les désactiver dans vos préférences."
#: lib/web/templates/email/email_direct_activity.html.heex:135 lib/web/templates/email/email_direct_activity.text.eex:23
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:135
#: lib/web/templates/email/email_direct_activity.text.eex:23
msgid "View one more activity"
msgid_plural "View %{count} more activities"
msgstr[0] "Voir une activité de plus"
msgstr[1] "Voir %{count} activités de plus"
#: lib/web/templates/email/email_direct_activity.html.heex:44 lib/web/templates/email/email_direct_activity.html.heex:46
#: lib/web/templates/email/email_direct_activity.text.eex:6 lib/web/templates/email/email_direct_activity.text.eex:7
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:44
#: lib/web/templates/email/email_direct_activity.html.heex:46 lib/web/templates/email/email_direct_activity.text.eex:6
#: lib/web/templates/email/email_direct_activity.text.eex:7
msgid "There has been an activity!"
msgid_plural "There has been some activity!"
msgstr[0] "Il y a eu une activité !"
msgstr[1] "Il y a eu de l'activité !"
#, elixir-format
#: lib/service/activity/renderer/renderer.ex:46
msgid "Activity on %{instance}"
msgstr "Activité sur %{instance}"
#: lib/service/activity/renderer/comment.ex:38 lib/web/templates/email/activity/_comment_activity_item.html.heex:19
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/email_anonymous_activity.html.heex:41
#: lib/web/templates/email/email_anonymous_activity.text.eex:5
#, elixir-format
#: lib/service/activity/renderer/comment.ex:38
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7
#: lib/web/templates/email/email_anonymous_activity.html.heex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5
msgid "%{profile} has posted an announcement under event %{event}."
msgstr "%{profile} a posté une annonce sous l'événement %{event}."
#: lib/service/activity/renderer/comment.ex:24 lib/web/templates/email/activity/_comment_activity_item.html.heex:4
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1
#, elixir-format
#: lib/service/activity/renderer/comment.ex:24
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1
msgid "%{profile} mentionned you in a comment under event %{event}."
msgstr "%{profile} vous a mentionné dans un commentaire sous l'événement %{event}."
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:155
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
msgstr ""
"Vous ne voulez pas recevoir de notifications d'activité ? Vous pouvez changer leur fréquence ou les désactiver dans %{tag_start}vos préférences"
"%{tag_end}."
#: lib/web/templates/email/email_direct_activity.html.heex:42 lib/web/templates/email/email_direct_activity.text.eex:5
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:42
#: lib/web/templates/email/email_direct_activity.text.eex:5
msgid "Here's your weekly activity recap"
msgstr "Voici votre récapitulatif hebdomadaire d'activité"
#, elixir-format
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}"
msgstr "Notification d'activité sur %{instance}"
#, elixir-format
#: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}"
msgstr "Récapitulatif quotidien d'activité sur %{instance}"
#: lib/web/templates/email/email_direct_activity.html.heex:40 lib/web/templates/email/email_direct_activity.text.eex:4
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:40
#: lib/web/templates/email/email_direct_activity.text.eex:4
msgid "Here's your daily activity recap"
msgstr "Voici votre récapitulatif quotidien d'activité"
#, elixir-format
#: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}"
msgstr "Récapitulatif hebdomadaire d'activité sur %{instance}"
#: lib/service/activity/renderer/comment.ex:66 lib/web/templates/email/activity/_comment_activity_item.html.heex:51
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19
#, elixir-format
#: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "%{profile} a posté un nouveau commentaire sous votre événement %{event}."
#: lib/service/activity/renderer/comment.ex:53 lib/web/templates/email/activity/_comment_activity_item.html.heex:36
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13
#, elixir-format
#: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "%{profile} a posté une nouvelle réponse sous votre événement %{event}."
#, elixir-format
#: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}"
msgstr "Annonce pour votre événement %{event}"
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr "Le groupe %{group} a été mis à jour par %{profile}."
#, elixir-format
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr "Le billet %{post} du groupe %{group} a été supprimé par %{profile}."
#, elixir-format
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr "Le billet %{post} du groupe %{group} a été publié par %{profile}."
#, elixir-format
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr "Le billet %{post} du groupe %{group} a été mis à jour par %{profile}."
#, elixir-format
#: lib/service/activity/renderer/member.ex:39
msgid "%{member} accepted the invitation to join the group %{group}."
msgstr "%{member} a accepté l'invitation à rejoindre le groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/member.ex:47
msgid "%{member} joined the group %{group}."
msgstr "%{member} a rejoint le groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/member.ex:43
msgid "%{member} rejected the invitation to join the group %{group}."
msgstr "%{member} a refusé l'invitation à rejoindre le groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/member.ex:31
msgid "%{member} requested to join the group %{group}."
msgstr "%{member} a demandé à rejoindre le groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/member.ex:35
msgid "%{member} was invited by %{profile} to group %{group}."
msgstr "%{member} a été invité⋅e par %{profile} au groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/member.ex:51
msgid "%{profile} added the member %{member} to group %{group}."
msgstr "%{profile} a ajouté le ou la membre %{member} au groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/member.ex:55
msgid "%{profile} approved the membership request from %{member} for group %{group}."
msgstr "%{profile} a approuvé la demande d'adhésion de %{member} au groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/resource.ex:33
msgid "%{profile} created the folder %{resource} in group %{group}."
msgstr "%{profile} a créé le dossier %{resource} du groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/resource.ex:69
msgid "%{profile} deleted the folder %{resource} in group %{group}."
msgstr "%{profile} a supprimé le dossier %{resource} du groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/resource.ex:71
msgid "%{profile} deleted the resource %{resource} in group %{group}."
msgstr "%{profile} a supprimé la ressource %{resource} du groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/member.ex:75
msgid "%{profile} excluded member %{member} from the group %{group}."
msgstr "%{profile} a exclu le ou la membre %{member} du groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/resource.ex:61
msgid "%{profile} moved the folder %{resource} in group %{group}."
msgstr "%{profile} a déplacé le dossier %{resource} du groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/resource.ex:63
msgid "%{profile} moved the resource %{resource} in group %{group}."
msgstr "%{profile} a déplacé la ressource %{resource} du groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/member.ex:79
msgid "%{profile} quit the group %{group}."
msgstr "%{profile} a quitté le groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/member.ex:63
msgid "%{profile} rejected the membership request from %{member} for group %{group}."
msgstr "%{profile} a rejeté la demande d'adhésion de %{member} pour le groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/resource.ex:45
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource} in group %{group}."
msgstr "%{profile} a renommé le dossier %{old_resource_title} en %{resource} dans le groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/resource.ex:51
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource} in group %{group}."
msgstr "%{profile} a renommé la ressource %{old_resource_title} en %{resource} dans le groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/member.ex:71
msgid "%{profile} updated the member %{member} in group %{group}."
msgstr "%{profile} a mis à jour le membre %{member} dans le groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/resource.ex:35
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr "%{profile} a créé la ressource %{resource} dans le groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr "%{profile} a archivé la discussion %{discussion} du groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr "%{profile} a créé la discussion %{discussion} du groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr "%{profile} a créé la discussion %{discussion} dans le groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr "%{profile} vous a mentionné dans la discussion %{discussion} du groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr "%{profile} a renommé la discussion %{discussion} du groupe %{group}."
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr "%{profile} a répondu à la discussion %{discussion} du groupe %{group}."

View File

@ -1417,8 +1417,8 @@ msgstr "Votre participation à l'événement %{event} sur %{instance} a été an
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr "%{event}_participants"

View File

@ -102,24 +102,24 @@ msgid "Cannot refresh the token"
msgstr "Impossible de rafraîchir le jeton"
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr "Le profil actuel n'est pas un membre de ce groupe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
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é"
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr "Erreur lors de la sauvegarde des paramètres utilisateur"
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr "Groupe non trouvé"
@ -134,7 +134,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "Impossible de s'authentifier, votre adresse e-mail ou bien votre mot de passe sont invalides."
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr "Membre non trouvé"
@ -167,33 +167,33 @@ msgid "Registrations are not open"
msgstr "Les inscriptions ne sont pas ouvertes"
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr "Le mot de passe actuel est invalid"
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr "La nouvelle adresse e-mail ne semble pas être valide"
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr "La nouvelle adresse e-mail doit être différente"
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr "Le nouveau mot de passe doit être différent"
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr "Le mot de passe fourni est invalide"
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
"Le mot de passe que vous avez choisi est trop court. Merci de vous assurer que votre mot de passe contienne au moins "
@ -215,27 +215,27 @@ msgid "Unable to validate user"
msgstr "Impossible de valider l'utilisateur·ice"
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr "L'utilisateur·ice est déjà désactivé·e"
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr "L'utilisateur·ice demandé·e n'est pas connecté·e"
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr "Vous êtes déjà membre de ce groupe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr "Vous ne pouvez pas quitter ce groupe car vous en êtes le ou la seul·e administrateur·ice"
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr "Vous ne pouvez pas rejoindre ce groupe"
@ -245,37 +245,37 @@ msgid "You may not list groups unless moderator."
msgstr "Vous ne pouvez pas lister les groupes sauf à être modérateur·ice."
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr "Vous devez être connecté·e pour changer votre adresse e-mail"
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr "Vous devez être connecté·e pour changer votre mot de passe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr "Vous devez être connecté·e pour supprimer un groupe"
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr "Vous devez être connecté·e pour supprimer votre compte"
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr "Vous devez être connecté·e pour rejoindre un groupe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr "Vous devez être connecté·e pour quitter un groupe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr "Vous devez être connecté·e pour mettre à jour un groupe"
@ -441,12 +441,12 @@ msgid "Post doesn't exist"
msgstr "Le billet n'existe pas"
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr "Le profil invité n'existe pas"
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr "Ce profil est déjà membre de ce groupe"
@ -521,13 +521,13 @@ msgid "You are already a participant of this event"
msgstr "Vous êtes déjà un·e participant·e à cet événement"
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr "Vous n'êtes pas membre de ce groupe"
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr "Vous n'êtes pas administrateur·ice ou modérateur·ice de ce groupe"
@ -563,7 +563,7 @@ 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"
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
"Vous ne pouvez pas vous définir avec un rôle de membre inférieur pour ce groupe car vous en êtes le ou la seul·e "
@ -580,7 +580,7 @@ msgid "You cannot delete this event"
msgstr "Vous ne pouvez pas supprimer cet événement"
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr "Vous ne pouvez pas rejoindre ce groupe"
@ -765,12 +765,12 @@ msgid "You need to be logged in"
msgstr "Vous devez être connecté·e"
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr "Vous ne pouvez pas accepter cette invitation avec ce profil."
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr "Vous ne pouvez pas rejeter cette invitation avec ce profil."
@ -780,7 +780,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr "Le fichier n'a pas un type MIME autorisé."
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr "Le profil n'est pas administrateur·ice pour le groupe"
@ -795,17 +795,17 @@ msgid "You can't attribute this event to this profile."
msgstr "Vous ne pouvez pas attribuer cet événement à ce profil."
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr "Cette invitation n'existe pas."
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr "Ce·tte membre a déjà été rejetté·e."
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr "Vous n'avez pas les droits pour supprimer ce·tte membre."
@ -830,7 +830,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr "L'ID du profil fourni n'est pas celui du profil anonyme"
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr "L'image fournie est trop lourde"
@ -846,7 +846,7 @@ msgid "Error while creating resource"
msgstr "Erreur lors de la création de la resource"
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr "Jeton d'activation invalide"
@ -887,7 +887,7 @@ msgid "Error while creating a discussion"
msgstr "Erreur lors de la création de la discussion"
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr "Erreur lors de la mise à jour des options linguistiques"
@ -902,17 +902,17 @@ msgid "Failed to leave the event"
msgstr "Impossible de quitter l'événement"
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr "Impossible de mettre à jour le groupe"
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr "Impossible de mettre à jour l'adresse e-mail de utilisateur"
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr "Impossible de valider l'adresse e-mail de l'utilisateur·ice"
@ -932,7 +932,7 @@ msgid "You are not the comment creator"
msgstr "Vous n'êtes pas le ou la createur⋅ice du commentaire"
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr "Vous ne pouvez pas changer votre mot de passe."
@ -957,7 +957,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr "L'export au format %{format} n'est pas activé sur cette instance"
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr "Seul⋅es les administrateur⋅ices peuvent créer des groupes"
@ -972,17 +972,17 @@ msgid "Unknown error while creating event"
msgstr "Erreur inconnue lors de la création de l'événement"
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr "L'utilisateur ne peut changer son adresse e-mail"
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr "L'abonnement ne correspond pas à votre compte"
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr "Abonnement non trouvé"
@ -997,37 +997,37 @@ msgid "This profile does not belong to you"
msgstr "Ce profil ne vous appartient pas"
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr "Vous êtes déjà membre de ce groupe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr "Vous devez être connecté·e pour rejoindre un groupe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr "Vous devez être connecté·e pour rejoindre un groupe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr "Vous devez être connecté·e pour mettre à jour un groupe"
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr "Ce membre n'existe pas"
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr "Vous n'avez pas les droits pour supprimer ce·tte membre."
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr "Vous devez être connecté⋅e pour supprimer un⋅e membre"

View File

@ -24,209 +24,209 @@ msgstr ""
## Run "mix gettext.extract" to bring this file up to
## date. Leave "msgstr"s empty as changing them here as no
## effect: edit them in PO (.po) files instead.
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:19
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
#, elixir-format
msgid "%{member} accepted the invitation to join the group."
msgstr "Ghabh %{member} ris a bhallrachd sa bhuidheann."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:26
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
#, elixir-format
msgid "%{member} rejected the invitation to join the group."
msgstr "Dhiùlt %{member} a bhallrachd sa bhuidheann."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:4
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
#, elixir-format
msgid "%{member} requested to join the group."
msgstr "Dhiarr %{member} ballrachd sa bhuidheann."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:11
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
#, elixir-format
msgid "%{member} was invited by %{profile}."
msgstr "Fhuair %{member} cuireadh o %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:40
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
#, elixir-format
msgid "%{profile} added the member %{member}."
msgstr "Chuir %{profile} am ball %{member} ris."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:46
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#, elixir-format
msgid "%{profile} archived the discussion %{discussion}."
msgstr "Chuir %{profile} an deasbad %{discussion} san tasg-lann."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:4
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#, elixir-format
msgid "%{profile} created the discussion %{discussion}."
msgstr "Chruthaich %{profile} an deasbad %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:5
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
#, elixir-format
msgid "%{profile} created the folder %{resource}."
msgstr "Chruthaich %{profile} am pasgan %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_group_activity_item.html.heex:4
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
#, elixir-format
msgid "%{profile} created the group %{group}."
msgstr "Chruthaich %{profile} am buidheann %{group}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:20
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
#, elixir-format
msgid "%{profile} created the resource %{resource}."
msgstr "Chruthaich %{profile} an goireas %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:60
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#, elixir-format
msgid "%{profile} deleted the discussion %{discussion}."
msgstr "Sguab %{profile} às an deasbad %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:103
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
#, elixir-format
msgid "%{profile} deleted the folder %{resource}."
msgstr "Sguab %{profile} às am pasgan %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:111
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
#, elixir-format
msgid "%{profile} deleted the resource %{resource}."
msgstr "Sguab %{profile} às an goireas %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:56
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
#, elixir-format
msgid "%{profile} excluded member %{member}."
msgstr "Dhùin %{profile} am ball %{member} a-mach."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:71
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
#, elixir-format
msgid "%{profile} moved the folder %{resource}."
msgstr "Ghluais %{profile} am pasgan %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
#, elixir-format
msgid "%{profile} moved the resource %{resource}."
msgstr "Ghluais %{profile} an goireas %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:64
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
#, elixir-format
msgid "%{profile} quit the group."
msgstr "Dhfhàg %{profile} am buidheann."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:32
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#, elixir-format
msgid "%{profile} renamed the discussion %{discussion}."
msgstr "Thug %{profile} ainm ùr air an deasbad %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:37
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
#, elixir-format
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
msgstr "Thug %{profile} %{resource} air a phasgan %{old_resource_title}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:53
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
#, elixir-format
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
msgstr "Thug %{profile} %{resource} air a ghoireas %{old_resource_title}."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:18
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#, elixir-format
msgid "%{profile} replied to the discussion %{discussion}."
msgstr "Fhreagair %{profile} dhan deasbad %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_group_activity_item.html.heex:19
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
#, elixir-format
msgid "%{profile} updated the group %{group}."
msgstr "Dhùraich %{profile} am buidheann %{group}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:48
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
#, elixir-format
msgid "%{profile} updated the member %{member}."
msgstr "Dhùraich %{profile} am ball %{member}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:23
#: lib/web/templates/email/activity/_event_activity_item.html.heex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1
#, elixir-format
msgid "The event %{event} was created by %{profile}."
msgstr "Chaidh an tachartas %{event} a chruthachadh le %{profile}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:43
#: lib/web/templates/email/activity/_event_activity_item.html.heex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13
#, elixir-format
msgid "The event %{event} was deleted by %{profile}."
msgstr "Chaidh an tachartas %{event} a sguabadh às le %{profile}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:33
#: lib/web/templates/email/activity/_event_activity_item.html.heex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7
#, elixir-format
msgid "The event %{event} was updated by %{profile}."
msgstr "Chaidh an tachartas %{event} ùrachadh le %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_post_activity_item.html.heex:4
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
#, elixir-format
msgid "The post %{post} was created by %{profile}."
msgstr "Chaidh am post %{post} a chruthachadh le %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_post_activity_item.html.heex:34
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
#, elixir-format
msgid "The post %{post} was deleted by %{profile}."
msgstr "Chaidh am post %{post} a sguabadh às le %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_post_activity_item.html.heex:19
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
#, elixir-format
msgid "The post %{post} was updated by %{profile}."
msgstr "Chaidh am post %{post} ùrachadh le %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:33
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
#, elixir-format
msgid "%{member} joined the group."
msgstr "Fhuair %{member} ballrachd sa bhuidheann."
#, elixir-format
#: lib/service/activity/renderer/event.ex:63
#: lib/web/templates/email/activity/_event_activity_item.html.heex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25
#, elixir-format
msgid "%{profile} posted a comment on the event %{event}."
msgstr "Thug %{profile} beachd air an tachartas %{event}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:54
#: lib/web/templates/email/activity/_event_activity_item.html.heex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19
#, elixir-format
msgid "%{profile} replied to a comment on the event %{event}."
msgstr "Fhreagair %{profile} do bheachd air an tachartas %{event}."
#: lib/web/templates/email/email_direct_activity.text.eex:27
#, elixir-format
#: lib/web/templates/email/email_direct_activity.text.eex:27
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
msgstr ""
"A bheil thu airson brathan fhaighinn mu ghnìomhachd? S urrainn dhut "
"atharrachadh dè cho tric s a gheibh thu iad no an cur à comas sna "
"roghainnean agad."
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:135
#: lib/web/templates/email/email_direct_activity.text.eex:23
#, elixir-format
msgid "View one more activity"
msgid_plural "View %{count} more activities"
msgstr[0] "Seall %{count} ghnìomhachd a bharrachd"
@ -234,10 +234,10 @@ msgstr[1] "Seall %{count} ghnìomhachd a bharrachd"
msgstr[2] "Seall %{count} gnìomhachdan a bharrachd"
msgstr[3] "Seall %{count} gnìomhachd a bharrachd"
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:44
#: lib/web/templates/email/email_direct_activity.html.heex:46 lib/web/templates/email/email_direct_activity.text.eex:6
#: lib/web/templates/email/email_direct_activity.text.eex:7
#, elixir-format
msgid "There has been an activity!"
msgid_plural "There has been some activity!"
msgstr[0] "Bha gnìomhachd ann!"
@ -245,95 +245,95 @@ msgstr[1] "Bha gnìomhachdan ann!"
msgstr[2] "Bha gnìomhachdan ann!"
msgstr[3] "Bha gnìomhachdan ann!"
#: lib/service/activity/renderer/renderer.ex:46
#, elixir-format
#: lib/service/activity/renderer/renderer.ex:46
msgid "Activity on %{instance}"
msgstr "Gnìomhachd air %{instance}"
#, elixir-format
#: lib/service/activity/renderer/comment.ex:38
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7
#: lib/web/templates/email/email_anonymous_activity.html.heex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5
#, elixir-format
msgid "%{profile} has posted an announcement under event %{event}."
msgstr "Chuir %{profile} brath-fios ris an tachartas %{event}."
#, elixir-format
#: lib/service/activity/renderer/comment.ex:24
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1
#, elixir-format
msgid "%{profile} mentionned you in a comment under event %{event}."
msgstr "Thug %{profile} iomradh ort ann am beachd san tachartas %{event}."
#: lib/web/templates/email/email_direct_activity.html.heex:155
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:155
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
msgstr ""
"A bheil thu airson brathan fhaighinn mu ghnìomhachd? S urrainn dhut "
"atharrachadh dè cho tric s a gheibh thu iad no an cur à comas sna "
"%{tag_start}roghainnean%{tag_end} agad."
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:42
#: lib/web/templates/email/email_direct_activity.text.eex:5
#, elixir-format
msgid "Here's your weekly activity recap"
msgstr "Seo dhut ath-shùil air gnìomhachd na seachdaine"
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
#, elixir-format
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}"
msgstr "Brath gnìomhachd airson %{instance}"
#: lib/web/email/activity.ex:126
#, elixir-format
#: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}"
msgstr "Ath-shùil air gnìomhachd %{instance} làitheil"
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:40
#: lib/web/templates/email/email_direct_activity.text.eex:4
#, elixir-format
msgid "Here's your daily activity recap"
msgstr "Seo dhut ath-shùil air gnìomhachd an latha"
#: lib/web/email/activity.ex:133
#, elixir-format
#: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}"
msgstr "Ath-shùil air gnìomhachd %{instance} sheachdaineil"
#, elixir-format
#: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
#, elixir-format
msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "Thug %{profile} beachd ùr fon tachartas %{event} agad."
#, elixir-format
#: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
#, elixir-format
msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "Chuir %{profile} freagairt ùr ris fon tachartas %{event} agad."
#: lib/web/email/activity.ex:46
#, elixir-format
#: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}"
msgstr "Brath-fios dhan tachartas %{event} agad"
#: lib/service/activity/renderer/group.ex:23
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr "Chaidh am buidheann %{group} ùrachadh le %{profile}."
#: lib/service/activity/renderer/post.ex:47
#, elixir-format
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr ""
"Chaidh am post %{post} on bhuidheann %{group} a sguabadh às le %{profile}."
#: lib/service/activity/renderer/post.ex:31
#, elixir-format
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr ""
"Chaidh am post %{post} on bhuidheann %{group} fhoillseachadh le %{profile}."
#: lib/service/activity/renderer/post.ex:39
#, elixir-format
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr "Chaidh am post %{post} on bhuidheann %{group} ùrachadh le %{profile}."
@ -346,133 +346,133 @@ msgstr "Chaidh am post %{post} on bhuidheann %{group} ùrachadh le %{profile}."
## Run "mix gettext.extract" to bring this file up to
## date. Leave "msgstr"s empty as changing them here as no
## effect: edit them in PO (.po) files instead.
#: lib/service/activity/renderer/member.ex:39
#, elixir-format
#: lib/service/activity/renderer/member.ex:39
msgid "%{member} accepted the invitation to join the group %{group}."
msgstr "Ghabh %{member} ris a bhallrachd sa bhuidheann."
#: lib/service/activity/renderer/member.ex:47
#, elixir-format
#: lib/service/activity/renderer/member.ex:47
msgid "%{member} joined the group %{group}."
msgstr "Fhuair %{member} ballrachd sa bhuidheann."
#: lib/service/activity/renderer/member.ex:43
#, elixir-format
#: lib/service/activity/renderer/member.ex:43
msgid "%{member} rejected the invitation to join the group %{group}."
msgstr "Dhiùlt %{member} a bhallrachd sa bhuidheann."
#: lib/service/activity/renderer/member.ex:31
#, elixir-format
#: lib/service/activity/renderer/member.ex:31
msgid "%{member} requested to join the group %{group}."
msgstr "Dhiarr %{member} ballrachd sa bhuidheann."
#: lib/service/activity/renderer/member.ex:35
#, elixir-format
#: lib/service/activity/renderer/member.ex:35
msgid "%{member} was invited by %{profile} to group %{group}."
msgstr "Fhuair %{member} cuireadh o %{profile}."
#: lib/service/activity/renderer/member.ex:51
#, elixir-format
#: lib/service/activity/renderer/member.ex:51
msgid "%{profile} added the member %{member} to group %{group}."
msgstr "Chuir %{profile} am ball %{member} ris."
#: lib/service/activity/renderer/member.ex:55
#, elixir-format
#: lib/service/activity/renderer/member.ex:55
msgid "%{profile} approved the membership request from %{member} for group %{group}."
msgstr "Dhùraich %{profile} am ball %{member}."
#: lib/service/activity/renderer/resource.ex:33
#, elixir-format
#: lib/service/activity/renderer/resource.ex:33
msgid "%{profile} created the folder %{resource} in group %{group}."
msgstr "Chruthaich %{profile} am pasgan %{resource}."
#: lib/service/activity/renderer/resource.ex:69
#, elixir-format
#: lib/service/activity/renderer/resource.ex:69
msgid "%{profile} deleted the folder %{resource} in group %{group}."
msgstr "Sguab %{profile} às am pasgan %{resource}."
#: lib/service/activity/renderer/resource.ex:71
#, elixir-format
#: lib/service/activity/renderer/resource.ex:71
msgid "%{profile} deleted the resource %{resource} in group %{group}."
msgstr "Sguab %{profile} às an goireas %{resource}."
#: lib/service/activity/renderer/member.ex:75
#, elixir-format
#: lib/service/activity/renderer/member.ex:75
msgid "%{profile} excluded member %{member} from the group %{group}."
msgstr "Dhùin %{profile} am ball %{member} a-mach."
#: lib/service/activity/renderer/resource.ex:61
#, elixir-format
#: lib/service/activity/renderer/resource.ex:61
msgid "%{profile} moved the folder %{resource} in group %{group}."
msgstr "Ghluais %{profile} am pasgan %{resource}."
#: lib/service/activity/renderer/resource.ex:63
#, elixir-format
#: lib/service/activity/renderer/resource.ex:63
msgid "%{profile} moved the resource %{resource} in group %{group}."
msgstr "Ghluais %{profile} an goireas %{resource}."
#: lib/service/activity/renderer/member.ex:79
#, elixir-format
#: lib/service/activity/renderer/member.ex:79
msgid "%{profile} quit the group %{group}."
msgstr "Dhfhàg %{profile} am buidheann."
#: lib/service/activity/renderer/member.ex:63
#, elixir-format
#: lib/service/activity/renderer/member.ex:63
msgid "%{profile} rejected the membership request from %{member} for group %{group}."
msgstr ""
"Diùlt %{profile} an t-iarrtas air ballrachd sa buidheann %{group} o "
"%{member}."
#: lib/service/activity/renderer/resource.ex:45
#, elixir-format
#: lib/service/activity/renderer/resource.ex:45
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource} in group %{group}."
msgstr "Thug %{profile} %{resource} air a phasgan %{old_resource_title}."
#: lib/service/activity/renderer/resource.ex:51
#, elixir-format
#: lib/service/activity/renderer/resource.ex:51
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource} in group %{group}."
msgstr "Thug %{profile} %{resource} air a ghoireas %{old_resource_title}."
#: lib/service/activity/renderer/member.ex:71
#, elixir-format
#: lib/service/activity/renderer/member.ex:71
msgid "%{profile} updated the member %{member} in group %{group}."
msgstr "Dhùraich %{profile} am ball %{member}."
#: lib/service/activity/renderer/resource.ex:35
#, elixir-format
#: lib/service/activity/renderer/resource.ex:35
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr "Chruthaich %{profile} an goireas %{resource}."
#: lib/service/activity/renderer/discussion.ex:86
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr ""
"Chuir %{profile} an deasbad %{discussion} sa bhuidheann %{group} san tasg-"
"lann."
#: lib/service/activity/renderer/discussion.ex:26
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr "Chruthaich %{profile} an deasbad %{discussion} sa bhuidheann %{group}."
#: lib/service/activity/renderer/discussion.ex:101
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr "Sguab %{profile} às an deasbad %{discussion} sa bhuidheann %{group}."
#: lib/service/activity/renderer/discussion.ex:56
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr ""
"Thug %{profile} iomradh ort san deasbad %{discussion} sa bhuidheann %{group}."
#: lib/service/activity/renderer/discussion.ex:71
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr ""
"Thug %{profile} ainm ùr air an deasbad %{discussion} sa bhuidheann %{group}."
#: lib/service/activity/renderer/discussion.ex:41
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr "Fhreagair %{profile} dhan deasbad %{discussion} sa bhuidheann %{group}."

View File

@ -1411,8 +1411,8 @@ msgstr ""
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr ""

View File

@ -105,24 +105,24 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr ""
@ -137,7 +137,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr ""
@ -170,33 +170,33 @@ msgid "Registrations are not open"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
@ -216,27 +216,27 @@ msgid "Unable to validate user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr ""
@ -246,37 +246,37 @@ msgid "You may not list groups unless moderator."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr ""
@ -442,12 +442,12 @@ msgid "Post doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr ""
@ -522,13 +522,13 @@ msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr ""
@ -564,7 +564,7 @@ msgid "You can't leave event because you're the only event creator participant"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
@ -579,7 +579,7 @@ msgid "You cannot delete this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr ""
@ -764,12 +764,12 @@ msgid "You need to be logged in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr ""
@ -779,7 +779,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr ""
@ -794,17 +794,17 @@ msgid "You can't attribute this event to this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr ""
@ -829,7 +829,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr ""
@ -845,7 +845,7 @@ msgid "Error while creating resource"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr ""
@ -886,7 +886,7 @@ msgid "Error while creating a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr ""
@ -901,17 +901,17 @@ msgid "Failed to leave the event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr ""
@ -931,7 +931,7 @@ msgid "You are not the comment creator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr ""
@ -956,7 +956,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr ""
@ -971,17 +971,17 @@ msgid "Unknown error while creating event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -996,37 +996,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -407,32 +407,32 @@ msgstr ""
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr ""

View File

@ -1699,8 +1699,8 @@ msgstr "Confirmouse a túa participación no evento %{title}"
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr ""

View File

@ -100,24 +100,24 @@ msgid "Cannot refresh the token"
msgstr "Non puido actualizar o token"
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr "O perfil actual non é membro deste grupo"
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr "O perfil actual non é administrador do grupo seleccionado"
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr "Erro ó gardar os axustes de usuaria"
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr "Grupo non atopado"
@ -133,7 +133,7 @@ msgstr ""
"A autenticación non foi posible, o contrasinal ou o email non son correctos."
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr "Membro non atopado"
@ -166,33 +166,33 @@ msgid "Registrations are not open"
msgstr "O rexistro está pechado"
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr "O contrasinal actual non é válido"
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr "O novo email non semella ser válido"
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr "O novo email ten que ser diferente"
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr "O novo contrasinal ten que ser diferente"
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr "O contrasinal escrito non é válido"
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
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 "
@ -214,27 +214,27 @@ msgid "Unable to validate user"
msgstr "Non se puido validar a usuaria"
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr "A usuaria xa está desactivada"
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr "A usuaria solicitada non está conectada"
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr "Xa es membro deste grupo"
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr "Non podes deixar este grupo porque es a única administradora"
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr "Non podes unirte a este grupo"
@ -244,37 +244,37 @@ msgid "You may not list groups unless moderator."
msgstr "Non podes facer listas de grupos porque non es moderadora."
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr "Tes que estar conectada para poder cambiar o email"
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr "Tes que estar conectada para poder cambiar o contrasinal"
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr "Tes que estar conectada para poder eleminar un grupo"
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr "Tes que estar conectada para poder eliminar a conta"
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr "Tes que estar conectada para poder unirte a un grupo"
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr "Tes que estar conectada para poder deixar un grupo"
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr "Tes que estar conectada para poder actualizar un grupo"
@ -440,12 +440,12 @@ msgid "Post doesn't exist"
msgstr "Non existe a publicación"
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr "O perfil convidado non existe"
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr "O perfil xa é membro deste grupo"
@ -520,13 +520,13 @@ msgid "You are already a participant of this event"
msgstr "Xa es unha participante neste evento"
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr "Non es membro deste grupo"
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr "Non es moderadora ou administradora deste grupo"
@ -563,7 +563,7 @@ msgstr ""
"Non podes saír do evento porque es a única creadora do evento que participa"
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
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 "
@ -580,7 +580,7 @@ msgid "You cannot delete this event"
msgstr "Non podes eliminar este evento"
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr "Non podes convidar a este grupo"
@ -774,12 +774,12 @@ msgid "You need to be logged in"
msgstr "Tes que estar conectada"
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr "Non podes aceptar este convite con este perfil."
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr "Non podes rexeitar este convite con este perfil."
@ -789,7 +789,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr "O ficheiro non ten un tipo MIME permitido."
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr "O perfil non é administrador do grupo"
@ -804,17 +804,17 @@ msgid "You can't attribute this event to this profile."
msgstr "Non podes atribuír este evento a este perfil."
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr "O convite non existe."
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr "Este membro xa foi rexeitado."
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr "Non tes permiso para eliminar este membro."
@ -839,7 +839,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr "O ID do perfil proporcionado non é o perfil anónimo"
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr "A imaxe proporcionada é demasiado grande (mb)"
@ -855,7 +855,7 @@ msgid "Error while creating resource"
msgstr "Erro ao crear o recurso"
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr "O token de activación non é válido"
@ -901,7 +901,7 @@ msgid "Error while creating a discussion"
msgstr "Erro ao crear o recurso"
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr "Erro ó actualizar a denuncia"
@ -916,17 +916,17 @@ msgid "Failed to leave the event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr "Non se puido validar a usuaria"
@ -946,7 +946,7 @@ msgid "You are not the comment creator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr ""
@ -971,7 +971,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr ""
@ -986,17 +986,17 @@ msgid "Unknown error while creating event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -1011,37 +1011,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr "Tes que estar conectada para poder unirte a un grupo"
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr "Tes que estar conectada para poder unirte a un grupo"
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr "Tes que estar conectada para poder actualizar un grupo"
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr "Non tes permiso para eliminar este membro."
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -24,443 +24,443 @@ msgstr ""
## Run "mix gettext.extract" to bring this file up to
## date. Leave "msgstr"s empty as changing them here as no
## effect: edit them in PO (.po) files instead.
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:19
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
#, elixir-format
msgid "%{member} accepted the invitation to join the group."
msgstr "%{member} su prihvatili poziv u grupu."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:26
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
#, elixir-format
msgid "%{member} rejected the invitation to join the group."
msgstr "%{member} su odbili poziv u grupu."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:4
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
#, elixir-format
msgid "%{member} requested to join the group."
msgstr "%{member} bi se voljeli pridružiti grupi."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:11
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
#, elixir-format
msgid "%{member} was invited by %{profile}."
msgstr "%{member} su pozvani od %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:40
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
#, elixir-format
msgid "%{profile} added the member %{member}."
msgstr "%{profile} su dodali %{member}."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:46
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#, elixir-format
msgid "%{profile} archived the discussion %{discussion}."
msgstr "%{profile} su arhivirali razgovor %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:4
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#, elixir-format
msgid "%{profile} created the discussion %{discussion}."
msgstr "%{profile} su stvorili razgovor %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:5
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
#, elixir-format
msgid "%{profile} created the folder %{resource}."
msgstr "%{profile} su stvorili mapu %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_group_activity_item.html.heex:4
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
#, elixir-format
msgid "%{profile} created the group %{group}."
msgstr "%{profile} su stvorili grupu %{group}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:20
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
#, elixir-format
msgid "%{profile} created the resource %{resource}."
msgstr "%{profile} su stvorili resurs %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:60
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#, elixir-format
msgid "%{profile} deleted the discussion %{discussion}."
msgstr "%{profile} su izbrisali razgovor %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:103
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
#, elixir-format
msgid "%{profile} deleted the folder %{resource}."
msgstr "%{profile} su izbrisali mapu %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:111
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
#, elixir-format
msgid "%{profile} deleted the resource %{resource}."
msgstr "%{profile} su izbrisali resurs %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:56
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
#, elixir-format
msgid "%{profile} excluded member %{member}."
msgstr "%{profile} su isključili člana %{member}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:71
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
#, elixir-format
msgid "%{profile} moved the folder %{resource}."
msgstr "%{profile} su premjestili mapu %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
#, elixir-format
msgid "%{profile} moved the resource %{resource}."
msgstr "%{profile} su premjestili resurs %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:64
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
#, elixir-format
msgid "%{profile} quit the group."
msgstr "%{profile} su izašli iz grupe."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:32
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#, elixir-format
msgid "%{profile} renamed the discussion %{discussion}."
msgstr "%{profile} su preimenovali razgovor %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:37
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
#, elixir-format
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
msgstr "%{profile} su preimenovali mapu iz %{old_resource_title} u %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:53
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
#, elixir-format
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
msgstr ""
"%{profile} su preimenovali resurs iz %{old_resource_title} u %{resource}."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:18
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#, elixir-format
msgid "%{profile} replied to the discussion %{discussion}."
msgstr "%{profile} su odgovorili na razgovor %{discussion}."
#, elixir-format
#: lib/web/templates/email/activity/_group_activity_item.html.heex:19
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
#, elixir-format
msgid "%{profile} updated the group %{group}."
msgstr "%{profile} su ažurirali grupu %{group}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:48
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
#, elixir-format
msgid "%{profile} updated the member %{member}."
msgstr "%{profile} su ažurirali člana %{member}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:23
#: lib/web/templates/email/activity/_event_activity_item.html.heex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1
#, elixir-format
msgid "The event %{event} was created by %{profile}."
msgstr "%{profile} su stvorili događaj %{event}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:43
#: lib/web/templates/email/activity/_event_activity_item.html.heex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13
#, elixir-format
msgid "The event %{event} was deleted by %{profile}."
msgstr "%{profile} su izbrisali događaj %{event}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:33
#: lib/web/templates/email/activity/_event_activity_item.html.heex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7
#, elixir-format
msgid "The event %{event} was updated by %{profile}."
msgstr "%{profile} su ažurirali događaj %{event}."
#, elixir-format
#: lib/web/templates/email/activity/_post_activity_item.html.heex:4
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
#, elixir-format
msgid "The post %{post} was created by %{profile}."
msgstr "Objavu %{post} su napravili %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_post_activity_item.html.heex:34
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
#, elixir-format
msgid "The post %{post} was deleted by %{profile}."
msgstr "Objavu %{post} su izbrisali %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_post_activity_item.html.heex:19
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
#, elixir-format
msgid "The post %{post} was updated by %{profile}."
msgstr "Objavu %{post} su ažurirali %{profile}."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:33
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
#, elixir-format
msgid "%{member} joined the group."
msgstr "%{member} su se pridružili grupi."
#, elixir-format
#: lib/service/activity/renderer/event.ex:63
#: lib/web/templates/email/activity/_event_activity_item.html.heex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25
#, elixir-format
msgid "%{profile} posted a comment on the event %{event}."
msgstr "%{profile} su objavili komentar na događaj %{event}."
#, elixir-format
#: lib/service/activity/renderer/event.ex:54
#: lib/web/templates/email/activity/_event_activity_item.html.heex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19
#, elixir-format
msgid "%{profile} replied to a comment on the event %{event}."
msgstr "%{profile} su odgovorili na komentar događaja %{event}."
#: lib/web/templates/email/email_direct_activity.text.eex:27
#, elixir-format
#: lib/web/templates/email/email_direct_activity.text.eex:27
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
msgstr ""
"Ne želite dobivati obavijesti o aktivnosti? Možete promjeniti učestalost ili "
"ih potpuno isključiti u svojim postavkama."
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:135
#: lib/web/templates/email/email_direct_activity.text.eex:23
#, elixir-format
msgid "View one more activity"
msgid_plural "View %{count} more activities"
msgstr[0] "Prikaži još jednu aktivnost"
msgstr[1] "Prikaži još %{count} aktivnosti"
msgstr[2] "Prikaži još %{count} aktivnosti"
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:44
#: lib/web/templates/email/email_direct_activity.html.heex:46 lib/web/templates/email/email_direct_activity.text.eex:6
#: lib/web/templates/email/email_direct_activity.text.eex:7
#, elixir-format
msgid "There has been an activity!"
msgid_plural "There has been some activity!"
msgstr[0] "Aktivnost!"
msgstr[1] "Aktivnosti!"
msgstr[2] "Aktivnosti!"
#: lib/service/activity/renderer/renderer.ex:46
#, elixir-format
#: lib/service/activity/renderer/renderer.ex:46
msgid "Activity on %{instance}"
msgstr "Aktivnost u %{instance}"
#, elixir-format
#: lib/service/activity/renderer/comment.ex:38
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7
#: lib/web/templates/email/email_anonymous_activity.html.heex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5
#, elixir-format
msgid "%{profile} has posted an announcement under event %{event}."
msgstr "%{profile} su objavili najavu za događaj %{event}."
#, elixir-format
#: lib/service/activity/renderer/comment.ex:24
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1
#, elixir-format
msgid "%{profile} mentionned you in a comment under event %{event}."
msgstr "%{profile} su vas spomenuli u komentaru događaja %{event}."
#: lib/web/templates/email/email_direct_activity.html.heex:155
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:155
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
msgstr ""
"Ne želite dobivati obavijesti o aktivnosti? Možete promijeniti učestalost "
"ili ih iskljulčiti u %{tag_start}svojim postavkama%{tag_end}."
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:42
#: lib/web/templates/email/email_direct_activity.text.eex:5
#, elixir-format
msgid "Here's your weekly activity recap"
msgstr "Ovaj tjedan, ukratko"
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
#, elixir-format
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}"
msgstr "Obavijest o aktivnosti za %{instance}"
#: lib/web/email/activity.ex:126
#, elixir-format
#: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}"
msgstr "Dnevni sadržaj za %{instance}"
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:40
#: lib/web/templates/email/email_direct_activity.text.eex:4
#, elixir-format
msgid "Here's your daily activity recap"
msgstr "Današnja aktivnost, ukratko"
#: lib/web/email/activity.ex:133
#, elixir-format
#: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}"
msgstr "Kratki sadržaj tjedna za %{instance}"
#, elixir-format
#: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
#, elixir-format
msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "%{profile} su objavili novi komentar na vaš događaj %{event}."
#, elixir-format
#: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
#, elixir-format
msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "%{profile} su objavili novi odgovor na vaš događaj %{event}."
#: lib/web/email/activity.ex:46
#, elixir-format
#: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}"
msgstr "Najava za vaš događaj %{event}"
#: lib/service/activity/renderer/group.ex:23
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr "%{profile} su ažurirali grupu %{group}."
#: lib/service/activity/renderer/post.ex:47
#, elixir-format
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr "Objavu %{post} iz grupe %{group} su izbrisali %{profile}."
#: lib/service/activity/renderer/post.ex:31
#, elixir-format
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr "Objavu %{post} iz grupe %{group} su objavili %{profile}."
#: lib/service/activity/renderer/post.ex:39
#, elixir-format
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr "Objavu %{post} iz grupe %{group} su ažurirali %{profile}."
#: lib/service/activity/renderer/member.ex:39
#, elixir-format
#: lib/service/activity/renderer/member.ex:39
msgid "%{member} accepted the invitation to join the group %{group}."
msgstr "%{member} su prihvatili poziv da se pridruže grupi %{group}."
#: lib/service/activity/renderer/member.ex:47
#, elixir-format
#: lib/service/activity/renderer/member.ex:47
msgid "%{member} joined the group %{group}."
msgstr "%{member} su se pridružili grupi %{group}."
#: lib/service/activity/renderer/member.ex:43
#, elixir-format
#: lib/service/activity/renderer/member.ex:43
msgid "%{member} rejected the invitation to join the group %{group}."
msgstr "%{member} su odbili poziv da se pridruže grupi %{group}."
#: lib/service/activity/renderer/member.ex:31
#, elixir-format
#: lib/service/activity/renderer/member.ex:31
msgid "%{member} requested to join the group %{group}."
msgstr "%{member} su poslali zahtjev da se pridruže grupi %{group}."
#: lib/service/activity/renderer/member.ex:35
#, elixir-format
#: lib/service/activity/renderer/member.ex:35
msgid "%{member} was invited by %{profile} to group %{group}."
msgstr "%{profile} su pozvali %{member} u grupu %{group}."
#: lib/service/activity/renderer/member.ex:51
#, elixir-format
#: lib/service/activity/renderer/member.ex:51
msgid "%{profile} added the member %{member} to group %{group}."
msgstr "%{profile} su dodali %{member} u grupu %{group}."
#: lib/service/activity/renderer/member.ex:55
#, elixir-format
#: lib/service/activity/renderer/member.ex:55
msgid "%{profile} approved the membership request from %{member} for group %{group}."
msgstr ""
"%{profile} su odobrili zahtjev za članstvo korisniku %{member} za grupu "
"%{group}."
#: lib/service/activity/renderer/resource.ex:33
#, elixir-format
#: lib/service/activity/renderer/resource.ex:33
msgid "%{profile} created the folder %{resource} in group %{group}."
msgstr "%{profile} su stvorili mapu %{resource} u grupi %{group}."
#: lib/service/activity/renderer/resource.ex:69
#, elixir-format
#: lib/service/activity/renderer/resource.ex:69
msgid "%{profile} deleted the folder %{resource} in group %{group}."
msgstr "%{profile} su izbrisali mapu %{resource} u grupi %{group}."
#: lib/service/activity/renderer/resource.ex:71
#, elixir-format
#: lib/service/activity/renderer/resource.ex:71
msgid "%{profile} deleted the resource %{resource} in group %{group}."
msgstr "%{profile} su izbrisali resurs %{resource} u grupi %{group}."
#: lib/service/activity/renderer/member.ex:75
#, elixir-format
#: lib/service/activity/renderer/member.ex:75
msgid "%{profile} excluded member %{member} from the group %{group}."
msgstr "%{profile} su isključili člana %{member} iz grupe %{group}."
#: lib/service/activity/renderer/resource.ex:61
#, elixir-format
#: lib/service/activity/renderer/resource.ex:61
msgid "%{profile} moved the folder %{resource} in group %{group}."
msgstr "%{profile} su premjestili mapu %{resource} u grupi %{group}."
#: lib/service/activity/renderer/resource.ex:63
#, elixir-format
#: lib/service/activity/renderer/resource.ex:63
msgid "%{profile} moved the resource %{resource} in group %{group}."
msgstr "%{profile} su premjestili resurs %{resource} u grupi %{group}."
#: lib/service/activity/renderer/member.ex:79
#, elixir-format
#: lib/service/activity/renderer/member.ex:79
msgid "%{profile} quit the group %{group}."
msgstr "%{profile} su izašli iz grupe %{group}."
#: lib/service/activity/renderer/member.ex:63
#, elixir-format
#: lib/service/activity/renderer/member.ex:63
msgid "%{profile} rejected the membership request from %{member} for group %{group}."
msgstr ""
"%{profile} su odbili zahtjev za članstvo korisniku %{member} za grupu "
"%{group}."
#: lib/service/activity/renderer/resource.ex:45
#, elixir-format
#: lib/service/activity/renderer/resource.ex:45
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource} in group %{group}."
msgstr ""
"%{profile} su preimenovali mapu iz %{old_resource_title} u %{resource} u "
"grupi %{group}."
#: lib/service/activity/renderer/resource.ex:51
#, elixir-format
#: lib/service/activity/renderer/resource.ex:51
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource} in group %{group}."
msgstr ""
"%{profile} su preimenovali resurs iz %{old_resource_title} u %{resource} u "
"grupi %{group}."
#: lib/service/activity/renderer/member.ex:71
#, elixir-format
#: lib/service/activity/renderer/member.ex:71
msgid "%{profile} updated the member %{member} in group %{group}."
msgstr "%{profile} su ažurirali člana %{member} u grupi %{group}."
#: lib/service/activity/renderer/resource.ex:35
#, elixir-format
#: lib/service/activity/renderer/resource.ex:35
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr "%{profile} su stvorili resurs %{resource} u grupi %{group}."
#: lib/service/activity/renderer/discussion.ex:86
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr "%{profile} su arhivirali razgovor %{discussion} u grupi %{group}."
#: lib/service/activity/renderer/discussion.ex:26
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr "%{profile} su stvorili razgovor %{discussion} u grupi %{group}."
#: lib/service/activity/renderer/discussion.ex:101
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr "%{profile} su izbrisali razgovor %{discussion} u grupi %{group}."
#: lib/service/activity/renderer/discussion.ex:56
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr "%{profile} su vas spomenuli u razgovoru %{discussion} u grupi %{group}."
#: lib/service/activity/renderer/discussion.ex:71
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr "%{profile} su preimenovali razgovor %{discussion} u grupi %{group}."
#: lib/service/activity/renderer/discussion.ex:41
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr "%{profile} su odgovorili na razgovor %{discussion} u grupi %{group}."

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -18,462 +18,462 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.8.1\n"
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:19
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
#, elixir-format
msgid "%{member} accepted the invitation to join the group."
msgstr "%{member} elfogadta a meghívást a csoporthoz való csatlakozáshoz."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:26
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
#, elixir-format
msgid "%{member} rejected the invitation to join the group."
msgstr ""
"%{member} visszautasította a meghívást a csoporthoz való csatlakozáshoz."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:4
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
#, elixir-format
msgid "%{member} requested to join the group."
msgstr "%{member} kérte a csoporthoz való csatlakozást."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:11
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
#, elixir-format
msgid "%{member} was invited by %{profile}."
msgstr "%{member} meg lett hívva %{profile} által."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:40
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
#, elixir-format
msgid "%{profile} added the member %{member}."
msgstr "%{profile} hozzáadta %{member} tagot."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:46
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
#, elixir-format
msgid "%{profile} archived the discussion %{discussion}."
msgstr "%{profile} archiválta a(z) %{discussion} megbeszélést."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:4
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
#, elixir-format
msgid "%{profile} created the discussion %{discussion}."
msgstr "%{profile} létrehozta a(z) %{discussion} megbeszélést."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:5
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
#, elixir-format
msgid "%{profile} created the folder %{resource}."
msgstr "%{profile} létrehozta a(z) %{resource} mappát."
#, elixir-format
#: lib/web/templates/email/activity/_group_activity_item.html.heex:4
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
#, elixir-format
msgid "%{profile} created the group %{group}."
msgstr "%{profile} létrehozta a(z) %{group} csoportot."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:20
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
#, elixir-format
msgid "%{profile} created the resource %{resource}."
msgstr "%{profile} létrehozta a(z) %{resource} erőforrást."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:60
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
#, elixir-format
msgid "%{profile} deleted the discussion %{discussion}."
msgstr "%{profile} törölte a(z) %{discussion} megbeszélést."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:103
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
#, elixir-format
msgid "%{profile} deleted the folder %{resource}."
msgstr "%{profile} törölte a(z) %{resource} mappát."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:111
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
#, elixir-format
msgid "%{profile} deleted the resource %{resource}."
msgstr "%{profile} törölte a(z) %{resource} erőforrást."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:56
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
#, elixir-format
msgid "%{profile} excluded member %{member}."
msgstr "%{profile} kizárta %{member} tagot."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:71
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
#, elixir-format
msgid "%{profile} moved the folder %{resource}."
msgstr "%{profile} áthelyezte a(z) %{resource} mappát."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:86
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
#, elixir-format
msgid "%{profile} moved the resource %{resource}."
msgstr "%{profile} áthelyezte a(z) %{resource} erőforrást."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:64
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
#, elixir-format
msgid "%{profile} quit the group."
msgstr "%{profile} kilépett a csoportból."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:32
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
#, elixir-format
msgid "%{profile} renamed the discussion %{discussion}."
msgstr "%{profile} átnevezte a(z) %{discussion} megbeszélést."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:37
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
#, elixir-format
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
msgstr ""
"%{profile} átnevezte a mappát %{old_resource_title} névről %{resource} névre."
#, elixir-format
#: lib/web/templates/email/activity/_resource_activity_item.html.heex:53
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
#, elixir-format
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
msgstr ""
"%{profile} átnevezte az erőforrást %{old_resource_title} névről %{resource} "
"névre."
#, elixir-format
#: lib/web/templates/email/activity/_discussion_activity_item.html.heex:18
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
#, elixir-format
msgid "%{profile} replied to the discussion %{discussion}."
msgstr "%{profile} válaszolt a(z) %{discussion} megbeszélésre."
#, elixir-format
#: lib/web/templates/email/activity/_group_activity_item.html.heex:19
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
#, elixir-format
msgid "%{profile} updated the group %{group}."
msgstr "%{profile} frissítette a(z) %{group} csoportot."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:48
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
#, elixir-format
msgid "%{profile} updated the member %{member}."
msgstr "%{profile} frissítette %{member} tagot."
#, elixir-format
#: lib/service/activity/renderer/event.ex:23
#: lib/web/templates/email/activity/_event_activity_item.html.heex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1
#, elixir-format
msgid "The event %{event} was created by %{profile}."
msgstr "A(z) %{event} eseményt %{profile} hozta létre."
#, elixir-format
#: lib/service/activity/renderer/event.ex:43
#: lib/web/templates/email/activity/_event_activity_item.html.heex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13
#, elixir-format
msgid "The event %{event} was deleted by %{profile}."
msgstr "A(z) %{event} eseményt %{profile} törölte."
#, elixir-format
#: lib/service/activity/renderer/event.ex:33
#: lib/web/templates/email/activity/_event_activity_item.html.heex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7
#, elixir-format
msgid "The event %{event} was updated by %{profile}."
msgstr "A(z) %{event} eseményt %{profile} frissítette."
#, elixir-format
#: lib/web/templates/email/activity/_post_activity_item.html.heex:4
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
#, elixir-format
msgid "The post %{post} was created by %{profile}."
msgstr "A(z) %{post} bejegyzést %{profile} hozta létre."
#, elixir-format
#: lib/web/templates/email/activity/_post_activity_item.html.heex:34
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
#, elixir-format
msgid "The post %{post} was deleted by %{profile}."
msgstr "A(z) %{post} bejegyzést %{profile} törölte."
#, elixir-format
#: lib/web/templates/email/activity/_post_activity_item.html.heex:19
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
#, elixir-format
msgid "The post %{post} was updated by %{profile}."
msgstr "A(z) %{post} bejegyzést %{profile} frissítette."
#, elixir-format
#: lib/web/templates/email/activity/_member_activity_item.html.heex:33
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
#, elixir-format
msgid "%{member} joined the group."
msgstr "%{member} csatlakozott a csoporthoz."
#, elixir-format
#: lib/service/activity/renderer/event.ex:63
#: lib/web/templates/email/activity/_event_activity_item.html.heex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25
#, elixir-format
msgid "%{profile} posted a comment on the event %{event}."
msgstr "%{profile} hozzászólást küldött a(z) %{event} eseményhez."
#, elixir-format
#: lib/service/activity/renderer/event.ex:54
#: lib/web/templates/email/activity/_event_activity_item.html.heex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19
#, elixir-format
msgid "%{profile} replied to a comment on the event %{event}."
msgstr "%{profile} válaszolt a(z) %{event} esemény egyik hozzászólására."
#: lib/web/templates/email/email_direct_activity.text.eex:27
#, elixir-format
#: lib/web/templates/email/email_direct_activity.text.eex:27
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
msgstr ""
"Nem szeretne tevékenységértesítéseket kapni? Megváltoztathatja a "
"gyakoriságot vagy letilthatja azokat a beállításaiban."
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:135
#: lib/web/templates/email/email_direct_activity.text.eex:23
#, elixir-format
msgid "View one more activity"
msgid_plural "View %{count} more activities"
msgstr[0] "Még egy tevékenység megtekintése"
msgstr[1] "Még %{count} tevékenység megtekintése"
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:44
#: lib/web/templates/email/email_direct_activity.html.heex:46 lib/web/templates/email/email_direct_activity.text.eex:6
#: lib/web/templates/email/email_direct_activity.text.eex:7
#, elixir-format
msgid "There has been an activity!"
msgid_plural "There has been some activity!"
msgstr[0] "Történt egy tevékenység!"
msgstr[1] "Történt néhány tevékenység!"
#: lib/service/activity/renderer/renderer.ex:46
#, elixir-format
#: lib/service/activity/renderer/renderer.ex:46
msgid "Activity on %{instance}"
msgstr "Tevékenység a(z) %{instance} példányon"
#, elixir-format
#: lib/service/activity/renderer/comment.ex:38
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7
#: lib/web/templates/email/email_anonymous_activity.html.heex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5
#, elixir-format
msgid "%{profile} has posted an announcement under event %{event}."
msgstr "%{profile} közleményt küldött a(z) %{event} esemény alá."
#, elixir-format
#: lib/service/activity/renderer/comment.ex:24
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1
#, elixir-format
msgid "%{profile} mentionned you in a comment under event %{event}."
msgstr ""
"%{profile} megemlítette Önt a(z) %{event} esemény alatti egyik "
"hozzászólásban."
#: lib/web/templates/email/email_direct_activity.html.heex:155
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:155
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
msgstr ""
"Nem szeretne tevékenységértesítéseket kapni? Megváltoztathatja a "
"gyakoriságot vagy letilthatja azokat a %{tag_start}beállításaiban%{tag_end}."
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:42
#: lib/web/templates/email/email_direct_activity.text.eex:5
#, elixir-format
msgid "Here's your weekly activity recap"
msgstr "Itt az Ön heti tevékenységösszegzése"
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
#, elixir-format
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
msgid "Activity notification for %{instance}"
msgstr "Tevékenységértesítés a(z) %{instance} példányhoz"
#: lib/web/email/activity.ex:126
#, elixir-format
#: lib/web/email/activity.ex:126
msgid "Daily activity recap for %{instance}"
msgstr "Napi tevékenységösszegzés a(z) %{instance} példányhoz"
#, elixir-format
#: lib/web/templates/email/email_direct_activity.html.heex:40
#: lib/web/templates/email/email_direct_activity.text.eex:4
#, elixir-format
msgid "Here's your daily activity recap"
msgstr "Itt az Ön napi tevékenységösszegzése"
#: lib/web/email/activity.ex:133
#, elixir-format
#: lib/web/email/activity.ex:133
msgid "Weekly activity recap for %{instance}"
msgstr "Heti tevékenységösszegzés a(z) %{instance} példányhoz"
#, elixir-format
#: lib/service/activity/renderer/comment.ex:66
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
#, elixir-format
msgid "%{profile} has posted a new comment under your event %{event}."
msgstr "%{profile} új hozzászólást küldött az Ön %{event} eseménye alá."
#, elixir-format
#: lib/service/activity/renderer/comment.ex:53
#: lib/web/templates/email/activity/_comment_activity_item.html.heex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
#, elixir-format
msgid "%{profile} has posted a new reply under your event %{event}."
msgstr "%{profile} új választ küldött az Ön %{event} eseménye alá."
#: lib/web/email/activity.ex:46
#, elixir-format
#: lib/web/email/activity.ex:46
msgid "Announcement for your event %{event}"
msgstr "Közlemény az Ön %{event} eseményéhez"
#: lib/service/activity/renderer/group.ex:23
#, elixir-format
#: lib/service/activity/renderer/group.ex:23
msgid "The group %{group} was updated by %{profile}."
msgstr "A(z) %{group} csoportot %{profile} frissítette."
#: lib/service/activity/renderer/post.ex:47
#, elixir-format
#: lib/service/activity/renderer/post.ex:47
msgid "The post %{post} from group %{group} was deleted by %{profile}."
msgstr "A(z) %{post} bejegyzést a(z) %{group} csoportból %{profile} törölte."
#: lib/service/activity/renderer/post.ex:31
#, elixir-format
#: lib/service/activity/renderer/post.ex:31
msgid "The post %{post} from group %{group} was published by %{profile}."
msgstr "A(z) %{post} bejegyzést a(z) %{group} csoportból %{profile} közzétette."
#: lib/service/activity/renderer/post.ex:39
#, elixir-format
#: lib/service/activity/renderer/post.ex:39
msgid "The post %{post} from group %{group} was updated by %{profile}."
msgstr ""
"A(z) %{post} bejegyzést a(z) %{group} csoportból %{profile} frissítette."
#: lib/service/activity/renderer/member.ex:39
#, elixir-format
#: lib/service/activity/renderer/member.ex:39
msgid "%{member} accepted the invitation to join the group %{group}."
msgstr ""
"%{member} elfogadta a meghívást a(z) %{group} csoporthoz való csatlakozáshoz."
#: lib/service/activity/renderer/member.ex:47
#, elixir-format
#: lib/service/activity/renderer/member.ex:47
msgid "%{member} joined the group %{group}."
msgstr "%{member} csatlakozott a(z) %{group} csoporthoz."
#: lib/service/activity/renderer/member.ex:43
#, elixir-format
#: lib/service/activity/renderer/member.ex:43
msgid "%{member} rejected the invitation to join the group %{group}."
msgstr ""
"%{member} visszautasította a meghívást a(z) %{group} csoporthoz való "
"csatlakozáshoz."
#: lib/service/activity/renderer/member.ex:31
#, elixir-format
#: lib/service/activity/renderer/member.ex:31
msgid "%{member} requested to join the group %{group}."
msgstr "%{member} kérte a(z) %{group} csoporthoz való csatlakozást."
#: lib/service/activity/renderer/member.ex:35
#, elixir-format
#: lib/service/activity/renderer/member.ex:35
msgid "%{member} was invited by %{profile} to group %{group}."
msgstr "%{member} meg lett hívva %{profile} által a(z) %{group} csoportba."
#: lib/service/activity/renderer/member.ex:51
#, elixir-format
#: lib/service/activity/renderer/member.ex:51
msgid "%{profile} added the member %{member} to group %{group}."
msgstr "%{profile} hozzáadta %{member} tagot a(z) %{group} csoporthoz."
#: lib/service/activity/renderer/member.ex:55
#, elixir-format
#: lib/service/activity/renderer/member.ex:55
msgid "%{profile} approved the membership request from %{member} for group %{group}."
msgstr ""
"%{profile} jóváhagyta %{member} tagsági kérését a(z) %{group} csoportnál."
#: lib/service/activity/renderer/resource.ex:33
#, elixir-format
#: lib/service/activity/renderer/resource.ex:33
msgid "%{profile} created the folder %{resource} in group %{group}."
msgstr "%{profile} létrehozta a(z) %{resource} mappát a(z) %{group} csoportban."
#: lib/service/activity/renderer/resource.ex:69
#, elixir-format
#: lib/service/activity/renderer/resource.ex:69
msgid "%{profile} deleted the folder %{resource} in group %{group}."
msgstr "%{profile} törölte a(z) %{resource} mappát a(z) %{group} csoportban."
#: lib/service/activity/renderer/resource.ex:71
#, elixir-format
#: lib/service/activity/renderer/resource.ex:71
msgid "%{profile} deleted the resource %{resource} in group %{group}."
msgstr ""
"%{profile} törölte a(z) %{resource} erőforrást a(z) %{group} csoportban."
#: lib/service/activity/renderer/member.ex:75
#, elixir-format
#: lib/service/activity/renderer/member.ex:75
msgid "%{profile} excluded member %{member} from the group %{group}."
msgstr "%{profile} kizárta %{member} tagot a(z) %{group} csoportból."
#: lib/service/activity/renderer/resource.ex:61
#, elixir-format
#: lib/service/activity/renderer/resource.ex:61
msgid "%{profile} moved the folder %{resource} in group %{group}."
msgstr "%{profile} áthelyezte a(z) %{resource} mappát a(z) %{group} csoportban."
#: lib/service/activity/renderer/resource.ex:63
#, elixir-format
#: lib/service/activity/renderer/resource.ex:63
msgid "%{profile} moved the resource %{resource} in group %{group}."
msgstr ""
"%{profile} áthelyezte a(z) %{resource} erőforrást a(z) %{group} csoportban."
#: lib/service/activity/renderer/member.ex:79
#, elixir-format
#: lib/service/activity/renderer/member.ex:79
msgid "%{profile} quit the group %{group}."
msgstr "%{profile} kilépett a(z) %{group} csoportból."
#: lib/service/activity/renderer/member.ex:63
#, elixir-format
#: lib/service/activity/renderer/member.ex:63
msgid "%{profile} rejected the membership request from %{member} for group %{group}."
msgstr ""
"%{profile} visszautasította %{member} tagsági kérését a(z) %{group} "
"csoportnál."
#: lib/service/activity/renderer/resource.ex:45
#, elixir-format
#: lib/service/activity/renderer/resource.ex:45
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource} in group %{group}."
msgstr ""
"%{profile} átnevezte a mappát %{old_resource_title} névről %{resource} névre "
"a(z) %{group} csoportban."
#: lib/service/activity/renderer/resource.ex:51
#, elixir-format
#: lib/service/activity/renderer/resource.ex:51
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource} in group %{group}."
msgstr ""
"%{profile} átnevezte az erőforrást %{old_resource_title} névről %{resource} "
"névre a(z) %{group} csoportban."
#: lib/service/activity/renderer/member.ex:71
#, elixir-format
#: lib/service/activity/renderer/member.ex:71
msgid "%{profile} updated the member %{member} in group %{group}."
msgstr "%{profile} frissítette %{member} tagot a(z) %{group} csoportban."
#: lib/service/activity/renderer/resource.ex:35
#, elixir-format
#: lib/service/activity/renderer/resource.ex:35
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr ""
"%{profile} létrehozta a(z) %{resource} erőforrást a(z) %{group} csoportban."
#: lib/service/activity/renderer/discussion.ex:86
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr ""
"%{profile} archiválta a(z) %{discussion} megbeszélést a(z) %{group} "
"csoportban."
#: lib/service/activity/renderer/discussion.ex:26
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr ""
"%{profile} létrehozta a(z) %{discussion} megbeszélést a(z) %{group} "
"csoportban."
#: lib/service/activity/renderer/discussion.ex:101
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr ""
"%{profile} törölte a(z) %{discussion} megbeszélést a(z) %{group} csoportban."
#: lib/service/activity/renderer/discussion.ex:56
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr ""
"%{profile} megemlítette Önt a(z) %{discussion} megbeszélésben a(z) %{group} "
"csoportban."
#: lib/service/activity/renderer/discussion.ex:71
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr ""
"%{profile} átnevezte a(z) %{discussion} megbeszélést a(z) %{group} "
"csoportban."
#: lib/service/activity/renderer/discussion.ex:41
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr ""
"%{profile} válaszolt a(z) %{discussion} megbeszélésre a(z) %{group} "

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -426,32 +426,32 @@ msgstr ""
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr ""

View File

@ -1436,8 +1436,8 @@ msgstr ""
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr ""

View File

@ -94,24 +94,24 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr "Kelompok tidak ditemukan"
@ -126,7 +126,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr ""
@ -159,33 +159,33 @@ msgid "Registrations are not open"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
@ -205,27 +205,27 @@ msgid "Unable to validate user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr ""
@ -235,37 +235,37 @@ msgid "You may not list groups unless moderator."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr ""
@ -431,12 +431,12 @@ msgid "Post doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr ""
@ -511,13 +511,13 @@ msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr ""
@ -553,7 +553,7 @@ msgid "You can't leave event because you're the only event creator participant"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
@ -568,7 +568,7 @@ msgid "You cannot delete this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr ""
@ -753,12 +753,12 @@ msgid "You need to be logged in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr ""
@ -768,7 +768,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr ""
@ -783,17 +783,17 @@ msgid "You can't attribute this event to this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr ""
@ -818,7 +818,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr ""
@ -834,7 +834,7 @@ msgid "Error while creating resource"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr ""
@ -875,7 +875,7 @@ msgid "Error while creating a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr ""
@ -890,17 +890,17 @@ msgid "Failed to leave the event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr ""
@ -920,7 +920,7 @@ msgid "You are not the comment creator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr ""
@ -945,7 +945,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr ""
@ -960,17 +960,17 @@ msgid "Unknown error while creating event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -985,37 +985,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -407,32 +407,32 @@ msgstr ""
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr ""

View File

@ -1740,8 +1740,8 @@ msgstr "La tua partecipazione all'evento %{title} è stata confermata"
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr ""

View File

@ -100,24 +100,24 @@ msgid "Cannot refresh the token"
msgstr "Il token non può essere aggiornato"
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr "Il profilo corrente non è membro di questo gruppo"
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr "Il profilo corrente non è amministratore del gruppo selezionato"
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr "Errore nel salvare le preferenze utente"
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr "Gruppo non trovato"
@ -132,7 +132,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "Impossibile autenticarsi: email e/o password non validi."
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr "Membro non trovato"
@ -165,33 +165,33 @@ msgid "Registrations are not open"
msgstr "Le registrazioni non sono aperte"
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr "la password corrente non è valida"
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr "La nuova email sembra non valida"
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr "La nuova email dev'essere diversa"
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr "La nuova password deve essere diversa"
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr "La password assegnata non è valida"
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
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."
@ -211,27 +211,27 @@ msgid "Unable to validate user"
msgstr "Impossibile convalidare l'utente"
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr "Utente già disabilitato"
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr "L'utente richiesto non è loggato"
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr "Sei già un membro di questo gruppo"
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr "Non puoi lasciare questo gruppo perchè sei l'unico amministratore"
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr "Non puoi unirti a questo gruppo"
@ -241,37 +241,37 @@ msgid "You may not list groups unless moderator."
msgstr "Non è possibile elencare i gruppi a meno che non sia un moderatore."
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr "È necessario effettuare il login per modificare la tua email"
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr "È necessario effettuare il login per modificare la tua password"
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr "È necessario effettuare il login per eliminare un gruppo"
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr "È necessario effettuare il login per eliminare il tuo account"
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr "È necessario effettuare il login per entrare a far parte di un gruppo"
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr "È necessario effettuare il login per lasciare un gruppo"
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr "È necessario effettuare il login per aggiornare un gruppo"
@ -439,12 +439,12 @@ msgid "Post doesn't exist"
msgstr "Il post non esiste"
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr "Il profilo invitato non esiste"
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr "Il profilo è già un membro diquesto gruppo"
@ -519,13 +519,13 @@ msgid "You are already a participant of this event"
msgstr "Se già un partecipante di questo evento"
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr "Non sei un membro di questo gruppo"
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr "Non sei un moderatore o amministratore di questo gruppo"
@ -562,7 +562,7 @@ msgstr ""
"Non puoi lasciare l'evento perchè sei l'unico partecipante creatore di eventi"
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
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 "
@ -579,7 +579,7 @@ msgid "You cannot delete this event"
msgstr "Non puoi eliminare questo evento"
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr "Non puoi invitare in questo gruppo"
@ -772,12 +772,12 @@ msgid "You need to be logged in"
msgstr "Devi essere connesso"
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr "Non puoi accettare l'invito con questo profilo."
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr "Non puoi rifiutare l'invito con questo profilo."
@ -787,7 +787,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr "Il file non ha un tipo MIME consentito."
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr "Il profilo non è amministratore del gruppo"
@ -802,17 +802,17 @@ msgid "You can't attribute this event to this profile."
msgstr "Non puo iattribuire questo evento a questo profilo."
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr "Questo invito non esiste."
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr "Questo memebro è già stato rifiutato."
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr "Non hai il diritto di rimuovere questo membro."
@ -839,7 +839,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr "L'ID profilo fornito non è quello del profilo anonimo"
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr "L'immagine inserita è troppo pesante"
@ -855,7 +855,7 @@ msgid "Error while creating resource"
msgstr "Errore durante la creazione della risorsa"
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr "Token di attivazione non valido"
@ -898,7 +898,7 @@ msgid "Error while creating a discussion"
msgstr "Errore durante la creazione della risorsa"
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr "Errore durante l'aggiornamento del rapporto"
@ -913,17 +913,17 @@ msgid "Failed to leave the event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr "Impossibile convalidare l'utente"
@ -943,7 +943,7 @@ msgid "You are not the comment creator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr ""
@ -968,7 +968,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr ""
@ -983,17 +983,17 @@ msgid "Unknown error while creating event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -1008,37 +1008,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr "È necessario effettuare il login per entrare a far parte di un gruppo"
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr "È necessario effettuare il login per entrare a far parte di un gruppo"
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr "È necessario effettuare il login per aggiornare un gruppo"
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr "Non hai il diritto di rimuovere questo membro."
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -405,32 +405,32 @@ msgstr ""
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr ""

View File

@ -1396,8 +1396,8 @@ msgstr ""
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr ""

View File

@ -87,24 +87,24 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr ""
@ -119,7 +119,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr ""
@ -152,33 +152,33 @@ msgid "Registrations are not open"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
@ -198,27 +198,27 @@ msgid "Unable to validate user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr ""
@ -228,37 +228,37 @@ msgid "You may not list groups unless moderator."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr ""
@ -424,12 +424,12 @@ msgid "Post doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr ""
@ -504,13 +504,13 @@ msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr ""
@ -546,7 +546,7 @@ msgid "You can't leave event because you're the only event creator participant"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
@ -561,7 +561,7 @@ msgid "You cannot delete this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr ""
@ -746,12 +746,12 @@ msgid "You need to be logged in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr ""
@ -761,7 +761,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr ""
@ -776,17 +776,17 @@ msgid "You can't attribute this event to this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr ""
@ -811,7 +811,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr ""
@ -827,7 +827,7 @@ msgid "Error while creating resource"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr ""
@ -868,7 +868,7 @@ msgid "Error while creating a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr ""
@ -883,17 +883,17 @@ msgid "Failed to leave the event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr ""
@ -913,7 +913,7 @@ msgid "You are not the comment creator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr ""
@ -938,7 +938,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr ""
@ -953,17 +953,17 @@ msgid "Unknown error while creating event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -978,37 +978,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -407,32 +407,32 @@ msgstr ""
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr ""

View File

@ -1420,8 +1420,8 @@ msgstr "Uw deelname aan het evenement %{title} is goedgekeurd"
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr ""

View File

@ -93,24 +93,24 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr ""
@ -125,7 +125,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr ""
@ -158,33 +158,33 @@ msgid "Registrations are not open"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
@ -204,27 +204,27 @@ msgid "Unable to validate user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr ""
@ -234,37 +234,37 @@ msgid "You may not list groups unless moderator."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr ""
@ -430,12 +430,12 @@ msgid "Post doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr ""
@ -510,13 +510,13 @@ msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr ""
@ -552,7 +552,7 @@ msgid "You can't leave event because you're the only event creator participant"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
@ -567,7 +567,7 @@ msgid "You cannot delete this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr ""
@ -752,12 +752,12 @@ msgid "You need to be logged in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr ""
@ -767,7 +767,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr ""
@ -782,17 +782,17 @@ msgid "You can't attribute this event to this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr ""
@ -817,7 +817,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr ""
@ -833,7 +833,7 @@ msgid "Error while creating resource"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr ""
@ -874,7 +874,7 @@ msgid "Error while creating a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr ""
@ -889,17 +889,17 @@ msgid "Failed to leave the event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr ""
@ -919,7 +919,7 @@ msgid "You are not the comment creator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr ""
@ -944,7 +944,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr ""
@ -959,17 +959,17 @@ msgid "Unknown error while creating event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -984,37 +984,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -420,32 +420,32 @@ msgstr "%{profile} oppdaterte medlemen %{member}."
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr "%{profile} laga ressursen %{resource}."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr "%{profile} arkiverte diskusjonen %{discussion}."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr "%{profile} laga diskusjonen %{discussion}."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr "%{profile} sletta diskusjonen %{discussion}."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr "%{profile} nemnde deg i diskusjonen %{discussion}."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr "%{profile} ga nytt namn til diskusjonen %{discussion}."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr "%{profile} svara på diskusjonen %{discussion}."

View File

@ -1698,8 +1698,8 @@ msgstr "Du har meldt deg av %{event} på %{instance}!"
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr "%{event}_deltakarar"

View File

@ -116,24 +116,24 @@ msgid "Cannot refresh the token"
msgstr "Kan ikkje fornya teiknet"
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr "Denne brukaren er ikkje medlem av gruppa"
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr "Denne brukaren er ikkje styrar av gruppa"
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr "Greidde ikkje lagra brukarinnstillingane"
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr "Fann ikkje gruppa"
@ -148,7 +148,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr "Greier ikkje å logga inn. Epostadressa eller passordet ditt er feil."
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr "Fann ikkje medlemen"
@ -181,33 +181,33 @@ msgid "Registrations are not open"
msgstr "Det er ikkje opna for å registrera seg"
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr "Dette passordet er ugyldig"
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr "Den nye epostadressa ser ut til å vera feil"
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr "Den nye epostadressa må vera annleis"
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr "Det nye passordet må vera annleis"
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr "Dette passordet er ugyldig"
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
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."
@ -227,27 +227,27 @@ msgid "Unable to validate user"
msgstr "Greier ikkje godkjenna brukaren"
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr "Brukaren er allereie inaktiv"
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr "Den førespurte brukaren er ikkje innlogga"
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr "Du er allereie medlem av denne gruppa"
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
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"
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr "Du kan ikkje bli med i denne gruppa"
@ -257,37 +257,37 @@ msgid "You may not list groups unless moderator."
msgstr "Du kan ikkje lista opp grupper med mindre du er moderator."
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr "Du må vera innlogga for å endra epostadressa di"
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr "Du må vera innlogga for å endra passordet ditt"
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr "Du må vera innlogga for å sletta ei gruppe"
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr "Du må vera innlogga for å sletta kontoen din"
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr "Du må vera innlogga for å bli med i ei gruppe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr "Du må vera innlogga for å forlata ei gruppe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr "Du må vera innlogga for å oppdatera ei gruppe"
@ -453,12 +453,12 @@ msgid "Post doesn't exist"
msgstr "Innlegget finst ikkje"
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr "Den inviterte profilen finst ikkje"
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr "Profilen er allereie medlem i denne gruppa"
@ -533,13 +533,13 @@ msgid "You are already a participant of this event"
msgstr "Du er allereie deltakar på denne hendinga"
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr "Du er ikkje medlem i denne gruppa"
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr "Du er ikkje styrar eller administrator for denne gruppa"
@ -578,7 +578,7 @@ msgstr ""
"oppretta hendinga"
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
"Du kan ikkje gje deg sjølv ei deltakarrolle i denne gruppa, fordi du er den "
@ -595,7 +595,7 @@ msgid "You cannot delete this event"
msgstr "Du kan ikkje sletta denne hendinga"
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr "Du kan ikkje invitera til denne gruppa"
@ -789,12 +789,12 @@ msgid "You need to be logged in"
msgstr "Du må vera innlogga"
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr "Du kan ikkje ta imot invitasjonar med denne profilen."
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr "Du kan ikkje avslå invitasjonen med denne profilen."
@ -804,7 +804,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr "Fila har ingen tillaten MIME-type."
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr "Profilen er ikkje administrator for gruppa"
@ -819,17 +819,17 @@ msgid "You can't attribute this event to this profile."
msgstr "Du kan ikkje kopla denne hendinga til denne profilen."
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr "Invitasjonen finst ikkje."
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr "Denne medlemen har allereie fått avslag."
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr "Du har ikkje løyve til å fjerna denne medlemen."
@ -855,7 +855,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr "Denne profil-IDen er ikkje den anonyme profilen"
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr "Dette biletet er for stort"
@ -871,7 +871,7 @@ msgid "Error while creating resource"
msgstr "Greidde ikkje laga ressursen"
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr "Ugyldig aktiveringslykjel"
@ -917,7 +917,7 @@ msgid "Error while creating a discussion"
msgstr "Greidde ikkje laga ressursen"
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr "Greidde ikkje oppdatera rapporten"
@ -932,17 +932,17 @@ msgid "Failed to leave the event"
msgstr "Greidde ikkje forlata hendinga"
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr "Greidde ikkje oppdatera gruppa"
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr "Greidde ikkje oppdatera epostadressa til brukaren"
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr "Greier ikkje godkjenna brukaren"
@ -962,7 +962,7 @@ msgid "You are not the comment creator"
msgstr "Du har ikkje skrive denne kommentaren"
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr "Du kan ikkje endra passordet ditt."
@ -988,7 +988,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr "Du kan ikkje eksportera til %{format} på denne nettstaden"
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr "Berre styrarar kan laga grupper"
@ -1003,17 +1003,17 @@ msgid "Unknown error while creating event"
msgstr "Det var ein ukjend feil då ressursen vart oppdatert"
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr "Brukaren kan ikkje endra epostadressa"
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -1028,37 +1028,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr "Du må vera innlogga for å bli med i ei gruppe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr "Du må vera innlogga for å bli med i ei gruppe"
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr "Du må vera innlogga for å oppdatera ei gruppe"
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr "Du har ikkje løyve til å fjerna denne medlemen."
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -407,32 +407,32 @@ msgstr ""
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr ""

View File

@ -1505,8 +1505,8 @@ msgstr "Vòstra participacion a leveniment %{title} es estada aprovada"
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr ""

View File

@ -100,24 +100,24 @@ msgid "Cannot refresh the token"
msgstr "Actualizacion impossibla del geton"
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr "Lo perfil actual es pas un membre daqueste grop"
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr "Lo perfil actual es pas administrator del grop seleccionat"
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr "Error en salvagardant los paramètres utilizaire"
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr "Grop pas trobat"
@ -134,7 +134,7 @@ msgstr ""
"invalid."
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr "Membre pas trobat"
@ -167,33 +167,33 @@ msgid "Registrations are not open"
msgstr "Las inscripciones sèn pas obèrtas"
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr "Lo mòt de santa clara actuau es invalid"
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr "Lo email nau sèm invalid"
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr "Lo email nau deb esser different"
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
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:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr "Lo mòt de santa clara aprovedit es invalid"
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
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 "
@ -215,27 +215,27 @@ msgid "Unable to validate user"
msgstr "Es impossible de validar l'utilizator"
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr "Utilizator déjà desactivat"
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr "L'utilizator demandat es pas conectat"
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr "Essetz déjà membre d'aquest grop"
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr "Podetz pas quitar aquest grop perque essetz lo sol administrator"
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr "Podetz pas rejónher aquest grop"
@ -245,37 +245,37 @@ msgid "You may not list groups unless moderator."
msgstr "Podetz listar los grops sonque se essetz moderator."
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr "Debetz esser conectat per cambiar lo voste email"
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
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"
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr "Debetz d'esser conectat per suprimir un grop"
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr "Devetz d'esser conectat per suprimir lo voste compte"
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr "Devetz d'esser conectat per rejónher un grop"
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr "Devetz d'esser conectat per quitar un grop"
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr "Devetz d'esser conectat per metre à jorn un grop"
@ -442,12 +442,12 @@ msgid "Post doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr ""
@ -522,13 +522,13 @@ msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr ""
@ -564,7 +564,7 @@ msgid "You can't leave event because you're the only event creator participant"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
@ -579,7 +579,7 @@ msgid "You cannot delete this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr ""
@ -764,12 +764,12 @@ msgid "You need to be logged in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr ""
@ -779,7 +779,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr ""
@ -794,17 +794,17 @@ msgid "You can't attribute this event to this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr ""
@ -829,7 +829,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr ""
@ -845,7 +845,7 @@ msgid "Error while creating resource"
msgstr "Error mentre que sauvant lo rapòrt"
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr ""
@ -886,7 +886,7 @@ msgid "Error while creating a discussion"
msgstr "Error mentre que sauvant lo rapòrt"
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr "Error mentre la mesa a jorn dèu rapòrt"
@ -901,17 +901,17 @@ msgid "Failed to leave the event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr "Es impossible de validar l'utilizator"
@ -931,7 +931,7 @@ msgid "You are not the comment creator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr ""
@ -956,7 +956,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr ""
@ -971,17 +971,17 @@ msgid "Unknown error while creating event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -996,37 +996,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr "Devetz d'esser conectat per rejónher un grop"
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr "Devetz d'esser conectat per rejónher un grop"
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr "Devetz d'esser conectat per metre à jorn un grop"
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -409,32 +409,32 @@ msgstr ""
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr ""

View File

@ -1514,8 +1514,8 @@ msgstr "Twój udział w wydarzeniu %{title} został zatwierdzony"
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr ""

View File

@ -107,24 +107,24 @@ msgid "Cannot refresh the token"
msgstr "Nie można odświeżyć tokenu"
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr "Obency profil nie jest członkiem tej grupy"
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr "Obecny profil nie jest administratorem zaznaczonej grupy"
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr "Błąd zapisywania ustawień użytkownika"
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr "Nie odnaleziono grupy"
@ -140,7 +140,7 @@ msgstr ""
"Nie udało się uwierzytelnić. Adres e-mail bądź hasło jest nieprawidłowe."
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr "Nie odnaleziono użytkownika"
@ -174,33 +174,33 @@ msgid "Registrations are not open"
msgstr "Rejestracje nie są otwarte"
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr "Obecne hasło jest nieprawidłowe"
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr "Nowy adres e-mail nie wydaje się być prawidłowy"
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr "Nowy adres e-mail musi się różnić od obecnego"
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr "Nowe hasło musi różnić się od obecnego"
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr "Wprowadzone hasło jest nieprawidłowe"
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
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ę "
@ -222,28 +222,28 @@ msgid "Unable to validate user"
msgstr "Nie udało się zwalidować użytkownika"
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr "Użytkownik jest już wyłączony"
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr "Żądany użytkownik nie jest zalogowany"
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr "Już jesteś członkiem tej grupy"
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr ""
"Nie możesz opuścić tej grupy, ponieważ jesteś jej jedynym administratorem"
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr "Nie możesz dołączyć do tej grupy"
@ -253,37 +253,37 @@ msgid "You may not list groups unless moderator."
msgstr "Nie masz dostępu do listy grup, jeżeli nie jesteś moderatorem."
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr "Musisz być zalogowany(-a), aby zmienić adres e-mail"
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr "Musisz być zalogowany(-a), aby zmienić hasło"
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr "Musisz być zalogowany(-a), aby usunąć grupę"
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr "Musisz być zalogowany(-a), aby usunąć konto"
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr "Musisz być zalogowany(-a), aby dołączyć do grupy"
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr "Musisz być zalogowany(-a), aby opuścić grupę"
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr "Musisz być zalogowany(-a), aby zaktualizować grupę"
@ -449,12 +449,12 @@ msgid "Post doesn't exist"
msgstr "Wpis nie istnieje"
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr "Zaproszony profil nie istnieje"
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr "Profil jest już członkiem tej grupy"
@ -529,13 +529,13 @@ msgid "You are already a participant of this event"
msgstr "Już jesteś uczestnikiem tego wydarzenia"
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr "Nie jesteś członkiem tej grupy"
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr "Nie jesteś moderatorem ani administratorem tej grupy"
@ -571,7 +571,7 @@ msgid "You can't leave event because you're the only event creator participant"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
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 "
@ -588,7 +588,7 @@ msgid "You cannot delete this event"
msgstr "Nie możesz usunąć tego wydarzenia"
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr "Nie możesz zaprosić do tej grupy"
@ -781,12 +781,12 @@ msgid "You need to be logged in"
msgstr "Musisz być zalogowany(-a)"
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr "Nie możesz zaakceptować tego zaproszenia z tego profilu."
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr "Nie możesz odrzucić tego zaproszenia z tego profilu."
@ -796,7 +796,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr "Plik nie ma dozwolonego typu MIME."
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr "Profil nie jest administratorem grupy"
@ -811,17 +811,17 @@ msgid "You can't attribute this event to this profile."
msgstr "Nie możesz przypisać tego wydarzenia do tego profilu."
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr "To zaproszenie nie istnieje."
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr "Ten członek już został odrzucony."
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr "Nie masz uprawnień do usunięcia tego członka."
@ -846,7 +846,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr ""
@ -862,7 +862,7 @@ msgid "Error while creating resource"
msgstr "Wystąpił błąd podczas zapisywania zgłoszenia"
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr ""
@ -903,7 +903,7 @@ msgid "Error while creating a discussion"
msgstr "Wystąpił błąd podczas zapisywania zgłoszenia"
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr "Wystąpił błąd podczas aktualizacji zgłoszenia"
@ -918,17 +918,17 @@ msgid "Failed to leave the event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr "Nie udało się zwalidować użytkownika"
@ -948,7 +948,7 @@ msgid "You are not the comment creator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr ""
@ -973,7 +973,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr ""
@ -988,17 +988,17 @@ msgid "Unknown error while creating event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -1013,37 +1013,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr "Musisz być zalogowany(-a), aby dołączyć do grupy"
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr "Musisz być zalogowany(-a), aby dołączyć do grupy"
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr "Musisz być zalogowany(-a), aby zaktualizować grupę"
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr "Nie masz uprawnień do usunięcia tego członka."
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -407,32 +407,32 @@ msgstr ""
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr ""

View File

@ -1400,8 +1400,8 @@ msgstr ""
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr ""

View File

@ -93,24 +93,24 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr ""
@ -125,7 +125,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr ""
@ -158,33 +158,33 @@ msgid "Registrations are not open"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
@ -204,27 +204,27 @@ msgid "Unable to validate user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr ""
@ -234,37 +234,37 @@ msgid "You may not list groups unless moderator."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr ""
@ -430,12 +430,12 @@ msgid "Post doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr ""
@ -510,13 +510,13 @@ msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr ""
@ -552,7 +552,7 @@ msgid "You can't leave event because you're the only event creator participant"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
@ -567,7 +567,7 @@ msgid "You cannot delete this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr ""
@ -752,12 +752,12 @@ msgid "You need to be logged in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr ""
@ -767,7 +767,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr ""
@ -782,17 +782,17 @@ msgid "You can't attribute this event to this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr ""
@ -817,7 +817,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr ""
@ -833,7 +833,7 @@ msgid "Error while creating resource"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr ""
@ -874,7 +874,7 @@ msgid "Error while creating a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr ""
@ -889,17 +889,17 @@ msgid "Failed to leave the event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr ""
@ -919,7 +919,7 @@ msgid "You are not the comment creator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr ""
@ -944,7 +944,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr ""
@ -959,17 +959,17 @@ msgid "Unknown error while creating event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -984,37 +984,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -407,32 +407,32 @@ msgstr ""
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr ""

View File

@ -1512,8 +1512,8 @@ msgstr "A sua participação no evento %{title} foi aprovada"
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr ""

View File

@ -93,24 +93,24 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr ""
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr ""
@ -125,7 +125,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr ""
@ -158,33 +158,33 @@ msgid "Registrations are not open"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
@ -204,27 +204,27 @@ msgid "Unable to validate user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr ""
@ -234,37 +234,37 @@ msgid "You may not list groups unless moderator."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr ""
@ -430,12 +430,12 @@ msgid "Post doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr ""
@ -510,13 +510,13 @@ msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr ""
@ -552,7 +552,7 @@ msgid "You can't leave event because you're the only event creator participant"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
@ -567,7 +567,7 @@ msgid "You cannot delete this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr ""
@ -752,12 +752,12 @@ msgid "You need to be logged in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr ""
@ -767,7 +767,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr ""
@ -782,17 +782,17 @@ msgid "You can't attribute this event to this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr ""
@ -817,7 +817,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr ""
@ -833,7 +833,7 @@ msgid "Error while creating resource"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr ""
@ -874,7 +874,7 @@ msgid "Error while creating a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr ""
@ -889,17 +889,17 @@ msgid "Failed to leave the event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr ""
@ -919,7 +919,7 @@ msgid "You are not the comment creator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr ""
@ -944,7 +944,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr ""
@ -959,17 +959,17 @@ msgid "Unknown error while creating event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -984,37 +984,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -421,32 +421,32 @@ msgstr "%{profile} обновил участника %{member}."
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr "%{profile} создал ресурс %{resource}."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr "%{profile} заархивировал обсуждение %{discussion}."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr "%{profile} создал обсуждение %{discussion}."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr "%{profile} удалил обсуждение %{discussion}."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr "%{profile} упомянул вас в обсуждении %{discussion}."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr "%{profile} переименовал обсуждение %{discussion}."
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr "%{profile} ответил на обсуждение %{discussion}."

File diff suppressed because it is too large Load Diff

View File

@ -107,24 +107,24 @@ msgid "Cannot refresh the token"
msgstr "Токен не может быть обновлен"
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
msgid "Current profile is not a member of this group"
msgstr "Текущий профиль не является участником этой группы"
#, elixir-format
#: lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr "Текущий профиль не является администратором выбранной группы"
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr "Ошибка при сохранении пользовательских настроек"
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr "Группа не найдена"
@ -141,7 +141,7 @@ msgstr ""
"пароль."
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr "Участник не найден"
@ -176,33 +176,33 @@ msgid "Registrations are not open"
msgstr "Регистрация не открыта"
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr "Текущий пароль неверен"
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr "Новый адрес электронной почты недействителен"
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr "Новый адрес электронной почты должен отличаться от текущего"
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr "Новый пароль должен отличаться от текущего"
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr "Введён неверный пароль"
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
"Введенный пароль слишком короткий. Убедитесь, что ваш пароль состоит не "
@ -224,28 +224,28 @@ msgid "Unable to validate user"
msgstr "Невозможно проверить пользователя"
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr "Пользователь уже отключен"
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr "Запрошенный пользователь не авторизован"
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr "Вы уже являетесь участником этой группы"
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr ""
"Вы не можете покинуть эту группу, потому что вы её единственный администратор"
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr "Вы не можете присоединиться к этой группе"
@ -255,38 +255,38 @@ msgid "You may not list groups unless moderator."
msgstr "Только модератор может просматривать список групп."
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr ""
"Вам необходимо войти в систему, чтобы изменить свой адрес электронной почты"
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr "Вам необходимо войти в систему, чтобы изменить свой пароль"
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr "Вам необходимо войти в систему, чтобы удалить группу"
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr "Вам необходимо войти в систему, чтобы удалить свою учетную запись"
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr "Вам необходимо войти в систему, чтобы присоединиться к группе"
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr "Вам необходимо войти в систему, чтобы покинуть группу"
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr "Вам необходимо войти в систему, чтобы обновить группу"
@ -452,12 +452,12 @@ msgid "Post doesn't exist"
msgstr "Пост не существует"
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr "Приглашенный профиль не существует"
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr "Профиль уже является участником этой группы"
@ -534,13 +534,13 @@ msgid "You are already a participant of this event"
msgstr "Вы уже являетесь участником этого мероприятия"
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr "Вы не состоите в этой группе"
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr "Вы не модератор и не администратор этой группы"
@ -578,7 +578,7 @@ msgstr ""
"участником, создавшим его"
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
"Вы не можете назначить себе роль с меньшими правами для этой группы, потому "
@ -595,7 +595,7 @@ msgid "You cannot delete this event"
msgstr "Вы не можете удалить это мероприятие"
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr "Вы не можете приглашать в эту группу"
@ -801,12 +801,12 @@ msgid "You need to be logged in"
msgstr "Вам необходимо войти в систему"
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr "Вы не можете принять это приглашение из этого профиля."
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr "Вы не можете отклонить это приглашение из этого профиля."
@ -816,7 +816,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr "Файл не имеет разрешенного MIME-типа."
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr "Профиль не является администратором группы"
@ -831,17 +831,17 @@ msgid "You can't attribute this event to this profile."
msgstr "Вы не можете назначить это мероприятие этому профилю."
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr "Такого приглашения не существует."
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr "Этот участник уже был отклонён."
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr "У вас нет прав на удаление этого участника."
@ -867,7 +867,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr "Указанный ID профиля не является анонимным"
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr "Предоставленное изображение слишком большое"
@ -883,7 +883,7 @@ msgid "Error while creating resource"
msgstr "При создании ресурса произошла ошибка"
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr "Неверный токен активации"
@ -929,7 +929,7 @@ msgid "Error while creating a discussion"
msgstr "При создании ресурса произошла ошибка"
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr "При обновлении отчёта произошла ошибка"
@ -944,17 +944,17 @@ msgid "Failed to leave the event"
msgstr "Не удалось покинуть мероприятие"
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr "Не удалось обновить группу"
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr "Не удалось обновить электронную почту пользователя"
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr "Невозможно проверить пользователя"
@ -974,7 +974,7 @@ msgid "You are not the comment creator"
msgstr "Вы не автор комментария"
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr "Вы не можете изменить свой пароль."
@ -999,7 +999,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr "Экспорт в формат %{format} не включен на этом узле"
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr "Только администраторы могут создавать группы"
@ -1014,17 +1014,17 @@ msgid "Unknown error while creating event"
msgstr "Неизвестная ошибка при обновлении ресурса"
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr "Пользователь не может изменить адрес электронной почты"
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -1039,37 +1039,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr "Вам необходимо войти в систему, чтобы присоединиться к группе"
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr "Вам необходимо войти в систему, чтобы присоединиться к группе"
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr "Вам необходимо войти в систему, чтобы обновить группу"
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr "У вас нет прав на удаление этого участника."
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""

View File

@ -407,32 +407,32 @@ msgstr ""
msgid "%{profile} created the resource %{resource} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:86
msgid "%{profile} archived the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:26
msgid "%{profile} created the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:101
msgid "%{profile} deleted the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:56
msgid "%{profile} mentionned you in the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:71
msgid "%{profile} renamed the discussion %{discussion} in group %{group}."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/service/activity/renderer/discussion.ex:41
msgid "%{profile} replied to the discussion %{discussion} in group %{group}."
msgstr ""

View File

@ -1428,8 +1428,8 @@ msgstr "Din förfrågan om att få delta i evenemanget %{title} har godkännts"
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#. File name template for exported list of participants. Should NOT contain spaces. Make sure the output is going to be something standardized that is acceptable as a file name on most systems.
#, elixir-format
#: lib/service/export/participants/csv.ex:73
#: lib/service/export/participants/ods.ex:77 lib/service/export/participants/pdf.ex:91
#: lib/service/export/participants/csv.ex:81
#: lib/service/export/participants/ods.ex:86 lib/service/export/participants/pdf.ex:96
msgid "%{event}_participants"
msgstr ""

View File

@ -100,24 +100,24 @@ msgid "Cannot refresh the token"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:245
#: lib/graphql/resolvers/group.ex:252
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:249
#: lib/graphql/resolvers/group.ex:256
msgid "Current profile is not an administrator of the selected group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:613
#: lib/graphql/resolvers/user.ex:612
msgid "Error while saving user settings"
msgstr "Ett fel uppstod när användarinställningarna skulle sparas"
#, elixir-format
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:242
#: lib/graphql/resolvers/group.ex:274 lib/graphql/resolvers/group.ex:311 lib/graphql/resolvers/group.ex:342
#: lib/graphql/resolvers/group.ex:391 lib/graphql/resolvers/member.ex:79
#: lib/graphql/error.ex:99 lib/graphql/resolvers/group.ex:249
#: lib/graphql/resolvers/group.ex:281 lib/graphql/resolvers/group.ex:318 lib/graphql/resolvers/group.ex:349
#: lib/graphql/resolvers/group.ex:398 lib/graphql/resolvers/member.ex:81
msgid "Group not found"
msgstr "Gruppen kunde inte hittas"
@ -132,7 +132,7 @@ msgid "Impossible to authenticate, either your email or password are invalid."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:308
#: lib/graphql/resolvers/group.ex:315
msgid "Member not found"
msgstr ""
@ -165,33 +165,33 @@ msgid "Registrations are not open"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:428
#: lib/graphql/resolvers/user.ex:429
msgid "The current password is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:471
#: lib/graphql/resolvers/user.ex:472
msgid "The new email doesn't seem to be valid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:474
#: lib/graphql/resolvers/user.ex:475
msgid "The new email must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:431
#: lib/graphql/resolvers/user.ex:432
msgid "The new password must be different"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:478 lib/graphql/resolvers/user.ex:540
#: lib/graphql/resolvers/user.ex:543
#: lib/graphql/resolvers/user.ex:479 lib/graphql/resolvers/user.ex:541
#: lib/graphql/resolvers/user.ex:544
msgid "The password provided is invalid"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:435
#: lib/graphql/resolvers/user.ex:436
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
msgstr ""
@ -211,27 +211,27 @@ msgid "Unable to validate user"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:521
#: lib/graphql/resolvers/user.ex:522
msgid "User already disabled"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:588
#: lib/graphql/resolvers/user.ex:587
msgid "User requested is not logged-in"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:280
#: lib/graphql/resolvers/group.ex:287
msgid "You are already a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:315
#: lib/graphql/resolvers/group.ex:322
msgid "You can't leave this group because you are the only administrator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:277
#: lib/graphql/resolvers/group.ex:284
msgid "You cannot join this group"
msgstr ""
@ -241,37 +241,37 @@ msgid "You may not list groups unless moderator."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:486
#: lib/graphql/resolvers/user.ex:487
msgid "You need to be logged-in to change your email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:443
#: lib/graphql/resolvers/user.ex:444
msgid "You need to be logged-in to change your password"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:254
#: lib/graphql/resolvers/group.ex:261
msgid "You need to be logged-in to delete a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:548
#: lib/graphql/resolvers/user.ex:549
msgid "You need to be logged-in to delete your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:285
#: lib/graphql/resolvers/group.ex:292
msgid "You need to be logged-in to join a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:320
#: lib/graphql/resolvers/group.ex:327
msgid "You need to be logged-in to leave a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:218
#: lib/graphql/resolvers/group.ex:225
msgid "You need to be logged-in to update a group"
msgstr ""
@ -437,12 +437,12 @@ msgid "Post doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:82
#: lib/graphql/resolvers/member.ex:84
msgid "Profile invited doesn't exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:91 lib/graphql/resolvers/member.ex:95
#: lib/graphql/resolvers/member.ex:93 lib/graphql/resolvers/member.ex:97
msgid "Profile is already a member of this group"
msgstr ""
@ -517,13 +517,13 @@ msgid "You are already a participant of this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:85
#: lib/graphql/resolvers/member.ex:87
msgid "You are not a member of this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:155 lib/graphql/resolvers/member.ex:171
#: lib/graphql/resolvers/member.ex:186
#: lib/graphql/resolvers/member.ex:157 lib/graphql/resolvers/member.ex:173
#: lib/graphql/resolvers/member.ex:188
msgid "You are not a moderator or admin for this group"
msgstr ""
@ -559,7 +559,7 @@ msgid "You can't leave event because you're the only event creator participant"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:190
#: lib/graphql/resolvers/member.ex:192
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
msgstr ""
@ -574,7 +574,7 @@ msgid "You cannot delete this event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:88
#: lib/graphql/resolvers/member.ex:90
msgid "You cannot invite to this group"
msgstr ""
@ -759,12 +759,12 @@ msgid "You need to be logged in"
msgstr "Du måste vara inloggad"
#, elixir-format
#: lib/graphql/resolvers/member.ex:116
#: lib/graphql/resolvers/member.ex:118
msgid "You can't accept this invitation with this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:137
#: lib/graphql/resolvers/member.ex:139
msgid "You can't reject this invitation with this profile."
msgstr ""
@ -774,7 +774,7 @@ msgid "File doesn't have an allowed MIME type."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:213
#: lib/graphql/resolvers/group.ex:220
msgid "Profile is not administrator for the group"
msgstr ""
@ -789,17 +789,17 @@ msgid "You can't attribute this event to this profile."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:140
#: lib/graphql/resolvers/member.ex:142
msgid "This invitation doesn't exist."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:215
#: lib/graphql/resolvers/member.ex:217
msgid "This member already has been rejected."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:239
#: lib/graphql/resolvers/member.ex:241
msgid "You don't have the right to remove this member."
msgstr ""
@ -824,7 +824,7 @@ msgid "Profile ID provided is not the anonymous profile one"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:159 lib/graphql/resolvers/group.ex:201
#: lib/graphql/resolvers/group.ex:161 lib/graphql/resolvers/group.ex:203
#: lib/graphql/resolvers/person.ex:148 lib/graphql/resolvers/person.ex:182 lib/graphql/resolvers/person.ex:304
msgid "The provided picture is too heavy"
msgstr ""
@ -840,7 +840,7 @@ msgid "Error while creating resource"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:504
#: lib/graphql/resolvers/user.ex:505
msgid "Invalid activation token"
msgstr ""
@ -881,7 +881,7 @@ msgid "Error while creating a discussion"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:627
#: lib/graphql/resolvers/user.ex:626
msgid "Error while updating locale"
msgstr ""
@ -896,17 +896,17 @@ msgid "Failed to leave the event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:209
#: lib/graphql/resolvers/group.ex:216
msgid "Failed to update the group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:468
#: lib/graphql/resolvers/user.ex:469
msgid "Failed to update user email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:500
#: lib/graphql/resolvers/user.ex:501
msgid "Failed to validate user email"
msgstr ""
@ -926,7 +926,7 @@ msgid "You are not the comment creator"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:425
#: lib/graphql/resolvers/user.ex:426
msgid "You cannot change your password."
msgstr ""
@ -951,7 +951,7 @@ msgid "Export to format %{format} is not enabled on this instance"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:165
#: lib/graphql/resolvers/group.ex:167
msgid "Only admins can create groups"
msgstr ""
@ -966,17 +966,17 @@ msgid "Unknown error while creating event"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/user.ex:481
#: lib/graphql/resolvers/user.ex:482
msgid "User cannot change email"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:364
#: lib/graphql/resolvers/group.ex:371
msgid "Follow does not match your account"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:368
#: lib/graphql/resolvers/group.ex:375
msgid "Follow not found"
msgstr ""
@ -991,37 +991,37 @@ msgid "This profile does not belong to you"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:338
#: lib/graphql/resolvers/group.ex:345
msgid "You are already following this group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:347
#: lib/graphql/resolvers/group.ex:354
msgid "You need to be logged-in to follow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:396
#: lib/graphql/resolvers/group.ex:403
msgid "You need to be logged-in to unfollow a group"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/group.ex:373
#: lib/graphql/resolvers/group.ex:380
msgid "You need to be logged-in to update a group follow"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:208
#: lib/graphql/resolvers/member.ex:210
msgid "This member does not exist"
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:232
#: lib/graphql/resolvers/member.ex:234
msgid "You don't have the role needed to remove this member."
msgstr ""
#, elixir-format
#: lib/graphql/resolvers/member.ex:250
#: lib/graphql/resolvers/member.ex:252
msgid "You must be logged-in to remove a member"
msgstr ""