diff --git a/js/src/components/Report/ReportCard.vue b/js/src/components/Report/ReportCard.vue index fbc29daa3..1f305f30c 100644 --- a/js/src/components/Report/ReportCard.vue +++ b/js/src/components/Report/ReportCard.vue @@ -28,7 +28,7 @@ {{ $t("Reported by {reporter}", { reporter: report.reporter.preferredUsername }) }} </span> </div> - <div class="column" v-if="report.content">{{ report.content }}</div> + <div class="column" v-if="report.content" v-html="report.content" /> </div> </div> </div> diff --git a/js/src/components/Report/ReportModal.vue b/js/src/components/Report/ReportModal.vue index 26fa34a69..020725eb7 100644 --- a/js/src/components/Report/ReportModal.vue +++ b/js/src/components/Report/ReportModal.vue @@ -100,15 +100,15 @@ export default class ReportModal extends Vue { forward = false; - get translatedCancelText() { - return this.cancelText || this.$t("Cancel"); + get translatedCancelText(): string { + return this.cancelText || (this.$t("Cancel") as string); } - get translatedConfirmText() { - return this.confirmText || this.$t("Send the report"); + get translatedConfirmText(): string { + return this.confirmText || (this.$t("Send the report") as string); } - confirm() { + confirm(): void { this.onConfirm(this.content, this.forward); this.close(); } @@ -116,7 +116,7 @@ export default class ReportModal extends Vue { /** * Close the Dialog. */ - close() { + close(): void { this.isActive = false; this.$emit("close"); } diff --git a/js/src/graphql/report.ts b/js/src/graphql/report.ts index 43784c855..e0cdac446 100644 --- a/js/src/graphql/report.ts +++ b/js/src/graphql/report.ts @@ -114,7 +114,7 @@ export const REPORT = gql` export const CREATE_REPORT = gql` mutation CreateReport( - $eventId: ID! + $eventId: ID $reporterId: ID! $reportedId: ID! $content: String diff --git a/js/src/i18n/en_US.json b/js/src/i18n/en_US.json index ff959e12e..a379b32ee 100644 --- a/js/src/i18n/en_US.json +++ b/js/src/i18n/en_US.json @@ -773,5 +773,11 @@ "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.", "Visit event page": "Visit event page", "Remember my participation in this browser": "Remember my participation in this browser", - "Organized by": "Organized by" + "Organized by": "Organized by", + "Report this group": "Report this group", + "Group {groupTitle} reported": "Group {groupTitle} reported", + "Error while reporting group {groupTitle}": "Error while reporting group {groupTitle}", + "Reported group": "Reported group", + "You can only get invited to groups right now.": "You can only get invited to groups right now.", + "Join group": "Join group" } diff --git a/js/src/i18n/fr_FR.json b/js/src/i18n/fr_FR.json index 03ea86886..3cd54e786 100644 --- a/js/src/i18n/fr_FR.json +++ b/js/src/i18n/fr_FR.json @@ -810,5 +810,11 @@ "Will allow to display and manage your participation status on the event page when using this device. Uncheck if you're using a public device.": "Permet d'afficher et de gérer le statut de votre participation sur la page de l'événement lorsque vous utilisez cet appareil. Décochez si vous utilisez un appareil public.", "Visit event page": "Voir la page de l'événement", "Remember my participation in this browser": "Se souvenir de ma participation dans ce navigateur", - "Organized by": "Organisé par" + "Organized by": "Organisé par", + "Report this group": "Signaler ce groupe", + "Group {groupTitle} reported": "Groupe {groupTitle} signalé", + "Error while reporting group {groupTitle}": "Erreur lors du signalement du groupe {groupTitle}", + "Reported group": "Groupe signalé", + "You can only get invited to groups right now.": "Vous pouvez uniquement être invité aux groupes pour le moment.", + "Join group": "Rejoindre le groupe" } diff --git a/js/src/views/Event/Event.vue b/js/src/views/Event/Event.vue index 03a442144..84e6ae388 100644 --- a/js/src/views/Event/Event.vue +++ b/js/src/views/Event/Event.vue @@ -413,7 +413,7 @@ <report-modal :on-confirm="reportEvent" :title="$t('Report this event')" - :outside-domain="event.organizerActor.domain" + :outside-domain="domainForReport" @close="$refs.reportModal.close()" /> </b-modal> @@ -521,7 +521,7 @@ import { ParticipantRole, EventJoinOptions, } from "../../types/event.model"; -import { IPerson, Person, usernameWithDomain } from "../../types/actor"; +import { IActor, IPerson, Person, usernameWithDomain } from "../../types/actor"; import { GRAPHQL_API_ENDPOINT } from "../../api/_entrypoint"; import DateCalendarIcon from "../../components/Event/DateCalendarIcon.vue"; import EventCard from "../../components/Event/EventCard.vue"; @@ -786,7 +786,7 @@ export default class Event extends EventMixin { variables: { eventId: this.event.id, reporterId, - reportedId: this.event.organizerActor.id, + reportedId: this.actorForReport ? this.actorForReport.id : null, content, forward, }, @@ -1026,6 +1026,23 @@ export default class Event extends EventMixin { this.config && (this.currentActor.id !== undefined || this.config.anonymous.reports.allowed) ); } + + get actorForReport(): IActor | null { + if (this.event.attributedTo && this.event.attributedTo.id) { + return this.event.attributedTo; + } + if (this.event.organizerActor) { + return this.event.organizerActor; + } + return null; + } + + get domainForReport(): string | null { + if (this.actorForReport) { + return this.actorForReport.domain; + } + return null; + } } </script> <style lang="scss" scoped> diff --git a/js/src/views/Group/Group.vue b/js/src/views/Group/Group.vue index 3df6f06d7..2c335c3e5 100644 --- a/js/src/views/Group/Group.vue +++ b/js/src/views/Group/Group.vue @@ -93,8 +93,8 @@ > </p> </div> - <div class="block-column address" v-else-if="physicalAddress"> - <address> + <div class="block-column address" v-else> + <address v-if="physicalAddress"> <p class="addressDescription" :title="physicalAddress.poiInfos.name"> {{ physicalAddress.poiInfos.name }} </p> @@ -106,6 +106,27 @@ v-if="physicalAddress && physicalAddress.geom" >{{ $t("Show map") }}</span > + <p class="buttons"> + <b-tooltip + :label="$t('You can only get invited to groups right now.')" + position="is-bottom" + > + <b-button disabled type="is-primary">{{ $t("Join group") }}</b-button> + </b-tooltip> + <b-dropdown aria-role="list" position="is-bottom-left"> + <b-button slot="trigger" role="button" icon-right="dots-horizontal"> </b-button> + <b-dropdown-item + aria-role="listitem" + v-if="ableToReport" + @click="isReportModalActive = true" + > + <span> + {{ $t("Report") }} + <b-icon icon="flag" /> + </span> + </b-dropdown-item> + </b-dropdown> + </p> </div> <img v-if="group.banner && group.banner.url" :src="group.banner.url" alt="" /> </header> @@ -291,6 +312,14 @@ /> </div> </b-modal> + <b-modal :active.sync="isReportModalActive" has-modal-card ref="reportModal"> + <report-modal + :on-confirm="reportGroup" + :title="$t('Report this group')" + :outside-domain="group.domain" + @close="$refs.reportModal.close()" + /> + </b-modal> </div> </div> </template> @@ -319,8 +348,13 @@ import FolderItem from "@/components/Resource/FolderItem.vue"; import { Address } from "@/types/address.model"; import Invitations from "@/components/Group/Invitations.vue"; import addMinutes from "date-fns/addMinutes"; -import GroupSection from "../../components/Group/GroupSection.vue"; +import { CONFIG } from "@/graphql/config"; +import { CREATE_REPORT } from "@/graphql/report"; +import { IReport } from "@/types/report.model"; +import { IConfig } from "@/types/config.model"; import RouteName from "../../router/name"; +import GroupSection from "../../components/Group/GroupSection.vue"; +import ReportModal from "../../components/Report/ReportModal.vue"; @Component({ apollo: { @@ -346,6 +380,7 @@ import RouteName from "../../router/name"; }, }, currentActor: CURRENT_ACTOR_CLIENT, + config: CONFIG, }, components: { DiscussionListItem, @@ -358,6 +393,7 @@ import RouteName from "../../router/name"; ResourceItem, GroupSection, Invitations, + ReportModal, "map-leaflet": () => import(/* webpackChunkName: "map" */ "../../components/Map.vue"), }, metaInfo() { @@ -385,6 +421,8 @@ export default class Group extends Vue { group: IGroup = new GroupModel(); + config!: IConfig; + loading = true; RouteName = RouteName; @@ -393,6 +431,8 @@ export default class Group extends Vue { showMap = false; + isReportModalActive = false; + @Watch("currentActor") watchCurrentActor(currentActor: IActor, oldActor: IActor): void { if (currentActor.id && oldActor && currentActor.id !== oldActor.id) { @@ -414,6 +454,38 @@ export default class Group extends Vue { } } + async reportGroup(content: string, forward: boolean): Promise<void> { + this.isReportModalActive = false; + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore + this.$refs.reportModal.close(); + const groupTitle = this.group.name || usernameWithDomain(this.group); + let reporterId = null; + if (this.currentActor.id) { + reporterId = this.currentActor.id; + } else if (this.config.anonymous.reports.allowed) { + reporterId = this.config.anonymous.actorId; + } + if (!reporterId) return; + try { + await this.$apollo.mutate<IReport>({ + mutation: CREATE_REPORT, + variables: { + reporterId, + reportedId: this.group.id, + content, + forward, + }, + }); + this.$notifier.success(this.$t("Group {groupTitle} reported", { groupTitle }) as string); + } catch (error) { + console.error(error); + this.$notifier.error( + this.$t("Error while reporting group {groupTitle}", { groupTitle }) as string + ); + } + } + get groupTitle(): undefined | string { if (!this.group) return undefined; return this.group.name || this.group.preferredUsername; @@ -497,6 +569,12 @@ export default class Group extends Vue { if (!this.group.physicalAddress) return null; return new Address(this.group.physicalAddress); } + + get ableToReport(): boolean { + return ( + this.config && (this.currentActor.id !== undefined || this.config.anonymous.reports.allowed) + ); + } } </script> <style lang="scss" scoped> @@ -523,7 +601,6 @@ div.container { border: 2px solid $purple-2; padding: 10px 0; position: relative; - overflow: hidden; h1 { color: $purple-1; @@ -545,8 +622,10 @@ div.container { left: 0; top: 0; width: 100%; - height: auto; + height: 100%; opacity: 0.3; + object-fit: cover; + object-position: 50% 50%; } } @@ -571,6 +650,16 @@ div.container { cursor: pointer; } + p.buttons { + margin-top: 1rem; + justify-content: end; + align-content: space-between; + + & > span { + margin-right: 0.5rem; + } + } + address { font-style: normal; diff --git a/js/src/views/Moderation/Report.vue b/js/src/views/Moderation/Report.vue index 656e5407c..990d137db 100644 --- a/js/src/views/Moderation/Report.vue +++ b/js/src/views/Moderation/Report.vue @@ -43,8 +43,29 @@ <div class="table-container"> <table class="table is-striped is-fullwidth"> <tbody> - <tr> - <td>{{ $t("Reported identity") }}</td> + <tr v-if="report.reported.__typename === 'Group'"> + <td>{{ $t("Reported group") }}</td> + <td> + <router-link + :to="{ + name: RouteName.ADMIN_GROUP_PROFILE, + params: { id: report.reported.id }, + }" + > + <img + v-if="report.reported.avatar" + class="image" + :src="report.reported.avatar.url" + alt="" + /> + {{ displayNameAndUsername(report.reported) }} + </router-link> + </td> + </tr> + <tr v-else> + <td> + {{ $t("Reported identity") }} + </td> <td> <router-link :to="{ @@ -58,7 +79,7 @@ :src="report.reported.avatar.url" alt="" /> - @{{ report.reported.preferredUsername }} + {{ displayNameAndUsername(report.reported) }} </router-link> </td> </tr> @@ -80,7 +101,7 @@ :src="report.reporter.avatar.url" alt="" /> - @{{ report.reporter.preferredUsername }} + {{ displayNameAndUsername(report.reporter) }} </router-link> </td> </tr> @@ -157,38 +178,40 @@ > </div> - <ul v-for="comment in report.comments" v-if="report.comments.length > 0" :key="comment.id"> - <li> - <div class="box" v-if="comment"> - <article class="media"> - <div class="media-left"> - <figure class="image is-48x48" v-if="comment.actor && comment.actor.avatar"> - <img :src="comment.actor.avatar.url" alt="Image" /> - </figure> - <b-icon class="media-left" v-else size="is-large" icon="account-circle" /> - </div> - <div class="media-content"> - <div class="content"> - <span v-if="comment.actor"> - <strong>{{ comment.actor.name }}</strong> - <small>@{{ comment.actor.preferredUsername }}</small> - </span> - <span v-else>{{ $t("Unknown actor") }}</span> - <br /> - <p v-html="comment.text" /> + <div v-if="report.comments.length > 0"> + <ul v-for="comment in report.comments" :key="comment.id"> + <li> + <div class="box" v-if="comment"> + <article class="media"> + <div class="media-left"> + <figure class="image is-48x48" v-if="comment.actor && comment.actor.avatar"> + <img :src="comment.actor.avatar.url" alt="Image" /> + </figure> + <b-icon class="media-left" v-else size="is-large" icon="account-circle" /> </div> - <b-button - type="is-danger" - @click="confirmCommentDelete(comment)" - icon-left="delete" - size="is-small" - >{{ $t("Delete") }}</b-button - > - </div> - </article> - </div> - </li> - </ul> + <div class="media-content"> + <div class="content"> + <span v-if="comment.actor"> + <strong>{{ comment.actor.name }}</strong> + <small>@{{ comment.actor.preferredUsername }}</small> + </span> + <span v-else>{{ $t("Unknown actor") }}</span> + <br /> + <p v-html="comment.text" /> + </div> + <b-button + type="is-danger" + @click="confirmCommentDelete(comment)" + icon-left="delete" + size="is-small" + >{{ $t("Delete") }}</b-button + > + </div> + </article> + </div> + </li> + </ul> + </div> <h2 class="title" v-if="report.notes.length > 0">{{ $t("Notes") }}</h2> <div class="box note" v-for="note in report.notes" :id="`note-${note.id}`" :key="note.id"> @@ -220,7 +243,7 @@ import { Component, Prop, Vue } from "vue-property-decorator"; import { CREATE_REPORT_NOTE, REPORT, UPDATE_REPORT } from "@/graphql/report"; import { IReport, IReportNote, ReportStatusEnum } from "@/types/report.model"; import { CURRENT_ACTOR_CLIENT } from "@/graphql/actor"; -import { IPerson, ActorType } from "@/types/actor"; +import { IPerson, ActorType, displayNameAndUsername } from "@/types/actor"; import { DELETE_EVENT } from "@/graphql/event"; import { uniq } from "lodash"; import { nl2br } from "@/utils/html"; @@ -272,7 +295,9 @@ export default class Report extends Vue { noteContent = ""; - addNote() { + displayNameAndUsername = displayNameAndUsername; + + addNote(): void { try { this.$apollo.mutate<{ createReportNote: IReportNote }>({ mutation: CREATE_REPORT_NOTE, @@ -312,7 +337,7 @@ export default class Report extends Vue { } } - confirmEventDelete() { + confirmEventDelete(): void { this.$buefy.dialog.confirm({ title: this.$t("Deleting event") as string, message: this.$t( @@ -325,7 +350,7 @@ export default class Report extends Vue { }); } - confirmCommentDelete(comment: IComment) { + confirmCommentDelete(comment: IComment): void { this.$buefy.dialog.confirm({ title: this.$t("Deleting comment") as string, message: this.$t( @@ -338,7 +363,7 @@ export default class Report extends Vue { }); } - async deleteEvent() { + async deleteEvent(): Promise<void> { if (!this.report.event || !this.report.event.id) return; const eventTitle = this.report.event.title; @@ -364,7 +389,7 @@ export default class Report extends Vue { } } - async deleteComment(comment: IComment) { + async deleteComment(comment: IComment): Promise<void> { try { await this.$apollo.mutate({ mutation: DELETE_COMMENT, @@ -379,7 +404,7 @@ export default class Report extends Vue { } } - async updateReport(status: ReportStatusEnum) { + async updateReport(status: ReportStatusEnum): Promise<void> { try { await this.$apollo.mutate({ mutation: UPDATE_REPORT, @@ -415,27 +440,6 @@ export default class Report extends Vue { console.error(error); } } - - // TODO make me a global function - formatDate(value: string) { - return value - ? new Date(value).toLocaleString(undefined, { - weekday: "long", - year: "numeric", - month: "long", - day: "numeric", - }) - : null; - } - - formatTime(value: string) { - return value - ? new Date(value).toLocaleTimeString(undefined, { - hour: "numeric", - minute: "numeric", - }) - : null; - } } </script> <style lang="scss" scoped> diff --git a/js/src/views/Moderation/ReportList.vue b/js/src/views/Moderation/ReportList.vue index b4af54dc4..c8ea560a5 100644 --- a/js/src/views/Moderation/ReportList.vue +++ b/js/src/views/Moderation/ReportList.vue @@ -44,7 +44,7 @@ </div> </template> <script lang="ts"> -import { Component, Prop, Vue, Watch } from "vue-property-decorator"; +import { Component, Vue, Watch } from "vue-property-decorator"; import { IReport, ReportStatusEnum } from "@/types/report.model"; import { REPORTS } from "@/graphql/report"; import ReportCard from "@/components/Report/ReportCard.vue"; @@ -77,7 +77,7 @@ export default class ReportList extends Vue { filterReports: ReportStatusEnum = ReportStatusEnum.OPEN; @Watch("$route.params.filter", { immediate: true }) - onRouteFilterChanged(val: string) { + onRouteFilterChanged(val: string): void { if (!val) return; const filter = val.toUpperCase(); if (filter in ReportStatusEnum) { @@ -86,7 +86,7 @@ export default class ReportList extends Vue { } @Watch("filterReports", { immediate: true }) - async onFilterChanged(val: string) { + async onFilterChanged(val: string): Promise<void> { await this.$router.push({ name: RouteName.REPORTS, params: { filter: val.toLowerCase() }, diff --git a/lib/mobilizon/actors/actor.ex b/lib/mobilizon/actors/actor.ex index 9d49973f8..869e35fc1 100644 --- a/lib/mobilizon/actors/actor.ex +++ b/lib/mobilizon/actors/actor.ex @@ -204,7 +204,7 @@ defmodule Mobilizon.Actors.Actor do end def display_name_and_username(%__MODULE__{name: name} = actor) do - "#{name} (#{preferred_username_and_domain(actor)})" + "#{name} (@#{preferred_username_and_domain(actor)})" end @doc """ diff --git a/lib/web/email/admin.ex b/lib/web/email/admin.ex index 00268acc8..782c32709 100644 --- a/lib/web/email/admin.ex +++ b/lib/web/email/admin.ex @@ -16,7 +16,8 @@ defmodule Mobilizon.Web.Email.Admin do alias Mobilizon.Web.{Email, Gettext} @spec report(User.t(), Report.t(), String.t()) :: Bamboo.Email.t() - def report(%User{email: email}, %Report{} = report, locale \\ "en") do + def report(%User{email: email} = user, %Report{} = report, default_locale \\ "en") do + locale = Map.get(user, :locale, default_locale) Gettext.put_locale(locale) subject = diff --git a/lib/web/router.ex b/lib/web/router.ex index df4b06a54..37d5e4ab4 100644 --- a/lib/web/router.ex +++ b/lib/web/router.ex @@ -147,7 +147,7 @@ defmodule Mobilizon.Web.Router do get("/events/:uuid/edit", PageController, :edit_event) # This is a hack to ease link generation into emails - get("/moderation/reports/:id", PageController, :moderation_report) + get("/moderation/report/:id", PageController, :moderation_report) get("/participation/email/confirm/:token", PageController, :participation_email_confirmation) diff --git a/lib/web/templates/email/report.html.eex b/lib/web/templates/email/report.html.eex index e883ded8b..1d1775ef5 100644 --- a/lib/web/templates/email/report.html.eex +++ b/lib/web/templates/email/report.html.eex @@ -38,12 +38,34 @@ <%= if @report.reporter.type == :Application and @report.reporter.preferred_username == "relay" do %> <%= gettext("Someone on <b>%{instance}</b> reported the following content for you to analyze:", instance: @report.reporter.domain) |> raw %> <% else %> - <%= gettext("<b>%{reporter_name}</b> (%{reporter_username}) reported the following content.", reporter_name: @report.reporter.name, reporter_username: Mobilizon.Actors.Actor.preferred_username_and_domain(@report.reporter)) |> raw %> + <%= gettext("<b>%{reporter}</b> reported the following content.", reporter: Mobilizon.Actors.Actor.display_name_and_username(@report.reporter)) |> raw %> <% end %> </p> </td> </tr> - <%= if Map.has_key?(@report, :event) do %> + <%= if @report.reported do %> + <tr> + <td bgcolor="#ffffff" align="left" style="padding: 20px 30px 0px 30px; color: #474467; font-family: 'Roboto', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;" > + <p style="margin: 0;"> + <%= if @report.reported.type == :Group do %> + <h3><%= gettext "Group reported" %></h3> + <a href="<%= "#{Mobilizon.Web.Endpoint.url()}/@#{Mobilizon.Actors.Actor.preferred_username_and_domain(@report.reported)}" %>" target="_blank"> + <b><%= Mobilizon.Actors.Actor.display_name_and_username(@report.reported) %></b> + </a> + <% else %> + <h3><%= gettext "Profile reported" %></h3> + <b><%= Mobilizon.Actors.Actor.display_name_and_username(@report.reported) %></b> + <% end %> + </p> + <table cellspacing="0" cellpadding="0" border="0" width="100%" style="width: 100% !important;"> + <tr> + <td align="left" valign="top" width="600px" height="1" style="background-color: #f0f0f0; border-collapse:collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-line-height-rule: exactly; line-height: 1px;"><!--[if gte mso 15]> <![endif]--></td> + </tr> + </table> + </td> + </tr> + <% end %> + <%= if Map.has_key?(@report, :event) and @report.event do %> <tr> <td bgcolor="#ffffff" align="left" style="padding: 20px 30px 0px 30px; color: #474467; font-family: 'Roboto', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;" > <p style="margin: 0;"> @@ -82,7 +104,7 @@ <td bgcolor="#ffffff" align="left" style="padding: 20px 30px 0px 30px; color: #474467; font-family: 'Roboto', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;" > <p style="margin: 0"> <h3><%= gettext "Reasons for report" %></h3> - <%= @report.content %> + <%= @report.content |> raw %> </p> <table cellspacing="0" cellpadding="0" border="0" width="100%" style="width: 100% !important;"> <tr> diff --git a/lib/web/templates/email/report.text.eex b/lib/web/templates/email/report.text.eex index f41344f2c..43014549f 100644 --- a/lib/web/templates/email/report.text.eex +++ b/lib/web/templates/email/report.text.eex @@ -1,6 +1,13 @@ -<%= gettext "New report from %{reporter} on %{instance}", reporter: @report.reporter.preferred_username, instance: @instance[:name] %> +<%= gettext "New report from %{reporter} on %{instance}", reporter: Mobilizon.Actors.Actor.display_name_and_username(@report.reporter), instance: @instance[:name] %> -- -<%= if Map.has_key?(@report, :event) do %> +<%= if @report.reported do %> + <%= if @report.reported.type == :Group do %> + <%= gettext "Group %{group} was reported", group: Mobilizon.Actors.Actor.display_name_and_username(@report.reported) %> + <% else %> + <%= gettext "Profile %{profile} was reported", group: Mobilizon.Actors.Actor.display_name_and_username(@report.reported) %> + <% end %> +<% end %> +<%= if Map.has_key?(@report, :event) and @report.event do %> <%= gettext "Event" %> <%= @report.event.title %> <% end %> diff --git a/priv/gettext/ar/LC_MESSAGES/default.po b/priv/gettext/ar/LC_MESSAGES/default.po index b38192127..79f7fda3c 100644 --- a/priv/gettext/ar/LC_MESSAGES/default.po +++ b/priv/gettext/ar/LC_MESSAGES/default.po @@ -26,7 +26,7 @@ msgid "Feed for %{email} on Mobilizon" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "%{title} لِـ %{creator}" @@ -42,13 +42,13 @@ msgid "Ask the community on Framacolibri" msgstr "أطلب مِن المجتمَع على Framacolibri" #, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "التعليقات" #, elixir-format #: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "الفعالية" @@ -58,7 +58,7 @@ msgid "Instructions to reset your password on %{instance}" msgstr "" #, elixir-format -#: lib/web/templates/email/report.text.eex:14 +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "السبب" @@ -78,7 +78,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "" #, elixir-format -#: lib/web/email/admin.ex:23 +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "" @@ -739,7 +739,7 @@ msgid "Your content is yours" msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:58 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "" @@ -766,11 +766,6 @@ msgstr "" msgid "You created an account on <b>%{host}</b> with this email address. You are one click away from activating it." msgstr "" -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "" - #, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" @@ -797,7 +792,7 @@ msgid "Please do not use it for real purposes." msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:45 +#: 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:131 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 @@ -868,7 +863,7 @@ msgid "Event update!" msgstr "تم تحديث الفعالية!" #, elixir-format -#: lib/web/templates/email/report.html.eex:66 +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "" @@ -957,7 +952,7 @@ msgid "New email confirmation" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:84 +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "" @@ -1018,12 +1013,12 @@ msgid "Verify your email address" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "إعرض التقرير" #, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "إعرض التقرير" @@ -1290,7 +1285,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu msgstr "" #, elixir-format -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #: 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 "" @@ -1305,3 +1299,33 @@ msgstr "لقد قمتَ بتقديم طلب للمشاركة في فعالية % #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "" + +#, elixir-format, fuzzy +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "" + +#, elixir-format, fuzzy +#: 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 "" diff --git a/priv/gettext/be/LC_MESSAGES/default.po b/priv/gettext/be/LC_MESSAGES/default.po index 139a788bf..73682a77f 100644 --- a/priv/gettext/be/LC_MESSAGES/default.po +++ b/priv/gettext/be/LC_MESSAGES/default.po @@ -23,7 +23,7 @@ msgid "Feed for %{email} on Mobilizon" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "" @@ -39,13 +39,13 @@ msgid "Ask the community on Framacolibri" msgstr "" #, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "" #, elixir-format #: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "" @@ -55,7 +55,7 @@ msgid "Instructions to reset your password on %{instance}" msgstr "" #, elixir-format -#: lib/web/templates/email/report.text.eex:14 +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "" @@ -75,7 +75,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "" #, elixir-format -#: lib/web/email/admin.ex:23 +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "" @@ -721,7 +721,7 @@ msgid "Your content is yours" msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:58 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "" @@ -748,11 +748,6 @@ msgstr "" msgid "You created an account on <b>%{host}</b> with this email address. You are one click away from activating it." msgstr "" -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "" - #, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" @@ -779,7 +774,7 @@ msgid "Please do not use it for real purposes." msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:45 +#: 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:131 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 @@ -844,7 +839,7 @@ msgid "Event update!" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:66 +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "" @@ -933,7 +928,7 @@ msgid "New email confirmation" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:84 +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "" @@ -994,12 +989,12 @@ msgid "Verify your email address" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "" #, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "" @@ -1266,7 +1261,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu msgstr "" #, elixir-format -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #: 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 "" @@ -1281,3 +1275,33 @@ msgstr "" #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "" + +#, elixir-format, fuzzy +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "" + +#, elixir-format, fuzzy +#: 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 "" diff --git a/priv/gettext/ca/LC_MESSAGES/default.po b/priv/gettext/ca/LC_MESSAGES/default.po index 767c869f5..fc614d6a4 100644 --- a/priv/gettext/ca/LC_MESSAGES/default.po +++ b/priv/gettext/ca/LC_MESSAGES/default.po @@ -27,7 +27,7 @@ msgid "Feed for %{email} on Mobilizon" msgstr "Flux per %{email} a Mobilizon" #, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "%{title} de %{creator}" @@ -43,13 +43,13 @@ msgid "Ask the community on Framacolibri" msgstr "Pregunta a la comunitat a Framacolibri" #, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "Comentaris" #, elixir-format #: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "Activitat" @@ -59,7 +59,7 @@ msgid "Instructions to reset your password on %{instance}" msgstr "Instruccions per canviar la contrasenya a %{instance}" #, elixir-format -#: lib/web/templates/email/report.text.eex:14 +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "Raó" @@ -81,7 +81,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "Instruccions per confirmar el teu compte de Mobilizon a %{instance}" #, elixir-format -#: lib/web/email/admin.ex:23 +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "S'ha denunciat una activitat al servidor de Mobilizon %{instance}" @@ -726,7 +726,7 @@ msgid "Your content is yours" msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:58 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "" @@ -754,11 +754,6 @@ msgid "You created an account on <b>%{host}</b> with this email address. You are msgstr "" "Has creat un compte a %{host} amb aquest mail. Estàs a un clic d'activar-lo." -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "%{reporter_name} (%{reporter_username}) ha denunciat aquest contingut." - #, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" @@ -788,7 +783,7 @@ msgid "Please do not use it for real purposes." msgstr "No ho facis servir més que proves, sisplau" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:45 +#: 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:131 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 @@ -855,7 +850,7 @@ msgid "Event update!" msgstr "S'ha actualitzat l'activitat!" #, elixir-format -#: lib/web/templates/email/report.html.eex:66 +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "" @@ -950,7 +945,7 @@ msgid "New email confirmation" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:84 +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "" @@ -1011,12 +1006,12 @@ msgid "Verify your email address" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "Mostra la denúncia" #, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "Mostra la denúncia" @@ -1286,7 +1281,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu msgstr "" #, elixir-format -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #: 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 "" @@ -1301,3 +1295,33 @@ msgstr "Has soŀlicitat participar a l'activitat %{title}." #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "T'han aprovat la participació a %{title}" + +#, elixir-format, fuzzy +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "%{reporter_name} (%{reporter_username}) ha denunciat aquest contingut." + +#, elixir-format +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "" + +#, elixir-format, fuzzy +#: 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 "" diff --git a/priv/gettext/cs/LC_MESSAGES/default.po b/priv/gettext/cs/LC_MESSAGES/default.po index 9a0fda1be..dda6eccbb 100644 --- a/priv/gettext/cs/LC_MESSAGES/default.po +++ b/priv/gettext/cs/LC_MESSAGES/default.po @@ -23,7 +23,7 @@ msgid "Feed for %{email} on Mobilizon" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "" @@ -39,13 +39,13 @@ msgid "Ask the community on Framacolibri" msgstr "" #, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "" #, elixir-format #: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "" @@ -55,7 +55,7 @@ msgid "Instructions to reset your password on %{instance}" msgstr "" #, elixir-format -#: lib/web/templates/email/report.text.eex:14 +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "" @@ -75,7 +75,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "" #, elixir-format -#: lib/web/email/admin.ex:23 +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "" @@ -721,7 +721,7 @@ msgid "Your content is yours" msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:58 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "" @@ -748,11 +748,6 @@ msgstr "" msgid "You created an account on <b>%{host}</b> with this email address. You are one click away from activating it." msgstr "" -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "" - #, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" @@ -779,7 +774,7 @@ msgid "Please do not use it for real purposes." msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:45 +#: 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:131 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 @@ -844,7 +839,7 @@ msgid "Event update!" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:66 +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "" @@ -933,7 +928,7 @@ msgid "New email confirmation" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:84 +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "" @@ -994,12 +989,12 @@ msgid "Verify your email address" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "" #, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "" @@ -1266,7 +1261,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu msgstr "" #, elixir-format -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #: 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 "" @@ -1281,3 +1275,33 @@ msgstr "" #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "" + +#, elixir-format, fuzzy +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "" + +#, elixir-format, fuzzy +#: 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 "" diff --git a/priv/gettext/de/LC_MESSAGES/default.po b/priv/gettext/de/LC_MESSAGES/default.po index 332249e4a..41624eef9 100644 --- a/priv/gettext/de/LC_MESSAGES/default.po +++ b/priv/gettext/de/LC_MESSAGES/default.po @@ -28,7 +28,7 @@ msgid "Feed for %{email} on Mobilizon" msgstr "Feed für %{email} auf Mobilizon" #, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "%{title} von %{creator}" @@ -44,13 +44,13 @@ msgid "Ask the community on Framacolibri" msgstr "Frag die Gemeinschaft auf Framacolibri" #, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "Kommentare" #, elixir-format #: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "Veranstaltung" @@ -60,7 +60,7 @@ msgid "Instructions to reset your password on %{instance}" msgstr "Anweisungen um dein Passwort auf %{instance} zurückzusetzen" #, elixir-format -#: lib/web/templates/email/report.text.eex:14 +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "Begründung" @@ -82,7 +82,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "Anweisungen um deinen Mobilizon-Account auf %{instance} zu bestätigen" #, elixir-format -#: lib/web/email/admin.ex:23 +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "Neue Meldung auf der Mobilizon-Instanz %{instance}" @@ -731,7 +731,7 @@ msgid "Your content is yours" msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:58 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "" @@ -760,12 +760,6 @@ msgstr "" "Du hast einen Account auf %{host} mit dieser E-Mail-Adresse. Du bist nur ein " "Klick von der Aktivierung entfernt." -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "" -"%{reporter_name} (%{reporter_username}) hat den folgenden Inhalt gemeldet." - #, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" @@ -796,7 +790,7 @@ msgid "Please do not use it for real purposes." msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:45 +#: 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:131 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 @@ -863,7 +857,7 @@ msgid "Event update!" msgstr "Veranstaltung aktualisiert!" #, elixir-format -#: lib/web/templates/email/report.html.eex:66 +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "" @@ -958,7 +952,7 @@ msgid "New email confirmation" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:84 +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "" @@ -1019,12 +1013,12 @@ msgid "Verify your email address" msgstr "Bestätig E-Mail Adresse" #, elixir-format -#: lib/web/templates/email/report.html.eex:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "Meldung ansehen" #, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "Meldung ansehen" @@ -1294,7 +1288,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu msgstr "" #, elixir-format -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #: 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 "" @@ -1309,3 +1302,34 @@ msgstr "Du hast angefragt, an der Veranstaltung %{title} teilzunehmen." #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "Deine Teilnahme an der Veranstaltung %{title}wurde akzeptiert" + +#, elixir-format, fuzzy +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "" +"%{reporter_name} (%{reporter_username}) hat den folgenden Inhalt gemeldet." + +#, elixir-format +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "" + +#, elixir-format, fuzzy +#: 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 "" diff --git a/priv/gettext/default.pot b/priv/gettext/default.pot index e1a012cac..c6cc3f5c0 100644 --- a/priv/gettext/default.pot +++ b/priv/gettext/default.pot @@ -9,7 +9,7 @@ msgid "Feed for %{email} on Mobilizon" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "" @@ -25,13 +25,13 @@ msgid "Ask the community on Framacolibri" msgstr "" #, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "" #, elixir-format #: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "" @@ -41,7 +41,7 @@ msgid "Instructions to reset your password on %{instance}" msgstr "" #, elixir-format -#: lib/web/templates/email/report.text.eex:14 +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "" @@ -61,7 +61,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "" #, elixir-format -#: lib/web/email/admin.ex:23 +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "" @@ -702,7 +702,7 @@ msgid "Your content is yours" msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:58 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "" @@ -729,11 +729,6 @@ msgstr "" msgid "You created an account on <b>%{host}</b> with this email address. You are one click away from activating it." msgstr "" -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "" - #, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" @@ -760,7 +755,7 @@ msgid "Please do not use it for real purposes." msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:45 +#: 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:131 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 @@ -823,7 +818,7 @@ msgid "Event update!" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:66 +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "" @@ -912,7 +907,7 @@ msgid "New email confirmation" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:84 +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "" @@ -973,12 +968,12 @@ msgid "Verify your email address" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "" #, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "" @@ -1245,7 +1240,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu msgstr "" #, elixir-format -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #: 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 "" @@ -1260,3 +1254,33 @@ msgstr "" #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "" + +#, 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 "" diff --git a/priv/gettext/en/LC_MESSAGES/default.po b/priv/gettext/en/LC_MESSAGES/default.po index 890bec4ec..01e4686d4 100644 --- a/priv/gettext/en/LC_MESSAGES/default.po +++ b/priv/gettext/en/LC_MESSAGES/default.po @@ -32,7 +32,7 @@ msgid "Feed for %{email} on Mobilizon" msgstr "Feed for %{email} on Mobilizon" #, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "%{title} by %{creator}" @@ -48,13 +48,13 @@ msgid "Ask the community on Framacolibri" msgstr "Ask the community on Framacolibri" #, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "Comments" #, elixir-format #: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "Event" @@ -64,7 +64,7 @@ msgid "Instructions to reset your password on %{instance}" msgstr "Instructions to reset your password on %{instance}" #, elixir-format -#: lib/web/templates/email/report.text.eex:14 +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "Reason" @@ -84,7 +84,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "Instructions to confirm your Mobilizon account on %{instance}" #, elixir-format -#: lib/web/email/admin.ex:23 +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "New report on Mobilizon instance %{instance}" @@ -725,7 +725,7 @@ msgid "Your content is yours" msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:58 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "" @@ -752,11 +752,6 @@ msgstr "Need some help? Something not working properly?" msgid "You created an account on <b>%{host}</b> with this email address. You are one click away from activating it." msgstr "You created an account on %{host} with this email address. You are one click away from activating it." -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "%{reporter_name} (%{reporter_username}) reported the following content." - #, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" @@ -783,7 +778,7 @@ msgid "Please do not use it for real purposes." msgstr "Please do not use it in any real way" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:45 +#: 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:131 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 @@ -846,7 +841,7 @@ msgid "Event update!" msgstr "Event updated!" #, elixir-format -#: lib/web/templates/email/report.html.eex:66 +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "" @@ -935,7 +930,7 @@ msgid "New email confirmation" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:84 +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "" @@ -996,12 +991,12 @@ msgid "Verify your email address" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "View the report" #, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "View the report" @@ -1268,7 +1263,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu msgstr "" #, elixir-format -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #: 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 "" @@ -1283,3 +1277,33 @@ msgstr "You requested to participate in event %{title}." #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "Your participation to event %{title} has been approved" + +#, elixir-format, fuzzy +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "%{reporter_name} (%{reporter_username}) reported the following content." + +#, elixir-format +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "" + +#, elixir-format, fuzzy +#: 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 "" diff --git a/priv/gettext/es/LC_MESSAGES/default.po b/priv/gettext/es/LC_MESSAGES/default.po index 76609965f..bb2a98c32 100644 --- a/priv/gettext/es/LC_MESSAGES/default.po +++ b/priv/gettext/es/LC_MESSAGES/default.po @@ -27,7 +27,7 @@ msgid "Feed for %{email} on Mobilizon" msgstr "Feed para% {email} en Mobilizon" #, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "%{title} por %{creator}" @@ -43,13 +43,13 @@ msgid "Ask the community on Framacolibri" msgstr "Preguntar a la comunidad en framacolibri" #, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "Comentarios" #, elixir-format #: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "Evento" @@ -59,7 +59,7 @@ msgid "Instructions to reset your password on %{instance}" msgstr "Instrucciones para restablecer su contraseña en %{instance}" #, elixir-format -#: lib/web/templates/email/report.text.eex:14 +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "Razón" @@ -81,7 +81,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "Instrucciones para confirmar su cuenta Mobilizon en %{instance}" #, elixir-format -#: lib/web/email/admin.ex:23 +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "Nuevo informe sobre la instancia Mobilizon %{instance}" @@ -896,7 +896,7 @@ msgid "Your content is yours" msgstr "Tu contenido es tuyo" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:58 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "Confirmar mi dirección de correo electrónico" @@ -927,13 +927,6 @@ msgstr "" "Creó una cuenta en <b>% {host} </b> con esta dirección de correo " "electrónico. Estás a un clic de activarlo." -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "" -"<b>% {reporter_name} </b> (% {reporter_username}) informó el siguiente " -"contenido." - #, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" @@ -965,7 +958,7 @@ msgid "Please do not use it for real purposes." msgstr "Por favor no lo use de ninguna manera real." #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:45 +#: 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:131 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 @@ -1034,7 +1027,7 @@ msgid "Event update!" msgstr "¡Evento actualizado!" #, elixir-format -#: lib/web/templates/email/report.html.eex:66 +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "Comentarios marcados" @@ -1143,7 +1136,7 @@ msgid "New email confirmation" msgstr "Nueva confirmación de correo electrónico" #, elixir-format -#: lib/web/templates/email/report.html.eex:84 +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "Razones para informar" @@ -1207,12 +1200,12 @@ msgid "Verify your email address" msgstr "Verifica tu dirección de correo electrónico" #, elixir-format -#: lib/web/templates/email/report.html.eex:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "Ver el informe" #, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "Ver el informe:" @@ -1584,7 +1577,6 @@ msgstr "" "medida en que estos destinatarios residen en un servidor diferente a este." #, elixir-format -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #: 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 "" @@ -1599,3 +1591,35 @@ msgstr "Solicitaste participar en el evento %{title}." #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "Su participación en el evento %{title} ha sido aprobada" + +#, elixir-format, fuzzy +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "" +"<b>% {reporter_name} </b> (% {reporter_username}) informó el siguiente " +"contenido." + +#, elixir-format +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "" + +#, elixir-format, fuzzy +#: 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 "" diff --git a/priv/gettext/fi/LC_MESSAGES/default.po b/priv/gettext/fi/LC_MESSAGES/default.po index 9a2cfc3f0..8fd541e16 100644 --- a/priv/gettext/fi/LC_MESSAGES/default.po +++ b/priv/gettext/fi/LC_MESSAGES/default.po @@ -27,7 +27,7 @@ msgid "Feed for %{email} on Mobilizon" msgstr "Mobilizon-syöte osoitteeseen %{email}" #, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "%{title} luojalta %{creator}" @@ -43,13 +43,13 @@ msgid "Ask the community on Framacolibri" msgstr "Kysy yhteisöltä Framacolibrissa" #, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "Kommentit" #, elixir-format #: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "Tapahtuma" @@ -59,7 +59,7 @@ msgid "Instructions to reset your password on %{instance}" msgstr "Ohjeet salasanan palauttamiseen palvelimella %{instance}" #, elixir-format -#: lib/web/templates/email/report.text.eex:14 +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "Syy" @@ -81,7 +81,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "Ohjeet Mobilizon-tilin vahvistamiseen palvelimella %{instance}" #, elixir-format -#: lib/web/email/admin.ex:23 +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "Uusi raportti Mobilizon-palvelimella %{instance}" @@ -878,7 +878,7 @@ msgid "Your content is yours" msgstr "Sisältösi kuuluu sinulle" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:58 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "Vahvista sähköpostiosoite" @@ -909,12 +909,6 @@ msgstr "" "Loit palvelimelle <b>%{host}</b> tilin tällä sähköpostiosoitteella. Aktivoi " "se yhdellä napsautuksella." -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "" -"<b>%{reporter_name}</b> (%{reporter_username}) raportoi seuraavan sisällön." - #, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" @@ -945,7 +939,7 @@ msgid "Please do not use it for real purposes." msgstr "Älä käytä todellisiin tarkoituksiin." #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:45 +#: 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:131 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 @@ -1013,7 +1007,7 @@ msgid "Event update!" msgstr "Tapahtuma päivitetty!" #, elixir-format -#: lib/web/templates/email/report.html.eex:66 +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "Merkityt kommentit" @@ -1122,7 +1116,7 @@ msgid "New email confirmation" msgstr "Uuden sähköpostiosoitteen vahvistaminen" #, elixir-format -#: lib/web/templates/email/report.html.eex:84 +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "Raportin syy" @@ -1185,12 +1179,12 @@ msgid "Verify your email address" msgstr "Vahvista sähköpostiosoite" #, elixir-format -#: lib/web/templates/email/report.html.eex:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "Näytä raportti" #, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "Näytä raportti:" @@ -1542,7 +1536,6 @@ msgstr "" "palvelinta käyttäviä jäseniä." #, elixir-format -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #: 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 "" @@ -1557,3 +1550,34 @@ msgstr "Lähetit pyynnön osallistua tapahtumaan %{title}." #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "Osallistumisesi tapahtumaan %{title} on hyväksytty" + +#, elixir-format, fuzzy +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "" +"<b>%{reporter_name}</b> (%{reporter_username}) raportoi seuraavan sisällön." + +#, elixir-format +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "" + +#, elixir-format, fuzzy +#: 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 "" diff --git a/priv/gettext/fr/LC_MESSAGES/default.po b/priv/gettext/fr/LC_MESSAGES/default.po index 41cee8e78..0cfe26362 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: 2020-09-29 17:07+0200\n" +"PO-Revision-Date: 2020-09-30 14:45+0200\n" "Last-Translator: Thomas Citharel <thomas.citharel@framasoft.org>\n" "Language-Team: French <https://weblate.framasoft.org/projects/mobilizon/backend/fr/>\n" "Language: fr\n" @@ -20,1211 +20,948 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Poedit 2.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/service/export/feed.ex:170 msgid "Feed for %{email} on Mobilizon" msgstr "Flux pour %{email} sur Mobilizon" -#, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: 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:121 -#: lib/web/templates/email/email.text.eex:14 +#: lib/web/templates/email/email.html.eex:121 lib/web/templates/email/email.text.eex:14 msgid "Ask the community on Framacolibri" msgstr "Demander à la communauté sur Framacolibri" -#, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "Commentaires" -#, elixir-format -#: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/event_updated.html.eex:62 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:14 +#: 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:23 +#: 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:113 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:71 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:35 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:88 -#: lib/web/templates/email/email.text.eex:6 +#: lib/web/templates/email/email.html.eex:88 lib/web/templates/email/email.text.eex:6 msgid "This is a demonstration site to test the beta version of Mobilizon." msgstr "Ceci est un site de démonstration permettant de tester la version bêta de Mobilizon." -#, elixir-format #: lib/web/templates/email/email.html.eex:85 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 (<a href=\"https://en.wikipedia.org/wiki/General_Data_Protection_Regulation\">General Data Protection Regulation</a>) 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 (<a href=\"https://fr.wikipedia.org/wiki/R%C3%A8glement_g%C3%A9n%C3%A9ral_sur_la_protection_des_donn%C3%A9es\">Règlement général sur la protection des données</a>), 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 (<a href=\"https://en.wikipedia.org/wiki/Children%27s_Online_Privacy_Protection_Act\">Children's Online Privacy Protection Act</a>) 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 (<a href=\"https://en.wikipedia.org/wiki/Children%27s_Online_Privacy_Protection_Act\">Children's Online Privacy Protection Act</a>) 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 les enfants" -#, 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 fournissez peut être utilisée pour vous envoyer des informations, des mises à jour et des notifications concernant d'autres personnes qui interagissent avec votre contenu ou vous envoient des messages et pour répondre à des demandes, 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 "Pour aider à la modération de la communauté, par exemple en comparant votre adresse IP avec d'autres adresses connues afin de déterminer s'il y a 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 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 msgid "Mobilizon on %{instance}: confirm your email address" msgstr "Mobilizon sur %{instance} : confirmez votre adresse email" -#, elixir-format #: lib/web/email/user.ex:152 msgid "Mobilizon on %{instance}: email changed" msgstr "Mobilizon sur %{instance} : adresse email modifiée" -#, elixir-format #: lib/web/email/notification.ex:46 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:32 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:70 msgid "One event planned this week" msgid_plural "%{nb_events} events planned this week" msgstr[0] "Un événement prévu aujourd'hui" msgstr[1] "%{nb_events} événements prévus aujourd'hui" -#, elixir-format #: lib/web/email/notification.ex:92 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:4 +#: lib/web/templates/email/notification_each_week.html.eex:38 lib/web/templates/email/notification_each_week.text.eex:4 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:27 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 "<b>%{instance_name}</b> 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 <b>%{instance_name}</b> of the site. Use of any such linked website is at the user's own risk." msgstr "<b>%{instance_name}</b> 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 <b>%{instance_name}</b> 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 <a href=\"/rules\">the instance's own specific rules</a> 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 <a href=\"/rules\">règles spécifiques de l'instance </a> 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 <a href=\"https://joinmobilizon.org\">see here</a>." msgstr "Pour plus de détails sur le logiciel Mobilizon <a href=\"https://joinmobilizon.org\">voir ici</a>." -#, 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 <b>%{instance_name}</b> (<a href=\"https://%{instance_url}\">%{instance_url}</a>) 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 <b>%{instance_name}</b> (<a href=\"https://%{instance_url}\">%{instance_url}</a>) (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 <b>%{instance_name}</b> 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 <b>%{instance_name}</b> 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 <b>%{instance_name}</b> regarding the use of the Service, superseding any prior agreements between you and <b>%{instance_name}</b> relating to your use of the Service." msgstr "Les présentes Conditions constituent l'intégralité de l'accord entre vous et <b>%{instance_name}</b> concernant l'utilisation du Service, remplaçant tout accord préalable entre vous et <b>%{instance_name}</b> 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 <a href=\"https://tldrlegal.com/license/gnu-affero-general-public-license-v3-(agpl-3.0)\">AGPLv3 license</a> 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 <a href=\"https://tldrlegal.com/license/gnu-affero-general-public-license-v3-(agpl-3.0)\">licence AGPLv3</a> 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, <b>%{instance_name}</b>." 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 <b>%{instance_name}</b>." -#, 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 "<b>%{instance_name}</b> will not use or transmit or resell your personal data" msgstr "<b>%{instance_name}</b> 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 <a href=\"https://framagit.org/framasoft/mobilizon/\">its contributors</a> 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 <a href=\"https://framagit.org/framasoft/mobilizon/\">ses contributeur·ices</a>." -#, 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 <a href=\"https://joindiaspora.com/terms\">Diaspora*</a> and <a href=\"https://github.com/appdotnet/terms-of-service\">App.net</a> privacy policies, also licensed under <a href=\"https://creativecommons.org/licenses/by-sa/4.0/\">CC BY-SA</a>." msgstr "Adaptée à l'origine des politiques de confidentialité de <a href=\"https://joindiaspora.com/terms\">Diaspora*</a> et <a href=\"https://github.com/appdotnet/terms-of-service\">App.net</a>, aussi sous licence <a href=\"https://creativecommons.org/licenses/by-sa/4.0/\">CC BY-SA</a>." -#, elixir-format #: lib/web/templates/api/privacy.html.eex:119 msgctxt "terms" msgid "Originally adapted from the <a href=\"https://mastodon.social/terms\">Mastodon</a> and <a href=\"https://github.com/discourse/discourse\">Discourse</a> privacy policies, also licensed under <a href=\"https://creativecommons.org/licenses/by-sa/4.0/\">CC BY-SA</a>." msgstr "Adaptée à l'origine des politiques de confidentialité de <a href=\"https://mastodon.social/terms\">Mastodon</a> et <a href=\"https://github.com/discourse/discourse\">Discourse</a>, aussi sous licence <a href=\"https://creativecommons.org/licenses/by-sa/4.0/\">CC BY-SA</a>." -#, 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 <a href=\"https://creativecommons.org/licenses/by-sa/4.0/\">CC BY-SA</a>. It was last updated June 18, 2020." msgstr "Ce document est sous licence <a href=\"https://creativecommons.org/licenses/by-sa/4.0/\">CC BY-SA</a>. 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 <a href=\"https://creativecommons.org/licenses/by-sa/4.0/\">CC BY-SA</a>. It was last updated June 22, 2020." msgstr "Ce document est sous licence <a href=\"https://creativecommons.org/licenses/by-sa/4.0/\">CC BY-SA</a>. 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 <b>%{instance_name}</b>'s rules when using the service" msgstr "Vous devez respecter les autres et les règles de <b>%{instance_name}</b> 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 <b>%{instance_name}</b>" msgstr "Vous devez respecter la loi lorsque vous utilisez <b>%{instance_name}</b>" -#, 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:58 +#: 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.html.eex:38 -#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:3 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:38 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 fourni :" -#, elixir-format -#: lib/web/templates/email/email.html.eex:118 -#: lib/web/templates/email/email.text.eex:12 +#: lib/web/templates/email/email.html.eex:118 lib/web/templates/email/email.text.eex:12 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 <b>%{host}</b> with this email address. You are one click away from activating it." msgstr "Vous avez créé un compte sur <b>%{host}</b> avec cette adresse email. Vous êtes à un clic de l'activer." -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "<b>%{reporter_name}</b> (%{reporter_username}) a signalé le contenu suivant." - -#, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" msgstr "Nouveau signalement sur <b>%{instance}</b>" -#, elixir-format #: lib/web/templates/email/email_changed_old.html.eex:38 msgid "The email address for your account on <b>%{host}</b> is being changed to:" msgstr "L'adresse email pour votre compte sur <b>%{host}</b> 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 <b>%{instance}</b>." msgstr "Vous avez demandé un nouveau mot de passe pour votre compte sur <b>%{instance}</b>." -#, elixir-format #: lib/web/templates/email/email.text.eex:9 msgid "Mobilizon is still under development, we will add new features along the updates, until the release of version 1 of the software in the fall of 2020." msgstr "Mobilizon est en cours de développement, nous y ajouterons de nouvelles fonctionnalités lors de mises à jour régulières, jusqu'à la publication de la version 1 du logiciel à l'automne 2020." -#, elixir-format #: lib/web/templates/email/email.text.eex:7 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:45 -#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131 -#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 -#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 -#: lib/web/templates/email/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:131 lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 lib/web/templates/email/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:16 msgid "%{instance} is powered by Mobilizon." msgstr "%{instance} est une instance Mobilizon." -#, elixir-format #: lib/web/templates/email/email.html.eex:146 msgid "<b>%{instance}</b> is powered by Mobilizon." msgstr "<b>%{instance}</b> 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:82 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:66 +#: 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 <b>%{instance}</b>. 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 <b>%{instance}</b>. 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:41 -#: lib/web/templates/email/email_changed_old.text.eex:5 +#: lib/web/templates/email/email_changed_old.html.eex:41 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:92 msgid "In the meantime, please consider this software as not (yet) fully functional. Read more %{a_start}on the Framasoft blog%{a_end}." msgstr "D'ici là, veuillez considérer que le logiciel n'est pas (encore) fini. Retrouvez plus d'informations %{a_start}sur le blog de Framasoft%{a_end}." -#, elixir-format #: lib/web/templates/email/email.text.eex:10 msgid "In the meantime, please consider this software as not (yet) fully functional. Read more on the Framasoft blog:" msgstr "D'ici là, veuillez considérer que le logiciel n'est pas (encore) fini. Retrouvez plus d'informations sur le blog de Framasoft :" -#, elixir-format -#: lib/web/templates/email/email.html.eex:147 -#: lib/web/templates/email/email.text.eex:16 +#: lib/web/templates/email/email.html.eex:147 lib/web/templates/email/email.text.eex:16 msgid "Learn more about Mobilizon here!" msgstr "En apprendre plus à propos de Mobilizon ici !" -#, elixir-format #: lib/web/templates/email/event_updated.html.eex:92 msgid "Location" msgstr "Localisation" -#, elixir-format #: lib/web/templates/email/event_updated.html.eex:102 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:84 +#: 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 <b>%{instance}</b> reported the following content for you to analyze:" msgstr "Une personne de <b>%{instance}</b> 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:72 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.html.eex:38 -#: lib/web/templates/email/event_updated.text.eex:3 +#: lib/web/templates/email/event_updated.html.eex:38 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:54 -#: lib/web/templates/email/event_updated.text.eex:11 +#: lib/web/templates/email/event_updated.html.eex:54 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:50 -#: lib/web/templates/email/event_updated.text.eex:7 +#: lib/web/templates/email/event_updated.html.eex:50 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:52 -#: lib/web/templates/email/event_updated.text.eex:9 +#: lib/web/templates/email/event_updated.html.eex:52 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:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "Voir le signalement" -#, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "Voir le signalement :" -#, elixir-format -#: lib/web/templates/email/event_participation_approved.html.eex:58 -#: lib/web/templates/email/event_participation_confirmed.html.eex:58 +#: 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:119 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.html.eex:38 -#: lib/web/templates/email/event_participation_rejected.text.eex:5 +#: lib/web/templates/email/event_participation_rejected.html.eex:38 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:89 msgid "<b>Please do not use it for real purposes.</b>" msgstr "<b>Veuillez ne pas l'utiliser pour un cas réel.</b>" -#, elixir-format #: lib/web/templates/email/email.html.eex:91 msgid "Mobilizon is still under development, we will add new features along the updates, until the release of <b>version 1 of the software in the fall of 2020</b>." msgstr "Mobilizon est en cours de développement, nous y ajouterons de nouvelles fonctionnalités lors de mises à jour régulières, jusqu'à la publication de <b>la version 1 du logiciel à l'automne 2020</b>." -#, 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:62 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 "<b>%{inviter}</b> just invited you to join their group %{link_start}<b>%{group}</b>%{link_end}" msgstr "<b>%{inviter}</b> vient de vous inviter à rejoindre son groupe %{link_start}<b>%{group}</b>%{link_end}" -#, elixir-format #: lib/web/templates/email/group_member_removal.html.eex:38 msgid "You have been removed from group %{link_start}<b>%{group}</b>%{link_end}. You will not be able to access this group's private content anymore." msgstr "Vous avez été enlevé du groupe %{link_start}<b>%{group}</b>%{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:135 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:96 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 <a href=\"/privacy\">privacy policy</a>." msgstr "Pour savoir comment nous recueillons et utilisons les informations sur les utilisateur·ice·s du Service, veuillez consulter notre <a href=\"/privacy\">politique de confidentialité</a>." -#, 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 href=\"/glossary\">a glossary</a> 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 <a href=\"/glossary\">un glossaire</a> 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 <b>an email address, a password</b> (hashed) and at least <b>an username</b>. 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 <b>a display name and biography, and upload a profile picture and header image</b>. The username, display name, biography, profile picture and header image <b>are always listed publicly</b>. <b>You may however visit this instance without registering</b>." @@ -1232,55 +969,68 @@ 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 <b>une adresse courriel, un mot de passe</b> (haché) et au moins <b>un nom d'utilisateur.ice</b>. 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 <b>un pseudonyme, une biographie, une image de profil et une image d'en-tête</b>. Le nom d'utilisateur, le pseudonyme affiché, la " "biographie, les images de profil et d'en-tête <b>sont toujours publiques</b>. <b>Vous pouvez toutefois utiliser ce serveur sans vous inscrire</b>." -#, 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 <a href=\"https://framasoft.org\">Framasoft</a>, 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 <a href=\"/about/instance\">\"About this instance\"</a> 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 <a href=\"https://framasoft.org\">Framasoft</a>, 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 href=\"/about/instance\">« A propos de cette instance »</a>." -#, 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 <b>%{instance_name}</b>." 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 à <b>%{instance_name}</b>." -#, 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 <b>events</b> and <b>comments</b> 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 <b>évènements</b> et <b>commentaires</b> 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.html.eex:45 #: 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 <b>%{title}</b>." msgstr "Vous avez demandé à participer à l'événement <b>%{title}</b>." -#, elixir-format #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "Votre participation à l'événement %{title} a été approuvée" + +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "<b>%{reporter}</b> a signalé le contenu suivant." + +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "Le groupe %{group} a été signalé" + +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "Groupe signalé" + +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "Le profil %{profile} a été signalé" + +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "Profil signalé" + +#: 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 !" diff --git a/priv/gettext/it/LC_MESSAGES/default.po b/priv/gettext/it/LC_MESSAGES/default.po index 36eef2e51..850bffc23 100644 --- a/priv/gettext/it/LC_MESSAGES/default.po +++ b/priv/gettext/it/LC_MESSAGES/default.po @@ -27,7 +27,7 @@ msgid "Feed for %{email} on Mobilizon" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "%{title} di %{creator}" @@ -43,13 +43,13 @@ msgid "Ask the community on Framacolibri" msgstr "Chiedi alla comunità su Framacolibri" #, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "Commenti" #, elixir-format #: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "Evento" @@ -59,7 +59,7 @@ msgid "Instructions to reset your password on %{instance}" msgstr "" #, elixir-format -#: lib/web/templates/email/report.text.eex:14 +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "Spiegazione" @@ -79,7 +79,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "" #, elixir-format -#: lib/web/email/admin.ex:23 +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "" @@ -720,7 +720,7 @@ msgid "Your content is yours" msgstr "I tuoi dati ti appartengono" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:58 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "Conferma il mio indirizzo e-mail" @@ -747,11 +747,6 @@ msgstr "Bisogno di aiuto? Qualcosa non funziona correttamente?" msgid "You created an account on <b>%{host}</b> with this email address. You are one click away from activating it." msgstr "" -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "" - #, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" @@ -778,7 +773,7 @@ msgid "Please do not use it for real purposes." msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:45 +#: 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:131 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 @@ -841,7 +836,7 @@ msgid "Event update!" msgstr "Evento aggiornato!" #, elixir-format -#: lib/web/templates/email/report.html.eex:66 +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "Commenti contrassegnati" @@ -930,7 +925,7 @@ msgid "New email confirmation" msgstr "Conferma del nuovo indirizzo e-mail" #, elixir-format -#: lib/web/templates/email/report.html.eex:84 +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "Ragioni della segnalazione" @@ -992,12 +987,12 @@ msgid "Verify your email address" msgstr "Verifica il tuo indirizzo e-mail" #, elixir-format -#: lib/web/templates/email/report.html.eex:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "Visualizza la segnalazione" #, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "Visualizza la segnalazione:" @@ -1264,7 +1259,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu msgstr "" #, elixir-format -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #: 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 "" @@ -1279,3 +1273,33 @@ msgstr "" #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "" + +#, elixir-format, fuzzy +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "" + +#, elixir-format, fuzzy +#: 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 "" diff --git a/priv/gettext/ja/LC_MESSAGES/default.po b/priv/gettext/ja/LC_MESSAGES/default.po index 138073706..b89bd736b 100644 --- a/priv/gettext/ja/LC_MESSAGES/default.po +++ b/priv/gettext/ja/LC_MESSAGES/default.po @@ -25,7 +25,7 @@ msgid "Feed for %{email} on Mobilizon" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "" @@ -41,13 +41,13 @@ msgid "Ask the community on Framacolibri" msgstr "" #, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "" #, elixir-format #: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "イベント" @@ -57,7 +57,7 @@ msgid "Instructions to reset your password on %{instance}" msgstr "" #, elixir-format -#: lib/web/templates/email/report.text.eex:14 +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "" @@ -77,7 +77,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "" #, elixir-format -#: lib/web/email/admin.ex:23 +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "" @@ -713,7 +713,7 @@ msgid "Your content is yours" msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:58 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "" @@ -740,11 +740,6 @@ msgstr "" msgid "You created an account on <b>%{host}</b> with this email address. You are one click away from activating it." msgstr "" -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "" - #, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" @@ -771,7 +766,7 @@ msgid "Please do not use it for real purposes." msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:45 +#: 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:131 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 @@ -832,7 +827,7 @@ msgid "Event update!" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:66 +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "" @@ -921,7 +916,7 @@ msgid "New email confirmation" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:84 +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "" @@ -982,12 +977,12 @@ msgid "Verify your email address" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "" #, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "" @@ -1254,7 +1249,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu msgstr "" #, elixir-format -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #: 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 "" @@ -1269,3 +1263,33 @@ msgstr "" #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "" + +#, elixir-format, fuzzy +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "" + +#, elixir-format, fuzzy +#: 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 "" diff --git a/priv/gettext/nl/LC_MESSAGES/default.po b/priv/gettext/nl/LC_MESSAGES/default.po index 96ea9eefb..652b95a86 100644 --- a/priv/gettext/nl/LC_MESSAGES/default.po +++ b/priv/gettext/nl/LC_MESSAGES/default.po @@ -28,7 +28,7 @@ msgid "Feed for %{email} on Mobilizon" msgstr "Feed voor %{email} op Mobilizon" #, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "%{title} door %{creator}" @@ -44,13 +44,13 @@ msgid "Ask the community on Framacolibri" msgstr "Vragen aan de gemeenschap op Framacolibri" #, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "Opmerkingen" #, elixir-format #: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "Evenement" @@ -60,7 +60,7 @@ msgid "Instructions to reset your password on %{instance}" msgstr "Instructies om uw wachtwoord opnieuw in te stellen op %{instance}" #, elixir-format -#: lib/web/templates/email/report.text.eex:14 +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "Reden" @@ -82,7 +82,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "Instructies om uw Mobilizonaccount op %{instance} te bevestigen" #, elixir-format -#: lib/web/email/admin.ex:23 +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "Nieuwe melding op de Mobilizonserver %{instance}" @@ -727,7 +727,7 @@ msgid "Your content is yours" msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:58 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "" @@ -756,12 +756,6 @@ msgstr "" "U hebt een account op %{host} gemaakt met dit emailadres. U bent op één " "klik van de activering." -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "" -"%{reporter_name} (%{reporter_username}) heeft de volgende inhoud gemeld." - #, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" @@ -791,7 +785,7 @@ msgid "Please do not use it for real purposes." msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:45 +#: 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:131 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 @@ -858,7 +852,7 @@ msgid "Event update!" msgstr "Evenement bijgewerkt!" #, elixir-format -#: lib/web/templates/email/report.html.eex:66 +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "" @@ -953,7 +947,7 @@ msgid "New email confirmation" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:84 +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "" @@ -1014,12 +1008,12 @@ msgid "Verify your email address" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "Bekijk de melding" #, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "Bekijk de melding" @@ -1289,7 +1283,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu msgstr "" #, elixir-format -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #: 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 "" @@ -1304,3 +1297,34 @@ msgstr "U hebt gevraagd om deel te nemen aan het evenement %{title}." #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "Uw deelname aan het evenement %{title} is goedgekeurd" + +#, elixir-format, fuzzy +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "" +"%{reporter_name} (%{reporter_username}) heeft de volgende inhoud gemeld." + +#, elixir-format +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "" + +#, elixir-format, fuzzy +#: 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 "" diff --git a/priv/gettext/oc/LC_MESSAGES/default.po b/priv/gettext/oc/LC_MESSAGES/default.po index b5353bf6d..2a08ddeab 100644 --- a/priv/gettext/oc/LC_MESSAGES/default.po +++ b/priv/gettext/oc/LC_MESSAGES/default.po @@ -26,7 +26,7 @@ msgid "Feed for %{email} on Mobilizon" msgstr "Flux per %{email} sus Mobilizon" #, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "%{title} per %{creator}" @@ -42,13 +42,13 @@ msgid "Ask the community on Framacolibri" msgstr "Demandatz a la comunautat sus Framacolibri" #, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "Comentaris" #, elixir-format #: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "Eveniment" @@ -58,7 +58,7 @@ msgid "Instructions to reset your password on %{instance}" msgstr "Consignas per reïnincializar vòstre senhal sus %{instance}" #, elixir-format -#: lib/web/templates/email/report.text.eex:14 +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "Rason" @@ -78,7 +78,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "Consignas per confirmar vòstre compte Mobilizon sus %{instance}" #, elixir-format -#: lib/web/email/admin.ex:23 +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "Nòu senhalament sus l’instància Mobilizon %{instance}" @@ -725,7 +725,7 @@ msgid "Your content is yours" msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:58 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "" @@ -752,11 +752,6 @@ msgstr "Besonh d’ajuda ? Quicòm truca ?" msgid "You created an account on <b>%{host}</b> with this email address. You are one click away from activating it." msgstr "Avètz creat un compte sus %{host} amb aquesta adreça electronica. Sètz a un clic de l’activar." -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "%{reporter_name} (%{reporter_username}) a senhalat lo contengut seguent." - #, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" @@ -787,7 +782,7 @@ msgid "Please do not use it for real purposes." msgstr "Mercés de l’utilizar pas d’un biais real" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:45 +#: 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:131 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 @@ -856,7 +851,7 @@ msgid "Event update!" msgstr "Eveniment actualizat !" #, elixir-format -#: lib/web/templates/email/report.html.eex:66 +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "" @@ -952,7 +947,7 @@ msgid "New email confirmation" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:84 +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "" @@ -1014,12 +1009,12 @@ msgid "Verify your email address" msgstr "Verificar l’adreça electronica" #, elixir-format -#: lib/web/templates/email/report.html.eex:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "Veire lo senhalament" #, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "Veire lo senhalament" @@ -1291,7 +1286,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu msgstr "" #, elixir-format -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #: 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 "" @@ -1306,3 +1300,33 @@ msgstr "Avètz demandat de participar a l’eveniment %{title}." #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "Vòstra participacion a l’eveniment %{title} es estada aprovada" + +#, elixir-format, fuzzy +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "%{reporter_name} (%{reporter_username}) a senhalat lo contengut seguent." + +#, elixir-format +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "" + +#, elixir-format, fuzzy +#: 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 "" diff --git a/priv/gettext/pl/LC_MESSAGES/default.po b/priv/gettext/pl/LC_MESSAGES/default.po index 16336266d..e9bbda150 100644 --- a/priv/gettext/pl/LC_MESSAGES/default.po +++ b/priv/gettext/pl/LC_MESSAGES/default.po @@ -29,7 +29,7 @@ msgid "Feed for %{email} on Mobilizon" msgstr "Strumień dla %{email} na Mobilizon" #, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "%{title} od %{creator}" @@ -45,13 +45,13 @@ msgid "Ask the community on Framacolibri" msgstr "Zapytaj społeczność na Framacolibri" #, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "Komentarze" #, elixir-format #: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "Wydarzenie" @@ -61,7 +61,7 @@ msgid "Instructions to reset your password on %{instance}" msgstr "Instrukcje resetowania hasła na %{instance}" #, elixir-format -#: lib/web/templates/email/report.text.eex:14 +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "Powód" @@ -83,7 +83,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "Instrukcje potwierdzania konta Mobilizon na %{instance}" #, elixir-format -#: lib/web/email/admin.ex:23 +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "Nowe zgłoszenie na instancji Mobilizon %{instance}" @@ -736,7 +736,7 @@ msgid "Your content is yours" msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:58 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "" @@ -765,12 +765,6 @@ msgstr "" "Utworzyłeś(-aś) konto na %{host} używając tego adresu e-mail. Zostało jedno " "kliknięcie, aby zaktywować je." -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "" -"%{reporter_name} (%{reporter_username}) zgłosił(a) następującą zawartość." - #, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" @@ -800,7 +794,7 @@ msgid "Please do not use it for real purposes." msgstr "Nie używaj go do żadnych rzeczywistych celów" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:45 +#: 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:131 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 @@ -871,7 +865,7 @@ msgid "Event update!" msgstr "Zaktualizowano wydarzenie!" #, elixir-format -#: lib/web/templates/email/report.html.eex:66 +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "" @@ -966,7 +960,7 @@ msgid "New email confirmation" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:84 +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "" @@ -1027,12 +1021,12 @@ msgid "Verify your email address" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "Zobacz zgłoszenie" #, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "Zobacz zgłoszenie" @@ -1302,7 +1296,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu msgstr "" #, elixir-format -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #: 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 "" @@ -1317,3 +1310,34 @@ msgstr "Poprosiłeś(-aś) o uczestnictwo w wydarzeniu %{title}." #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "Twój udział w wydarzeniu %{title} został zatwierdzony" + +#, elixir-format, fuzzy +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "" +"%{reporter_name} (%{reporter_username}) zgłosił(a) następującą zawartość." + +#, elixir-format +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "" + +#, elixir-format, fuzzy +#: 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 "" diff --git a/priv/gettext/pt/LC_MESSAGES/default.po b/priv/gettext/pt/LC_MESSAGES/default.po index caa1b611b..4917b6687 100644 --- a/priv/gettext/pt/LC_MESSAGES/default.po +++ b/priv/gettext/pt/LC_MESSAGES/default.po @@ -23,7 +23,7 @@ msgid "Feed for %{email} on Mobilizon" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "" @@ -39,13 +39,13 @@ msgid "Ask the community on Framacolibri" msgstr "" #, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "" #, elixir-format #: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "" @@ -55,7 +55,7 @@ msgid "Instructions to reset your password on %{instance}" msgstr "" #, elixir-format -#: lib/web/templates/email/report.text.eex:14 +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "" @@ -75,7 +75,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "" #, elixir-format -#: lib/web/email/admin.ex:23 +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "" @@ -716,7 +716,7 @@ msgid "Your content is yours" msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:58 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "" @@ -743,11 +743,6 @@ msgstr "" msgid "You created an account on <b>%{host}</b> with this email address. You are one click away from activating it." msgstr "" -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "" - #, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" @@ -774,7 +769,7 @@ msgid "Please do not use it for real purposes." msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:45 +#: 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:131 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 @@ -837,7 +832,7 @@ msgid "Event update!" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:66 +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "" @@ -926,7 +921,7 @@ msgid "New email confirmation" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:84 +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "" @@ -987,12 +982,12 @@ msgid "Verify your email address" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "" #, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "" @@ -1259,7 +1254,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu msgstr "" #, elixir-format -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #: 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 "" @@ -1274,3 +1268,33 @@ msgstr "" #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "" + +#, elixir-format, fuzzy +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "" + +#, elixir-format, fuzzy +#: 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 "" diff --git a/priv/gettext/pt_BR/LC_MESSAGES/default.po b/priv/gettext/pt_BR/LC_MESSAGES/default.po index 0fed6e087..11b531e43 100644 --- a/priv/gettext/pt_BR/LC_MESSAGES/default.po +++ b/priv/gettext/pt_BR/LC_MESSAGES/default.po @@ -27,7 +27,7 @@ msgid "Feed for %{email} on Mobilizon" msgstr "Feed para %{email} sobre o Mobilizon" #, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "%{title} por %{creator}" @@ -43,13 +43,13 @@ msgid "Ask the community on Framacolibri" msgstr "Perguntar à comunidade Framacolibri" #, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "Comentários" #, elixir-format #: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "Evento" @@ -59,7 +59,7 @@ msgid "Instructions to reset your password on %{instance}" msgstr "Instruções para reiniciar a senha de %{instance}" #, elixir-format -#: lib/web/templates/email/report.text.eex:14 +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "Razão" @@ -81,7 +81,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "Instruções para confirmar sua conta Mobilizon na instância %{instance}" #, elixir-format -#: lib/web/email/admin.ex:23 +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "Novo relato na instância Mobilizon %{instance}" @@ -785,7 +785,7 @@ msgid "Your content is yours" msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:58 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "" @@ -814,11 +814,6 @@ msgstr "" "Você criou uma conta em %{host} com este endereço de email. Falta um clique " "pra você ativar sua conta." -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "%{reporter_name} (%{reporter_username}) reportou o seguinte conteúdo." - #, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" @@ -848,7 +843,7 @@ msgid "Please do not use it for real purposes." msgstr "Por favor não utilize este serviço em nenhum caso real" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:45 +#: 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:131 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 @@ -915,7 +910,7 @@ msgid "Event update!" msgstr "Evento atualizado!" #, elixir-format -#: lib/web/templates/email/report.html.eex:66 +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "" @@ -1010,7 +1005,7 @@ msgid "New email confirmation" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:84 +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "" @@ -1071,12 +1066,12 @@ msgid "Verify your email address" msgstr "Verificar endereço de email" #, elixir-format -#: lib/web/templates/email/report.html.eex:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "Veja o relato" #, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "Veja o relato" @@ -1381,7 +1376,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu msgstr "" #, elixir-format -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #: 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 "" @@ -1396,3 +1390,33 @@ msgstr "Você solicitou participar no evento %{title}." #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "A sua participação no evento %{title} foi aprovada" + +#, elixir-format, fuzzy +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "%{reporter_name} (%{reporter_username}) reportou o seguinte conteúdo." + +#, elixir-format +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "" + +#, elixir-format, fuzzy +#: 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 "" diff --git a/priv/gettext/ru/LC_MESSAGES/default.po b/priv/gettext/ru/LC_MESSAGES/default.po index 6999d5b0e..6c3c6ddb8 100644 --- a/priv/gettext/ru/LC_MESSAGES/default.po +++ b/priv/gettext/ru/LC_MESSAGES/default.po @@ -28,7 +28,7 @@ msgid "Feed for %{email} on Mobilizon" msgstr "Лента для %{email} в Mobilizon" #, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "%{title} от %{creator}" @@ -44,13 +44,13 @@ msgid "Ask the community on Framacolibri" msgstr "Обратиться к сообществу на Framacolibri" #, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "Комментарии" #, elixir-format #: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "Событие" @@ -60,7 +60,7 @@ msgid "Instructions to reset your password on %{instance}" msgstr "Инструкции по сбросу пароля на %{instance}" #, elixir-format -#: lib/web/templates/email/report.text.eex:14 +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "Причина" @@ -82,7 +82,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "Инструкции по подтверждению учётной записи Mobilizon на %{instance}" #, elixir-format -#: lib/web/email/admin.ex:23 +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "Новое сообщение о проблемах на сервере Mobilizon %{instance}" @@ -728,7 +728,7 @@ msgid "Your content is yours" msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:58 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "" @@ -757,13 +757,6 @@ msgstr "" "Вы создали на %{host} учётную запись с данным адресом электронной почты. " "Осталось её активировать." -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "" -"%{reporter_name} (%{reporter_username}) сообщает о возможных проблемах со " -"следующей информацией." - #, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" @@ -790,7 +783,7 @@ msgid "Please do not use it for real purposes." msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:45 +#: 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:131 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 @@ -855,7 +848,7 @@ msgid "Event update!" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:66 +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "" @@ -944,7 +937,7 @@ msgid "New email confirmation" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:84 +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "" @@ -1005,12 +998,12 @@ msgid "Verify your email address" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "Показать сообщение о проблеме" #, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "Показать сообщение о проблеме" @@ -1277,7 +1270,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu msgstr "" #, elixir-format -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #: 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 "" @@ -1292,3 +1284,35 @@ msgstr "" #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "" + +#, elixir-format, fuzzy +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "" +"%{reporter_name} (%{reporter_username}) сообщает о возможных проблемах со " +"следующей информацией." + +#, elixir-format +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "" + +#, elixir-format, fuzzy +#: 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 "" diff --git a/priv/gettext/sv/LC_MESSAGES/default.po b/priv/gettext/sv/LC_MESSAGES/default.po index 6bda72105..f257873ec 100644 --- a/priv/gettext/sv/LC_MESSAGES/default.po +++ b/priv/gettext/sv/LC_MESSAGES/default.po @@ -28,7 +28,7 @@ msgid "Feed for %{email} on Mobilizon" msgstr "Flöde för %{email} på Mobilizon" #, elixir-format -#: lib/web/templates/email/report.html.eex:52 +#: lib/web/templates/email/report.html.eex:74 msgid "%{title} by %{creator}" msgstr "%{title} av %{creator}" @@ -44,13 +44,13 @@ msgid "Ask the community on Framacolibri" msgstr "Fråga människorna på Framacolibri" #, elixir-format -#: lib/web/templates/email/report.text.eex:8 +#: lib/web/templates/email/report.text.eex:15 msgid "Comments" msgstr "Kommentarer" #, elixir-format #: lib/web/templates/email/event_updated.html.eex:62 -#: lib/web/templates/email/report.html.eex:50 lib/web/templates/email/report.text.eex:4 +#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11 msgid "Event" msgstr "Evenemang" @@ -60,7 +60,7 @@ msgid "Instructions to reset your password on %{instance}" msgstr "Instruktioner för att återställa ditt lösenord på %{instance}" #, elixir-format -#: lib/web/templates/email/report.text.eex:14 +#: lib/web/templates/email/report.text.eex:21 msgid "Reason" msgstr "Motivering" @@ -82,7 +82,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}" msgstr "Instruktioner för att bekräfta ditt Mobilizon-konto på %{instance}" #, elixir-format -#: lib/web/email/admin.ex:23 +#: lib/web/email/admin.ex:24 msgid "New report on Mobilizon instance %{instance}" msgstr "Ny anmälan på Mobilizon-instansen %{instance}" @@ -729,7 +729,7 @@ msgid "Your content is yours" msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:58 +#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:51 msgid "Confirm my e-mail address" msgstr "" @@ -758,12 +758,6 @@ msgstr "" "Du har skapat ett konto på <b>%{host}</b> med den här e-postadressen. Nu " "återstår bara ett klick för att aktivera det." -#, elixir-format -#: lib/web/templates/email/report.html.eex:41 -msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content." -msgstr "" -"<b>%{reporter_name}</b> (%{reporter_username}) har anmält följande innehåll." - #, elixir-format #: lib/web/templates/email/report.html.eex:13 msgid "New report on <b>%{instance}</b>" @@ -790,7 +784,7 @@ msgid "Please do not use it for real purposes." msgstr "" #, elixir-format -#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:45 +#: 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:131 #: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 #: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 @@ -857,7 +851,7 @@ msgid "Event update!" msgstr "Evenemang uppdaterat!" #, elixir-format -#: lib/web/templates/email/report.html.eex:66 +#: lib/web/templates/email/report.html.eex:88 msgid "Flagged comments" msgstr "" @@ -949,7 +943,7 @@ msgid "New email confirmation" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:84 +#: lib/web/templates/email/report.html.eex:106 msgid "Reasons for report" msgstr "" @@ -1010,12 +1004,12 @@ msgid "Verify your email address" msgstr "" #, elixir-format -#: lib/web/templates/email/report.html.eex:104 +#: lib/web/templates/email/report.html.eex:126 msgid "View report" msgstr "Visa anmälan" #, elixir-format -#: lib/web/templates/email/report.text.eex:17 +#: lib/web/templates/email/report.text.eex:24 msgid "View report:" msgstr "Visa anmälan:" @@ -1282,7 +1276,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu msgstr "" #, elixir-format -#: lib/web/templates/email/event_participation_confirmed.html.eex:45 #: 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 "" @@ -1297,3 +1290,34 @@ msgstr "Du har bett om att få delta i evenemanget %{title}." #: lib/web/email/participation.ex:92 msgid "Your participation to event %{title} has been confirmed" msgstr "Din förfrågan om att få delta i evenemanget %{title} har godkännts" + +#, elixir-format, fuzzy +#: lib/web/templates/email/report.html.eex:41 +msgid "<b>%{reporter}</b> reported the following content." +msgstr "" +"<b>%{reporter_name}</b> (%{reporter_username}) har anmält följande innehåll." + +#, elixir-format +#: lib/web/templates/email/report.text.eex:5 +msgid "Group %{group} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:51 +msgid "Group reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.text.eex:7 +msgid "Profile %{profile} was reported" +msgstr "" + +#, elixir-format +#: lib/web/templates/email/report.html.eex:56 +msgid "Profile reported" +msgstr "" + +#, elixir-format, fuzzy +#: 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 ""