From 056146a5660253c3b450d9ace00417a3ffa2e8da Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Mon, 2 Aug 2021 19:31:16 +0200 Subject: [PATCH] Translate two backend errors from password change Signed-off-by: Thomas Citharel --- lib/web/email/user.ex | 10 +- priv/gettext/ar/LC_MESSAGES/activity.po | 6 +- priv/gettext/ar/LC_MESSAGES/default.po | 16 +- priv/gettext/ar/LC_MESSAGES/errors.po | 54 +- priv/gettext/be/LC_MESSAGES/activity.po | 6 +- priv/gettext/be/LC_MESSAGES/default.po | 16 +- priv/gettext/be/LC_MESSAGES/errors.po | 54 +- priv/gettext/ca/LC_MESSAGES/activity.po | 6 +- priv/gettext/ca/LC_MESSAGES/default.po | 16 +- priv/gettext/ca/LC_MESSAGES/errors.po | 54 +- priv/gettext/cs/LC_MESSAGES/activity.po | 6 +- priv/gettext/cs/LC_MESSAGES/default.po | 16 +- priv/gettext/cs/LC_MESSAGES/errors.po | 54 +- priv/gettext/de/LC_MESSAGES/activity.po | 104 +-- priv/gettext/de/LC_MESSAGES/default.po | 16 +- priv/gettext/de/LC_MESSAGES/errors.po | 54 +- priv/gettext/default.pot | 16 +- priv/gettext/en/LC_MESSAGES/activity.po | 6 +- priv/gettext/en/LC_MESSAGES/default.po | 16 +- priv/gettext/en/LC_MESSAGES/errors.po | 54 +- priv/gettext/errors.pot | 54 +- priv/gettext/es/LC_MESSAGES/activity.po | 104 +-- priv/gettext/es/LC_MESSAGES/default.po | 16 +- priv/gettext/es/LC_MESSAGES/errors.po | 54 +- priv/gettext/fi/LC_MESSAGES/activity.po | 104 +-- priv/gettext/fi/LC_MESSAGES/default.po | 16 +- priv/gettext/fi/LC_MESSAGES/errors.po | 54 +- priv/gettext/fr/LC_MESSAGES/activity.po | 207 +++-- priv/gettext/fr/LC_MESSAGES/default.po | 461 ++--------- priv/gettext/fr/LC_MESSAGES/errors.po | 54 +- priv/gettext/gl/LC_MESSAGES/activity.po | 6 +- priv/gettext/gl/LC_MESSAGES/default.po | 16 +- priv/gettext/gl/LC_MESSAGES/errors.po | 54 +- priv/gettext/hu/LC_MESSAGES/activity.po | 6 +- priv/gettext/hu/LC_MESSAGES/default.po | 16 +- priv/gettext/hu/LC_MESSAGES/errors.po | 54 +- priv/gettext/id/LC_MESSAGES/activity.po | 104 +-- priv/gettext/id/LC_MESSAGES/default.po | 500 ++++++------ priv/gettext/id/LC_MESSAGES/errors.po | 850 +++++++++++++++++++++ priv/gettext/it/LC_MESSAGES/activity.po | 6 +- priv/gettext/it/LC_MESSAGES/default.po | 16 +- priv/gettext/it/LC_MESSAGES/errors.po | 54 +- priv/gettext/ja/LC_MESSAGES/activity.po | 6 +- priv/gettext/ja/LC_MESSAGES/default.po | 16 +- priv/gettext/ja/LC_MESSAGES/errors.po | 54 +- priv/gettext/nl/LC_MESSAGES/activity.po | 6 +- priv/gettext/nl/LC_MESSAGES/default.po | 16 +- priv/gettext/nl/LC_MESSAGES/errors.po | 54 +- priv/gettext/nn/LC_MESSAGES/activity.po | 6 +- priv/gettext/nn/LC_MESSAGES/default.po | 16 +- priv/gettext/nn/LC_MESSAGES/errors.po | 54 +- priv/gettext/oc/LC_MESSAGES/activity.po | 6 +- priv/gettext/oc/LC_MESSAGES/default.po | 16 +- priv/gettext/oc/LC_MESSAGES/errors.po | 54 +- priv/gettext/pl/LC_MESSAGES/activity.po | 6 +- priv/gettext/pl/LC_MESSAGES/default.po | 16 +- priv/gettext/pl/LC_MESSAGES/errors.po | 54 +- priv/gettext/pt/LC_MESSAGES/activity.po | 6 +- priv/gettext/pt/LC_MESSAGES/default.po | 16 +- priv/gettext/pt/LC_MESSAGES/errors.po | 54 +- priv/gettext/pt_BR/LC_MESSAGES/activity.po | 6 +- priv/gettext/pt_BR/LC_MESSAGES/default.po | 16 +- priv/gettext/pt_BR/LC_MESSAGES/errors.po | 54 +- priv/gettext/ru/LC_MESSAGES/activity.po | 104 +-- priv/gettext/ru/LC_MESSAGES/default.po | 16 +- priv/gettext/ru/LC_MESSAGES/errors.po | 54 +- priv/gettext/sv/LC_MESSAGES/activity.po | 6 +- priv/gettext/sv/LC_MESSAGES/default.po | 16 +- priv/gettext/sv/LC_MESSAGES/errors.po | 54 +- 69 files changed, 2614 insertions(+), 1554 deletions(-) create mode 100644 priv/gettext/id/LC_MESSAGES/errors.po diff --git a/lib/web/email/user.ex b/lib/web/email/user.ex index fdbdcdf79..54cf253ee 100644 --- a/lib/web/email/user.ex +++ b/lib/web/email/user.ex @@ -7,7 +7,7 @@ defmodule Mobilizon.Web.Email.User do 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.Storage.Repo @@ -111,11 +111,15 @@ defmodule Mobilizon.Web.Email.User do else {:error, %Ecto.Changeset{errors: [password: {"registration.error.password_too_short", _}]}} -> {: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 -> {: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 diff --git a/priv/gettext/ar/LC_MESSAGES/activity.po b/priv/gettext/ar/LC_MESSAGES/activity.po index 76961b256..af72e6c25 100644 --- a/priv/gettext/ar/LC_MESSAGES/activity.po +++ b/priv/gettext/ar/LC_MESSAGES/activity.po @@ -310,17 +310,17 @@ msgstr "" msgid "The group %{group} was updated by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "" diff --git a/priv/gettext/ar/LC_MESSAGES/default.po b/priv/gettext/ar/LC_MESSAGES/default.po index 1d099c8f4..4a22d5d9e 100644 --- a/priv/gettext/ar/LC_MESSAGES/default.po +++ b/priv/gettext/ar/LC_MESSAGES/default.po @@ -120,7 +120,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "تم تحديث الفعالية %{title}" @@ -313,12 +313,12 @@ msgid "What information do we collect?" msgstr "" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "" @@ -1435,3 +1435,13 @@ msgstr "" #: lib/service/export/feed.ex:73 msgid "Public feed for %{instance}" 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 "" diff --git a/priv/gettext/ar/LC_MESSAGES/errors.po b/priv/gettext/ar/LC_MESSAGES/errors.po index 316d99fa7..d175be92c 100644 --- a/priv/gettext/ar/LC_MESSAGES/errors.po +++ b/priv/gettext/ar/LC_MESSAGES/errors.po @@ -140,7 +140,7 @@ msgid "Error while saving user settings" msgstr "" #, 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 msgid "Group not found" msgstr "" @@ -377,7 +377,7 @@ msgid "Comment is already deleted" msgstr "" #, 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" msgstr "" @@ -397,8 +397,8 @@ msgid "Event id not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "" @@ -526,7 +526,7 @@ msgid "Token is not a valid UUID" msgstr "" #, 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" msgstr "" @@ -592,7 +592,7 @@ msgid "You cannot delete this comment" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" msgstr "" @@ -652,7 +652,7 @@ msgid "You need to be logged-in to access resources" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" msgstr "" @@ -672,7 +672,7 @@ msgid "You need to be logged-in to create resources" msgstr "" #, 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" msgstr "" @@ -697,7 +697,7 @@ msgid "You need to be logged-in to leave an event" msgstr "" #, 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" msgstr "" @@ -737,47 +737,47 @@ msgid "This email is already used." msgstr "" #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "" #, 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" msgstr "" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" msgstr "" @@ -802,12 +802,12 @@ msgid "Profile is not administrator for the group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." msgstr "" @@ -837,7 +837,7 @@ msgid "You must provide either an ID or a slug to access a discussion" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" msgstr "" @@ -873,6 +873,16 @@ msgid "Unable to fetch resource details from this URL." msgstr "" #, 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" 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 "" diff --git a/priv/gettext/be/LC_MESSAGES/activity.po b/priv/gettext/be/LC_MESSAGES/activity.po index 989078fb6..7bb073c97 100644 --- a/priv/gettext/be/LC_MESSAGES/activity.po +++ b/priv/gettext/be/LC_MESSAGES/activity.po @@ -304,17 +304,17 @@ msgstr "" msgid "The group %{group} was updated by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "" diff --git a/priv/gettext/be/LC_MESSAGES/default.po b/priv/gettext/be/LC_MESSAGES/default.po index 64b28e7a0..e24571b9e 100644 --- a/priv/gettext/be/LC_MESSAGES/default.po +++ b/priv/gettext/be/LC_MESSAGES/default.po @@ -117,7 +117,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "" @@ -310,12 +310,12 @@ msgid "What information do we collect?" msgstr "" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "" @@ -1411,3 +1411,13 @@ msgstr "" #: lib/service/export/feed.ex:73 msgid "Public feed for %{instance}" 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 "" diff --git a/priv/gettext/be/LC_MESSAGES/errors.po b/priv/gettext/be/LC_MESSAGES/errors.po index c07247395..23ba12018 100644 --- a/priv/gettext/be/LC_MESSAGES/errors.po +++ b/priv/gettext/be/LC_MESSAGES/errors.po @@ -114,7 +114,7 @@ msgid "Error while saving user settings" msgstr "" #, 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 msgid "Group not found" msgstr "" @@ -351,7 +351,7 @@ msgid "Comment is already deleted" msgstr "" #, 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" msgstr "" @@ -371,8 +371,8 @@ msgid "Event id not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "" @@ -500,7 +500,7 @@ msgid "Token is not a valid UUID" msgstr "" #, 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" msgstr "" @@ -566,7 +566,7 @@ msgid "You cannot delete this comment" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" msgstr "" @@ -626,7 +626,7 @@ msgid "You need to be logged-in to access resources" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" msgstr "" @@ -646,7 +646,7 @@ msgid "You need to be logged-in to create resources" msgstr "" #, 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" msgstr "" @@ -671,7 +671,7 @@ msgid "You need to be logged-in to leave an event" msgstr "" #, 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" msgstr "" @@ -711,47 +711,47 @@ msgid "This email is already used." msgstr "" #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "" #, 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" msgstr "" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" msgstr "" @@ -776,12 +776,12 @@ msgid "Profile is not administrator for the group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." msgstr "" @@ -811,7 +811,7 @@ msgid "You must provide either an ID or a slug to access a discussion" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" msgstr "" @@ -847,6 +847,16 @@ msgid "Unable to fetch resource details from this URL." msgstr "" #, 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" 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 "" diff --git a/priv/gettext/ca/LC_MESSAGES/activity.po b/priv/gettext/ca/LC_MESSAGES/activity.po index f645ecc88..7972025e0 100644 --- a/priv/gettext/ca/LC_MESSAGES/activity.po +++ b/priv/gettext/ca/LC_MESSAGES/activity.po @@ -302,17 +302,17 @@ msgstr "" msgid "The group %{group} was updated by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "" diff --git a/priv/gettext/ca/LC_MESSAGES/default.po b/priv/gettext/ca/LC_MESSAGES/default.po index f0f3bbfcf..74372b884 100644 --- a/priv/gettext/ca/LC_MESSAGES/default.po +++ b/priv/gettext/ca/LC_MESSAGES/default.po @@ -127,7 +127,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "T'han denegat la participació a %{title}" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "S'ha actualitzat {%title}" @@ -354,12 +354,12 @@ msgid "What information do we collect?" msgstr "Quina informació recollim?" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "Mobilizon a %{instance}: confirma la teva adreça de correu" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" 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 msgid "Public feed for %{instance}" 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 "" diff --git a/priv/gettext/ca/LC_MESSAGES/errors.po b/priv/gettext/ca/LC_MESSAGES/errors.po index b52e3f7a8..e77ef26c6 100644 --- a/priv/gettext/ca/LC_MESSAGES/errors.po +++ b/priv/gettext/ca/LC_MESSAGES/errors.po @@ -115,7 +115,7 @@ msgid "Error while saving user settings" msgstr "No s'han pogut desar les preferències" #, elixir-format -#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex: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 msgid "Group not found" msgstr "No s'ha trobat el grup" @@ -352,7 +352,7 @@ msgid "Comment is already deleted" msgstr "" #, 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" msgstr "" @@ -372,8 +372,8 @@ msgid "Event id not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "" @@ -501,7 +501,7 @@ msgid "Token is not a valid UUID" msgstr "" #, 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" msgstr "" @@ -567,7 +567,7 @@ msgid "You cannot delete this comment" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" msgstr "" @@ -627,7 +627,7 @@ msgid "You need to be logged-in to access resources" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" msgstr "" @@ -647,7 +647,7 @@ msgid "You need to be logged-in to create resources" msgstr "" #, 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" msgstr "" @@ -672,7 +672,7 @@ msgid "You need to be logged-in to leave an event" msgstr "" #, 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" msgstr "" @@ -712,47 +712,47 @@ msgid "This email is already used." msgstr "" #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "" #, 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" msgstr "" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" msgstr "" @@ -777,12 +777,12 @@ msgid "Profile is not administrator for the group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." msgstr "" @@ -812,7 +812,7 @@ msgid "You must provide either an ID or a slug to access a discussion" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" msgstr "" @@ -848,6 +848,16 @@ msgid "Unable to fetch resource details from this URL." msgstr "" #, 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" 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 "" diff --git a/priv/gettext/cs/LC_MESSAGES/activity.po b/priv/gettext/cs/LC_MESSAGES/activity.po index ff00718ff..0cef1cfcd 100644 --- a/priv/gettext/cs/LC_MESSAGES/activity.po +++ b/priv/gettext/cs/LC_MESSAGES/activity.po @@ -304,17 +304,17 @@ msgstr "" msgid "The group %{group} was updated by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "" diff --git a/priv/gettext/cs/LC_MESSAGES/default.po b/priv/gettext/cs/LC_MESSAGES/default.po index 3af7c3fc5..32de11b70 100644 --- a/priv/gettext/cs/LC_MESSAGES/default.po +++ b/priv/gettext/cs/LC_MESSAGES/default.po @@ -117,7 +117,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "" @@ -310,12 +310,12 @@ msgid "What information do we collect?" msgstr "" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "" @@ -1411,3 +1411,13 @@ msgstr "" #: lib/service/export/feed.ex:73 msgid "Public feed for %{instance}" 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 "" diff --git a/priv/gettext/cs/LC_MESSAGES/errors.po b/priv/gettext/cs/LC_MESSAGES/errors.po index d91ce962a..68deb7758 100644 --- a/priv/gettext/cs/LC_MESSAGES/errors.po +++ b/priv/gettext/cs/LC_MESSAGES/errors.po @@ -114,7 +114,7 @@ msgid "Error while saving user settings" msgstr "" #, 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 msgid "Group not found" msgstr "" @@ -351,7 +351,7 @@ msgid "Comment is already deleted" msgstr "" #, 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" msgstr "" @@ -371,8 +371,8 @@ msgid "Event id not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "" @@ -500,7 +500,7 @@ msgid "Token is not a valid UUID" msgstr "" #, 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" msgstr "" @@ -566,7 +566,7 @@ msgid "You cannot delete this comment" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" msgstr "" @@ -626,7 +626,7 @@ msgid "You need to be logged-in to access resources" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" msgstr "" @@ -646,7 +646,7 @@ msgid "You need to be logged-in to create resources" msgstr "" #, 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" msgstr "" @@ -671,7 +671,7 @@ msgid "You need to be logged-in to leave an event" msgstr "" #, 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" msgstr "" @@ -711,47 +711,47 @@ msgid "This email is already used." msgstr "" #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "" #, 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" msgstr "" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" msgstr "" @@ -776,12 +776,12 @@ msgid "Profile is not administrator for the group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." msgstr "" @@ -811,7 +811,7 @@ msgid "You must provide either an ID or a slug to access a discussion" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" msgstr "" @@ -847,6 +847,16 @@ msgid "Unable to fetch resource details from this URL." msgstr "" #, 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" 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 "" diff --git a/priv/gettext/de/LC_MESSAGES/activity.po b/priv/gettext/de/LC_MESSAGES/activity.po index 496b9c1d6..75b0c0b4f 100644 --- a/priv/gettext/de/LC_MESSAGES/activity.po +++ b/priv/gettext/de/LC_MESSAGES/activity.po @@ -18,311 +18,311 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.6.2\n" +#, elixir-format #: 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 -#, elixir-format msgid "%{member} accepted the invitation to join the group." msgstr "%{member} hat die Einladung in die Gruppe angenommen." +#, elixir-format #: 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 -#, elixir-format msgid "%{member} rejected the invitation to join the group." msgstr "%{member} hat die Einladung in die Gruppe abgelehnt." +#, elixir-format #: 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 -#, elixir-format msgid "%{member} requested to join the group." msgstr "%{member} hat den Eintritt in die Gruppe beantragt." +#, elixir-format #: 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 -#, elixir-format msgid "%{member} was invited by %{profile}." msgstr "%{member} wurde von %{profile} eingeladen." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} added the member %{member}." msgstr "%{profile} hat das Mitglied %{member} hinzugefügt." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} archived the discussion %{discussion}." msgstr "%{profile} hat die Diskussion %{discussion} archiviert." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} created the discussion %{discussion}." msgstr "%{profile} hat die Diskussion %{discussion} erstellt." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} created the folder %{resource}." 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.text.eex:1 -#, elixir-format msgid "%{profile} created the group %{group}." msgstr "%{profile} hat die Gruppe %{group} erstellt." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} created the resource %{resource}." msgstr "%{profile} hat die Ressource %{resource} erstellt." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} deleted the discussion %{discussion}." msgstr "%{profile} hat die Diskussion %{discussion} gelöscht." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "%{profile} hat den Folder %{resource} gelöscht." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} deleted the resource %{resource}." msgstr "%{profile} hat die Ressource %{resource} gelöscht." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} excluded member %{member}." msgstr "%{profile} hat das Mitglied %{member} ausgeschlossen." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} moved the resource %{resource}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} quit the group." msgstr "%{profile} hat die Gruppe verlassen." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} renamed the discussion %{discussion}." msgstr "%{profile} hat die Diskussion %{discussion} umbenannt." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" "%{profile} hat den Folder %{old_resource_title} in %{resource} umbenannt." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." msgstr "" "{profile} hat die Ressource %{old_resource_title} in %{resource} umbenannt." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} replied to the discussion %{discussion}." 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.text.eex:7 -#, elixir-format msgid "%{profile} updated the group %{group}." msgstr "%{profile} hat die Gruppe %{group} aktualisiert." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} updated the member %{member}." msgstr "%{profile} hat das Mitglied %{member} aktualisiert." +#, elixir-format #: 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 -#, elixir-format msgid "The event %{event} was created by %{profile}." msgstr "Die Veranstaltung %{event} wurde von %{profile} erstellt." +#, elixir-format #: 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 -#, elixir-format msgid "The event %{event} was deleted by %{profile}." msgstr "Die Veranstaltung %{event} wurde von %{profile} gelöscht." +#, elixir-format #: 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 -#, elixir-format msgid "The event %{event} was updated by %{profile}." 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.text.eex:1 -#, elixir-format msgid "The post %{post} was created by %{profile}." 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.text.eex:13 -#, elixir-format msgid "The post %{post} was deleted by %{profile}." 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.text.eex:7 -#, elixir-format msgid "The post %{post} was updated by %{profile}." msgstr "Der Beitrag %{post} wurde von %{profile} aktualisiert." +#, elixir-format #: 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 -#, elixir-format msgid "%{member} joined the group." msgstr "%{member} ist der Gruppe beigetreten." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} posted a comment on the event %{event}." msgstr "%{profile} hat die Veranstaltung %{event} kommentiert." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} replied to a comment on the event %{event}." msgstr "" "%{profile} hat auf ein Kommentar in der Veranstaltung %{event} geantwortet." -#: lib/web/templates/email/email_direct_activity.text.eex:27 #, elixir-format +#: lib/web/templates/email/email_direct_activity.text.eex:27 msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings." msgstr "" +#, elixir-format #: lib/web/templates/email/email_direct_activity.html.eex:135 #: lib/web/templates/email/email_direct_activity.text.eex:23 -#, elixir-format msgid "View one more activity" msgid_plural "View %{count} more activities" msgstr[0] "" msgstr[1] "" +#, elixir-format #: 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 -#, elixir-format msgid "There has been an activity!" msgid_plural "There has been some activity!" msgstr[0] "" msgstr[1] "" -#: lib/service/activity/renderer/renderer.ex:38 #, elixir-format +#: lib/service/activity/renderer/renderer.ex:38 msgid "Activity on %{instance}" msgstr "" +#, elixir-format #: 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/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}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} mentionned you in a comment under event %{event}." msgstr "" -#: lib/service/activity/renderer/discussion.ex:45 #, elixir-format +#: lib/service/activity/renderer/discussion.ex:45 msgid "%{profile} mentionned you in the discussion %{discussion}." msgstr "" -#: lib/web/templates/email/email_direct_activity.html.eex:155 #, 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}." msgstr "" +#, elixir-format #: lib/web/templates/email/email_direct_activity.html.eex:42 #: lib/web/templates/email/email_direct_activity.text.eex:5 -#, elixir-format msgid "Here's your weekly activity recap" msgstr "" -#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140 #, elixir-format +#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140 msgid "Activity notification for %{instance}" msgstr "" -#: lib/web/email/activity.ex:126 #, elixir-format +#: lib/web/email/activity.ex:126 msgid "Daily activity recap for %{instance}" msgstr "" +#, elixir-format #: lib/web/templates/email/email_direct_activity.html.eex:40 #: lib/web/templates/email/email_direct_activity.text.eex:4 -#, elixir-format msgid "Here's your daily activity recap" msgstr "" -#: lib/web/email/activity.ex:133 #, elixir-format +#: lib/web/email/activity.ex:133 msgid "Weekly activity recap for %{instance}" msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} has posted a new comment under your event %{event}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} has posted a new reply under your event %{event}." msgstr "" -#: lib/web/email/activity.ex:46 #, elixir-format +#: lib/web/email/activity.ex:46 msgid "Announcement for your event %{event}" msgstr "" -#: lib/service/activity/renderer/group.ex:23 #, elixir-format +#: lib/service/activity/renderer/group.ex:23 msgid "The group %{group} was updated by %{profile}." msgstr "" +#, elixir-format #: lib/service/activity/renderer/post.ex:47 -#, elixir-format, fuzzy msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "" +#, elixir-format #: lib/service/activity/renderer/post.ex:31 -#, elixir-format, fuzzy msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "" +#, elixir-format #: lib/service/activity/renderer/post.ex:39 -#, elixir-format, fuzzy msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "" diff --git a/priv/gettext/de/LC_MESSAGES/default.po b/priv/gettext/de/LC_MESSAGES/default.po index 0a9e98d70..5736d0a80 100644 --- a/priv/gettext/de/LC_MESSAGES/default.po +++ b/priv/gettext/de/LC_MESSAGES/default.po @@ -129,7 +129,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "Deine Teilnahme an der Veranstaltung %{title}wurde abgelehnt" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "Veranstaltung %{title} wurde aktualisiert" @@ -360,12 +360,12 @@ msgid "What information do we collect?" msgstr "Welche Informationen sammeln wir ?" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "Mobilizon auf %{instance}: Bestätige deine E-Mail Adresse" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "Mobilizon auf %{instance}: E-Mail geändert" @@ -1775,3 +1775,13 @@ msgstr "" #: lib/service/export/feed.ex:73 msgid "Public feed for %{instance}" 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 "" diff --git a/priv/gettext/de/LC_MESSAGES/errors.po b/priv/gettext/de/LC_MESSAGES/errors.po index 273a19b2a..7a7242995 100644 --- a/priv/gettext/de/LC_MESSAGES/errors.po +++ b/priv/gettext/de/LC_MESSAGES/errors.po @@ -115,7 +115,7 @@ msgid "Error while saving user settings" msgstr "Fehler beim Speichern von Benutzereinstellungen" #, 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 msgid "Group not found" msgstr "Gruppe nicht gefunden" @@ -360,7 +360,7 @@ msgid "Comment is already deleted" msgstr "Kommentar ist bereits gelöscht" #, 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" msgstr "Diskussion nicht gefunden" @@ -380,8 +380,8 @@ msgid "Event id not found" msgstr "Veranstaltungs-ID nicht gefunden" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "Veranstaltung nicht gefunden" @@ -511,7 +511,7 @@ msgid "Token is not a valid UUID" msgstr "Token ist keine gültige UUID" #, 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" msgstr "User nicht gefunden" @@ -582,7 +582,7 @@ msgid "You cannot delete this comment" msgstr "Sie können diesen Kommentar nicht löschen" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" 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" #, 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" 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" #, 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" 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." #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "Beitrag nicht gefunden" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "Ungültige Argumente übergeben" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "Ungültige Anmeldeinformationen" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "Passwort zurücksetzen" #, 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" msgstr "Ressource nicht gefunden" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "Etwas lief falsch" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "Unbekannte Ressource" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "Sie haben nicht die Berechtigung dies zu tun" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "Sie können dieses Ereignis nicht bearbeiten." #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." msgstr "Sie können dieses Ereignis nicht diesem Profil zuordnen." @@ -841,7 +841,7 @@ msgstr "" "zuzugreifen" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" msgstr "Organizer-Profil ist nicht im Besitz des Benutzers" @@ -877,6 +877,16 @@ msgid "Unable to fetch resource details from this URL." msgstr "" #, 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" 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 "" diff --git a/priv/gettext/default.pot b/priv/gettext/default.pot index 15e2cfc51..fd99db7db 100644 --- a/priv/gettext/default.pot +++ b/priv/gettext/default.pot @@ -103,7 +103,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "" @@ -296,12 +296,12 @@ msgid "What information do we collect?" msgstr "" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "" @@ -1390,3 +1390,13 @@ msgstr "" #: lib/service/export/feed.ex:73 msgid "Public feed for %{instance}" 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 "" diff --git a/priv/gettext/en/LC_MESSAGES/activity.po b/priv/gettext/en/LC_MESSAGES/activity.po index dd097dc8d..e803350e0 100644 --- a/priv/gettext/en/LC_MESSAGES/activity.po +++ b/priv/gettext/en/LC_MESSAGES/activity.po @@ -302,17 +302,17 @@ msgstr "" msgid "The group %{group} was updated by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "" diff --git a/priv/gettext/en/LC_MESSAGES/default.po b/priv/gettext/en/LC_MESSAGES/default.po index 75252235e..b2d38a9e3 100644 --- a/priv/gettext/en/LC_MESSAGES/default.po +++ b/priv/gettext/en/LC_MESSAGES/default.po @@ -126,7 +126,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "Your participation to event %{title} has been rejected" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "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?" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "" @@ -1443,3 +1443,13 @@ msgstr "" #: lib/service/export/feed.ex:73 msgid "Public feed for %{instance}" 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 "" diff --git a/priv/gettext/en/LC_MESSAGES/errors.po b/priv/gettext/en/LC_MESSAGES/errors.po index bb3f35e9f..2928e91d7 100644 --- a/priv/gettext/en/LC_MESSAGES/errors.po +++ b/priv/gettext/en/LC_MESSAGES/errors.po @@ -118,7 +118,7 @@ msgid "Error while saving user settings" msgstr "" #, 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 msgid "Group not found" msgstr "" @@ -355,7 +355,7 @@ msgid "Comment is already deleted" msgstr "" #, 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" msgstr "" @@ -375,8 +375,8 @@ msgid "Event id not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "" @@ -504,7 +504,7 @@ msgid "Token is not a valid UUID" msgstr "" #, 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" msgstr "" @@ -570,7 +570,7 @@ msgid "You cannot delete this comment" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" msgstr "" @@ -630,7 +630,7 @@ msgid "You need to be logged-in to access resources" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" msgstr "" @@ -650,7 +650,7 @@ msgid "You need to be logged-in to create resources" msgstr "" #, 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" msgstr "" @@ -675,7 +675,7 @@ msgid "You need to be logged-in to leave an event" msgstr "" #, 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" msgstr "" @@ -715,47 +715,47 @@ msgid "This email is already used." msgstr "" #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "" #, 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" msgstr "" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" msgstr "" @@ -780,12 +780,12 @@ msgid "Profile is not administrator for the group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." msgstr "" @@ -815,7 +815,7 @@ msgid "You must provide either an ID or a slug to access a discussion" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" msgstr "" @@ -851,6 +851,16 @@ msgid "Unable to fetch resource details from this URL." msgstr "" #, 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" 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 "" diff --git a/priv/gettext/errors.pot b/priv/gettext/errors.pot index e1fc57ab4..b0911323d 100644 --- a/priv/gettext/errors.pot +++ b/priv/gettext/errors.pot @@ -115,7 +115,7 @@ msgid "Error while saving user settings" msgstr "" #, 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 msgid "Group not found" msgstr "" @@ -352,7 +352,7 @@ msgid "Comment is already deleted" msgstr "" #, 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" msgstr "" @@ -372,8 +372,8 @@ msgid "Event id not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "" @@ -501,7 +501,7 @@ msgid "Token is not a valid UUID" msgstr "" #, 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" msgstr "" @@ -567,7 +567,7 @@ msgid "You cannot delete this comment" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" msgstr "" @@ -627,7 +627,7 @@ msgid "You need to be logged-in to access resources" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" msgstr "" @@ -647,7 +647,7 @@ msgid "You need to be logged-in to create resources" msgstr "" #, 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" msgstr "" @@ -672,7 +672,7 @@ msgid "You need to be logged-in to leave an event" msgstr "" #, 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" msgstr "" @@ -712,47 +712,47 @@ msgid "This email is already used." msgstr "" #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "" #, 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" msgstr "" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" msgstr "" @@ -777,12 +777,12 @@ msgid "Profile is not administrator for the group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." msgstr "" @@ -812,7 +812,7 @@ msgid "You must provide either an ID or a slug to access a discussion" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" msgstr "" @@ -848,6 +848,16 @@ msgid "Unable to fetch resource details from this URL." msgstr "" #, 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" 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 "" diff --git a/priv/gettext/es/LC_MESSAGES/activity.po b/priv/gettext/es/LC_MESSAGES/activity.po index 3bb078b2b..8ac2931e7 100644 --- a/priv/gettext/es/LC_MESSAGES/activity.po +++ b/priv/gettext/es/LC_MESSAGES/activity.po @@ -18,314 +18,314 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.6.2\n" +#, elixir-format #: 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 -#, elixir-format msgid "%{member} accepted the invitation to join the group." msgstr "%{member} aceptó la invitación para unirse al grupo." +#, elixir-format #: 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 -#, elixir-format msgid "%{member} rejected the invitation to join the group." msgstr "%{member} rechazó la invitación para unirse al grupo." +#, elixir-format #: 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 -#, elixir-format msgid "%{member} requested to join the group." msgstr "%{member} solicitó unirse al grupo." +#, elixir-format #: 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 -#, elixir-format msgid "%{member} was invited by %{profile}." msgstr "%{member} fue invitado por %{profile}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} added the member %{member}." msgstr "%{profile} agregó el miembro %{member}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} archived the discussion %{discussion}." msgstr "%{profile} archivó la discusión %{discussion}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} created the discussion %{discussion}." msgstr "%{profile} creó la discusión %{discussion}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} created the folder %{resource}." msgstr "%{profile} creó la carpeta %{resource}." +#, elixir-format #: lib/web/templates/email/activity/_group_activity_item.html.eex:4 #: lib/web/templates/email/activity/_group_activity_item.text.eex:1 -#, elixir-format msgid "%{profile} created the group %{group}." msgstr "%{profile} crfeó el grupo %{group}." +#, elixir-format #: lib/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 -#, elixir-format msgid "%{profile} created the resource %{resource}." msgstr "%{profile} creó el recurso %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} deleted the discussion %{discussion}." msgstr "%{profile} eliminó la discusión %{discussion}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "%{profile} borró la carpeta %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} deleted the resource %{resource}." msgstr "%{profile} eliminado el recurso %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} excluded member %{member}." msgstr "%{profile }miembro excluido %{member}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "%{profile} movió la carpeta %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} moved the resource %{resource}." msgstr "%{profile} movió el recurso %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} quit the group." msgstr "%{profile} abandona el grupo." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} renamed the discussion %{discussion}." msgstr "%{profile} renombrado la discusión %{discussion}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" "%{profile} ha renombrado la carpeta de %{old_resource_title} a %{resource}." +#, elixir-format #: lib/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 -#, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." msgstr "" "%{profile} ha renombrado el recurso de %{old_resource_title} a %{resource}." +#, elixir-format #: lib/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 -#, elixir-format msgid "%{profile} replied to the discussion %{discussion}." msgstr "%{profile} respondió a la discusión %{discussion}." +#, elixir-format #: lib/web/templates/email/activity/_group_activity_item.html.eex:19 #: lib/web/templates/email/activity/_group_activity_item.text.eex:7 -#, elixir-format msgid "%{profile} updated the group %{group}." msgstr "%{profile} actualizó el grupo %{group}." +#, elixir-format #: lib/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 -#, elixir-format msgid "%{profile} updated the member %{member}." msgstr "%{profile} actualizado el miembro %{member}." +#, elixir-format #: lib/service/activity/renderer/event.ex:23 #: lib/web/templates/email/activity/_event_activity_item.html.eex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1 -#, elixir-format msgid "The event %{event} was created by %{profile}." msgstr "El evento %{event} fue creado por %{profile}." +#, elixir-format #: lib/service/activity/renderer/event.ex:43 #: lib/web/templates/email/activity/_event_activity_item.html.eex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13 -#, elixir-format msgid "The event %{event} was deleted by %{profile}." msgstr "El evento% {event} fue eliminado por % {profile}." +#, elixir-format #: lib/service/activity/renderer/event.ex:33 #: lib/web/templates/email/activity/_event_activity_item.html.eex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7 -#, elixir-format msgid "The event %{event} was updated by %{profile}." msgstr "El evento %{event} fue actualizado por %{profile}." +#, elixir-format #: lib/web/templates/email/activity/_post_activity_item.html.eex:4 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1 -#, elixir-format msgid "The post %{post} was created by %{profile}." msgstr "El cargo %{post} fue creado por %{profile}." +#, elixir-format #: lib/web/templates/email/activity/_post_activity_item.html.eex:34 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13 -#, elixir-format msgid "The post %{post} was deleted by %{profile}." msgstr "El post %{post} fue eliminado por %{profile}." +#, elixir-format #: lib/web/templates/email/activity/_post_activity_item.html.eex:19 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7 -#, elixir-format msgid "The post %{post} was updated by %{profile}." msgstr "El post %{post} fue actualizado por %{profile}." +#, elixir-format #: lib/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 -#, elixir-format msgid "%{member} joined the group." msgstr "%{member} se unió al grupo." +#, elixir-format #: lib/service/activity/renderer/event.ex:63 #: lib/web/templates/email/activity/_event_activity_item.html.eex:58 lib/web/templates/email/activity/_event_activity_item.text.eex:25 -#, elixir-format msgid "%{profile} posted a comment on the event %{event}." msgstr "%{profile} publicó un comentario sobre el evento %{event}." +#, elixir-format #: lib/service/activity/renderer/event.ex:54 #: lib/web/templates/email/activity/_event_activity_item.html.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}." msgstr "%{profile} respondió a un comentario sobre el evento %{event}." -#: lib/web/templates/email/email_direct_activity.text.eex:27 #, elixir-format +#: lib/web/templates/email/email_direct_activity.text.eex:27 msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings." msgstr "" "¿No quieres recibir notificaciones de actividad? Puede cambiar la frecuencia " "o deshabilitarlos en su configuración." +#, elixir-format #: lib/web/templates/email/email_direct_activity.html.eex:135 #: lib/web/templates/email/email_direct_activity.text.eex:23 -#, elixir-format msgid "View one more activity" msgid_plural "View %{count} more activities" msgstr[0] "Ver una actividad más" msgstr[1] "Ver %{count} actividades mas" +#, elixir-format #: lib/web/templates/email/email_direct_activity.html.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 -#, elixir-format msgid "There has been an activity!" msgid_plural "There has been some activity!" msgstr[0] "¡Ha habido una actividad!" msgstr[1] "¡Ha habido algopúnas actividades!" -#: lib/service/activity/renderer/renderer.ex:38 #, elixir-format +#: lib/service/activity/renderer/renderer.ex:38 msgid "Activity on %{instance}" msgstr "Actividad en %{instance}" +#, elixir-format #: lib/service/activity/renderer/comment.ex:38 #: lib/web/templates/email/activity/_comment_activity_item.html.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 -#, elixir-format msgid "%{profile} has posted an announcement under event %{event}." msgstr "%{profile} ha publicado un anuncio en el evento %{event}." +#, elixir-format #: lib/service/activity/renderer/comment.ex:24 #: lib/web/templates/email/activity/_comment_activity_item.html.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}." msgstr "%{profile} te mencionó en un comentario en el evento %{event}." -#: lib/service/activity/renderer/discussion.ex:45 #, elixir-format +#: lib/service/activity/renderer/discussion.ex:45 msgid "%{profile} mentionned you in the discussion %{discussion}." msgstr "%{profile}te mencioné en la discusión %{discussion}." -#: lib/web/templates/email/email_direct_activity.html.eex:155 #, 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}." msgstr "" "¿No quieres recibir notificaciones de actividad? Puede cambiar la frecuencia " "o deshabilitarlos en su configuración." +#, elixir-format #: lib/web/templates/email/email_direct_activity.html.eex:42 #: lib/web/templates/email/email_direct_activity.text.eex:5 -#, elixir-format msgid "Here's your weekly activity recap" msgstr "Aquí está su resumen de actividad semanal" -#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140 #, elixir-format +#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140 msgid "Activity notification for %{instance}" msgstr "Actividad en %{instance}" -#: lib/web/email/activity.ex:126 #, elixir-format +#: lib/web/email/activity.ex:126 msgid "Daily activity recap for %{instance}" msgstr "Resumen de actividad diaria en %{instance}" +#, elixir-format #: lib/web/templates/email/email_direct_activity.html.eex:40 #: lib/web/templates/email/email_direct_activity.text.eex:4 -#, elixir-format msgid "Here's your daily activity recap" msgstr "Aquí está su resumen de actividad diaria" -#: lib/web/email/activity.ex:133 #, elixir-format +#: lib/web/email/activity.ex:133 msgid "Weekly activity recap for %{instance}" msgstr "Resumen de actividad semanal para %{instance}" +#, elixir-format #: lib/service/activity/renderer/comment.ex:66 #: lib/web/templates/email/activity/_comment_activity_item.html.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}." msgstr "%{profile} ha publicado un nuevo comentario en tu evento %{event}." +#, elixir-format #: lib/service/activity/renderer/comment.ex:53 #: lib/web/templates/email/activity/_comment_activity_item.html.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}." msgstr "%{profile} ha publicado una nueva respuesta en tu evento %{event}." -#: lib/web/email/activity.ex:46 #, elixir-format +#: lib/web/email/activity.ex:46 msgid "Announcement for your event %{event}" msgstr "Anuncio para su evento %{event}" -#: lib/service/activity/renderer/group.ex:23 #, elixir-format +#: lib/service/activity/renderer/group.ex:23 msgid "The group %{group} was updated by %{profile}." msgstr "El post %{post} fue actualizado por %{profile}." -#: lib/service/activity/renderer/post.ex:47 #, elixir-format +#: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "El post %{post} del grupo %{group} fue actualizado por %{profile}." -#: lib/service/activity/renderer/post.ex:31 #, elixir-format +#: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "El post %{post} del grupo %{group} fue actualizado por %{profile}." -#: lib/service/activity/renderer/post.ex:39 #, elixir-format +#: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "El post %{post} del grupo %{group} fue actualizado por %{profile}." diff --git a/priv/gettext/es/LC_MESSAGES/default.po b/priv/gettext/es/LC_MESSAGES/default.po index ee43a753a..b95479cb9 100644 --- a/priv/gettext/es/LC_MESSAGES/default.po +++ b/priv/gettext/es/LC_MESSAGES/default.po @@ -128,7 +128,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "Su participación en el evento %{title} ha sido rechazada" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "El evento %{title} ha sido actualizado" @@ -356,12 +356,12 @@ msgid "What information do we collect?" msgstr "¿Qué información recopilamos?" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "Mobilizon en %{instance}: confirma tu dirección de correo electrónico" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "Mobilizon en %{instance}: correo electrónico modificado" @@ -1731,3 +1731,13 @@ msgstr "" #: lib/service/export/feed.ex:73 msgid "Public feed for %{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 "" diff --git a/priv/gettext/es/LC_MESSAGES/errors.po b/priv/gettext/es/LC_MESSAGES/errors.po index ba468ac58..b8d846d8c 100644 --- a/priv/gettext/es/LC_MESSAGES/errors.po +++ b/priv/gettext/es/LC_MESSAGES/errors.po @@ -115,7 +115,7 @@ msgid "Error while saving user settings" msgstr "Error al guardar los parámetros del usuario" #, 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 msgid "Group not found" msgstr "Grupo no encontrado" @@ -358,7 +358,7 @@ msgid "Comment is already deleted" msgstr "El comentario ya está eliminado" #, 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" msgstr "Discusión no encontrada" @@ -378,8 +378,8 @@ msgid "Event id not found" msgstr "ID de evento no encontrado" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "Evento no encontrado" @@ -507,7 +507,7 @@ msgid "Token is not a valid UUID" msgstr "El token no es un UUID válido" #, 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" msgstr "Usuario no encontrado" @@ -577,7 +577,7 @@ msgid "You cannot delete this comment" msgstr "No puedes borrar este comentario" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" 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" #, 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" 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" #, 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" 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." #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "Informe no encontrado" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "Se pasaron argumentos no válidos" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "Credenciales no válidas" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "Restablezca su contraseña para iniciar sesión" #, 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" msgstr "Recurso no encontrado" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "Algo salió mal" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "Recurso desconocido" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "No tienes permiso para hacer esto" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "No puedes borrar este evento." #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" 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." #, 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" 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 "" diff --git a/priv/gettext/fi/LC_MESSAGES/activity.po b/priv/gettext/fi/LC_MESSAGES/activity.po index 342572897..04c3286d3 100644 --- a/priv/gettext/fi/LC_MESSAGES/activity.po +++ b/priv/gettext/fi/LC_MESSAGES/activity.po @@ -18,312 +18,312 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.6.2\n" +#, elixir-format #: 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 -#, elixir-format msgid "%{member} accepted the invitation to join the group." msgstr "%{member} hyväksyi kutsun liittyä ryhmään." +#, elixir-format #: 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 -#, elixir-format msgid "%{member} rejected the invitation to join the group." msgstr "%{member} hylkäsi kutsun liittyä ryhmään." +#, elixir-format #: 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 -#, elixir-format msgid "%{member} requested to join the group." msgstr "%{member} haluaa liittyä ryhmään." +#, elixir-format #: 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 -#, elixir-format msgid "%{member} was invited by %{profile}." msgstr "%{profile} kutsui jäsenen %{member}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} added the member %{member}." msgstr "%{profile} lisäsi jäsenen %{member}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} archived the discussion %{discussion}." msgstr "%{profile} arkistoi keskustelun %{discussion}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} created the discussion %{discussion}." msgstr "%{profile} loi keskustelun %{discussion}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} created the folder %{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.text.eex:1 -#, elixir-format msgid "%{profile} created the group %{group}." msgstr "%{profile} loi ryhmän %{group}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} created the resource %{resource}." msgstr "%{profile} loi resurssin %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} deleted the discussion %{discussion}." msgstr "%{profile} poisti keskustelun %{discussion}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "%{profile} poisti kansion %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} deleted the resource %{resource}." msgstr "%{profile} poisti resurssin %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} excluded member %{member}." msgstr "%{profile} hylkäsi jäsenen %{member}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "%{profile} siirsi kansion %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} moved the resource %{resource}." msgstr "%{profile} siirsi resurssin %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} quit the group." msgstr "%{profile} poistui ryhmästä." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} renamed the discussion %{discussion}." msgstr "%{profile} muutti keskustelun %{discussion} nimer." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "%{profile} muutti kansion %{old_resource_title} nimeksi %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." msgstr "%{profile} muutti resurssin %{old_resource_title} nimeksi %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} replied to the discussion %{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.text.eex:7 -#, elixir-format msgid "%{profile} updated the group %{group}." msgstr "%{profile} päivitti ryhmää %{group}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} updated the member %{member}." msgstr "%{profile} päivitti jäsentä %{member}." +#, elixir-format #: 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 -#, elixir-format msgid "The event %{event} was created by %{profile}." msgstr "%{profile} loi tapahtuman %{event}." +#, elixir-format #: 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 -#, elixir-format msgid "The event %{event} was deleted by %{profile}." msgstr "%{profile} poisti tapahtuman %{event}." +#, elixir-format #: 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 -#, elixir-format msgid "The event %{event} was updated by %{profile}." 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.text.eex:1 -#, elixir-format msgid "The post %{post} was created by %{profile}." 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.text.eex:13 -#, elixir-format msgid "The post %{post} was deleted by %{profile}." 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.text.eex:7 -#, elixir-format msgid "The post %{post} was updated by %{profile}." msgstr "%{profile} päivitti julkaisun %{post}." +#, elixir-format #: 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 -#, elixir-format msgid "%{member} joined the group." msgstr "%{member} liittyi ryhmään." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} posted a comment on the event %{event}." msgstr "%{profile} kommentoi tapahtumaa %{event}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} replied to a comment on the event %{event}." msgstr "%{profile} vastasi tapahtuman %{event} kommenttiin." -#: lib/web/templates/email/email_direct_activity.text.eex:27 #, elixir-format +#: lib/web/templates/email/email_direct_activity.text.eex:27 msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings." msgstr "" "Jos et halua vastaanottaa toimenpideilmoituksia, voit muuttaa " "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.text.eex:23 -#, elixir-format msgid "View one more activity" msgid_plural "View %{count} more activities" msgstr[0] "Näytä seuraava toimenpide" 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:46 lib/web/templates/email/email_direct_activity.text.eex:6 #: lib/web/templates/email/email_direct_activity.text.eex:7 -#, elixir-format msgid "There has been an activity!" msgid_plural "There has been some activity!" msgstr[0] "Toimenpide!" msgstr[1] "Toimenpiteitä!" -#: lib/service/activity/renderer/renderer.ex:38 #, elixir-format +#: lib/service/activity/renderer/renderer.ex:38 msgid "Activity on %{instance}" msgstr "Toimenpide palvelimella %{instance}" +#, elixir-format #: 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/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}." msgstr "%{profile} on julkaissut ilmoituksen tapahtumassa %{event}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} mentionned you in a comment under event %{event}." msgstr "%{profile} mainitsi sinut tapahtuman %{event} kommentissa." -#: lib/service/activity/renderer/discussion.ex:45 #, elixir-format +#: lib/service/activity/renderer/discussion.ex:45 msgid "%{profile} mentionned you in the discussion %{discussion}." msgstr "%{profile} mainitsi sinut keskustelussa %{discussion}." -#: lib/web/templates/email/email_direct_activity.html.eex:155 #, 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}." msgstr "" "Jos et halua vastaanottaa toimenpideilmoituksia, voit muuttaa " "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.text.eex:5 -#, elixir-format msgid "Here's your weekly activity recap" msgstr "Tässä on viikoittainen kertaus toiminnastasi" -#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140 #, elixir-format +#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140 msgid "Activity notification for %{instance}" msgstr "Toimenpide palvelimella %{instance}" -#: lib/web/email/activity.ex:126 #, elixir-format +#: lib/web/email/activity.ex:126 msgid "Daily activity recap for %{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.text.eex:4 -#, elixir-format msgid "Here's your daily activity recap" msgstr "Tässä on päivittäinen kertaus toiminnastasi" -#: lib/web/email/activity.ex:133 #, elixir-format +#: lib/web/email/activity.ex:133 msgid "Weekly activity recap for %{instance}" msgstr "Viikoittainen toiminnan kertaus instanssille %{instance}" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} has posted a new comment under your event %{event}." msgstr "%{profile} on lähettänyt uuden kommentin tapahtumaasi %{event}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} has posted a new reply under your event %{event}." msgstr "%{profiili} on lähettänyt uuden vastauksen tapahtumaasi %{event}." -#: lib/web/email/activity.ex:46 #, elixir-format +#: lib/web/email/activity.ex:46 msgid "Announcement for your event %{event}" msgstr "Ilmoitus tapahtumaasi %{event}" -#: lib/service/activity/renderer/group.ex:23 #, elixir-format +#: lib/service/activity/renderer/group.ex:23 msgid "The group %{group} was updated by %{profile}." msgstr "%{profile} päivitti julkaisun %{post}." -#: lib/service/activity/renderer/post.ex:47 #, elixir-format +#: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "Viestin %{post} ryhmästä %{group} poisti %{profile}." -#: lib/service/activity/renderer/post.ex:31 #, elixir-format +#: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "Viestin %{post} ryhmästä %{group} julkaisi %{profile}." -#: lib/service/activity/renderer/post.ex:39 #, elixir-format +#: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "Viestin %{post} ryhmästä %{group} päivitti %{profile}." diff --git a/priv/gettext/fi/LC_MESSAGES/default.po b/priv/gettext/fi/LC_MESSAGES/default.po index 16b1cca36..8595f2eca 100644 --- a/priv/gettext/fi/LC_MESSAGES/default.po +++ b/priv/gettext/fi/LC_MESSAGES/default.po @@ -128,7 +128,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "Osallistumisesi tapahtumaan %{title) on hylätty" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "Tapahtumaa %{title} on päivitetty" @@ -350,12 +350,12 @@ msgid "What information do we collect?" msgstr "Mitä tietoja kerätään?" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "Mobilizon palvelimella %{instance}: vahvista sähköpostiosoitteesi" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" 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 msgid "Public feed for %{instance}" 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 "" diff --git a/priv/gettext/fi/LC_MESSAGES/errors.po b/priv/gettext/fi/LC_MESSAGES/errors.po index 765eebb52..b3a788087 100644 --- a/priv/gettext/fi/LC_MESSAGES/errors.po +++ b/priv/gettext/fi/LC_MESSAGES/errors.po @@ -115,7 +115,7 @@ msgid "Error while saving user settings" msgstr "Käyttäjän asetusten tallennuksessa tapahtui virhe" #, 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 msgid "Group not found" msgstr "Ryhmää ei löydy" @@ -355,7 +355,7 @@ msgid "Comment is already deleted" msgstr "Kommentti on jo poistettu" #, 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" msgstr "Keskustelua ei löydy" @@ -375,8 +375,8 @@ msgid "Event id not found" msgstr "Tapahtumatunnistetta ei löydy" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "Tapahtumaa ei löydy" @@ -504,7 +504,7 @@ msgid "Token is not a valid UUID" msgstr "Merkki ei ole kelvollinen UUID" #, 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" msgstr "Käyttäjää ei löydy" @@ -573,7 +573,7 @@ msgid "You cannot delete this comment" msgstr "Et voi poistaa kommenttia" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" 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" #, 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" 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" #, 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" 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ä." #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "Julkaisua ei löydy" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "Virheelliset argumentit välitetty" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "Virheelliset kirjautumistiedot" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "Palauta salasana, jotta voit kirjautua sisään" #, 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" msgstr "Resurssia ei löydy" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "Jokin meni vikaan" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "Tuntematon resurssi" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "Sinulla ei ole oikeutta tähän" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" 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ä" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "Et voi muokata tapahtumaa." #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" 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." #, 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" 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 "" diff --git a/priv/gettext/fr/LC_MESSAGES/activity.po b/priv/gettext/fr/LC_MESSAGES/activity.po index 9a4cbff75..2cd3d88d6 100644 --- a/priv/gettext/fr/LC_MESSAGES/activity.po +++ b/priv/gettext/fr/LC_MESSAGES/activity.po @@ -20,249 +20,310 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\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 -#: lib/web/templates/email/activity/_member_activity_item.text.eex:12 +#, elixir-format +#: 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." 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 -#: lib/web/templates/email/activity/_member_activity_item.text.eex:17 +#, elixir-format +#: 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." 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 -#: lib/web/templates/email/activity/_member_activity_item.text.eex:1 +#, elixir-format +#: 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." 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 -#: lib/web/templates/email/activity/_member_activity_item.text.eex:6 +#, elixir-format +#: 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}." 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 -#: lib/web/templates/email/activity/_member_activity_item.text.eex:27 +#, elixir-format +#: 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}." 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 -#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:19 +#, elixir-format +#: 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}." 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 -#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:1 +#, elixir-format +#: 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}." 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 -#: lib/web/templates/email/activity/_resource_activity_item.text.eex:2 +#, elixir-format +#: 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}." 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}." 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 -#: lib/web/templates/email/activity/_resource_activity_item.text.eex:8 +#, elixir-format +#: 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}." 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 -#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:25 +#, elixir-format +#: 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}." 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 -#: lib/web/templates/email/activity/_resource_activity_item.text.eex:40 +#, elixir-format +#: 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}." 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 -#: lib/web/templates/email/activity/_resource_activity_item.text.eex:45 +#, elixir-format +#: 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}." 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 -#: lib/web/templates/email/activity/_member_activity_item.text.eex:39 +#, elixir-format +#: 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}." 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 -#: lib/web/templates/email/activity/_resource_activity_item.text.eex:28 +#, elixir-format +#: 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}." 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 -#: lib/web/templates/email/activity/_resource_activity_item.text.eex:34 +#, elixir-format +#: 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}." 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 -#: lib/web/templates/email/activity/_member_activity_item.text.eex:45 +#, elixir-format +#: 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." msgstr "%{profile} a quitté le groupe." -#: 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 +#, elixir-format +#: 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}." 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 -#: lib/web/templates/email/activity/_resource_activity_item.text.eex:14 +#, elixir-format +#: 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}." 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 -#: lib/web/templates/email/activity/_resource_activity_item.text.eex:21 +#, elixir-format +#: 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}." 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 -#: lib/web/templates/email/activity/_discussion_activity_item.text.eex:7 +#, elixir-format +#: 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}." 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}." 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 -#: lib/web/templates/email/activity/_member_activity_item.text.eex:33 +#, elixir-format +#: 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}." 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 -#: lib/web/templates/email/activity/_event_activity_item.text.eex:1 +#, elixir-format +#: lib/service/activity/renderer/event.ex:23 +#: lib/web/templates/email/activity/_event_activity_item.html.eex:4 lib/web/templates/email/activity/_event_activity_item.text.eex:1 msgid "The event %{event} was created by %{profile}." msgstr "L'événement %{event} a été créé par %{profile}." -#: lib/service/activity/renderer/event.ex:43 lib/web/templates/email/activity/_event_activity_item.html.eex:34 -#: lib/web/templates/email/activity/_event_activity_item.text.eex:13 +#, elixir-format +#: lib/service/activity/renderer/event.ex:43 +#: lib/web/templates/email/activity/_event_activity_item.html.eex:34 lib/web/templates/email/activity/_event_activity_item.text.eex:13 msgid "The event %{event} was deleted by %{profile}." msgstr "L'événement %{event} a été supprimé par %{profile}." -#: lib/service/activity/renderer/event.ex:33 lib/web/templates/email/activity/_event_activity_item.html.eex:19 -#: lib/web/templates/email/activity/_event_activity_item.text.eex:7 +#, elixir-format +#: lib/service/activity/renderer/event.ex:33 +#: lib/web/templates/email/activity/_event_activity_item.html.eex:19 lib/web/templates/email/activity/_event_activity_item.text.eex:7 msgid "The event %{event} was updated by %{profile}." msgstr "L'événement %{event} a été mis à jour par %{profile}." -#: lib/web/templates/email/activity/_post_activity_item.html.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}." 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}." 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}." 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 -#: lib/web/templates/email/activity/_member_activity_item.text.eex:22 +#, elixir-format +#: 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." msgstr "%{member} a rejoint le groupe." -#: 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 +#, elixir-format +#: 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}." 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 -#: lib/web/templates/email/activity/_event_activity_item.text.eex:19 +#, elixir-format +#: lib/service/activity/renderer/event.ex:54 +#: lib/web/templates/email/activity/_event_activity_item.html.eex:43 lib/web/templates/email/activity/_event_activity_item.text.eex:19 msgid "%{profile} replied to a comment on the event %{event}." msgstr "%{profile} a répondu à un commentaire sur l'événement %{event}." +#, elixir-format #: lib/web/templates/email/email_direct_activity.text.eex:27 msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings." msgstr "Vous ne voulez pas recevoir de notifications d'activité ? Vous pouvez changer leur fréquence ou les désactiver dans vos préférences." -#: lib/web/templates/email/email_direct_activity.html.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_plural "View %{count} more activities" msgstr[0] "Voir une activité de plus" msgstr[1] "Voir %{count} activités de plus" -#: lib/web/templates/email/email_direct_activity.html.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 +#, elixir-format +#: 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_plural "There has been some activity!" msgstr[0] "Il y a eu une activité !" msgstr[1] "Il y a eu de l'activité !" +#, elixir-format #: lib/service/activity/renderer/renderer.ex:38 msgid "Activity on %{instance}" msgstr "Activité sur %{instance}" -#: 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/email_anonymous_activity.html.eex:41 -#: lib/web/templates/email/email_anonymous_activity.text.eex:5 +#, elixir-format +#: lib/service/activity/renderer/comment.ex:38 +#: lib/web/templates/email/activity/_comment_activity_item.html.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}." 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 -#: lib/web/templates/email/activity/_comment_activity_item.text.eex:1 +#, elixir-format +#: lib/service/activity/renderer/comment.ex:24 +#: lib/web/templates/email/activity/_comment_activity_item.html.eex:4 lib/web/templates/email/activity/_comment_activity_item.text.eex:1 msgid "%{profile} mentionned you in a comment under event %{event}." msgstr "%{profile} vous a mentionné dans un commentaire sous l'événement %{event}." +#, elixir-format #: lib/service/activity/renderer/discussion.ex:45 msgid "%{profile} mentionned you in the discussion %{discussion}." msgstr "%{profile} vous a mentionné dans la discussion %{discussion}." +#, 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}." msgstr "" "Vous ne voulez pas recevoir de notifications d'activité ? Vous pouvez changer leur fréquence ou les désactiver dans %{tag_start}vos " "préférences%{tag_end}." -#: lib/web/templates/email/email_direct_activity.html.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" msgstr "Voici votre récapitulatif hebdomadaire d'activité" +#, elixir-format #: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140 msgid "Activity notification for %{instance}" msgstr "Notification d'activité sur %{instance}" +#, elixir-format #: lib/web/email/activity.ex:126 msgid "Daily activity recap for %{instance}" msgstr "Récapitulatif quotidien d'activité sur %{instance}" -#: lib/web/templates/email/email_direct_activity.html.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" msgstr "Voici votre récapitulatif quotidien d'activité" +#, elixir-format #: lib/web/email/activity.ex:133 msgid "Weekly activity recap for %{instance}" msgstr "Récapitulatif hebdomadaire d'activité sur %{instance}" -#: lib/service/activity/renderer/comment.ex:66 lib/web/templates/email/activity/_comment_activity_item.html.eex:51 -#: lib/web/templates/email/activity/_comment_activity_item.text.eex:19 +#, elixir-format +#: lib/service/activity/renderer/comment.ex:66 +#: lib/web/templates/email/activity/_comment_activity_item.html.eex:51 lib/web/templates/email/activity/_comment_activity_item.text.eex:19 msgid "%{profile} has posted a new comment under your event %{event}." msgstr "%{profile} a posté un nouveau commentaire sous votre événement %{event}." -#: lib/service/activity/renderer/comment.ex:53 lib/web/templates/email/activity/_comment_activity_item.html.eex:36 -#: lib/web/templates/email/activity/_comment_activity_item.text.eex:13 +#, elixir-format +#: lib/service/activity/renderer/comment.ex:53 +#: lib/web/templates/email/activity/_comment_activity_item.html.eex:36 lib/web/templates/email/activity/_comment_activity_item.text.eex:13 msgid "%{profile} has posted a new reply under your event %{event}." msgstr "%{profile} a posté une nouvelle réponse sous votre événement %{event}." +#, elixir-format #: lib/web/email/activity.ex:46 msgid "Announcement for your event %{event}" msgstr "Annonce pour votre événement %{event}" +#, elixir-format #: lib/service/activity/renderer/group.ex:23 msgid "The group %{group} was updated by %{profile}." msgstr "Le groupe %{group} a été mis à jour par %{profile}." +#, elixir-format #: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "Le billet %{post} du groupe %{group} a été supprimé par %{profile}." +#, elixir-format #: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "Le billet %{post} du groupe %{group} a été publié par %{profile}." +#, elixir-format #: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "Le billet %{post} du groupe %{group} a été mis à jour par %{profile}." diff --git a/priv/gettext/fr/LC_MESSAGES/default.po b/priv/gettext/fr/LC_MESSAGES/default.po index 2c6c8dc65..f79c990d6 100644 --- a/priv/gettext/fr/LC_MESSAGES/default.po +++ b/priv/gettext/fr/LC_MESSAGES/default.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-05-01 10:59+0000\n" +"PO-Revision-Date: 2021-08-02 19:31+0200\n" "Last-Translator: Thomas Citharel \n" "Language-Team: French \n" "Language: fr\n" @@ -18,1188 +18,933 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.6\n" +"X-Generator: Poedit 2.4.3\n" -#, elixir-format #: lib/web/templates/email/password_reset.html.eex:48 msgid "If you didn't request this, please ignore this email. Your password won't change until you access the link below and create a new one." msgstr "Si vous n'avez pas demandé ceci, vous pouvez ignorer cet email. Votre mot de passe ne changera pas tant que vous n'en créerez pas un nouveau en cliquant sur le lien ci-dessous." -#, elixir-format #: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "%{title} par %{creator}" -#, elixir-format #: lib/web/templates/email/registration_confirmation.html.eex:58 msgid "Activate my account" msgstr "Activer mon compte" -#, elixir-format -#: lib/web/templates/email/email.html.eex:118 -#: lib/web/templates/email/email.text.eex:9 +#: lib/web/templates/email/email.html.eex:118 lib/web/templates/email/email.text.eex:9 msgid "Ask the community on Framacolibri" msgstr "Demander à la communauté sur Framacolibri" -#, elixir-format #: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "Commentaires" -#, elixir-format -#: lib/web/templates/email/report.html.eex:72 -#: lib/web/templates/email/report.text.eex:11 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "Événement" -#, elixir-format #: lib/web/email/user.ex:48 msgid "Instructions to reset your password on %{instance}" msgstr "Instructions pour réinitialiser votre mot de passe sur %{instance}" -#, elixir-format #: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "Raison" -#, elixir-format #: lib/web/templates/email/password_reset.html.eex:61 msgid "Reset Password" msgstr "Réinitialiser mon mot de passe" -#, elixir-format #: lib/web/templates/email/password_reset.html.eex:41 msgid "Resetting your password is easy. Just press the button below and follow the instructions. We'll have you up and running in no time." msgstr "Réinitialiser votre mot de passe est facile. Cliquez simplement sur le bouton et suivez les inscriptions. Vous serez opérationnel en un rien de temps." -#, elixir-format #: lib/web/email/user.ex:28 msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "Instructions pour confirmer votre compte Mobilizon sur %{instance}" -#, elixir-format #: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "Nouveau signalement sur l'instance Mobilizon %{instance}" -#, elixir-format -#: lib/web/templates/email/before_event_notification.html.eex:51 -#: lib/web/templates/email/before_event_notification.text.eex:4 +#: lib/web/templates/email/before_event_notification.html.eex:51 lib/web/templates/email/before_event_notification.text.eex:4 msgid "Go to event page" msgstr "Aller à la page de l'événement" -#, elixir-format #: lib/web/templates/email/report.text.eex:1 msgid "New report from %{reporter} on %{instance}" msgstr "Nouveau signalement sur %{instance}" -#, elixir-format #: lib/web/templates/email/event_participation_approved.text.eex:1 msgid "Participation approved" msgstr "Participation approuvée" -#, elixir-format -#: lib/web/templates/email/password_reset.html.eex:13 -#: lib/web/templates/email/password_reset.text.eex:1 +#: lib/web/templates/email/password_reset.html.eex:13 lib/web/templates/email/password_reset.text.eex:1 msgid "Password reset" msgstr "Réinitialisation du mot de passe" -#, elixir-format #: lib/web/templates/email/password_reset.text.eex:7 msgid "Resetting your password is easy. Just click the link below and follow the instructions. We'll have you up and running in no time." msgstr "Réinitialiser votre mot de passe est facile. Cliquez simplement sur le bouton et suivez les instructions. Vous serez opérationnel en un rien de temps." -#, elixir-format #: lib/web/templates/email/registration_confirmation.text.eex:5 msgid "You created an account on %{host} with this email address. You are one click away from activating it. If this wasn't you, please ignore this email." msgstr "Vous avez créé un compte sur %{host} avec cette adresse email. Vous êtes à un clic de l'activer." -#, elixir-format #: lib/web/email/participation.ex:112 msgid "Your participation to event %{title} has been approved" msgstr "Votre participation à l'événement %{title} a été approuvée" -#, elixir-format #: lib/web/email/participation.ex:70 msgid "Your participation to event %{title} has been rejected" msgstr "Votre participation à l'événement %{title} a été rejetée" -#, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "L'événement %{title} a été mis à jour" -#, elixir-format #: lib/web/templates/email/event_updated.text.eex:15 msgid "New title: %{title}" msgstr "Nouveau titre : %{title}" -#, elixir-format #: lib/web/templates/email/password_reset.text.eex:5 msgid "You requested a new password for your account on %{instance}." msgstr "Vous avez demandé un nouveau mot de passe pour votre compte sur %{instance}." -#, elixir-format #: lib/web/templates/email/email.html.eex:86 msgid "Warning" msgstr "Attention" -#, elixir-format #: lib/web/email/participation.ex:135 msgid "Confirm your participation to event %{title}" msgstr "Confirmer ma participation à l'événement %{title}" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:75 msgctxt "terms" msgid "An internal ID for your current selected identity" msgstr "Une identité interne pour l'identité sélectionnée actuellement" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:74 msgctxt "terms" msgid "An internal user ID" msgstr "Une identité utilisateur·ice interne" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:37 msgctxt "terms" msgid "Any of the information we collect from you may be used in the following ways:" msgstr "Les informations que nous vous nous fournissez pourront être utilisées ainsi :" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:9 msgctxt "terms" msgid "Basic account information" msgstr "Informations basiques du compte" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:25 msgctxt "terms" msgid "Do not share any dangerous information over Mobilizon." msgstr "Ne partagez aucune information sensible à l'aide de Mobilizon." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:90 msgctxt "terms" msgid "Do we disclose any information to outside parties?" msgstr "Partageons-nous des informations à des tiers ?" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:68 msgctxt "terms" msgid "Do we use cookies?" msgstr "Utilisons-nous des cookies ?" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:51 msgctxt "terms" msgid "How do we protect your information?" msgstr "Comment protégeons-nous vos informations ?" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:29 msgctxt "terms" msgid "IPs and other metadata" msgstr "Adresses IP et autres métadonnées" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:17 msgctxt "terms" msgid "Published events and comments" msgstr "Événements publiés et commentaires" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:64 msgctxt "terms" msgid "Retain the IP addresses associated with registered users no more than 12 months." msgstr "Ne pas conserver les adresses IP associées aux utilisateur·ices enregistrés pas plus de 12 mois." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:76 msgctxt "terms" msgid "Tokens to authenticate you" msgstr "Jetons pour vous identifier" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:31 msgctxt "terms" msgid "We also may retain server logs which include the IP address of every request to our server." msgstr "Nous pouvons également conserver les données d'authentification y compris les adresses IP de toutes les requêtes de notre serveur." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:70 msgctxt "terms" msgid "We store the following information on your device when you connect:" msgstr "Nous conservons les informations suivantes sur votre appareil lorsque vous vous connectez :" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:58 msgctxt "terms" msgid "We will make a good faith effort to:" msgstr "Nous mettrons tout en possible pour :" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:35 msgctxt "terms" msgid "What do we use your information for?" msgstr "Comment utilisons-nous vos informations ?" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:57 msgctxt "terms" msgid "What is our data retention policy?" msgstr "Quelle est notre politique de conservation des données ?" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:67 msgctxt "terms" msgid "You may irreversibly delete your account at any time." msgstr "Vous pouvez supprimer votre compte à tout moment de façon irréversible." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:115 msgctxt "terms" msgid "Changes to our Privacy Policy" msgstr "Modifications de notre politique de confidentialité" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:106 msgctxt "terms" msgid "If this server is in the EU or the EEA: Our site, products and services are all directed to people who are at least 16 years old. If you are under the age of 16, per the requirements of the GDPR (General Data Protection Regulation) do not use this site." msgstr "Si ce serveur est dans l'Union Européenne ou dans l'Espace Economique Européen : nos sites, produits et services sont tous destinés aux personnes âgées de plus de 16 ans. Si vous avez moins de 16 ans, suivant le RGPD (Règlement général sur la protection des données), n'utilisez pas ce site." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:109 msgctxt "terms" msgid "If this server is in the USA: Our site, products and services are all directed to people who are at least 13 years old. If you are under the age of 13, per the requirements of COPPA (Children's Online Privacy Protection Act) do not use this site." msgstr "Si le serveur est situé aux Etats-Unis : Notre site, nos produits et services sont tous à destination de personnes agées d'au moins 13 ans. Si vous avez moins de 13 ans, d'après les recommandations de COOPA (Children's Online Privacy Protection Act) n'utilisez pas ce site." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:117 msgctxt "terms" msgid "If we decide to change our privacy policy, we will post those changes on this page." msgstr "Si nous décidons de changer notre politique de confidentialité, nous présenterons ces changements sur cette page." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:112 msgctxt "terms" msgid "Law requirements can be different if this server is in another jurisdiction." msgstr "Les conditions juridiques peuvent différer si le serveur est sous une autre juridiction." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:103 msgctxt "terms" msgid "Site usage by children" msgstr "Utilisation du site par des mineurs" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:47 msgctxt "terms" -msgid "The email address you provide may be used to send you information, updates and notifications about other people\n interacting with your content or sending you messages and to respond to inquiries, and/or other requests or\n questions." +msgid "" +"The email address you provide may be used to send you information, updates and notifications about other people\n" +" interacting with your content or sending you messages and to respond to inquiries, and/or other requests or\n" +" questions." msgstr "" -"L'adresse électronique que vous nous fournissez peut être utilisée pour vous " -"envoyer des informations, des mises à jour et des notifications concernant " -"d'autres personnes\n" -"qui interagissent avec vos contenus ou vous envoient des messages et pour " -"répondre à des demandes,\n" +"L'adresse électronique que vous nous fournissez peut être utilisée pour vous envoyer des informations, des mises à jour et des notifications concernant d'autres personnes\n" +"qui interagissent avec vos contenus ou vous envoient des messages et pour répondre à des demandes,\n" "et/ou à d'autres requêtes ou questions." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:45 msgctxt "terms" -msgid "To aid moderation of the community, for example comparing your IP address with other known ones to determine ban\n evasion or other violations." +msgid "" +"To aid moderation of the community, for example comparing your IP address with other known ones to determine ban\n" +" evasion or other violations." msgstr "" -"Afin d'aider à la modération de la communauté, par exemple en comparant " -"votre adresse IP avec d'autres adresses connues\n" -"dans le but de détecter des tentatives de contournement d'un bannissement ou " -"d'autres violations." +"Afin d'aider à la modération de la communauté, par exemple en comparant votre adresse IP avec d'autres adresses connues\n" +"dans le but de détecter des tentatives de contournement d'un bannissement ou d'autres violations." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:43 msgctxt "terms" -msgid "To provide the core functionality of Mobilizon. Depending on this instance's policy you may only be able to\n interact with other people's content and post your own content if you are logged in." +msgid "" +"To provide the core functionality of Mobilizon. Depending on this instance's policy you may only be able to\n" +" interact with other people's content and post your own content if you are logged in." msgstr "" -"Fournir la fonctionnalité de base de Mobilizon. Selon la politique de cette " -"instance, vous ne pourrez interagir\n" -"avec le contenu d'autres personnes et publier votre propre contenu que si " -"vous êtes connecté." +"Fournir la fonctionnalité de base de Mobilizon. Selon la politique de cette instance, vous ne pourrez interagir\n" +"avec le contenu d'autres personnes et publier votre propre contenu que si vous êtes connecté." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:6 msgctxt "terms" msgid "What information do we collect?" msgstr "Quelles informations collectons-nous ?" -#, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "Mobilizon sur %{instance} : confirmez votre adresse email" -#, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "Mobilizon sur %{instance} : adresse email modifiée" -#, elixir-format #: lib/web/email/notification.ex:47 msgid "One event planned today" msgid_plural "%{nb_events} events planned today" msgstr[0] "Un événement prévu aujourd'hui" msgstr[1] "%{nb_events} événements prévus aujourd'hui" -#, elixir-format -#: lib/web/templates/email/on_day_notification.html.eex:38 -#: lib/web/templates/email/on_day_notification.text.eex:4 +#: lib/web/templates/email/on_day_notification.html.eex:38 lib/web/templates/email/on_day_notification.text.eex:4 msgid "You have one event today:" msgid_plural "You have %{total} events today:" msgstr[0] "Vous avez un événement aujourd'hui :" msgstr[1] "Vous avez %{total} événements aujourd'hui :" -#, elixir-format #: lib/web/templates/email/group_invite.text.eex:3 msgid "%{inviter} just invited you to join their group %{group}" msgstr "%{inviter} vient de vous inviter à rejoindre son groupe %{group}" -#, elixir-format -#: lib/web/templates/email/group_invite.html.eex:13 -#: lib/web/templates/email/group_invite.text.eex:1 +#: lib/web/templates/email/group_invite.html.eex:13 lib/web/templates/email/group_invite.text.eex:1 msgid "Come along!" msgstr "Rejoignez-nous !" -#, elixir-format #: lib/web/email/notification.ex:24 msgid "Don't forget to go to %{title}" msgstr "N'oubliez pas de vous rendre à %{title}" -#, elixir-format -#: lib/web/templates/email/before_event_notification.html.eex:38 -#: lib/web/templates/email/before_event_notification.text.eex:3 +#: lib/web/templates/email/before_event_notification.html.eex:38 lib/web/templates/email/before_event_notification.text.eex:3 msgid "Get ready for %{title}" msgstr "Préparez vous pour %{title}" -#, elixir-format #: lib/web/templates/email/group_invite.html.eex:59 msgid "See my groups" msgstr "Voir mes groupes" -#, elixir-format -#: lib/web/templates/email/group_invite.html.eex:45 -#: lib/web/templates/email/group_invite.text.eex:5 +#: lib/web/templates/email/group_invite.html.eex:45 lib/web/templates/email/group_invite.text.eex:5 msgid "To accept this invitation, head over to your groups." msgstr "Pour accepter cette invitation, rendez-vous dans vos groupes." -#, elixir-format #: lib/web/templates/email/before_event_notification.text.eex:5 msgid "View the event on: %{link}" msgstr "Voir l'événement mis à jour sur : %{link}" -#, elixir-format #: lib/web/email/group.ex:33 msgid "You have been invited by %{inviter} to join group %{group}" msgstr "Vous avez été invité par %{inviter} à rejoindre le groupe %{group}" -#, elixir-format #: lib/web/email/notification.ex:71 msgid "One event planned this week" msgid_plural "%{nb_events} events planned this week" msgstr[0] "Un événement prévu cette semaine" msgstr[1] "%{nb_events} événements prévus cette semaine" -#, elixir-format #: lib/web/email/notification.ex:93 msgid "One participation request for event %{title} to process" msgid_plural "%{number_participation_requests} participation requests for event %{title} to process" msgstr[0] "Une demande de participation à l'événement %{title} à traiter" msgstr[1] "%{number_participation_requests} demandes de participation à l'événement %{title} à traiter" -#, elixir-format -#: lib/web/templates/email/notification_each_week.html.eex:38 -#: lib/web/templates/email/notification_each_week.text.eex:3 +#: lib/web/templates/email/notification_each_week.html.eex:38 lib/web/templates/email/notification_each_week.text.eex:3 msgid "You have one event this week:" msgid_plural "You have %{total} events this week:" msgstr[0] "Vous avez un événement aujourd'hui :" msgstr[1] "Vous avez %{total} événements aujourd'hui :" -#, elixir-format #: lib/service/metadata/utils.ex:53 msgid "The event organizer didn't add any description." msgstr "L'organisateur·ice de l'événement n'a pas ajouté de description." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:54 msgctxt "terms" msgid "We implement a variety of security measures to maintain the safety of your personal information when you enter, submit, or access your personal information. Among other things, your browser session, as well as the traffic between your applications and the API, are secured with SSL/TLS, and your password is hashed using a strong one-way algorithm." msgstr "Nous utilisons plusieurs mesures de sécurité pour assurer la confidentialité de vos informations personnelles lorsque vous soumettez ou accédez à vos informations. Entre autres, votre session de navigateur et la connexion entre vos applications et l'API sont sécurisés par SSL/TLS, et votre mot de passe est haché avec un algorithme fort à sens unique." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:94 msgctxt "terms" msgid "No. We do not sell, trade, or otherwise transfer to outside parties your personally identifiable information. This does not include trusted third parties who assist us in operating our site, conducting our business, or servicing you, so long as those parties agree to keep this information confidential. We may also release your information when we believe release is appropriate to comply with the law, enforce our site policies, or protect ours or others rights, property, or safety." msgstr "Non. Nous ne vendons, n’échangeons ou ne transférons d’une quelque manière que soit des informations permettant de vous identifier personnellement. Cela n’inclut pas les tierces parties de confiance qui nous aident à opérer ce site, à conduire nos activités commerciales ou à vous servir, tant qu’elles acceptent de garder ces informations confidentielles. Nous sommes également susceptibles de partager vos informations quand nous pensons que c’est nécessaire pour nous conformer à la loi, pour appliquer les politiques de notre site ainsi que pour défendre nos droits, notre propriété, notre sécurité et celles et ceux d’autres personnes." -#, elixir-format #: lib/web/templates/api/terms.html.eex:23 msgctxt "terms" msgid "Accepting these Terms" msgstr "Acceptation de ces Conditions" -#, elixir-format #: lib/web/templates/api/terms.html.eex:27 msgctxt "terms" msgid "Changes to these Terms" msgstr "Modifications de ces Conditions d'Utilisation" -#, elixir-format #: lib/web/templates/api/terms.html.eex:85 msgctxt "terms" msgid "A lot of the content on the Service is from you and others, and we don't review, verify or authenticate it, and it may include inaccuracies or false information. We make no representations, warranties, or guarantees relating to the quality, suitability, truth, accuracy or completeness of any content contained in the Service. You acknowledge sole responsibility for and assume all risk arising from your use of or reliance on any content." msgstr "Une grande partie du contenu du Service provient de vous et d'autres personnes, et nous ne l'examinons, ne le vérifions ni ne l'authentifions, et il peut contenir des inexactitudes ou de fausses informations. Nous ne faisons aucune déclaration, garantie ou assurance concernant la qualité, la pertinence, la véracité, l'exactitude ou l'exhaustivité de tout contenu du Service. Vous reconnaissez être seul responsable et assumez tous les risques découlant de votre utilisation ou de votre confiance dans tout contenu." -#, elixir-format #: lib/web/templates/api/terms.html.eex:60 msgctxt "terms" msgid "Also, you agree that you will not do any of the following in connection with the Service or other users:" msgstr "De plus, vous acceptez de ne pas faire ce qui suit en relation avec le Service ou les autres utilisateur·ices :" -#, elixir-format #: lib/web/templates/api/terms.html.eex:65 msgctxt "terms" msgid "Circumvent or attempt to circumvent any filtering, security measures, rate limits or other features designed to protect the Service, users of the Service, or third parties." msgstr "Contourner ou tenter de contourner tout filtrage, mesures de sécurité, limites d'accès ou autres caractéristiques destinées à protéger le Service, les utilisateur·ices du Service ou des tiers." -#, elixir-format #: lib/web/templates/api/terms.html.eex:64 msgctxt "terms" msgid "Collect any personal information about other users, or intimidate, threaten, stalk or otherwise harass other users of the Service;" msgstr "Recueillir des informations personnelles sur les autres utilisateur·ices, ou intimider, menacer, traquer ou harceler de toute autre manière les autres utilisateurs du Service ;" -#, elixir-format #: lib/web/templates/api/terms.html.eex:55 msgctxt "terms" msgid "Content that is illegal or unlawful, that would otherwise create liability;" msgstr "Du contenu qui est illégal ou illicite, qui autrement entraînerait une responsabilité ;" -#, elixir-format #: lib/web/templates/api/terms.html.eex:56 msgctxt "terms" msgid "Content that may infringe or violate any patent, trademark, trade secret, copyright, right of privacy, right of publicity or other intellectual or other right of any party;" msgstr "Du contenu susceptible d'enfreindre ou de violer un brevet, une marque de commerce, un secret commercial, un droit d'auteur, un droit à la vie privée, un droit de publicité ou tout autre droit intellectuel ou autre de toute partie ;" -#, elixir-format #: lib/web/templates/api/terms.html.eex:42 msgctxt "terms" msgid "Creating Accounts" msgstr "Création de compte" -#, elixir-format #: lib/web/templates/api/terms.html.eex:89 msgctxt "terms" msgid "Entire Agreement" msgstr "Accord complet" -#, elixir-format #: lib/web/templates/api/terms.html.eex:92 msgctxt "terms" msgid "Feedback" msgstr "Commentaires" -#, elixir-format #: lib/web/templates/api/terms.html.eex:83 msgctxt "terms" msgid "Hyperlinks and Third Party Content" msgstr "Liens hypertexte et contenu tiers" -#, elixir-format #: lib/web/templates/api/terms.html.eex:88 msgctxt "terms" msgid "If you breach any of these Terms, we have the right to suspend or disable your access to or use of the Service." msgstr "Si vous enfreignez l'une de ces Conditions, nous avons le droit de suspendre ou de désactiver votre accès ou votre utilisation du Service." -#, elixir-format #: lib/web/templates/api/terms.html.eex:63 msgctxt "terms" msgid "Impersonate or post on behalf of any person or entity or otherwise misrepresent your affiliation with a person or entity;" msgstr "Usurper l'identité d'une personne ou d'une entité ou afficher au nom d'une personne ou d'une entité, ou encore présenter de manière inexacte votre affiliation à une personne ou une entité ;" -#, elixir-format #: lib/web/templates/api/terms.html.eex:48 msgctxt "terms" msgid "Our Service allows you and other users to post, link and otherwise make available content. You are responsible for the content that you make available to the Service, including its legality, reliability, and appropriateness." msgstr "Notre Service vous permet, ainsi qu'à d'autres utilisateur·ices, de publier, d'établir des liens et de mettre à disposition du contenu. Vous êtes responsable du contenu que vous mettez à la disposition du service, y compris de sa légalité, de sa fiabilité et de sa pertinence." -#, elixir-format #: lib/web/templates/api/terms.html.eex:39 msgctxt "terms" msgid "Privacy Policy" msgstr "Politique de confidentialité" -#, elixir-format #: lib/web/templates/api/terms.html.eex:95 msgctxt "terms" msgid "Questions & Contact Information" msgstr "Questions et coordonnées" -#, elixir-format #: lib/web/templates/api/terms.html.eex:87 msgctxt "terms" msgid "Termination" msgstr "Résiliation" -#, elixir-format #: lib/web/templates/api/terms.html.eex:62 msgctxt "terms" msgid "Use the Service in any manner that could interfere with, disrupt, negatively affect or inhibit other users from fully enjoying the Service or that could damage, disable, overburden or impair the functioning of the Service;" msgstr "Utiliser le Service de toute manière qui pourrait interférer, perturber, affecter négativement ou empêcher d'autres utilisateur·ices de profiter pleinement du Service ou qui pourrait endommager, désactiver, surcharger ou altérer le fonctionnement du Service ;" -#, elixir-format #: lib/web/templates/api/terms.html.eex:47 msgctxt "terms" msgid "Your Content & Conduct" msgstr "Votre contenu et votre conduite" -#, elixir-format #: lib/web/templates/api/terms.html.eex:84 msgctxt "terms" msgid "%{instance_name} makes no claim or representation regarding, and accepts no responsibility for third party websites accessible by hyperlink from the Service or websites linking to the Service. When you leave the Service, you should be aware that these Terms and our policies no longer govern. The inclusion of any link does not imply endorsement by %{instance_name} of the site. Use of any such linked website is at the user's own risk." msgstr "%{instance_name} ne fait aucune revendication et n'accepte aucune responsabilité concernant les sites web de tiers accessibles par lien hypertexte depuis le Service ou les sites web liés au Service. Lorsque vous quittez le Service, vous devez savoir que les présentes Conditions et nos politiques de confidentialité ne sont plus applicables. L'inclusion d'un lien n'implique pas l'approbation par %{instance_name} du site. L'utilisation de tout site web lié est aux risques et périls de l'utilisateur·ice." -#, elixir-format #: lib/web/templates/api/terms.html.eex:68 msgctxt "terms" msgid "Finally, your use of the Service is also subject to acceptance of the instance's own specific rules regarding the code of conduct and moderation rules. Breaking those rules may also result in your account being disabled or suspended." msgstr "Enfin, votre utilisation du Service est également soumise à l'acceptation des règles spécifiques de l'instance concernant le code de conduite et les règles de modération. Le non-respect de ces règles peut également entraîner la désactivation ou la suspension de votre compte." -#, elixir-format #: lib/web/templates/api/terms.html.eex:81 msgctxt "terms" msgid "For full details about the Mobilizon software see here." msgstr "Pour plus de détails sur le logiciel Mobilizon voir ici." -#, elixir-format #: lib/web/templates/api/terms.html.eex:18 msgctxt "terms" msgid "Here are the important things you need to know about accessing and using the %{instance_name} (%{instance_url}) website and service (collectively, \"Service\"). These are our terms of service (\"Terms\"). Please read them carefully." msgstr "Voici les points importants que vous devez savoir sur l'accès et l'utilisation du site web et du Service %{instance_name} (%{instance_url}) (conjointement, \"Service\"). Ce sont nos conditions de service (\"Conditions\"). Veuillez les lire attentivement." -#, elixir-format #: lib/web/templates/api/terms.html.eex:33 msgctxt "terms" msgid "If we make major changes, we will notify our users in a clear and prominent manner. Minor changes may only be highlighted in the footer of our website. It is your responsibility to check the website regularly for changes to these Terms." msgstr "Si nous apportons des changements majeurs, nous en informerons nos utilisateur·ices de manière claire et visible. Il est possible que les changements mineurs ne soient mis en évidence que dans le pied de page de cette page. Il est de votre responsabilité de vérifier régulièrement sur le site web si des modifications ont été apportées aux présentes Conditions." -#, elixir-format #: lib/web/templates/api/terms.html.eex:53 msgctxt "terms" msgid "In order to make %{instance_name} a great place for all of us, please do not post, link and otherwise make available on or through the Service any of the following:" msgstr "Afin de faire de %{instance_name} un endroit idéal pour nous toutes et tous, nous vous prions de ne pas publier, relier ou rendre disponible sur ou par le biais du Service l'un des éléments suivants :" -#, elixir-format #: lib/web/templates/api/terms.html.eex:57 msgctxt "terms" msgid "Private information of any third party (e.g., addresses, phone numbers, email addresses, Social Security numbers and credit card numbers); and" msgstr "Les informations privées de toute personne tierce (par exemple, les adresses, les numéros de téléphone, les adresses électroniques, les numéros de sécurité sociale et les numéros de carte de crédit) ; et" -#, elixir-format #: lib/web/templates/api/terms.html.eex:52 msgctxt "terms" msgid "Since Mobilizon is a distributed network, it is possible, depending on the visibility rules set to your content, that your content has been distributed to other Mobilizon instances. When you delete your content, we will request those other instances to also delete the content. Our responsibility on the content being deleted from those other instances ends here. If for some reason, some other instance does not delete the content, we cannot be held responsible." msgstr "Mobilizon étant un réseau distribué, il est possible, en fonction des règles de visibilité définies pour votre contenu, que celui-ci ait été distribué à d'autres instances de Mobilizon. Lorsque vous supprimez votre contenu, nous demandons à ces autres instances de supprimer également le contenu. Notre responsabilité quant au contenu supprimé de ces autres instances s'arrête ici. Si, pour une raison quelconque, une autre instance ne supprime pas le contenu, nous ne pouvons être tenus responsables." -#, elixir-format #: lib/web/templates/api/terms.html.eex:90 msgctxt "terms" msgid "These Terms constitute the entire agreement between you and %{instance_name} regarding the use of the Service, superseding any prior agreements between you and %{instance_name} relating to your use of the Service." msgstr "Les présentes Conditions constituent l'intégralité de l'accord entre vous et %{instance_name} concernant l'utilisation du Service, remplaçant tout accord préalable entre vous et %{instance_name} relatif à votre utilisation du Service." -#, elixir-format #: lib/web/templates/api/terms.html.eex:80 msgctxt "terms" msgid "This Service runs on a Mobilizon instance. This source code is licensed under an AGPLv3 license which means you are allowed to and even encouraged to take the source code, modify it and use it." msgstr "Ce Service fonctionne sur une instance de Mobilizon. Ce code source est sous licence AGPLv3 ce qui signifie que vous êtes autorisé et même encouragé à prendre le code source, le modifier et l'utiliser." -#, elixir-format #: lib/web/templates/api/terms.html.eex:58 msgctxt "terms" msgid "Viruses, corrupted data or other harmful, disruptive or destructive files or code." msgstr "Virus, données corrompues ou autres fichiers ou codes nuisibles, perturbateurs ou destructeurs." -#, elixir-format #: lib/web/templates/api/terms.html.eex:51 msgctxt "terms" msgid "You can remove the content that you posted by deleting it. Once you delete your content, it will not appear on the Service, but copies of your deleted content may remain in our system or backups for some period of time. Web server access logs might also be stored for some time in the system." msgstr "Vous pouvez supprimer le contenu que vous avez publié en le supprimant. Une fois que vous avez supprimé votre contenu, il n'apparaîtra plus sur le Service, mais des copies de votre contenu supprimé peuvent rester dans notre système ou des sauvegardes pendant un certain temps. Les journaux d'accès au serveur web peuvent également être stockés pendant un certain temps dans le système." -#, elixir-format #: lib/web/templates/api/terms.html.eex:96 msgctxt "terms" msgid "Questions or comments about the Service may be directed to us at %{contact}" msgstr "Les questions ou commentaires concernant le Service peuvent nous être adressés à %{contact}" -#, elixir-format #: lib/web/templates/api/terms.html.eex:79 msgctxt "terms" msgid "Source code" msgstr "Code source" -#, elixir-format #: lib/web/templates/api/terms.html.eex:93 msgctxt "terms" msgid "We love feedback. Please let us know what you think of the Service, these Terms and, in general, %{instance_name}." msgstr "Nous aimons les retours d'information. N'hésitez pas à nous faire savoir ce que vous pensez du Service, des présentes Conditions et, en général, de %{instance_name}." -#, elixir-format #: lib/web/templates/api/terms.html.eex:74 msgctxt "terms" msgid "Instance administrators (and community moderators, given the relevant access) are responsible for monitoring and acting on flagged content and other user reports, and have the right and responsibility to remove or edit content that is not aligned to this Instance set of rules, or to suspend, block or ban (temporarily or permanently) any account, community, or instance for breaking these terms, or for other behaviours that they deem inappropriate, threatening, offensive, or harmful." msgstr "Les administrateurs d'instance (et les modérateurs de la communauté, sous réserve d'un accès approprié) sont chargés de surveiller et d'agir sur les contenus signalés et autres rapports d'utilisateur·ices, et ont le droit et la responsabilité de supprimer ou de modifier les contenus qui ne sont pas conformes aux règles de cette d'instance, ou de suspendre, bloquer ou interdire (temporairement ou définitivement) tout compte, communauté ou instance pour violation de ces conditions, ou pour d'autres comportements qu'ils jugent inappropriés, menaçants, offensants ou nuisibles." -#, elixir-format #: lib/web/templates/api/terms.html.eex:6 msgctxt "terms" msgid "%{instance_name} will not use or transmit or resell your personal data" msgstr "%{instance_name} n'utilisera pas ni ne transmettra ou revendra vos données" -#, elixir-format #: lib/web/templates/api/terms.html.eex:44 msgctxt "terms" msgid "If you discover or suspect any Service security breaches, please let us know as soon as possible. For security holes in the Mobilizon software itself, please contact its contributors directly." msgstr "Si vous découvrez ou soupçonnez des failles de sécurité du Service, veuillez nous en informer dès que possible. Pour les failles de sécurité dans le logiciel Mobilizon lui-même, veuillez contacter directement ses contributeur·ices." -#, elixir-format #: lib/web/templates/api/terms.html.eex:77 msgctxt "terms" msgid "Instance administrators should ensure that every community hosted on the instance is properly moderated according to the defined rules." msgstr "Les administrateur·ices d'instance doivent s'assurer que chaque communauté hébergée sur l'instance est correctement modérée conformément aux règles définies." -#, elixir-format #: lib/web/templates/api/terms.html.eex:98 msgctxt "terms" msgid "Originally adapted from the Diaspora* and App.net privacy policies, also licensed under CC BY-SA." msgstr "Adaptée à l'origine des politiques de confidentialité de Diaspora* et App.net, aussi sous licence CC BY-SA." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:119 msgctxt "terms" msgid "Originally adapted from the Mastodon and Discourse privacy policies, also licensed under CC BY-SA." msgstr "Adaptée à l'origine des politiques de confidentialité de Mastodon et Discourse, aussi sous licence CC BY-SA." -#, elixir-format #: lib/web/templates/api/terms.html.eex:3 msgctxt "terms" msgid "Short version" msgstr "Version courte" -#, elixir-format #: lib/web/templates/api/terms.html.eex:9 msgctxt "terms" msgid "The service is provided without warranties and these terms may change in the future" msgstr "Le service est fourni sans garanties et ces conditions peuvent changer dans le futur" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:118 msgctxt "terms" msgid "This document is licensed under CC BY-SA. It was last updated June 18, 2020." msgstr "Ce document est sous licence CC BY-SA. La dernière mise à jour date du 18 juin 2020." -#, elixir-format #: lib/web/templates/api/terms.html.eex:97 msgctxt "terms" msgid "This document is licensed under CC BY-SA. It was last updated June 22, 2020." msgstr "Ce document est sous licence CC BY-SA. La dernière mise à jour date du 22 juin 2020." -#, elixir-format #: lib/web/templates/api/terms.html.eex:8 msgctxt "terms" msgid "You must respect other people and %{instance_name}'s rules when using the service" msgstr "Vous devez respecter les autres et les règles de %{instance_name} lorsque vous utilisez le service" -#, elixir-format #: lib/web/templates/api/terms.html.eex:7 msgctxt "terms" msgid "You must respect the law when using %{instance_name}" msgstr "Vous devez respecter la loi lorsque vous utilisez %{instance_name}" -#, elixir-format #: lib/web/templates/api/terms.html.eex:5 msgctxt "terms" msgid "Your content is yours" msgstr "Votre contenu vous appartient" -#, elixir-format #: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "Confirmer mon adresse email" -#, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:13 -#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:1 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:13 lib/web/templates/email/anonymous_participation_confirmation.text.eex:1 msgid "Confirm your e-mail" msgstr "Confirmez votre adresse email" -#, elixir-format #: lib/web/templates/email/anonymous_participation_confirmation.text.eex:3 msgid "Hi there! You just registered to join this event: « %{title} ». Please confirm the e-mail address you provided:" msgstr "Salut ! Vous venez de vous enregistrer pour rejoindre cet événement : « %{title} ». Merci de confirmer l'adresse email que vous avez fournie :" -#, elixir-format -#: lib/web/templates/email/email.html.eex:115 -#: lib/web/templates/email/email.text.eex:8 +#: lib/web/templates/email/email.html.eex:115 lib/web/templates/email/email.text.eex:8 msgid "Need help? Is something not working as expected?" msgstr "Besoin d'aide ? Quelque chose ne fonctionne pas correctement ?" -#, elixir-format #: lib/web/templates/email/registration_confirmation.html.eex:38 msgid "You created an account on %{host} with this email address. You are one click away from activating it." msgstr "Vous avez créé un compte sur %{host} avec cette adresse email. Vous êtes à un clic de l'activer." -#, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on %{instance}" msgstr "Nouveau signalement sur %{instance}" -#, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:38 msgid "The email address for your account on %{host} is being changed to:" msgstr "L'adresse email pour votre compte sur %{host} est en train d'être changée pour :" -#, elixir-format #: lib/web/templates/email/password_reset.html.eex:38 msgid "You requested a new password for your account on %{instance}." msgstr "Vous avez demandé un nouveau mot de passe pour votre compte sur %{instance}." -#, elixir-format #: lib/web/templates/email/email.text.eex:5 msgid "Please do not use it for real purposes." msgstr "Veuillez ne pas l'utiliser pour un cas réel." -#, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 -#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133 -#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 -#: lib/web/templates/email/notification_each_week.text.eex:11 lib/web/templates/email/on_day_notification.html.eex:70 -#: lib/web/templates/email/on_day_notification.text.eex:14 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133 lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 lib/web/templates/email/notification_each_week.text.eex:11 lib/web/templates/email/on_day_notification.html.eex:70 lib/web/templates/email/on_day_notification.text.eex:14 msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button." msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button." msgstr[0] "Si vous avez besoin d'annuler votre participation, il suffit d'accéder à la page de l'événement à partir du lien ci-dessus et de cliquer sur le bouton « Je participe »." msgstr[1] "Si vous avez besoin d'annuler votre participation à un ou plusieurs événements, il suffit d'accéder aux pages des événement grâce aux liens ci-dessus et de cliquer sur le bouton « Je participe »." -#, elixir-format -#: lib/web/templates/email/pending_participation_notification.html.eex:38 -#: lib/web/templates/email/pending_participation_notification.text.eex:4 +#: lib/web/templates/email/pending_participation_notification.html.eex:38 lib/web/templates/email/pending_participation_notification.text.eex:4 msgid "You have one pending attendance request to process:" msgid_plural "You have %{number_participation_requests} attendance requests to process:" msgstr[0] "Vous avez une demande de participation en attente à traiter :" msgstr[1] "Vous avez %{number_participation_requests} demandes de participation en attente à traiter :" -#, elixir-format #: lib/web/templates/email/email.text.eex:11 msgid "%{instance} is powered by Mobilizon." msgstr "%{instance} est une instance Mobilizon." -#, elixir-format #: lib/web/templates/email/email.html.eex:143 msgid "%{instance} is powered by Mobilizon." msgstr "%{instance} est une instance Mobilizon." -#, elixir-format -#: lib/web/templates/email/pending_participation_notification.html.eex:13 -#: lib/web/templates/email/pending_participation_notification.text.eex:1 +#: lib/web/templates/email/pending_participation_notification.html.eex:13 lib/web/templates/email/pending_participation_notification.text.eex:1 msgid "A request is pending!" msgstr "Une requête est en attente !" -#, elixir-format -#: lib/web/templates/email/before_event_notification.html.eex:13 -#: lib/web/templates/email/before_event_notification.text.eex:1 +#: lib/web/templates/email/before_event_notification.html.eex:13 lib/web/templates/email/before_event_notification.text.eex:1 msgid "An event is upcoming!" msgstr "Un événement est à venir !" -#, elixir-format -#: lib/web/templates/email/email_changed_new.html.eex:13 -#: lib/web/templates/email/email_changed_new.text.eex:1 +#: lib/web/templates/email/email_changed_new.html.eex:13 lib/web/templates/email/email_changed_new.text.eex:1 msgid "Confirm new email" msgstr "Confirmez votre adresse email" -#, elixir-format #: lib/web/templates/email/event_updated.html.eex:84 msgid "End" msgstr "Fin" -#, elixir-format #: lib/web/templates/email/event_updated.text.eex:21 msgid "End %{ends_on}" msgstr "Fin %{ends_on}" -#, elixir-format -#: lib/web/templates/email/event_updated.html.eex:13 -#: lib/web/templates/email/event_updated.text.eex:1 +#: lib/web/templates/email/event_updated.html.eex:13 lib/web/templates/email/event_updated.text.eex:1 msgid "Event update!" msgstr "Événement mis à jour !" -#, elixir-format #: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "Commentaires signalés" -#, elixir-format -#: lib/web/templates/email/event_participation_approved.html.eex:45 -#: lib/web/templates/email/event_participation_approved.text.eex:7 +#: lib/web/templates/email/event_participation_approved.html.eex:45 lib/web/templates/email/event_participation_approved.text.eex:7 msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" msgstr "Bonne nouvelle : un·e des organisateur·ices de l'événement vient d'approuver votre demande. Mettez à jour votre agenda, car vous êtes maintenant un·e participant·e !" -#, elixir-format -#: lib/web/templates/email/email_changed_new.html.eex:38 -#: lib/web/templates/email/email_changed_new.text.eex:3 +#: lib/web/templates/email/email_changed_new.html.eex:38 lib/web/templates/email/email_changed_new.text.eex:3 msgid "Hi there! It seems like you wanted to change the email address linked to your account on %{instance}. If you still wish to do so, please click the button below to confirm the change. You will then be able to log in to %{instance} with this new email address." msgstr "Salut ! Il semblerait que vous avez demandé la modification de l'adresse e-mail liée à votre compte sur %{instance}. Si vous voulez toujours effectuer ce changement, merci de cliquer sur le bouton ci-dessous pour confirmer la modification. Vous pourrez alors vous connecter à %{instance} avec cette nouvelle adresse." -#, elixir-format #: lib/web/templates/email/email_changed_old.text.eex:3 msgid "Hi there! Just a quick note to confirm that the email address linked to your account on %{host} has been changed from this one to:" msgstr "Salut ! Juste un petite note pour confirmer que l'adresse e-mail liée à votre compte sur %{host} a été changée depuis celle-ci à :" -#, elixir-format -#: lib/web/templates/email/email_changed_old.html.eex:62 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:62 lib/web/templates/email/email_changed_old.text.eex:5 msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "Si vous n'avez pas effectué cette modification vous-même, il est probable que quelqu'un ait eu accès à votre compte %{host}. Veuillez vous connecter et changer immédiatement votre mot de passe. Si vous ne pouvez pas vous connecter, contactez l'administrateur·ice sur %{host}." -#, elixir-format #: lib/web/templates/email/password_reset.text.eex:12 msgid "If you didn't trigger the change yourself, please ignore this message. Your password won't be changed until you click the link above." msgstr "Si vous n'êtes pas à l'origine de cette modification, merci d'ignorer ce message. Votre mot de passe ne sera pas modifié tant que vous ne cliquerez pas le lien ci-dessus." -#, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:70 -#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:4 lib/web/templates/email/registration_confirmation.html.eex:45 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:70 lib/web/templates/email/anonymous_participation_confirmation.text.eex:4 lib/web/templates/email/registration_confirmation.html.eex:45 msgid "If you didn't trigger this email, you may safely ignore it." msgstr "Si vous n'avez pas déclenché cette alerte, vous pouvez ignorer cet e-mail sans souci." -#, elixir-format -#: lib/web/templates/email/before_event_notification.html.eex:63 -#: lib/web/templates/email/before_event_notification.text.eex:6 +#: lib/web/templates/email/before_event_notification.html.eex:63 lib/web/templates/email/before_event_notification.text.eex:6 msgid "If you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button." msgstr "Si vous avez besoin d'annuler votre participation, il suffit d'accéder à la page de l'événement à partir du lien ci-dessus et de cliquer sur le bouton « Je participe »." -#, elixir-format -#: lib/web/templates/email/email.html.eex:144 -#: lib/web/templates/email/email.text.eex:11 +#: lib/web/templates/email/email.html.eex:144 lib/web/templates/email/email.text.eex:11 msgid "Learn more about Mobilizon here!" msgstr "En apprendre plus à propos de Mobilizon ici !" -#, elixir-format #: lib/web/templates/email/event_updated.html.eex:94 msgid "Location" msgstr "Localisation" -#, elixir-format #: lib/web/templates/email/event_updated.html.eex:104 msgid "Location address was removed" msgstr "L'adresse physique a été enlevée" -#, elixir-format -#: lib/web/templates/email/pending_participation_notification.html.eex:51 -#: lib/web/templates/email/pending_participation_notification.text.eex:6 +#: lib/web/templates/email/pending_participation_notification.html.eex:51 lib/web/templates/email/pending_participation_notification.text.eex:6 msgid "Manage pending requests" msgstr "Gérer les demandes de participation en attente" -#, elixir-format -#: lib/web/templates/email/registration_confirmation.html.eex:13 -#: lib/web/templates/email/registration_confirmation.text.eex:1 +#: lib/web/templates/email/registration_confirmation.html.eex:13 lib/web/templates/email/registration_confirmation.text.eex:1 msgid "Nearly there!" msgstr "Vous y êtes presque !" -#, elixir-format -#: lib/web/templates/email/email_changed_old.html.eex:13 -#: lib/web/templates/email/email_changed_old.text.eex:1 +#: lib/web/templates/email/email_changed_old.html.eex:13 lib/web/templates/email/email_changed_old.text.eex:1 msgid "New email confirmation" msgstr "Confirmation de nouvel e-mail" -#, elixir-format #: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "Raisons du signalement" -#, elixir-format #: lib/web/templates/email/report.html.eex:39 msgid "Someone on %{instance} reported the following content for you to analyze:" msgstr "Une personne de %{instance} a signalé le contenu suivant :" -#, elixir-format -#: lib/web/templates/email/event_participation_rejected.html.eex:13 -#: lib/web/templates/email/event_participation_rejected.text.eex:1 +#: lib/web/templates/email/event_participation_rejected.html.eex:13 lib/web/templates/email/event_participation_rejected.text.eex:1 msgid "Sorry! You're not going." msgstr "Désolé ! Vous n'y allez pas." -#, elixir-format #: lib/web/templates/email/event_updated.html.eex:74 msgid "Start" msgstr "Début" -#, elixir-format #: lib/web/templates/email/event_updated.text.eex:18 msgid "Start %{begins_on}" msgstr "Début %{begins_on}" -#, elixir-format #: lib/web/templates/email/event_updated.text.eex:3 msgid "There have been changes for %{title} so we'd thought we'd let you know." msgstr "Il y a eu des changements pour %{title} donc nous avons pensé que nous vous le ferions savoir." -#, elixir-format -#: lib/web/templates/email/event_updated.html.eex:55 -#: lib/web/templates/email/event_updated.text.eex:11 +#: lib/web/templates/email/event_updated.html.eex:55 lib/web/templates/email/event_updated.text.eex:11 msgid "This event has been cancelled by its organizers. Sorry!" msgstr "Cet événement a été annulé par ses organisateur·ices. Désolé !" -#, elixir-format -#: lib/web/templates/email/event_updated.html.eex:51 -#: lib/web/templates/email/event_updated.text.eex:7 +#: lib/web/templates/email/event_updated.html.eex:51 lib/web/templates/email/event_updated.text.eex:7 msgid "This event has been confirmed" msgstr "L'événement a été confirmé" -#, elixir-format -#: lib/web/templates/email/event_updated.html.eex:53 -#: lib/web/templates/email/event_updated.text.eex:9 +#: lib/web/templates/email/event_updated.html.eex:53 lib/web/templates/email/event_updated.text.eex:9 msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it." msgstr "Cet événement doit encore être confirmé : les organisateur·ices vous feront savoir si l'événement est confirmé." -#, elixir-format -#: lib/web/templates/email/event_participation_rejected.html.eex:45 -#: lib/web/templates/email/event_participation_rejected.text.eex:7 +#: lib/web/templates/email/event_participation_rejected.html.eex:45 lib/web/templates/email/event_participation_rejected.text.eex:7 msgid "Unfortunately, the organizers rejected your request." msgstr "Malheureusement, les organisateur⋅ices ont rejeté votre demande de participation." -#, elixir-format #: lib/web/templates/email/email_changed_new.html.eex:51 msgid "Verify your email address" msgstr "Vérifier l'adresse email" -#, elixir-format #: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "Voir le signalement" -#, elixir-format #: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "Voir le signalement :" -#, elixir-format -#: lib/web/templates/email/email_anonymous_activity.html.eex:67 -#: lib/web/templates/email/event_participation_approved.html.eex:58 lib/web/templates/email/event_participation_confirmed.html.eex:58 +#: lib/web/templates/email/email_anonymous_activity.html.eex:67 lib/web/templates/email/event_participation_approved.html.eex:58 lib/web/templates/email/event_participation_confirmed.html.eex:58 msgid "Visit event page" msgstr "Voir la page de l'événement" -#, elixir-format #: lib/web/templates/email/event_updated.html.eex:121 msgid "Visit the updated event page" msgstr "Voir la page de l'événement mis à jour" -#, elixir-format #: lib/web/templates/email/event_updated.text.eex:23 msgid "Visit the updated event page: %{link}" msgstr "Voir l'événement mis à jour sur : %{link}" -#, elixir-format -#: lib/web/templates/email/notification_each_week.html.eex:13 -#: lib/web/templates/email/notification_each_week.text.eex:1 +#: lib/web/templates/email/notification_each_week.html.eex:13 lib/web/templates/email/notification_each_week.text.eex:1 msgid "What's up this week?" msgstr "Quoi de neuf cette semaine ?" -#, elixir-format -#: lib/web/templates/email/on_day_notification.html.eex:13 -#: lib/web/templates/email/on_day_notification.text.eex:1 +#: lib/web/templates/email/on_day_notification.html.eex:13 lib/web/templates/email/on_day_notification.text.eex:1 msgid "What's up today?" msgstr "Quoi de neuf aujourd'hui ?" -#, elixir-format -#: lib/web/templates/email/event_participation_approved.html.eex:70 -#: lib/web/templates/email/event_participation_approved.text.eex:11 lib/web/templates/email/event_participation_confirmed.html.eex:70 -#: lib/web/templates/email/event_participation_confirmed.text.eex:6 +#: lib/web/templates/email/event_participation_approved.html.eex:70 lib/web/templates/email/event_participation_approved.text.eex:11 lib/web/templates/email/event_participation_confirmed.html.eex:70 lib/web/templates/email/event_participation_confirmed.text.eex:6 msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button." msgstr "Si vous souhaitez mettre à jour ou annuler votre participation, il vous suffit d'accéder à la page de l'événement par le lien ci-dessus et de cliquer sur le bouton Participer." -#, elixir-format -#: lib/web/templates/email/pending_participation_notification.html.eex:64 -#: lib/web/templates/email/pending_participation_notification.text.eex:8 +#: lib/web/templates/email/pending_participation_notification.html.eex:64 lib/web/templates/email/pending_participation_notification.text.eex:8 msgid "You are receiving this email because you chose to get notifications for pending attendance requests to your events. You can disable or change your notification settings in your user account settings under « Notifications »." msgstr "Vous recevez ce courriel parce que vous avez choisi de recevoir des notifications pour les demandes de participation en attente à vos événements. Vous pouvez désactiver ou modifier vos paramètres de notification dans les paramètres de votre compte utilisateur dans « Notifications »." -#, elixir-format #: lib/web/templates/email/event_participation_rejected.text.eex:5 msgid "You issued a request to attend %{title}." msgstr "Vous avez effectué une demande de participation à %{title}." -#, elixir-format -#: lib/web/templates/email/event_participation_approved.text.eex:5 -#: lib/web/templates/email/event_participation_confirmed.text.eex:3 +#: lib/web/templates/email/event_participation_approved.text.eex:5 lib/web/templates/email/event_participation_confirmed.text.eex:3 msgid "You recently requested to attend %{title}." msgstr "Vous avez demandé à participer à l'événement %{title}." -#, elixir-format -#: lib/web/templates/email/event_participation_approved.html.eex:13 -#: lib/web/templates/email/event_participation_confirmed.html.eex:13 lib/web/templates/email/event_participation_confirmed.text.eex:1 +#: lib/web/templates/email/event_participation_approved.html.eex:13 lib/web/templates/email/event_participation_confirmed.html.eex:13 lib/web/templates/email/event_participation_confirmed.text.eex:1 msgid "You're going!" msgstr "Vous y allez !" -#, elixir-format -#: lib/web/templates/email/email_changed_new.html.eex:64 -#: lib/web/templates/email/email_changed_new.text.eex:5 +#: lib/web/templates/email/email_changed_new.html.eex:64 lib/web/templates/email/email_changed_new.text.eex:5 msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "Si vous n'êtes pas à l'origine de cette modification, merci d'ignorer ce message." -#, elixir-format #: lib/web/templates/email/email.html.eex:90 msgid "Please do not use it for real purposes." msgstr "Veuillez ne pas l'utiliser pour un cas réel." -#, elixir-format -#: lib/web/templates/email/group_member_removal.html.eex:45 -#: lib/web/templates/email/group_member_removal.text.eex:5 +#: lib/web/templates/email/group_member_removal.html.eex:45 lib/web/templates/email/group_member_removal.text.eex:5 msgid "If you feel this is an error, you may contact the group's administrators so that they can add you back." msgstr "Si vous pensez qu'il s'agit d'une erreur, vous pouvez contacter les administrateurs du groupe afin qu'ils vous réintègrent." -#, elixir-format -#: lib/web/templates/email/group_member_removal.html.eex:13 -#: lib/web/templates/email/group_member_removal.text.eex:1 +#: lib/web/templates/email/group_member_removal.html.eex:13 lib/web/templates/email/group_member_removal.text.eex:1 msgid "So long, and thanks for the fish!" msgstr "Salut, et encore merci pour le poisson !" -#, elixir-format #: lib/web/email/group.ex:63 msgid "You have been removed from group %{group}" msgstr "Vous avez été enlevé du groupe %{group}" -#, elixir-format #: lib/web/templates/email/group_member_removal.text.eex:3 msgid "You have been removed from group %{group}. You will not be able to access this group's private content anymore." msgstr "Vous avez été enlevé du groupe %{group}. Vous ne serez plus en mesure d'accéder au contenu privé du groupe." -#, elixir-format #: lib/web/templates/email/group_invite.html.eex:38 msgid "%{inviter} just invited you to join their group %{link_start}%{group}%{link_end}" msgstr "%{inviter} vient de vous inviter à rejoindre son groupe %{link_start}%{group}%{link_end}" -#, elixir-format #: lib/web/templates/email/group_member_removal.html.eex:38 msgid "You have been removed from group %{link_start}%{group}%{link_end}. You will not be able to access this group's private content anymore." msgstr "Vous avez été enlevé du groupe %{link_start}%{group}%{link_end}. Vous ne serez plus en mesure d'accéder au contenu privé du groupe." -#, elixir-format -#: lib/web/templates/email/group_suspension.html.eex:54 -#: lib/web/templates/email/group_suspension.text.eex:7 +#: lib/web/templates/email/group_suspension.html.eex:54 lib/web/templates/email/group_suspension.text.eex:7 msgid "As this group was located on another instance, it will continue to work for other instances than this one." msgstr "Comme ce groupe était originaire d'une autre instance, il continuera à fonctionner pour d'autres instances que celle-ci." -#, elixir-format -#: lib/web/templates/email/group_suspension.html.eex:46 -#: lib/web/templates/email/group_suspension.text.eex:5 +#: lib/web/templates/email/group_suspension.html.eex:46 lib/web/templates/email/group_suspension.text.eex:5 msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." msgstr "Comme ce groupe était originaire de cette instance, toutes ses données ont été irrémédiablement détruites." -#, elixir-format -#: lib/web/templates/email/group_deletion.html.eex:38 -#: lib/web/templates/email/group_deletion.text.eex:3 +#: lib/web/templates/email/group_deletion.html.eex:38 lib/web/templates/email/group_deletion.text.eex:3 msgid "The administrator %{author} deleted group %{group}. All of the group's events, discussions, posts and todos have been deleted." msgstr "L'administrateur·ice %{author} a supprimé le groupe %{group}. Tous les événements, discussions, billets et todos du groupe ont été supprimés." -#, elixir-format -#: lib/web/templates/email/group_suspension.html.eex:13 -#: lib/web/templates/email/group_suspension.text.eex:1 +#: lib/web/templates/email/group_suspension.html.eex:13 lib/web/templates/email/group_suspension.text.eex:1 msgid "The group %{group} has been suspended on %{instance}!" msgstr "Le groupe %{group} a été suspendu sur %{instance} !" -#, elixir-format -#: lib/web/templates/email/group_deletion.html.eex:13 -#: lib/web/templates/email/group_deletion.text.eex:1 +#: lib/web/templates/email/group_deletion.html.eex:13 lib/web/templates/email/group_deletion.text.eex:1 msgid "The group %{group} was deleted on %{instance}!" msgstr "Le groupe %{group} a été supprimé sur %{instance} !" -#, elixir-format -#: lib/web/templates/email/group_suspension.html.eex:38 -#: lib/web/templates/email/group_suspension.text.eex:3 +#: lib/web/templates/email/group_suspension.html.eex:38 lib/web/templates/email/group_suspension.text.eex:3 msgid "Your instance's moderation team has decided to suspend %{group_name} (%{group_address}). You are no longer a member of this group." msgstr "L'équipe de modération de votre instance a décidé de suspendre %{group_name} (%{group_address}). Vous n'êtes désormais plus membre de ce groupe." -#, elixir-format #: lib/web/email/group.ex:136 msgid "The group %{group} has been deleted on %{instance}" msgstr "Le groupe %{group} a été supprimé sur %{instance}" -#, elixir-format #: lib/web/email/group.ex:97 msgid "The group %{group} has been suspended on %{instance}" msgstr "Le groupe %{group} a été suspendu sur %{instance}" -#, elixir-format #: lib/web/templates/api/terms.html.eex:24 msgctxt "terms" msgid "By accessing or using the Service, this means you agree to be bound by all the terms below. If these terms are in any way unclear, please let us know by contacting %{contact}." msgstr "Si vous accédez au Service ou utilisez le Service, cela signifie que vous acceptez d'être lié·e par toutes les Conditions ci-dessous. Si une condition n'a pas de sens pour vous, veuillez nous le faire savoir en contactant %{contact}." -#, elixir-format #: lib/web/templates/api/terms.html.eex:40 msgctxt "terms" msgid "For information about how we collect and use information about users of the Service, please check our privacy policy." msgstr "Pour savoir comment nous recueillons et utilisons les informations sur les utilisateur·ice·s du Service, veuillez consulter notre politique de confidentialité." -#, elixir-format #: lib/web/templates/api/terms.html.eex:36 msgctxt "terms" msgid "If you continue to use the Service after the revised Terms go into effect, you accept the revised Terms." msgstr "Si vous continuez à utiliser le Service après l'entrée en vigueur des Conditions révisées, vous acceptez les conditions révisées." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:78 msgctxt "terms" msgid "If you delete this information, you need to login again." msgstr "Si vous supprimez ces informations, vous devrez vous connecter de nouveau." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:80 msgctxt "terms" msgid "If you're not connected, we don't store any information on your device, unless you participate in an event anonymously. In this specific case we store the hash of an unique identifier for the event and participation status in your browser so that we may display participation status. Deleting this information will only stop displaying participation status in your browser." msgstr "Si vous n'êtes pas connecté·e, nous ne conserverons aucune information sur votre appareil, sauf si vous participez anonymement à un événement. Dans ce cas spécifique nous conservons le hash d'un identifiant unique pour l'événement et les statuts de participation dans votre navigateur pour pouvoir les afficher. Supprimer ces informations aura pour seule conséquence que votre participation ne sera plus affichée dans votre navigateur." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:87 msgctxt "terms" msgid "Note: This information is stored in your localStorage and not your cookies." msgstr "Attention : Ces informations sont conservées dans votre stockage local et non vos cookies." -#, elixir-format #: lib/web/templates/api/terms.html.eex:71 msgctxt "terms" msgid "Our responsibility" msgstr "Notre responsabilité" -#, elixir-format #: lib/web/templates/api/privacy.html.eex:61 msgctxt "terms" msgid "Retain server logs containing the IP address of all requests to this server, insofar as such logs are kept, no more than 90 days." msgstr "Conserver les journaux du serveur contenant l'adresse IP de toutes les demandes adressées à ce serveur, dans la mesure où ces journaux sont conservés, pas plus de 90 jours." -#, elixir-format -#: lib/web/templates/api/privacy.html.eex:3 -#: lib/web/templates/api/terms.html.eex:15 +#: lib/web/templates/api/privacy.html.eex:3 lib/web/templates/api/terms.html.eex:15 msgctxt "terms" msgid "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary to help you understand them better." msgstr "Certains termes, techniques ou non, utilisés dans le texte ci-dessous peuvent recouvrir des concepts difficiles à appréhender. Nous vous proposons un glossaire qui pourra vous aider à mieux les comprendre." -#, elixir-format #: lib/web/templates/api/terms.html.eex:45 msgctxt "terms" msgid "We are not liable for any loss you may incur as a result of someone else using your email or password, either with or without your knowledge." msgstr "Nous ne sommes pas responsables des pertes que vous pourriez subir si quelqu'un d'autre utilise votre adresse électronique ou votre mot de passe, à votre insu ou non." -#, elixir-format #: lib/web/templates/api/terms.html.eex:50 msgctxt "terms" msgid "We cannot be held responsible should a programming or administrative error make your content visible to a larger audience than intended. Aside from our limited right to your content, you retain all of your rights to the content you post, link and otherwise make available on or through the Service." msgstr "Nous ne pouvons être tenus responsables si une erreur de programmation ou d'administration rend votre contenu visible à un public plus large que celui que vous aviez prévu. Outre notre droit limité sur votre contenu, vous conservez tous vos droits sur le contenu que vous publiez, mettez en lien et rendez disponible sur ou via le Service." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:10 msgctxt "terms" msgid "We collect information from you when you register on this instance and gather data when you participate in the platform by reading, writing, and interacting with content shared here. If you register on this instance, you will be asked to enter an email address, a password (hashed) and at least an username. Your email address will be verified by an email containing a unique link. Once the link is activated, we know you control that email address. You may also enter additional profile information such as a display name and biography, and upload a profile picture and header image. The username, display name, biography, profile picture and header image are always listed publicly. You may however visit this instance without registering." @@ -1207,224 +952,184 @@ msgstr "" "Nous collectons des informations sur vous lorsque vous vous inscrivez sur cette instance et récupérons des données lorsque vous utilisez la plateforme en lisant, écrivant, et en interagissant avec les contenus partagés. Si vous vous inscrivez sur cette instance, nous vous demanderons une adresse courriel, un mot de passe (haché) et au moins un nom d'utilisateur.ice. Votre adresse courriel sera vérifiée par l'envoi d'un courriel de confirmation contenant un lien unique. Si ce lien est activé, nous saurons que vous contrôlez cette adresse courriel. Vous pouvez également entrer des informations supplémentaires au profil, comme un pseudonyme, une biographie, une image de profil et une image d'en-tête. Le nom d'utilisateur, le pseudonyme affiché, la " "biographie, les images de profil et d'en-tête sont toujours publiques. Vous pouvez toutefois utiliser ce serveur sans vous inscrire." -#, elixir-format #: lib/web/templates/api/terms.html.eex:30 msgctxt "terms" msgid "We reserve the right to modify these Terms at any time. For instance, we may need to change these Terms if we come out with a new feature." msgstr "Nous nous réservons le droit de modifier ces Conditions à tout moment. Par exemple, nous pouvons être amenés à modifier ces Conditions si nous proposons une nouvelle fonctionnalité." -#, elixir-format #: lib/web/templates/api/terms.html.eex:20 msgctxt "terms" msgid "When we say “we”, “our”, or “us” in this document, we are referring to the owners, operators and administrators of this Mobilizon instance. The Mobilizon software is provided by the team of Mobilizon contributors, supported by Framasoft, a French not-for-profit organization advocating for Free/Libre Software. Unless explicitly stated, this Mobilizon instance is an independent service using Mobilizon's source code. You may find more information about this instance on the \"About this instance\" page." msgstr "Lorsque nous disons « nous », « notre » ou « nos » dans ce document, nous faisons référence aux propriétaires, opérateur·ices et administrateur·ices de cette instance de Mobilizon. Le logiciel Mobilizon est fourni par l'équipe des contributeur·ices de Mobilizon, soutenue par Framasoft, une organisation française d'éducation populaire à but non lucratif qui défend les logiciels libres. Sauf mention explicite, cette instance de Mobilizon est un service indépendant utilisant le code source de Mobilizon. Vous pouvez trouver plus d'informations sur cette instance sur la page « A propos de cette instance »." -#, elixir-format #: lib/web/templates/api/terms.html.eex:43 msgctxt "terms" msgid "When you create an account you agree to maintain the security and confidentiality of your password and accept all risks of unauthorized access to your account data and any other information you provide to %{instance_name}." msgstr "Lorsque vous créez un compte, vous acceptez également de maintenir la sécurité et la confidentialité de votre mot de passe et vous acceptez tous les risques d'accès non autorisé aux données de votre compte et à toute autre information que vous fournissez à %{instance_name}." -#, elixir-format #: lib/web/templates/api/terms.html.eex:49 msgctxt "terms" msgid "When you post, link or otherwise make available content to the Service, you grant us the right and license to display and distribute your content on or through the Service (including via applications). We may format your content for display throughout the Service, but we will not edit or revise the substance of your content itself. The displaying and distribution of your content happens only according to the visibility rules you have set for the content. We will not modify the visibility of the content you have set." msgstr "Lorsque vous publiez, liez ou mettez à disposition un contenu sur le Service, vous nous accordez le droit et la licence d'afficher et de distribuer votre contenu sur ou via le Service (y compris via des applications). Nous pouvons formater votre contenu pour l'afficher dans le Service, mais nous ne modifierons pas ou ne réviserons pas la substance de votre contenu lui-même. L'affichage et la distribution de votre contenu se fait strictement selon les règles de visibilité que vous avez définies pour le contenu. Nous ne modifierons pas la visibilité du contenu que vous avez défini." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:19 msgctxt "terms" msgid "Your events and comments are delivered to other instances that follow your own, meaning they are delivered to different instances and copies are stored there. When you delete events or comments, this is likewise delivered to these other instances. All interactions related to event features - such as joining an event - or group features - such as managing resources - are federated as well. Please keep in mind that the operators of the instance and any receiving instances may view such messages and information, and that recipients may screenshot, copy or otherwise re-share them." msgstr "Vos événements et commentaires sont transmis aux instances qui suivent la vôtre, ce qui signifie que d'autres instances posséderont des copies de ces contenus. Lorsque vous supprimez un événement ou un commentaire, ceci est transmis de la même façon aux autres instances. Toutes les interactions liées aux fonctionnalités des événements - comme rejoindre un événement - ou bien aux fonctionnalités de groupes - comme gérer ses ressources - sont également fédérées. Veuillez noter que les administrateur·ices de cette instance et de toutes les instances fédérées peuvent voir ces messages, et que les destinataires peuvent les copier, en faire des captures d'écran et les repartager de différentes façons." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:99 msgctxt "terms" msgid "Your content may be downloaded by other instances in the network. Your public events and comments are delivered to the instances following your own instance. Content created through a group is forwarded to all the instances of all the members of the group, insofar as these members reside on a different instance than this one." msgstr "Votre contenu peut être téléchargé par d'autres instances du réseau. Vos événements publics et commentaires sont transmis aux instances abonnées à votre instance. Le contenu créé à travers un groupe est transmis à toutes les instances de tous les membres du groupe, si celleux-ci sont inscrit·e·s sur une autre instance que la vôtre." -#, elixir-format #: lib/web/templates/email/event_participation_confirmed.text.eex:4 msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "Vous avez confirmé votre participation. Mettez à jour votre agenda, car vous êtes maintenant sur la liste des invités !" -#, elixir-format -#: lib/web/templates/email/event_participation_approved.html.eex:38 -#: lib/web/templates/email/event_participation_confirmed.html.eex:38 +#: lib/web/templates/email/event_participation_approved.html.eex:38 lib/web/templates/email/event_participation_confirmed.html.eex:38 msgid "You recently requested to attend %{title}." msgstr "Vous avez demandé à participer à l'événement %{title}." -#, elixir-format #: lib/web/email/participation.ex:91 msgid "Your participation to event %{title} has been confirmed" msgstr "Votre participation à l'événement %{title} a été approuvée" -#, elixir-format #: lib/web/templates/email/report.html.eex:41 msgid "%{reporter} reported the following content." msgstr "%{reporter} a signalé le contenu suivant." -#, elixir-format #: lib/web/templates/email/report.text.eex:5 msgid "Group %{group} was reported" msgstr "Le groupe %{group} a été signalé" -#, elixir-format #: lib/web/templates/email/report.html.eex:51 msgid "Group reported" msgstr "Groupe signalé" -#, elixir-format #: lib/web/templates/email/report.text.eex:7 msgid "Profile %{profile} was reported" msgstr "Le profil %{profile} a été signalé" -#, elixir-format #: lib/web/templates/email/report.html.eex:56 msgid "Profile reported" msgstr "Profil signalé" -#, elixir-format #: lib/web/templates/email/event_participation_confirmed.html.eex:45 msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "Vous avez maintenant confirmé votre participation. Mettez à jour votre agenda, car vous êtes maintenant sur la liste des invités !" -#, elixir-format #: lib/mobilizon/posts/post.ex:94 msgid "A text is required for the post" msgstr "Un texte est requis pour le billet" -#, elixir-format #: lib/mobilizon/posts/post.ex:93 msgid "A title is required for the post" msgstr "Un titre est requis pour le billet" -#, elixir-format #: lib/web/templates/email/instance_follow.text.eex:3 msgid "%{name} (%{domain}) just requested to follow your instance." msgstr "%{name} (%{domain}) vient de demander à suivre votre instance." -#, elixir-format #: lib/web/email/follow.ex:54 msgid "%{name} requests to follow your instance" msgstr "%{name} demande à suivre votre instance" -#, elixir-format #: lib/web/templates/email/instance_follow.html.eex:38 msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." msgstr "%{name} (%{domain}) vient de demander à suivre votre instance. Si vous acceptez, leur instance recevra tous les événements publics de votre instance." -#, elixir-format #: lib/web/templates/email/instance_follow.text.eex:4 msgid "If you accept, this instance will receive all of your public events." msgstr "Si vous acceptez, leur instance recevra tous les événements publics de votre instance." -#, elixir-format #: lib/web/email/follow.ex:48 msgid "Instance %{name} (%{domain}) requests to follow your instance" msgstr "L'instance %{name} (%{domain}) demande à suivre votre instance" -#, elixir-format #: lib/web/templates/email/instance_follow.html.eex:66 msgid "See the federation settings" msgstr "Voir les paramètres de fédération" -#, elixir-format -#: lib/web/templates/email/instance_follow.html.eex:52 -#: lib/web/templates/email/instance_follow.text.eex:6 +#: lib/web/templates/email/instance_follow.html.eex:52 lib/web/templates/email/instance_follow.text.eex:6 msgid "To accept this invitation, head over to the instance's admin settings." msgstr "Pour accepter cette invitation, rendez-vous dans vos groupes." -#, elixir-format -#: lib/web/templates/email/instance_follow.html.eex:13 -#: lib/web/templates/email/instance_follow.text.eex:1 +#: lib/web/templates/email/instance_follow.html.eex:13 lib/web/templates/email/instance_follow.text.eex:1 msgid "Want to connect?" msgstr "Voulez-vous vous connecter ?" -#, elixir-format -#: lib/web/templates/email/instance_follow.html.eex:45 -#: lib/web/templates/email/instance_follow.text.eex:5 +#: lib/web/templates/email/instance_follow.html.eex:45 lib/web/templates/email/instance_follow.text.eex:5 msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." msgstr "Note : le fait que %{name} (%{domain}) vous suive n'implique pas nécessairement que vous suivez cette instance, mais vous pouvez demander à les suivre également." -#, elixir-format #: lib/web/templates/email/anonymous_participation_confirmation.html.eex:38 msgid "Hi there! You just registered to join this event: « %{title} ». Please confirm the e-mail address you provided:" msgstr "Salut ! Vous venez de vous enregistrer pour rejoindre cet événement : « %{title} ». Merci de confirmer l'adresse email que vous avez fournie :" -#, elixir-format #: lib/web/templates/email/event_participation_rejected.html.eex:38 msgid "You issued a request to attend %{title}." msgstr "Vous avez effectué une demande de participation à %{title}." -#, elixir-format #: lib/web/templates/email/event_updated.html.eex:64 msgid "Event title" msgstr "Titre de l'événement" -#, elixir-format #: lib/web/templates/email/event_updated.html.eex:38 msgid "There have been changes for %{title} so we'd thought we'd let you know." msgstr "Il y a eu des changements pour %{title} donc nous avons pensé que nous vous le ferions savoir." -#, elixir-format #: lib/web/templates/error/500_page.html.eex:7 msgid "This page is not correct" msgstr "Cette page n’est pas correcte" -#, elixir-format #: lib/web/templates/error/500_page.html.eex:50 msgid "We're sorry, but something went wrong on our end." msgstr "Nous sommes désolé·e·s, mais quelque chose s’est mal passé de notre côté." -#, elixir-format -#: lib/web/templates/email/email.html.eex:89 -#: lib/web/templates/email/email.text.eex:4 +#: lib/web/templates/email/email.html.eex:89 lib/web/templates/email/email.text.eex:4 msgid "This is a demonstration site to test Mobilizon." msgstr "Ceci est un site de démonstration permettant de tester Mobilizon." -#, elixir-format -#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60 -#: lib/service/metadata/instance.ex:54 lib/service/metadata/instance.ex:60 +#: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60 lib/service/metadata/instance.ex:54 lib/service/metadata/instance.ex:60 msgid "%{name}'s feed" msgstr "Flux de %{name}" -#, elixir-format #: lib/service/export/feed.ex:120 msgid "%{actor}'s private events feed on %{instance}" msgstr "Flux privé des événements de %{actor} sur %{instance}" -#, elixir-format #: lib/service/export/feed.ex:115 msgid "%{actor}'s public events feed on %{instance}" msgstr "Flux public des événements de %{actor} sur %{instance}" -#, elixir-format #: lib/service/export/feed.ex:220 msgid "Feed for %{email} on %{instance}" msgstr "Flux pour %{email} sur %{instance}" -#, elixir-format #: lib/web/templates/error/500_page.html.eex:57 msgid "If the issue persists, you may contact the server administrator at %{contact}." msgstr "Si le problème persiste, vous pouvez contacter l'administrateur⋅ice du serveur à %{contact}." -#, elixir-format #: lib/web/templates/error/500_page.html.eex:55 msgid "If the issue persists, you may try to contact the server administrator." msgstr "Si le problème persiste, vous pouvez essayer de contacter l'administrateur⋅ice du serveur." -#, elixir-format #: lib/web/templates/error/500_page.html.eex:68 msgid "Technical details" msgstr "Détails techniques" -#, elixir-format #: lib/web/templates/error/500_page.html.eex:52 msgid "The Mobilizon server %{instance} seems to be temporarily down." msgstr "Le serveur Mobilizon %{instance} semble être temporairement hors-service." -#, elixir-format #: lib/service/export/feed.ex:73 msgid "Public feed for %{instance}" msgstr "Flux public pour %{instance}" + +#: 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 "Le mot de passe que vous avez choisi est trop court. Assurez-vous que votre mot de passe contienne au moins 6 caractères." + +#: 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 "Le jeton que vous avez fourni est invalide. Assurez-vous que l'URL est exactement la même que celle contenue dans le message que vous avez reçu." diff --git a/priv/gettext/fr/LC_MESSAGES/errors.po b/priv/gettext/fr/LC_MESSAGES/errors.po index 5739ef199..8048e4d55 100644 --- a/priv/gettext/fr/LC_MESSAGES/errors.po +++ b/priv/gettext/fr/LC_MESSAGES/errors.po @@ -117,7 +117,7 @@ msgid "Error while saving user settings" msgstr "Erreur lors de la sauvegarde des paramètres utilisateur" #, elixir-format -#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex: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 msgid "Group not found" msgstr "Groupe non trouvé" @@ -356,7 +356,7 @@ msgid "Comment is already deleted" msgstr "Le commentaire est déjà supprimé" #, 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" msgstr "Discussion non trouvée" @@ -376,8 +376,8 @@ msgid "Event id not found" msgstr "ID de l'événement non trouvé" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" 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" #, 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" msgstr "Utilisateur·ice non trouvé·e" @@ -573,7 +573,7 @@ msgid "You cannot delete this comment" msgstr "Vous ne pouvez pas supprimer ce commentaire" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" 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" #, 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" 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" #, 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" 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." #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "Billet non trouvé" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "Paramètres fournis invalides" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "Identifiants invalides" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "Réinitialiser votre mot de passe pour vous connecter" #, 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" msgstr "Ressource non trouvée" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "Quelque chose s'est mal passé" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "Ressource inconnue" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "Vous n'avez pas la permission de faire ceci" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "Vous ne pouvez pas éditer cet événement." #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" 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." #, 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" 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 "" diff --git a/priv/gettext/gl/LC_MESSAGES/activity.po b/priv/gettext/gl/LC_MESSAGES/activity.po index cfc98f2d7..8544daf55 100644 --- a/priv/gettext/gl/LC_MESSAGES/activity.po +++ b/priv/gettext/gl/LC_MESSAGES/activity.po @@ -302,17 +302,17 @@ msgstr "" msgid "The group %{group} was updated by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "" diff --git a/priv/gettext/gl/LC_MESSAGES/default.po b/priv/gettext/gl/LC_MESSAGES/default.po index 8963b47bf..f8d9cc551 100644 --- a/priv/gettext/gl/LC_MESSAGES/default.po +++ b/priv/gettext/gl/LC_MESSAGES/default.po @@ -127,7 +127,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "Foi rexeitada a túa participación no evento %{title}" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "Actualizouse o evento %{title}" @@ -352,12 +352,12 @@ msgid "What information do we collect?" msgstr "Que información recollemos?" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "Mobilizon en %{instance}: confirma o enderezo de email" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "Mobilizon en %{instance}: email cambiado" @@ -1699,3 +1699,13 @@ msgstr "" #: lib/service/export/feed.ex:73 msgid "Public feed for %{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 "" diff --git a/priv/gettext/gl/LC_MESSAGES/errors.po b/priv/gettext/gl/LC_MESSAGES/errors.po index ba0b79118..1cac20dec 100644 --- a/priv/gettext/gl/LC_MESSAGES/errors.po +++ b/priv/gettext/gl/LC_MESSAGES/errors.po @@ -115,7 +115,7 @@ msgid "Error while saving user settings" msgstr "Erro ó gardar os axustes de usuaria" #, 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 msgid "Group not found" msgstr "Grupo non atopado" @@ -355,7 +355,7 @@ msgid "Comment is already deleted" msgstr "O comentario xa foi eliminado" #, 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" msgstr "Non se atopa a conversa" @@ -375,8 +375,8 @@ msgid "Event id not found" msgstr "Non se atopou o ID do evento" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "Evento non atopado" @@ -504,7 +504,7 @@ msgid "Token is not a valid UUID" msgstr "O token non é un UUID válido" #, 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" msgstr "Usuaria non atopada" @@ -573,7 +573,7 @@ msgid "You cannot delete this comment" msgstr "Non podes eliminar este comentario" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" 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" #, 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" 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" #, 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" 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." #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "Non se atopa a publicación" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "Argumentos proporcionados non válidos" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "Credenciais non válidas" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "Restablece o teu contrasinal para conectar" #, 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" msgstr "Recurso non atopado" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "Algo foi mal" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "Recurso descoñecido" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "Non tes permiso para facer isto" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" msgstr "Tes que estar conectada" @@ -792,12 +792,12 @@ msgid "Profile is not administrator for the group" msgstr "O perfil non é administrador do grupo" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "Non podes editar este evento." #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" 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." #, 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" 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 "" diff --git a/priv/gettext/hu/LC_MESSAGES/activity.po b/priv/gettext/hu/LC_MESSAGES/activity.po index f31008b2f..d2abb0a32 100644 --- a/priv/gettext/hu/LC_MESSAGES/activity.po +++ b/priv/gettext/hu/LC_MESSAGES/activity.po @@ -302,17 +302,17 @@ msgstr "" msgid "The group %{group} was updated by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "" diff --git a/priv/gettext/hu/LC_MESSAGES/default.po b/priv/gettext/hu/LC_MESSAGES/default.po index 8c8cbeb37..25968212d 100644 --- a/priv/gettext/hu/LC_MESSAGES/default.po +++ b/priv/gettext/hu/LC_MESSAGES/default.po @@ -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" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" 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?" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "Mobilizon itt: %{instance}: erősítse meg az e-mail-címét" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "Mobilizon itt: %{instance}: e-mail-cím megváltozott" @@ -1456,3 +1456,13 @@ msgstr "" #: lib/service/export/feed.ex:73 msgid "Public feed for %{instance}" 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 "" diff --git a/priv/gettext/hu/LC_MESSAGES/errors.po b/priv/gettext/hu/LC_MESSAGES/errors.po index e815cb031..4fd092eb1 100644 --- a/priv/gettext/hu/LC_MESSAGES/errors.po +++ b/priv/gettext/hu/LC_MESSAGES/errors.po @@ -131,7 +131,7 @@ msgid "Error while saving user settings" msgstr "Hiba a felhasználói beállítások mentésekor" #, 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 msgid "Group not found" 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" #, 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" 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ó" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" 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" #, 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" 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" 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" #, 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" 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" #, 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" 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." #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "Nem található a hozzászólás" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "Érvénytelen argumentumok lettek átadva" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "Érvénytelen hitelesítési adatok" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "Állítsa vissza a jelszavát a bejelentkezéshez" #, 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" msgstr "Nem található az erőforrás" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "Valami elromlott" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "Ismeretlen erőforrás" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "Nincs jogosultsága, hogy ezt tegye" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "Nem tudja szerkeszteni ezt az eseményt." #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" 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." #, 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" 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 "" diff --git a/priv/gettext/id/LC_MESSAGES/activity.po b/priv/gettext/id/LC_MESSAGES/activity.po index d07f74b29..f781c9b44 100644 --- a/priv/gettext/id/LC_MESSAGES/activity.po +++ b/priv/gettext/id/LC_MESSAGES/activity.po @@ -23,306 +23,306 @@ msgstr "" ## Run "mix gettext.extract" to bring this file up to ## date. Leave "msgstr"s empty as changing them here as no ## effect: edit them in PO (.po) files instead. +#, elixir-format #: lib/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 -#, elixir-format msgid "%{member} accepted the invitation to join the group." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{member} rejected the invitation to join the group." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{member} requested to join the group." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{member} was invited by %{profile}." msgstr "%{member} diundang oleh %{profile}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} added the member %{member}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} archived the discussion %{discussion}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} created the discussion %{discussion}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} created the folder %{resource}." msgstr "" +#, elixir-format #: lib/web/templates/email/activity/_group_activity_item.html.eex:4 #: lib/web/templates/email/activity/_group_activity_item.text.eex:1 -#, elixir-format msgid "%{profile} created the group %{group}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} created the resource %{resource}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} deleted the discussion %{discussion}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} deleted the resource %{resource}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} excluded member %{member}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} moved the resource %{resource}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} quit the group." msgstr "%{profile} keluar dari kelompok." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} renamed the discussion %{discussion}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} replied to the discussion %{discussion}." msgstr "" +#, elixir-format #: lib/web/templates/email/activity/_group_activity_item.html.eex:19 #: lib/web/templates/email/activity/_group_activity_item.text.eex:7 -#, elixir-format msgid "%{profile} updated the group %{group}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} updated the member %{member}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "The event %{event} was created by %{profile}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "The event %{event} was deleted by %{profile}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "The event %{event} was updated by %{profile}." msgstr "" +#, elixir-format #: lib/web/templates/email/activity/_post_activity_item.html.eex:4 #: lib/web/templates/email/activity/_post_activity_item.text.eex:1 -#, elixir-format msgid "The post %{post} was created by %{profile}." msgstr "" +#, elixir-format #: lib/web/templates/email/activity/_post_activity_item.html.eex:34 #: lib/web/templates/email/activity/_post_activity_item.text.eex:13 -#, elixir-format msgid "The post %{post} was deleted by %{profile}." msgstr "" +#, elixir-format #: lib/web/templates/email/activity/_post_activity_item.html.eex:19 #: lib/web/templates/email/activity/_post_activity_item.text.eex:7 -#, elixir-format msgid "The post %{post} was updated by %{profile}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{member} joined the group." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} posted a comment on the event %{event}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} replied to a comment on the event %{event}." msgstr "" -#: lib/web/templates/email/email_direct_activity.text.eex:27 #, elixir-format +#: lib/web/templates/email/email_direct_activity.text.eex:27 msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings." msgstr "" +#, elixir-format #: lib/web/templates/email/email_direct_activity.html.eex:135 #: lib/web/templates/email/email_direct_activity.text.eex:23 -#, elixir-format msgid "View one more activity" msgid_plural "View %{count} more activities" msgstr[0] "" +#, elixir-format #: 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 -#, elixir-format msgid "There has been an activity!" msgid_plural "There has been some activity!" msgstr[0] "" -#: lib/service/activity/renderer/renderer.ex:38 #, elixir-format +#: lib/service/activity/renderer/renderer.ex:38 msgid "Activity on %{instance}" msgstr "" +#, elixir-format #: 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/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}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} mentionned you in a comment under event %{event}." msgstr "" -#: lib/service/activity/renderer/discussion.ex:45 #, elixir-format +#: lib/service/activity/renderer/discussion.ex:45 msgid "%{profile} mentionned you in the discussion %{discussion}." msgstr "" -#: lib/web/templates/email/email_direct_activity.html.eex:155 #, 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}." msgstr "" +#, elixir-format #: lib/web/templates/email/email_direct_activity.html.eex:42 #: lib/web/templates/email/email_direct_activity.text.eex:5 -#, elixir-format msgid "Here's your weekly activity recap" msgstr "" -#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140 #, elixir-format +#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140 msgid "Activity notification for %{instance}" msgstr "" -#: lib/web/email/activity.ex:126 #, elixir-format +#: lib/web/email/activity.ex:126 msgid "Daily activity recap for %{instance}" msgstr "" +#, elixir-format #: lib/web/templates/email/email_direct_activity.html.eex:40 #: lib/web/templates/email/email_direct_activity.text.eex:4 -#, elixir-format msgid "Here's your daily activity recap" msgstr "" -#: lib/web/email/activity.ex:133 #, elixir-format +#: lib/web/email/activity.ex:133 msgid "Weekly activity recap for %{instance}" msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} has posted a new comment under your event %{event}." msgstr "" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} has posted a new reply under your event %{event}." msgstr "" -#: lib/web/email/activity.ex:46 #, elixir-format +#: lib/web/email/activity.ex:46 msgid "Announcement for your event %{event}" msgstr "" -#: lib/service/activity/renderer/group.ex:23 #, elixir-format +#: lib/service/activity/renderer/group.ex:23 msgid "The group %{group} was updated by %{profile}." msgstr "" -#: lib/service/activity/renderer/post.ex:47 #, elixir-format +#: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "" -#: lib/service/activity/renderer/post.ex:31 #, elixir-format +#: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "" -#: lib/service/activity/renderer/post.ex:39 #, elixir-format +#: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "" diff --git a/priv/gettext/id/LC_MESSAGES/default.po b/priv/gettext/id/LC_MESSAGES/default.po index 51c5d5e36..8bb062ecc 100644 --- a/priv/gettext/id/LC_MESSAGES/default.po +++ b/priv/gettext/id/LC_MESSAGES/default.po @@ -14,256 +14,256 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.6.2\n" -#: lib/web/templates/email/password_reset.html.eex:48 #, elixir-format +#: lib/web/templates/email/password_reset.html.eex:48 msgid "If you didn't request this, please ignore this email. Your password won't change until you access the link below and create a new one." msgstr "" "Jika Anda tidak meminta ini, harap abaikan surel ini. Kata sandi Anda tidak " "akan berubah sampai Anda mengakses tautan di bawah dan membuat sandi yang " "baru." -#: lib/web/templates/email/report.html.eex:74 #, elixir-format +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "%{title} oleh %{creator}" -#: lib/web/templates/email/registration_confirmation.html.eex:58 #, elixir-format +#: lib/web/templates/email/registration_confirmation.html.eex:58 msgid "Activate my account" msgstr "Aktifkan akun saya" +#, elixir-format #: lib/web/templates/email/email.html.eex:118 #: lib/web/templates/email/email.text.eex:9 -#, elixir-format, fuzzy msgid "Ask the community on Framacolibri" msgstr "Bertanya ke komunitas di Framacolibri" -#: lib/web/templates/email/report.text.eex:15 #, elixir-format +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "Komentar" +#, elixir-format #: lib/web/templates/email/report.html.eex:72 #: lib/web/templates/email/report.text.eex:11 -#, elixir-format msgid "Event" msgstr "Acara" -#: lib/web/email/user.ex:48 #, elixir-format +#: lib/web/email/user.ex:48 msgid "Instructions to reset your password on %{instance}" msgstr "" -#: lib/web/templates/email/report.text.eex:21 #, elixir-format +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "Alasan" -#: lib/web/templates/email/password_reset.html.eex:61 #, elixir-format +#: lib/web/templates/email/password_reset.html.eex:61 msgid "Reset Password" msgstr "" -#: lib/web/templates/email/password_reset.html.eex:41 #, elixir-format +#: lib/web/templates/email/password_reset.html.eex:41 msgid "Resetting your password is easy. Just press the button below and follow the instructions. We'll have you up and running in no time." msgstr "" -#: lib/web/email/user.ex:28 #, elixir-format +#: lib/web/email/user.ex:28 msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "Instruksi untuk mengkonfirmasi akun Mobilizon Anda pada %{instance}" -#: lib/web/email/admin.ex:24 #, elixir-format +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "" +#, elixir-format #: lib/web/templates/email/before_event_notification.html.eex:51 #: lib/web/templates/email/before_event_notification.text.eex:4 -#, elixir-format msgid "Go to event page" msgstr "Pergi ke halaman acara" -#: lib/web/templates/email/report.text.eex:1 #, elixir-format +#: lib/web/templates/email/report.text.eex:1 msgid "New report from %{reporter} on %{instance}" msgstr "" -#: lib/web/templates/email/event_participation_approved.text.eex:1 #, elixir-format +#: lib/web/templates/email/event_participation_approved.text.eex:1 msgid "Participation approved" msgstr "" +#, elixir-format #: lib/web/templates/email/password_reset.html.eex:13 #: lib/web/templates/email/password_reset.text.eex:1 -#, elixir-format msgid "Password reset" msgstr "" -#: lib/web/templates/email/password_reset.text.eex:7 #, elixir-format +#: lib/web/templates/email/password_reset.text.eex:7 msgid "Resetting your password is easy. Just click the link below and follow the instructions. We'll have you up and running in no time." msgstr "" -#: lib/web/templates/email/registration_confirmation.text.eex:5 #, elixir-format +#: lib/web/templates/email/registration_confirmation.text.eex:5 msgid "You created an account on %{host} with this email address. You are one click away from activating it. If this wasn't you, please ignore this email." msgstr "" -#: lib/web/email/participation.ex:112 #, elixir-format +#: lib/web/email/participation.ex:112 msgid "Your participation to event %{title} has been approved" msgstr "Keikutsertaan Anda pada acara %{title} telah diterima" -#: lib/web/email/participation.ex:70 #, elixir-format +#: lib/web/email/participation.ex:70 msgid "Your participation to event %{title} has been rejected" msgstr "Keikutsertaan Anda pada acara %{title} telah ditolak" -#: lib/web/email/event.ex:37 #, elixir-format +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "Acara %{title} telah diperbarui" -#: lib/web/templates/email/event_updated.text.eex:15 #, elixir-format +#: lib/web/templates/email/event_updated.text.eex:15 msgid "New title: %{title}" msgstr "Judul baru: %{title}" -#: lib/web/templates/email/password_reset.text.eex:5 #, elixir-format +#: lib/web/templates/email/password_reset.text.eex:5 msgid "You requested a new password for your account on %{instance}." msgstr "" -#: lib/web/templates/email/email.html.eex:86 #, elixir-format +#: lib/web/templates/email/email.html.eex:86 msgid "Warning" msgstr "Peringatan" -#: lib/web/email/participation.ex:135 #, elixir-format +#: lib/web/email/participation.ex:135 msgid "Confirm your participation to event %{title}" msgstr "Konfirmasi keikutsertaan Anda pada acara %{title}" -#: lib/web/templates/api/privacy.html.eex:75 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:75 msgctxt "terms" msgid "An internal ID for your current selected identity" msgstr "" -#: lib/web/templates/api/privacy.html.eex:74 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:74 msgctxt "terms" msgid "An internal user ID" msgstr "" -#: lib/web/templates/api/privacy.html.eex:37 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:37 msgctxt "terms" msgid "Any of the information we collect from you may be used in the following ways:" msgstr "" -#: lib/web/templates/api/privacy.html.eex:9 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:9 msgctxt "terms" msgid "Basic account information" msgstr "Informasi akun dasar" -#: lib/web/templates/api/privacy.html.eex:25 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:25 msgctxt "terms" msgid "Do not share any dangerous information over Mobilizon." msgstr "Dilarang membagikan informasi berbahaya melalui Mobilizon." -#: lib/web/templates/api/privacy.html.eex:90 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:90 msgctxt "terms" msgid "Do we disclose any information to outside parties?" msgstr "Apakah kami mengungkapkan suatu informasi ke pihak luar?" -#: lib/web/templates/api/privacy.html.eex:68 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:68 msgctxt "terms" msgid "Do we use cookies?" msgstr "Apakah kami menggunakan kuki?" -#: lib/web/templates/api/privacy.html.eex:51 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:51 msgctxt "terms" msgid "How do we protect your information?" msgstr "Bagaimana cara kami melindungi informasi Anda?" -#: lib/web/templates/api/privacy.html.eex:29 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:29 msgctxt "terms" msgid "IPs and other metadata" msgstr "IP dan metadata lain" -#: lib/web/templates/api/privacy.html.eex:17 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:17 msgctxt "terms" msgid "Published events and comments" msgstr "" -#: lib/web/templates/api/privacy.html.eex:64 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:64 msgctxt "terms" msgid "Retain the IP addresses associated with registered users no more than 12 months." msgstr "" -#: lib/web/templates/api/privacy.html.eex:76 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:76 msgctxt "terms" msgid "Tokens to authenticate you" msgstr "Token untuk mengontentikasi Anda" -#: lib/web/templates/api/privacy.html.eex:31 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:31 msgctxt "terms" msgid "We also may retain server logs which include the IP address of every request to our server." msgstr "" "Kami juga akan menyimpan log server yang mengandung alamat IP dari setiap " "permintaan (request) ke server kami." -#: lib/web/templates/api/privacy.html.eex:70 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:70 msgctxt "terms" msgid "We store the following information on your device when you connect:" msgstr "" -#: lib/web/templates/api/privacy.html.eex:58 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:58 msgctxt "terms" msgid "We will make a good faith effort to:" msgstr "" -#: lib/web/templates/api/privacy.html.eex:35 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:35 msgctxt "terms" msgid "What do we use your information for?" msgstr "Untuk apa kami menggunakan informasi Anda?" -#: lib/web/templates/api/privacy.html.eex:57 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:57 msgctxt "terms" msgid "What is our data retention policy?" msgstr "" -#: lib/web/templates/api/privacy.html.eex:67 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:67 msgctxt "terms" msgid "You may irreversibly delete your account at any time." msgstr "" -#: lib/web/templates/api/privacy.html.eex:115 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:115 msgctxt "terms" msgid "Changes to our Privacy Policy" msgstr "Perubahan pada Kebijakan Privasi kami" -#: lib/web/templates/api/privacy.html.eex:106 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:106 msgctxt "terms" msgid "If this server is in the EU or the EEA: Our site, products and services are all directed to people who are at least 16 years old. If you are under the age of 16, per the requirements of the GDPR (General Data Protection Regulation) do not use this site." msgstr "" @@ -273,8 +273,8 @@ msgstr "" "\"https://en.wikipedia.org/wiki/General_Data_Protection_Regulation\">General " "Data Protection Regulation) jangan gunakan situs ini." -#: lib/web/templates/api/privacy.html.eex:109 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:109 msgctxt "terms" msgid "If this server is in the USA: Our site, products and services are all directed to people who are at least 13 years old. If you are under the age of 13, per the requirements of COPPA (Children's Online Privacy Protection Act) do not use this site." msgstr "" @@ -284,361 +284,361 @@ msgstr "" "://en.wikipedia.org/wiki/Children%27s_Online_Privacy_Protection_Act\"" ">Children's Online Privacy Protection Act) jangan gunakan situs ini." -#: lib/web/templates/api/privacy.html.eex:117 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:117 msgctxt "terms" msgid "If we decide to change our privacy policy, we will post those changes on this page." msgstr "" "Jika kami memutuskan untuk mengubah kebijakan privasi kami, kami akan " "memposting perubahan tersebut di halaman ini." -#: lib/web/templates/api/privacy.html.eex:112 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:112 msgctxt "terms" msgid "Law requirements can be different if this server is in another jurisdiction." msgstr "" -#: lib/web/templates/api/privacy.html.eex:103 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:103 msgctxt "terms" msgid "Site usage by children" msgstr "Penggunaan situs oleh anak-anak" -#: lib/web/templates/api/privacy.html.eex:47 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:47 msgctxt "terms" msgid "The email address you provide may be used to send you information, updates and notifications about other people\n interacting with your content or sending you messages and to respond to inquiries, and/or other requests or\n questions." msgstr "" -#: lib/web/templates/api/privacy.html.eex:45 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:45 msgctxt "terms" msgid "To aid moderation of the community, for example comparing your IP address with other known ones to determine ban\n evasion or other violations." msgstr "" -#: lib/web/templates/api/privacy.html.eex:43 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:43 msgctxt "terms" msgid "To provide the core functionality of Mobilizon. Depending on this instance's policy you may only be able to\n interact with other people's content and post your own content if you are logged in." msgstr "" -#: lib/web/templates/api/privacy.html.eex:6 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:6 msgctxt "terms" msgid "What information do we collect?" msgstr "Informasi apa yang kami kumpulkan?" -#: lib/web/email/user.ex:176 #, elixir-format +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "Mobilizon pada %{instance}: konfirmasi alamat surel Anda" -#: lib/web/email/user.ex:152 #, elixir-format +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "Mobilizon pada %{instance}: surel diubah" -#: lib/web/email/notification.ex:47 #, elixir-format +#: lib/web/email/notification.ex:47 msgid "One event planned today" msgid_plural "%{nb_events} events planned today" msgstr[0] "%{nb_events} acara direncanakan hari ini" +#, elixir-format #: lib/web/templates/email/on_day_notification.html.eex:38 #: lib/web/templates/email/on_day_notification.text.eex:4 -#, elixir-format msgid "You have one event today:" msgid_plural "You have %{total} events today:" msgstr[0] "Anda memiliki %{total} acara hari ini:" -#: lib/web/templates/email/group_invite.text.eex:3 #, elixir-format +#: lib/web/templates/email/group_invite.text.eex:3 msgid "%{inviter} just invited you to join their group %{group}" msgstr "" +#, elixir-format #: lib/web/templates/email/group_invite.html.eex:13 #: lib/web/templates/email/group_invite.text.eex:1 -#, elixir-format msgid "Come along!" msgstr "" -#: lib/web/email/notification.ex:24 #, elixir-format +#: lib/web/email/notification.ex:24 msgid "Don't forget to go to %{title}" msgstr "Jangan lupa untuk pergi ke %{title}" +#, elixir-format #: lib/web/templates/email/before_event_notification.html.eex:38 #: lib/web/templates/email/before_event_notification.text.eex:3 -#, elixir-format msgid "Get ready for %{title}" msgstr "Bersiaplah untuk %{title}" -#: lib/web/templates/email/group_invite.html.eex:59 #, elixir-format +#: lib/web/templates/email/group_invite.html.eex:59 msgid "See my groups" msgstr "Lihat kelompok-kelompok saya" +#, elixir-format #: lib/web/templates/email/group_invite.html.eex:45 #: lib/web/templates/email/group_invite.text.eex:5 -#, elixir-format msgid "To accept this invitation, head over to your groups." msgstr "" -#: lib/web/templates/email/before_event_notification.text.eex:5 #, elixir-format +#: lib/web/templates/email/before_event_notification.text.eex:5 msgid "View the event on: %{link}" msgstr "Lihat acara di: %{link}" -#: lib/web/email/group.ex:33 #, elixir-format +#: lib/web/email/group.ex:33 msgid "You have been invited by %{inviter} to join group %{group}" msgstr "" "Anda telah diundang oleh %{inviter} untuk bergabung ke kelompok %{group}" -#: lib/web/email/notification.ex:71 #, elixir-format +#: lib/web/email/notification.ex:71 msgid "One event planned this week" msgid_plural "%{nb_events} events planned this week" msgstr[0] "%{nb_events} acara direncanakan pekan ini" -#: lib/web/email/notification.ex:93 #, elixir-format +#: lib/web/email/notification.ex:93 msgid "One participation request for event %{title} to process" msgid_plural "%{number_participation_requests} participation requests for event %{title} to process" msgstr[0] "" +#, elixir-format #: lib/web/templates/email/notification_each_week.html.eex:38 #: lib/web/templates/email/notification_each_week.text.eex:3 -#, elixir-format msgid "You have one event this week:" msgid_plural "You have %{total} events this week:" msgstr[0] "Anda memiliki %{total} acara pekan ini:" -#: lib/service/metadata/utils.ex:53 #, elixir-format +#: lib/service/metadata/utils.ex:53 msgid "The event organizer didn't add any description." msgstr "Penyelenggara acara tidak menambahkan keterangan." -#: lib/web/templates/api/privacy.html.eex:54 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:54 msgctxt "terms" msgid "We implement a variety of security measures to maintain the safety of your personal information when you enter, submit, or access your personal information. Among other things, your browser session, as well as the traffic between your applications and the API, are secured with SSL/TLS, and your password is hashed using a strong one-way algorithm." msgstr "" -#: lib/web/templates/api/privacy.html.eex:94 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:94 msgctxt "terms" msgid "No. We do not sell, trade, or otherwise transfer to outside parties your personally identifiable information. This does not include trusted third parties who assist us in operating our site, conducting our business, or servicing you, so long as those parties agree to keep this information confidential. We may also release your information when we believe release is appropriate to comply with the law, enforce our site policies, or protect ours or others rights, property, or safety." msgstr "" -#: lib/web/templates/api/terms.html.eex:23 #, elixir-format +#: lib/web/templates/api/terms.html.eex:23 msgctxt "terms" msgid "Accepting these Terms" msgstr "Menerima Persyaratan ini" -#: lib/web/templates/api/terms.html.eex:27 #, elixir-format +#: lib/web/templates/api/terms.html.eex:27 msgctxt "terms" msgid "Changes to these Terms" msgstr "Perubahan pada Persyaratan ini" -#: lib/web/templates/api/terms.html.eex:85 #, elixir-format +#: lib/web/templates/api/terms.html.eex:85 msgctxt "terms" msgid "A lot of the content on the Service is from you and others, and we don't review, verify or authenticate it, and it may include inaccuracies or false information. We make no representations, warranties, or guarantees relating to the quality, suitability, truth, accuracy or completeness of any content contained in the Service. You acknowledge sole responsibility for and assume all risk arising from your use of or reliance on any content." msgstr "" -#: lib/web/templates/api/terms.html.eex:60 #, elixir-format +#: lib/web/templates/api/terms.html.eex:60 msgctxt "terms" msgid "Also, you agree that you will not do any of the following in connection with the Service or other users:" msgstr "" -#: lib/web/templates/api/terms.html.eex:65 #, elixir-format +#: lib/web/templates/api/terms.html.eex:65 msgctxt "terms" msgid "Circumvent or attempt to circumvent any filtering, security measures, rate limits or other features designed to protect the Service, users of the Service, or third parties." msgstr "" -#: lib/web/templates/api/terms.html.eex:64 #, elixir-format +#: lib/web/templates/api/terms.html.eex:64 msgctxt "terms" msgid "Collect any personal information about other users, or intimidate, threaten, stalk or otherwise harass other users of the Service;" msgstr "" -#: lib/web/templates/api/terms.html.eex:55 #, elixir-format +#: lib/web/templates/api/terms.html.eex:55 msgctxt "terms" msgid "Content that is illegal or unlawful, that would otherwise create liability;" msgstr "" -#: lib/web/templates/api/terms.html.eex:56 #, elixir-format +#: lib/web/templates/api/terms.html.eex:56 msgctxt "terms" msgid "Content that may infringe or violate any patent, trademark, trade secret, copyright, right of privacy, right of publicity or other intellectual or other right of any party;" msgstr "" -#: lib/web/templates/api/terms.html.eex:42 #, elixir-format +#: lib/web/templates/api/terms.html.eex:42 msgctxt "terms" msgid "Creating Accounts" msgstr "" -#: lib/web/templates/api/terms.html.eex:89 #, elixir-format +#: lib/web/templates/api/terms.html.eex:89 msgctxt "terms" msgid "Entire Agreement" msgstr "" -#: lib/web/templates/api/terms.html.eex:92 #, elixir-format +#: lib/web/templates/api/terms.html.eex:92 msgctxt "terms" msgid "Feedback" msgstr "" -#: lib/web/templates/api/terms.html.eex:83 #, elixir-format +#: lib/web/templates/api/terms.html.eex:83 msgctxt "terms" msgid "Hyperlinks and Third Party Content" msgstr "" -#: lib/web/templates/api/terms.html.eex:88 #, elixir-format +#: lib/web/templates/api/terms.html.eex:88 msgctxt "terms" msgid "If you breach any of these Terms, we have the right to suspend or disable your access to or use of the Service." msgstr "" -#: lib/web/templates/api/terms.html.eex:63 #, elixir-format +#: lib/web/templates/api/terms.html.eex:63 msgctxt "terms" msgid "Impersonate or post on behalf of any person or entity or otherwise misrepresent your affiliation with a person or entity;" msgstr "" -#: lib/web/templates/api/terms.html.eex:48 #, elixir-format +#: lib/web/templates/api/terms.html.eex:48 msgctxt "terms" msgid "Our Service allows you and other users to post, link and otherwise make available content. You are responsible for the content that you make available to the Service, including its legality, reliability, and appropriateness." msgstr "" -#: lib/web/templates/api/terms.html.eex:39 #, elixir-format +#: lib/web/templates/api/terms.html.eex:39 msgctxt "terms" msgid "Privacy Policy" msgstr "Kebijakan Privasi" -#: lib/web/templates/api/terms.html.eex:95 #, elixir-format +#: lib/web/templates/api/terms.html.eex:95 msgctxt "terms" msgid "Questions & Contact Information" msgstr "" -#: lib/web/templates/api/terms.html.eex:87 #, elixir-format +#: lib/web/templates/api/terms.html.eex:87 msgctxt "terms" msgid "Termination" msgstr "" -#: lib/web/templates/api/terms.html.eex:62 #, elixir-format +#: lib/web/templates/api/terms.html.eex:62 msgctxt "terms" msgid "Use the Service in any manner that could interfere with, disrupt, negatively affect or inhibit other users from fully enjoying the Service or that could damage, disable, overburden or impair the functioning of the Service;" msgstr "" -#: lib/web/templates/api/terms.html.eex:47 #, elixir-format +#: lib/web/templates/api/terms.html.eex:47 msgctxt "terms" msgid "Your Content & Conduct" msgstr "" -#: lib/web/templates/api/terms.html.eex:84 #, elixir-format +#: lib/web/templates/api/terms.html.eex:84 msgctxt "terms" msgid "%{instance_name} makes no claim or representation regarding, and accepts no responsibility for third party websites accessible by hyperlink from the Service or websites linking to the Service. When you leave the Service, you should be aware that these Terms and our policies no longer govern. The inclusion of any link does not imply endorsement by %{instance_name} of the site. Use of any such linked website is at the user's own risk." msgstr "" -#: lib/web/templates/api/terms.html.eex:68 #, elixir-format +#: lib/web/templates/api/terms.html.eex:68 msgctxt "terms" msgid "Finally, your use of the Service is also subject to acceptance of the instance's own specific rules regarding the code of conduct and moderation rules. Breaking those rules may also result in your account being disabled or suspended." msgstr "" -#: lib/web/templates/api/terms.html.eex:81 #, elixir-format +#: lib/web/templates/api/terms.html.eex:81 msgctxt "terms" msgid "For full details about the Mobilizon software see here." msgstr "" "Untuk keterangan lebih lanjut tentang perangkat lunak Mobilizon lihat di sini." -#: lib/web/templates/api/terms.html.eex:18 #, elixir-format +#: lib/web/templates/api/terms.html.eex:18 msgctxt "terms" msgid "Here are the important things you need to know about accessing and using the %{instance_name} (%{instance_url}) website and service (collectively, \"Service\"). These are our terms of service (\"Terms\"). Please read them carefully." msgstr "" -#: lib/web/templates/api/terms.html.eex:33 #, elixir-format +#: lib/web/templates/api/terms.html.eex:33 msgctxt "terms" msgid "If we make major changes, we will notify our users in a clear and prominent manner. Minor changes may only be highlighted in the footer of our website. It is your responsibility to check the website regularly for changes to these Terms." msgstr "" -#: lib/web/templates/api/terms.html.eex:53 #, elixir-format +#: lib/web/templates/api/terms.html.eex:53 msgctxt "terms" msgid "In order to make %{instance_name} a great place for all of us, please do not post, link and otherwise make available on or through the Service any of the following:" msgstr "" -#: lib/web/templates/api/terms.html.eex:57 #, elixir-format +#: lib/web/templates/api/terms.html.eex:57 msgctxt "terms" msgid "Private information of any third party (e.g., addresses, phone numbers, email addresses, Social Security numbers and credit card numbers); and" msgstr "" -#: lib/web/templates/api/terms.html.eex:52 #, elixir-format +#: lib/web/templates/api/terms.html.eex:52 msgctxt "terms" msgid "Since Mobilizon is a distributed network, it is possible, depending on the visibility rules set to your content, that your content has been distributed to other Mobilizon instances. When you delete your content, we will request those other instances to also delete the content. Our responsibility on the content being deleted from those other instances ends here. If for some reason, some other instance does not delete the content, we cannot be held responsible." msgstr "" -#: lib/web/templates/api/terms.html.eex:90 #, elixir-format +#: lib/web/templates/api/terms.html.eex:90 msgctxt "terms" msgid "These Terms constitute the entire agreement between you and %{instance_name} regarding the use of the Service, superseding any prior agreements between you and %{instance_name} relating to your use of the Service." msgstr "" -#: lib/web/templates/api/terms.html.eex:80 #, elixir-format +#: lib/web/templates/api/terms.html.eex:80 msgctxt "terms" msgid "This Service runs on a Mobilizon instance. This source code is licensed under an AGPLv3 license which means you are allowed to and even encouraged to take the source code, modify it and use it." msgstr "" -#: lib/web/templates/api/terms.html.eex:58 #, elixir-format +#: lib/web/templates/api/terms.html.eex:58 msgctxt "terms" msgid "Viruses, corrupted data or other harmful, disruptive or destructive files or code." msgstr "" -#: lib/web/templates/api/terms.html.eex:51 #, elixir-format +#: lib/web/templates/api/terms.html.eex:51 msgctxt "terms" msgid "You can remove the content that you posted by deleting it. Once you delete your content, it will not appear on the Service, but copies of your deleted content may remain in our system or backups for some period of time. Web server access logs might also be stored for some time in the system." msgstr "" -#: lib/web/templates/api/terms.html.eex:96 #, elixir-format +#: lib/web/templates/api/terms.html.eex:96 msgctxt "terms" msgid "Questions or comments about the Service may be directed to us at %{contact}" msgstr "" -#: lib/web/templates/api/terms.html.eex:79 #, elixir-format +#: lib/web/templates/api/terms.html.eex:79 msgctxt "terms" msgid "Source code" msgstr "Kode sumber" -#: lib/web/templates/api/terms.html.eex:93 #, elixir-format +#: lib/web/templates/api/terms.html.eex:93 msgctxt "terms" msgid "We love feedback. Please let us know what you think of the Service, these Terms and, in general, %{instance_name}." msgstr "" @@ -646,58 +646,58 @@ msgstr "" "tentang Layanan, dan Persyaratan ini dan, secara umum, " "%{instance_name}." -#: lib/web/templates/api/terms.html.eex:74 #, elixir-format +#: lib/web/templates/api/terms.html.eex:74 msgctxt "terms" msgid "Instance administrators (and community moderators, given the relevant access) are responsible for monitoring and acting on flagged content and other user reports, and have the right and responsibility to remove or edit content that is not aligned to this Instance set of rules, or to suspend, block or ban (temporarily or permanently) any account, community, or instance for breaking these terms, or for other behaviours that they deem inappropriate, threatening, offensive, or harmful." msgstr "" -#: lib/web/templates/api/terms.html.eex:6 #, elixir-format +#: lib/web/templates/api/terms.html.eex:6 msgctxt "terms" msgid "%{instance_name} will not use or transmit or resell your personal data" msgstr "" "%{instance_name} tidak akan mentransmisikan atau menjual ulang data " "pribadi Anda" -#: lib/web/templates/api/terms.html.eex:44 #, elixir-format +#: lib/web/templates/api/terms.html.eex:44 msgctxt "terms" msgid "If you discover or suspect any Service security breaches, please let us know as soon as possible. For security holes in the Mobilizon software itself, please contact its contributors directly." msgstr "" -#: lib/web/templates/api/terms.html.eex:77 #, elixir-format +#: lib/web/templates/api/terms.html.eex:77 msgctxt "terms" msgid "Instance administrators should ensure that every community hosted on the instance is properly moderated according to the defined rules." msgstr "" -#: lib/web/templates/api/terms.html.eex:98 #, elixir-format +#: lib/web/templates/api/terms.html.eex:98 msgctxt "terms" msgid "Originally adapted from the Diaspora* and App.net privacy policies, also licensed under CC BY-SA." msgstr "" -#: lib/web/templates/api/privacy.html.eex:119 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:119 msgctxt "terms" msgid "Originally adapted from the Mastodon and Discourse privacy policies, also licensed under CC BY-SA." msgstr "" -#: lib/web/templates/api/terms.html.eex:3 #, elixir-format +#: lib/web/templates/api/terms.html.eex:3 msgctxt "terms" msgid "Short version" msgstr "Versi pendek" -#: lib/web/templates/api/terms.html.eex:9 #, elixir-format +#: lib/web/templates/api/terms.html.eex:9 msgctxt "terms" msgid "The service is provided without warranties and these terms may change in the future" msgstr "" -#: lib/web/templates/api/privacy.html.eex:118 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:118 msgctxt "terms" msgid "This document is licensed under CC BY-SA. It was last updated June 18, 2020." msgstr "" @@ -705,8 +705,8 @@ msgstr "" "licenses/by-sa/4.0/\">CC BY-SA. Dokumen ini terakhir diperbarui pada 18 " "Juni 2020." -#: lib/web/templates/api/terms.html.eex:97 #, elixir-format +#: lib/web/templates/api/terms.html.eex:97 msgctxt "terms" msgid "This document is licensed under CC BY-SA. It was last updated June 22, 2020." msgstr "" @@ -714,728 +714,738 @@ msgstr "" "licenses/by-sa/4.0/\">CC BY-SA. Dokumen ini terakhir diperbarui pada 22 " "Juni 2020." -#: lib/web/templates/api/terms.html.eex:8 #, elixir-format +#: lib/web/templates/api/terms.html.eex:8 msgctxt "terms" msgid "You must respect other people and %{instance_name}'s rules when using the service" msgstr "" "Anda harus menghormati orang lain dan peraturan %{instance_name} saat " "menggunakan layanan" -#: lib/web/templates/api/terms.html.eex:7 #, elixir-format +#: lib/web/templates/api/terms.html.eex:7 msgctxt "terms" msgid "You must respect the law when using %{instance_name}" msgstr "Anda harus menghormati hukum saat menggunakan %{instance_name}" -#: lib/web/templates/api/terms.html.eex:5 #, elixir-format +#: lib/web/templates/api/terms.html.eex:5 msgctxt "terms" msgid "Your content is yours" msgstr "Konten Anda milik Anda" -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 #, elixir-format +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "Konfirmasi alamat surel saya" +#, elixir-format #: lib/web/templates/email/anonymous_participation_confirmation.html.eex:13 #: lib/web/templates/email/anonymous_participation_confirmation.text.eex:1 -#, elixir-format msgid "Confirm your e-mail" msgstr "Konfirmasi surel Anda" -#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:3 #, elixir-format +#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:3 msgid "Hi there! You just registered to join this event: « %{title} ». Please confirm the e-mail address you provided:" msgstr "" "Hai! Anda baru saja mendaftar untuk bergabung ke acara ini: « %{title} ». " "Harap konfirmasi alamat surel yang Anda berikan:" +#, elixir-format #: lib/web/templates/email/email.html.eex:115 #: lib/web/templates/email/email.text.eex:8 -#, elixir-format msgid "Need help? Is something not working as expected?" msgstr "Butuh bantuan? Ada yang tidak bekerja sesuai ekspektasi?" -#: lib/web/templates/email/registration_confirmation.html.eex:38 #, elixir-format +#: lib/web/templates/email/registration_confirmation.html.eex:38 msgid "You created an account on %{host} with this email address. You are one click away from activating it." msgstr "" -#: lib/web/templates/email/report.html.eex:13 #, elixir-format +#: lib/web/templates/email/report.html.eex:13 msgid "New report on %{instance}" msgstr "Laporan baru di %{instance}" -#: lib/web/templates/email/email_changed_old.html.eex:38 #, elixir-format +#: lib/web/templates/email/email_changed_old.html.eex:38 msgid "The email address for your account on %{host} is being changed to:" msgstr "Alamat surel pada akun Anda di %{host} sedang diubah menjadi:" -#: lib/web/templates/email/password_reset.html.eex:38 #, elixir-format +#: lib/web/templates/email/password_reset.html.eex:38 msgid "You requested a new password for your account on %{instance}." msgstr "" -#: lib/web/templates/email/email.text.eex:5 #, elixir-format +#: lib/web/templates/email/email.text.eex:5 msgid "Please do not use it for real purposes." msgstr "" +#, elixir-format #: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 #: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:11 lib/web/templates/email/on_day_notification.html.eex:70 #: lib/web/templates/email/on_day_notification.text.eex:14 -#, elixir-format msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button." msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button." msgstr[0] "" +#, elixir-format #: lib/web/templates/email/pending_participation_notification.html.eex:38 #: lib/web/templates/email/pending_participation_notification.text.eex:4 -#, elixir-format msgid "You have one pending attendance request to process:" msgid_plural "You have %{number_participation_requests} attendance requests to process:" msgstr[0] "" -#: lib/web/templates/email/email.text.eex:11 #, elixir-format +#: lib/web/templates/email/email.text.eex:11 msgid "%{instance} is powered by Mobilizon." msgstr "%{instance} didukung oleh Mobilizon." -#: lib/web/templates/email/email.html.eex:143 #, elixir-format +#: lib/web/templates/email/email.html.eex:143 msgid "%{instance} is powered by Mobilizon." msgstr "%{instance} didukung oleh Mobilizon." +#, elixir-format #: lib/web/templates/email/pending_participation_notification.html.eex:13 #: lib/web/templates/email/pending_participation_notification.text.eex:1 -#, elixir-format msgid "A request is pending!" msgstr "" +#, elixir-format #: lib/web/templates/email/before_event_notification.html.eex:13 #: lib/web/templates/email/before_event_notification.text.eex:1 -#, elixir-format msgid "An event is upcoming!" msgstr "" +#, elixir-format #: lib/web/templates/email/email_changed_new.html.eex:13 #: lib/web/templates/email/email_changed_new.text.eex:1 -#, elixir-format msgid "Confirm new email" msgstr "Konfirmasi surel baru" -#: lib/web/templates/email/event_updated.html.eex:84 #, elixir-format +#: lib/web/templates/email/event_updated.html.eex:84 msgid "End" msgstr "" -#: lib/web/templates/email/event_updated.text.eex:21 #, elixir-format +#: lib/web/templates/email/event_updated.text.eex:21 msgid "End %{ends_on}" msgstr "" +#, elixir-format #: lib/web/templates/email/event_updated.html.eex:13 #: lib/web/templates/email/event_updated.text.eex:1 -#, elixir-format msgid "Event update!" msgstr "" -#: lib/web/templates/email/report.html.eex:88 #, elixir-format +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "" +#, elixir-format #: lib/web/templates/email/event_participation_approved.html.eex:45 #: lib/web/templates/email/event_participation_approved.text.eex:7 -#, elixir-format msgid "Good news: one of the event organizers just approved your request. Update your calendar, because you're on the guest list now!" msgstr "" +#, elixir-format #: lib/web/templates/email/email_changed_new.html.eex:38 #: lib/web/templates/email/email_changed_new.text.eex:3 -#, elixir-format msgid "Hi there! It seems like you wanted to change the email address linked to your account on %{instance}. If you still wish to do so, please click the button below to confirm the change. You will then be able to log in to %{instance} with this new email address." msgstr "" -#: lib/web/templates/email/email_changed_old.text.eex:3 #, elixir-format +#: lib/web/templates/email/email_changed_old.text.eex:3 msgid "Hi there! Just a quick note to confirm that the email address linked to your account on %{host} has been changed from this one to:" msgstr "" +#, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:62 #: lib/web/templates/email/email_changed_old.text.eex:5 -#, elixir-format msgid "If you did not trigger this change yourself, it is likely that someone has gained access to your %{host} account. Please log in and change your password immediately. If you cannot login, contact the admin on %{host}." msgstr "" -#: lib/web/templates/email/password_reset.text.eex:12 #, elixir-format +#: lib/web/templates/email/password_reset.text.eex:12 msgid "If you didn't trigger the change yourself, please ignore this message. Your password won't be changed until you click the link above." msgstr "" +#, elixir-format #: lib/web/templates/email/anonymous_participation_confirmation.html.eex:70 #: lib/web/templates/email/anonymous_participation_confirmation.text.eex:4 lib/web/templates/email/registration_confirmation.html.eex:45 -#, elixir-format msgid "If you didn't trigger this email, you may safely ignore it." msgstr "" +#, elixir-format #: lib/web/templates/email/before_event_notification.html.eex:63 #: lib/web/templates/email/before_event_notification.text.eex:6 -#, elixir-format msgid "If you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button." msgstr "" +#, elixir-format #: lib/web/templates/email/email.html.eex:144 #: lib/web/templates/email/email.text.eex:11 -#, elixir-format msgid "Learn more about Mobilizon here!" msgstr "Pelajari lebih lanjut tentang Mobilizon di sini!" -#: lib/web/templates/email/event_updated.html.eex:94 #, elixir-format +#: lib/web/templates/email/event_updated.html.eex:94 msgid "Location" msgstr "Lokasi" -#: lib/web/templates/email/event_updated.html.eex:104 #, elixir-format +#: lib/web/templates/email/event_updated.html.eex:104 msgid "Location address was removed" msgstr "" +#, elixir-format #: lib/web/templates/email/pending_participation_notification.html.eex:51 #: lib/web/templates/email/pending_participation_notification.text.eex:6 -#, elixir-format msgid "Manage pending requests" msgstr "" +#, elixir-format #: lib/web/templates/email/registration_confirmation.html.eex:13 #: lib/web/templates/email/registration_confirmation.text.eex:1 -#, elixir-format msgid "Nearly there!" msgstr "Hampir di sana!" +#, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:13 #: lib/web/templates/email/email_changed_old.text.eex:1 -#, elixir-format msgid "New email confirmation" msgstr "Konfirmasi surel baru" -#: lib/web/templates/email/report.html.eex:106 #, elixir-format +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "" -#: lib/web/templates/email/report.html.eex:39 #, elixir-format +#: lib/web/templates/email/report.html.eex:39 msgid "Someone on %{instance} reported the following content for you to analyze:" msgstr "" +#, elixir-format #: lib/web/templates/email/event_participation_rejected.html.eex:13 #: lib/web/templates/email/event_participation_rejected.text.eex:1 -#, elixir-format msgid "Sorry! You're not going." msgstr "Maaf! Anda tidak ikut." -#: lib/web/templates/email/event_updated.html.eex:74 #, elixir-format +#: lib/web/templates/email/event_updated.html.eex:74 msgid "Start" msgstr "" -#: lib/web/templates/email/event_updated.text.eex:18 #, elixir-format +#: lib/web/templates/email/event_updated.text.eex:18 msgid "Start %{begins_on}" msgstr "" -#: lib/web/templates/email/event_updated.text.eex:3 #, elixir-format +#: lib/web/templates/email/event_updated.text.eex:3 msgid "There have been changes for %{title} so we'd thought we'd let you know." msgstr "" "Terjadi perubahan pada %{title} sehingga kami pikir kami harus memberitahu " "Anda." +#, elixir-format #: lib/web/templates/email/event_updated.html.eex:55 #: lib/web/templates/email/event_updated.text.eex:11 -#, elixir-format msgid "This event has been cancelled by its organizers. Sorry!" msgstr "Acara ini sudah dibatalkan oleh para penyelenggaranya. Maaf!" +#, elixir-format #: lib/web/templates/email/event_updated.html.eex:51 #: lib/web/templates/email/event_updated.text.eex:7 -#, elixir-format msgid "This event has been confirmed" msgstr "Acara ini sudah dikonfirmasi" +#, elixir-format #: lib/web/templates/email/event_updated.html.eex:53 #: lib/web/templates/email/event_updated.text.eex:9 -#, elixir-format msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it." msgstr "" +#, elixir-format #: lib/web/templates/email/event_participation_rejected.html.eex:45 #: lib/web/templates/email/event_participation_rejected.text.eex:7 -#, elixir-format msgid "Unfortunately, the organizers rejected your request." msgstr "Sayangnya, para penyelenggara menolak permintaan Anda." -#: lib/web/templates/email/email_changed_new.html.eex:51 #, elixir-format +#: lib/web/templates/email/email_changed_new.html.eex:51 msgid "Verify your email address" msgstr "Verifikasi alamat surel Anda" -#: lib/web/templates/email/report.html.eex:126 #, elixir-format +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "Lihat laporan" -#: lib/web/templates/email/report.text.eex:24 #, elixir-format +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "" +#, elixir-format #: lib/web/templates/email/email_anonymous_activity.html.eex:67 #: lib/web/templates/email/event_participation_approved.html.eex:58 lib/web/templates/email/event_participation_confirmed.html.eex:58 -#, elixir-format msgid "Visit event page" msgstr "Kunjungi halaman acara" -#: lib/web/templates/email/event_updated.html.eex:121 #, elixir-format +#: lib/web/templates/email/event_updated.html.eex:121 msgid "Visit the updated event page" msgstr "Kunjungi halaman acara yang sudah diperbarui" -#: lib/web/templates/email/event_updated.text.eex:23 #, elixir-format +#: lib/web/templates/email/event_updated.text.eex:23 msgid "Visit the updated event page: %{link}" msgstr "Kunjungi halaman acara yang sudah diperbarui: %{link}" +#, elixir-format #: lib/web/templates/email/notification_each_week.html.eex:13 #: lib/web/templates/email/notification_each_week.text.eex:1 -#, elixir-format msgid "What's up this week?" msgstr "Ada apa pekan ini?" +#, elixir-format #: lib/web/templates/email/on_day_notification.html.eex:13 #: lib/web/templates/email/on_day_notification.text.eex:1 -#, elixir-format msgid "What's up today?" msgstr "Ada apa hari ini?" +#, elixir-format #: lib/web/templates/email/event_participation_approved.html.eex:70 #: lib/web/templates/email/event_participation_approved.text.eex:11 lib/web/templates/email/event_participation_confirmed.html.eex:70 #: lib/web/templates/email/event_participation_confirmed.text.eex:6 -#, elixir-format msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button." msgstr "" +#, elixir-format #: lib/web/templates/email/pending_participation_notification.html.eex:64 #: lib/web/templates/email/pending_participation_notification.text.eex:8 -#, elixir-format msgid "You are receiving this email because you chose to get notifications for pending attendance requests to your events. You can disable or change your notification settings in your user account settings under « Notifications »." msgstr "" -#: lib/web/templates/email/event_participation_rejected.text.eex:5 #, elixir-format +#: lib/web/templates/email/event_participation_rejected.text.eex:5 msgid "You issued a request to attend %{title}." msgstr "" +#, elixir-format #: lib/web/templates/email/event_participation_approved.text.eex:5 #: lib/web/templates/email/event_participation_confirmed.text.eex:3 -#, elixir-format msgid "You recently requested to attend %{title}." msgstr "" +#, elixir-format #: lib/web/templates/email/event_participation_approved.html.eex:13 #: lib/web/templates/email/event_participation_confirmed.html.eex:13 lib/web/templates/email/event_participation_confirmed.text.eex:1 -#, elixir-format msgid "You're going!" msgstr "Anda ikut!" +#, elixir-format #: lib/web/templates/email/email_changed_new.html.eex:64 #: lib/web/templates/email/email_changed_new.text.eex:5 -#, elixir-format msgid "If you didn't trigger the change yourself, please ignore this message." msgstr "" -#: lib/web/templates/email/email.html.eex:90 #, elixir-format +#: lib/web/templates/email/email.html.eex:90 msgid "Please do not use it for real purposes." msgstr "" +#, elixir-format #: lib/web/templates/email/group_member_removal.html.eex:45 #: lib/web/templates/email/group_member_removal.text.eex:5 -#, elixir-format msgid "If you feel this is an error, you may contact the group's administrators so that they can add you back." msgstr "" "Jika Anda rasa ini adalah sebuah kesalahan, Anda dipersilakan untuk " "menghubungi administrator kelompok sehingga mereka dapat menambahkan Anda " "kembali." +#, elixir-format #: lib/web/templates/email/group_member_removal.html.eex:13 #: lib/web/templates/email/group_member_removal.text.eex:1 -#, elixir-format msgid "So long, and thanks for the fish!" msgstr "Sampai jumpa, dan terima kasih atas ikannya!" -#: lib/web/email/group.ex:63 #, elixir-format +#: lib/web/email/group.ex:63 msgid "You have been removed from group %{group}" msgstr "Anda telah dikeluarkan dari kelompok %{group}" -#: lib/web/templates/email/group_member_removal.text.eex:3 #, elixir-format +#: lib/web/templates/email/group_member_removal.text.eex:3 msgid "You have been removed from group %{group}. You will not be able to access this group's private content anymore." msgstr "" -#: lib/web/templates/email/group_invite.html.eex:38 #, elixir-format +#: lib/web/templates/email/group_invite.html.eex:38 msgid "%{inviter} just invited you to join their group %{link_start}%{group}%{link_end}" msgstr "" -#: lib/web/templates/email/group_member_removal.html.eex:38 #, elixir-format +#: lib/web/templates/email/group_member_removal.html.eex:38 msgid "You have been removed from group %{link_start}%{group}%{link_end}. You will not be able to access this group's private content anymore." msgstr "" +#, elixir-format #: lib/web/templates/email/group_suspension.html.eex:54 #: lib/web/templates/email/group_suspension.text.eex:7 -#, elixir-format msgid "As this group was located on another instance, it will continue to work for other instances than this one." msgstr "" +#, elixir-format #: lib/web/templates/email/group_suspension.html.eex:46 #: lib/web/templates/email/group_suspension.text.eex:5 -#, elixir-format msgid "As this group was located on this instance, all of it's data has been irretrievably deleted." msgstr "" +#, elixir-format #: lib/web/templates/email/group_deletion.html.eex:38 #: lib/web/templates/email/group_deletion.text.eex:3 -#, elixir-format msgid "The administrator %{author} deleted group %{group}. All of the group's events, discussions, posts and todos have been deleted." msgstr "" +#, elixir-format #: lib/web/templates/email/group_suspension.html.eex:13 #: lib/web/templates/email/group_suspension.text.eex:1 -#, elixir-format msgid "The group %{group} has been suspended on %{instance}!" msgstr "" +#, elixir-format #: lib/web/templates/email/group_deletion.html.eex:13 #: lib/web/templates/email/group_deletion.text.eex:1 -#, elixir-format msgid "The group %{group} was deleted on %{instance}!" msgstr "" +#, elixir-format #: lib/web/templates/email/group_suspension.html.eex:38 #: lib/web/templates/email/group_suspension.text.eex:3 -#, elixir-format msgid "Your instance's moderation team has decided to suspend %{group_name} (%{group_address}). You are no longer a member of this group." msgstr "" -#: lib/web/email/group.ex:136 #, elixir-format +#: lib/web/email/group.ex:136 msgid "The group %{group} has been deleted on %{instance}" msgstr "" -#: lib/web/email/group.ex:97 #, elixir-format +#: lib/web/email/group.ex:97 msgid "The group %{group} has been suspended on %{instance}" msgstr "" -#: lib/web/templates/api/terms.html.eex:24 #, elixir-format +#: lib/web/templates/api/terms.html.eex:24 msgctxt "terms" msgid "By accessing or using the Service, this means you agree to be bound by all the terms below. If these terms are in any way unclear, please let us know by contacting %{contact}." msgstr "" -#: lib/web/templates/api/terms.html.eex:40 #, elixir-format +#: lib/web/templates/api/terms.html.eex:40 msgctxt "terms" msgid "For information about how we collect and use information about users of the Service, please check our privacy policy." msgstr "" -#: lib/web/templates/api/terms.html.eex:36 #, elixir-format +#: lib/web/templates/api/terms.html.eex:36 msgctxt "terms" msgid "If you continue to use the Service after the revised Terms go into effect, you accept the revised Terms." msgstr "" -#: lib/web/templates/api/privacy.html.eex:78 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:78 msgctxt "terms" msgid "If you delete this information, you need to login again." msgstr "" -#: lib/web/templates/api/privacy.html.eex:80 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:80 msgctxt "terms" msgid "If you're not connected, we don't store any information on your device, unless you participate in an event anonymously. In this specific case we store the hash of an unique identifier for the event and participation status in your browser so that we may display participation status. Deleting this information will only stop displaying participation status in your browser." msgstr "" -#: lib/web/templates/api/privacy.html.eex:87 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:87 msgctxt "terms" msgid "Note: This information is stored in your localStorage and not your cookies." msgstr "" -#: lib/web/templates/api/terms.html.eex:71 #, elixir-format +#: lib/web/templates/api/terms.html.eex:71 msgctxt "terms" msgid "Our responsibility" msgstr "" -#: lib/web/templates/api/privacy.html.eex:61 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:61 msgctxt "terms" msgid "Retain server logs containing the IP address of all requests to this server, insofar as such logs are kept, no more than 90 days." msgstr "" +#, elixir-format #: lib/web/templates/api/privacy.html.eex:3 #: lib/web/templates/api/terms.html.eex:15 -#, elixir-format msgctxt "terms" msgid "Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary to help you understand them better." msgstr "" -#: lib/web/templates/api/terms.html.eex:45 #, elixir-format +#: lib/web/templates/api/terms.html.eex:45 msgctxt "terms" msgid "We are not liable for any loss you may incur as a result of someone else using your email or password, either with or without your knowledge." msgstr "" -#: lib/web/templates/api/terms.html.eex:50 #, elixir-format +#: lib/web/templates/api/terms.html.eex:50 msgctxt "terms" msgid "We cannot be held responsible should a programming or administrative error make your content visible to a larger audience than intended. Aside from our limited right to your content, you retain all of your rights to the content you post, link and otherwise make available on or through the Service." msgstr "" -#: lib/web/templates/api/privacy.html.eex:10 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:10 msgctxt "terms" msgid "We collect information from you when you register on this instance and gather data when you participate in the platform by reading, writing, and interacting with content shared here. If you register on this instance, you will be asked to enter an email address, a password (hashed) and at least an username. Your email address will be verified by an email containing a unique link. Once the link is activated, we know you control that email address. You may also enter additional profile information such as a display name and biography, and upload a profile picture and header image. The username, display name, biography, profile picture and header image are always listed publicly. You may however visit this instance without registering." msgstr "" -#: lib/web/templates/api/terms.html.eex:30 #, elixir-format +#: lib/web/templates/api/terms.html.eex:30 msgctxt "terms" msgid "We reserve the right to modify these Terms at any time. For instance, we may need to change these Terms if we come out with a new feature." msgstr "" -#: lib/web/templates/api/terms.html.eex:20 #, elixir-format +#: lib/web/templates/api/terms.html.eex:20 msgctxt "terms" msgid "When we say “we”, “our”, or “us” in this document, we are referring to the owners, operators and administrators of this Mobilizon instance. The Mobilizon software is provided by the team of Mobilizon contributors, supported by Framasoft, a French not-for-profit organization advocating for Free/Libre Software. Unless explicitly stated, this Mobilizon instance is an independent service using Mobilizon's source code. You may find more information about this instance on the \"About this instance\" page." msgstr "" -#: lib/web/templates/api/terms.html.eex:43 #, elixir-format +#: lib/web/templates/api/terms.html.eex:43 msgctxt "terms" msgid "When you create an account you agree to maintain the security and confidentiality of your password and accept all risks of unauthorized access to your account data and any other information you provide to %{instance_name}." msgstr "" -#: lib/web/templates/api/terms.html.eex:49 #, elixir-format +#: lib/web/templates/api/terms.html.eex:49 msgctxt "terms" msgid "When you post, link or otherwise make available content to the Service, you grant us the right and license to display and distribute your content on or through the Service (including via applications). We may format your content for display throughout the Service, but we will not edit or revise the substance of your content itself. The displaying and distribution of your content happens only according to the visibility rules you have set for the content. We will not modify the visibility of the content you have set." msgstr "" -#: lib/web/templates/api/privacy.html.eex:19 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:19 msgctxt "terms" msgid "Your events and comments are delivered to other instances that follow your own, meaning they are delivered to different instances and copies are stored there. When you delete events or comments, this is likewise delivered to these other instances. All interactions related to event features - such as joining an event - or group features - such as managing resources - are federated as well. Please keep in mind that the operators of the instance and any receiving instances may view such messages and information, and that recipients may screenshot, copy or otherwise re-share them." msgstr "" -#: lib/web/templates/api/privacy.html.eex:99 #, elixir-format +#: lib/web/templates/api/privacy.html.eex:99 msgctxt "terms" msgid "Your content may be downloaded by other instances in the network. Your public events and comments are delivered to the instances following your own instance. Content created through a group is forwarded to all the instances of all the members of the group, insofar as these members reside on a different instance than this one." msgstr "" -#: lib/web/templates/email/event_participation_confirmed.text.eex:4 #, elixir-format +#: lib/web/templates/email/event_participation_confirmed.text.eex:4 msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" +#, elixir-format #: lib/web/templates/email/event_participation_approved.html.eex:38 #: lib/web/templates/email/event_participation_confirmed.html.eex:38 -#, elixir-format msgid "You recently requested to attend %{title}." msgstr "" -#: lib/web/email/participation.ex:91 #, elixir-format +#: lib/web/email/participation.ex:91 msgid "Your participation to event %{title} has been confirmed" msgstr "" -#: lib/web/templates/email/report.html.eex:41 #, elixir-format +#: lib/web/templates/email/report.html.eex:41 msgid "%{reporter} reported the following content." msgstr "" -#: lib/web/templates/email/report.text.eex:5 #, elixir-format +#: lib/web/templates/email/report.text.eex:5 msgid "Group %{group} was reported" msgstr "" -#: lib/web/templates/email/report.html.eex:51 #, elixir-format +#: lib/web/templates/email/report.html.eex:51 msgid "Group reported" msgstr "" -#: lib/web/templates/email/report.text.eex:7 #, elixir-format +#: lib/web/templates/email/report.text.eex:7 msgid "Profile %{profile} was reported" msgstr "" -#: lib/web/templates/email/report.html.eex:56 #, elixir-format +#: lib/web/templates/email/report.html.eex:56 msgid "Profile reported" msgstr "" -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #, elixir-format +#: lib/web/templates/email/event_participation_confirmed.html.eex:45 msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!" msgstr "" -#: lib/mobilizon/posts/post.ex:94 #, elixir-format +#: lib/mobilizon/posts/post.ex:94 msgid "A text is required for the post" msgstr "" -#: lib/mobilizon/posts/post.ex:93 #, elixir-format +#: lib/mobilizon/posts/post.ex:93 msgid "A title is required for the post" msgstr "" -#: lib/web/templates/email/instance_follow.text.eex:3 #, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:3 msgid "%{name} (%{domain}) just requested to follow your instance." msgstr "" -#: lib/web/email/follow.ex:54 #, elixir-format +#: lib/web/email/follow.ex:54 msgid "%{name} requests to follow your instance" msgstr "" -#: lib/web/templates/email/instance_follow.html.eex:38 #, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:38 msgid "%{name} (%{domain}) just requested to follow your instance. If you accept, this instance will receive all of your instance's public events." msgstr "" -#: lib/web/templates/email/instance_follow.text.eex:4 #, elixir-format +#: lib/web/templates/email/instance_follow.text.eex:4 msgid "If you accept, this instance will receive all of your public events." msgstr "" -#: lib/web/email/follow.ex:48 #, elixir-format +#: lib/web/email/follow.ex:48 msgid "Instance %{name} (%{domain}) requests to follow your instance" msgstr "" -#: lib/web/templates/email/instance_follow.html.eex:66 #, elixir-format +#: lib/web/templates/email/instance_follow.html.eex:66 msgid "See the federation settings" msgstr "" +#, elixir-format #: lib/web/templates/email/instance_follow.html.eex:52 #: lib/web/templates/email/instance_follow.text.eex:6 -#, elixir-format msgid "To accept this invitation, head over to the instance's admin settings." msgstr "" +#, elixir-format #: lib/web/templates/email/instance_follow.html.eex:13 #: lib/web/templates/email/instance_follow.text.eex:1 -#, elixir-format msgid "Want to connect?" msgstr "" +#, elixir-format #: lib/web/templates/email/instance_follow.html.eex:45 #: lib/web/templates/email/instance_follow.text.eex:5 -#, elixir-format msgid "Note: %{name} (%{domain}) following you doesn't necessarily imply that you follow this instance, but you can ask to follow them too." msgstr "" -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:38 #, elixir-format +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:38 msgid "Hi there! You just registered to join this event: « %{title} ». Please confirm the e-mail address you provided:" msgstr "" -#: lib/web/templates/email/event_participation_rejected.html.eex:38 #, elixir-format +#: lib/web/templates/email/event_participation_rejected.html.eex:38 msgid "You issued a request to attend %{title}." msgstr "" -#: lib/web/templates/email/event_updated.html.eex:64 #, elixir-format +#: lib/web/templates/email/event_updated.html.eex:64 msgid "Event title" msgstr "" -#: lib/web/templates/email/event_updated.html.eex:38 #, elixir-format +#: lib/web/templates/email/event_updated.html.eex:38 msgid "There have been changes for %{title} so we'd thought we'd let you know." msgstr "" -#: lib/web/templates/error/500_page.html.eex:7 #, elixir-format +#: lib/web/templates/error/500_page.html.eex:7 msgid "This page is not correct" msgstr "" -#: lib/web/templates/error/500_page.html.eex:50 #, elixir-format +#: lib/web/templates/error/500_page.html.eex:50 msgid "We're sorry, but something went wrong on our end." msgstr "" +#, elixir-format #: lib/web/templates/email/email.html.eex:89 #: lib/web/templates/email/email.text.eex:4 -#, elixir-format msgid "This is a demonstration site to test Mobilizon." msgstr "" +#, elixir-format #: lib/service/metadata/actor.ex:53 lib/service/metadata/actor.ex:60 #: lib/service/metadata/instance.ex:54 lib/service/metadata/instance.ex:60 -#, elixir-format msgid "%{name}'s feed" msgstr "" -#: lib/service/export/feed.ex:120 #, elixir-format +#: lib/service/export/feed.ex:120 msgid "%{actor}'s private events feed on %{instance}" msgstr "" -#: lib/service/export/feed.ex:115 #, elixir-format +#: lib/service/export/feed.ex:115 msgid "%{actor}'s public events feed on %{instance}" msgstr "" -#: lib/service/export/feed.ex:220 #, elixir-format +#: lib/service/export/feed.ex:220 msgid "Feed for %{email} on %{instance}" msgstr "" -#: lib/web/templates/error/500_page.html.eex:57 #, elixir-format +#: lib/web/templates/error/500_page.html.eex:57 msgid "If the issue persists, you may contact the server administrator at %{contact}." msgstr "" -#: lib/web/templates/error/500_page.html.eex:55 #, elixir-format +#: lib/web/templates/error/500_page.html.eex:55 msgid "If the issue persists, you may try to contact the server administrator." msgstr "" -#: lib/web/templates/error/500_page.html.eex:68 #, elixir-format +#: lib/web/templates/error/500_page.html.eex:68 msgid "Technical details" msgstr "" -#: lib/web/templates/error/500_page.html.eex:52 #, elixir-format +#: lib/web/templates/error/500_page.html.eex:52 msgid "The Mobilizon server %{instance} seems to be temporarily down." msgstr "" -#: lib/service/export/feed.ex:73 #, elixir-format +#: lib/service/export/feed.ex:73 msgid "Public feed for %{instance}" 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 "" diff --git a/priv/gettext/id/LC_MESSAGES/errors.po b/priv/gettext/id/LC_MESSAGES/errors.po new file mode 100644 index 000000000..251689f17 --- /dev/null +++ b/priv/gettext/id/LC_MESSAGES/errors.po @@ -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 "" diff --git a/priv/gettext/it/LC_MESSAGES/activity.po b/priv/gettext/it/LC_MESSAGES/activity.po index 5354fc758..d677b85e4 100644 --- a/priv/gettext/it/LC_MESSAGES/activity.po +++ b/priv/gettext/it/LC_MESSAGES/activity.po @@ -302,17 +302,17 @@ msgstr "" msgid "The group %{group} was updated by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "" diff --git a/priv/gettext/it/LC_MESSAGES/default.po b/priv/gettext/it/LC_MESSAGES/default.po index b1fc021b6..3496360c5 100644 --- a/priv/gettext/it/LC_MESSAGES/default.po +++ b/priv/gettext/it/LC_MESSAGES/default.po @@ -127,7 +127,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "La tua partecipazione all'evento %{title} è stata rifiutata" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "L'evento %{title} è stato aggiornato" @@ -353,12 +353,12 @@ msgid "What information do we collect?" msgstr "Quali informazioni raccogliamo?" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "Mobilizon su %{instance}: conferma il tuo indirizzo email" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "Mobilizon su %{instance}: email modificata" @@ -1744,3 +1744,13 @@ msgstr "Il server Mobilizon sembra essere temporaneamente inattivo." #: lib/service/export/feed.ex:73 msgid "Public feed for %{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 "" diff --git a/priv/gettext/it/LC_MESSAGES/errors.po b/priv/gettext/it/LC_MESSAGES/errors.po index 4ec6e8dd5..6204b218e 100644 --- a/priv/gettext/it/LC_MESSAGES/errors.po +++ b/priv/gettext/it/LC_MESSAGES/errors.po @@ -115,7 +115,7 @@ msgid "Error while saving user settings" msgstr "Errore nel salvare le preferenze utente" #, 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 msgid "Group not found" msgstr "Gruppo non trovato" @@ -354,7 +354,7 @@ msgid "Comment is already deleted" msgstr "Commento già cancellato" #, 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" msgstr "Discussione non trovata" @@ -374,8 +374,8 @@ msgid "Event id not found" msgstr "ID evento non trovato" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "Evento non trovato" @@ -503,7 +503,7 @@ msgid "Token is not a valid UUID" msgstr "Il token non è un UUID valido" #, 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" msgstr "Utente non trovato" @@ -572,7 +572,7 @@ msgid "You cannot delete this comment" msgstr "Non puoi eliminare questo commento" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" 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" #, 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" 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" #, 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" msgstr "Devi essere connesso per aggiornare un evento" @@ -725,47 +725,47 @@ msgid "This email is already used." msgstr "Questa email è già in uso." #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "Post non trovato" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "Sono stati trasmessi argomenti non validi" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "Credenziali non valide" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "Reimposta la tua password per connetterti" #, 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" msgstr "Segnalazione non trovata" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "Qualcosa è andato storto" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "Risorsa sconosciuta" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "Non hai il permesso di farlo" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" msgstr "Devi essere connesso" @@ -790,12 +790,12 @@ msgid "Profile is not administrator for the group" msgstr "Il profilo non è amministratore del gruppo" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "Non puoi modificare questo evento." #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." msgstr "Non puo iattribuire questo evento a questo profilo." @@ -827,7 +827,7 @@ msgstr "" "per accedere ad una discussione" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" 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." #, 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" msgstr "" "Il profilo del moderatore fornito non dispone dell'autorizzazione per questo " "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 "" diff --git a/priv/gettext/ja/LC_MESSAGES/activity.po b/priv/gettext/ja/LC_MESSAGES/activity.po index c091b4720..65a8c414a 100644 --- a/priv/gettext/ja/LC_MESSAGES/activity.po +++ b/priv/gettext/ja/LC_MESSAGES/activity.po @@ -300,17 +300,17 @@ msgstr "" msgid "The group %{group} was updated by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "" diff --git a/priv/gettext/ja/LC_MESSAGES/default.po b/priv/gettext/ja/LC_MESSAGES/default.po index 50ddc507c..440090eba 100644 --- a/priv/gettext/ja/LC_MESSAGES/default.po +++ b/priv/gettext/ja/LC_MESSAGES/default.po @@ -119,7 +119,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "" @@ -312,12 +312,12 @@ msgid "What information do we collect?" msgstr "" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "" @@ -1399,3 +1399,13 @@ msgstr "" #: lib/service/export/feed.ex:73 msgid "Public feed for %{instance}" 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 "" diff --git a/priv/gettext/ja/LC_MESSAGES/errors.po b/priv/gettext/ja/LC_MESSAGES/errors.po index 08ee9d5f1..b0b9e25a3 100644 --- a/priv/gettext/ja/LC_MESSAGES/errors.po +++ b/priv/gettext/ja/LC_MESSAGES/errors.po @@ -102,7 +102,7 @@ msgid "Error while saving user settings" msgstr "" #, 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 msgid "Group not found" msgstr "" @@ -339,7 +339,7 @@ msgid "Comment is already deleted" msgstr "" #, 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" msgstr "" @@ -359,8 +359,8 @@ msgid "Event id not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "" @@ -488,7 +488,7 @@ msgid "Token is not a valid UUID" msgstr "" #, 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" msgstr "" @@ -554,7 +554,7 @@ msgid "You cannot delete this comment" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" msgstr "" @@ -614,7 +614,7 @@ msgid "You need to be logged-in to access resources" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" msgstr "" @@ -634,7 +634,7 @@ msgid "You need to be logged-in to create resources" msgstr "" #, 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" msgstr "" @@ -659,7 +659,7 @@ msgid "You need to be logged-in to leave an event" msgstr "" #, 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" msgstr "" @@ -699,47 +699,47 @@ msgid "This email is already used." msgstr "" #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "" #, 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" msgstr "" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" msgstr "" @@ -764,12 +764,12 @@ msgid "Profile is not administrator for the group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." msgstr "" @@ -799,7 +799,7 @@ msgid "You must provide either an ID or a slug to access a discussion" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" msgstr "" @@ -835,6 +835,16 @@ msgid "Unable to fetch resource details from this URL." msgstr "" #, 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" 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 "" diff --git a/priv/gettext/nl/LC_MESSAGES/activity.po b/priv/gettext/nl/LC_MESSAGES/activity.po index b19d471a6..e3fa07114 100644 --- a/priv/gettext/nl/LC_MESSAGES/activity.po +++ b/priv/gettext/nl/LC_MESSAGES/activity.po @@ -302,17 +302,17 @@ msgstr "" msgid "The group %{group} was updated by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "" diff --git a/priv/gettext/nl/LC_MESSAGES/default.po b/priv/gettext/nl/LC_MESSAGES/default.po index fbf2cfbfc..c1b662d85 100644 --- a/priv/gettext/nl/LC_MESSAGES/default.po +++ b/priv/gettext/nl/LC_MESSAGES/default.po @@ -128,7 +128,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "Uw deelname aan het evenement %{title} is afgewezen" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "Evenement %{title} is bijgewerkt" @@ -321,12 +321,12 @@ msgid "What information do we collect?" msgstr "" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "" @@ -1424,3 +1424,13 @@ msgstr "" #: lib/service/export/feed.ex:73 msgid "Public feed for %{instance}" 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 "" diff --git a/priv/gettext/nl/LC_MESSAGES/errors.po b/priv/gettext/nl/LC_MESSAGES/errors.po index a99ddf87f..662e22052 100644 --- a/priv/gettext/nl/LC_MESSAGES/errors.po +++ b/priv/gettext/nl/LC_MESSAGES/errors.po @@ -108,7 +108,7 @@ msgid "Error while saving user settings" msgstr "" #, 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 msgid "Group not found" msgstr "" @@ -345,7 +345,7 @@ msgid "Comment is already deleted" msgstr "" #, 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" msgstr "" @@ -365,8 +365,8 @@ msgid "Event id not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "" @@ -494,7 +494,7 @@ msgid "Token is not a valid UUID" msgstr "" #, 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" msgstr "" @@ -560,7 +560,7 @@ msgid "You cannot delete this comment" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" msgstr "" @@ -620,7 +620,7 @@ msgid "You need to be logged-in to access resources" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" msgstr "" @@ -640,7 +640,7 @@ msgid "You need to be logged-in to create resources" msgstr "" #, 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" msgstr "" @@ -665,7 +665,7 @@ msgid "You need to be logged-in to leave an event" msgstr "" #, 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" msgstr "" @@ -705,47 +705,47 @@ msgid "This email is already used." msgstr "" #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "" #, 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" msgstr "" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" msgstr "" @@ -770,12 +770,12 @@ msgid "Profile is not administrator for the group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." msgstr "" @@ -805,7 +805,7 @@ msgid "You must provide either an ID or a slug to access a discussion" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" msgstr "" @@ -841,6 +841,16 @@ msgid "Unable to fetch resource details from this URL." msgstr "" #, 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" 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 "" diff --git a/priv/gettext/nn/LC_MESSAGES/activity.po b/priv/gettext/nn/LC_MESSAGES/activity.po index f80f4545a..d7bb40d93 100644 --- a/priv/gettext/nn/LC_MESSAGES/activity.po +++ b/priv/gettext/nn/LC_MESSAGES/activity.po @@ -302,17 +302,17 @@ msgstr "" msgid "The group %{group} was updated by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "" diff --git a/priv/gettext/nn/LC_MESSAGES/default.po b/priv/gettext/nn/LC_MESSAGES/default.po index bed7721fc..7c2fcc8db 100644 --- a/priv/gettext/nn/LC_MESSAGES/default.po +++ b/priv/gettext/nn/LC_MESSAGES/default.po @@ -128,7 +128,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "Deltakinga di på hendinga %{title} er avslegen" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "Hendinga %{title} er oppdatert" @@ -347,12 +347,12 @@ msgid "What information do we collect?" msgstr "Kva opplysingar samlar me?" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "Mobilizon på %{instance}: stadfest epostadressa di" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" 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 msgid "Public feed for %{instance}" 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 "" diff --git a/priv/gettext/nn/LC_MESSAGES/errors.po b/priv/gettext/nn/LC_MESSAGES/errors.po index 33d959953..74705c51b 100644 --- a/priv/gettext/nn/LC_MESSAGES/errors.po +++ b/priv/gettext/nn/LC_MESSAGES/errors.po @@ -131,7 +131,7 @@ msgid "Error while saving user settings" msgstr "Greidde ikkje lagra brukarinnstillingane" #, 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 msgid "Group not found" msgstr "Fann ikkje gruppa" @@ -368,7 +368,7 @@ msgid "Comment is already deleted" msgstr "Kommentaren er allereie sletta" #, 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" msgstr "Fann ikkje ordskiftet" @@ -388,8 +388,8 @@ msgid "Event id not found" msgstr "Fann ikkje ID-en til hendinga" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "Fann ikkje hendinga" @@ -517,7 +517,7 @@ msgid "Token is not a valid UUID" msgstr "Teiknet er ikkje ein gyldig UUID" #, 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" msgstr "Fann ikkje brukaren" @@ -588,7 +588,7 @@ msgid "You cannot delete this comment" msgstr "Du kan ikkje sletta denne kommentaren" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" 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" #, 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" 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" #, 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" 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." #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "Fann ikkje innlegget" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "Ugyldige argument" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "Ugyldig innlogging" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "Nullstill passordet for å logga inn" #, 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" msgstr "Fann ikkje ressursen" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "Noko gjekk gale" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "Ukjend ressurs" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "Du har ikkje løyve til å gjera detet" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" msgstr "Du må vera innlogga" @@ -807,12 +807,12 @@ msgid "Profile is not administrator for the group" msgstr "Profilen er ikkje administrator for gruppa" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "Du kan ikkje endra denne hendinga." #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" 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." #, 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" 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 "" diff --git a/priv/gettext/oc/LC_MESSAGES/activity.po b/priv/gettext/oc/LC_MESSAGES/activity.po index 5422b4a1d..c6c05c505 100644 --- a/priv/gettext/oc/LC_MESSAGES/activity.po +++ b/priv/gettext/oc/LC_MESSAGES/activity.po @@ -302,17 +302,17 @@ msgstr "" msgid "The group %{group} was updated by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "" diff --git a/priv/gettext/oc/LC_MESSAGES/default.po b/priv/gettext/oc/LC_MESSAGES/default.po index ef2700e14..9117e85bf 100644 --- a/priv/gettext/oc/LC_MESSAGES/default.po +++ b/priv/gettext/oc/LC_MESSAGES/default.po @@ -120,7 +120,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "Vòstra participacion a l’eveniment %{title} es estada regetada" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "L’eveniment %{title} es estat actualizat" @@ -344,12 +344,12 @@ msgid "What information do we collect?" msgstr "Quinas informacions reculem ?" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "Mobilizon sus %{instance} : confirmatz vòstra adreça electronica" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "Mobilizon sus %{instance} : adreça electronica cambiada" @@ -1509,3 +1509,13 @@ msgstr "" #: lib/service/export/feed.ex:73 msgid "Public feed for %{instance}" 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 "" diff --git a/priv/gettext/oc/LC_MESSAGES/errors.po b/priv/gettext/oc/LC_MESSAGES/errors.po index b7ef26b69..48cc849c8 100644 --- a/priv/gettext/oc/LC_MESSAGES/errors.po +++ b/priv/gettext/oc/LC_MESSAGES/errors.po @@ -115,7 +115,7 @@ msgid "Error while saving user settings" msgstr "Error en salvagardant los paramètres utilizaire" #, 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 msgid "Group not found" msgstr "Grop pas trobat" @@ -357,7 +357,7 @@ msgid "Comment is already deleted" msgstr "Comentari déjà suprimit" #, 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" msgstr "Discussion non trobada" @@ -377,8 +377,8 @@ msgid "Event id not found" msgstr "ID d'eveniment non trobat" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "Eveniment non trobat" @@ -506,7 +506,7 @@ msgid "Token is not a valid UUID" msgstr "" #, 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" msgstr "" @@ -572,7 +572,7 @@ msgid "You cannot delete this comment" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" msgstr "" @@ -632,7 +632,7 @@ msgid "You need to be logged-in to access resources" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" msgstr "" @@ -652,7 +652,7 @@ msgid "You need to be logged-in to create resources" msgstr "" #, 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" msgstr "" @@ -677,7 +677,7 @@ msgid "You need to be logged-in to leave an event" msgstr "" #, 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" msgstr "" @@ -717,47 +717,47 @@ msgid "This email is already used." msgstr "" #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "" #, 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" msgstr "" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" msgstr "" @@ -782,12 +782,12 @@ msgid "Profile is not administrator for the group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." msgstr "" @@ -817,7 +817,7 @@ msgid "You must provide either an ID or a slug to access a discussion" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" msgstr "" @@ -853,6 +853,16 @@ msgid "Unable to fetch resource details from this URL." msgstr "" #, 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" 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 "" diff --git a/priv/gettext/pl/LC_MESSAGES/activity.po b/priv/gettext/pl/LC_MESSAGES/activity.po index c515c7270..b3ab18d5e 100644 --- a/priv/gettext/pl/LC_MESSAGES/activity.po +++ b/priv/gettext/pl/LC_MESSAGES/activity.po @@ -304,17 +304,17 @@ msgstr "" msgid "The group %{group} was updated by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "" diff --git a/priv/gettext/pl/LC_MESSAGES/default.po b/priv/gettext/pl/LC_MESSAGES/default.po index 25050a04f..9b46081f7 100644 --- a/priv/gettext/pl/LC_MESSAGES/default.po +++ b/priv/gettext/pl/LC_MESSAGES/default.po @@ -130,7 +130,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "Twój udział w wydarzeniu %(title} został odrzucony" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "Wydarzenie %{title} zostało zaktualizowane" @@ -343,12 +343,12 @@ msgid "What information do we collect?" msgstr "Jakie informacje zbieramy?" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "Mobilizon na %{instance}: potwierdź swój adres e-mail" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" 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 msgid "Public feed for %{instance}" 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 "" diff --git a/priv/gettext/pl/LC_MESSAGES/errors.po b/priv/gettext/pl/LC_MESSAGES/errors.po index 04dc9ffd9..138abc4a8 100644 --- a/priv/gettext/pl/LC_MESSAGES/errors.po +++ b/priv/gettext/pl/LC_MESSAGES/errors.po @@ -122,7 +122,7 @@ msgid "Error while saving user settings" msgstr "Błąd zapisywania ustawień użytkownika" #, elixir-format -#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex: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 msgid "Group not found" msgstr "Nie odnaleziono grupy" @@ -364,7 +364,7 @@ msgid "Comment is already deleted" msgstr "Komentarz jest już usunięty" #, 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" msgstr "Nie znaleziono dyskusji" @@ -384,8 +384,8 @@ msgid "Event id not found" msgstr "Nie znaleziono id wydarzenia" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "Nie znaleziono wydarzenia" @@ -513,7 +513,7 @@ msgid "Token is not a valid UUID" msgstr "Token nie jest prawidłowym UUID" #, elixir-format -#: lib/graphql/error.ex:87 lib/graphql/resolvers/person.ex:356 +#: lib/graphql/error.ex:88 lib/graphql/resolvers/person.ex:356 msgid "User not found" msgstr "Nie znaleziono użytkownika" @@ -581,7 +581,7 @@ msgid "You cannot delete this comment" msgstr "Nie możesz usunąć tego komentarza" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" 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" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" 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" #, 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" 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" #, 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" 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." #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "Nie znaleziono wpisu" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "Podano nieprawidłowe argumenty" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "Nieprawidłowe dane uwierzytelniające" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "Resetuj swoje hasło, aby zalogować się" #, 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" msgstr "Nie znaleziono zasobu" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "Coś poszło nie tak" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "Nieznany zasób" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "Nie masz uprawnień aby to zrobić" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" msgstr "Musisz być zalogowany(-a)" @@ -799,12 +799,12 @@ msgid "Profile is not administrator for the group" msgstr "Profil nie jest administratorem grupy" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "Nie możesz edytować tego wydarzenia." #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." 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 "" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" msgstr "" @@ -870,6 +870,16 @@ msgid "Unable to fetch resource details from this URL." msgstr "" #, 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" 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 "" diff --git a/priv/gettext/pt/LC_MESSAGES/activity.po b/priv/gettext/pt/LC_MESSAGES/activity.po index bf6b21a7b..1d10bb1fe 100644 --- a/priv/gettext/pt/LC_MESSAGES/activity.po +++ b/priv/gettext/pt/LC_MESSAGES/activity.po @@ -302,17 +302,17 @@ msgstr "" msgid "The group %{group} was updated by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "" diff --git a/priv/gettext/pt/LC_MESSAGES/default.po b/priv/gettext/pt/LC_MESSAGES/default.po index 072dbb188..35059a8c0 100644 --- a/priv/gettext/pt/LC_MESSAGES/default.po +++ b/priv/gettext/pt/LC_MESSAGES/default.po @@ -117,7 +117,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "" @@ -310,12 +310,12 @@ msgid "What information do we collect?" msgstr "" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "" @@ -1404,3 +1404,13 @@ msgstr "" #: lib/service/export/feed.ex:73 msgid "Public feed for %{instance}" 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 "" diff --git a/priv/gettext/pt/LC_MESSAGES/errors.po b/priv/gettext/pt/LC_MESSAGES/errors.po index 7cb071d18..cf9f7aafe 100644 --- a/priv/gettext/pt/LC_MESSAGES/errors.po +++ b/priv/gettext/pt/LC_MESSAGES/errors.po @@ -108,7 +108,7 @@ msgid "Error while saving user settings" msgstr "" #, 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 msgid "Group not found" msgstr "" @@ -345,7 +345,7 @@ msgid "Comment is already deleted" msgstr "" #, 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" msgstr "" @@ -365,8 +365,8 @@ msgid "Event id not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "" @@ -494,7 +494,7 @@ msgid "Token is not a valid UUID" msgstr "" #, 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" msgstr "" @@ -560,7 +560,7 @@ msgid "You cannot delete this comment" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" msgstr "" @@ -620,7 +620,7 @@ msgid "You need to be logged-in to access resources" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" msgstr "" @@ -640,7 +640,7 @@ msgid "You need to be logged-in to create resources" msgstr "" #, 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" msgstr "" @@ -665,7 +665,7 @@ msgid "You need to be logged-in to leave an event" msgstr "" #, 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" msgstr "" @@ -705,47 +705,47 @@ msgid "This email is already used." msgstr "" #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "" #, 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" msgstr "" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" msgstr "" @@ -770,12 +770,12 @@ msgid "Profile is not administrator for the group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." msgstr "" @@ -805,7 +805,7 @@ msgid "You must provide either an ID or a slug to access a discussion" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" msgstr "" @@ -841,6 +841,16 @@ msgid "Unable to fetch resource details from this URL." msgstr "" #, 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" 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 "" diff --git a/priv/gettext/pt_BR/LC_MESSAGES/activity.po b/priv/gettext/pt_BR/LC_MESSAGES/activity.po index 2f8ae4682..b0db703b7 100644 --- a/priv/gettext/pt_BR/LC_MESSAGES/activity.po +++ b/priv/gettext/pt_BR/LC_MESSAGES/activity.po @@ -302,17 +302,17 @@ msgstr "" msgid "The group %{group} was updated by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "" diff --git a/priv/gettext/pt_BR/LC_MESSAGES/default.po b/priv/gettext/pt_BR/LC_MESSAGES/default.po index b556cf88a..70add4b5a 100644 --- a/priv/gettext/pt_BR/LC_MESSAGES/default.po +++ b/priv/gettext/pt_BR/LC_MESSAGES/default.po @@ -128,7 +128,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "A sua participação no evento %{title} foi rejeitada" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "Evento %{title} foi atualizado" @@ -356,12 +356,12 @@ msgid "What information do we collect?" msgstr "Quais informações coletamos?" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "Mobilizon da instância %{instance}: confirma seu endereço de email" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "Mobilizon da instância %{instance}: email alterado" @@ -1516,3 +1516,13 @@ msgstr "" #: lib/service/export/feed.ex:73 msgid "Public feed for %{instance}" 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 "" diff --git a/priv/gettext/pt_BR/LC_MESSAGES/errors.po b/priv/gettext/pt_BR/LC_MESSAGES/errors.po index c1b5b46e6..99b2c079e 100644 --- a/priv/gettext/pt_BR/LC_MESSAGES/errors.po +++ b/priv/gettext/pt_BR/LC_MESSAGES/errors.po @@ -108,7 +108,7 @@ msgid "Error while saving user settings" msgstr "" #, 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 msgid "Group not found" msgstr "" @@ -345,7 +345,7 @@ msgid "Comment is already deleted" msgstr "" #, 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" msgstr "" @@ -365,8 +365,8 @@ msgid "Event id not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "" @@ -494,7 +494,7 @@ msgid "Token is not a valid UUID" msgstr "" #, 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" msgstr "" @@ -560,7 +560,7 @@ msgid "You cannot delete this comment" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" msgstr "" @@ -620,7 +620,7 @@ msgid "You need to be logged-in to access resources" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" msgstr "" @@ -640,7 +640,7 @@ msgid "You need to be logged-in to create resources" msgstr "" #, 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" msgstr "" @@ -665,7 +665,7 @@ msgid "You need to be logged-in to leave an event" msgstr "" #, 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" msgstr "" @@ -705,47 +705,47 @@ msgid "This email is already used." msgstr "" #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "" #, 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" msgstr "" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" msgstr "" @@ -770,12 +770,12 @@ msgid "Profile is not administrator for the group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." msgstr "" @@ -805,7 +805,7 @@ msgid "You must provide either an ID or a slug to access a discussion" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" msgstr "" @@ -841,6 +841,16 @@ msgid "Unable to fetch resource details from this URL." msgstr "" #, 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" 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 "" diff --git a/priv/gettext/ru/LC_MESSAGES/activity.po b/priv/gettext/ru/LC_MESSAGES/activity.po index eaa570ffc..b18cc9d8d 100644 --- a/priv/gettext/ru/LC_MESSAGES/activity.po +++ b/priv/gettext/ru/LC_MESSAGES/activity.po @@ -19,314 +19,314 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.6.2\n" +#, elixir-format #: 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 -#, elixir-format msgid "%{member} accepted the invitation to join the group." msgstr "%{member} принял приглашение присоединиться к группе." +#, elixir-format #: 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 -#, elixir-format msgid "%{member} rejected the invitation to join the group." msgstr "%{member} отклонил приглашение присоединиться к группе." +#, elixir-format #: 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 -#, elixir-format msgid "%{member} requested to join the group." msgstr "%{member} попросил присоединиться к группе." +#, elixir-format #: 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 -#, elixir-format msgid "%{member} was invited by %{profile}." msgstr "%{member} был приглашён %{profile}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} added the member %{member}." msgstr "%{profile} добавил участника %{member}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} archived the discussion %{discussion}." msgstr "%{profile} заархивировал обсуждение %{discussion}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} created the discussion %{discussion}." msgstr "%{profile} создал обсуждение %{discussion}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} created the folder %{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.text.eex:1 -#, elixir-format msgid "%{profile} created the group %{group}." msgstr "%{profile} создал группу %{group}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} created the resource %{resource}." msgstr "%{profile} создал ресурс %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} deleted the discussion %{discussion}." msgstr "%{profile} удалил обсуждение %{discussion}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} deleted the folder %{resource}." msgstr "%{profile} удалил папку %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} deleted the resource %{resource}." msgstr "%{profile} удалил ресурс %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} excluded member %{member}." msgstr "%{profile} исключил участника %{member}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} moved the folder %{resource}." msgstr "%{profile} переместил папку %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} moved the resource %{resource}." msgstr "%{profile} переместил ресурс %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} quit the group." msgstr "%{profile} вышел из группы." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} renamed the discussion %{discussion}." msgstr "%{profile} переименовал обсуждение %{discussion}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} renamed the folder from %{old_resource_title} to %{resource}." msgstr "%{profile} переименовал папку из %{old_resource_title} в %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} renamed the resource from %{old_resource_title} to %{resource}." msgstr "%{profile} переименовал ресурс из %{old_resource_title} в %{resource}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} replied to the discussion %{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.text.eex:7 -#, elixir-format msgid "%{profile} updated the group %{group}." msgstr "%{profile} обновил группу %{group}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} updated the member %{member}." msgstr "%{profile} обновил участника %{member}." +#, elixir-format #: 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 -#, elixir-format msgid "The event %{event} was created by %{profile}." msgstr "Мероприятие %{event} было создано %{profile}." +#, elixir-format #: 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 -#, elixir-format msgid "The event %{event} was deleted by %{profile}." msgstr "Мероприятие %{event} было удалено %{profile}." +#, elixir-format #: 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 -#, elixir-format msgid "The event %{event} was updated by %{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.text.eex:1 -#, elixir-format msgid "The post %{post} was created by %{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.text.eex:13 -#, elixir-format msgid "The post %{post} was deleted by %{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.text.eex:7 -#, elixir-format msgid "The post %{post} was updated by %{profile}." msgstr "Публикация %{post} была обновлена %{profile}." +#, elixir-format #: 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 -#, elixir-format msgid "%{member} joined the group." msgstr "%{member} присоединился к группе." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} posted a comment on the event %{event}." msgstr "%{profile} оставил комментарий к мероприятию %{event}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} replied to a comment on the event %{event}." msgstr "%{profile} ответил на комментарий к мероприятию %{event}." -#: lib/web/templates/email/email_direct_activity.text.eex:27 #, elixir-format +#: lib/web/templates/email/email_direct_activity.text.eex:27 msgid "Don't want to receive activity notifications? You may change frequency or disable them in your settings." msgstr "" "Не хотите получать уведомления о событиях? Вы можете изменить частоту " "уведомлений или отключить их в своих настройках." +#, elixir-format #: lib/web/templates/email/email_direct_activity.html.eex:135 #: lib/web/templates/email/email_direct_activity.text.eex:23 -#, elixir-format msgid "View one more activity" msgid_plural "View %{count} more activities" msgstr[0] "Посмотреть еще одно событие" msgstr[1] "Посмотреть еще %{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:46 lib/web/templates/email/email_direct_activity.text.eex:6 #: lib/web/templates/email/email_direct_activity.text.eex:7 -#, elixir-format msgid "There has been an activity!" msgid_plural "There has been some activity!" msgstr[0] "Было событие!" msgstr[1] "Были события!" msgstr[2] "Были события!" -#: lib/service/activity/renderer/renderer.ex:38 #, elixir-format +#: lib/service/activity/renderer/renderer.ex:38 msgid "Activity on %{instance}" msgstr "События на %{instance}" +#, elixir-format #: 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/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}." msgstr "%{profile} разместил объявление под мероприятием %{event}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} mentionned you in a comment under event %{event}." msgstr "%{profile} упомянул вас в комментарии под мероприятием %{event}." -#: lib/service/activity/renderer/discussion.ex:45 #, elixir-format +#: lib/service/activity/renderer/discussion.ex:45 msgid "%{profile} mentionned you in the discussion %{discussion}." msgstr "%{profile} упомянул вас в обсуждении %{discussion}." -#: lib/web/templates/email/email_direct_activity.html.eex:155 #, 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}." msgstr "" "Не хотите получать уведомления о событиях? Вы можете изменить частоту " "уведомлений или отключить их в своих настройках." +#, elixir-format #: lib/web/templates/email/email_direct_activity.html.eex:42 #: lib/web/templates/email/email_direct_activity.text.eex:5 -#, elixir-format msgid "Here's your weekly activity recap" msgstr "Вот итоги вашей еженедельной активности" -#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140 #, elixir-format +#: lib/web/email/activity.ex:119 lib/web/email/activity.ex:140 msgid "Activity notification for %{instance}" msgstr "События на %{instance}" -#: lib/web/email/activity.ex:126 #, elixir-format +#: lib/web/email/activity.ex:126 msgid "Daily activity recap for %{instance}" msgstr "Итоги ежедневной активности для %{instance}" +#, elixir-format #: lib/web/templates/email/email_direct_activity.html.eex:40 #: lib/web/templates/email/email_direct_activity.text.eex:4 -#, elixir-format msgid "Here's your daily activity recap" msgstr "Вот итоги вашей ежедневной активности" -#: lib/web/email/activity.ex:133 #, elixir-format +#: lib/web/email/activity.ex:133 msgid "Weekly activity recap for %{instance}" msgstr "Итоги еженедельной активности для %{instance}" +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} has posted a new comment under your event %{event}." msgstr "%{profile} разместил новый комментарий под вашим мероприятием %{event}." +#, elixir-format #: 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 -#, elixir-format msgid "%{profile} has posted a new reply under your event %{event}." msgstr "%{profile} опубликовал новый ответ под вашим мероприятием %{event}." -#: lib/web/email/activity.ex:46 #, elixir-format +#: lib/web/email/activity.ex:46 msgid "Announcement for your event %{event}" msgstr "Объявление о вашем мероприятии %{event}" -#: lib/service/activity/renderer/group.ex:23 #, elixir-format +#: lib/service/activity/renderer/group.ex:23 msgid "The group %{group} was updated by %{profile}." msgstr "Публикация %{post} была обновлена %{profile}." -#: lib/service/activity/renderer/post.ex:47 #, elixir-format +#: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "Сообщение %{post} из группы %{group} было удалено %{profile}." -#: lib/service/activity/renderer/post.ex:31 #, elixir-format +#: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "Сообщение %{post} из группы %{group} было опубликовано %{profile}." -#: lib/service/activity/renderer/post.ex:39 #, elixir-format +#: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "Сообщение %{post} из группы %{group} было обновлено %{profile}." diff --git a/priv/gettext/ru/LC_MESSAGES/default.po b/priv/gettext/ru/LC_MESSAGES/default.po index 440a2a108..dfaa63964 100644 --- a/priv/gettext/ru/LC_MESSAGES/default.po +++ b/priv/gettext/ru/LC_MESSAGES/default.po @@ -129,7 +129,7 @@ msgid "Your participation to event %{title} has been rejected" msgstr "Ваш запрос на участие в %{title} был отклонен" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "Мероприятие %{title} было обновлено" @@ -355,12 +355,12 @@ msgid "What information do we collect?" msgstr "Какую информацию мы собираем?" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "Mobilizon на %{instance}: подтвердите свой адрес электронной почты" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "Mobilizon на %{instance}: адрес электронной почты изменен" @@ -1741,3 +1741,13 @@ msgstr "Сервер Mobilizon %{instance} временно недоступен #: lib/service/export/feed.ex:73 msgid "Public feed for %{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 "" diff --git a/priv/gettext/ru/LC_MESSAGES/errors.po b/priv/gettext/ru/LC_MESSAGES/errors.po index f11f32979..3948a3a2f 100644 --- a/priv/gettext/ru/LC_MESSAGES/errors.po +++ b/priv/gettext/ru/LC_MESSAGES/errors.po @@ -122,7 +122,7 @@ msgid "Error while saving user settings" msgstr "Ошибка при сохранении пользовательских настроек" #, 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 msgid "Group not found" msgstr "Группа не найдена" @@ -367,7 +367,7 @@ msgid "Comment is already deleted" msgstr "Комментарий уже удалён" #, 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" msgstr "Обсуждение не найдено" @@ -387,8 +387,8 @@ msgid "Event id not found" msgstr "Не найден id мероприятия" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "Мероприятие не найдено" @@ -518,7 +518,7 @@ msgid "Token is not a valid UUID" msgstr "Токен не является допустимым UUID" #, 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" msgstr "Пользователь не найден" @@ -588,7 +588,7 @@ msgid "You cannot delete this comment" msgstr "Вы не можете удалить этот комментарий" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" msgstr "Вы не можете удалить это мероприятие" @@ -658,7 +658,7 @@ msgid "You need to be logged-in to access resources" msgstr "Вам необходимо войти в систему, чтобы получить доступ к ресурсам" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" msgstr "" "Вам необходимо войти в систему, чтобы иметь возможность создавать мероприятия" @@ -682,7 +682,7 @@ msgstr "" "Вам необходимо войти в систему, чтобы иметь возможность создавать ресурсы" #, 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" msgstr "" "Вам необходимо войти в систему, чтобы иметь возможность удалить мероприятие" @@ -709,7 +709,7 @@ msgid "You need to be logged-in to leave an event" msgstr "Вам необходимо войти в систему, чтобы покинуть мероприятие" #, 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" msgstr "Вам необходимо войти в систему, чтобы обновить мероприятие" @@ -754,47 +754,47 @@ msgid "This email is already used." msgstr "Этот электронный адрес уже используется." #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "Пост не найден" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "Переданы неверные аргументы" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "Неверные учётные данные" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "Сбросьте пароль для входа в систему" #, 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" msgstr "Ресурс не найден" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "Что-то пошло не так" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "Неизвестный ресурс" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "У вас недостаточно для этого прав" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" msgstr "Вам необходимо войти в систему" @@ -819,12 +819,12 @@ msgid "Profile is not administrator for the group" msgstr "Профиль не является администратором группы" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "Вы не можете редактировать это мероприятие." #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." msgstr "Вы не можете назначить это мероприятие этому профилю." @@ -855,7 +855,7 @@ msgstr "" "Вы должны предоставить либо ID, либо короткое имя для доступа к обсуждению" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" msgstr "Профиль организатора не принадлежит пользователю" @@ -891,6 +891,16 @@ msgid "Unable to fetch resource details from this URL." msgstr "Невозможно получить сведения о ресурсе по этому URL-адресу." #, 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" 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 "" diff --git a/priv/gettext/sv/LC_MESSAGES/activity.po b/priv/gettext/sv/LC_MESSAGES/activity.po index b657e677e..dc0433c33 100644 --- a/priv/gettext/sv/LC_MESSAGES/activity.po +++ b/priv/gettext/sv/LC_MESSAGES/activity.po @@ -302,17 +302,17 @@ msgstr "" msgid "The group %{group} was updated by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:47 msgid "The post %{post} from group %{group} was deleted by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:31 msgid "The post %{post} from group %{group} was published by %{profile}." msgstr "" -#, elixir-format, fuzzy +#, elixir-format #: lib/service/activity/renderer/post.ex:39 msgid "The post %{post} from group %{group} was updated by %{profile}." msgstr "" diff --git a/priv/gettext/sv/LC_MESSAGES/default.po b/priv/gettext/sv/LC_MESSAGES/default.po index dd9704f4a..20c48bb97 100644 --- a/priv/gettext/sv/LC_MESSAGES/default.po +++ b/priv/gettext/sv/LC_MESSAGES/default.po @@ -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" #, elixir-format -#: lib/web/email/event.ex:37 +#: lib/web/email/event.ex:36 msgid "Event %{title} has been updated" msgstr "Evenemanget %{title} har uppdaterats" @@ -326,12 +326,12 @@ msgid "What information do we collect?" msgstr "" #, elixir-format -#: lib/web/email/user.ex:176 +#: lib/web/email/user.ex:180 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "Mobilizon på %{instance}: bekräfta din e-postadress" #, elixir-format -#: lib/web/email/user.ex:152 +#: lib/web/email/user.ex:156 msgid "Mobilizon on %{instance}: email changed" msgstr "Mobilizon på %{instance}: e-postadressen har ändrats" @@ -1432,3 +1432,13 @@ msgstr "" #: lib/service/export/feed.ex:73 msgid "Public feed for %{instance}" 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 "" diff --git a/priv/gettext/sv/LC_MESSAGES/errors.po b/priv/gettext/sv/LC_MESSAGES/errors.po index 5555733f0..4d5d5fef8 100644 --- a/priv/gettext/sv/LC_MESSAGES/errors.po +++ b/priv/gettext/sv/LC_MESSAGES/errors.po @@ -115,7 +115,7 @@ msgid "Error while saving user settings" msgstr "Ett fel uppstod när användarinställningarna skulle sparas" #, elixir-format -#: lib/graphql/error.ex:90 lib/graphql/resolvers/group.ex: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 msgid "Group not found" msgstr "Gruppen kunde inte hittas" @@ -352,7 +352,7 @@ msgid "Comment is already deleted" msgstr "" #, 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" msgstr "" @@ -372,8 +372,8 @@ msgid "Event id not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:89 lib/graphql/resolvers/event.ex:284 -#: lib/graphql/resolvers/event.ex:328 +#: lib/graphql/error.ex:90 lib/graphql/resolvers/event.ex:313 +#: lib/graphql/resolvers/event.ex:358 msgid "Event not found" msgstr "" @@ -501,7 +501,7 @@ msgid "Token is not a valid UUID" msgstr "" #, 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" msgstr "" @@ -567,7 +567,7 @@ msgid "You cannot delete this comment" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:324 +#: lib/graphql/resolvers/event.ex:354 msgid "You cannot delete this event" msgstr "" @@ -627,7 +627,7 @@ msgid "You need to be logged-in to access resources" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:259 +#: lib/graphql/resolvers/event.ex:283 msgid "You need to be logged-in to create events" msgstr "" @@ -647,7 +647,7 @@ msgid "You need to be logged-in to create resources" msgstr "" #, 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" msgstr "" @@ -672,7 +672,7 @@ msgid "You need to be logged-in to leave an event" msgstr "" #, 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" msgstr "" @@ -712,47 +712,47 @@ msgid "This email is already used." msgstr "" #, elixir-format -#: lib/graphql/error.ex:88 +#: lib/graphql/error.ex:89 msgid "Post not found" msgstr "" #, elixir-format -#: lib/graphql/error.ex:75 +#: lib/graphql/error.ex:76 msgid "Invalid arguments passed" msgstr "" #, elixir-format -#: lib/graphql/error.ex:81 +#: lib/graphql/error.ex:82 msgid "Invalid credentials" msgstr "" #, elixir-format -#: lib/graphql/error.ex:79 +#: lib/graphql/error.ex:80 msgid "Reset your password to login" msgstr "" #, 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" msgstr "Resursen kunde inte hittas" #, elixir-format -#: lib/graphql/error.ex:93 +#: lib/graphql/error.ex:94 msgid "Something went wrong" msgstr "" #, elixir-format -#: lib/graphql/error.ex:74 +#: lib/graphql/error.ex:75 msgid "Unknown Resource" msgstr "" #, elixir-format -#: lib/graphql/error.ex:84 +#: lib/graphql/error.ex:85 msgid "You don't have permission to do this" msgstr "Du har inte behörighet att göra detta" #, elixir-format -#: lib/graphql/error.ex:76 +#: lib/graphql/error.ex:77 msgid "You need to be logged in" msgstr "Du måste vara inloggad" @@ -777,12 +777,12 @@ msgid "Profile is not administrator for the group" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:287 +#: lib/graphql/resolvers/event.ex:316 msgid "You can't edit this event." msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:290 +#: lib/graphql/resolvers/event.ex:319 msgid "You can't attribute this event to this profile." msgstr "" @@ -812,7 +812,7 @@ msgid "You must provide either an ID or a slug to access a discussion" msgstr "" #, elixir-format -#: lib/graphql/resolvers/event.ex:248 +#: lib/graphql/resolvers/event.ex:272 msgid "Organizer profile is not owned by the user" msgstr "" @@ -848,6 +848,16 @@ msgid "Unable to fetch resource details from this URL." msgstr "" #, 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" 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 ""