Merge branch 'upgrade-deps' into 'master'
Upgrade deps Closes #761 See merge request framasoft/mobilizon!1007
This commit is contained in:
commit
e512db684a
@ -29,7 +29,7 @@
|
|||||||
"@tiptap/extension-underline": "^2.0.0-beta.7",
|
"@tiptap/extension-underline": "^2.0.0-beta.7",
|
||||||
"@tiptap/starter-kit": "^2.0.0-beta.37",
|
"@tiptap/starter-kit": "^2.0.0-beta.37",
|
||||||
"@tiptap/vue-2": "^2.0.0-beta.21",
|
"@tiptap/vue-2": "^2.0.0-beta.21",
|
||||||
"@vue/apollo-option": "^4.0.0-alpha.11",
|
"@vue/apollo-option": "4.0.0-alpha.11",
|
||||||
"apollo-absinthe-upload-link": "^1.5.0",
|
"apollo-absinthe-upload-link": "^1.5.0",
|
||||||
"blurhash": "^1.1.3",
|
"blurhash": "^1.1.3",
|
||||||
"buefy": "^0.9.0",
|
"buefy": "^0.9.0",
|
||||||
@ -101,5 +101,8 @@
|
|||||||
"vue-jest": "^4.0.1",
|
"vue-jest": "^4.0.1",
|
||||||
"vue-template-compiler": "^2.6.11",
|
"vue-template-compiler": "^2.6.11",
|
||||||
"webpack-cli": "^4.7.0"
|
"webpack-cli": "^4.7.0"
|
||||||
|
},
|
||||||
|
"resolutions": {
|
||||||
|
"webpack": "5.44.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -44,7 +44,7 @@ function setI18nLanguage(lang: string): string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function setLanguageInDOM(lang: string): void {
|
function setLanguageInDOM(lang: string): void {
|
||||||
const fixedLang = lang.replaceAll("_", "-");
|
const fixedLang = lang.replace(/_/g, "-");
|
||||||
const html = document.documentElement;
|
const html = document.documentElement;
|
||||||
const documentLang = html.getAttribute("lang");
|
const documentLang = html.getAttribute("lang");
|
||||||
if (documentLang !== fixedLang) {
|
if (documentLang !== fixedLang) {
|
||||||
|
@ -447,7 +447,6 @@ section {
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Component, Prop, Vue, Watch } from "vue-property-decorator";
|
import { Component, Prop, Vue, Watch } from "vue-property-decorator";
|
||||||
import { RefetchQueryDescription } from "@apollo/client/core/watchQueryOptions";
|
|
||||||
import PictureUpload from "@/components/PictureUpload.vue";
|
import PictureUpload from "@/components/PictureUpload.vue";
|
||||||
import EditorComponent from "@/components/Editor.vue";
|
import EditorComponent from "@/components/Editor.vue";
|
||||||
import TagInput from "@/components/Event/TagInput.vue";
|
import TagInput from "@/components/Event/TagInput.vue";
|
||||||
@ -498,7 +497,11 @@ import RouteName from "../../router/name";
|
|||||||
import "intersection-observer";
|
import "intersection-observer";
|
||||||
import { CONFIG } from "../../graphql/config";
|
import { CONFIG } from "../../graphql/config";
|
||||||
import { IConfig } from "../../types/config.model";
|
import { IConfig } from "../../types/config.model";
|
||||||
import { ApolloCache, FetchResult } from "@apollo/client/core";
|
import {
|
||||||
|
ApolloCache,
|
||||||
|
FetchResult,
|
||||||
|
InternalRefetchQueriesInclude,
|
||||||
|
} from "@apollo/client/core";
|
||||||
import cloneDeep from "lodash/cloneDeep";
|
import cloneDeep from "lodash/cloneDeep";
|
||||||
|
|
||||||
const DEFAULT_LIMIT_NUMBER_OF_PLACES = 10;
|
const DEFAULT_LIMIT_NUMBER_OF_PLACES = 10;
|
||||||
@ -865,7 +868,9 @@ export default class EditEvent extends Vue {
|
|||||||
* Refresh drafts or participation cache depending if the event is still draft or not
|
* Refresh drafts or participation cache depending if the event is still draft or not
|
||||||
*/
|
*/
|
||||||
// eslint-disable-next-line class-methods-use-this
|
// eslint-disable-next-line class-methods-use-this
|
||||||
private postRefetchQueries(updateEvent: IEvent): RefetchQueryDescription {
|
private postRefetchQueries(
|
||||||
|
updateEvent: IEvent
|
||||||
|
): InternalRefetchQueriesInclude {
|
||||||
if (updateEvent.draft) {
|
if (updateEvent.draft) {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
|
@ -244,7 +244,6 @@ import { Component, Mixins, Prop, Watch } from "vue-property-decorator";
|
|||||||
import ResourceItem from "@/components/Resource/ResourceItem.vue";
|
import ResourceItem from "@/components/Resource/ResourceItem.vue";
|
||||||
import FolderItem from "@/components/Resource/FolderItem.vue";
|
import FolderItem from "@/components/Resource/FolderItem.vue";
|
||||||
import Draggable from "vuedraggable";
|
import Draggable from "vuedraggable";
|
||||||
import { RefetchQueryDescription } from "@apollo/client/core/watchQueryOptions";
|
|
||||||
import { CURRENT_ACTOR_CLIENT } from "../../graphql/actor";
|
import { CURRENT_ACTOR_CLIENT } from "../../graphql/actor";
|
||||||
import { IActor, usernameWithDomain } from "../../types/actor";
|
import { IActor, usernameWithDomain } from "../../types/actor";
|
||||||
import RouteName from "../../router/name";
|
import RouteName from "../../router/name";
|
||||||
@ -264,7 +263,11 @@ import { CONFIG } from "../../graphql/config";
|
|||||||
import { IConfig } from "../../types/config.model";
|
import { IConfig } from "../../types/config.model";
|
||||||
import ResourceMixin from "../../mixins/resource";
|
import ResourceMixin from "../../mixins/resource";
|
||||||
import ResourceSelector from "../../components/Resource/ResourceSelector.vue";
|
import ResourceSelector from "../../components/Resource/ResourceSelector.vue";
|
||||||
import { ApolloCache, FetchResult } from "@apollo/client/core";
|
import {
|
||||||
|
ApolloCache,
|
||||||
|
FetchResult,
|
||||||
|
InternalRefetchQueriesInclude,
|
||||||
|
} from "@apollo/client/core";
|
||||||
import VueRouter from "vue-router";
|
import VueRouter from "vue-router";
|
||||||
const { isNavigationFailure, NavigationFailureType } = VueRouter;
|
const { isNavigationFailure, NavigationFailureType } = VueRouter;
|
||||||
|
|
||||||
@ -521,7 +524,7 @@ export default class Resources extends Mixins(ResourceMixin) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// eslint-disable-next-line class-methods-use-this
|
// eslint-disable-next-line class-methods-use-this
|
||||||
private postRefreshQueries(): RefetchQueryDescription {
|
private postRefreshQueries(): InternalRefetchQueriesInclude {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
query: GET_RESOURCE,
|
query: GET_RESOURCE,
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
{{ $t("Password reset") }}
|
{{ $t("Password reset") }}
|
||||||
</h1>
|
</h1>
|
||||||
<b-message
|
<b-message
|
||||||
title="Error"
|
:title="$t('Error')"
|
||||||
type="is-danger"
|
type="is-danger"
|
||||||
v-for="error in errors"
|
v-for="error in errors"
|
||||||
:key="error"
|
:key="error"
|
||||||
|
@ -20,7 +20,6 @@ import {
|
|||||||
newCommentForEventResponse,
|
newCommentForEventResponse,
|
||||||
} from "../../mocks/event";
|
} from "../../mocks/event";
|
||||||
import flushPromises from "flush-promises";
|
import flushPromises from "flush-promises";
|
||||||
import { InMemoryCache } from "@apollo/client/core";
|
|
||||||
import { defaultResolvers } from "../../common";
|
import { defaultResolvers } from "../../common";
|
||||||
const localVue = createLocalVue();
|
const localVue = createLocalVue();
|
||||||
localVue.use(Buefy);
|
localVue.use(Buefy);
|
||||||
@ -39,11 +38,9 @@ describe("CommentTree", () => {
|
|||||||
let mockClient: MockApolloClient | null;
|
let mockClient: MockApolloClient | null;
|
||||||
let apolloProvider;
|
let apolloProvider;
|
||||||
let requestHandlers: Record<string, RequestHandler>;
|
let requestHandlers: Record<string, RequestHandler>;
|
||||||
const cache = new InMemoryCache({ addTypename: false });
|
|
||||||
|
|
||||||
const generateWrapper = (handlers = {}, baseData = {}) => {
|
const generateWrapper = (handlers = {}, baseData = {}) => {
|
||||||
mockClient = createMockClient({
|
mockClient = createMockClient({
|
||||||
cache,
|
|
||||||
resolvers: defaultResolvers,
|
resolvers: defaultResolvers,
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -84,6 +81,21 @@ describe("CommentTree", () => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
afterEach(() => {
|
||||||
|
mockClient = null;
|
||||||
|
requestHandlers = {};
|
||||||
|
apolloProvider = null;
|
||||||
|
wrapper.destroy();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("renders a loading comment tree", async () => {
|
||||||
|
generateWrapper();
|
||||||
|
|
||||||
|
expect(wrapper.find(".loading").text()).toBe("Loading comments…");
|
||||||
|
|
||||||
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
|
});
|
||||||
|
|
||||||
it("renders a comment tree with comments", async () => {
|
it("renders a comment tree with comments", async () => {
|
||||||
generateWrapper();
|
generateWrapper();
|
||||||
|
|
||||||
@ -144,12 +156,11 @@ describe("CommentTree", () => {
|
|||||||
.fn()
|
.fn()
|
||||||
.mockResolvedValue(eventNoCommentThreadsMock),
|
.mockResolvedValue(eventNoCommentThreadsMock),
|
||||||
});
|
});
|
||||||
expect(requestHandlers.eventCommentThreadsQueryHandler).toHaveBeenCalled();
|
|
||||||
|
|
||||||
expect(wrapper.exists()).toBe(true);
|
|
||||||
expect(wrapper.find(".loading").text()).toBe("Loading comments…");
|
|
||||||
|
|
||||||
await flushPromises();
|
await flushPromises();
|
||||||
|
expect(
|
||||||
|
requestHandlers.eventCommentThreadsQueryHandler
|
||||||
|
).toHaveBeenCalledWith({ eventUUID: eventData.uuid });
|
||||||
|
|
||||||
expect(wrapper.find(".no-comments").text()).toBe("No comments yet");
|
expect(wrapper.find(".no-comments").text()).toBe("No comments yet");
|
||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
|
@ -33,6 +33,15 @@ exports[`CommentTree renders a comment tree with comments 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
exports[`CommentTree renders a loading comment tree 1`] = `
|
||||||
|
<div>
|
||||||
|
<!---->
|
||||||
|
<p class="loading has-text-centered">
|
||||||
|
Loading comments…
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
|
||||||
exports[`CommentTree renders an empty comment tree 1`] = `
|
exports[`CommentTree renders an empty comment tree 1`] = `
|
||||||
<div>
|
<div>
|
||||||
<form class="new-comment">
|
<form class="new-comment">
|
||||||
|
@ -229,11 +229,7 @@ describe("ParticipationWithoutAccount", () => {
|
|||||||
eventData.participantStats.notConfirmed + 1
|
eventData.participantStats.notConfirmed + 1
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
// lots of things to await
|
await flushPromises();
|
||||||
await wrapper.vm.$nextTick();
|
|
||||||
await wrapper.vm.$nextTick();
|
|
||||||
await wrapper.vm.$nextTick();
|
|
||||||
await wrapper.vm.$nextTick();
|
|
||||||
expect(wrapper.find("form").exists()).toBeFalsy();
|
expect(wrapper.find("form").exists()).toBeFalsy();
|
||||||
expect(wrapper.find("h1.title").text()).toBe(
|
expect(wrapper.find("h1.title").text()).toBe(
|
||||||
"Request for participation confirmation sent"
|
"Request for participation confirmation sent"
|
||||||
|
@ -76,8 +76,7 @@ describe("Reset page", () => {
|
|||||||
token: "some-token",
|
token: "some-token",
|
||||||
});
|
});
|
||||||
|
|
||||||
await wrapper.vm.$nextTick();
|
await flushPromises();
|
||||||
await wrapper.vm.$nextTick();
|
|
||||||
|
|
||||||
expect(wrapper.find("article.message.is-danger").text()).toContain(
|
expect(wrapper.find("article.message.is-danger").text()).toContain(
|
||||||
"The token you provided is invalid"
|
"The token you provided is invalid"
|
||||||
|
@ -115,13 +115,14 @@ describe("Render login form", () => {
|
|||||||
expect(requestHandlers.loginMutationHandler).toHaveBeenCalledWith({
|
expect(requestHandlers.loginMutationHandler).toHaveBeenCalledWith({
|
||||||
...loginMock,
|
...loginMock,
|
||||||
});
|
});
|
||||||
await wrapper.vm.$nextTick();
|
await flushPromises();
|
||||||
await wrapper.vm.$nextTick();
|
|
||||||
const currentUser = mockClient?.cache.readQuery<{
|
const currentUser = mockClient?.cache.readQuery<{
|
||||||
currentUser: ICurrentUser;
|
currentUser: ICurrentUser;
|
||||||
}>({
|
}>({
|
||||||
query: CURRENT_USER_CLIENT,
|
query: CURRENT_USER_CLIENT,
|
||||||
})?.currentUser;
|
})?.currentUser;
|
||||||
|
|
||||||
|
await flushPromises();
|
||||||
expect(currentUser?.email).toBe("some@email.tld");
|
expect(currentUser?.email).toBe("some@email.tld");
|
||||||
expect(currentUser?.id).toBe("1");
|
expect(currentUser?.id).toBe("1");
|
||||||
expect(jest.isMockFunction(wrapper.vm.$router.push)).toBe(true);
|
expect(jest.isMockFunction(wrapper.vm.$router.push)).toBe(true);
|
||||||
|
@ -108,6 +108,7 @@ export const eventCommentThreadsMock = {
|
|||||||
summary: "I am the senate",
|
summary: "I am the senate",
|
||||||
},
|
},
|
||||||
deletedAt: null,
|
deletedAt: null,
|
||||||
|
insertedAt: "2020-12-03T09:02:00Z",
|
||||||
isAnnouncement: false,
|
isAnnouncement: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -137,6 +138,7 @@ export const eventCommentThreadsMock = {
|
|||||||
summary: "I am the senate",
|
summary: "I am the senate",
|
||||||
},
|
},
|
||||||
deletedAt: null,
|
deletedAt: null,
|
||||||
|
insertedAt: "2020-12-03T11:02:00Z",
|
||||||
isAnnouncement: false,
|
isAnnouncement: false,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
@ -180,6 +182,7 @@ export const newCommentForEventResponse: DataMock = {
|
|||||||
summary: "I am the senate",
|
summary: "I am the senate",
|
||||||
},
|
},
|
||||||
deletedAt: null,
|
deletedAt: null,
|
||||||
|
insertedAt: "2020-12-03T13:02:00Z",
|
||||||
isAnnouncement: false,
|
isAnnouncement: false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
1591
js/yarn.lock
1591
js/yarn.lock
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@ defmodule Mobilizon.Web.Auth.Pipeline do
|
|||||||
module: Mobilizon.Web.Auth.Guardian,
|
module: Mobilizon.Web.Auth.Guardian,
|
||||||
error_handler: Mobilizon.Web.Auth.ErrorHandler
|
error_handler: Mobilizon.Web.Auth.ErrorHandler
|
||||||
|
|
||||||
plug(Guardian.Plug.VerifyHeader, realm: "Bearer")
|
plug(Guardian.Plug.VerifyHeader, scheme: "Bearer")
|
||||||
plug(Guardian.Plug.LoadResource, allow_blank: true)
|
plug(Guardian.Plug.LoadResource, allow_blank: true)
|
||||||
plug(Mobilizon.Web.Auth.Context)
|
plug(Mobilizon.Web.Auth.Context)
|
||||||
end
|
end
|
||||||
|
@ -7,7 +7,7 @@ defmodule Mobilizon.Web.Email.User do
|
|||||||
|
|
||||||
import Bamboo.Phoenix
|
import Bamboo.Phoenix
|
||||||
|
|
||||||
import Mobilizon.Web.Gettext, only: [gettext: 2]
|
import Mobilizon.Web.Gettext, only: [gettext: 1, gettext: 2]
|
||||||
|
|
||||||
alias Mobilizon.{Config, Crypto, Users}
|
alias Mobilizon.{Config, Crypto, Users}
|
||||||
alias Mobilizon.Storage.Repo
|
alias Mobilizon.Storage.Repo
|
||||||
@ -111,11 +111,15 @@ defmodule Mobilizon.Web.Email.User do
|
|||||||
else
|
else
|
||||||
{:error, %Ecto.Changeset{errors: [password: {"registration.error.password_too_short", _}]}} ->
|
{:error, %Ecto.Changeset{errors: [password: {"registration.error.password_too_short", _}]}} ->
|
||||||
{:error,
|
{:error,
|
||||||
"The password you have choosen is too short. Please make sure your password contains at least 6 charaters."}
|
gettext(
|
||||||
|
"The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
)}
|
||||||
|
|
||||||
_err ->
|
_err ->
|
||||||
{:error,
|
{:error,
|
||||||
"The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."}
|
gettext(
|
||||||
|
"The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
)}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
8
mix.exs
8
mix.exs
@ -129,7 +129,7 @@ defmodule Mobilizon.Mixfile do
|
|||||||
{:atomex, "~> 0.4"},
|
{:atomex, "~> 0.4"},
|
||||||
{:cachex, "~> 3.1"},
|
{:cachex, "~> 3.1"},
|
||||||
{:geohax, "~> 0.4.0"},
|
{:geohax, "~> 0.4.0"},
|
||||||
{:mogrify, "~> 0.8.0"},
|
{:mogrify, "~> 0.9"},
|
||||||
{:linkify, "~> 0.3"},
|
{:linkify, "~> 0.3"},
|
||||||
{:http_signatures, "~> 0.1.0"},
|
{:http_signatures, "~> 0.1.0"},
|
||||||
{:ex_cldr, "~> 2.0"},
|
{:ex_cldr, "~> 2.0"},
|
||||||
@ -141,11 +141,11 @@ defmodule Mobilizon.Mixfile do
|
|||||||
{:ip_reserved, "~> 0.1.0"},
|
{:ip_reserved, "~> 0.1.0"},
|
||||||
{:fast_sanitize, "~> 0.1"},
|
{:fast_sanitize, "~> 0.1"},
|
||||||
{:ueberauth, "~> 0.6"},
|
{:ueberauth, "~> 0.6"},
|
||||||
{:ueberauth_twitter, "~> 0.3"},
|
{:ueberauth_twitter, "~> 0.4"},
|
||||||
{:ueberauth_github, "~> 0.7"},
|
{:ueberauth_github, "~> 0.7"},
|
||||||
{:ueberauth_facebook, "~> 0.8"},
|
{:ueberauth_facebook, "~> 0.8"},
|
||||||
{:ueberauth_discord, "~> 0.5"},
|
{:ueberauth_discord, "~> 0.5"},
|
||||||
{:ueberauth_google, "~> 0.9"},
|
{:ueberauth_google, "~> 0.10"},
|
||||||
{:ueberauth_keycloak_strategy,
|
{:ueberauth_keycloak_strategy,
|
||||||
git: "https://github.com/tcitworld/ueberauth_keycloak.git", branch: "upgrade-deps"},
|
git: "https://github.com/tcitworld/ueberauth_keycloak.git", branch: "upgrade-deps"},
|
||||||
{:ueberauth_gitlab_strategy,
|
{:ueberauth_gitlab_strategy,
|
||||||
@ -159,7 +159,7 @@ defmodule Mobilizon.Mixfile do
|
|||||||
{:slugger, "~> 0.3"},
|
{:slugger, "~> 0.3"},
|
||||||
{:sentry, "~> 8.0"},
|
{:sentry, "~> 8.0"},
|
||||||
{:html_entities, "~> 0.5"},
|
{:html_entities, "~> 0.5"},
|
||||||
{:sweet_xml, "~> 0.6.6"},
|
{:sweet_xml, "~> 0.7"},
|
||||||
{:web_push_encryption,
|
{:web_push_encryption,
|
||||||
git: "https://github.com/tcitworld/elixir-web-push-encryption", branch: "otp-24"},
|
git: "https://github.com/tcitworld/elixir-web-push-encryption", branch: "otp-24"},
|
||||||
{:eblurhash, "~> 1.2"},
|
{:eblurhash, "~> 1.2"},
|
||||||
|
44
mix.lock
44
mix.lock
@ -4,9 +4,9 @@
|
|||||||
"absinthe_plug": {:hex, :absinthe_plug, "1.5.8", "38d230641ba9dca8f72f1fed2dfc8abd53b3907d1996363da32434ab6ee5d6ab", [:mix], [{:absinthe, "~> 1.5", [hex: :absinthe, repo: "hexpm", optional: false]}, {:plug, "~> 1.4", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "bbb04176647b735828861e7b2705465e53e2cf54ccf5a73ddd1ebd855f996e5a"},
|
"absinthe_plug": {:hex, :absinthe_plug, "1.5.8", "38d230641ba9dca8f72f1fed2dfc8abd53b3907d1996363da32434ab6ee5d6ab", [:mix], [{:absinthe, "~> 1.5", [hex: :absinthe, repo: "hexpm", optional: false]}, {:plug, "~> 1.4", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "bbb04176647b735828861e7b2705465e53e2cf54ccf5a73ddd1ebd855f996e5a"},
|
||||||
"argon2_elixir": {:hex, :argon2_elixir, "2.4.0", "2a22ea06e979f524c53b42b598fc6ba38cdcbc977a155e33e057732cfb1fb311", [:make, :mix], [{:comeonin, "~> 5.3", [hex: :comeonin, repo: "hexpm", optional: false]}, {:elixir_make, "~> 0.6", [hex: :elixir_make, repo: "hexpm", optional: false]}], "hexpm", "4ea82e183cf8e7f66dab1f767fedcfe6a195e140357ef2b0423146b72e0a551d"},
|
"argon2_elixir": {:hex, :argon2_elixir, "2.4.0", "2a22ea06e979f524c53b42b598fc6ba38cdcbc977a155e33e057732cfb1fb311", [:make, :mix], [{:comeonin, "~> 5.3", [hex: :comeonin, repo: "hexpm", optional: false]}, {:elixir_make, "~> 0.6", [hex: :elixir_make, repo: "hexpm", optional: false]}], "hexpm", "4ea82e183cf8e7f66dab1f767fedcfe6a195e140357ef2b0423146b72e0a551d"},
|
||||||
"atomex": {:hex, :atomex, "0.4.1", "7d3910ff7795db91b9af9f8d3e65af7ac69f235adf03484995fc667a36f3edc5", [:mix], [{:xml_builder, "~> 2.1", [hex: :xml_builder, repo: "hexpm", optional: false]}], "hexpm", "f3ac737f7493d42cfddf917f3ac49d60e0a0cf1a35c0712851b07fe8c0a05c7a"},
|
"atomex": {:hex, :atomex, "0.4.1", "7d3910ff7795db91b9af9f8d3e65af7ac69f235adf03484995fc667a36f3edc5", [:mix], [{:xml_builder, "~> 2.1", [hex: :xml_builder, repo: "hexpm", optional: false]}], "hexpm", "f3ac737f7493d42cfddf917f3ac49d60e0a0cf1a35c0712851b07fe8c0a05c7a"},
|
||||||
"bamboo": {:hex, :bamboo, "2.1.0", "3c58f862efd74fa8c8d48a410ac592b41f7d24785e828566f7a0af549269ddc3", [:mix], [{:hackney, ">= 1.15.2", [hex: :hackney, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:mime, "~> 1.4", [hex: :mime, repo: "hexpm", optional: false]}, {:plug, "~> 1.0", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "f0ad2623b9a1d2dc06dcf289b59df9ebc522f49f3a21971ec87a8fce04e6d33e"},
|
"bamboo": {:hex, :bamboo, "2.2.0", "f10a406d2b7f5123eb1f02edfa043c259db04b47ab956041f279eaac776ef5ce", [:mix], [{:hackney, ">= 1.15.2", [hex: :hackney, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:mime, "~> 1.4", [hex: :mime, repo: "hexpm", optional: false]}, {:plug, "~> 1.0", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "8c3b14ba7d2f40cb4be04128ed1e2aff06d91d9413d38bafb4afccffa3ade4fc"},
|
||||||
"bamboo_phoenix": {:hex, :bamboo_phoenix, "1.0.0", "f3cc591ffb163ed0bf935d256f1f4645cd870cf436545601215745fb9cc9953f", [:mix], [{:bamboo, ">= 2.0.0", [hex: :bamboo, repo: "hexpm", optional: false]}, {:phoenix, ">= 1.3.0", [hex: :phoenix, repo: "hexpm", optional: false]}], "hexpm", "6db88fbb26019c84a47994bb2bd879c0887c29ce6c559bc6385fd54eb8b37dee"},
|
"bamboo_phoenix": {:hex, :bamboo_phoenix, "1.0.0", "f3cc591ffb163ed0bf935d256f1f4645cd870cf436545601215745fb9cc9953f", [:mix], [{:bamboo, ">= 2.0.0", [hex: :bamboo, repo: "hexpm", optional: false]}, {:phoenix, ">= 1.3.0", [hex: :phoenix, repo: "hexpm", optional: false]}], "hexpm", "6db88fbb26019c84a47994bb2bd879c0887c29ce6c559bc6385fd54eb8b37dee"},
|
||||||
"bamboo_smtp": {:hex, :bamboo_smtp, "4.0.1", "7e48188663f6164a81183688bb263be4c3952648fcd3ce52164f44d68777f9cd", [:mix], [{:bamboo, "~> 2.1.0", [hex: :bamboo, repo: "hexpm", optional: false]}, {:gen_smtp, "~> 1.1.1", [hex: :gen_smtp, repo: "hexpm", optional: false]}], "hexpm", "7ff1d62ae39bfb1c14f6d3cddba0fa1482a45c2a2b497a2da601eff7099605c8"},
|
"bamboo_smtp": {:hex, :bamboo_smtp, "4.1.0", "ba547be4146ae592f63af05c6c7b7b5195b2b6ca57eeea9d80070b38eacd528b", [:mix], [{:bamboo, "~> 2.2.0", [hex: :bamboo, repo: "hexpm", optional: false]}, {:gen_smtp, "~> 1.1.1", [hex: :gen_smtp, repo: "hexpm", optional: false]}], "hexpm", "cb1a2856ab0507d10df609428314aa5e18231e8b1801a5bc6e42f319eeb50ad9"},
|
||||||
"bunt": {:hex, :bunt, "0.2.0", "951c6e801e8b1d2cbe58ebbd3e616a869061ddadcc4863d0a2182541acae9a38", [:mix], [], "hexpm", "7af5c7e09fe1d40f76c8e4f9dd2be7cebd83909f31fee7cd0e9eadc567da8353"},
|
"bunt": {:hex, :bunt, "0.2.0", "951c6e801e8b1d2cbe58ebbd3e616a869061ddadcc4863d0a2182541acae9a38", [:mix], [], "hexpm", "7af5c7e09fe1d40f76c8e4f9dd2be7cebd83909f31fee7cd0e9eadc567da8353"},
|
||||||
"cachex": {:hex, :cachex, "3.4.0", "868b2959ea4aeb328c6b60ff66c8d5123c083466ad3c33d3d8b5f142e13101fb", [:mix], [{:eternal, "~> 1.2", [hex: :eternal, repo: "hexpm", optional: false]}, {:jumper, "~> 1.0", [hex: :jumper, repo: "hexpm", optional: false]}, {:sleeplocks, "~> 1.1", [hex: :sleeplocks, repo: "hexpm", optional: false]}, {:unsafe, "~> 1.0", [hex: :unsafe, repo: "hexpm", optional: false]}], "hexpm", "370123b1ab4fba4d2965fb18f87fd758325709787c8c5fce35b3fe80645ccbe5"},
|
"cachex": {:hex, :cachex, "3.4.0", "868b2959ea4aeb328c6b60ff66c8d5123c083466ad3c33d3d8b5f142e13101fb", [:mix], [{:eternal, "~> 1.2", [hex: :eternal, repo: "hexpm", optional: false]}, {:jumper, "~> 1.0", [hex: :jumper, repo: "hexpm", optional: false]}, {:sleeplocks, "~> 1.1", [hex: :sleeplocks, repo: "hexpm", optional: false]}, {:unsafe, "~> 1.0", [hex: :unsafe, repo: "hexpm", optional: false]}], "hexpm", "370123b1ab4fba4d2965fb18f87fd758325709787c8c5fce35b3fe80645ccbe5"},
|
||||||
"certifi": {:hex, :certifi, "2.6.1", "dbab8e5e155a0763eea978c913ca280a6b544bfa115633fa20249c3d396d9493", [:rebar3], [], "hexpm", "524c97b4991b3849dd5c17a631223896272c6b0af446778ba4675a1dff53bb7e"},
|
"certifi": {:hex, :certifi, "2.6.1", "dbab8e5e155a0763eea978c913ca280a6b544bfa115633fa20249c3d396d9493", [:rebar3], [], "hexpm", "524c97b4991b3849dd5c17a631223896272c6b0af446778ba4675a1dff53bb7e"},
|
||||||
@ -36,22 +36,22 @@
|
|||||||
"erlex": {:hex, :erlex, "0.2.6", "c7987d15e899c7a2f34f5420d2a2ea0d659682c06ac607572df55a43753aa12e", [:mix], [], "hexpm", "2ed2e25711feb44d52b17d2780eabf998452f6efda104877a3881c2f8c0c0c75"},
|
"erlex": {:hex, :erlex, "0.2.6", "c7987d15e899c7a2f34f5420d2a2ea0d659682c06ac607572df55a43753aa12e", [:mix], [], "hexpm", "2ed2e25711feb44d52b17d2780eabf998452f6efda104877a3881c2f8c0c0c75"},
|
||||||
"erlsom": {:hex, :erlsom, "1.5.0", "c5a5cdd0ee0e8dca62bcc4b13ff08da24fdefc16ccd8b25282a2fda2ba1be24a", [:rebar3], [], "hexpm", "55a9dbf9cfa77fcfc108bd8e2c4f9f784dea228a8f4b06ea10b684944946955a"},
|
"erlsom": {:hex, :erlsom, "1.5.0", "c5a5cdd0ee0e8dca62bcc4b13ff08da24fdefc16ccd8b25282a2fda2ba1be24a", [:rebar3], [], "hexpm", "55a9dbf9cfa77fcfc108bd8e2c4f9f784dea228a8f4b06ea10b684944946955a"},
|
||||||
"eternal": {:hex, :eternal, "1.2.2", "d1641c86368de99375b98d183042dd6c2b234262b8d08dfd72b9eeaafc2a1abd", [:mix], [], "hexpm", "2c9fe32b9c3726703ba5e1d43a1d255a4f3f2d8f8f9bc19f094c7cb1a7a9e782"},
|
"eternal": {:hex, :eternal, "1.2.2", "d1641c86368de99375b98d183042dd6c2b234262b8d08dfd72b9eeaafc2a1abd", [:mix], [], "hexpm", "2c9fe32b9c3726703ba5e1d43a1d255a4f3f2d8f8f9bc19f094c7cb1a7a9e782"},
|
||||||
"ex_cldr": {:hex, :ex_cldr, "2.22.1", "adda9f44eac88090c6b00ec1cd24861ea1888dc4907dd8b68356ff6b6adb8e84", [:mix], [{:castore, "~> 0.1", [hex: :castore, repo: "hexpm", optional: true]}, {:certifi, "~> 2.5", [hex: :certifi, repo: "hexpm", optional: true]}, {:cldr_utils, "~> 2.15", [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: false]}, {:plug, "~> 1.9", [hex: :plug, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4.0", [hex: :telemetry, repo: "hexpm", optional: true]}], "hexpm", "03744395245fa669d08802370c917d0ac4396045e31c3a51f8224c2e2eabb6af"},
|
"ex_cldr": {:hex, :ex_cldr, "2.23.0", "16aa883c3388a0b27485a810ae2a60d815968a473b5315454ebe2b5264e92a80", [:mix], [{:castore, "~> 0.1", [hex: :castore, repo: "hexpm", optional: true]}, {:certifi, "~> 2.5", [hex: :certifi, repo: "hexpm", optional: true]}, {:cldr_utils, "~> 2.15", [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]}, {:telemetry, "~> 0.4.0", [hex: :telemetry, repo: "hexpm", optional: true]}], "hexpm", "7c9dad3115e2622a4902390591d9c4a2f7c5333bd73f02a02f7b4190394c7347"},
|
||||||
"ex_cldr_calendars": {:hex, :ex_cldr_calendars, "1.14.1", "50b4d2b1105780743647bbcede5109c9efcf57c525cb773ba9467bea817df379", [:mix], [{:calendar_interval, "~> 0.2", [hex: :calendar_interval, repo: "hexpm", optional: true]}, {:earmark, "~> 1.0", [hex: :earmark, repo: "hexpm", optional: false]}, {:ex_cldr_numbers, "~> 2.17", [hex: :ex_cldr_numbers, repo: "hexpm", optional: false]}, {:ex_cldr_units, "~> 3.5", [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", "ffd960e96a1d67d565a59c5d02c16506c4a3df6c70673d8d48087d6b11bca0a3"},
|
"ex_cldr_calendars": {:hex, :ex_cldr_calendars, "1.15.0", "8e43d49d8fe6b51cb16f0803e6f2a3f94081f51ac26cbf775a0745540dc2f16a", [:mix], [{:calendar_interval, "~> 0.2", [hex: :calendar_interval, repo: "hexpm", optional: true]}, {:earmark, "~> 1.0", [hex: :earmark, repo: "hexpm", optional: false]}, {:ex_cldr_numbers, "~> 2.19", [hex: :ex_cldr_numbers, repo: "hexpm", optional: false]}, {:ex_cldr_units, "~> 3.7", [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", "2dae79a776c8680dd8b74046855ca0f3c9d4da28561407d86101fd84a0d8ce07"},
|
||||||
"ex_cldr_currencies": {:hex, :ex_cldr_currencies, "2.10.1", "b581c5ba80fb7631bbd3d5a5a1a00c08fa644cb058987bebfa7218f99e34248c", [:mix], [{:ex_cldr, "~> 2.20", [hex: :ex_cldr, repo: "hexpm", optional: false]}, {:ex_doc, "~> 0.18", [hex: :ex_doc, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "bb0658cd3f696fd0ac53aa92c769dc3ae5a88c8b31eeb365cd46b072d7ac02c3"},
|
"ex_cldr_currencies": {:hex, :ex_cldr_currencies, "2.11.0", "5829c8a19a49fe1a93f3f80764e296add3b6a516175cbd4cacebedfb2a122ee1", [:mix], [{:ex_cldr, "~> 2.23", [hex: :ex_cldr, repo: "hexpm", optional: false]}, {:ex_doc, "~> 0.18", [hex: :ex_doc, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "6c41d28f5fb02c2bb4cf0a4fdbb868cefd9dd7315948a421ce402e25156b079f"},
|
||||||
"ex_cldr_dates_times": {:hex, :ex_cldr_dates_times, "2.7.2", "04aea75ccc017e006961f9c6413aa203630ec2a3bb03091b5943d0013ff21b61", [:mix], [{:calendar_interval, "~> 0.2", [hex: :calendar_interval, repo: "hexpm", optional: true]}, {:ex_cldr_calendars, "~> 1.13", [hex: :ex_cldr_calendars, repo: "hexpm", optional: false]}, {:ex_cldr_numbers, "~> 2.17", [hex: :ex_cldr_numbers, repo: "hexpm", optional: false]}, {:ex_doc, "~> 0.18", [hex: :ex_doc, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "ae6bcb69d5e6585b10265eb984d60894e82ff5b91c0ac61ea7d35278a11e9aa0"},
|
"ex_cldr_dates_times": {:hex, :ex_cldr_dates_times, "2.8.0", "36495988148f1dc4aae1c2ef193dcb524f77008818e986f09850cf693e2f4dd3", [:mix], [{:calendar_interval, "~> 0.2", [hex: :calendar_interval, repo: "hexpm", optional: true]}, {:ex_cldr_calendars, "~> 1.15", [hex: :ex_cldr_calendars, repo: "hexpm", optional: false]}, {:ex_cldr_numbers, "~> 2.19", [hex: :ex_cldr_numbers, repo: "hexpm", optional: false]}, {:ex_doc, "~> 0.18", [hex: :ex_doc, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "673cc60ea7f163436758726c0c38f01587d856e98e5df42b1a8502aa32e8935e"},
|
||||||
"ex_cldr_languages": {:hex, :ex_cldr_languages, "0.2.2", "d7dab93272443b70e18e6aef0f62974418baaca3a3b31a66d51921ec1547113c", [:mix], [{:ex_cldr, "~> 2.2 and >= 2.2.1", [hex: :ex_cldr, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "d9cbf4bf643365b0042e774520ddfcbc31618efd5a5383fac98f75149961622c"},
|
"ex_cldr_languages": {:hex, :ex_cldr_languages, "0.2.2", "d7dab93272443b70e18e6aef0f62974418baaca3a3b31a66d51921ec1547113c", [:mix], [{:ex_cldr, "~> 2.2 and >= 2.2.1", [hex: :ex_cldr, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "d9cbf4bf643365b0042e774520ddfcbc31618efd5a5383fac98f75149961622c"},
|
||||||
"ex_cldr_numbers": {:hex, :ex_cldr_numbers, "2.18.4", "b9829dd3d1ba6fa5237042dd3843715a362cb5f21681d556952ece2a58a79dd5", [:mix], [{:decimal, "~> 1.6 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:ex_cldr, "~> 2.21", [hex: :ex_cldr, repo: "hexpm", optional: false]}, {:ex_cldr_currencies, "~> 2.10", [hex: :ex_cldr_currencies, repo: "hexpm", optional: false]}, {:ex_doc, "~> 0.18", [hex: :ex_doc, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "56aee1591c7c13ec712ea80ae2d2a78812e500e7a4b0bc6834028232638c330d"},
|
"ex_cldr_numbers": {:hex, :ex_cldr_numbers, "2.19.0", "bfefc45b1eda49896eb4d32a36e15efe649827d4fe42422937ee8e14afcd1dfd", [:mix], [{:decimal, "~> 1.6 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:ex_cldr, "~> 2.23", [hex: :ex_cldr, repo: "hexpm", optional: false]}, {:ex_cldr_currencies, "~> 2.11", [hex: :ex_cldr_currencies, repo: "hexpm", optional: false]}, {:ex_doc, "~> 0.18", [hex: :ex_doc, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "0f4696e6b6c357879aaa0b3ce18f2cfc49666696371a8a3c0f9c5963aad614f4"},
|
||||||
"ex_doc": {:hex, :ex_doc, "0.24.2", "e4c26603830c1a2286dae45f4412a4d1980e1e89dc779fcd0181ed1d5a05c8d9", [: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", "e134e1d9e821b8d9e4244687fb2ace58d479b67b282de5158333b0d57c6fb7da"},
|
"ex_doc": {:hex, :ex_doc, "0.25.1", "4b736fa38dc76488a937e5ef2944f5474f3eff921de771b25371345a8dc810bc", [: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", "3200b0a69ddb2028365281fbef3753ea9e728683863d8cdaa96580925c891f67"},
|
||||||
"ex_ical": {:hex, :ex_ical, "0.2.0", "4b928b554614704016cc0c9ee226eb854da9327a1cc460457621ceacb1ac29a6", [:mix], [{:timex, "~> 3.1", [hex: :timex, repo: "hexpm", optional: false]}], "hexpm", "db76473b2ae0259e6633c6c479a5a4d8603f09497f55c88f9ef4d53d2b75befb"},
|
"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_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_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.1.0", "a4d1a027d975a2ba84cec60200e3cb095fe1de6c6b63091ca0880e83830b09bb", [:mix], [], "hexpm", "12d78f3a62c521ee4c9f18bd01ea3b960a3200d5ca21a383b0707f4228486c4e"},
|
"ex_unit_notifier": {:hex, :ex_unit_notifier, "1.2.0", "73ced2ecee0f2da0705e372c21ce61e4e5d927ddb797f73928e52818b9cc1754", [:mix], [], "hexpm", "f38044c9d50de68ad7f0aec4d781a10d9f1c92c62b36bf0227ec0aaa96aee332"},
|
||||||
"exactor": {:hex, :exactor, "2.2.4", "5efb4ddeb2c48d9a1d7c9b465a6fffdd82300eb9618ece5d34c3334d5d7245b1", [:mix], [], "hexpm", "1222419f706e01bfa1095aec9acf6421367dcfab798a6f67c54cf784733cd6b5"},
|
"exactor": {:hex, :exactor, "2.2.4", "5efb4ddeb2c48d9a1d7c9b465a6fffdd82300eb9618ece5d34c3334d5d7245b1", [:mix], [], "hexpm", "1222419f706e01bfa1095aec9acf6421367dcfab798a6f67c54cf784733cd6b5"},
|
||||||
"excoveralls": {:hex, :excoveralls, "0.14.1", "14140e4ef343f2af2de33d35268c77bc7983d7824cb945e6c2af54235bc2e61f", [:mix], [{:hackney, "~> 1.16", [hex: :hackney, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "4a588f9f8cf9dc140cc1f3d0ea4d849b2f76d5d8bee66b73c304bb3d3689c8b0"},
|
"excoveralls": {:hex, :excoveralls, "0.14.2", "f9f5fd0004d7bbeaa28ea9606251bb643c313c3d60710bad1f5809c845b748f0", [:mix], [{:hackney, "~> 1.16", [hex: :hackney, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "ca6fd358621cb4d29311b29d4732c4d47dac70e622850979bc54ed9a3e50f3e1"},
|
||||||
"exgravatar": {:hex, :exgravatar, "2.0.2", "638412896170409da114f98947d3f8d4f38e851b0e329c1cc4cd324d5e2ea081", [:mix], [], "hexpm", "f3deb5baa6fcf354a965d794ee73a956d95f1f79f41bddf69800c713cfb014a1"},
|
"exgravatar": {:hex, :exgravatar, "2.0.2", "638412896170409da114f98947d3f8d4f38e851b0e329c1cc4cd324d5e2ea081", [:mix], [], "hexpm", "f3deb5baa6fcf354a965d794ee73a956d95f1f79f41bddf69800c713cfb014a1"},
|
||||||
"exjsx": {:hex, :exjsx, "4.0.0", "60548841e0212df401e38e63c0078ec57b33e7ea49b032c796ccad8cde794b5c", [:mix], [{:jsx, "~> 2.8.0", [hex: :jsx, repo: "hexpm", optional: false]}], "hexpm", "32e95820a97cffea67830e91514a2ad53b888850442d6d395f53a1ac60c82e07"},
|
"exjsx": {:hex, :exjsx, "4.0.0", "60548841e0212df401e38e63c0078ec57b33e7ea49b032c796ccad8cde794b5c", [:mix], [{:jsx, "~> 2.8.0", [hex: :jsx, repo: "hexpm", optional: false]}], "hexpm", "32e95820a97cffea67830e91514a2ad53b888850442d6d395f53a1ac60c82e07"},
|
||||||
"exvcr": {:hex, :exvcr, "0.12.3", "eca9e0dc8727eed65621c334d34a9640760b40f748a871728cbdbe534d336c11", [:mix], [{:exactor, "~> 2.2", [hex: :exactor, repo: "hexpm", optional: false]}, {:exjsx, "~> 4.0", [hex: :exjsx, repo: "hexpm", optional: false]}, {:httpoison, "~> 1.0", [hex: :httpoison, repo: "hexpm", optional: true]}, {:httpotion, "~> 3.1", [hex: :httpotion, repo: "hexpm", optional: true]}, {:ibrowse, "4.4.0", [hex: :ibrowse, repo: "hexpm", optional: true]}, {:meck, "~> 0.8", [hex: :meck, repo: "hexpm", optional: false]}], "hexpm", "668bd08fad65bb21d4c9bb46f1747e5e01b5734d6387fa792ce0f2eb81b17b2b"},
|
"exvcr": {:hex, :exvcr, "0.13.0", "2cf9c228919094b4222c9ac22ed5855f39fabed067b221045690968651d664a5", [:mix], [{:exactor, "~> 2.2", [hex: :exactor, repo: "hexpm", optional: false]}, {:exjsx, "~> 4.0", [hex: :exjsx, repo: "hexpm", optional: false]}, {:httpoison, "~> 1.0", [hex: :httpoison, repo: "hexpm", optional: true]}, {:httpotion, "~> 3.1", [hex: :httpotion, repo: "hexpm", optional: true]}, {:ibrowse, "4.4.0", [hex: :ibrowse, repo: "hexpm", optional: true]}, {:meck, "~> 0.8", [hex: :meck, repo: "hexpm", optional: false]}], "hexpm", "eca39aeb2ade08a2e09fae3c0680775b2ae1d59a5ddf113deba6c0add23f6bb1"},
|
||||||
"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_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"},
|
"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"},
|
||||||
"file_info": {:hex, :file_info, "0.0.4", "2e0e77f211e833f38ead22cb29ce53761d457d80b3ffe0ffe0eb93880b0963b2", [:mix], [{:mimetype_parser, "~> 0.1.2", [hex: :mimetype_parser, repo: "hexpm", optional: false]}], "hexpm", "50e7ad01c2c8b9339010675fe4dc4a113b8d6ca7eddce24d1d74fd0e762781a5"},
|
"file_info": {:hex, :file_info, "0.0.4", "2e0e77f211e833f38ead22cb29ce53761d457d80b3ffe0ffe0eb93880b0963b2", [:mix], [{:mimetype_parser, "~> 0.1.2", [hex: :mimetype_parser, repo: "hexpm", optional: false]}], "hexpm", "50e7ad01c2c8b9339010675fe4dc4a113b8d6ca7eddce24d1d74fd0e762781a5"},
|
||||||
@ -64,7 +64,7 @@
|
|||||||
"geolix": {:hex, :geolix, "2.0.0", "7e65764bedfc98d08a3ddb24c417657c9d438eff163280b45fbb7de289626acd", [:mix], [], "hexpm", "8742bf588ed0bb7def2c443204d09d355990846c6efdff96ded66aac24c301df"},
|
"geolix": {:hex, :geolix, "2.0.0", "7e65764bedfc98d08a3ddb24c417657c9d438eff163280b45fbb7de289626acd", [:mix], [], "hexpm", "8742bf588ed0bb7def2c443204d09d355990846c6efdff96ded66aac24c301df"},
|
||||||
"geolix_adapter_mmdb2": {:hex, :geolix_adapter_mmdb2, "0.6.0", "6ab9dbf6ea395817aa1fd2597be25d0dda1853c7f664e62716e47728d18bc4f9", [:mix], [{:geolix, "~> 2.0", [hex: :geolix, repo: "hexpm", optional: false]}, {:mmdb2_decoder, "~> 3.0", [hex: :mmdb2_decoder, repo: "hexpm", optional: false]}], "hexpm", "06ff962feae8a310cffdf86b74bfcda6e2d0dccb439bb1f62df2b657b1c0269b"},
|
"geolix_adapter_mmdb2": {:hex, :geolix_adapter_mmdb2, "0.6.0", "6ab9dbf6ea395817aa1fd2597be25d0dda1853c7f664e62716e47728d18bc4f9", [:mix], [{:geolix, "~> 2.0", [hex: :geolix, repo: "hexpm", optional: false]}, {:mmdb2_decoder, "~> 3.0", [hex: :mmdb2_decoder, repo: "hexpm", optional: false]}], "hexpm", "06ff962feae8a310cffdf86b74bfcda6e2d0dccb439bb1f62df2b657b1c0269b"},
|
||||||
"gettext": {:hex, :gettext, "0.18.2", "7df3ea191bb56c0309c00a783334b288d08a879f53a7014341284635850a6e55", [:mix], [], "hexpm", "f9f537b13d4fdd30f3039d33cb80144c3aa1f8d9698e47d7bcbcc8df93b1f5c5"},
|
"gettext": {:hex, :gettext, "0.18.2", "7df3ea191bb56c0309c00a783334b288d08a879f53a7014341284635850a6e55", [:mix], [], "hexpm", "f9f537b13d4fdd30f3039d33cb80144c3aa1f8d9698e47d7bcbcc8df93b1f5c5"},
|
||||||
"guardian": {:hex, :guardian, "2.1.1", "1f02b349f6ba765647cc834036a8d76fa4bd65605342fe3a031df3c99d0d411a", [:mix], [{:jose, "~> 1.8", [hex: :jose, repo: "hexpm", optional: false]}, {:plug, "~> 1.3.3 or ~> 1.4", [hex: :plug, repo: "hexpm", optional: true]}], "hexpm", "189b87ba7ce6b40d6ba029138098b96ffc4ae78f229f5b39539b9141af8bf0f8"},
|
"guardian": {:hex, :guardian, "2.2.0", "0b730e957923ec79547fb8311f1092d2464cb187aebbf1d51f7a3f4dad545583", [:mix], [{:jose, "~> 1.8", [hex: :jose, repo: "hexpm", optional: false]}, {:plug, "~> 1.3.3 or ~> 1.4", [hex: :plug, repo: "hexpm", optional: true]}], "hexpm", "6e3fad1520ece1210372ed9e51bde246cf299b1caf1654663a436ede13d0d822"},
|
||||||
"guardian_db": {:hex, :guardian_db, "2.1.0", "ec95a9d99cdd1e550555d09a7bb4a340d8887aad0697f594590c2fd74be02426", [:mix], [{:ecto, "~> 3.0", [hex: :ecto, repo: "hexpm", optional: false]}, {:ecto_sql, "~> 3.1", [hex: :ecto_sql, repo: "hexpm", optional: false]}, {:guardian, "~> 1.0 or ~> 2.0", [hex: :guardian, repo: "hexpm", optional: false]}, {:postgrex, "~> 0.13", [hex: :postgrex, repo: "hexpm", optional: true]}], "hexpm", "f8e7d543ac92c395f3a7fd5acbe6829faeade57d688f7562e2f0fca8f94a0d70"},
|
"guardian_db": {:hex, :guardian_db, "2.1.0", "ec95a9d99cdd1e550555d09a7bb4a340d8887aad0697f594590c2fd74be02426", [:mix], [{:ecto, "~> 3.0", [hex: :ecto, repo: "hexpm", optional: false]}, {:ecto_sql, "~> 3.1", [hex: :ecto_sql, repo: "hexpm", optional: false]}, {:guardian, "~> 1.0 or ~> 2.0", [hex: :guardian, repo: "hexpm", optional: false]}, {:postgrex, "~> 0.13", [hex: :postgrex, repo: "hexpm", optional: true]}], "hexpm", "f8e7d543ac92c395f3a7fd5acbe6829faeade57d688f7562e2f0fca8f94a0d70"},
|
||||||
"guardian_phoenix": {:hex, :guardian_phoenix, "2.0.1", "89a817265af09a6ddf7cb1e77f17ffca90cea2db10ff888375ef34502b2731b1", [:mix], [{:guardian, "~> 2.0", [hex: :guardian, repo: "hexpm", optional: false]}, {:phoenix, "~> 1.3", [hex: :phoenix, repo: "hexpm", optional: false]}], "hexpm", "21f439246715192b231f228680465d1ed5fbdf01555a4a3b17165532f5f9a08c"},
|
"guardian_phoenix": {:hex, :guardian_phoenix, "2.0.1", "89a817265af09a6ddf7cb1e77f17ffca90cea2db10ff888375ef34502b2731b1", [:mix], [{:guardian, "~> 2.0", [hex: :guardian, repo: "hexpm", optional: false]}, {:phoenix, "~> 1.3", [hex: :phoenix, repo: "hexpm", optional: false]}], "hexpm", "21f439246715192b231f228680465d1ed5fbdf01555a4a3b17165532f5f9a08c"},
|
||||||
"hackney": {:hex, :hackney, "1.17.4", "99da4674592504d3fb0cfef0db84c3ba02b4508bae2dff8c0108baa0d6e0977c", [:rebar3], [{:certifi, "~>2.6.1", [hex: :certifi, repo: "hexpm", optional: false]}, {:idna, "~>6.1.0", [hex: :idna, repo: "hexpm", optional: false]}, {:metrics, "~>1.0.0", [hex: :metrics, repo: "hexpm", optional: false]}, {:mimerl, "~>1.1", [hex: :mimerl, repo: "hexpm", optional: false]}, {:parse_trans, "3.3.1", [hex: :parse_trans, repo: "hexpm", optional: false]}, {:ssl_verify_fun, "~>1.1.0", [hex: :ssl_verify_fun, repo: "hexpm", optional: false]}, {:unicode_util_compat, "~>0.7.0", [hex: :unicode_util_compat, repo: "hexpm", optional: false]}], "hexpm", "de16ff4996556c8548d512f4dbe22dd58a587bf3332e7fd362430a7ef3986b16"},
|
"hackney": {:hex, :hackney, "1.17.4", "99da4674592504d3fb0cfef0db84c3ba02b4508bae2dff8c0108baa0d6e0977c", [:rebar3], [{:certifi, "~>2.6.1", [hex: :certifi, repo: "hexpm", optional: false]}, {:idna, "~>6.1.0", [hex: :idna, repo: "hexpm", optional: false]}, {:metrics, "~>1.0.0", [hex: :metrics, repo: "hexpm", optional: false]}, {:mimerl, "~>1.1", [hex: :mimerl, repo: "hexpm", optional: false]}, {:parse_trans, "3.3.1", [hex: :parse_trans, repo: "hexpm", optional: false]}, {:ssl_verify_fun, "~>1.1.0", [hex: :ssl_verify_fun, repo: "hexpm", optional: false]}, {:unicode_util_compat, "~>0.7.0", [hex: :unicode_util_compat, repo: "hexpm", optional: false]}], "hexpm", "de16ff4996556c8548d512f4dbe22dd58a587bf3332e7fd362430a7ef3986b16"},
|
||||||
@ -81,7 +81,7 @@
|
|||||||
"jsx": {:hex, :jsx, "2.8.3", "a05252d381885240744d955fbe3cf810504eb2567164824e19303ea59eef62cf", [:mix, :rebar3], [], "hexpm", "fc3499fed7a726995aa659143a248534adc754ebd16ccd437cd93b649a95091f"},
|
"jsx": {:hex, :jsx, "2.8.3", "a05252d381885240744d955fbe3cf810504eb2567164824e19303ea59eef62cf", [:mix, :rebar3], [], "hexpm", "fc3499fed7a726995aa659143a248534adc754ebd16ccd437cd93b649a95091f"},
|
||||||
"jumper": {:hex, :jumper, "1.0.1", "3c00542ef1a83532b72269fab9f0f0c82bf23a35e27d278bfd9ed0865cecabff", [:mix], [], "hexpm", "318c59078ac220e966d27af3646026db9b5a5e6703cb2aa3e26bcfaba65b7433"},
|
"jumper": {:hex, :jumper, "1.0.1", "3c00542ef1a83532b72269fab9f0f0c82bf23a35e27d278bfd9ed0865cecabff", [:mix], [], "hexpm", "318c59078ac220e966d27af3646026db9b5a5e6703cb2aa3e26bcfaba65b7433"},
|
||||||
"junit_formatter": {:hex, :junit_formatter, "3.3.0", "bd7914d92885f7cf949dbe1dc6bacf76badfb2c1f5f7b3f9433c20e5b6ec42c8", [:mix], [], "hexpm", "4d040410925324b155ae4c7d41e884a0cdebe53b917bee4f22adf152e987a666"},
|
"junit_formatter": {:hex, :junit_formatter, "3.3.0", "bd7914d92885f7cf949dbe1dc6bacf76badfb2c1f5f7b3f9433c20e5b6ec42c8", [:mix], [], "hexpm", "4d040410925324b155ae4c7d41e884a0cdebe53b917bee4f22adf152e987a666"},
|
||||||
"linkify": {:hex, :linkify, "0.5.0", "e0ea8de73ff44742d6a889721221f4c4eccaad5284957ee9832ffeb347602d54", [:mix], [], "hexpm", "4ccd958350aee7c51c89e21f05b15d30596ebbba707e051d21766be1809df2d7"},
|
"linkify": {:hex, :linkify, "0.5.1", "6dc415cbc948b2f6ecec7cb226aab7ba9d3a1815bb501ae33e042334d707ecee", [:mix], [], "hexpm", "a3128c7e22fada4aa7214009501d8131e1fa3faf2f0a68b33dba379dc84ff944"},
|
||||||
"makeup": {:hex, :makeup, "1.0.5", "d5a830bc42c9800ce07dd97fa94669dfb93d3bf5fcf6ea7a0c67b2e0e4a7f26c", [:mix], [{:nimble_parsec, "~> 0.5 or ~> 1.0", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "cfa158c02d3f5c0c665d0af11512fed3fba0144cf1aadee0f2ce17747fba2ca9"},
|
"makeup": {:hex, :makeup, "1.0.5", "d5a830bc42c9800ce07dd97fa94669dfb93d3bf5fcf6ea7a0c67b2e0e4a7f26c", [:mix], [{:nimble_parsec, "~> 0.5 or ~> 1.0", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "cfa158c02d3f5c0c665d0af11512fed3fba0144cf1aadee0f2ce17747fba2ca9"},
|
||||||
"makeup_elixir": {:hex, :makeup_elixir, "0.15.1", "b5888c880d17d1cc3e598f05cdb5b5a91b7b17ac4eaf5f297cb697663a1094dd", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}, {:nimble_parsec, "~> 1.1", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "db68c173234b07ab2a07f645a5acdc117b9f99d69ebf521821d89690ae6c6ec8"},
|
"makeup_elixir": {:hex, :makeup_elixir, "0.15.1", "b5888c880d17d1cc3e598f05cdb5b5a91b7b17ac4eaf5f297cb697663a1094dd", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}, {:nimble_parsec, "~> 1.1", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "db68c173234b07ab2a07f645a5acdc117b9f99d69ebf521821d89690ae6c6ec8"},
|
||||||
"makeup_erlang": {:hex, :makeup_erlang, "0.1.1", "3fcb7f09eb9d98dc4d208f49cc955a34218fc41ff6b84df7c75b3e6e533cc65f", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}], "hexpm", "174d0809e98a4ef0b3309256cbf97101c6ec01c4ab0b23e926a9e17df2077cbb"},
|
"makeup_erlang": {:hex, :makeup_erlang, "0.1.1", "3fcb7f09eb9d98dc4d208f49cc955a34218fc41ff6b84df7c75b3e6e533cc65f", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}], "hexpm", "174d0809e98a4ef0b3309256cbf97101c6ec01c4ab0b23e926a9e17df2077cbb"},
|
||||||
@ -93,24 +93,24 @@
|
|||||||
"mix_test_watch": {:hex, :mix_test_watch, "1.0.3", "63d5b21e9278abf519f359e6d59aed704ed3c72ec38be6ab22306ae5dc9a2e06", [:mix], [{:file_system, "~> 0.2.1 or ~> 0.3", [hex: :file_system, repo: "hexpm", optional: false]}], "hexpm", "7352e91952d9748fb4f8aebe0a60357cdaf4bd6d6c42b5139c78fbcda6a0d7a2"},
|
"mix_test_watch": {:hex, :mix_test_watch, "1.0.3", "63d5b21e9278abf519f359e6d59aed704ed3c72ec38be6ab22306ae5dc9a2e06", [:mix], [{:file_system, "~> 0.2.1 or ~> 0.3", [hex: :file_system, repo: "hexpm", optional: false]}], "hexpm", "7352e91952d9748fb4f8aebe0a60357cdaf4bd6d6c42b5139c78fbcda6a0d7a2"},
|
||||||
"mmdb2_decoder": {:hex, :mmdb2_decoder, "3.0.0", "54828676a36e75e9a25bc9a0bb0598d4c7fcc767bf0b40674850b22e05b7b6cc", [:mix], [], "hexpm", "359dc9242915538d1dceb9f6d96c72201dca76ce62e49d22e2ed1e86f20bea8e"},
|
"mmdb2_decoder": {:hex, :mmdb2_decoder, "3.0.0", "54828676a36e75e9a25bc9a0bb0598d4c7fcc767bf0b40674850b22e05b7b6cc", [:mix], [], "hexpm", "359dc9242915538d1dceb9f6d96c72201dca76ce62e49d22e2ed1e86f20bea8e"},
|
||||||
"mock": {:hex, :mock, "0.3.7", "75b3bbf1466d7e486ea2052a73c6e062c6256fb429d6797999ab02fa32f29e03", [:mix], [{:meck, "~> 0.9.2", [hex: :meck, repo: "hexpm", optional: false]}], "hexpm", "4da49a4609e41fd99b7836945c26f373623ea968cfb6282742bcb94440cf7e5c"},
|
"mock": {:hex, :mock, "0.3.7", "75b3bbf1466d7e486ea2052a73c6e062c6256fb429d6797999ab02fa32f29e03", [:mix], [{:meck, "~> 0.9.2", [hex: :meck, repo: "hexpm", optional: false]}], "hexpm", "4da49a4609e41fd99b7836945c26f373623ea968cfb6282742bcb94440cf7e5c"},
|
||||||
"mogrify": {:hex, :mogrify, "0.8.0", "3506f3ca3f7b95a155f3b4ef803b5db176f5a0633723e3fe85e0d6399e3b11c8", [:mix], [], "hexpm", "2278d245f07056ea3b586e98801e933695147066fa4cf563f552c1b4f0ff8ad9"},
|
"mogrify": {:hex, :mogrify, "0.9.1", "a26f107c4987477769f272bd0f7e3ac4b7b75b11ba597fd001b877beffa9c068", [:mix], [], "hexpm", "134edf189337d2125c0948bf0c228fdeef975c594317452d536224069a5b7f05"},
|
||||||
"mox": {:hex, :mox, "1.0.0", "4b3c7005173f47ff30641ba044eb0fe67287743eec9bd9545e37f3002b0a9f8b", [:mix], [], "hexpm", "201b0a20b7abdaaab083e9cf97884950f8a30a1350a1da403b3145e213c6f4df"},
|
"mox": {:hex, :mox, "1.0.0", "4b3c7005173f47ff30641ba044eb0fe67287743eec9bd9545e37f3002b0a9f8b", [:mix], [], "hexpm", "201b0a20b7abdaaab083e9cf97884950f8a30a1350a1da403b3145e213c6f4df"},
|
||||||
"nimble_parsec": {:hex, :nimble_parsec, "1.1.0", "3a6fca1550363552e54c216debb6a9e95bd8d32348938e13de5eda962c0d7f89", [:mix], [], "hexpm", "08eb32d66b706e913ff748f11694b17981c0b04a33ef470e33e11b3d3ac8f54b"},
|
"nimble_parsec": {:hex, :nimble_parsec, "1.1.0", "3a6fca1550363552e54c216debb6a9e95bd8d32348938e13de5eda962c0d7f89", [:mix], [], "hexpm", "08eb32d66b706e913ff748f11694b17981c0b04a33ef470e33e11b3d3ac8f54b"},
|
||||||
"nimble_pool": {:hex, :nimble_pool, "0.1.0", "ffa9d5be27eee2b00b0c634eb649aa27f97b39186fec3c493716c2a33e784ec6", [:mix], [], "hexpm", "343a1eaa620ddcf3430a83f39f2af499fe2370390d4f785cd475b4df5acaf3f9"},
|
"nimble_pool": {:hex, :nimble_pool, "0.1.0", "ffa9d5be27eee2b00b0c634eb649aa27f97b39186fec3c493716c2a33e784ec6", [:mix], [], "hexpm", "343a1eaa620ddcf3430a83f39f2af499fe2370390d4f785cd475b4df5acaf3f9"},
|
||||||
"oauth2": {:hex, :oauth2, "2.0.0", "338382079fe16c514420fa218b0903f8ad2d4bfc0ad0c9f988867dfa246731b0", [:mix], [{:hackney, "~> 1.13", [hex: :hackney, repo: "hexpm", optional: false]}], "hexpm", "881b8364ac7385f9fddc7949379cbe3f7081da37233a1aa7aab844670a91e7e7"},
|
"oauth2": {:hex, :oauth2, "2.0.0", "338382079fe16c514420fa218b0903f8ad2d4bfc0ad0c9f988867dfa246731b0", [:mix], [{:hackney, "~> 1.13", [hex: :hackney, repo: "hexpm", optional: false]}], "hexpm", "881b8364ac7385f9fddc7949379cbe3f7081da37233a1aa7aab844670a91e7e7"},
|
||||||
"oauther": {:hex, :oauther, "1.1.1", "7d8b16167bb587ecbcddd3f8792beb9ec3e7b65c1f8ebd86b8dd25318d535752", [:mix], [], "hexpm", "9374f4302045321874cccdc57eb975893643bd69c3b22bf1312dab5f06e5788e"},
|
"oauther": {:hex, :oauther, "1.1.1", "7d8b16167bb587ecbcddd3f8792beb9ec3e7b65c1f8ebd86b8dd25318d535752", [:mix], [], "hexpm", "9374f4302045321874cccdc57eb975893643bd69c3b22bf1312dab5f06e5788e"},
|
||||||
"oban": {:hex, :oban, "2.7.2", "93ea2a767bded05d37924f26fa4ac0600f8e256689e0b76c91315e5be45e2d58", [:mix], [{:ecto_sql, ">= 3.4.3", [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", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "254bbcd6526b355ce79a93831d1375cd58725ff282f2fa0d362ef194f1218ef1"},
|
"oban": {:hex, :oban, "2.8.0", "e44b19a30e30bb983099f55d59749316ff0eaf5dfef4214e1190738176653e50", [:mix], [{:ecto_sql, ">= 3.4.3", [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", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "2954a2ac418f7cc4217c0772a3dd3a70e2966240583b97f4126a489e1300a573"},
|
||||||
"parse_trans": {:hex, :parse_trans, "3.3.1", "16328ab840cc09919bd10dab29e431da3af9e9e7e7e6f0089dd5a2d2820011d8", [:rebar3], [], "hexpm", "07cd9577885f56362d414e8c4c4e6bdf10d43a8767abb92d24cbe8b24c54888b"},
|
"parse_trans": {:hex, :parse_trans, "3.3.1", "16328ab840cc09919bd10dab29e431da3af9e9e7e7e6f0089dd5a2d2820011d8", [:rebar3], [], "hexpm", "07cd9577885f56362d414e8c4c4e6bdf10d43a8767abb92d24cbe8b24c54888b"},
|
||||||
"phoenix": {:hex, :phoenix, "1.5.9", "a6368d36cfd59d917b37c44386e01315bc89f7609a10a45a22f47c007edf2597", [:mix], [{:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:phoenix_html, "~> 2.13 or ~> 3.0", [hex: :phoenix_html, repo: "hexpm", optional: true]}, {:phoenix_pubsub, "~> 2.0", [hex: :phoenix_pubsub, repo: "hexpm", optional: false]}, {:plug, "~> 1.10", [hex: :plug, repo: "hexpm", optional: false]}, {:plug_cowboy, "~> 1.0 or ~> 2.2", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:plug_crypto, "~> 1.1.2 or ~> 1.2", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "7e4bce20a67c012f1fbb0af90e5da49fa7bf0d34e3a067795703b74aef75427d"},
|
"phoenix": {:hex, :phoenix, "1.5.9", "a6368d36cfd59d917b37c44386e01315bc89f7609a10a45a22f47c007edf2597", [:mix], [{:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:phoenix_html, "~> 2.13 or ~> 3.0", [hex: :phoenix_html, repo: "hexpm", optional: true]}, {:phoenix_pubsub, "~> 2.0", [hex: :phoenix_pubsub, repo: "hexpm", optional: false]}, {:plug, "~> 1.10", [hex: :plug, repo: "hexpm", optional: false]}, {:plug_cowboy, "~> 1.0 or ~> 2.2", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:plug_crypto, "~> 1.1.2 or ~> 1.2", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "7e4bce20a67c012f1fbb0af90e5da49fa7bf0d34e3a067795703b74aef75427d"},
|
||||||
"phoenix_ecto": {:hex, :phoenix_ecto, "4.3.0", "2c69a452c2e0ee8c93345ae1cdc1696ef4877ff9cbb15c305def41960c3c4ebf", [:mix], [{:ecto, "~> 3.0", [hex: :ecto, repo: "hexpm", optional: false]}, {:phoenix_html, "~> 2.14.2 or ~> 3.0", [hex: :phoenix_html, repo: "hexpm", optional: true]}, {:plug, "~> 1.0", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "0ac491924217550c8f42c81c1f390b5d81517d12ceaf9abf3e701156760a848e"},
|
"phoenix_ecto": {:hex, :phoenix_ecto, "4.3.0", "2c69a452c2e0ee8c93345ae1cdc1696ef4877ff9cbb15c305def41960c3c4ebf", [:mix], [{:ecto, "~> 3.0", [hex: :ecto, repo: "hexpm", optional: false]}, {:phoenix_html, "~> 2.14.2 or ~> 3.0", [hex: :phoenix_html, repo: "hexpm", optional: true]}, {:plug, "~> 1.0", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "0ac491924217550c8f42c81c1f390b5d81517d12ceaf9abf3e701156760a848e"},
|
||||||
"phoenix_html": {:hex, :phoenix_html, "2.14.3", "51f720d0d543e4e157ff06b65de38e13303d5778a7919bcc696599e5934271b8", [:mix], [{:plug, "~> 1.5", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "efd697a7fff35a13eeeb6b43db884705cba353a1a41d127d118fda5f90c8e80f"},
|
"phoenix_html": {:hex, :phoenix_html, "2.14.3", "51f720d0d543e4e157ff06b65de38e13303d5778a7919bcc696599e5934271b8", [:mix], [{:plug, "~> 1.5", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "efd697a7fff35a13eeeb6b43db884705cba353a1a41d127d118fda5f90c8e80f"},
|
||||||
"phoenix_live_reload": {:hex, :phoenix_live_reload, "1.3.2", "812bb593fb85ab54876265379f162934c276fca04234c6b3e8bbd32a2bfbfdba", [: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", "6d6f1d3592b677d5f3d0cb743c7c322eb52d975b4ef09cb4a1273bbc9da4249e"},
|
"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"},
|
||||||
"phoenix_pubsub": {:hex, :phoenix_pubsub, "2.0.0", "a1ae76717bb168cdeb10ec9d92d1480fec99e3080f011402c0a2d68d47395ffb", [:mix], [], "hexpm", "c52d948c4f261577b9c6fa804be91884b381a7f8f18450c5045975435350f771"},
|
"phoenix_pubsub": {:hex, :phoenix_pubsub, "2.0.0", "a1ae76717bb168cdeb10ec9d92d1480fec99e3080f011402c0a2d68d47395ffb", [:mix], [], "hexpm", "c52d948c4f261577b9c6fa804be91884b381a7f8f18450c5045975435350f771"},
|
||||||
"plug": {:hex, :plug, "1.11.1", "f2992bac66fdae679453c9e86134a4201f6f43a687d8ff1cd1b2862d53c80259", [:mix], [{:mime, "~> 1.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_crypto, "~> 1.1.1 or ~> 1.2", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "23524e4fefbb587c11f0833b3910bfb414bf2e2534d61928e920f54e3a1b881f"},
|
"plug": {:hex, :plug, "1.12.1", "645678c800601d8d9f27ad1aebba1fdb9ce5b2623ddb961a074da0b96c35187d", [:mix], [{:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_crypto, "~> 1.1.1 or ~> 1.2", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.3 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "d57e799a777bc20494b784966dc5fbda91eb4a09f571f76545b72a634ce0d30b"},
|
||||||
"plug_cowboy": {:hex, :plug_cowboy, "2.5.0", "51c998f788c4e68fc9f947a5eba8c215fbb1d63a520f7604134cab0270ea6513", [:mix], [{:cowboy, "~> 2.7", [hex: :cowboy, repo: "hexpm", optional: false]}, {:cowboy_telemetry, "~> 0.3", [hex: :cowboy_telemetry, repo: "hexpm", optional: false]}, {:plug, "~> 1.7", [hex: :plug, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "5b2c8925a5e2587446f33810a58c01e66b3c345652eeec809b76ba007acde71a"},
|
"plug_cowboy": {:hex, :plug_cowboy, "2.5.1", "7cc96ff645158a94cf3ec9744464414f02287f832d6847079adfe0b58761cbd0", [:mix], [{:cowboy, "~> 2.7", [hex: :cowboy, repo: "hexpm", optional: false]}, {:cowboy_telemetry, "~> 0.3", [hex: :cowboy_telemetry, repo: "hexpm", optional: false]}, {:plug, "~> 1.7", [hex: :plug, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "107d0a5865fa92bcb48e631cc0729ae9ccfa0a9f9a1bd8f01acb513abf1c2d64"},
|
||||||
"plug_crypto": {:hex, :plug_crypto, "1.2.2", "05654514ac717ff3a1843204b424477d9e60c143406aa94daf2274fdd280794d", [:mix], [], "hexpm", "87631c7ad914a5a445f0a3809f99b079113ae4ed4b867348dd9eec288cecb6db"},
|
"plug_crypto": {:hex, :plug_crypto, "1.2.2", "05654514ac717ff3a1843204b424477d9e60c143406aa94daf2274fdd280794d", [:mix], [], "hexpm", "87631c7ad914a5a445f0a3809f99b079113ae4ed4b867348dd9eec288cecb6db"},
|
||||||
"poison": {:hex, :poison, "4.0.1", "bcb755a16fac91cad79bfe9fc3585bb07b9331e50cfe3420a24bcc2d735709ae", [:mix], [], "hexpm", "ba8836feea4b394bb718a161fc59a288fe0109b5006d6bdf97b6badfcf6f0f25"},
|
"poison": {:hex, :poison, "4.0.1", "bcb755a16fac91cad79bfe9fc3585bb07b9331e50cfe3420a24bcc2d735709ae", [:mix], [], "hexpm", "ba8836feea4b394bb718a161fc59a288fe0109b5006d6bdf97b6badfcf6f0f25"},
|
||||||
"postgrex": {:hex, :postgrex, "0.15.9", "46f8fe6f25711aeb861c4d0ae09780facfdf3adbd2fb5594ead61504dd489bda", [:mix], [{:connection, "~> 1.0", [hex: :connection, repo: "hexpm", optional: false]}, {:db_connection, "~> 2.1", [hex: :db_connection, repo: "hexpm", optional: false]}, {:decimal, "~> 1.5 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "610719103e4cb2223d4ab78f9f0f3e720320eeca6011415ab4137ddef730adee"},
|
"postgrex": {:hex, :postgrex, "0.15.10", "2809dee1b1d76f7cbabe570b2a9285c2e7b41be60cf792f5f2804a54b838a067", [:mix], [{:connection, "~> 1.0", [hex: :connection, repo: "hexpm", optional: false]}, {:db_connection, "~> 2.1", [hex: :db_connection, repo: "hexpm", optional: false]}, {:decimal, "~> 1.5 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "1560ca427542f6b213f8e281633ae1a3b31cdbcd84ebd7f50628765b8f6132be"},
|
||||||
"progress_bar": {:hex, :progress_bar, "2.0.1", "7b40200112ae533d5adceb80ff75fbe66dc753bca5f6c55c073bfc122d71896d", [:mix], [{:decimal, "~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}], "hexpm", "2519eb58a2f149a3a094e729378256d8cb6d96a259ec94841bd69fdc71f18f87"},
|
"progress_bar": {:hex, :progress_bar, "2.0.1", "7b40200112ae533d5adceb80ff75fbe66dc753bca5f6c55c073bfc122d71896d", [:mix], [{:decimal, "~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}], "hexpm", "2519eb58a2f149a3a094e729378256d8cb6d96a259ec94841bd69fdc71f18f87"},
|
||||||
"ranch": {:hex, :ranch, "1.8.0", "8c7a100a139fd57f17327b6413e4167ac559fbc04ca7448e9be9057311597a1d", [:make, :rebar3], [], "hexpm", "49fbcfd3682fab1f5d109351b61257676da1a2fdbe295904176d5e521a2ddfe5"},
|
"ranch": {:hex, :ranch, "1.8.0", "8c7a100a139fd57f17327b6413e4167ac559fbc04ca7448e9be9057311597a1d", [:make, :rebar3], [], "hexpm", "49fbcfd3682fab1f5d109351b61257676da1a2fdbe295904176d5e521a2ddfe5"},
|
||||||
"remote_ip": {:hex, :remote_ip, "1.0.0", "3d7fb45204a5704443f480cee9515e464997f52c35e0a60b6ece1f81484067ae", [:mix], [{:combine, "~> 0.10", [hex: :combine, repo: "hexpm", optional: false]}, {:plug, "~> 1.10", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "9e9fcad4e50c43b5234bb6a9629ed6ab223f3ed07147bd35470e4ee5c8caf907"},
|
"remote_ip": {:hex, :remote_ip, "1.0.0", "3d7fb45204a5704443f480cee9515e464997f52c35e0a60b6ece1f81484067ae", [:mix], [{:combine, "~> 0.10", [hex: :combine, repo: "hexpm", optional: false]}, {:plug, "~> 1.10", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "9e9fcad4e50c43b5234bb6a9629ed6ab223f3ed07147bd35470e4ee5c8caf907"},
|
||||||
@ -122,14 +122,14 @@
|
|||||||
"sobelow": {:hex, :sobelow, "0.11.1", "23438964486f8112b41e743bbfd402da3e5b296fdc9eacab29914b79c48916dd", [:mix], [{:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "9897363a7eff96f4809304a90aad819e2ad5e5d24db547af502885146746a53c"},
|
"sobelow": {:hex, :sobelow, "0.11.1", "23438964486f8112b41e743bbfd402da3e5b296fdc9eacab29914b79c48916dd", [:mix], [{:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "9897363a7eff96f4809304a90aad819e2ad5e5d24db547af502885146746a53c"},
|
||||||
"ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.6", "cf344f5692c82d2cd7554f5ec8fd961548d4fd09e7d22f5b62482e5aeaebd4b0", [:make, :mix, :rebar3], [], "hexpm", "bdb0d2471f453c88ff3908e7686f86f9be327d065cc1ec16fa4540197ea04680"},
|
"ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.6", "cf344f5692c82d2cd7554f5ec8fd961548d4fd09e7d22f5b62482e5aeaebd4b0", [:make, :mix, :rebar3], [], "hexpm", "bdb0d2471f453c88ff3908e7686f86f9be327d065cc1ec16fa4540197ea04680"},
|
||||||
"struct_access": {:hex, :struct_access, "1.1.2", "a42e6ceedd9b9ea090ee94a6da089d56e16f374dbbc010c3eebdf8be17df286f", [:mix], [], "hexpm", "e4c411dcc0226081b95709909551fc92b8feb1a3476108348ea7e3f6c12e586a"},
|
"struct_access": {:hex, :struct_access, "1.1.2", "a42e6ceedd9b9ea090ee94a6da089d56e16f374dbbc010c3eebdf8be17df286f", [:mix], [], "hexpm", "e4c411dcc0226081b95709909551fc92b8feb1a3476108348ea7e3f6c12e586a"},
|
||||||
"sweet_xml": {:hex, :sweet_xml, "0.6.6", "fc3e91ec5dd7c787b6195757fbcf0abc670cee1e4172687b45183032221b66b8", [:mix], [], "hexpm", "2e1ec458f892ffa81f9f8386e3f35a1af6db7a7a37748a64478f13163a1f3573"},
|
"sweet_xml": {:hex, :sweet_xml, "0.7.0", "39ca6a53c526a1759672690656d5a787bee1016bfff467310170f9b428a238cb", [:mix], [], "hexpm", "2f18cb07f22b5a0d3e99d8b7e4176020f0051f90e449968821e4fde930edd945"},
|
||||||
"telemetry": {:hex, :telemetry, "0.4.3", "a06428a514bdbc63293cd9a6263aad00ddeb66f608163bdec7c8995784080818", [:rebar3], [], "hexpm", "eb72b8365ffda5bed68a620d1da88525e326cb82a75ee61354fc24b844768041"},
|
"telemetry": {:hex, :telemetry, "0.4.3", "a06428a514bdbc63293cd9a6263aad00ddeb66f608163bdec7c8995784080818", [:rebar3], [], "hexpm", "eb72b8365ffda5bed68a620d1da88525e326cb82a75ee61354fc24b844768041"},
|
||||||
"tesla": {:hex, :tesla, "1.4.1", "ff855f1cac121e0d16281b49e8f066c4a0d89965f98864515713878cca849ac8", [:mix], [{:castore, "~> 0.1", [hex: :castore, repo: "hexpm", optional: true]}, {:exjsx, ">= 3.0.0", [hex: :exjsx, repo: "hexpm", optional: true]}, {:finch, "~> 0.3", [hex: :finch, repo: "hexpm", optional: true]}, {:fuse, "~> 2.4", [hex: :fuse, repo: "hexpm", optional: true]}, {:gun, "~> 1.3", [hex: :gun, repo: "hexpm", optional: true]}, {:hackney, "~> 1.6", [hex: :hackney, repo: "hexpm", optional: true]}, {:ibrowse, "~> 4.4.0", [hex: :ibrowse, repo: "hexpm", optional: true]}, {:jason, ">= 1.0.0", [hex: :jason, repo: "hexpm", optional: true]}, {:mime, "~> 1.0", [hex: :mime, repo: "hexpm", optional: false]}, {:mint, "~> 1.0", [hex: :mint, repo: "hexpm", optional: true]}, {:poison, ">= 1.0.0", [hex: :poison, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4", [hex: :telemetry, repo: "hexpm", optional: true]}], "hexpm", "95f5de35922c8c4b3945bee7406f66eb680b0955232f78f5fb7e853aa1ce201a"},
|
"tesla": {:hex, :tesla, "1.4.2", "54fc2c989b63c3c9ff675c2f193d824325a802e61575063363eaa97f471af2ed", [:mix], [{:castore, "~> 0.1", [hex: :castore, repo: "hexpm", optional: true]}, {:exjsx, ">= 3.0.0", [hex: :exjsx, repo: "hexpm", optional: true]}, {:finch, "~> 0.3", [hex: :finch, repo: "hexpm", optional: true]}, {:fuse, "~> 2.4", [hex: :fuse, repo: "hexpm", optional: true]}, {:gun, "~> 1.3", [hex: :gun, repo: "hexpm", optional: true]}, {:hackney, "~> 1.6", [hex: :hackney, repo: "hexpm", optional: true]}, {:ibrowse, "~> 4.4.0", [hex: :ibrowse, repo: "hexpm", optional: true]}, {:jason, ">= 1.0.0", [hex: :jason, repo: "hexpm", optional: true]}, {:mime, "~> 1.0", [hex: :mime, repo: "hexpm", optional: false]}, {:mint, "~> 1.0", [hex: :mint, repo: "hexpm", optional: true]}, {:poison, ">= 1.0.0", [hex: :poison, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4", [hex: :telemetry, repo: "hexpm", optional: true]}], "hexpm", "aa3a4130a662a16471a6847fecd4772e2adaf9a4693488f022c612c0bb98c9fd"},
|
||||||
"timex": {:hex, :timex, "3.7.5", "3eca56e23bfa4e0848f0b0a29a92fa20af251a975116c6d504966e8a90516dfd", [:mix], [{:combine, "~> 0.10", [hex: :combine, repo: "hexpm", optional: false]}, {:gettext, "~> 0.10", [hex: :gettext, repo: "hexpm", optional: false]}, {:tzdata, "~> 1.0", [hex: :tzdata, repo: "hexpm", optional: false]}], "hexpm", "a15608dca680f2ef663d71c95842c67f0af08a0f3b1d00e17bbd22872e2874e4"},
|
"timex": {:hex, :timex, "3.7.5", "3eca56e23bfa4e0848f0b0a29a92fa20af251a975116c6d504966e8a90516dfd", [:mix], [{:combine, "~> 0.10", [hex: :combine, repo: "hexpm", optional: false]}, {:gettext, "~> 0.10", [hex: :gettext, repo: "hexpm", optional: false]}, {:tzdata, "~> 1.0", [hex: :tzdata, repo: "hexpm", optional: false]}], "hexpm", "a15608dca680f2ef663d71c95842c67f0af08a0f3b1d00e17bbd22872e2874e4"},
|
||||||
"tzdata": {:hex, :tzdata, "1.1.0", "72f5babaa9390d0f131465c8702fa76da0919e37ba32baa90d93c583301a8359", [:mix], [{:hackney, "~> 1.17", [hex: :hackney, repo: "hexpm", optional: false]}], "hexpm", "18f453739b48d3dc5bcf0e8906d2dc112bb40baafe2c707596d89f3c8dd14034"},
|
"tzdata": {:hex, :tzdata, "1.1.0", "72f5babaa9390d0f131465c8702fa76da0919e37ba32baa90d93c583301a8359", [:mix], [{:hackney, "~> 1.17", [hex: :hackney, repo: "hexpm", optional: false]}], "hexpm", "18f453739b48d3dc5bcf0e8906d2dc112bb40baafe2c707596d89f3c8dd14034"},
|
||||||
"ueberauth": {:hex, :ueberauth, "0.6.3", "d42ace28b870e8072cf30e32e385579c57b9cc96ec74fa1f30f30da9c14f3cc0", [:mix], [{:plug, "~> 1.5", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "afc293d8a1140d6591b53e3eaf415ca92842cb1d32fad3c450c6f045f7f91b60"},
|
"ueberauth": {:hex, :ueberauth, "0.6.3", "d42ace28b870e8072cf30e32e385579c57b9cc96ec74fa1f30f30da9c14f3cc0", [:mix], [{:plug, "~> 1.5", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "afc293d8a1140d6591b53e3eaf415ca92842cb1d32fad3c450c6f045f7f91b60"},
|
||||||
"ueberauth_discord": {:hex, :ueberauth_discord, "0.6.0", "d6ec040e4195c4138b9a959c79024ab4c213ba1aed9fc08099ecff141a6486da", [:mix], [{:oauth2, "~> 1.0 or ~> 2.0", [hex: :oauth2, repo: "hexpm", optional: false]}, {:ueberauth, "~> 0.6.3", [hex: :ueberauth, repo: "hexpm", optional: false]}], "hexpm", "c5ea960191c1d6c3a974947cae4d57efa565a9a0796b8e82bee45fac7ae2fabc"},
|
"ueberauth_discord": {:hex, :ueberauth_discord, "0.6.0", "d6ec040e4195c4138b9a959c79024ab4c213ba1aed9fc08099ecff141a6486da", [:mix], [{:oauth2, "~> 1.0 or ~> 2.0", [hex: :oauth2, repo: "hexpm", optional: false]}, {:ueberauth, "~> 0.6.3", [hex: :ueberauth, repo: "hexpm", optional: false]}], "hexpm", "c5ea960191c1d6c3a974947cae4d57efa565a9a0796b8e82bee45fac7ae2fabc"},
|
||||||
"ueberauth_facebook": {:hex, :ueberauth_facebook, "0.8.1", "c254be4ab367c276773c2e41d3c0fe343ae118e244afc8d5a4e3e5c438951fdc", [:mix], [{:oauth2, "~> 1.0 or ~> 2.0", [hex: :oauth2, repo: "hexpm", optional: false]}, {:ueberauth, "~> 0.6.0", [hex: :ueberauth, repo: "hexpm", optional: false]}], "hexpm", "c2cf210ef45bd20611234ef17517f9d1dff6b31d3fb6ad96789143eb0943f540"},
|
"ueberauth_facebook": {:hex, :ueberauth_facebook, "0.8.2", "fa31e095cf64c7255d755534154284115ca725c2cc05c8780476a352ba28b51f", [:mix], [{:oauth2, "~> 1.0 or ~> 2.0", [hex: :oauth2, repo: "hexpm", optional: false]}, {:ueberauth, "~> 0.6.0", [hex: :ueberauth, repo: "hexpm", optional: false]}], "hexpm", "5cfdfba76706457cbd435740bbcb3a1e081ae012ac1444641a75a3edcf56e806"},
|
||||||
"ueberauth_github": {:hex, :ueberauth_github, "0.8.0", "2216c8cdacee0de6245b422fb397921b64a29416526985304e345dab6a799d17", [:mix], [{:oauth2, "~> 1.0 or ~> 2.0", [hex: :oauth2, repo: "hexpm", optional: false]}, {:ueberauth, "~> 0.6.0", [hex: :ueberauth, repo: "hexpm", optional: false]}], "hexpm", "b65ccc001a7b0719ba069452f3333d68891f4613ae787a340cce31e2a43307a3"},
|
"ueberauth_github": {:hex, :ueberauth_github, "0.8.0", "2216c8cdacee0de6245b422fb397921b64a29416526985304e345dab6a799d17", [:mix], [{:oauth2, "~> 1.0 or ~> 2.0", [hex: :oauth2, repo: "hexpm", optional: false]}, {:ueberauth, "~> 0.6.0", [hex: :ueberauth, repo: "hexpm", optional: false]}], "hexpm", "b65ccc001a7b0719ba069452f3333d68891f4613ae787a340cce31e2a43307a3"},
|
||||||
"ueberauth_gitlab_strategy": {:git, "https://github.com/tcitworld/ueberauth_gitlab.git", "9fc5d30b5d87ff7cdef293a1c128f25777dcbe59", [branch: "upgrade-deps"]},
|
"ueberauth_gitlab_strategy": {:git, "https://github.com/tcitworld/ueberauth_gitlab.git", "9fc5d30b5d87ff7cdef293a1c128f25777dcbe59", [branch: "upgrade-deps"]},
|
||||||
"ueberauth_google": {:hex, :ueberauth_google, "0.10.0", "ae00e7228207be977d5cdd0a562e39961851cea74f513aab6446cb51468f283c", [:mix], [{:oauth2, "~> 1.0 or ~> 2.0", [hex: :oauth2, repo: "hexpm", optional: false]}, {:ueberauth, "~> 0.6.3", [hex: :ueberauth, repo: "hexpm", optional: false]}], "hexpm", "148e2575fd24a29b8bcaa44f9d3d1a38550a74ceed645f5059d4516b93992650"},
|
"ueberauth_google": {:hex, :ueberauth_google, "0.10.0", "ae00e7228207be977d5cdd0a562e39961851cea74f513aab6446cb51468f283c", [:mix], [{:oauth2, "~> 1.0 or ~> 2.0", [hex: :oauth2, repo: "hexpm", optional: false]}, {:ueberauth, "~> 0.6.3", [hex: :ueberauth, repo: "hexpm", optional: false]}], "hexpm", "148e2575fd24a29b8bcaa44f9d3d1a38550a74ceed645f5059d4516b93992650"},
|
||||||
|
@ -310,17 +310,17 @@ msgstr ""
|
|||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -120,7 +120,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr "تم تحديث الفعالية %{title}"
|
msgstr "تم تحديث الفعالية %{title}"
|
||||||
|
|
||||||
@ -313,12 +313,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1435,3 +1435,13 @@ msgstr ""
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -140,7 +140,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -377,7 +377,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -397,8 +397,8 @@ msgid "Event id not found"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -526,7 +526,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -592,7 +592,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -652,7 +652,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -672,7 +672,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -697,7 +697,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -737,47 +737,47 @@ msgid "This email is already used."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -802,12 +802,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -837,7 +837,7 @@ msgid "You must provide either an ID or a slug to access a discussion"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -873,6 +873,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -304,17 +304,17 @@ msgstr ""
|
|||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -117,7 +117,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -310,12 +310,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1411,3 +1411,13 @@ msgstr ""
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -114,7 +114,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -351,7 +351,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -371,8 +371,8 @@ msgid "Event id not found"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -500,7 +500,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -566,7 +566,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -626,7 +626,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -646,7 +646,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -671,7 +671,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -711,47 +711,47 @@ msgid "This email is already used."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -776,12 +776,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -811,7 +811,7 @@ msgid "You must provide either an ID or a slug to access a discussion"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -847,6 +847,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -302,17 +302,17 @@ msgstr ""
|
|||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -127,7 +127,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr "T'han denegat la participació a %{title}"
|
msgstr "T'han denegat la participació a %{title}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr "S'ha actualitzat {%title}"
|
msgstr "S'ha actualitzat {%title}"
|
||||||
|
|
||||||
@ -354,12 +354,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr "Quina informació recollim?"
|
msgstr "Quina informació recollim?"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr "Mobilizon a %{instance}: confirma la teva adreça de correu"
|
msgstr "Mobilizon a %{instance}: confirma la teva adreça de correu"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr "Mobilizon a %{instance}: s'ha canviat l'adreça de correu"
|
msgstr "Mobilizon a %{instance}: s'ha canviat l'adreça de correu"
|
||||||
|
|
||||||
@ -1660,3 +1660,13 @@ msgstr "Sembla ser que el servidor de Mobilizon està temporalment inaccessible.
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -115,7 +115,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr "No s'han pogut desar les preferències"
|
msgstr "No s'han pogut desar les preferències"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr "No s'ha trobat el grup"
|
msgstr "No s'ha trobat el grup"
|
||||||
@ -352,7 +352,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -372,8 +372,8 @@ msgid "Event id not found"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -501,7 +501,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -567,7 +567,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -627,7 +627,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -647,7 +647,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -672,7 +672,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -712,47 +712,47 @@ msgid "This email is already used."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -777,12 +777,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -812,7 +812,7 @@ msgid "You must provide either an ID or a slug to access a discussion"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -848,6 +848,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -304,17 +304,17 @@ msgstr ""
|
|||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -117,7 +117,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -310,12 +310,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1411,3 +1411,13 @@ msgstr ""
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -114,7 +114,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -351,7 +351,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -371,8 +371,8 @@ msgid "Event id not found"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -500,7 +500,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -566,7 +566,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -626,7 +626,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -646,7 +646,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -671,7 +671,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -711,47 +711,47 @@ msgid "This email is already used."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -776,12 +776,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -811,7 +811,7 @@ msgid "You must provide either an ID or a slug to access a discussion"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -847,6 +847,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -18,311 +18,311 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.6.2\n"
|
"X-Generator: Weblate 4.6.2\n"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:38
|
#: lib/service/activity/renderer/member.ex:38
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19 lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19 lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} accepted the invitation to join the group."
|
msgid "%{member} accepted the invitation to join the group."
|
||||||
msgstr "%{member} hat die Einladung in die Gruppe angenommen."
|
msgstr "%{member} hat die Einladung in die Gruppe angenommen."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:42
|
#: lib/service/activity/renderer/member.ex:42
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26 lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26 lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} rejected the invitation to join the group."
|
msgid "%{member} rejected the invitation to join the group."
|
||||||
msgstr "%{member} hat die Einladung in die Gruppe abgelehnt."
|
msgstr "%{member} hat die Einladung in die Gruppe abgelehnt."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:30
|
#: lib/service/activity/renderer/member.ex:30
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4 lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4 lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} requested to join the group."
|
msgid "%{member} requested to join the group."
|
||||||
msgstr "%{member} hat den Eintritt in die Gruppe beantragt."
|
msgstr "%{member} hat den Eintritt in die Gruppe beantragt."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:34
|
#: lib/service/activity/renderer/member.ex:34
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11 lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11 lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} was invited by %{profile}."
|
msgid "%{member} was invited by %{profile}."
|
||||||
msgstr "%{member} wurde von %{profile} eingeladen."
|
msgstr "%{member} wurde von %{profile} eingeladen."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:50
|
#: lib/service/activity/renderer/member.ex:50
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40 lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40 lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} added the member %{member}."
|
msgid "%{profile} added the member %{member}."
|
||||||
msgstr "%{profile} hat das Mitglied %{member} hinzugefügt."
|
msgstr "%{profile} hat das Mitglied %{member} hinzugefügt."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:65
|
#: lib/service/activity/renderer/discussion.ex:65
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} archived the discussion %{discussion}."
|
msgid "%{profile} archived the discussion %{discussion}."
|
||||||
msgstr "%{profile} hat die Diskussion %{discussion} archiviert."
|
msgstr "%{profile} hat die Diskussion %{discussion} archiviert."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:25
|
#: lib/service/activity/renderer/discussion.ex:25
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the discussion %{discussion}."
|
msgid "%{profile} created the discussion %{discussion}."
|
||||||
msgstr "%{profile} hat die Diskussion %{discussion} erstellt."
|
msgstr "%{profile} hat die Diskussion %{discussion} erstellt."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:24
|
#: lib/service/activity/renderer/resource.ex:24
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5 lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5 lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the folder %{resource}."
|
msgid "%{profile} created the folder %{resource}."
|
||||||
msgstr "%{profile} hat den Folder %{resource} erstellt."
|
msgstr "%{profile} hat den Folder %{resource} erstellt."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the group %{group}."
|
msgid "%{profile} created the group %{group}."
|
||||||
msgstr "%{profile} hat die Gruppe %{group} erstellt."
|
msgstr "%{profile} hat die Gruppe %{group} erstellt."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:33
|
#: lib/service/activity/renderer/resource.ex:33
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20 lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20 lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the resource %{resource}."
|
msgid "%{profile} created the resource %{resource}."
|
||||||
msgstr "%{profile} hat die Ressource %{resource} erstellt."
|
msgstr "%{profile} hat die Ressource %{resource} erstellt."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:75
|
#: lib/service/activity/renderer/discussion.ex:75
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} deleted the discussion %{discussion}."
|
msgid "%{profile} deleted the discussion %{discussion}."
|
||||||
msgstr "%{profile} hat die Diskussion %{discussion} gelöscht."
|
msgstr "%{profile} hat die Diskussion %{discussion} gelöscht."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:97
|
#: lib/service/activity/renderer/resource.ex:97
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103 lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103 lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} deleted the folder %{resource}."
|
msgid "%{profile} deleted the folder %{resource}."
|
||||||
msgstr "%{profile} hat den Folder %{resource} gelöscht."
|
msgstr "%{profile} hat den Folder %{resource} gelöscht."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:106
|
#: lib/service/activity/renderer/resource.ex:106
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111 lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111 lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} deleted the resource %{resource}."
|
msgid "%{profile} deleted the resource %{resource}."
|
||||||
msgstr "%{profile} hat die Ressource %{resource} gelöscht."
|
msgstr "%{profile} hat die Ressource %{resource} gelöscht."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:58
|
#: lib/service/activity/renderer/member.ex:58
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56 lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56 lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} excluded member %{member}."
|
msgid "%{profile} excluded member %{member}."
|
||||||
msgstr "%{profile} hat das Mitglied %{member} ausgeschlossen."
|
msgstr "%{profile} hat das Mitglied %{member} ausgeschlossen."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:76
|
#: lib/service/activity/renderer/resource.ex:76
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71 lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71 lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} moved the folder %{resource}."
|
msgid "%{profile} moved the folder %{resource}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:85
|
#: lib/service/activity/renderer/resource.ex:85
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86 lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86 lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} moved the resource %{resource}."
|
msgid "%{profile} moved the resource %{resource}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:62
|
#: lib/service/activity/renderer/member.ex:62
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64 lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64 lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} quit the group."
|
msgid "%{profile} quit the group."
|
||||||
msgstr "%{profile} hat die Gruppe verlassen."
|
msgstr "%{profile} hat die Gruppe verlassen."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:55
|
#: lib/service/activity/renderer/discussion.ex:55
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} renamed the discussion %{discussion}."
|
msgid "%{profile} renamed the discussion %{discussion}."
|
||||||
msgstr "%{profile} hat die Diskussion %{discussion} umbenannt."
|
msgstr "%{profile} hat die Diskussion %{discussion} umbenannt."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:45
|
#: lib/service/activity/renderer/resource.ex:45
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37 lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex: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}."
|
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"%{profile} hat den Folder %{old_resource_title} in %{resource} umbenannt."
|
"%{profile} hat den Folder %{old_resource_title} in %{resource} umbenannt."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:59
|
#: lib/service/activity/renderer/resource.ex:59
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53 lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex: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}."
|
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"{profile} hat die Ressource %{old_resource_title} in %{resource} umbenannt."
|
"{profile} hat die Ressource %{old_resource_title} in %{resource} umbenannt."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:35
|
#: lib/service/activity/renderer/discussion.ex:35
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} replied to the discussion %{discussion}."
|
msgid "%{profile} replied to the discussion %{discussion}."
|
||||||
msgstr "%{profile} hat auf die Diskussion %{discussion} geantwortet."
|
msgstr "%{profile} hat auf die Diskussion %{discussion} geantwortet."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} updated the group %{group}."
|
msgid "%{profile} updated the group %{group}."
|
||||||
msgstr "%{profile} hat die Gruppe %{group} aktualisiert."
|
msgstr "%{profile} hat die Gruppe %{group} aktualisiert."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:54
|
#: lib/service/activity/renderer/member.ex:54
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48 lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48 lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} updated the member %{member}."
|
msgid "%{profile} updated the member %{member}."
|
||||||
msgstr "%{profile} hat das Mitglied %{member} aktualisiert."
|
msgstr "%{profile} hat das Mitglied %{member} aktualisiert."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:23
|
#: lib/service/activity/renderer/event.ex:23
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "The event %{event} was created by %{profile}."
|
msgid "The event %{event} was created by %{profile}."
|
||||||
msgstr "Die Veranstaltung %{event} wurde von %{profile} erstellt."
|
msgstr "Die Veranstaltung %{event} wurde von %{profile} erstellt."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:43
|
#: lib/service/activity/renderer/event.ex:43
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||||
#, elixir-format
|
|
||||||
msgid "The event %{event} was deleted by %{profile}."
|
msgid "The event %{event} was deleted by %{profile}."
|
||||||
msgstr "Die Veranstaltung %{event} wurde von %{profile} gelöscht."
|
msgstr "Die Veranstaltung %{event} wurde von %{profile} gelöscht."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:33
|
#: lib/service/activity/renderer/event.ex:33
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "The event %{event} was updated by %{profile}."
|
msgid "The event %{event} was updated by %{profile}."
|
||||||
msgstr "Die Veranstaltung %{event} wurde von %{profile} aktualisiert."
|
msgstr "Die Veranstaltung %{event} wurde von %{profile} aktualisiert."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "The post %{post} was created by %{profile}."
|
msgid "The post %{post} was created by %{profile}."
|
||||||
msgstr "Der Beitrag %{post} wurde von %{profile} erstellt."
|
msgstr "Der Beitrag %{post} wurde von %{profile} erstellt."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||||
#, elixir-format
|
|
||||||
msgid "The post %{post} was deleted by %{profile}."
|
msgid "The post %{post} was deleted by %{profile}."
|
||||||
msgstr "Der Beitrag %{post} wurde von %{profile} gelöscht."
|
msgstr "Der Beitrag %{post} wurde von %{profile} gelöscht."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "The post %{post} was updated by %{profile}."
|
msgid "The post %{post} was updated by %{profile}."
|
||||||
msgstr "Der Beitrag %{post} wurde von %{profile} aktualisiert."
|
msgstr "Der Beitrag %{post} wurde von %{profile} aktualisiert."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:46
|
#: lib/service/activity/renderer/member.ex:46
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33 lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33 lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} joined the group."
|
msgid "%{member} joined the group."
|
||||||
msgstr "%{member} ist der Gruppe beigetreten."
|
msgstr "%{member} ist der Gruppe beigetreten."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:63
|
#: lib/service/activity/renderer/event.ex:63
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} posted a comment on the event %{event}."
|
msgid "%{profile} posted a comment on the event %{event}."
|
||||||
msgstr "%{profile} hat die Veranstaltung %{event} kommentiert."
|
msgstr "%{profile} hat die Veranstaltung %{event} kommentiert."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:54
|
#: lib/service/activity/renderer/event.ex:54
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} replied to a comment on the event %{event}."
|
msgid "%{profile} replied to a comment on the event %{event}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"%{profile} hat auf ein Kommentar in der Veranstaltung %{event} geantwortet."
|
"%{profile} hat auf ein Kommentar in der Veranstaltung %{event} geantwortet."
|
||||||
|
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:27
|
|
||||||
#, elixir-format
|
#, 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."
|
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:135
|
#: lib/web/templates/email/email_direct_activity.html.eex:135
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:23
|
#: lib/web/templates/email/email_direct_activity.text.eex:23
|
||||||
#, elixir-format
|
|
||||||
msgid "View one more activity"
|
msgid "View one more activity"
|
||||||
msgid_plural "View %{count} more activities"
|
msgid_plural "View %{count} more activities"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:44
|
#: lib/web/templates/email/email_direct_activity.html.eex:44
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:46 lib/web/templates/email/email_direct_activity.text.eex:6
|
#: lib/web/templates/email/email_direct_activity.html.eex:46 lib/web/templates/email/email_direct_activity.text.eex:6
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "There has been an activity!"
|
msgid "There has been an activity!"
|
||||||
msgid_plural "There has been some activity!"
|
msgid_plural "There has been some activity!"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: lib/service/activity/renderer/renderer.ex:38
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/renderer.ex:38
|
||||||
msgid "Activity on %{instance}"
|
msgid "Activity on %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:38
|
#: lib/service/activity/renderer/comment.ex:38
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7
|
||||||
#: lib/web/templates/email/email_anonymous_activity.html.eex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5
|
#: lib/web/templates/email/email_anonymous_activity.html.eex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} has posted an announcement under event %{event}."
|
msgid "%{profile} has posted an announcement under event %{event}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:24
|
#: lib/service/activity/renderer/comment.ex:24
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} mentionned you in a comment under event %{event}."
|
msgid "%{profile} mentionned you in a comment under event %{event}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/service/activity/renderer/discussion.ex:45
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/discussion.ex:45
|
||||||
msgid "%{profile} mentionned you in the discussion %{discussion}."
|
msgid "%{profile} mentionned you in the discussion %{discussion}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:155
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/templates/email/email_direct_activity.html.eex:155
|
||||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
|
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:42
|
#: lib/web/templates/email/email_direct_activity.html.eex:42
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:5
|
#: lib/web/templates/email/email_direct_activity.text.eex:5
|
||||||
#, elixir-format
|
|
||||||
msgid "Here's your weekly activity recap"
|
msgid "Here's your weekly activity recap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
|
||||||
msgid "Activity notification for %{instance}"
|
msgid "Activity notification for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:126
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:126
|
||||||
msgid "Daily activity recap for %{instance}"
|
msgid "Daily activity recap for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:40
|
#: lib/web/templates/email/email_direct_activity.html.eex:40
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||||
#, elixir-format
|
|
||||||
msgid "Here's your daily activity recap"
|
msgid "Here's your daily activity recap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:133
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:133
|
||||||
msgid "Weekly activity recap for %{instance}"
|
msgid "Weekly activity recap for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:66
|
#: lib/service/activity/renderer/comment.ex:66
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex: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}."
|
msgid "%{profile} has posted a new comment under your event %{event}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:53
|
#: lib/service/activity/renderer/comment.ex:53
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex: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}."
|
msgid "%{profile} has posted a new reply under your event %{event}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:46
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:46
|
||||||
msgid "Announcement for your event %{event}"
|
msgid "Announcement for your event %{event}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/service/activity/renderer/group.ex:23
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/group.ex:23
|
||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
#, elixir-format, fuzzy
|
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
#, elixir-format, fuzzy
|
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
#, elixir-format, fuzzy
|
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -129,7 +129,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr "Deine Teilnahme an der Veranstaltung %{title}wurde abgelehnt"
|
msgstr "Deine Teilnahme an der Veranstaltung %{title}wurde abgelehnt"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr "Veranstaltung %{title} wurde aktualisiert"
|
msgstr "Veranstaltung %{title} wurde aktualisiert"
|
||||||
|
|
||||||
@ -360,12 +360,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr "Welche Informationen sammeln wir ?"
|
msgstr "Welche Informationen sammeln wir ?"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr "Mobilizon auf %{instance}: Bestätige deine E-Mail Adresse"
|
msgstr "Mobilizon auf %{instance}: Bestätige deine E-Mail Adresse"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr "Mobilizon auf %{instance}: E-Mail geändert"
|
msgstr "Mobilizon auf %{instance}: E-Mail geändert"
|
||||||
|
|
||||||
@ -1775,3 +1775,13 @@ msgstr ""
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -115,7 +115,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr "Fehler beim Speichern von Benutzereinstellungen"
|
msgstr "Fehler beim Speichern von Benutzereinstellungen"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr "Gruppe nicht gefunden"
|
msgstr "Gruppe nicht gefunden"
|
||||||
@ -360,7 +360,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr "Kommentar ist bereits gelöscht"
|
msgstr "Kommentar ist bereits gelöscht"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr "Diskussion nicht gefunden"
|
msgstr "Diskussion nicht gefunden"
|
||||||
|
|
||||||
@ -380,8 +380,8 @@ msgid "Event id not found"
|
|||||||
msgstr "Veranstaltungs-ID nicht gefunden"
|
msgstr "Veranstaltungs-ID nicht gefunden"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr "Veranstaltung nicht gefunden"
|
msgstr "Veranstaltung nicht gefunden"
|
||||||
|
|
||||||
@ -511,7 +511,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr "Token ist keine gültige UUID"
|
msgstr "Token ist keine gültige UUID"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr "User nicht gefunden"
|
msgstr "User nicht gefunden"
|
||||||
|
|
||||||
@ -582,7 +582,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr "Sie können diesen Kommentar nicht löschen"
|
msgstr "Sie können diesen Kommentar nicht löschen"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr "Sie können diese Veranstaltung nicht löschen"
|
msgstr "Sie können diese Veranstaltung nicht löschen"
|
||||||
|
|
||||||
@ -652,7 +652,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr "Sie müssen eingeloggt sein, um auf Ressourcen zugreifen zu können"
|
msgstr "Sie müssen eingeloggt sein, um auf Ressourcen zugreifen zu können"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr "Sie müssen eingeloggt sein, um Ereignisse zu erstellen"
|
msgstr "Sie müssen eingeloggt sein, um Ereignisse zu erstellen"
|
||||||
|
|
||||||
@ -672,7 +672,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr "Sie müssen eingeloggt sein, um Ressourcen zu erstellen"
|
msgstr "Sie müssen eingeloggt sein, um Ressourcen zu erstellen"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr "Sie müssen eingeloggt sein, um ein Ereignis zu löschen"
|
msgstr "Sie müssen eingeloggt sein, um ein Ereignis zu löschen"
|
||||||
|
|
||||||
@ -697,7 +697,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr "Sie müssen eingeloggt sein, um eine Veranstaltung zu verlassen"
|
msgstr "Sie müssen eingeloggt sein, um eine Veranstaltung zu verlassen"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr "Sie müssen eingeloggt sein, um ein Ereignis zu aktualisieren"
|
msgstr "Sie müssen eingeloggt sein, um ein Ereignis zu aktualisieren"
|
||||||
|
|
||||||
@ -739,47 +739,47 @@ msgid "This email is already used."
|
|||||||
msgstr "Diese E-Mail wird bereits verwendet."
|
msgstr "Diese E-Mail wird bereits verwendet."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr "Beitrag nicht gefunden"
|
msgstr "Beitrag nicht gefunden"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr "Ungültige Argumente übergeben"
|
msgstr "Ungültige Argumente übergeben"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr "Ungültige Anmeldeinformationen"
|
msgstr "Ungültige Anmeldeinformationen"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr "Passwort zurücksetzen"
|
msgstr "Passwort zurücksetzen"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr "Ressource nicht gefunden"
|
msgstr "Ressource nicht gefunden"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr "Etwas lief falsch"
|
msgstr "Etwas lief falsch"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr "Unbekannte Ressource"
|
msgstr "Unbekannte Ressource"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr "Sie haben nicht die Berechtigung dies zu tun"
|
msgstr "Sie haben nicht die Berechtigung dies zu tun"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr "Sie müssen eingeloggt sein"
|
msgstr "Sie müssen eingeloggt sein"
|
||||||
|
|
||||||
@ -804,12 +804,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr "Profil ist nicht Administrator für die Gruppe"
|
msgstr "Profil ist nicht Administrator für die Gruppe"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr "Sie können dieses Ereignis nicht bearbeiten."
|
msgstr "Sie können dieses Ereignis nicht bearbeiten."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr "Sie können dieses Ereignis nicht diesem Profil zuordnen."
|
msgstr "Sie können dieses Ereignis nicht diesem Profil zuordnen."
|
||||||
|
|
||||||
@ -841,7 +841,7 @@ msgstr ""
|
|||||||
"zuzugreifen"
|
"zuzugreifen"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr "Organizer-Profil ist nicht im Besitz des Benutzers"
|
msgstr "Organizer-Profil ist nicht im Besitz des Benutzers"
|
||||||
|
|
||||||
@ -877,6 +877,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr "Dieses Moderatorenprofil hat keine Berechtigung für diese Veranstaltung"
|
msgstr "Dieses Moderatorenprofil hat keine Berechtigung für diese Veranstaltung"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -103,7 +103,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -296,12 +296,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1390,3 +1390,13 @@ msgstr ""
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -302,17 +302,17 @@ msgstr ""
|
|||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -126,7 +126,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr "Your participation to event %{title} has been rejected"
|
msgstr "Your participation to event %{title} has been rejected"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr "Event %{title} has been updated"
|
msgstr "Event %{title} has been updated"
|
||||||
|
|
||||||
@ -349,12 +349,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr "What information do we collect?"
|
msgstr "What information do we collect?"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1443,3 +1443,13 @@ msgstr ""
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -118,7 +118,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -355,7 +355,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -375,8 +375,8 @@ msgid "Event id not found"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -504,7 +504,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -570,7 +570,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -630,7 +630,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -650,7 +650,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -675,7 +675,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -715,47 +715,47 @@ msgid "This email is already used."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -780,12 +780,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -815,7 +815,7 @@ msgid "You must provide either an ID or a slug to access a discussion"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -851,6 +851,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -115,7 +115,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -352,7 +352,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -372,8 +372,8 @@ msgid "Event id not found"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -501,7 +501,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -567,7 +567,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -627,7 +627,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -647,7 +647,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -672,7 +672,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -712,47 +712,47 @@ msgid "This email is already used."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -777,12 +777,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -812,7 +812,7 @@ msgid "You must provide either an ID or a slug to access a discussion"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -848,6 +848,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -18,314 +18,314 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.6.2\n"
|
"X-Generator: Weblate 4.6.2\n"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:38
|
#: lib/service/activity/renderer/member.ex:38
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19 lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19 lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} accepted the invitation to join the group."
|
msgid "%{member} accepted the invitation to join the group."
|
||||||
msgstr "%{member} aceptó la invitación para unirse al grupo."
|
msgstr "%{member} aceptó la invitación para unirse al grupo."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:42
|
#: lib/service/activity/renderer/member.ex:42
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26 lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26 lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} rejected the invitation to join the group."
|
msgid "%{member} rejected the invitation to join the group."
|
||||||
msgstr "%{member} rechazó la invitación para unirse al grupo."
|
msgstr "%{member} rechazó la invitación para unirse al grupo."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:30
|
#: lib/service/activity/renderer/member.ex:30
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4 lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4 lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} requested to join the group."
|
msgid "%{member} requested to join the group."
|
||||||
msgstr "%{member} solicitó unirse al grupo."
|
msgstr "%{member} solicitó unirse al grupo."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:34
|
#: lib/service/activity/renderer/member.ex:34
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11 lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11 lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} was invited by %{profile}."
|
msgid "%{member} was invited by %{profile}."
|
||||||
msgstr "%{member} fue invitado por %{profile}."
|
msgstr "%{member} fue invitado por %{profile}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:50
|
#: lib/service/activity/renderer/member.ex:50
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40 lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40 lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} added the member %{member}."
|
msgid "%{profile} added the member %{member}."
|
||||||
msgstr "%{profile} agregó el miembro %{member}."
|
msgstr "%{profile} agregó el miembro %{member}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:65
|
#: lib/service/activity/renderer/discussion.ex:65
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} archived the discussion %{discussion}."
|
msgid "%{profile} archived the discussion %{discussion}."
|
||||||
msgstr "%{profile} archivó la discusión %{discussion}."
|
msgstr "%{profile} archivó la discusión %{discussion}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:25
|
#: lib/service/activity/renderer/discussion.ex:25
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the discussion %{discussion}."
|
msgid "%{profile} created the discussion %{discussion}."
|
||||||
msgstr "%{profile} creó la discusión %{discussion}."
|
msgstr "%{profile} creó la discusión %{discussion}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:24
|
#: lib/service/activity/renderer/resource.ex:24
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5 lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5 lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the folder %{resource}."
|
msgid "%{profile} created the folder %{resource}."
|
||||||
msgstr "%{profile} creó la carpeta %{resource}."
|
msgstr "%{profile} creó la carpeta %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the group %{group}."
|
msgid "%{profile} created the group %{group}."
|
||||||
msgstr "%{profile} crfeó el grupo %{group}."
|
msgstr "%{profile} crfeó el grupo %{group}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:33
|
#: lib/service/activity/renderer/resource.ex:33
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20 lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20 lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the resource %{resource}."
|
msgid "%{profile} created the resource %{resource}."
|
||||||
msgstr "%{profile} creó el recurso %{resource}."
|
msgstr "%{profile} creó el recurso %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:75
|
#: lib/service/activity/renderer/discussion.ex:75
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} deleted the discussion %{discussion}."
|
msgid "%{profile} deleted the discussion %{discussion}."
|
||||||
msgstr "%{profile} eliminó la discusión %{discussion}."
|
msgstr "%{profile} eliminó la discusión %{discussion}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:97
|
#: lib/service/activity/renderer/resource.ex:97
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103 lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103 lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} deleted the folder %{resource}."
|
msgid "%{profile} deleted the folder %{resource}."
|
||||||
msgstr "%{profile} borró la carpeta %{resource}."
|
msgstr "%{profile} borró la carpeta %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:106
|
#: lib/service/activity/renderer/resource.ex:106
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111 lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111 lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} deleted the resource %{resource}."
|
msgid "%{profile} deleted the resource %{resource}."
|
||||||
msgstr "%{profile} eliminado el recurso %{resource}."
|
msgstr "%{profile} eliminado el recurso %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:58
|
#: lib/service/activity/renderer/member.ex:58
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56 lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56 lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} excluded member %{member}."
|
msgid "%{profile} excluded member %{member}."
|
||||||
msgstr "%{profile }miembro excluido %{member}."
|
msgstr "%{profile }miembro excluido %{member}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:76
|
#: lib/service/activity/renderer/resource.ex:76
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71 lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71 lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} moved the folder %{resource}."
|
msgid "%{profile} moved the folder %{resource}."
|
||||||
msgstr "%{profile} movió la carpeta %{resource}."
|
msgstr "%{profile} movió la carpeta %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:85
|
#: lib/service/activity/renderer/resource.ex:85
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86 lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86 lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} moved the resource %{resource}."
|
msgid "%{profile} moved the resource %{resource}."
|
||||||
msgstr "%{profile} movió el recurso %{resource}."
|
msgstr "%{profile} movió el recurso %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:62
|
#: lib/service/activity/renderer/member.ex:62
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64 lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64 lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} quit the group."
|
msgid "%{profile} quit the group."
|
||||||
msgstr "%{profile} abandona el grupo."
|
msgstr "%{profile} abandona el grupo."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:55
|
#: lib/service/activity/renderer/discussion.ex:55
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} renamed the discussion %{discussion}."
|
msgid "%{profile} renamed the discussion %{discussion}."
|
||||||
msgstr "%{profile} renombrado la discusión %{discussion}."
|
msgstr "%{profile} renombrado la discusión %{discussion}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:45
|
#: lib/service/activity/renderer/resource.ex:45
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37 lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex: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}."
|
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"%{profile} ha renombrado la carpeta de %{old_resource_title} a %{resource}."
|
"%{profile} ha renombrado la carpeta de %{old_resource_title} a %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:59
|
#: lib/service/activity/renderer/resource.ex:59
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53 lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex: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}."
|
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"%{profile} ha renombrado el recurso de %{old_resource_title} a %{resource}."
|
"%{profile} ha renombrado el recurso de %{old_resource_title} a %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:35
|
#: lib/service/activity/renderer/discussion.ex:35
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} replied to the discussion %{discussion}."
|
msgid "%{profile} replied to the discussion %{discussion}."
|
||||||
msgstr "%{profile} respondió a la discusión %{discussion}."
|
msgstr "%{profile} respondió a la discusión %{discussion}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} updated the group %{group}."
|
msgid "%{profile} updated the group %{group}."
|
||||||
msgstr "%{profile} actualizó el grupo %{group}."
|
msgstr "%{profile} actualizó el grupo %{group}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:54
|
#: lib/service/activity/renderer/member.ex:54
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48 lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48 lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} updated the member %{member}."
|
msgid "%{profile} updated the member %{member}."
|
||||||
msgstr "%{profile} actualizado el miembro %{member}."
|
msgstr "%{profile} actualizado el miembro %{member}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:23
|
#: lib/service/activity/renderer/event.ex:23
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "The event %{event} was created by %{profile}."
|
msgid "The event %{event} was created by %{profile}."
|
||||||
msgstr "El evento %{event} fue creado por %{profile}."
|
msgstr "El evento %{event} fue creado por %{profile}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:43
|
#: lib/service/activity/renderer/event.ex:43
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||||
#, elixir-format
|
|
||||||
msgid "The event %{event} was deleted by %{profile}."
|
msgid "The event %{event} was deleted by %{profile}."
|
||||||
msgstr "El evento% {event} fue eliminado por % {profile}."
|
msgstr "El evento% {event} fue eliminado por % {profile}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:33
|
#: lib/service/activity/renderer/event.ex:33
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "The event %{event} was updated by %{profile}."
|
msgid "The event %{event} was updated by %{profile}."
|
||||||
msgstr "El evento %{event} fue actualizado por %{profile}."
|
msgstr "El evento %{event} fue actualizado por %{profile}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "The post %{post} was created by %{profile}."
|
msgid "The post %{post} was created by %{profile}."
|
||||||
msgstr "El cargo %{post} fue creado por %{profile}."
|
msgstr "El cargo %{post} fue creado por %{profile}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||||
#, elixir-format
|
|
||||||
msgid "The post %{post} was deleted by %{profile}."
|
msgid "The post %{post} was deleted by %{profile}."
|
||||||
msgstr "El post %{post} fue eliminado por %{profile}."
|
msgstr "El post %{post} fue eliminado por %{profile}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "The post %{post} was updated by %{profile}."
|
msgid "The post %{post} was updated by %{profile}."
|
||||||
msgstr "El post %{post} fue actualizado por %{profile}."
|
msgstr "El post %{post} fue actualizado por %{profile}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:46
|
#: lib/service/activity/renderer/member.ex:46
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33 lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33 lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} joined the group."
|
msgid "%{member} joined the group."
|
||||||
msgstr "%{member} se unió al grupo."
|
msgstr "%{member} se unió al grupo."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:63
|
#: lib/service/activity/renderer/event.ex:63
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} posted a comment on the event %{event}."
|
msgid "%{profile} posted a comment on the event %{event}."
|
||||||
msgstr "%{profile} publicó un comentario sobre el evento %{event}."
|
msgstr "%{profile} publicó un comentario sobre el evento %{event}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:54
|
#: lib/service/activity/renderer/event.ex:54
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} replied to a comment on the event %{event}."
|
msgid "%{profile} replied to a comment on the event %{event}."
|
||||||
msgstr "%{profile} respondió a un comentario sobre el evento %{event}."
|
msgstr "%{profile} respondió a un comentario sobre el evento %{event}."
|
||||||
|
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:27
|
|
||||||
#, elixir-format
|
#, 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."
|
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"¿No quieres recibir notificaciones de actividad? Puede cambiar la frecuencia "
|
"¿No quieres recibir notificaciones de actividad? Puede cambiar la frecuencia "
|
||||||
"o deshabilitarlos en su configuración."
|
"o deshabilitarlos en su configuración."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:135
|
#: lib/web/templates/email/email_direct_activity.html.eex:135
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:23
|
#: lib/web/templates/email/email_direct_activity.text.eex:23
|
||||||
#, elixir-format
|
|
||||||
msgid "View one more activity"
|
msgid "View one more activity"
|
||||||
msgid_plural "View %{count} more activities"
|
msgid_plural "View %{count} more activities"
|
||||||
msgstr[0] "Ver una actividad más"
|
msgstr[0] "Ver una actividad más"
|
||||||
msgstr[1] "Ver %{count} actividades mas"
|
msgstr[1] "Ver %{count} actividades mas"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:44
|
#: lib/web/templates/email/email_direct_activity.html.eex:44
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:46 lib/web/templates/email/email_direct_activity.text.eex:6
|
#: lib/web/templates/email/email_direct_activity.html.eex:46 lib/web/templates/email/email_direct_activity.text.eex:6
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "There has been an activity!"
|
msgid "There has been an activity!"
|
||||||
msgid_plural "There has been some activity!"
|
msgid_plural "There has been some activity!"
|
||||||
msgstr[0] "¡Ha habido una actividad!"
|
msgstr[0] "¡Ha habido una actividad!"
|
||||||
msgstr[1] "¡Ha habido algopúnas actividades!"
|
msgstr[1] "¡Ha habido algopúnas actividades!"
|
||||||
|
|
||||||
#: lib/service/activity/renderer/renderer.ex:38
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/renderer.ex:38
|
||||||
msgid "Activity on %{instance}"
|
msgid "Activity on %{instance}"
|
||||||
msgstr "Actividad en %{instance}"
|
msgstr "Actividad en %{instance}"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:38
|
#: lib/service/activity/renderer/comment.ex:38
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7
|
||||||
#: lib/web/templates/email/email_anonymous_activity.html.eex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5
|
#: lib/web/templates/email/email_anonymous_activity.html.eex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} has posted an announcement under event %{event}."
|
msgid "%{profile} has posted an announcement under event %{event}."
|
||||||
msgstr "%{profile} ha publicado un anuncio en el evento %{event}."
|
msgstr "%{profile} ha publicado un anuncio en el evento %{event}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:24
|
#: lib/service/activity/renderer/comment.ex:24
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} mentionned you in a comment under event %{event}."
|
msgid "%{profile} mentionned you in a comment under event %{event}."
|
||||||
msgstr "%{profile} te mencionó en un comentario en el evento %{event}."
|
msgstr "%{profile} te mencionó en un comentario en el evento %{event}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/discussion.ex:45
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/discussion.ex:45
|
||||||
msgid "%{profile} mentionned you in the discussion %{discussion}."
|
msgid "%{profile} mentionned you in the discussion %{discussion}."
|
||||||
msgstr "%{profile}te mencioné en la discusión %{discussion}."
|
msgstr "%{profile}te mencioné en la discusión %{discussion}."
|
||||||
|
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:155
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/templates/email/email_direct_activity.html.eex:155
|
||||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
|
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"¿No quieres recibir notificaciones de actividad? Puede cambiar la frecuencia "
|
"¿No quieres recibir notificaciones de actividad? Puede cambiar la frecuencia "
|
||||||
"o deshabilitarlos en su configuración."
|
"o deshabilitarlos en su configuración."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:42
|
#: lib/web/templates/email/email_direct_activity.html.eex:42
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:5
|
#: lib/web/templates/email/email_direct_activity.text.eex:5
|
||||||
#, elixir-format
|
|
||||||
msgid "Here's your weekly activity recap"
|
msgid "Here's your weekly activity recap"
|
||||||
msgstr "Aquí está su resumen de actividad semanal"
|
msgstr "Aquí está su resumen de actividad semanal"
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
|
||||||
msgid "Activity notification for %{instance}"
|
msgid "Activity notification for %{instance}"
|
||||||
msgstr "Actividad en %{instance}"
|
msgstr "Actividad en %{instance}"
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:126
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:126
|
||||||
msgid "Daily activity recap for %{instance}"
|
msgid "Daily activity recap for %{instance}"
|
||||||
msgstr "Resumen de actividad diaria en %{instance}"
|
msgstr "Resumen de actividad diaria en %{instance}"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:40
|
#: lib/web/templates/email/email_direct_activity.html.eex:40
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||||
#, elixir-format
|
|
||||||
msgid "Here's your daily activity recap"
|
msgid "Here's your daily activity recap"
|
||||||
msgstr "Aquí está su resumen de actividad diaria"
|
msgstr "Aquí está su resumen de actividad diaria"
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:133
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:133
|
||||||
msgid "Weekly activity recap for %{instance}"
|
msgid "Weekly activity recap for %{instance}"
|
||||||
msgstr "Resumen de actividad semanal para %{instance}"
|
msgstr "Resumen de actividad semanal para %{instance}"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:66
|
#: lib/service/activity/renderer/comment.ex:66
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex: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}."
|
msgid "%{profile} has posted a new comment under your event %{event}."
|
||||||
msgstr "%{profile} ha publicado un nuevo comentario en tu evento %{event}."
|
msgstr "%{profile} ha publicado un nuevo comentario en tu evento %{event}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:53
|
#: lib/service/activity/renderer/comment.ex:53
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex: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}."
|
msgid "%{profile} has posted a new reply under your event %{event}."
|
||||||
msgstr "%{profile} ha publicado una nueva respuesta en tu evento %{event}."
|
msgstr "%{profile} ha publicado una nueva respuesta en tu evento %{event}."
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:46
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:46
|
||||||
msgid "Announcement for your event %{event}"
|
msgid "Announcement for your event %{event}"
|
||||||
msgstr "Anuncio para su evento %{event}"
|
msgstr "Anuncio para su evento %{event}"
|
||||||
|
|
||||||
#: lib/service/activity/renderer/group.ex:23
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/group.ex:23
|
||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr "El post %{post} fue actualizado por %{profile}."
|
msgstr "El post %{post} fue actualizado por %{profile}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr "El post %{post} del grupo %{group} fue actualizado por %{profile}."
|
msgstr "El post %{post} del grupo %{group} fue actualizado por %{profile}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr "El post %{post} del grupo %{group} fue actualizado por %{profile}."
|
msgstr "El post %{post} del grupo %{group} fue actualizado por %{profile}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr "El post %{post} del grupo %{group} fue actualizado por %{profile}."
|
msgstr "El post %{post} del grupo %{group} fue actualizado por %{profile}."
|
||||||
|
@ -128,7 +128,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr "Su participación en el evento %{title} ha sido rechazada"
|
msgstr "Su participación en el evento %{title} ha sido rechazada"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr "El evento %{title} ha sido actualizado"
|
msgstr "El evento %{title} ha sido actualizado"
|
||||||
|
|
||||||
@ -356,12 +356,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr "¿Qué información recopilamos?"
|
msgstr "¿Qué información recopilamos?"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr "Mobilizon en %{instance}: confirma tu dirección de correo electrónico"
|
msgstr "Mobilizon en %{instance}: confirma tu dirección de correo electrónico"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr "Mobilizon en %{instance}: correo electrónico modificado"
|
msgstr "Mobilizon en %{instance}: correo electrónico modificado"
|
||||||
|
|
||||||
@ -1731,3 +1731,13 @@ msgstr ""
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr "Flujo público para %{instance}"
|
msgstr "Flujo público para %{instance}"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -115,7 +115,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr "Error al guardar los parámetros del usuario"
|
msgstr "Error al guardar los parámetros del usuario"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr "Grupo no encontrado"
|
msgstr "Grupo no encontrado"
|
||||||
@ -358,7 +358,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr "El comentario ya está eliminado"
|
msgstr "El comentario ya está eliminado"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr "Discusión no encontrada"
|
msgstr "Discusión no encontrada"
|
||||||
|
|
||||||
@ -378,8 +378,8 @@ msgid "Event id not found"
|
|||||||
msgstr "ID de evento no encontrado"
|
msgstr "ID de evento no encontrado"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr "Evento no encontrado"
|
msgstr "Evento no encontrado"
|
||||||
|
|
||||||
@ -507,7 +507,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr "El token no es un UUID válido"
|
msgstr "El token no es un UUID válido"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr "Usuario no encontrado"
|
msgstr "Usuario no encontrado"
|
||||||
|
|
||||||
@ -577,7 +577,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr "No puedes borrar este comentario"
|
msgstr "No puedes borrar este comentario"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr "No puedes borrar este evento"
|
msgstr "No puedes borrar este evento"
|
||||||
|
|
||||||
@ -644,7 +644,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr "Debes iniciar sesión para acceder a los recursos"
|
msgstr "Debes iniciar sesión para acceder a los recursos"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr "Debes iniciar sesión para crear eventos"
|
msgstr "Debes iniciar sesión para crear eventos"
|
||||||
|
|
||||||
@ -664,7 +664,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr "Debe iniciar sesión para crear recursos"
|
msgstr "Debe iniciar sesión para crear recursos"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr "Debe iniciar sesión para eliminar un evento"
|
msgstr "Debe iniciar sesión para eliminar un evento"
|
||||||
|
|
||||||
@ -689,7 +689,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr "Debes iniciar sesión para salir de un evento"
|
msgstr "Debes iniciar sesión para salir de un evento"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr "Debe iniciar sesión para actualizar un evento"
|
msgstr "Debe iniciar sesión para actualizar un evento"
|
||||||
|
|
||||||
@ -731,47 +731,47 @@ msgid "This email is already used."
|
|||||||
msgstr "Este correo electrónico ya está en uso."
|
msgstr "Este correo electrónico ya está en uso."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr "Informe no encontrado"
|
msgstr "Informe no encontrado"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr "Se pasaron argumentos no válidos"
|
msgstr "Se pasaron argumentos no válidos"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr "Credenciales no válidas"
|
msgstr "Credenciales no válidas"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr "Restablezca su contraseña para iniciar sesión"
|
msgstr "Restablezca su contraseña para iniciar sesión"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr "Recurso no encontrado"
|
msgstr "Recurso no encontrado"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr "Algo salió mal"
|
msgstr "Algo salió mal"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr "Recurso desconocido"
|
msgstr "Recurso desconocido"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr "No tienes permiso para hacer esto"
|
msgstr "No tienes permiso para hacer esto"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr "Debes iniciar sesión"
|
msgstr "Debes iniciar sesión"
|
||||||
|
|
||||||
@ -796,12 +796,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr "El perfil no es miembro del grupo"
|
msgstr "El perfil no es miembro del grupo"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr "No puedes borrar este evento."
|
msgstr "No puedes borrar este evento."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr "No puedes rechazar esta invitación con este perfil."
|
msgstr "No puedes rechazar esta invitación con este perfil."
|
||||||
|
|
||||||
@ -832,7 +832,7 @@ msgstr ""
|
|||||||
"Debe proporcionar una identificación o un slug para acceder a una discusión"
|
"Debe proporcionar una identificación o un slug para acceder a una discusión"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr "El perfil del organizador no es propiedad del usuario"
|
msgstr "El perfil del organizador no es propiedad del usuario"
|
||||||
|
|
||||||
@ -868,6 +868,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr "No se pueden recuperar los detalles del recurso de esta URL."
|
msgstr "No se pueden recuperar los detalles del recurso de esta URL."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr "El perfil de moderador proporcionado no tiene permiso para este evento"
|
msgstr "El perfil de moderador proporcionado no tiene permiso para este evento"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -18,312 +18,312 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.6.2\n"
|
"X-Generator: Weblate 4.6.2\n"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:38
|
#: lib/service/activity/renderer/member.ex:38
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19 lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19 lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} accepted the invitation to join the group."
|
msgid "%{member} accepted the invitation to join the group."
|
||||||
msgstr "%{member} hyväksyi kutsun liittyä ryhmään."
|
msgstr "%{member} hyväksyi kutsun liittyä ryhmään."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:42
|
#: lib/service/activity/renderer/member.ex:42
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26 lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26 lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} rejected the invitation to join the group."
|
msgid "%{member} rejected the invitation to join the group."
|
||||||
msgstr "%{member} hylkäsi kutsun liittyä ryhmään."
|
msgstr "%{member} hylkäsi kutsun liittyä ryhmään."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:30
|
#: lib/service/activity/renderer/member.ex:30
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4 lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4 lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} requested to join the group."
|
msgid "%{member} requested to join the group."
|
||||||
msgstr "%{member} haluaa liittyä ryhmään."
|
msgstr "%{member} haluaa liittyä ryhmään."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:34
|
#: lib/service/activity/renderer/member.ex:34
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11 lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11 lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} was invited by %{profile}."
|
msgid "%{member} was invited by %{profile}."
|
||||||
msgstr "%{profile} kutsui jäsenen %{member}."
|
msgstr "%{profile} kutsui jäsenen %{member}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:50
|
#: lib/service/activity/renderer/member.ex:50
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40 lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40 lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} added the member %{member}."
|
msgid "%{profile} added the member %{member}."
|
||||||
msgstr "%{profile} lisäsi jäsenen %{member}."
|
msgstr "%{profile} lisäsi jäsenen %{member}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:65
|
#: lib/service/activity/renderer/discussion.ex:65
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} archived the discussion %{discussion}."
|
msgid "%{profile} archived the discussion %{discussion}."
|
||||||
msgstr "%{profile} arkistoi keskustelun %{discussion}."
|
msgstr "%{profile} arkistoi keskustelun %{discussion}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:25
|
#: lib/service/activity/renderer/discussion.ex:25
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the discussion %{discussion}."
|
msgid "%{profile} created the discussion %{discussion}."
|
||||||
msgstr "%{profile} loi keskustelun %{discussion}."
|
msgstr "%{profile} loi keskustelun %{discussion}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:24
|
#: lib/service/activity/renderer/resource.ex:24
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5 lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5 lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the folder %{resource}."
|
msgid "%{profile} created the folder %{resource}."
|
||||||
msgstr "%{profile} loi kansion %{resource}."
|
msgstr "%{profile} loi kansion %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the group %{group}."
|
msgid "%{profile} created the group %{group}."
|
||||||
msgstr "%{profile} loi ryhmän %{group}."
|
msgstr "%{profile} loi ryhmän %{group}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:33
|
#: lib/service/activity/renderer/resource.ex:33
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20 lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20 lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the resource %{resource}."
|
msgid "%{profile} created the resource %{resource}."
|
||||||
msgstr "%{profile} loi resurssin %{resource}."
|
msgstr "%{profile} loi resurssin %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:75
|
#: lib/service/activity/renderer/discussion.ex:75
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} deleted the discussion %{discussion}."
|
msgid "%{profile} deleted the discussion %{discussion}."
|
||||||
msgstr "%{profile} poisti keskustelun %{discussion}."
|
msgstr "%{profile} poisti keskustelun %{discussion}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:97
|
#: lib/service/activity/renderer/resource.ex:97
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103 lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103 lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} deleted the folder %{resource}."
|
msgid "%{profile} deleted the folder %{resource}."
|
||||||
msgstr "%{profile} poisti kansion %{resource}."
|
msgstr "%{profile} poisti kansion %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:106
|
#: lib/service/activity/renderer/resource.ex:106
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111 lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111 lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} deleted the resource %{resource}."
|
msgid "%{profile} deleted the resource %{resource}."
|
||||||
msgstr "%{profile} poisti resurssin %{resource}."
|
msgstr "%{profile} poisti resurssin %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:58
|
#: lib/service/activity/renderer/member.ex:58
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56 lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56 lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} excluded member %{member}."
|
msgid "%{profile} excluded member %{member}."
|
||||||
msgstr "%{profile} hylkäsi jäsenen %{member}."
|
msgstr "%{profile} hylkäsi jäsenen %{member}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:76
|
#: lib/service/activity/renderer/resource.ex:76
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71 lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71 lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} moved the folder %{resource}."
|
msgid "%{profile} moved the folder %{resource}."
|
||||||
msgstr "%{profile} siirsi kansion %{resource}."
|
msgstr "%{profile} siirsi kansion %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:85
|
#: lib/service/activity/renderer/resource.ex:85
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86 lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86 lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} moved the resource %{resource}."
|
msgid "%{profile} moved the resource %{resource}."
|
||||||
msgstr "%{profile} siirsi resurssin %{resource}."
|
msgstr "%{profile} siirsi resurssin %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:62
|
#: lib/service/activity/renderer/member.ex:62
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64 lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64 lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} quit the group."
|
msgid "%{profile} quit the group."
|
||||||
msgstr "%{profile} poistui ryhmästä."
|
msgstr "%{profile} poistui ryhmästä."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:55
|
#: lib/service/activity/renderer/discussion.ex:55
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} renamed the discussion %{discussion}."
|
msgid "%{profile} renamed the discussion %{discussion}."
|
||||||
msgstr "%{profile} muutti keskustelun %{discussion} nimer."
|
msgstr "%{profile} muutti keskustelun %{discussion} nimer."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:45
|
#: lib/service/activity/renderer/resource.ex:45
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37 lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex: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}."
|
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||||
msgstr "%{profile} muutti kansion %{old_resource_title} nimeksi %{resource}."
|
msgstr "%{profile} muutti kansion %{old_resource_title} nimeksi %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:59
|
#: lib/service/activity/renderer/resource.ex:59
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53 lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex: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}."
|
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||||
msgstr "%{profile} muutti resurssin %{old_resource_title} nimeksi %{resource}."
|
msgstr "%{profile} muutti resurssin %{old_resource_title} nimeksi %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:35
|
#: lib/service/activity/renderer/discussion.ex:35
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} replied to the discussion %{discussion}."
|
msgid "%{profile} replied to the discussion %{discussion}."
|
||||||
msgstr "%{profile} vastasi keskusteluun %{discussion}."
|
msgstr "%{profile} vastasi keskusteluun %{discussion}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} updated the group %{group}."
|
msgid "%{profile} updated the group %{group}."
|
||||||
msgstr "%{profile} päivitti ryhmää %{group}."
|
msgstr "%{profile} päivitti ryhmää %{group}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:54
|
#: lib/service/activity/renderer/member.ex:54
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48 lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48 lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} updated the member %{member}."
|
msgid "%{profile} updated the member %{member}."
|
||||||
msgstr "%{profile} päivitti jäsentä %{member}."
|
msgstr "%{profile} päivitti jäsentä %{member}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:23
|
#: lib/service/activity/renderer/event.ex:23
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "The event %{event} was created by %{profile}."
|
msgid "The event %{event} was created by %{profile}."
|
||||||
msgstr "%{profile} loi tapahtuman %{event}."
|
msgstr "%{profile} loi tapahtuman %{event}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:43
|
#: lib/service/activity/renderer/event.ex:43
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||||
#, elixir-format
|
|
||||||
msgid "The event %{event} was deleted by %{profile}."
|
msgid "The event %{event} was deleted by %{profile}."
|
||||||
msgstr "%{profile} poisti tapahtuman %{event}."
|
msgstr "%{profile} poisti tapahtuman %{event}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:33
|
#: lib/service/activity/renderer/event.ex:33
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "The event %{event} was updated by %{profile}."
|
msgid "The event %{event} was updated by %{profile}."
|
||||||
msgstr "%{profile} päivitti tapahtumaa %{event}."
|
msgstr "%{profile} päivitti tapahtumaa %{event}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "The post %{post} was created by %{profile}."
|
msgid "The post %{post} was created by %{profile}."
|
||||||
msgstr "%{profile} loi julkaisun %{post}."
|
msgstr "%{profile} loi julkaisun %{post}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||||
#, elixir-format
|
|
||||||
msgid "The post %{post} was deleted by %{profile}."
|
msgid "The post %{post} was deleted by %{profile}."
|
||||||
msgstr "%{profile} poisti julkaisun %{post}."
|
msgstr "%{profile} poisti julkaisun %{post}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "The post %{post} was updated by %{profile}."
|
msgid "The post %{post} was updated by %{profile}."
|
||||||
msgstr "%{profile} päivitti julkaisun %{post}."
|
msgstr "%{profile} päivitti julkaisun %{post}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:46
|
#: lib/service/activity/renderer/member.ex:46
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33 lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33 lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} joined the group."
|
msgid "%{member} joined the group."
|
||||||
msgstr "%{member} liittyi ryhmään."
|
msgstr "%{member} liittyi ryhmään."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:63
|
#: lib/service/activity/renderer/event.ex:63
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} posted a comment on the event %{event}."
|
msgid "%{profile} posted a comment on the event %{event}."
|
||||||
msgstr "%{profile} kommentoi tapahtumaa %{event}."
|
msgstr "%{profile} kommentoi tapahtumaa %{event}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:54
|
#: lib/service/activity/renderer/event.ex:54
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} replied to a comment on the event %{event}."
|
msgid "%{profile} replied to a comment on the event %{event}."
|
||||||
msgstr "%{profile} vastasi tapahtuman %{event} kommenttiin."
|
msgstr "%{profile} vastasi tapahtuman %{event} kommenttiin."
|
||||||
|
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:27
|
|
||||||
#, elixir-format
|
#, 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."
|
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Jos et halua vastaanottaa toimenpideilmoituksia, voit muuttaa "
|
"Jos et halua vastaanottaa toimenpideilmoituksia, voit muuttaa "
|
||||||
"ilmoitustiheyttä tai poistaa ilmoitukset käytöstä asetuksista."
|
"ilmoitustiheyttä tai poistaa ilmoitukset käytöstä asetuksista."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:135
|
#: lib/web/templates/email/email_direct_activity.html.eex:135
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:23
|
#: lib/web/templates/email/email_direct_activity.text.eex:23
|
||||||
#, elixir-format
|
|
||||||
msgid "View one more activity"
|
msgid "View one more activity"
|
||||||
msgid_plural "View %{count} more activities"
|
msgid_plural "View %{count} more activities"
|
||||||
msgstr[0] "Näytä seuraava toimenpide"
|
msgstr[0] "Näytä seuraava toimenpide"
|
||||||
msgstr[1] "Näytä %{count} seuraavaa toimenpidettä"
|
msgstr[1] "Näytä %{count} seuraavaa toimenpidettä"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:44
|
#: lib/web/templates/email/email_direct_activity.html.eex:44
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:46 lib/web/templates/email/email_direct_activity.text.eex:6
|
#: lib/web/templates/email/email_direct_activity.html.eex:46 lib/web/templates/email/email_direct_activity.text.eex:6
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "There has been an activity!"
|
msgid "There has been an activity!"
|
||||||
msgid_plural "There has been some activity!"
|
msgid_plural "There has been some activity!"
|
||||||
msgstr[0] "Toimenpide!"
|
msgstr[0] "Toimenpide!"
|
||||||
msgstr[1] "Toimenpiteitä!"
|
msgstr[1] "Toimenpiteitä!"
|
||||||
|
|
||||||
#: lib/service/activity/renderer/renderer.ex:38
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/renderer.ex:38
|
||||||
msgid "Activity on %{instance}"
|
msgid "Activity on %{instance}"
|
||||||
msgstr "Toimenpide palvelimella %{instance}"
|
msgstr "Toimenpide palvelimella %{instance}"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:38
|
#: lib/service/activity/renderer/comment.ex:38
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7
|
||||||
#: lib/web/templates/email/email_anonymous_activity.html.eex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5
|
#: lib/web/templates/email/email_anonymous_activity.html.eex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} has posted an announcement under event %{event}."
|
msgid "%{profile} has posted an announcement under event %{event}."
|
||||||
msgstr "%{profile} on julkaissut ilmoituksen tapahtumassa %{event}."
|
msgstr "%{profile} on julkaissut ilmoituksen tapahtumassa %{event}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:24
|
#: lib/service/activity/renderer/comment.ex:24
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} mentionned you in a comment under event %{event}."
|
msgid "%{profile} mentionned you in a comment under event %{event}."
|
||||||
msgstr "%{profile} mainitsi sinut tapahtuman %{event} kommentissa."
|
msgstr "%{profile} mainitsi sinut tapahtuman %{event} kommentissa."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/discussion.ex:45
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/discussion.ex:45
|
||||||
msgid "%{profile} mentionned you in the discussion %{discussion}."
|
msgid "%{profile} mentionned you in the discussion %{discussion}."
|
||||||
msgstr "%{profile} mainitsi sinut keskustelussa %{discussion}."
|
msgstr "%{profile} mainitsi sinut keskustelussa %{discussion}."
|
||||||
|
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:155
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/templates/email/email_direct_activity.html.eex:155
|
||||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
|
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Jos et halua vastaanottaa toimenpideilmoituksia, voit muuttaa "
|
"Jos et halua vastaanottaa toimenpideilmoituksia, voit muuttaa "
|
||||||
"ilmoitustiheyttä tai poistaa ilmoitukset käytöstä asetuksista."
|
"ilmoitustiheyttä tai poistaa ilmoitukset käytöstä asetuksista."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:42
|
#: lib/web/templates/email/email_direct_activity.html.eex:42
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:5
|
#: lib/web/templates/email/email_direct_activity.text.eex:5
|
||||||
#, elixir-format
|
|
||||||
msgid "Here's your weekly activity recap"
|
msgid "Here's your weekly activity recap"
|
||||||
msgstr "Tässä on viikoittainen kertaus toiminnastasi"
|
msgstr "Tässä on viikoittainen kertaus toiminnastasi"
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
|
||||||
msgid "Activity notification for %{instance}"
|
msgid "Activity notification for %{instance}"
|
||||||
msgstr "Toimenpide palvelimella %{instance}"
|
msgstr "Toimenpide palvelimella %{instance}"
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:126
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:126
|
||||||
msgid "Daily activity recap for %{instance}"
|
msgid "Daily activity recap for %{instance}"
|
||||||
msgstr "Päivittäinen toiminnan kertaus instanssille %{instance}"
|
msgstr "Päivittäinen toiminnan kertaus instanssille %{instance}"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:40
|
#: lib/web/templates/email/email_direct_activity.html.eex:40
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||||
#, elixir-format
|
|
||||||
msgid "Here's your daily activity recap"
|
msgid "Here's your daily activity recap"
|
||||||
msgstr "Tässä on päivittäinen kertaus toiminnastasi"
|
msgstr "Tässä on päivittäinen kertaus toiminnastasi"
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:133
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:133
|
||||||
msgid "Weekly activity recap for %{instance}"
|
msgid "Weekly activity recap for %{instance}"
|
||||||
msgstr "Viikoittainen toiminnan kertaus instanssille %{instance}"
|
msgstr "Viikoittainen toiminnan kertaus instanssille %{instance}"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:66
|
#: lib/service/activity/renderer/comment.ex:66
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex: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}."
|
msgid "%{profile} has posted a new comment under your event %{event}."
|
||||||
msgstr "%{profile} on lähettänyt uuden kommentin tapahtumaasi %{event}."
|
msgstr "%{profile} on lähettänyt uuden kommentin tapahtumaasi %{event}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:53
|
#: lib/service/activity/renderer/comment.ex:53
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex: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}."
|
msgid "%{profile} has posted a new reply under your event %{event}."
|
||||||
msgstr "%{profiili} on lähettänyt uuden vastauksen tapahtumaasi %{event}."
|
msgstr "%{profiili} on lähettänyt uuden vastauksen tapahtumaasi %{event}."
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:46
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:46
|
||||||
msgid "Announcement for your event %{event}"
|
msgid "Announcement for your event %{event}"
|
||||||
msgstr "Ilmoitus tapahtumaasi %{event}"
|
msgstr "Ilmoitus tapahtumaasi %{event}"
|
||||||
|
|
||||||
#: lib/service/activity/renderer/group.ex:23
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/group.ex:23
|
||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr "%{profile} päivitti julkaisun %{post}."
|
msgstr "%{profile} päivitti julkaisun %{post}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr "Viestin %{post} ryhmästä %{group} poisti %{profile}."
|
msgstr "Viestin %{post} ryhmästä %{group} poisti %{profile}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr "Viestin %{post} ryhmästä %{group} julkaisi %{profile}."
|
msgstr "Viestin %{post} ryhmästä %{group} julkaisi %{profile}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr "Viestin %{post} ryhmästä %{group} päivitti %{profile}."
|
msgstr "Viestin %{post} ryhmästä %{group} päivitti %{profile}."
|
||||||
|
@ -128,7 +128,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr "Osallistumisesi tapahtumaan %{title) on hylätty"
|
msgstr "Osallistumisesi tapahtumaan %{title) on hylätty"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr "Tapahtumaa %{title} on päivitetty"
|
msgstr "Tapahtumaa %{title} on päivitetty"
|
||||||
|
|
||||||
@ -350,12 +350,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr "Mitä tietoja kerätään?"
|
msgstr "Mitä tietoja kerätään?"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr "Mobilizon palvelimella %{instance}: vahvista sähköpostiosoitteesi"
|
msgstr "Mobilizon palvelimella %{instance}: vahvista sähköpostiosoitteesi"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr "Mobilizon palvelimella %{instance}: sähköpostiosoite vaihdettu"
|
msgstr "Mobilizon palvelimella %{instance}: sähköpostiosoite vaihdettu"
|
||||||
|
|
||||||
@ -1703,3 +1703,13 @@ msgstr "Mobilizon-palvelin näyttää olevan väliakaisesti alhaalla."
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr "Palvelimen %{instance} julkinen syöte"
|
msgstr "Palvelimen %{instance} julkinen syöte"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -115,7 +115,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr "Käyttäjän asetusten tallennuksessa tapahtui virhe"
|
msgstr "Käyttäjän asetusten tallennuksessa tapahtui virhe"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr "Ryhmää ei löydy"
|
msgstr "Ryhmää ei löydy"
|
||||||
@ -355,7 +355,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr "Kommentti on jo poistettu"
|
msgstr "Kommentti on jo poistettu"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr "Keskustelua ei löydy"
|
msgstr "Keskustelua ei löydy"
|
||||||
|
|
||||||
@ -375,8 +375,8 @@ msgid "Event id not found"
|
|||||||
msgstr "Tapahtumatunnistetta ei löydy"
|
msgstr "Tapahtumatunnistetta ei löydy"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr "Tapahtumaa ei löydy"
|
msgstr "Tapahtumaa ei löydy"
|
||||||
|
|
||||||
@ -504,7 +504,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr "Merkki ei ole kelvollinen UUID"
|
msgstr "Merkki ei ole kelvollinen UUID"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr "Käyttäjää ei löydy"
|
msgstr "Käyttäjää ei löydy"
|
||||||
|
|
||||||
@ -573,7 +573,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr "Et voi poistaa kommenttia"
|
msgstr "Et voi poistaa kommenttia"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr "Et voi poistaa tapahtumaa"
|
msgstr "Et voi poistaa tapahtumaa"
|
||||||
|
|
||||||
@ -633,7 +633,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr "Pääsy resursseihin vain sisäänkirjautuneena"
|
msgstr "Pääsy resursseihin vain sisäänkirjautuneena"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr "Tapahtumien luonti vain sisäänkirjautuneena"
|
msgstr "Tapahtumien luonti vain sisäänkirjautuneena"
|
||||||
|
|
||||||
@ -653,7 +653,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr "Resurssien luonti vain sisäänkirjautuneena"
|
msgstr "Resurssien luonti vain sisäänkirjautuneena"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr "Tapahtuman poisto vain sisäänkirjautuneena"
|
msgstr "Tapahtuman poisto vain sisäänkirjautuneena"
|
||||||
|
|
||||||
@ -678,7 +678,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr "Tapahtumasta poistuminen vain sisäänkirjautuneena"
|
msgstr "Tapahtumasta poistuminen vain sisäänkirjautuneena"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr "Tapahtuman päivittäminen vain sisäänkirjautuneena"
|
msgstr "Tapahtuman päivittäminen vain sisäänkirjautuneena"
|
||||||
|
|
||||||
@ -718,47 +718,47 @@ msgid "This email is already used."
|
|||||||
msgstr "Sähköpostiosoite on jo käytössä."
|
msgstr "Sähköpostiosoite on jo käytössä."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr "Julkaisua ei löydy"
|
msgstr "Julkaisua ei löydy"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr "Virheelliset argumentit välitetty"
|
msgstr "Virheelliset argumentit välitetty"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr "Virheelliset kirjautumistiedot"
|
msgstr "Virheelliset kirjautumistiedot"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr "Palauta salasana, jotta voit kirjautua sisään"
|
msgstr "Palauta salasana, jotta voit kirjautua sisään"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr "Resurssia ei löydy"
|
msgstr "Resurssia ei löydy"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr "Jokin meni vikaan"
|
msgstr "Jokin meni vikaan"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr "Tuntematon resurssi"
|
msgstr "Tuntematon resurssi"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr "Sinulla ei ole oikeutta tähän"
|
msgstr "Sinulla ei ole oikeutta tähän"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr "Kirjaudu ensin sisään"
|
msgstr "Kirjaudu ensin sisään"
|
||||||
|
|
||||||
@ -783,12 +783,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr "Profiili ei ole ryhmän ylläpitäjä"
|
msgstr "Profiili ei ole ryhmän ylläpitäjä"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr "Et voi muokata tapahtumaa."
|
msgstr "Et voi muokata tapahtumaa."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr "Et voi yhdistää tapahtumaa tähän profiiliin."
|
msgstr "Et voi yhdistää tapahtumaa tähän profiiliin."
|
||||||
|
|
||||||
@ -818,7 +818,7 @@ msgid "You must provide either an ID or a slug to access a discussion"
|
|||||||
msgstr "Keskusteluun pääsemiseen vaaditaan tunniste tai polkutunnus"
|
msgstr "Keskusteluun pääsemiseen vaaditaan tunniste tai polkutunnus"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr "Järjestäjän profiili ei ole käyttäjän hallussa"
|
msgstr "Järjestäjän profiili ei ole käyttäjän hallussa"
|
||||||
|
|
||||||
@ -854,6 +854,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr "Resurssin tietoja ei voida hakea tästä URL-osoitteesta."
|
msgstr "Resurssin tietoja ei voida hakea tästä URL-osoitteesta."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr "Annetulla moderaattoriprofiililla ei ole oikeuksia tähän tapahtumaan"
|
msgstr "Annetulla moderaattoriprofiililla ei ole oikeuksia tähän tapahtumaan"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -20,249 +20,310 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Poedit 2.4.3\n"
|
"X-Generator: Poedit 2.4.3\n"
|
||||||
|
|
||||||
#: lib/service/activity/renderer/member.ex:38 lib/web/templates/email/activity/_member_activity_item.html.eex:19
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
#: lib/service/activity/renderer/member.ex:38
|
||||||
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19 lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||||
msgid "%{member} accepted the invitation to join the group."
|
msgid "%{member} accepted the invitation to join the group."
|
||||||
msgstr "%{member} a accepté l'invitation à rejoindre le groupe."
|
msgstr "%{member} a accepté l'invitation à rejoindre le groupe."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/member.ex:42 lib/web/templates/email/activity/_member_activity_item.html.eex:26
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
#: lib/service/activity/renderer/member.ex:42
|
||||||
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26 lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||||
msgid "%{member} rejected the invitation to join the group."
|
msgid "%{member} rejected the invitation to join the group."
|
||||||
msgstr "%{member} a refusé l'invitation à rejoindre le groupe."
|
msgstr "%{member} a refusé l'invitation à rejoindre le groupe."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/member.ex:30 lib/web/templates/email/activity/_member_activity_item.html.eex:4
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
#: lib/service/activity/renderer/member.ex:30
|
||||||
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4 lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||||
msgid "%{member} requested to join the group."
|
msgid "%{member} requested to join the group."
|
||||||
msgstr "%{member} a demandé à rejoindre le groupe."
|
msgstr "%{member} a demandé à rejoindre le groupe."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/member.ex:34 lib/web/templates/email/activity/_member_activity_item.html.eex:11
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
#: lib/service/activity/renderer/member.ex:34
|
||||||
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11 lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||||
msgid "%{member} was invited by %{profile}."
|
msgid "%{member} was invited by %{profile}."
|
||||||
msgstr "%{member} a été invité⋅e par %{profile}."
|
msgstr "%{member} a été invité⋅e par %{profile}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/member.ex:50 lib/web/templates/email/activity/_member_activity_item.html.eex:40
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
#: lib/service/activity/renderer/member.ex:50
|
||||||
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40 lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||||
msgid "%{profile} added the member %{member}."
|
msgid "%{profile} added the member %{member}."
|
||||||
msgstr "%{profile} a ajouté le ou la membre %{membre}."
|
msgstr "%{profile} a ajouté le ou la membre %{membre}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/discussion.ex:65 lib/web/templates/email/activity/_discussion_activity_item.html.eex:46
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
#: lib/service/activity/renderer/discussion.ex:65
|
||||||
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||||
msgid "%{profile} archived the discussion %{discussion}."
|
msgid "%{profile} archived the discussion %{discussion}."
|
||||||
msgstr "%{profile} a archivé la discussion %{discussion}."
|
msgstr "%{profile} a archivé la discussion %{discussion}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/discussion.ex:25 lib/web/templates/email/activity/_discussion_activity_item.html.eex:4
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
#: lib/service/activity/renderer/discussion.ex:25
|
||||||
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||||
msgid "%{profile} created the discussion %{discussion}."
|
msgid "%{profile} created the discussion %{discussion}."
|
||||||
msgstr "%{profile} a créé la discussion %{discussion}."
|
msgstr "%{profile} a créé la discussion %{discussion}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/resource.ex:24 lib/web/templates/email/activity/_resource_activity_item.html.eex:5
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
#: lib/service/activity/renderer/resource.ex:24
|
||||||
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5 lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||||
msgid "%{profile} created the folder %{resource}."
|
msgid "%{profile} created the folder %{resource}."
|
||||||
msgstr "%{profile} a créé le dossier %{resource}."
|
msgstr "%{profile} a créé le dossier %{resource}."
|
||||||
|
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4 lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
#, elixir-format
|
||||||
|
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||||
|
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||||
msgid "%{profile} created the group %{group}."
|
msgid "%{profile} created the group %{group}."
|
||||||
msgstr "%{profile} a créé le groupe %{group}."
|
msgstr "%{profile} a créé le groupe %{group}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/resource.ex:33 lib/web/templates/email/activity/_resource_activity_item.html.eex:20
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
#: lib/service/activity/renderer/resource.ex:33
|
||||||
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20 lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||||
msgid "%{profile} created the resource %{resource}."
|
msgid "%{profile} created the resource %{resource}."
|
||||||
msgstr "%{profile} a créé la resource %{resource}."
|
msgstr "%{profile} a créé la resource %{resource}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/discussion.ex:75 lib/web/templates/email/activity/_discussion_activity_item.html.eex:60
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
#: lib/service/activity/renderer/discussion.ex:75
|
||||||
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||||
msgid "%{profile} deleted the discussion %{discussion}."
|
msgid "%{profile} deleted the discussion %{discussion}."
|
||||||
msgstr "%{profile} a créé la discussion %{discussion}."
|
msgstr "%{profile} a créé la discussion %{discussion}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/resource.ex:97 lib/web/templates/email/activity/_resource_activity_item.html.eex:103
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
#: lib/service/activity/renderer/resource.ex:97
|
||||||
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103 lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||||
msgid "%{profile} deleted the folder %{resource}."
|
msgid "%{profile} deleted the folder %{resource}."
|
||||||
msgstr "%{profile} a supprimé le dossier %{resource}."
|
msgstr "%{profile} a supprimé le dossier %{resource}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/resource.ex:106 lib/web/templates/email/activity/_resource_activity_item.html.eex:111
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
#: lib/service/activity/renderer/resource.ex:106
|
||||||
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111 lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||||
msgid "%{profile} deleted the resource %{resource}."
|
msgid "%{profile} deleted the resource %{resource}."
|
||||||
msgstr "%{profile} a supprimé la resource %{resource}."
|
msgstr "%{profile} a supprimé la resource %{resource}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/member.ex:58 lib/web/templates/email/activity/_member_activity_item.html.eex:56
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
#: lib/service/activity/renderer/member.ex:58
|
||||||
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56 lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||||
msgid "%{profile} excluded member %{member}."
|
msgid "%{profile} excluded member %{member}."
|
||||||
msgstr "%{profile} a exclu le ou la membre %{membre}."
|
msgstr "%{profile} a exclu le ou la membre %{membre}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/resource.ex:76 lib/web/templates/email/activity/_resource_activity_item.html.eex:71
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
#: lib/service/activity/renderer/resource.ex:76
|
||||||
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71 lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||||
msgid "%{profile} moved the folder %{resource}."
|
msgid "%{profile} moved the folder %{resource}."
|
||||||
msgstr "%{profile} a déplacé le dossier %{resource}."
|
msgstr "%{profile} a déplacé le dossier %{resource}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/resource.ex:85 lib/web/templates/email/activity/_resource_activity_item.html.eex:86
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
#: lib/service/activity/renderer/resource.ex:85
|
||||||
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86 lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||||
msgid "%{profile} moved the resource %{resource}."
|
msgid "%{profile} moved the resource %{resource}."
|
||||||
msgstr "%{profile} a déplacé la ressource %{resource}."
|
msgstr "%{profile} a déplacé la ressource %{resource}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/member.ex:62 lib/web/templates/email/activity/_member_activity_item.html.eex:64
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
#: lib/service/activity/renderer/member.ex:62
|
||||||
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64 lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||||
msgid "%{profile} quit the group."
|
msgid "%{profile} quit the group."
|
||||||
msgstr "%{profile} a quitté le groupe."
|
msgstr "%{profile} a quitté le groupe."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/discussion.ex:55 lib/web/templates/email/activity/_discussion_activity_item.html.eex:32
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
#: lib/service/activity/renderer/discussion.ex:55
|
||||||
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||||
msgid "%{profile} renamed the discussion %{discussion}."
|
msgid "%{profile} renamed the discussion %{discussion}."
|
||||||
msgstr "%{profile} a renommé la discussion %{discussion}."
|
msgstr "%{profile} a renommé la discussion %{discussion}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/resource.ex:45 lib/web/templates/email/activity/_resource_activity_item.html.eex:37
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
#: lib/service/activity/renderer/resource.ex:45
|
||||||
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37 lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
||||||
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||||
msgstr "%{profile} a renommé le dossier %{old_resource_title} en %{resource}."
|
msgstr "%{profile} a renommé le dossier %{old_resource_title} en %{resource}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/resource.ex:59 lib/web/templates/email/activity/_resource_activity_item.html.eex:53
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
#: lib/service/activity/renderer/resource.ex:59
|
||||||
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53 lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
||||||
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||||
msgstr "%{profile} a renommé la resource %{old_resource_title} en %{resource}."
|
msgstr "%{profile} a renommé la resource %{old_resource_title} en %{resource}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/discussion.ex:35 lib/web/templates/email/activity/_discussion_activity_item.html.eex:18
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
#: lib/service/activity/renderer/discussion.ex:35
|
||||||
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||||
msgid "%{profile} replied to the discussion %{discussion}."
|
msgid "%{profile} replied to the discussion %{discussion}."
|
||||||
msgstr "%{profile} a répondu à la discussion %{discussion}."
|
msgstr "%{profile} a répondu à la discussion %{discussion}."
|
||||||
|
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19 lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
#, elixir-format
|
||||||
|
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||||
|
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||||
msgid "%{profile} updated the group %{group}."
|
msgid "%{profile} updated the group %{group}."
|
||||||
msgstr "%{profile} a mis à jour le groupe %{group}."
|
msgstr "%{profile} a mis à jour le groupe %{group}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/member.ex:54 lib/web/templates/email/activity/_member_activity_item.html.eex:48
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
#: lib/service/activity/renderer/member.ex:54
|
||||||
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48 lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||||
msgid "%{profile} updated the member %{member}."
|
msgid "%{profile} updated the member %{member}."
|
||||||
msgstr "%{profile} a mis à jour le membre %{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.eex:4
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
#: lib/service/activity/renderer/event.ex:23
|
||||||
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||||
msgid "The event %{event} was created by %{profile}."
|
msgid "The event %{event} was created by %{profile}."
|
||||||
msgstr "L'événement %{event} a été créé par %{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.eex:34
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
#: lib/service/activity/renderer/event.ex:43
|
||||||
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||||
msgid "The event %{event} was deleted by %{profile}."
|
msgid "The event %{event} was deleted by %{profile}."
|
||||||
msgstr "L'événement %{event} a été supprimé par %{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.eex:19
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
#: lib/service/activity/renderer/event.ex:33
|
||||||
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||||
msgid "The event %{event} was updated by %{profile}."
|
msgid "The event %{event} was updated by %{profile}."
|
||||||
msgstr "L'événement %{event} a été mis à jour par %{profile}."
|
msgstr "L'événement %{event} a été mis à jour par %{profile}."
|
||||||
|
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4 lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
#, elixir-format
|
||||||
|
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||||
|
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||||
msgid "The post %{post} was created by %{profile}."
|
msgid "The post %{post} was created by %{profile}."
|
||||||
msgstr "Le billet %{post} a été créé par %{profile}."
|
msgstr "Le billet %{post} a été créé par %{profile}."
|
||||||
|
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34 lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
#, elixir-format
|
||||||
|
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||||
|
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||||
msgid "The post %{post} was deleted by %{profile}."
|
msgid "The post %{post} was deleted by %{profile}."
|
||||||
msgstr "Le billet %{post} a été supprimé par %{profile}."
|
msgstr "Le billet %{post} a été supprimé par %{profile}."
|
||||||
|
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19 lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
#, elixir-format
|
||||||
|
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||||
|
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||||
msgid "The post %{post} was updated by %{profile}."
|
msgid "The post %{post} was updated by %{profile}."
|
||||||
msgstr "Le billet %{post} a été mis à jour par %{profile}."
|
msgstr "Le billet %{post} a été mis à jour par %{profile}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/member.ex:46 lib/web/templates/email/activity/_member_activity_item.html.eex:33
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
#: lib/service/activity/renderer/member.ex:46
|
||||||
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33 lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||||
msgid "%{member} joined the group."
|
msgid "%{member} joined the group."
|
||||||
msgstr "%{member} a rejoint le groupe."
|
msgstr "%{member} a rejoint le groupe."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/event.ex:63 lib/web/templates/email/activity/_event_activity_item.html.eex:58
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
#: lib/service/activity/renderer/event.ex:63
|
||||||
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||||
msgid "%{profile} posted a comment on the event %{event}."
|
msgid "%{profile} posted a comment on the event %{event}."
|
||||||
msgstr "%{profile} a posté un commentaire sur l'événement %{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.eex:43
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
#: lib/service/activity/renderer/event.ex:54
|
||||||
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||||
msgid "%{profile} replied to a comment on the event %{event}."
|
msgid "%{profile} replied to a comment on the event %{event}."
|
||||||
msgstr "%{profile} a répondu à un commentaire sur l'événement %{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
|
#: 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."
|
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."
|
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.eex:135 lib/web/templates/email/email_direct_activity.text.eex:23
|
#, elixir-format
|
||||||
|
#: lib/web/templates/email/email_direct_activity.html.eex:135
|
||||||
|
#: lib/web/templates/email/email_direct_activity.text.eex:23
|
||||||
msgid "View one more activity"
|
msgid "View one more activity"
|
||||||
msgid_plural "View %{count} more activities"
|
msgid_plural "View %{count} more activities"
|
||||||
msgstr[0] "Voir une activité de plus"
|
msgstr[0] "Voir une activité de plus"
|
||||||
msgstr[1] "Voir %{count} activités de plus"
|
msgstr[1] "Voir %{count} activités de plus"
|
||||||
|
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:44 lib/web/templates/email/email_direct_activity.html.eex:46
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:6 lib/web/templates/email/email_direct_activity.text.eex:7
|
#: lib/web/templates/email/email_direct_activity.html.eex:44
|
||||||
|
#: lib/web/templates/email/email_direct_activity.html.eex: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 "There has been an activity!"
|
||||||
msgid_plural "There has been some activity!"
|
msgid_plural "There has been some activity!"
|
||||||
msgstr[0] "Il y a eu une activité !"
|
msgstr[0] "Il y a eu une activité !"
|
||||||
msgstr[1] "Il y a eu de l'activité !"
|
msgstr[1] "Il y a eu de l'activité !"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/renderer.ex:38
|
#: lib/service/activity/renderer/renderer.ex:38
|
||||||
msgid "Activity on %{instance}"
|
msgid "Activity on %{instance}"
|
||||||
msgstr "Activité sur %{instance}"
|
msgstr "Activité sur %{instance}"
|
||||||
|
|
||||||
#: lib/service/activity/renderer/comment.ex:38 lib/web/templates/email/activity/_comment_activity_item.html.eex:19
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:7 lib/web/templates/email/email_anonymous_activity.html.eex:41
|
#: lib/service/activity/renderer/comment.ex:38
|
||||||
#: lib/web/templates/email/email_anonymous_activity.text.eex:5
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7
|
||||||
|
#: lib/web/templates/email/email_anonymous_activity.html.eex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5
|
||||||
msgid "%{profile} has posted an announcement under event %{event}."
|
msgid "%{profile} has posted an announcement under event %{event}."
|
||||||
msgstr "%{profile} a posté une annonce sous l'événement %{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.eex:4
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1
|
#: lib/service/activity/renderer/comment.ex:24
|
||||||
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1
|
||||||
msgid "%{profile} mentionned you in a comment under event %{event}."
|
msgid "%{profile} mentionned you in a comment under event %{event}."
|
||||||
msgstr "%{profile} vous a mentionné dans un commentaire sous l'événement %{event}."
|
msgstr "%{profile} vous a mentionné dans un commentaire sous l'événement %{event}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:45
|
#: lib/service/activity/renderer/discussion.ex:45
|
||||||
msgid "%{profile} mentionned you in the discussion %{discussion}."
|
msgid "%{profile} mentionned you in the discussion %{discussion}."
|
||||||
msgstr "%{profile} vous a mentionné dans la discussion %{discussion}."
|
msgstr "%{profile} vous a mentionné dans la discussion %{discussion}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:155
|
#: lib/web/templates/email/email_direct_activity.html.eex:155
|
||||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
|
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vous ne voulez pas recevoir de notifications d'activité ? Vous pouvez changer leur fréquence ou les désactiver dans %{tag_start}vos "
|
"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}."
|
"préférences%{tag_end}."
|
||||||
|
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:42 lib/web/templates/email/email_direct_activity.text.eex:5
|
#, elixir-format
|
||||||
|
#: lib/web/templates/email/email_direct_activity.html.eex:42
|
||||||
|
#: lib/web/templates/email/email_direct_activity.text.eex:5
|
||||||
msgid "Here's your weekly activity recap"
|
msgid "Here's your weekly activity recap"
|
||||||
msgstr "Voici votre récapitulatif hebdomadaire d'activité"
|
msgstr "Voici votre récapitulatif hebdomadaire d'activité"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
|
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
|
||||||
msgid "Activity notification for %{instance}"
|
msgid "Activity notification for %{instance}"
|
||||||
msgstr "Notification d'activité sur %{instance}"
|
msgstr "Notification d'activité sur %{instance}"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/email/activity.ex:126
|
#: lib/web/email/activity.ex:126
|
||||||
msgid "Daily activity recap for %{instance}"
|
msgid "Daily activity recap for %{instance}"
|
||||||
msgstr "Récapitulatif quotidien d'activité sur %{instance}"
|
msgstr "Récapitulatif quotidien d'activité sur %{instance}"
|
||||||
|
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:40 lib/web/templates/email/email_direct_activity.text.eex:4
|
#, elixir-format
|
||||||
|
#: lib/web/templates/email/email_direct_activity.html.eex:40
|
||||||
|
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||||
msgid "Here's your daily activity recap"
|
msgid "Here's your daily activity recap"
|
||||||
msgstr "Voici votre récapitulatif quotidien d'activité"
|
msgstr "Voici votre récapitulatif quotidien d'activité"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/email/activity.ex:133
|
#: lib/web/email/activity.ex:133
|
||||||
msgid "Weekly activity recap for %{instance}"
|
msgid "Weekly activity recap for %{instance}"
|
||||||
msgstr "Récapitulatif hebdomadaire d'activité sur %{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.eex:51
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19
|
#: lib/service/activity/renderer/comment.ex:66
|
||||||
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
|
||||||
msgid "%{profile} has posted a new comment under your event %{event}."
|
msgid "%{profile} has posted a new comment under your event %{event}."
|
||||||
msgstr "%{profile} a posté un nouveau commentaire sous votre événement %{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.eex:36
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13
|
#: lib/service/activity/renderer/comment.ex:53
|
||||||
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
|
||||||
msgid "%{profile} has posted a new reply under your event %{event}."
|
msgid "%{profile} has posted a new reply under your event %{event}."
|
||||||
msgstr "%{profile} a posté une nouvelle réponse sous votre événement %{event}."
|
msgstr "%{profile} a posté une nouvelle réponse sous votre événement %{event}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/email/activity.ex:46
|
#: lib/web/email/activity.ex:46
|
||||||
msgid "Announcement for your event %{event}"
|
msgid "Announcement for your event %{event}"
|
||||||
msgstr "Annonce pour votre événement %{event}"
|
msgstr "Annonce pour votre événement %{event}"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/group.ex:23
|
#: lib/service/activity/renderer/group.ex:23
|
||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr "Le groupe %{group} a été mis à jour par %{profile}."
|
msgstr "Le groupe %{group} a été mis à jour par %{profile}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr "Le billet %{post} du groupe %{group} a été supprimé par %{profile}."
|
msgstr "Le billet %{post} du groupe %{group} a été supprimé par %{profile}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr "Le billet %{post} du groupe %{group} a été publié par %{profile}."
|
msgstr "Le billet %{post} du groupe %{group} a été publié par %{profile}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr "Le billet %{post} du groupe %{group} a été mis à jour par %{profile}."
|
msgstr "Le billet %{post} du groupe %{group} a été mis à jour par %{profile}."
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -117,7 +117,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr "Erreur lors de la sauvegarde des paramètres utilisateur"
|
msgstr "Erreur lors de la sauvegarde des paramètres utilisateur"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr "Groupe non trouvé"
|
msgstr "Groupe non trouvé"
|
||||||
@ -356,7 +356,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr "Le commentaire est déjà supprimé"
|
msgstr "Le commentaire est déjà supprimé"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr "Discussion non trouvée"
|
msgstr "Discussion non trouvée"
|
||||||
|
|
||||||
@ -376,8 +376,8 @@ msgid "Event id not found"
|
|||||||
msgstr "ID de l'événement non trouvé"
|
msgstr "ID de l'événement non trouvé"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr "Événement non trouvé"
|
msgstr "Événement non trouvé"
|
||||||
|
|
||||||
@ -505,7 +505,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr "Ce jeton n'est pas un UUID valide"
|
msgstr "Ce jeton n'est pas un UUID valide"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr "Utilisateur·ice non trouvé·e"
|
msgstr "Utilisateur·ice non trouvé·e"
|
||||||
|
|
||||||
@ -573,7 +573,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr "Vous ne pouvez pas supprimer ce commentaire"
|
msgstr "Vous ne pouvez pas supprimer ce commentaire"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr "Vous ne pouvez pas supprimer cet événement"
|
msgstr "Vous ne pouvez pas supprimer cet événement"
|
||||||
|
|
||||||
@ -633,7 +633,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr "Vous devez être connecté·e pour supprimer un groupe"
|
msgstr "Vous devez être connecté·e pour supprimer un groupe"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr "Vous devez être connecté·e pour créer des événements"
|
msgstr "Vous devez être connecté·e pour créer des événements"
|
||||||
|
|
||||||
@ -653,7 +653,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr "Vous devez être connecté·e pour quitter un groupe"
|
msgstr "Vous devez être connecté·e pour quitter un groupe"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr "Vous devez être connecté·e pour supprimer un groupe"
|
msgstr "Vous devez être connecté·e pour supprimer un groupe"
|
||||||
|
|
||||||
@ -678,7 +678,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr "Vous devez être connecté·e pour quitter un groupe"
|
msgstr "Vous devez être connecté·e pour quitter un groupe"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr "Vous devez être connecté·e pour mettre à jour un groupe"
|
msgstr "Vous devez être connecté·e pour mettre à jour un groupe"
|
||||||
|
|
||||||
@ -718,47 +718,47 @@ msgid "This email is already used."
|
|||||||
msgstr "Cette adresse e-mail est déjà utilisée."
|
msgstr "Cette adresse e-mail est déjà utilisée."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr "Billet non trouvé"
|
msgstr "Billet non trouvé"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr "Paramètres fournis invalides"
|
msgstr "Paramètres fournis invalides"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr "Identifiants invalides"
|
msgstr "Identifiants invalides"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr "Réinitialiser votre mot de passe pour vous connecter"
|
msgstr "Réinitialiser votre mot de passe pour vous connecter"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr "Ressource non trouvée"
|
msgstr "Ressource non trouvée"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr "Quelque chose s'est mal passé"
|
msgstr "Quelque chose s'est mal passé"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr "Ressource inconnue"
|
msgstr "Ressource inconnue"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr "Vous n'avez pas la permission de faire ceci"
|
msgstr "Vous n'avez pas la permission de faire ceci"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr "Vous devez être connecté·e"
|
msgstr "Vous devez être connecté·e"
|
||||||
|
|
||||||
@ -783,12 +783,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr "Le profil n'est pas administrateur·ice pour le groupe"
|
msgstr "Le profil n'est pas administrateur·ice pour le groupe"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr "Vous ne pouvez pas éditer cet événement."
|
msgstr "Vous ne pouvez pas éditer cet événement."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr "Vous ne pouvez pas attribuer cet événement à ce profil."
|
msgstr "Vous ne pouvez pas attribuer cet événement à ce profil."
|
||||||
|
|
||||||
@ -818,7 +818,7 @@ msgid "You must provide either an ID or a slug to access a discussion"
|
|||||||
msgstr "Vous devez fournir un ID ou bien un slug pour accéder à une discussion"
|
msgstr "Vous devez fournir un ID ou bien un slug pour accéder à une discussion"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr "Le profil de l'organisateur·ice n'appartient pas à l'utilisateur·ice"
|
msgstr "Le profil de l'organisateur·ice n'appartient pas à l'utilisateur·ice"
|
||||||
|
|
||||||
@ -854,6 +854,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr "Impossible de récupérer les détails de la ressource depuis cette URL."
|
msgstr "Impossible de récupérer les détails de la ressource depuis cette URL."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr "Le profil modérateur fourni n'a pas de permissions sur cet événement"
|
msgstr "Le profil modérateur fourni n'a pas de permissions sur cet événement"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -302,17 +302,17 @@ msgstr ""
|
|||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -127,7 +127,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr "Foi rexeitada a túa participación no evento %{title}"
|
msgstr "Foi rexeitada a túa participación no evento %{title}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr "Actualizouse o evento %{title}"
|
msgstr "Actualizouse o evento %{title}"
|
||||||
|
|
||||||
@ -352,12 +352,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr "Que información recollemos?"
|
msgstr "Que información recollemos?"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr "Mobilizon en %{instance}: confirma o enderezo de email"
|
msgstr "Mobilizon en %{instance}: confirma o enderezo de email"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr "Mobilizon en %{instance}: email cambiado"
|
msgstr "Mobilizon en %{instance}: email cambiado"
|
||||||
|
|
||||||
@ -1699,3 +1699,13 @@ msgstr ""
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr "Fonte pública de %{instance}"
|
msgstr "Fonte pública de %{instance}"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -115,7 +115,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr "Erro ó gardar os axustes de usuaria"
|
msgstr "Erro ó gardar os axustes de usuaria"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr "Grupo non atopado"
|
msgstr "Grupo non atopado"
|
||||||
@ -355,7 +355,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr "O comentario xa foi eliminado"
|
msgstr "O comentario xa foi eliminado"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr "Non se atopa a conversa"
|
msgstr "Non se atopa a conversa"
|
||||||
|
|
||||||
@ -375,8 +375,8 @@ msgid "Event id not found"
|
|||||||
msgstr "Non se atopou o ID do evento"
|
msgstr "Non se atopou o ID do evento"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr "Evento non atopado"
|
msgstr "Evento non atopado"
|
||||||
|
|
||||||
@ -504,7 +504,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr "O token non é un UUID válido"
|
msgstr "O token non é un UUID válido"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr "Usuaria non atopada"
|
msgstr "Usuaria non atopada"
|
||||||
|
|
||||||
@ -573,7 +573,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr "Non podes eliminar este comentario"
|
msgstr "Non podes eliminar este comentario"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr "Non podes eliminar este evento"
|
msgstr "Non podes eliminar este evento"
|
||||||
|
|
||||||
@ -641,7 +641,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr "Tes que estar conectada para acceder ós recursos"
|
msgstr "Tes que estar conectada para acceder ós recursos"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr "Tes que estar conectada para crear eventos"
|
msgstr "Tes que estar conectada para crear eventos"
|
||||||
|
|
||||||
@ -661,7 +661,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr "Tes que estar conectada para crear recursos"
|
msgstr "Tes que estar conectada para crear recursos"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr "Tes que estar conectada para eliminar un evento"
|
msgstr "Tes que estar conectada para eliminar un evento"
|
||||||
|
|
||||||
@ -686,7 +686,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr "Tes que estar conectada para saír dun evento"
|
msgstr "Tes que estar conectada para saír dun evento"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr "Tes que estar conectada para actualizar un evento"
|
msgstr "Tes que estar conectada para actualizar un evento"
|
||||||
|
|
||||||
@ -727,47 +727,47 @@ msgid "This email is already used."
|
|||||||
msgstr "Este email xa se está a usar."
|
msgstr "Este email xa se está a usar."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr "Non se atopa a publicación"
|
msgstr "Non se atopa a publicación"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr "Argumentos proporcionados non válidos"
|
msgstr "Argumentos proporcionados non válidos"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr "Credenciais non válidas"
|
msgstr "Credenciais non válidas"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr "Restablece o teu contrasinal para conectar"
|
msgstr "Restablece o teu contrasinal para conectar"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr "Recurso non atopado"
|
msgstr "Recurso non atopado"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr "Algo foi mal"
|
msgstr "Algo foi mal"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr "Recurso descoñecido"
|
msgstr "Recurso descoñecido"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr "Non tes permiso para facer isto"
|
msgstr "Non tes permiso para facer isto"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr "Tes que estar conectada"
|
msgstr "Tes que estar conectada"
|
||||||
|
|
||||||
@ -792,12 +792,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr "O perfil non é administrador do grupo"
|
msgstr "O perfil non é administrador do grupo"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr "Non podes editar este evento."
|
msgstr "Non podes editar este evento."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr "Non podes atribuír este evento a este perfil."
|
msgstr "Non podes atribuír este evento a este perfil."
|
||||||
|
|
||||||
@ -827,7 +827,7 @@ msgid "You must provide either an ID or a slug to access a discussion"
|
|||||||
msgstr "Debes proporcionar ou ben un ID ou nome para acceder á conversa"
|
msgstr "Debes proporcionar ou ben un ID ou nome para acceder á conversa"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr "O perfil da organización non pertence á usuaria"
|
msgstr "O perfil da organización non pertence á usuaria"
|
||||||
|
|
||||||
@ -863,6 +863,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr "Non se puideron obter os detalles do recurso desde o URL."
|
msgstr "Non se puideron obter os detalles do recurso desde o URL."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr "O perfil da moderadora proporcionado non ten permisos neste evento"
|
msgstr "O perfil da moderadora proporcionado non ten permisos neste evento"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -302,17 +302,17 @@ msgstr ""
|
|||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -134,7 +134,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr "Elutasították a részvételét a(z) %{title} eseményen"
|
msgstr "Elutasították a részvételét a(z) %{title} eseményen"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr "A(z) %{title} esemény frissítésre került"
|
msgstr "A(z) %{title} esemény frissítésre került"
|
||||||
|
|
||||||
@ -358,12 +358,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr "Milyen információkat gyűjtünk?"
|
msgstr "Milyen információkat gyűjtünk?"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr "Mobilizon itt: %{instance}: erősítse meg az e-mail-címét"
|
msgstr "Mobilizon itt: %{instance}: erősítse meg az e-mail-címét"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr "Mobilizon itt: %{instance}: e-mail-cím megváltozott"
|
msgstr "Mobilizon itt: %{instance}: e-mail-cím megváltozott"
|
||||||
|
|
||||||
@ -1456,3 +1456,13 @@ msgstr ""
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -131,7 +131,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr "Hiba a felhasználói beállítások mentésekor"
|
msgstr "Hiba a felhasználói beállítások mentésekor"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr "Nem található a csoport"
|
msgstr "Nem található a csoport"
|
||||||
@ -372,7 +372,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr "A hozzászólást már törölték"
|
msgstr "A hozzászólást már törölték"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr "Nem található a megbeszélés"
|
msgstr "Nem található a megbeszélés"
|
||||||
|
|
||||||
@ -392,8 +392,8 @@ msgid "Event id not found"
|
|||||||
msgstr "Nem található az eseményazonosító"
|
msgstr "Nem található az eseményazonosító"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr "Nem található az esemény"
|
msgstr "Nem található az esemény"
|
||||||
|
|
||||||
@ -521,7 +521,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr "A token nem érvényes UUID"
|
msgstr "A token nem érvényes UUID"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr "Nem található a felhasználó"
|
msgstr "Nem található a felhasználó"
|
||||||
|
|
||||||
@ -590,7 +590,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr "Nem tudja törölni ezt a hozzászólást"
|
msgstr "Nem tudja törölni ezt a hozzászólást"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr "Nem tudja törölni ezt az eseményt"
|
msgstr "Nem tudja törölni ezt az eseményt"
|
||||||
|
|
||||||
@ -664,7 +664,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr "Bejelentkezve kell lennie az erőforrásokhoz való hozzáféréshez"
|
msgstr "Bejelentkezve kell lennie az erőforrásokhoz való hozzáféréshez"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr "Bejelentkezve kell lennie az események létrehozásához"
|
msgstr "Bejelentkezve kell lennie az események létrehozásához"
|
||||||
|
|
||||||
@ -684,7 +684,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr "Bejelentkezve kell lennie az erőforrások létrehozásához"
|
msgstr "Bejelentkezve kell lennie az erőforrások létrehozásához"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr "Bejelentkezve kell lennie egy esemény törléséhez"
|
msgstr "Bejelentkezve kell lennie egy esemény törléséhez"
|
||||||
|
|
||||||
@ -709,7 +709,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr "Bejelentkezve kell lennie egy esemény elhagyásához"
|
msgstr "Bejelentkezve kell lennie egy esemény elhagyásához"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr "Bejelentkezve kell lennie egy esemény frissítéséhez"
|
msgstr "Bejelentkezve kell lennie egy esemény frissítéséhez"
|
||||||
|
|
||||||
@ -750,47 +750,47 @@ msgid "This email is already used."
|
|||||||
msgstr "Ez az e-mail-cím már használatban van."
|
msgstr "Ez az e-mail-cím már használatban van."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr "Nem található a hozzászólás"
|
msgstr "Nem található a hozzászólás"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr "Érvénytelen argumentumok lettek átadva"
|
msgstr "Érvénytelen argumentumok lettek átadva"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr "Érvénytelen hitelesítési adatok"
|
msgstr "Érvénytelen hitelesítési adatok"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr "Állítsa vissza a jelszavát a bejelentkezéshez"
|
msgstr "Állítsa vissza a jelszavát a bejelentkezéshez"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr "Nem található az erőforrás"
|
msgstr "Nem található az erőforrás"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr "Valami elromlott"
|
msgstr "Valami elromlott"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr "Ismeretlen erőforrás"
|
msgstr "Ismeretlen erőforrás"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr "Nincs jogosultsága, hogy ezt tegye"
|
msgstr "Nincs jogosultsága, hogy ezt tegye"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr "Bejelentkezve kell lennie"
|
msgstr "Bejelentkezve kell lennie"
|
||||||
|
|
||||||
@ -815,12 +815,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr "A profil nem adminisztrátor ennél a csoportnál"
|
msgstr "A profil nem adminisztrátor ennél a csoportnál"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr "Nem tudja szerkeszteni ezt az eseményt."
|
msgstr "Nem tudja szerkeszteni ezt az eseményt."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr "Nem tudja ezt az eseményt ennek a profilnak tulajdonítani."
|
msgstr "Nem tudja ezt az eseményt ennek a profilnak tulajdonítani."
|
||||||
|
|
||||||
@ -852,7 +852,7 @@ msgstr ""
|
|||||||
"megbeszéléshez való hozzáféréshez"
|
"megbeszéléshez való hozzáféréshez"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr "A szervező profilját nem a felhasználó birtokolja"
|
msgstr "A szervező profilját nem a felhasználó birtokolja"
|
||||||
|
|
||||||
@ -888,6 +888,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr "Nem lehet lekérni az erőforrás részleteit erről az URL-ről."
|
msgstr "Nem lehet lekérni az erőforrás részleteit erről az URL-ről."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr "A megadott moderátorprofilnak nincs jogosultsága ezen az eseményen"
|
msgstr "A megadott moderátorprofilnak nincs jogosultsága ezen az eseményen"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -23,306 +23,306 @@ msgstr ""
|
|||||||
## Run "mix gettext.extract" to bring this file up to
|
## Run "mix gettext.extract" to bring this file up to
|
||||||
## date. Leave "msgstr"s empty as changing them here as no
|
## date. Leave "msgstr"s empty as changing them here as no
|
||||||
## effect: edit them in PO (.po) files instead.
|
## effect: edit them in PO (.po) files instead.
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:38
|
#: lib/service/activity/renderer/member.ex:38
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19 lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19 lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} accepted the invitation to join the group."
|
msgid "%{member} accepted the invitation to join the group."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:42
|
#: lib/service/activity/renderer/member.ex:42
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26 lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26 lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} rejected the invitation to join the group."
|
msgid "%{member} rejected the invitation to join the group."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:30
|
#: lib/service/activity/renderer/member.ex:30
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4 lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4 lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} requested to join the group."
|
msgid "%{member} requested to join the group."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:34
|
#: lib/service/activity/renderer/member.ex:34
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11 lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11 lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} was invited by %{profile}."
|
msgid "%{member} was invited by %{profile}."
|
||||||
msgstr "%{member} diundang oleh %{profile}."
|
msgstr "%{member} diundang oleh %{profile}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:50
|
#: lib/service/activity/renderer/member.ex:50
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40 lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40 lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} added the member %{member}."
|
msgid "%{profile} added the member %{member}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:65
|
#: lib/service/activity/renderer/discussion.ex:65
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} archived the discussion %{discussion}."
|
msgid "%{profile} archived the discussion %{discussion}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:25
|
#: lib/service/activity/renderer/discussion.ex:25
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the discussion %{discussion}."
|
msgid "%{profile} created the discussion %{discussion}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:24
|
#: lib/service/activity/renderer/resource.ex:24
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5 lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5 lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the folder %{resource}."
|
msgid "%{profile} created the folder %{resource}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the group %{group}."
|
msgid "%{profile} created the group %{group}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:33
|
#: lib/service/activity/renderer/resource.ex:33
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20 lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20 lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the resource %{resource}."
|
msgid "%{profile} created the resource %{resource}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:75
|
#: lib/service/activity/renderer/discussion.ex:75
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} deleted the discussion %{discussion}."
|
msgid "%{profile} deleted the discussion %{discussion}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:97
|
#: lib/service/activity/renderer/resource.ex:97
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103 lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103 lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} deleted the folder %{resource}."
|
msgid "%{profile} deleted the folder %{resource}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:106
|
#: lib/service/activity/renderer/resource.ex:106
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111 lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111 lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} deleted the resource %{resource}."
|
msgid "%{profile} deleted the resource %{resource}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:58
|
#: lib/service/activity/renderer/member.ex:58
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56 lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56 lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} excluded member %{member}."
|
msgid "%{profile} excluded member %{member}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:76
|
#: lib/service/activity/renderer/resource.ex:76
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71 lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71 lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} moved the folder %{resource}."
|
msgid "%{profile} moved the folder %{resource}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:85
|
#: lib/service/activity/renderer/resource.ex:85
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86 lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86 lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} moved the resource %{resource}."
|
msgid "%{profile} moved the resource %{resource}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:62
|
#: lib/service/activity/renderer/member.ex:62
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64 lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64 lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} quit the group."
|
msgid "%{profile} quit the group."
|
||||||
msgstr "%{profile} keluar dari kelompok."
|
msgstr "%{profile} keluar dari kelompok."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:55
|
#: lib/service/activity/renderer/discussion.ex:55
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} renamed the discussion %{discussion}."
|
msgid "%{profile} renamed the discussion %{discussion}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:45
|
#: lib/service/activity/renderer/resource.ex:45
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37 lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex: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}."
|
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:59
|
#: lib/service/activity/renderer/resource.ex:59
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53 lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex: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}."
|
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:35
|
#: lib/service/activity/renderer/discussion.ex:35
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} replied to the discussion %{discussion}."
|
msgid "%{profile} replied to the discussion %{discussion}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} updated the group %{group}."
|
msgid "%{profile} updated the group %{group}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:54
|
#: lib/service/activity/renderer/member.ex:54
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48 lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48 lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} updated the member %{member}."
|
msgid "%{profile} updated the member %{member}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:23
|
#: lib/service/activity/renderer/event.ex:23
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "The event %{event} was created by %{profile}."
|
msgid "The event %{event} was created by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:43
|
#: lib/service/activity/renderer/event.ex:43
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||||
#, elixir-format
|
|
||||||
msgid "The event %{event} was deleted by %{profile}."
|
msgid "The event %{event} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:33
|
#: lib/service/activity/renderer/event.ex:33
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "The event %{event} was updated by %{profile}."
|
msgid "The event %{event} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "The post %{post} was created by %{profile}."
|
msgid "The post %{post} was created by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||||
#, elixir-format
|
|
||||||
msgid "The post %{post} was deleted by %{profile}."
|
msgid "The post %{post} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "The post %{post} was updated by %{profile}."
|
msgid "The post %{post} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:46
|
#: lib/service/activity/renderer/member.ex:46
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33 lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33 lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} joined the group."
|
msgid "%{member} joined the group."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:63
|
#: lib/service/activity/renderer/event.ex:63
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} posted a comment on the event %{event}."
|
msgid "%{profile} posted a comment on the event %{event}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:54
|
#: lib/service/activity/renderer/event.ex:54
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} replied to a comment on the event %{event}."
|
msgid "%{profile} replied to a comment on the event %{event}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:27
|
|
||||||
#, elixir-format
|
#, 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."
|
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:135
|
#: lib/web/templates/email/email_direct_activity.html.eex:135
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:23
|
#: lib/web/templates/email/email_direct_activity.text.eex:23
|
||||||
#, elixir-format
|
|
||||||
msgid "View one more activity"
|
msgid "View one more activity"
|
||||||
msgid_plural "View %{count} more activities"
|
msgid_plural "View %{count} more activities"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:44
|
#: lib/web/templates/email/email_direct_activity.html.eex:44
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:46 lib/web/templates/email/email_direct_activity.text.eex:6
|
#: lib/web/templates/email/email_direct_activity.html.eex:46 lib/web/templates/email/email_direct_activity.text.eex:6
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "There has been an activity!"
|
msgid "There has been an activity!"
|
||||||
msgid_plural "There has been some activity!"
|
msgid_plural "There has been some activity!"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
|
|
||||||
#: lib/service/activity/renderer/renderer.ex:38
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/renderer.ex:38
|
||||||
msgid "Activity on %{instance}"
|
msgid "Activity on %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:38
|
#: lib/service/activity/renderer/comment.ex:38
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7
|
||||||
#: lib/web/templates/email/email_anonymous_activity.html.eex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5
|
#: lib/web/templates/email/email_anonymous_activity.html.eex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} has posted an announcement under event %{event}."
|
msgid "%{profile} has posted an announcement under event %{event}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:24
|
#: lib/service/activity/renderer/comment.ex:24
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} mentionned you in a comment under event %{event}."
|
msgid "%{profile} mentionned you in a comment under event %{event}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/service/activity/renderer/discussion.ex:45
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/discussion.ex:45
|
||||||
msgid "%{profile} mentionned you in the discussion %{discussion}."
|
msgid "%{profile} mentionned you in the discussion %{discussion}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:155
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/templates/email/email_direct_activity.html.eex:155
|
||||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
|
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:42
|
#: lib/web/templates/email/email_direct_activity.html.eex:42
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:5
|
#: lib/web/templates/email/email_direct_activity.text.eex:5
|
||||||
#, elixir-format
|
|
||||||
msgid "Here's your weekly activity recap"
|
msgid "Here's your weekly activity recap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
|
||||||
msgid "Activity notification for %{instance}"
|
msgid "Activity notification for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:126
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:126
|
||||||
msgid "Daily activity recap for %{instance}"
|
msgid "Daily activity recap for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:40
|
#: lib/web/templates/email/email_direct_activity.html.eex:40
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||||
#, elixir-format
|
|
||||||
msgid "Here's your daily activity recap"
|
msgid "Here's your daily activity recap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:133
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:133
|
||||||
msgid "Weekly activity recap for %{instance}"
|
msgid "Weekly activity recap for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:66
|
#: lib/service/activity/renderer/comment.ex:66
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex: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}."
|
msgid "%{profile} has posted a new comment under your event %{event}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:53
|
#: lib/service/activity/renderer/comment.ex:53
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex: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}."
|
msgid "%{profile} has posted a new reply under your event %{event}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:46
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:46
|
||||||
msgid "Announcement for your event %{event}"
|
msgid "Announcement for your event %{event}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/service/activity/renderer/group.ex:23
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/group.ex:23
|
||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
File diff suppressed because it is too large
Load Diff
850
priv/gettext/id/LC_MESSAGES/errors.po
Normal file
850
priv/gettext/id/LC_MESSAGES/errors.po
Normal file
@ -0,0 +1,850 @@
|
|||||||
|
## "msgid"s in this file come from POT (.pot) files.
|
||||||
|
##
|
||||||
|
## Do not add, change, or remove "msgid"s manually here as
|
||||||
|
## they're tied to the ones in the corresponding POT file
|
||||||
|
## (with the same domain).
|
||||||
|
##
|
||||||
|
## Use "mix gettext.extract --merge" or "mix gettext.merge"
|
||||||
|
## to merge POT files into PO files.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Language: id\n"
|
||||||
|
"Plural-Forms: nplurals=1\n"
|
||||||
|
|
||||||
|
#: lib/mobilizon/discussions/discussion.ex:67
|
||||||
|
msgid "can't be blank"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "has already been taken"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "is invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "must be accepted"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "has invalid format"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "has an invalid entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "is reserved"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "does not match confirmation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "is still associated with this entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "are still associated with this entry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "should be %{count} character(s)"
|
||||||
|
msgid_plural "should be %{count} character(s)"
|
||||||
|
msgstr[0] ""
|
||||||
|
|
||||||
|
msgid "should have %{count} item(s)"
|
||||||
|
msgid_plural "should have %{count} item(s)"
|
||||||
|
msgstr[0] ""
|
||||||
|
|
||||||
|
msgid "should be at least %{count} character(s)"
|
||||||
|
msgid_plural "should be at least %{count} character(s)"
|
||||||
|
msgstr[0] ""
|
||||||
|
|
||||||
|
msgid "should have at least %{count} item(s)"
|
||||||
|
msgid_plural "should have at least %{count} item(s)"
|
||||||
|
msgstr[0] ""
|
||||||
|
|
||||||
|
msgid "should be at most %{count} character(s)"
|
||||||
|
msgid_plural "should be at most %{count} character(s)"
|
||||||
|
msgstr[0] ""
|
||||||
|
|
||||||
|
msgid "should have at most %{count} item(s)"
|
||||||
|
msgid_plural "should have at most %{count} item(s)"
|
||||||
|
msgstr[0] ""
|
||||||
|
|
||||||
|
msgid "must be less than %{number}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "must be greater than %{number}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "must be less than or equal to %{number}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "must be greater than or equal to %{number}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "must be equal to %{number}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:100
|
||||||
|
msgid "Cannot refresh the token"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/group.ex:206
|
||||||
|
msgid "Current profile is not a member of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/group.ex:210
|
||||||
|
msgid "Current profile is not an administrator of the selected group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:523
|
||||||
|
msgid "Error while saving user settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
|
msgid "Group not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/group.ex:68
|
||||||
|
msgid "Group with ID %{id} not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:80
|
||||||
|
msgid "Impossible to authenticate, either your email or password are invalid."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/group.ex:266
|
||||||
|
msgid "Member not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/actor.ex:61 lib/graphql/resolvers/actor.ex:91
|
||||||
|
#: lib/graphql/resolvers/user.ex:428
|
||||||
|
msgid "No profile found for the moderator user"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:215
|
||||||
|
msgid "No user to validate with this email was found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/person.ex:254 lib/graphql/resolvers/user.ex:240
|
||||||
|
msgid "No user with this email was found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/feed_token.ex:28
|
||||||
|
#: lib/graphql/resolvers/participant.ex:28 lib/graphql/resolvers/participant.ex:159
|
||||||
|
#: lib/graphql/resolvers/participant.ex:188 lib/graphql/resolvers/person.ex:165 lib/graphql/resolvers/person.ex:199
|
||||||
|
#: lib/graphql/resolvers/person.ex:279 lib/graphql/resolvers/person.ex:295 lib/graphql/resolvers/person.ex:323
|
||||||
|
#: lib/graphql/resolvers/person.ex:340
|
||||||
|
msgid "Profile is not owned by authenticated user"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:145
|
||||||
|
msgid "Registrations are not open"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:353
|
||||||
|
msgid "The current password is invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:398
|
||||||
|
msgid "The new email doesn't seem to be valid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:395
|
||||||
|
msgid "The new email must be different"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:356
|
||||||
|
msgid "The new password must be different"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:392 lib/graphql/resolvers/user.ex:450
|
||||||
|
#: lib/graphql/resolvers/user.ex:453
|
||||||
|
msgid "The password provided is invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:360
|
||||||
|
msgid "The password you have chosen is too short. Please make sure your password contains at least 6 characters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:236
|
||||||
|
msgid "This user can't reset their password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:76
|
||||||
|
msgid "This user has been disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:199
|
||||||
|
msgid "Unable to validate user"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:431
|
||||||
|
msgid "User already disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:498
|
||||||
|
msgid "User requested is not logged-in"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/group.ex:240
|
||||||
|
msgid "You are already a member of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/group.ex:273
|
||||||
|
msgid "You can't leave this group because you are the only administrator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/group.ex:237
|
||||||
|
msgid "You cannot join this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/group.ex:96
|
||||||
|
msgid "You may not list groups unless moderator."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:403
|
||||||
|
msgid "You need to be logged-in to change your email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:368
|
||||||
|
msgid "You need to be logged-in to change your password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/group.ex:215
|
||||||
|
msgid "You need to be logged-in to delete a group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:458
|
||||||
|
msgid "You need to be logged-in to delete your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/group.ex:245
|
||||||
|
msgid "You need to be logged-in to join a group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/group.ex:278
|
||||||
|
msgid "You need to be logged-in to leave a group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/group.ex:180
|
||||||
|
msgid "You need to be logged-in to update a group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:105
|
||||||
|
msgid "You need to have an existing token to get a refresh token"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:218 lib/graphql/resolvers/user.ex:243
|
||||||
|
msgid "You requested again a confirmation email too soon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:148
|
||||||
|
msgid "Your email is not on the allowlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/actor.ex:67 lib/graphql/resolvers/actor.ex:97
|
||||||
|
msgid "Error while performing background task"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/actor.ex:30
|
||||||
|
msgid "No profile found with this ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/actor.ex:57 lib/graphql/resolvers/actor.ex:94
|
||||||
|
msgid "No remote profile found with this ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/actor.ex:72
|
||||||
|
msgid "Only moderators and administrators can suspend a profile"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/actor.ex:102
|
||||||
|
msgid "Only moderators and administrators can unsuspend a profile"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/actor.ex:27
|
||||||
|
msgid "Only remote profiles may be refreshed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/actor.ex:64
|
||||||
|
msgid "Profile already suspended"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/participant.ex:92
|
||||||
|
msgid "A valid email is required by your instance"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/participant.ex:86
|
||||||
|
msgid "Anonymous participation is not enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/person.ex:196
|
||||||
|
msgid "Cannot remove the last administrator of a group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/person.ex:193
|
||||||
|
msgid "Cannot remove the last identity of a user"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/comment.ex:108
|
||||||
|
msgid "Comment is already deleted"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
|
msgid "Discussion not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/report.ex:58 lib/graphql/resolvers/report.ex:77
|
||||||
|
msgid "Error while saving report"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/report.ex:96
|
||||||
|
msgid "Error while updating report"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/participant.ex:127
|
||||||
|
msgid "Event id not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
|
msgid "Event not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/participant.ex:83
|
||||||
|
#: lib/graphql/resolvers/participant.ex:124 lib/graphql/resolvers/participant.ex:156
|
||||||
|
msgid "Event with this ID %{id} doesn't exist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/participant.ex:99
|
||||||
|
msgid "Internal Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/discussion.ex:202
|
||||||
|
msgid "No discussion with ID %{id}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/todos.ex:78 lib/graphql/resolvers/todos.ex:168
|
||||||
|
msgid "No profile found for user"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/feed_token.ex:64
|
||||||
|
msgid "No such feed token"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/participant.ex:237
|
||||||
|
msgid "Participant already has role %{role}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/participant.ex:169
|
||||||
|
#: lib/graphql/resolvers/participant.ex:198 lib/graphql/resolvers/participant.ex:230
|
||||||
|
#: lib/graphql/resolvers/participant.ex:240
|
||||||
|
msgid "Participant not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/person.ex:30
|
||||||
|
msgid "Person with ID %{id} not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/person.ex:52
|
||||||
|
msgid "Person with username %{username} not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/post.ex:167 lib/graphql/resolvers/post.ex:200
|
||||||
|
msgid "Post ID is not a valid ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/post.ex:170 lib/graphql/resolvers/post.ex:203
|
||||||
|
msgid "Post doesn't exist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/member.ex:83
|
||||||
|
msgid "Profile invited doesn't exist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/member.ex:92 lib/graphql/resolvers/member.ex:96
|
||||||
|
msgid "Profile is already a member of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/post.ex:132 lib/graphql/resolvers/post.ex:173
|
||||||
|
#: lib/graphql/resolvers/post.ex:206 lib/graphql/resolvers/resource.ex:88 lib/graphql/resolvers/resource.ex:128
|
||||||
|
#: lib/graphql/resolvers/resource.ex:157 lib/graphql/resolvers/resource.ex:186 lib/graphql/resolvers/todos.ex:57
|
||||||
|
#: lib/graphql/resolvers/todos.ex:81 lib/graphql/resolvers/todos.ex:99 lib/graphql/resolvers/todos.ex:171
|
||||||
|
#: lib/graphql/resolvers/todos.ex:194 lib/graphql/resolvers/todos.ex:222
|
||||||
|
msgid "Profile is not member of group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/person.ex:162 lib/graphql/resolvers/person.ex:190
|
||||||
|
msgid "Profile not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/report.ex:36
|
||||||
|
msgid "Report not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/resource.ex:154 lib/graphql/resolvers/resource.ex:183
|
||||||
|
msgid "Resource doesn't exist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/participant.ex:120
|
||||||
|
msgid "The event has already reached its maximum capacity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/participant.ex:260
|
||||||
|
msgid "This token is invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/todos.ex:165 lib/graphql/resolvers/todos.ex:219
|
||||||
|
msgid "Todo doesn't exist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/todos.ex:75 lib/graphql/resolvers/todos.ex:191
|
||||||
|
#: lib/graphql/resolvers/todos.ex:216
|
||||||
|
msgid "Todo list doesn't exist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/feed_token.ex:73
|
||||||
|
msgid "Token does not exist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/feed_token.ex:67 lib/graphql/resolvers/feed_token.ex:70
|
||||||
|
msgid "Token is not a valid UUID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
|
msgid "User not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/person.ex:257
|
||||||
|
msgid "You already have a profile for this user"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/participant.ex:130
|
||||||
|
msgid "You are already a participant of this event"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/member.ex:86
|
||||||
|
msgid "You are not a member of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/member.ex:149
|
||||||
|
msgid "You are not a moderator or admin for this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/comment.ex:54
|
||||||
|
msgid "You are not allowed to create a comment if not connected"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/feed_token.ex:41
|
||||||
|
msgid "You are not allowed to create a feed token if not connected"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/comment.ex:113
|
||||||
|
msgid "You are not allowed to delete a comment if not connected"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/feed_token.ex:82
|
||||||
|
msgid "You are not allowed to delete a feed token if not connected"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/comment.ex:76
|
||||||
|
msgid "You are not allowed to update a comment if not connected"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/participant.ex:163
|
||||||
|
#: lib/graphql/resolvers/participant.ex:192
|
||||||
|
msgid "You can't leave event because you're the only event creator participant"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/member.ex:153
|
||||||
|
msgid "You can't set yourself to a lower member role for this group because you are the only administrator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/comment.ex:104
|
||||||
|
msgid "You cannot delete this comment"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
|
msgid "You cannot delete this event"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/member.ex:89
|
||||||
|
msgid "You cannot invite to this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/feed_token.ex:76
|
||||||
|
msgid "You don't have permission to delete this token"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/admin.ex:53
|
||||||
|
msgid "You need to be logged-in and a moderator to list action logs"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/report.ex:26
|
||||||
|
msgid "You need to be logged-in and a moderator to list reports"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/report.ex:101
|
||||||
|
msgid "You need to be logged-in and a moderator to update a report"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/report.ex:41
|
||||||
|
msgid "You need to be logged-in and a moderator to view a report"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/admin.ex:237
|
||||||
|
msgid "You need to be logged-in and an administrator to access admin settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/admin.ex:222
|
||||||
|
msgid "You need to be logged-in and an administrator to access dashboard statistics"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/admin.ex:261
|
||||||
|
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/discussion.ex:77
|
||||||
|
msgid "You need to be logged-in to access discussions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/resource.ex:94
|
||||||
|
msgid "You need to be logged-in to access resources"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
|
msgid "You need to be logged-in to create events"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/post.ex:140
|
||||||
|
msgid "You need to be logged-in to create posts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/report.ex:74
|
||||||
|
msgid "You need to be logged-in to create reports"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/resource.ex:133
|
||||||
|
msgid "You need to be logged-in to create resources"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
|
msgid "You need to be logged-in to delete an event"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/post.ex:211
|
||||||
|
msgid "You need to be logged-in to delete posts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/resource.ex:191
|
||||||
|
msgid "You need to be logged-in to delete resources"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/participant.ex:104
|
||||||
|
msgid "You need to be logged-in to join an event"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/participant.ex:203
|
||||||
|
msgid "You need to be logged-in to leave an event"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
|
msgid "You need to be logged-in to update an event"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/post.ex:178
|
||||||
|
msgid "You need to be logged-in to update posts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/resource.ex:162
|
||||||
|
msgid "You need to be logged-in to update resources"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/resource.ex:218
|
||||||
|
msgid "You need to be logged-in to view a resource preview"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/resource.ex:125
|
||||||
|
msgid "Parent resource doesn't belong to this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/mobilizon/users/user.ex:110
|
||||||
|
msgid "The chosen password is too short."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/mobilizon/users/user.ex:139
|
||||||
|
msgid "The registration token is already in use, this looks like an issue on our side."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/mobilizon/users/user.ex:105
|
||||||
|
msgid "This email is already used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/error.ex:89
|
||||||
|
msgid "Post not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/error.ex:76
|
||||||
|
msgid "Invalid arguments passed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/error.ex:82
|
||||||
|
msgid "Invalid credentials"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/error.ex:80
|
||||||
|
msgid "Reset your password to login"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
|
msgid "Resource not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/error.ex:94
|
||||||
|
msgid "Something went wrong"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/error.ex:75
|
||||||
|
msgid "Unknown Resource"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/error.ex:85
|
||||||
|
msgid "You don't have permission to do this"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/error.ex:77
|
||||||
|
msgid "You need to be logged in"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/member.ex:114
|
||||||
|
msgid "You can't accept this invitation with this profile."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/member.ex:132
|
||||||
|
msgid "You can't reject this invitation with this profile."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/media.ex:72
|
||||||
|
msgid "File doesn't have an allowed MIME type."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/group.ex:175
|
||||||
|
msgid "Profile is not administrator for the group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
|
msgid "You can't edit this event."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
|
msgid "You can't attribute this event to this profile."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/member.ex:135
|
||||||
|
msgid "This invitation doesn't exist."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/member.ex:177
|
||||||
|
msgid "This member already has been rejected."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/member.ex:184
|
||||||
|
msgid "You don't have the right to remove this member."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/mobilizon/actors/actor.ex:351
|
||||||
|
msgid "This username is already taken."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/discussion.ex:74
|
||||||
|
msgid "You must provide either an ID or a slug to access a discussion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
|
msgid "Organizer profile is not owned by the user"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/participant.ex:89
|
||||||
|
msgid "Profile ID provided is not the anonymous profile one"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/group.ex:136 lib/graphql/resolvers/group.ex:169
|
||||||
|
#: lib/graphql/resolvers/person.ex:132 lib/graphql/resolvers/person.ex:159 lib/graphql/resolvers/person.ex:251
|
||||||
|
msgid "The provided picture is too heavy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/views/utils.ex:33
|
||||||
|
msgid "Index file not found. You need to recompile the front-end."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/resource.ex:122
|
||||||
|
msgid "Error while creating resource"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/user.ex:412
|
||||||
|
msgid "Invalid activation token"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/resource.ex:208
|
||||||
|
msgid "Unable to fetch resource details from this URL."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
@ -302,17 +302,17 @@ msgstr ""
|
|||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -127,7 +127,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr "La tua partecipazione all'evento %{title} è stata rifiutata"
|
msgstr "La tua partecipazione all'evento %{title} è stata rifiutata"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr "L'evento %{title} è stato aggiornato"
|
msgstr "L'evento %{title} è stato aggiornato"
|
||||||
|
|
||||||
@ -353,12 +353,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr "Quali informazioni raccogliamo?"
|
msgstr "Quali informazioni raccogliamo?"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr "Mobilizon su %{instance}: conferma il tuo indirizzo email"
|
msgstr "Mobilizon su %{instance}: conferma il tuo indirizzo email"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr "Mobilizon su %{instance}: email modificata"
|
msgstr "Mobilizon su %{instance}: email modificata"
|
||||||
|
|
||||||
@ -1744,3 +1744,13 @@ msgstr "Il server Mobilizon sembra essere temporaneamente inattivo."
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr "Feed pubblico per %{instance}"
|
msgstr "Feed pubblico per %{instance}"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -115,7 +115,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr "Errore nel salvare le preferenze utente"
|
msgstr "Errore nel salvare le preferenze utente"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr "Gruppo non trovato"
|
msgstr "Gruppo non trovato"
|
||||||
@ -354,7 +354,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr "Commento già cancellato"
|
msgstr "Commento già cancellato"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr "Discussione non trovata"
|
msgstr "Discussione non trovata"
|
||||||
|
|
||||||
@ -374,8 +374,8 @@ msgid "Event id not found"
|
|||||||
msgstr "ID evento non trovato"
|
msgstr "ID evento non trovato"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr "Evento non trovato"
|
msgstr "Evento non trovato"
|
||||||
|
|
||||||
@ -503,7 +503,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr "Il token non è un UUID valido"
|
msgstr "Il token non è un UUID valido"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr "Utente non trovato"
|
msgstr "Utente non trovato"
|
||||||
|
|
||||||
@ -572,7 +572,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr "Non puoi eliminare questo commento"
|
msgstr "Non puoi eliminare questo commento"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr "Non puoi eliminare questo evento"
|
msgstr "Non puoi eliminare questo evento"
|
||||||
|
|
||||||
@ -638,7 +638,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr "Devi essere connesso per accedere alle risorse"
|
msgstr "Devi essere connesso per accedere alle risorse"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr "Devi essere connesso per creare eventi"
|
msgstr "Devi essere connesso per creare eventi"
|
||||||
|
|
||||||
@ -658,7 +658,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr "Devi essere connesso per creare risorse"
|
msgstr "Devi essere connesso per creare risorse"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr "Devi essere connesso per eliminare un evento"
|
msgstr "Devi essere connesso per eliminare un evento"
|
||||||
|
|
||||||
@ -683,7 +683,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr "Devi essere connesso per lasciare un evento"
|
msgstr "Devi essere connesso per lasciare un evento"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr "Devi essere connesso per aggiornare un evento"
|
msgstr "Devi essere connesso per aggiornare un evento"
|
||||||
|
|
||||||
@ -725,47 +725,47 @@ msgid "This email is already used."
|
|||||||
msgstr "Questa email è già in uso."
|
msgstr "Questa email è già in uso."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr "Post non trovato"
|
msgstr "Post non trovato"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr "Sono stati trasmessi argomenti non validi"
|
msgstr "Sono stati trasmessi argomenti non validi"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr "Credenziali non valide"
|
msgstr "Credenziali non valide"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr "Reimposta la tua password per connetterti"
|
msgstr "Reimposta la tua password per connetterti"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr "Segnalazione non trovata"
|
msgstr "Segnalazione non trovata"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr "Qualcosa è andato storto"
|
msgstr "Qualcosa è andato storto"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr "Risorsa sconosciuta"
|
msgstr "Risorsa sconosciuta"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr "Non hai il permesso di farlo"
|
msgstr "Non hai il permesso di farlo"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr "Devi essere connesso"
|
msgstr "Devi essere connesso"
|
||||||
|
|
||||||
@ -790,12 +790,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr "Il profilo non è amministratore del gruppo"
|
msgstr "Il profilo non è amministratore del gruppo"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr "Non puoi modificare questo evento."
|
msgstr "Non puoi modificare questo evento."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr "Non puo iattribuire questo evento a questo profilo."
|
msgstr "Non puo iattribuire questo evento a questo profilo."
|
||||||
|
|
||||||
@ -827,7 +827,7 @@ msgstr ""
|
|||||||
"per accedere ad una discussione"
|
"per accedere ad una discussione"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr "Il profilo dell'organizzatore non è di proprietà dell'utente"
|
msgstr "Il profilo dell'organizzatore non è di proprietà dell'utente"
|
||||||
|
|
||||||
@ -863,8 +863,18 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr "Impossibile recuperare i dettagli della risorsa da questa URL."
|
msgstr "Impossibile recuperare i dettagli della risorsa da questa URL."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Il profilo del moderatore fornito non dispone dell'autorizzazione per questo "
|
"Il profilo del moderatore fornito non dispone dell'autorizzazione per questo "
|
||||||
"evento"
|
"evento"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -300,17 +300,17 @@ msgstr ""
|
|||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -119,7 +119,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -312,12 +312,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1399,3 +1399,13 @@ msgstr ""
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -102,7 +102,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -339,7 +339,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -359,8 +359,8 @@ msgid "Event id not found"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -488,7 +488,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -554,7 +554,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -614,7 +614,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -634,7 +634,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -659,7 +659,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -699,47 +699,47 @@ msgid "This email is already used."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -764,12 +764,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -799,7 +799,7 @@ msgid "You must provide either an ID or a slug to access a discussion"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -835,6 +835,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -302,17 +302,17 @@ msgstr ""
|
|||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -128,7 +128,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr "Uw deelname aan het evenement %{title} is afgewezen"
|
msgstr "Uw deelname aan het evenement %{title} is afgewezen"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr "Evenement %{title} is bijgewerkt"
|
msgstr "Evenement %{title} is bijgewerkt"
|
||||||
|
|
||||||
@ -321,12 +321,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1424,3 +1424,13 @@ msgstr ""
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -108,7 +108,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -345,7 +345,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -365,8 +365,8 @@ msgid "Event id not found"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -494,7 +494,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -560,7 +560,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -620,7 +620,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -640,7 +640,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -665,7 +665,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -705,47 +705,47 @@ msgid "This email is already used."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -770,12 +770,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -805,7 +805,7 @@ msgid "You must provide either an ID or a slug to access a discussion"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -841,6 +841,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -302,17 +302,17 @@ msgstr ""
|
|||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -128,7 +128,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr "Deltakinga di på hendinga %{title} er avslegen"
|
msgstr "Deltakinga di på hendinga %{title} er avslegen"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr "Hendinga %{title} er oppdatert"
|
msgstr "Hendinga %{title} er oppdatert"
|
||||||
|
|
||||||
@ -347,12 +347,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr "Kva opplysingar samlar me?"
|
msgstr "Kva opplysingar samlar me?"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr "Mobilizon på %{instance}: stadfest epostadressa di"
|
msgstr "Mobilizon på %{instance}: stadfest epostadressa di"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr "Mobilizon på %{instance}: epostadressa er endra"
|
msgstr "Mobilizon på %{instance}: epostadressa er endra"
|
||||||
|
|
||||||
@ -1700,3 +1700,13 @@ msgstr "Mobilizon-tenaren ser ut til å vera nede i augeblinken."
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -131,7 +131,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr "Greidde ikkje lagra brukarinnstillingane"
|
msgstr "Greidde ikkje lagra brukarinnstillingane"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr "Fann ikkje gruppa"
|
msgstr "Fann ikkje gruppa"
|
||||||
@ -368,7 +368,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr "Kommentaren er allereie sletta"
|
msgstr "Kommentaren er allereie sletta"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr "Fann ikkje ordskiftet"
|
msgstr "Fann ikkje ordskiftet"
|
||||||
|
|
||||||
@ -388,8 +388,8 @@ msgid "Event id not found"
|
|||||||
msgstr "Fann ikkje ID-en til hendinga"
|
msgstr "Fann ikkje ID-en til hendinga"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr "Fann ikkje hendinga"
|
msgstr "Fann ikkje hendinga"
|
||||||
|
|
||||||
@ -517,7 +517,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr "Teiknet er ikkje ein gyldig UUID"
|
msgstr "Teiknet er ikkje ein gyldig UUID"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr "Fann ikkje brukaren"
|
msgstr "Fann ikkje brukaren"
|
||||||
|
|
||||||
@ -588,7 +588,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr "Du kan ikkje sletta denne kommentaren"
|
msgstr "Du kan ikkje sletta denne kommentaren"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr "Du kan ikkje sletta denne hendinga"
|
msgstr "Du kan ikkje sletta denne hendinga"
|
||||||
|
|
||||||
@ -655,7 +655,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr "Du må vera innlogga for å sjå ressursane"
|
msgstr "Du må vera innlogga for å sjå ressursane"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr "Du må vera innlogga for å laga hendingar"
|
msgstr "Du må vera innlogga for å laga hendingar"
|
||||||
|
|
||||||
@ -675,7 +675,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr "Du må vera innlogga for å laga ressursar"
|
msgstr "Du må vera innlogga for å laga ressursar"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr "Du må vera innlogga for å sletta ei hending"
|
msgstr "Du må vera innlogga for å sletta ei hending"
|
||||||
|
|
||||||
@ -700,7 +700,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr "Du må vera innlogga for å melda deg av ei hending"
|
msgstr "Du må vera innlogga for å melda deg av ei hending"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr "Du må vera innlogga for å oppdatera hendingar"
|
msgstr "Du må vera innlogga for å oppdatera hendingar"
|
||||||
|
|
||||||
@ -742,47 +742,47 @@ msgid "This email is already used."
|
|||||||
msgstr "Denne eposten er allereie i bruk."
|
msgstr "Denne eposten er allereie i bruk."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr "Fann ikkje innlegget"
|
msgstr "Fann ikkje innlegget"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr "Ugyldige argument"
|
msgstr "Ugyldige argument"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr "Ugyldig innlogging"
|
msgstr "Ugyldig innlogging"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr "Nullstill passordet for å logga inn"
|
msgstr "Nullstill passordet for å logga inn"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr "Fann ikkje ressursen"
|
msgstr "Fann ikkje ressursen"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr "Noko gjekk gale"
|
msgstr "Noko gjekk gale"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr "Ukjend ressurs"
|
msgstr "Ukjend ressurs"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr "Du har ikkje løyve til å gjera detet"
|
msgstr "Du har ikkje løyve til å gjera detet"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr "Du må vera innlogga"
|
msgstr "Du må vera innlogga"
|
||||||
|
|
||||||
@ -807,12 +807,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr "Profilen er ikkje administrator for gruppa"
|
msgstr "Profilen er ikkje administrator for gruppa"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr "Du kan ikkje endra denne hendinga."
|
msgstr "Du kan ikkje endra denne hendinga."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr "Du kan ikkje kopla denne hendinga til denne profilen."
|
msgstr "Du kan ikkje kopla denne hendinga til denne profilen."
|
||||||
|
|
||||||
@ -843,7 +843,7 @@ msgstr ""
|
|||||||
"Du må gje anten ein ID eller ei stuttadresse for å få tilgang til ordskiftet"
|
"Du må gje anten ein ID eller ei stuttadresse for å få tilgang til ordskiftet"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr "Brukaren eig ikkje arrangørprofilen"
|
msgstr "Brukaren eig ikkje arrangørprofilen"
|
||||||
|
|
||||||
@ -879,6 +879,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr "Greidde ikkje henta ressursdetaljane frå denne adressa."
|
msgstr "Greidde ikkje henta ressursdetaljane frå denne adressa."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr "Moderatorprofilen har ikkje tilgang til denne hendinga"
|
msgstr "Moderatorprofilen har ikkje tilgang til denne hendinga"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -302,17 +302,17 @@ msgstr ""
|
|||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -120,7 +120,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr "Vòstra participacion a l’eveniment %{title} es estada regetada"
|
msgstr "Vòstra participacion a l’eveniment %{title} es estada regetada"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr "L’eveniment %{title} es estat actualizat"
|
msgstr "L’eveniment %{title} es estat actualizat"
|
||||||
|
|
||||||
@ -344,12 +344,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr "Quinas informacions reculem ?"
|
msgstr "Quinas informacions reculem ?"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr "Mobilizon sus %{instance} : confirmatz vòstra adreça electronica"
|
msgstr "Mobilizon sus %{instance} : confirmatz vòstra adreça electronica"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr "Mobilizon sus %{instance} : adreça electronica cambiada"
|
msgstr "Mobilizon sus %{instance} : adreça electronica cambiada"
|
||||||
|
|
||||||
@ -1509,3 +1509,13 @@ msgstr ""
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -115,7 +115,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr "Error en salvagardant los paramètres utilizaire"
|
msgstr "Error en salvagardant los paramètres utilizaire"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr "Grop pas trobat"
|
msgstr "Grop pas trobat"
|
||||||
@ -357,7 +357,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr "Comentari déjà suprimit"
|
msgstr "Comentari déjà suprimit"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr "Discussion non trobada"
|
msgstr "Discussion non trobada"
|
||||||
|
|
||||||
@ -377,8 +377,8 @@ msgid "Event id not found"
|
|||||||
msgstr "ID d'eveniment non trobat"
|
msgstr "ID d'eveniment non trobat"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr "Eveniment non trobat"
|
msgstr "Eveniment non trobat"
|
||||||
|
|
||||||
@ -506,7 +506,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -572,7 +572,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -632,7 +632,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -652,7 +652,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -677,7 +677,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -717,47 +717,47 @@ msgid "This email is already used."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -782,12 +782,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -817,7 +817,7 @@ msgid "You must provide either an ID or a slug to access a discussion"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -853,6 +853,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -304,17 +304,17 @@ msgstr ""
|
|||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -130,7 +130,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr "Twój udział w wydarzeniu %(title} został odrzucony"
|
msgstr "Twój udział w wydarzeniu %(title} został odrzucony"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr "Wydarzenie %{title} zostało zaktualizowane"
|
msgstr "Wydarzenie %{title} zostało zaktualizowane"
|
||||||
|
|
||||||
@ -343,12 +343,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr "Jakie informacje zbieramy?"
|
msgstr "Jakie informacje zbieramy?"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr "Mobilizon na %{instance}: potwierdź swój adres e-mail"
|
msgstr "Mobilizon na %{instance}: potwierdź swój adres e-mail"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr "Mobilizon na %{instance}: zmieniono e-mail"
|
msgstr "Mobilizon na %{instance}: zmieniono e-mail"
|
||||||
|
|
||||||
@ -1525,3 +1525,13 @@ msgstr "Serwer Mobilizon wydaje się tymczasowo nie działać."
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -122,7 +122,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr "Błąd zapisywania ustawień użytkownika"
|
msgstr "Błąd zapisywania ustawień użytkownika"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr "Nie odnaleziono grupy"
|
msgstr "Nie odnaleziono grupy"
|
||||||
@ -364,7 +364,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr "Komentarz jest już usunięty"
|
msgstr "Komentarz jest już usunięty"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr "Nie znaleziono dyskusji"
|
msgstr "Nie znaleziono dyskusji"
|
||||||
|
|
||||||
@ -384,8 +384,8 @@ msgid "Event id not found"
|
|||||||
msgstr "Nie znaleziono id wydarzenia"
|
msgstr "Nie znaleziono id wydarzenia"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr "Nie znaleziono wydarzenia"
|
msgstr "Nie znaleziono wydarzenia"
|
||||||
|
|
||||||
@ -513,7 +513,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr "Token nie jest prawidłowym UUID"
|
msgstr "Token nie jest prawidłowym UUID"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr "Nie znaleziono użytkownika"
|
msgstr "Nie znaleziono użytkownika"
|
||||||
|
|
||||||
@ -581,7 +581,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr "Nie możesz usunąć tego komentarza"
|
msgstr "Nie możesz usunąć tego komentarza"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr "Nie możesz usunąć tego wydarzenia"
|
msgstr "Nie możesz usunąć tego wydarzenia"
|
||||||
|
|
||||||
@ -647,7 +647,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr "Musisz być zalogowany(-a), aby uzyskać dostęp do zasobów"
|
msgstr "Musisz być zalogowany(-a), aby uzyskać dostęp do zasobów"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr "Musisz być zalogowany(-a), aby móc utworzyć wydarzenia"
|
msgstr "Musisz być zalogowany(-a), aby móc utworzyć wydarzenia"
|
||||||
|
|
||||||
@ -667,7 +667,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr "Musisz być zalogowany(-a), aby utworzyć zasób"
|
msgstr "Musisz być zalogowany(-a), aby utworzyć zasób"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr "Musisz być zalogowany(-a), aby usunąć wydarzenie"
|
msgstr "Musisz być zalogowany(-a), aby usunąć wydarzenie"
|
||||||
|
|
||||||
@ -692,7 +692,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr "Musisz być zalogowany(-a), aby opuścić wydarzenie"
|
msgstr "Musisz być zalogowany(-a), aby opuścić wydarzenie"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr "Musisz być zalogowany(-a), aby zaktualizować wydarzenie"
|
msgstr "Musisz być zalogowany(-a), aby zaktualizować wydarzenie"
|
||||||
|
|
||||||
@ -734,47 +734,47 @@ msgid "This email is already used."
|
|||||||
msgstr "Ten adres e-mail jest już w użyciu."
|
msgstr "Ten adres e-mail jest już w użyciu."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr "Nie znaleziono wpisu"
|
msgstr "Nie znaleziono wpisu"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr "Podano nieprawidłowe argumenty"
|
msgstr "Podano nieprawidłowe argumenty"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr "Nieprawidłowe dane uwierzytelniające"
|
msgstr "Nieprawidłowe dane uwierzytelniające"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr "Resetuj swoje hasło, aby zalogować się"
|
msgstr "Resetuj swoje hasło, aby zalogować się"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr "Nie znaleziono zasobu"
|
msgstr "Nie znaleziono zasobu"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr "Coś poszło nie tak"
|
msgstr "Coś poszło nie tak"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr "Nieznany zasób"
|
msgstr "Nieznany zasób"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr "Nie masz uprawnień aby to zrobić"
|
msgstr "Nie masz uprawnień aby to zrobić"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr "Musisz być zalogowany(-a)"
|
msgstr "Musisz być zalogowany(-a)"
|
||||||
|
|
||||||
@ -799,12 +799,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr "Profil nie jest administratorem grupy"
|
msgstr "Profil nie jest administratorem grupy"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr "Nie możesz edytować tego wydarzenia."
|
msgstr "Nie możesz edytować tego wydarzenia."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr "Nie możesz przypisać tego wydarzenia do tego profilu."
|
msgstr "Nie możesz przypisać tego wydarzenia do tego profilu."
|
||||||
|
|
||||||
@ -834,7 +834,7 @@ msgid "You must provide either an ID or a slug to access a discussion"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -870,6 +870,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr "Wskazany profil moderatora nie ma uprawnień dla tego wydarzenia"
|
msgstr "Wskazany profil moderatora nie ma uprawnień dla tego wydarzenia"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -302,17 +302,17 @@ msgstr ""
|
|||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -117,7 +117,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -310,12 +310,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1404,3 +1404,13 @@ msgstr ""
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -108,7 +108,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -345,7 +345,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -365,8 +365,8 @@ msgid "Event id not found"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -494,7 +494,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -560,7 +560,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -620,7 +620,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -640,7 +640,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -665,7 +665,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -705,47 +705,47 @@ msgid "This email is already used."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -770,12 +770,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -805,7 +805,7 @@ msgid "You must provide either an ID or a slug to access a discussion"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -841,6 +841,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -302,17 +302,17 @@ msgstr ""
|
|||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -128,7 +128,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr "A sua participação no evento %{title} foi rejeitada"
|
msgstr "A sua participação no evento %{title} foi rejeitada"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr "Evento %{title} foi atualizado"
|
msgstr "Evento %{title} foi atualizado"
|
||||||
|
|
||||||
@ -356,12 +356,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr "Quais informações coletamos?"
|
msgstr "Quais informações coletamos?"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr "Mobilizon da instância %{instance}: confirma seu endereço de email"
|
msgstr "Mobilizon da instância %{instance}: confirma seu endereço de email"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr "Mobilizon da instância %{instance}: email alterado"
|
msgstr "Mobilizon da instância %{instance}: email alterado"
|
||||||
|
|
||||||
@ -1516,3 +1516,13 @@ msgstr ""
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -108,7 +108,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -345,7 +345,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -365,8 +365,8 @@ msgid "Event id not found"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -494,7 +494,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -560,7 +560,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -620,7 +620,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -640,7 +640,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -665,7 +665,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -705,47 +705,47 @@ msgid "This email is already used."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -770,12 +770,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -805,7 +805,7 @@ msgid "You must provide either an ID or a slug to access a discussion"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -841,6 +841,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -19,314 +19,314 @@ msgstr ""
|
|||||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 4.6.2\n"
|
"X-Generator: Weblate 4.6.2\n"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:38
|
#: lib/service/activity/renderer/member.ex:38
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19 lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:19 lib/web/templates/email/activity/_member_activity_item.text.eex:12
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} accepted the invitation to join the group."
|
msgid "%{member} accepted the invitation to join the group."
|
||||||
msgstr "%{member} принял приглашение присоединиться к группе."
|
msgstr "%{member} принял приглашение присоединиться к группе."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:42
|
#: lib/service/activity/renderer/member.ex:42
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26 lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:26 lib/web/templates/email/activity/_member_activity_item.text.eex:17
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} rejected the invitation to join the group."
|
msgid "%{member} rejected the invitation to join the group."
|
||||||
msgstr "%{member} отклонил приглашение присоединиться к группе."
|
msgstr "%{member} отклонил приглашение присоединиться к группе."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:30
|
#: lib/service/activity/renderer/member.ex:30
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4 lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:4 lib/web/templates/email/activity/_member_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} requested to join the group."
|
msgid "%{member} requested to join the group."
|
||||||
msgstr "%{member} попросил присоединиться к группе."
|
msgstr "%{member} попросил присоединиться к группе."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:34
|
#: lib/service/activity/renderer/member.ex:34
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11 lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:11 lib/web/templates/email/activity/_member_activity_item.text.eex:6
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} was invited by %{profile}."
|
msgid "%{member} was invited by %{profile}."
|
||||||
msgstr "%{member} был приглашён %{profile}."
|
msgstr "%{member} был приглашён %{profile}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:50
|
#: lib/service/activity/renderer/member.ex:50
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40 lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:40 lib/web/templates/email/activity/_member_activity_item.text.eex:27
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} added the member %{member}."
|
msgid "%{profile} added the member %{member}."
|
||||||
msgstr "%{profile} добавил участника %{member}."
|
msgstr "%{profile} добавил участника %{member}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:65
|
#: lib/service/activity/renderer/discussion.ex:65
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:46 lib/web/templates/email/activity/_discussion_activity_item.text.eex:19
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} archived the discussion %{discussion}."
|
msgid "%{profile} archived the discussion %{discussion}."
|
||||||
msgstr "%{profile} заархивировал обсуждение %{discussion}."
|
msgstr "%{profile} заархивировал обсуждение %{discussion}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:25
|
#: lib/service/activity/renderer/discussion.ex:25
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:4 lib/web/templates/email/activity/_discussion_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the discussion %{discussion}."
|
msgid "%{profile} created the discussion %{discussion}."
|
||||||
msgstr "%{profile} создал обсуждение %{discussion}."
|
msgstr "%{profile} создал обсуждение %{discussion}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:24
|
#: lib/service/activity/renderer/resource.ex:24
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5 lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:5 lib/web/templates/email/activity/_resource_activity_item.text.eex:2
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the folder %{resource}."
|
msgid "%{profile} created the folder %{resource}."
|
||||||
msgstr "%{profile} создал папку %{resource}."
|
msgstr "%{profile} создал папку %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
#: lib/web/templates/email/activity/_group_activity_item.html.eex:4
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_group_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the group %{group}."
|
msgid "%{profile} created the group %{group}."
|
||||||
msgstr "%{profile} создал группу %{group}."
|
msgstr "%{profile} создал группу %{group}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:33
|
#: lib/service/activity/renderer/resource.ex:33
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20 lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:20 lib/web/templates/email/activity/_resource_activity_item.text.eex:8
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} created the resource %{resource}."
|
msgid "%{profile} created the resource %{resource}."
|
||||||
msgstr "%{profile} создал ресурс %{resource}."
|
msgstr "%{profile} создал ресурс %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:75
|
#: lib/service/activity/renderer/discussion.ex:75
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:60 lib/web/templates/email/activity/_discussion_activity_item.text.eex:25
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} deleted the discussion %{discussion}."
|
msgid "%{profile} deleted the discussion %{discussion}."
|
||||||
msgstr "%{profile} удалил обсуждение %{discussion}."
|
msgstr "%{profile} удалил обсуждение %{discussion}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:97
|
#: lib/service/activity/renderer/resource.ex:97
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103 lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:103 lib/web/templates/email/activity/_resource_activity_item.text.eex:40
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} deleted the folder %{resource}."
|
msgid "%{profile} deleted the folder %{resource}."
|
||||||
msgstr "%{profile} удалил папку %{resource}."
|
msgstr "%{profile} удалил папку %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:106
|
#: lib/service/activity/renderer/resource.ex:106
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111 lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:111 lib/web/templates/email/activity/_resource_activity_item.text.eex:45
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} deleted the resource %{resource}."
|
msgid "%{profile} deleted the resource %{resource}."
|
||||||
msgstr "%{profile} удалил ресурс %{resource}."
|
msgstr "%{profile} удалил ресурс %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:58
|
#: lib/service/activity/renderer/member.ex:58
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56 lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:56 lib/web/templates/email/activity/_member_activity_item.text.eex:39
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} excluded member %{member}."
|
msgid "%{profile} excluded member %{member}."
|
||||||
msgstr "%{profile} исключил участника %{member}."
|
msgstr "%{profile} исключил участника %{member}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:76
|
#: lib/service/activity/renderer/resource.ex:76
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71 lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:71 lib/web/templates/email/activity/_resource_activity_item.text.eex:28
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} moved the folder %{resource}."
|
msgid "%{profile} moved the folder %{resource}."
|
||||||
msgstr "%{profile} переместил папку %{resource}."
|
msgstr "%{profile} переместил папку %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:85
|
#: lib/service/activity/renderer/resource.ex:85
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86 lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:86 lib/web/templates/email/activity/_resource_activity_item.text.eex:34
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} moved the resource %{resource}."
|
msgid "%{profile} moved the resource %{resource}."
|
||||||
msgstr "%{profile} переместил ресурс %{resource}."
|
msgstr "%{profile} переместил ресурс %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:62
|
#: lib/service/activity/renderer/member.ex:62
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64 lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:64 lib/web/templates/email/activity/_member_activity_item.text.eex:45
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} quit the group."
|
msgid "%{profile} quit the group."
|
||||||
msgstr "%{profile} вышел из группы."
|
msgstr "%{profile} вышел из группы."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:55
|
#: lib/service/activity/renderer/discussion.ex:55
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:32 lib/web/templates/email/activity/_discussion_activity_item.text.eex:13
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} renamed the discussion %{discussion}."
|
msgid "%{profile} renamed the discussion %{discussion}."
|
||||||
msgstr "%{profile} переименовал обсуждение %{discussion}."
|
msgstr "%{profile} переименовал обсуждение %{discussion}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:45
|
#: lib/service/activity/renderer/resource.ex:45
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:37 lib/web/templates/email/activity/_resource_activity_item.text.eex:14
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex: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}."
|
msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}."
|
||||||
msgstr "%{profile} переименовал папку из %{old_resource_title} в %{resource}."
|
msgstr "%{profile} переименовал папку из %{old_resource_title} в %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/resource.ex:59
|
#: lib/service/activity/renderer/resource.ex:59
|
||||||
#: lib/web/templates/email/activity/_resource_activity_item.html.eex:53 lib/web/templates/email/activity/_resource_activity_item.text.eex:21
|
#: lib/web/templates/email/activity/_resource_activity_item.html.eex: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}."
|
msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}."
|
||||||
msgstr "%{profile} переименовал ресурс из %{old_resource_title} в %{resource}."
|
msgstr "%{profile} переименовал ресурс из %{old_resource_title} в %{resource}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/discussion.ex:35
|
#: lib/service/activity/renderer/discussion.ex:35
|
||||||
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_discussion_activity_item.html.eex:18 lib/web/templates/email/activity/_discussion_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} replied to the discussion %{discussion}."
|
msgid "%{profile} replied to the discussion %{discussion}."
|
||||||
msgstr "%{profile} ответил на обсуждение %{discussion}."
|
msgstr "%{profile} ответил на обсуждение %{discussion}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
#: lib/web/templates/email/activity/_group_activity_item.html.eex:19
|
||||||
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_group_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} updated the group %{group}."
|
msgid "%{profile} updated the group %{group}."
|
||||||
msgstr "%{profile} обновил группу %{group}."
|
msgstr "%{profile} обновил группу %{group}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:54
|
#: lib/service/activity/renderer/member.ex:54
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48 lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:48 lib/web/templates/email/activity/_member_activity_item.text.eex:33
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} updated the member %{member}."
|
msgid "%{profile} updated the member %{member}."
|
||||||
msgstr "%{profile} обновил участника %{member}."
|
msgstr "%{profile} обновил участника %{member}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:23
|
#: lib/service/activity/renderer/event.ex:23
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "The event %{event} was created by %{profile}."
|
msgid "The event %{event} was created by %{profile}."
|
||||||
msgstr "Мероприятие %{event} было создано %{profile}."
|
msgstr "Мероприятие %{event} было создано %{profile}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:43
|
#: lib/service/activity/renderer/event.ex:43
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13
|
||||||
#, elixir-format
|
|
||||||
msgid "The event %{event} was deleted by %{profile}."
|
msgid "The event %{event} was deleted by %{profile}."
|
||||||
msgstr "Мероприятие %{event} было удалено %{profile}."
|
msgstr "Мероприятие %{event} было удалено %{profile}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:33
|
#: lib/service/activity/renderer/event.ex:33
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "The event %{event} was updated by %{profile}."
|
msgid "The event %{event} was updated by %{profile}."
|
||||||
msgstr "Мероприятие %{event} было обновлено %{profile}."
|
msgstr "Мероприятие %{event} было обновлено %{profile}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
#: lib/web/templates/email/activity/_post_activity_item.html.eex:4
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_post_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "The post %{post} was created by %{profile}."
|
msgid "The post %{post} was created by %{profile}."
|
||||||
msgstr "Публикация %{post} была создана %{profile}."
|
msgstr "Публикация %{post} была создана %{profile}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
#: lib/web/templates/email/activity/_post_activity_item.html.eex:34
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_post_activity_item.text.eex:13
|
||||||
#, elixir-format
|
|
||||||
msgid "The post %{post} was deleted by %{profile}."
|
msgid "The post %{post} was deleted by %{profile}."
|
||||||
msgstr "Публикация %{post} была удалена %{profile}."
|
msgstr "Публикация %{post} была удалена %{profile}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
#: lib/web/templates/email/activity/_post_activity_item.html.eex:19
|
||||||
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_post_activity_item.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "The post %{post} was updated by %{profile}."
|
msgid "The post %{post} was updated by %{profile}."
|
||||||
msgstr "Публикация %{post} была обновлена %{profile}."
|
msgstr "Публикация %{post} была обновлена %{profile}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/member.ex:46
|
#: lib/service/activity/renderer/member.ex:46
|
||||||
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33 lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
#: lib/web/templates/email/activity/_member_activity_item.html.eex:33 lib/web/templates/email/activity/_member_activity_item.text.eex:22
|
||||||
#, elixir-format
|
|
||||||
msgid "%{member} joined the group."
|
msgid "%{member} joined the group."
|
||||||
msgstr "%{member} присоединился к группе."
|
msgstr "%{member} присоединился к группе."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:63
|
#: lib/service/activity/renderer/event.ex:63
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} posted a comment on the event %{event}."
|
msgid "%{profile} posted a comment on the event %{event}."
|
||||||
msgstr "%{profile} оставил комментарий к мероприятию %{event}."
|
msgstr "%{profile} оставил комментарий к мероприятию %{event}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/event.ex:54
|
#: lib/service/activity/renderer/event.ex:54
|
||||||
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
#: lib/web/templates/email/activity/_event_activity_item.html.eex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} replied to a comment on the event %{event}."
|
msgid "%{profile} replied to a comment on the event %{event}."
|
||||||
msgstr "%{profile} ответил на комментарий к мероприятию %{event}."
|
msgstr "%{profile} ответил на комментарий к мероприятию %{event}."
|
||||||
|
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:27
|
|
||||||
#, elixir-format
|
#, 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."
|
msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Не хотите получать уведомления о событиях? Вы можете изменить частоту "
|
"Не хотите получать уведомления о событиях? Вы можете изменить частоту "
|
||||||
"уведомлений или отключить их в своих настройках."
|
"уведомлений или отключить их в своих настройках."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:135
|
#: lib/web/templates/email/email_direct_activity.html.eex:135
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:23
|
#: lib/web/templates/email/email_direct_activity.text.eex:23
|
||||||
#, elixir-format
|
|
||||||
msgid "View one more activity"
|
msgid "View one more activity"
|
||||||
msgid_plural "View %{count} more activities"
|
msgid_plural "View %{count} more activities"
|
||||||
msgstr[0] "Посмотреть еще одно событие"
|
msgstr[0] "Посмотреть еще одно событие"
|
||||||
msgstr[1] "Посмотреть еще %{count} события"
|
msgstr[1] "Посмотреть еще %{count} события"
|
||||||
msgstr[2] "Посмотреть еще %{count} событий"
|
msgstr[2] "Посмотреть еще %{count} событий"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:44
|
#: lib/web/templates/email/email_direct_activity.html.eex:44
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:46 lib/web/templates/email/email_direct_activity.text.eex:6
|
#: lib/web/templates/email/email_direct_activity.html.eex:46 lib/web/templates/email/email_direct_activity.text.eex:6
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
#: lib/web/templates/email/email_direct_activity.text.eex:7
|
||||||
#, elixir-format
|
|
||||||
msgid "There has been an activity!"
|
msgid "There has been an activity!"
|
||||||
msgid_plural "There has been some activity!"
|
msgid_plural "There has been some activity!"
|
||||||
msgstr[0] "Было событие!"
|
msgstr[0] "Было событие!"
|
||||||
msgstr[1] "Были события!"
|
msgstr[1] "Были события!"
|
||||||
msgstr[2] "Были события!"
|
msgstr[2] "Были события!"
|
||||||
|
|
||||||
#: lib/service/activity/renderer/renderer.ex:38
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/renderer.ex:38
|
||||||
msgid "Activity on %{instance}"
|
msgid "Activity on %{instance}"
|
||||||
msgstr "События на %{instance}"
|
msgstr "События на %{instance}"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:38
|
#: lib/service/activity/renderer/comment.ex:38
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:19 lib/web/templates/email/activity/_comment_activity_item.text.eex:7
|
||||||
#: lib/web/templates/email/email_anonymous_activity.html.eex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5
|
#: lib/web/templates/email/email_anonymous_activity.html.eex:41 lib/web/templates/email/email_anonymous_activity.text.eex:5
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} has posted an announcement under event %{event}."
|
msgid "%{profile} has posted an announcement under event %{event}."
|
||||||
msgstr "%{profile} разместил объявление под мероприятием %{event}."
|
msgstr "%{profile} разместил объявление под мероприятием %{event}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:24
|
#: lib/service/activity/renderer/comment.ex:24
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1
|
||||||
#, elixir-format
|
|
||||||
msgid "%{profile} mentionned you in a comment under event %{event}."
|
msgid "%{profile} mentionned you in a comment under event %{event}."
|
||||||
msgstr "%{profile} упомянул вас в комментарии под мероприятием %{event}."
|
msgstr "%{profile} упомянул вас в комментарии под мероприятием %{event}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/discussion.ex:45
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/discussion.ex:45
|
||||||
msgid "%{profile} mentionned you in the discussion %{discussion}."
|
msgid "%{profile} mentionned you in the discussion %{discussion}."
|
||||||
msgstr "%{profile} упомянул вас в обсуждении %{discussion}."
|
msgstr "%{profile} упомянул вас в обсуждении %{discussion}."
|
||||||
|
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:155
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/templates/email/email_direct_activity.html.eex:155
|
||||||
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
|
msgid "Don't want to receive activity notifications? You may change frequency or disable them in %{tag_start}your settings%{tag_end}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Не хотите получать уведомления о событиях? Вы можете изменить частоту "
|
"Не хотите получать уведомления о событиях? Вы можете изменить частоту "
|
||||||
"уведомлений или отключить их в своих настройках."
|
"уведомлений или отключить их в своих настройках."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:42
|
#: lib/web/templates/email/email_direct_activity.html.eex:42
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:5
|
#: lib/web/templates/email/email_direct_activity.text.eex:5
|
||||||
#, elixir-format
|
|
||||||
msgid "Here's your weekly activity recap"
|
msgid "Here's your weekly activity recap"
|
||||||
msgstr "Вот итоги вашей еженедельной активности"
|
msgstr "Вот итоги вашей еженедельной активности"
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140
|
||||||
msgid "Activity notification for %{instance}"
|
msgid "Activity notification for %{instance}"
|
||||||
msgstr "События на %{instance}"
|
msgstr "События на %{instance}"
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:126
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:126
|
||||||
msgid "Daily activity recap for %{instance}"
|
msgid "Daily activity recap for %{instance}"
|
||||||
msgstr "Итоги ежедневной активности для %{instance}"
|
msgstr "Итоги ежедневной активности для %{instance}"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/web/templates/email/email_direct_activity.html.eex:40
|
#: lib/web/templates/email/email_direct_activity.html.eex:40
|
||||||
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
#: lib/web/templates/email/email_direct_activity.text.eex:4
|
||||||
#, elixir-format
|
|
||||||
msgid "Here's your daily activity recap"
|
msgid "Here's your daily activity recap"
|
||||||
msgstr "Вот итоги вашей ежедневной активности"
|
msgstr "Вот итоги вашей ежедневной активности"
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:133
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:133
|
||||||
msgid "Weekly activity recap for %{instance}"
|
msgid "Weekly activity recap for %{instance}"
|
||||||
msgstr "Итоги еженедельной активности для %{instance}"
|
msgstr "Итоги еженедельной активности для %{instance}"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:66
|
#: lib/service/activity/renderer/comment.ex:66
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex: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}."
|
msgid "%{profile} has posted a new comment under your event %{event}."
|
||||||
msgstr "%{profile} разместил новый комментарий под вашим мероприятием %{event}."
|
msgstr "%{profile} разместил новый комментарий под вашим мероприятием %{event}."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/comment.ex:53
|
#: lib/service/activity/renderer/comment.ex:53
|
||||||
#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13
|
#: lib/web/templates/email/activity/_comment_activity_item.html.eex: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}."
|
msgid "%{profile} has posted a new reply under your event %{event}."
|
||||||
msgstr "%{profile} опубликовал новый ответ под вашим мероприятием %{event}."
|
msgstr "%{profile} опубликовал новый ответ под вашим мероприятием %{event}."
|
||||||
|
|
||||||
#: lib/web/email/activity.ex:46
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/web/email/activity.ex:46
|
||||||
msgid "Announcement for your event %{event}"
|
msgid "Announcement for your event %{event}"
|
||||||
msgstr "Объявление о вашем мероприятии %{event}"
|
msgstr "Объявление о вашем мероприятии %{event}"
|
||||||
|
|
||||||
#: lib/service/activity/renderer/group.ex:23
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/group.ex:23
|
||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr "Публикация %{post} была обновлена %{profile}."
|
msgstr "Публикация %{post} была обновлена %{profile}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr "Сообщение %{post} из группы %{group} было удалено %{profile}."
|
msgstr "Сообщение %{post} из группы %{group} было удалено %{profile}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr "Сообщение %{post} из группы %{group} было опубликовано %{profile}."
|
msgstr "Сообщение %{post} из группы %{group} было опубликовано %{profile}."
|
||||||
|
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr "Сообщение %{post} из группы %{group} было обновлено %{profile}."
|
msgstr "Сообщение %{post} из группы %{group} было обновлено %{profile}."
|
||||||
|
@ -129,7 +129,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr "Ваш запрос на участие в %{title} был отклонен"
|
msgstr "Ваш запрос на участие в %{title} был отклонен"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr "Мероприятие %{title} было обновлено"
|
msgstr "Мероприятие %{title} было обновлено"
|
||||||
|
|
||||||
@ -355,12 +355,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr "Какую информацию мы собираем?"
|
msgstr "Какую информацию мы собираем?"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr "Mobilizon на %{instance}: подтвердите свой адрес электронной почты"
|
msgstr "Mobilizon на %{instance}: подтвердите свой адрес электронной почты"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr "Mobilizon на %{instance}: адрес электронной почты изменен"
|
msgstr "Mobilizon на %{instance}: адрес электронной почты изменен"
|
||||||
|
|
||||||
@ -1741,3 +1741,13 @@ msgstr "Сервер Mobilizon %{instance} временно недоступен
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr "Публичная лента для %{instance}"
|
msgstr "Публичная лента для %{instance}"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -122,7 +122,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr "Ошибка при сохранении пользовательских настроек"
|
msgstr "Ошибка при сохранении пользовательских настроек"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr "Группа не найдена"
|
msgstr "Группа не найдена"
|
||||||
@ -367,7 +367,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr "Комментарий уже удалён"
|
msgstr "Комментарий уже удалён"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr "Обсуждение не найдено"
|
msgstr "Обсуждение не найдено"
|
||||||
|
|
||||||
@ -387,8 +387,8 @@ msgid "Event id not found"
|
|||||||
msgstr "Не найден id мероприятия"
|
msgstr "Не найден id мероприятия"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr "Мероприятие не найдено"
|
msgstr "Мероприятие не найдено"
|
||||||
|
|
||||||
@ -518,7 +518,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr "Токен не является допустимым UUID"
|
msgstr "Токен не является допустимым UUID"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr "Пользователь не найден"
|
msgstr "Пользователь не найден"
|
||||||
|
|
||||||
@ -588,7 +588,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr "Вы не можете удалить этот комментарий"
|
msgstr "Вы не можете удалить этот комментарий"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr "Вы не можете удалить это мероприятие"
|
msgstr "Вы не можете удалить это мероприятие"
|
||||||
|
|
||||||
@ -658,7 +658,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr "Вам необходимо войти в систему, чтобы получить доступ к ресурсам"
|
msgstr "Вам необходимо войти в систему, чтобы получить доступ к ресурсам"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Вам необходимо войти в систему, чтобы иметь возможность создавать мероприятия"
|
"Вам необходимо войти в систему, чтобы иметь возможность создавать мероприятия"
|
||||||
@ -682,7 +682,7 @@ msgstr ""
|
|||||||
"Вам необходимо войти в систему, чтобы иметь возможность создавать ресурсы"
|
"Вам необходимо войти в систему, чтобы иметь возможность создавать ресурсы"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Вам необходимо войти в систему, чтобы иметь возможность удалить мероприятие"
|
"Вам необходимо войти в систему, чтобы иметь возможность удалить мероприятие"
|
||||||
@ -709,7 +709,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr "Вам необходимо войти в систему, чтобы покинуть мероприятие"
|
msgstr "Вам необходимо войти в систему, чтобы покинуть мероприятие"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr "Вам необходимо войти в систему, чтобы обновить мероприятие"
|
msgstr "Вам необходимо войти в систему, чтобы обновить мероприятие"
|
||||||
|
|
||||||
@ -754,47 +754,47 @@ msgid "This email is already used."
|
|||||||
msgstr "Этот электронный адрес уже используется."
|
msgstr "Этот электронный адрес уже используется."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr "Пост не найден"
|
msgstr "Пост не найден"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr "Переданы неверные аргументы"
|
msgstr "Переданы неверные аргументы"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr "Неверные учётные данные"
|
msgstr "Неверные учётные данные"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr "Сбросьте пароль для входа в систему"
|
msgstr "Сбросьте пароль для входа в систему"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr "Ресурс не найден"
|
msgstr "Ресурс не найден"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr "Что-то пошло не так"
|
msgstr "Что-то пошло не так"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr "Неизвестный ресурс"
|
msgstr "Неизвестный ресурс"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr "У вас недостаточно для этого прав"
|
msgstr "У вас недостаточно для этого прав"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr "Вам необходимо войти в систему"
|
msgstr "Вам необходимо войти в систему"
|
||||||
|
|
||||||
@ -819,12 +819,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr "Профиль не является администратором группы"
|
msgstr "Профиль не является администратором группы"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr "Вы не можете редактировать это мероприятие."
|
msgstr "Вы не можете редактировать это мероприятие."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr "Вы не можете назначить это мероприятие этому профилю."
|
msgstr "Вы не можете назначить это мероприятие этому профилю."
|
||||||
|
|
||||||
@ -855,7 +855,7 @@ msgstr ""
|
|||||||
"Вы должны предоставить либо ID, либо короткое имя для доступа к обсуждению"
|
"Вы должны предоставить либо ID, либо короткое имя для доступа к обсуждению"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr "Профиль организатора не принадлежит пользователю"
|
msgstr "Профиль организатора не принадлежит пользователю"
|
||||||
|
|
||||||
@ -891,6 +891,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr "Невозможно получить сведения о ресурсе по этому URL-адресу."
|
msgstr "Невозможно получить сведения о ресурсе по этому URL-адресу."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr "Указанный профиль модератора не имеет доступа к этому событию"
|
msgstr "Указанный профиль модератора не имеет доступа к этому событию"
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
@ -302,17 +302,17 @@ msgstr ""
|
|||||||
msgid "The group %{group} was updated by %{profile}."
|
msgid "The group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:47
|
#: lib/service/activity/renderer/post.ex:47
|
||||||
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
msgid "The post %{post} from group %{group} was deleted by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:31
|
#: lib/service/activity/renderer/post.ex:31
|
||||||
msgid "The post %{post} from group %{group} was published by %{profile}."
|
msgid "The post %{post} from group %{group} was published by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format, fuzzy
|
#, elixir-format
|
||||||
#: lib/service/activity/renderer/post.ex:39
|
#: lib/service/activity/renderer/post.ex:39
|
||||||
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
msgid "The post %{post} from group %{group} was updated by %{profile}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -129,7 +129,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||||||
msgstr "Din förfrågan om att få delta i evenemanget %{title} har fått avslag"
|
msgstr "Din förfrågan om att få delta i evenemanget %{title} har fått avslag"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/event.ex:37
|
#: lib/web/email/event.ex:36
|
||||||
msgid "Event %{title} has been updated"
|
msgid "Event %{title} has been updated"
|
||||||
msgstr "Evenemanget %{title} har uppdaterats"
|
msgstr "Evenemanget %{title} har uppdaterats"
|
||||||
|
|
||||||
@ -326,12 +326,12 @@ msgid "What information do we collect?"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:176
|
#: lib/web/email/user.ex:180
|
||||||
msgid "Mobilizon on %{instance}: confirm your email address"
|
msgid "Mobilizon on %{instance}: confirm your email address"
|
||||||
msgstr "Mobilizon på %{instance}: bekräfta din e-postadress"
|
msgstr "Mobilizon på %{instance}: bekräfta din e-postadress"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/user.ex:152
|
#: lib/web/email/user.ex:156
|
||||||
msgid "Mobilizon on %{instance}: email changed"
|
msgid "Mobilizon on %{instance}: email changed"
|
||||||
msgstr "Mobilizon på %{instance}: e-postadressen har ändrats"
|
msgstr "Mobilizon på %{instance}: e-postadressen har ändrats"
|
||||||
|
|
||||||
@ -1432,3 +1432,13 @@ msgstr ""
|
|||||||
#: lib/service/export/feed.ex:73
|
#: lib/service/export/feed.ex:73
|
||||||
msgid "Public feed for %{instance}"
|
msgid "Public feed for %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:114
|
||||||
|
msgid "The password you have choosen is too short. Please make sure your password contains at least 6 charaters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/email/user.ex:120
|
||||||
|
msgid "The token you provided is invalid. Make sure that the URL is exactly the one provided inside the email you got."
|
||||||
|
msgstr ""
|
||||||
|
@ -115,7 +115,7 @@ msgid "Error while saving user settings"
|
|||||||
msgstr "Ett fel uppstod när användarinställningarna skulle sparas"
|
msgstr "Ett fel uppstod när användarinställningarna skulle sparas"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex:203
|
#: lib/graphql/error.ex:91 lib/graphql/resolvers/group.ex:203
|
||||||
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
#: lib/graphql/resolvers/group.ex:234 lib/graphql/resolvers/group.ex:269 lib/graphql/resolvers/member.ex:80
|
||||||
msgid "Group not found"
|
msgid "Group not found"
|
||||||
msgstr "Gruppen kunde inte hittas"
|
msgstr "Gruppen kunde inte hittas"
|
||||||
@ -352,7 +352,7 @@ msgid "Comment is already deleted"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:92 lib/graphql/resolvers/discussion.ex:62
|
#: lib/graphql/error.ex:93 lib/graphql/resolvers/discussion.ex:62
|
||||||
msgid "Discussion not found"
|
msgid "Discussion not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -372,8 +372,8 @@ msgid "Event id not found"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284
|
#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313
|
||||||
#: lib/graphql/resolvers/event.ex:328
|
#: lib/graphql/resolvers/event.ex:358
|
||||||
msgid "Event not found"
|
msgid "Event not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -501,7 +501,7 @@ msgid "Token is not a valid UUID"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356
|
#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356
|
||||||
msgid "User not found"
|
msgid "User not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -567,7 +567,7 @@ msgid "You cannot delete this comment"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:324
|
#: lib/graphql/resolvers/event.ex:354
|
||||||
msgid "You cannot delete this event"
|
msgid "You cannot delete this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -627,7 +627,7 @@ msgid "You need to be logged-in to access resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:259
|
#: lib/graphql/resolvers/event.ex:283
|
||||||
msgid "You need to be logged-in to create events"
|
msgid "You need to be logged-in to create events"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -647,7 +647,7 @@ msgid "You need to be logged-in to create resources"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:333
|
#: lib/graphql/resolvers/event.ex:363
|
||||||
msgid "You need to be logged-in to delete an event"
|
msgid "You need to be logged-in to delete an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -672,7 +672,7 @@ msgid "You need to be logged-in to leave an event"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:298
|
#: lib/graphql/resolvers/event.ex:327
|
||||||
msgid "You need to be logged-in to update an event"
|
msgid "You need to be logged-in to update an event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -712,47 +712,47 @@ msgid "This email is already used."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:88
|
#: lib/graphql/error.ex:89
|
||||||
msgid "Post not found"
|
msgid "Post not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:75
|
#: lib/graphql/error.ex:76
|
||||||
msgid "Invalid arguments passed"
|
msgid "Invalid arguments passed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:81
|
#: lib/graphql/error.ex:82
|
||||||
msgid "Invalid credentials"
|
msgid "Invalid credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:79
|
#: lib/graphql/error.ex:80
|
||||||
msgid "Reset your password to login"
|
msgid "Reset your password to login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:86 lib/graphql/error.ex:91
|
#: lib/graphql/error.ex:87 lib/graphql/error.ex:92
|
||||||
msgid "Resource not found"
|
msgid "Resource not found"
|
||||||
msgstr "Resursen kunde inte hittas"
|
msgstr "Resursen kunde inte hittas"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:93
|
#: lib/graphql/error.ex:94
|
||||||
msgid "Something went wrong"
|
msgid "Something went wrong"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:74
|
#: lib/graphql/error.ex:75
|
||||||
msgid "Unknown Resource"
|
msgid "Unknown Resource"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:84
|
#: lib/graphql/error.ex:85
|
||||||
msgid "You don't have permission to do this"
|
msgid "You don't have permission to do this"
|
||||||
msgstr "Du har inte behörighet att göra detta"
|
msgstr "Du har inte behörighet att göra detta"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/error.ex:76
|
#: lib/graphql/error.ex:77
|
||||||
msgid "You need to be logged in"
|
msgid "You need to be logged in"
|
||||||
msgstr "Du måste vara inloggad"
|
msgstr "Du måste vara inloggad"
|
||||||
|
|
||||||
@ -777,12 +777,12 @@ msgid "Profile is not administrator for the group"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:287
|
#: lib/graphql/resolvers/event.ex:316
|
||||||
msgid "You can't edit this event."
|
msgid "You can't edit this event."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:290
|
#: lib/graphql/resolvers/event.ex:319
|
||||||
msgid "You can't attribute this event to this profile."
|
msgid "You can't attribute this event to this profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -812,7 +812,7 @@ msgid "You must provide either an ID or a slug to access a discussion"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:248
|
#: lib/graphql/resolvers/event.ex:272
|
||||||
msgid "Organizer profile is not owned by the user"
|
msgid "Organizer profile is not owned by the user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -848,6 +848,16 @@ msgid "Unable to fetch resource details from this URL."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/graphql/resolvers/event.ex:148 lib/graphql/resolvers/participant.ex:234
|
#: lib/graphql/resolvers/event.ex:164 lib/graphql/resolvers/participant.ex:234
|
||||||
msgid "Provided profile doesn't have moderator permissions on this event"
|
msgid "Provided profile doesn't have moderator permissions on this event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:266
|
||||||
|
msgid "Organizer profile doesn't have permission to create an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/graphql/resolvers/event.ex:307
|
||||||
|
msgid "This profile doesn't have permission to update an event on behalf of this group"
|
||||||
|
msgstr ""
|
||||||
|
Loading…
Reference in New Issue
Block a user