Allow to report a group

And multiple group tweaks

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2020-09-30 15:25:30 +02:00
parent cf070d7e67
commit 92367a5f33
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
33 changed files with 1088 additions and 754 deletions

View File

@ -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>

View File

@ -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");
}

View File

@ -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

View File

@ -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"
}

View File

@ -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"
}

View File

@ -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>

View File

@ -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;

View File

@ -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>

View File

@ -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() },

View File

@ -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 """

View File

@ -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 =

View File

@ -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)

View File

@ -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]>&nbsp;<![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>

View File

@ -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 %>

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

File diff suppressed because it is too large Load Diff

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 linstà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 dajuda? 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 lactivar."
#, 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 lutilizar pas dun 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 ladreç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 leveniment %{title}."
#: lib/web/email/participation.ex:92
msgid "Your participation to event %{title} has been confirmed"
msgstr "Vòstra participacion a leveniment %{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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""