Merge branch 'report-group' into 'master'
Allow to report a group See merge request framasoft/mobilizon!571
This commit is contained in:
commit
22c53b4f85
@ -28,7 +28,7 @@
|
|||||||
{{ $t("Reported by {reporter}", { reporter: report.reporter.preferredUsername }) }}
|
{{ $t("Reported by {reporter}", { reporter: report.reporter.preferredUsername }) }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -100,15 +100,15 @@ export default class ReportModal extends Vue {
|
|||||||
|
|
||||||
forward = false;
|
forward = false;
|
||||||
|
|
||||||
get translatedCancelText() {
|
get translatedCancelText(): string {
|
||||||
return this.cancelText || this.$t("Cancel");
|
return this.cancelText || (this.$t("Cancel") as string);
|
||||||
}
|
}
|
||||||
|
|
||||||
get translatedConfirmText() {
|
get translatedConfirmText(): string {
|
||||||
return this.confirmText || this.$t("Send the report");
|
return this.confirmText || (this.$t("Send the report") as string);
|
||||||
}
|
}
|
||||||
|
|
||||||
confirm() {
|
confirm(): void {
|
||||||
this.onConfirm(this.content, this.forward);
|
this.onConfirm(this.content, this.forward);
|
||||||
this.close();
|
this.close();
|
||||||
}
|
}
|
||||||
@ -116,7 +116,7 @@ export default class ReportModal extends Vue {
|
|||||||
/**
|
/**
|
||||||
* Close the Dialog.
|
* Close the Dialog.
|
||||||
*/
|
*/
|
||||||
close() {
|
close(): void {
|
||||||
this.isActive = false;
|
this.isActive = false;
|
||||||
this.$emit("close");
|
this.$emit("close");
|
||||||
}
|
}
|
||||||
|
@ -114,7 +114,7 @@ export const REPORT = gql`
|
|||||||
|
|
||||||
export const CREATE_REPORT = gql`
|
export const CREATE_REPORT = gql`
|
||||||
mutation CreateReport(
|
mutation CreateReport(
|
||||||
$eventId: ID!
|
$eventId: ID
|
||||||
$reporterId: ID!
|
$reporterId: ID!
|
||||||
$reportedId: ID!
|
$reportedId: ID!
|
||||||
$content: String
|
$content: String
|
||||||
|
@ -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.",
|
"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",
|
"Visit event page": "Visit event page",
|
||||||
"Remember my participation in this browser": "Remember my participation in this browser",
|
"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"
|
||||||
}
|
}
|
||||||
|
@ -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.",
|
"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",
|
"Visit event page": "Voir la page de l'événement",
|
||||||
"Remember my participation in this browser": "Se souvenir de ma participation dans ce navigateur",
|
"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"
|
||||||
}
|
}
|
||||||
|
@ -413,7 +413,7 @@
|
|||||||
<report-modal
|
<report-modal
|
||||||
:on-confirm="reportEvent"
|
:on-confirm="reportEvent"
|
||||||
:title="$t('Report this event')"
|
:title="$t('Report this event')"
|
||||||
:outside-domain="event.organizerActor.domain"
|
:outside-domain="domainForReport"
|
||||||
@close="$refs.reportModal.close()"
|
@close="$refs.reportModal.close()"
|
||||||
/>
|
/>
|
||||||
</b-modal>
|
</b-modal>
|
||||||
@ -521,7 +521,7 @@ import {
|
|||||||
ParticipantRole,
|
ParticipantRole,
|
||||||
EventJoinOptions,
|
EventJoinOptions,
|
||||||
} from "../../types/event.model";
|
} 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 { GRAPHQL_API_ENDPOINT } from "../../api/_entrypoint";
|
||||||
import DateCalendarIcon from "../../components/Event/DateCalendarIcon.vue";
|
import DateCalendarIcon from "../../components/Event/DateCalendarIcon.vue";
|
||||||
import EventCard from "../../components/Event/EventCard.vue";
|
import EventCard from "../../components/Event/EventCard.vue";
|
||||||
@ -786,7 +786,7 @@ export default class Event extends EventMixin {
|
|||||||
variables: {
|
variables: {
|
||||||
eventId: this.event.id,
|
eventId: this.event.id,
|
||||||
reporterId,
|
reporterId,
|
||||||
reportedId: this.event.organizerActor.id,
|
reportedId: this.actorForReport ? this.actorForReport.id : null,
|
||||||
content,
|
content,
|
||||||
forward,
|
forward,
|
||||||
},
|
},
|
||||||
@ -1026,6 +1026,23 @@ export default class Event extends EventMixin {
|
|||||||
this.config && (this.currentActor.id !== undefined || this.config.anonymous.reports.allowed)
|
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>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
@ -93,8 +93,8 @@
|
|||||||
>
|
>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="block-column address" v-else-if="physicalAddress">
|
<div class="block-column address" v-else>
|
||||||
<address>
|
<address v-if="physicalAddress">
|
||||||
<p class="addressDescription" :title="physicalAddress.poiInfos.name">
|
<p class="addressDescription" :title="physicalAddress.poiInfos.name">
|
||||||
{{ physicalAddress.poiInfos.name }}
|
{{ physicalAddress.poiInfos.name }}
|
||||||
</p>
|
</p>
|
||||||
@ -106,6 +106,27 @@
|
|||||||
v-if="physicalAddress && physicalAddress.geom"
|
v-if="physicalAddress && physicalAddress.geom"
|
||||||
>{{ $t("Show map") }}</span
|
>{{ $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>
|
</div>
|
||||||
<img v-if="group.banner && group.banner.url" :src="group.banner.url" alt="" />
|
<img v-if="group.banner && group.banner.url" :src="group.banner.url" alt="" />
|
||||||
</header>
|
</header>
|
||||||
@ -291,6 +312,14 @@
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</b-modal>
|
</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>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -319,8 +348,13 @@ import FolderItem from "@/components/Resource/FolderItem.vue";
|
|||||||
import { Address } from "@/types/address.model";
|
import { Address } from "@/types/address.model";
|
||||||
import Invitations from "@/components/Group/Invitations.vue";
|
import Invitations from "@/components/Group/Invitations.vue";
|
||||||
import addMinutes from "date-fns/addMinutes";
|
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 RouteName from "../../router/name";
|
||||||
|
import GroupSection from "../../components/Group/GroupSection.vue";
|
||||||
|
import ReportModal from "../../components/Report/ReportModal.vue";
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
apollo: {
|
apollo: {
|
||||||
@ -346,6 +380,7 @@ import RouteName from "../../router/name";
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
currentActor: CURRENT_ACTOR_CLIENT,
|
currentActor: CURRENT_ACTOR_CLIENT,
|
||||||
|
config: CONFIG,
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
DiscussionListItem,
|
DiscussionListItem,
|
||||||
@ -358,6 +393,7 @@ import RouteName from "../../router/name";
|
|||||||
ResourceItem,
|
ResourceItem,
|
||||||
GroupSection,
|
GroupSection,
|
||||||
Invitations,
|
Invitations,
|
||||||
|
ReportModal,
|
||||||
"map-leaflet": () => import(/* webpackChunkName: "map" */ "../../components/Map.vue"),
|
"map-leaflet": () => import(/* webpackChunkName: "map" */ "../../components/Map.vue"),
|
||||||
},
|
},
|
||||||
metaInfo() {
|
metaInfo() {
|
||||||
@ -385,6 +421,8 @@ export default class Group extends Vue {
|
|||||||
|
|
||||||
group: IGroup = new GroupModel();
|
group: IGroup = new GroupModel();
|
||||||
|
|
||||||
|
config!: IConfig;
|
||||||
|
|
||||||
loading = true;
|
loading = true;
|
||||||
|
|
||||||
RouteName = RouteName;
|
RouteName = RouteName;
|
||||||
@ -393,6 +431,8 @@ export default class Group extends Vue {
|
|||||||
|
|
||||||
showMap = false;
|
showMap = false;
|
||||||
|
|
||||||
|
isReportModalActive = false;
|
||||||
|
|
||||||
@Watch("currentActor")
|
@Watch("currentActor")
|
||||||
watchCurrentActor(currentActor: IActor, oldActor: IActor): void {
|
watchCurrentActor(currentActor: IActor, oldActor: IActor): void {
|
||||||
if (currentActor.id && oldActor && currentActor.id !== oldActor.id) {
|
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 {
|
get groupTitle(): undefined | string {
|
||||||
if (!this.group) return undefined;
|
if (!this.group) return undefined;
|
||||||
return this.group.name || this.group.preferredUsername;
|
return this.group.name || this.group.preferredUsername;
|
||||||
@ -497,6 +569,12 @@ export default class Group extends Vue {
|
|||||||
if (!this.group.physicalAddress) return null;
|
if (!this.group.physicalAddress) return null;
|
||||||
return new Address(this.group.physicalAddress);
|
return new Address(this.group.physicalAddress);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get ableToReport(): boolean {
|
||||||
|
return (
|
||||||
|
this.config && (this.currentActor.id !== undefined || this.config.anonymous.reports.allowed)
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@ -523,7 +601,6 @@ div.container {
|
|||||||
border: 2px solid $purple-2;
|
border: 2px solid $purple-2;
|
||||||
padding: 10px 0;
|
padding: 10px 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
color: $purple-1;
|
color: $purple-1;
|
||||||
@ -545,8 +622,10 @@ div.container {
|
|||||||
left: 0;
|
left: 0;
|
||||||
top: 0;
|
top: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: auto;
|
height: 100%;
|
||||||
opacity: 0.3;
|
opacity: 0.3;
|
||||||
|
object-fit: cover;
|
||||||
|
object-position: 50% 50%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -571,6 +650,16 @@ div.container {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p.buttons {
|
||||||
|
margin-top: 1rem;
|
||||||
|
justify-content: end;
|
||||||
|
align-content: space-between;
|
||||||
|
|
||||||
|
& > span {
|
||||||
|
margin-right: 0.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
address {
|
address {
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
|
|
||||||
|
@ -43,8 +43,29 @@
|
|||||||
<div class="table-container">
|
<div class="table-container">
|
||||||
<table class="table is-striped is-fullwidth">
|
<table class="table is-striped is-fullwidth">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr v-if="report.reported.__typename === 'Group'">
|
||||||
<td>{{ $t("Reported identity") }}</td>
|
<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>
|
<td>
|
||||||
<router-link
|
<router-link
|
||||||
:to="{
|
:to="{
|
||||||
@ -58,7 +79,7 @@
|
|||||||
:src="report.reported.avatar.url"
|
:src="report.reported.avatar.url"
|
||||||
alt=""
|
alt=""
|
||||||
/>
|
/>
|
||||||
@{{ report.reported.preferredUsername }}
|
{{ displayNameAndUsername(report.reported) }}
|
||||||
</router-link>
|
</router-link>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -80,7 +101,7 @@
|
|||||||
:src="report.reporter.avatar.url"
|
:src="report.reporter.avatar.url"
|
||||||
alt=""
|
alt=""
|
||||||
/>
|
/>
|
||||||
@{{ report.reporter.preferredUsername }}
|
{{ displayNameAndUsername(report.reporter) }}
|
||||||
</router-link>
|
</router-link>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -157,38 +178,40 @@
|
|||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ul v-for="comment in report.comments" v-if="report.comments.length > 0" :key="comment.id">
|
<div v-if="report.comments.length > 0">
|
||||||
<li>
|
<ul v-for="comment in report.comments" :key="comment.id">
|
||||||
<div class="box" v-if="comment">
|
<li>
|
||||||
<article class="media">
|
<div class="box" v-if="comment">
|
||||||
<div class="media-left">
|
<article class="media">
|
||||||
<figure class="image is-48x48" v-if="comment.actor && comment.actor.avatar">
|
<div class="media-left">
|
||||||
<img :src="comment.actor.avatar.url" alt="Image" />
|
<figure class="image is-48x48" v-if="comment.actor && comment.actor.avatar">
|
||||||
</figure>
|
<img :src="comment.actor.avatar.url" alt="Image" />
|
||||||
<b-icon class="media-left" v-else size="is-large" icon="account-circle" />
|
</figure>
|
||||||
</div>
|
<b-icon class="media-left" v-else size="is-large" icon="account-circle" />
|
||||||
<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>
|
</div>
|
||||||
<b-button
|
<div class="media-content">
|
||||||
type="is-danger"
|
<div class="content">
|
||||||
@click="confirmCommentDelete(comment)"
|
<span v-if="comment.actor">
|
||||||
icon-left="delete"
|
<strong>{{ comment.actor.name }}</strong>
|
||||||
size="is-small"
|
<small>@{{ comment.actor.preferredUsername }}</small>
|
||||||
>{{ $t("Delete") }}</b-button
|
</span>
|
||||||
>
|
<span v-else>{{ $t("Unknown actor") }}</span>
|
||||||
</div>
|
<br />
|
||||||
</article>
|
<p v-html="comment.text" />
|
||||||
</div>
|
</div>
|
||||||
</li>
|
<b-button
|
||||||
</ul>
|
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>
|
<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">
|
<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 { CREATE_REPORT_NOTE, REPORT, UPDATE_REPORT } from "@/graphql/report";
|
||||||
import { IReport, IReportNote, ReportStatusEnum } from "@/types/report.model";
|
import { IReport, IReportNote, ReportStatusEnum } from "@/types/report.model";
|
||||||
import { CURRENT_ACTOR_CLIENT } from "@/graphql/actor";
|
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 { DELETE_EVENT } from "@/graphql/event";
|
||||||
import { uniq } from "lodash";
|
import { uniq } from "lodash";
|
||||||
import { nl2br } from "@/utils/html";
|
import { nl2br } from "@/utils/html";
|
||||||
@ -272,7 +295,9 @@ export default class Report extends Vue {
|
|||||||
|
|
||||||
noteContent = "";
|
noteContent = "";
|
||||||
|
|
||||||
addNote() {
|
displayNameAndUsername = displayNameAndUsername;
|
||||||
|
|
||||||
|
addNote(): void {
|
||||||
try {
|
try {
|
||||||
this.$apollo.mutate<{ createReportNote: IReportNote }>({
|
this.$apollo.mutate<{ createReportNote: IReportNote }>({
|
||||||
mutation: CREATE_REPORT_NOTE,
|
mutation: CREATE_REPORT_NOTE,
|
||||||
@ -312,7 +337,7 @@ export default class Report extends Vue {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
confirmEventDelete() {
|
confirmEventDelete(): void {
|
||||||
this.$buefy.dialog.confirm({
|
this.$buefy.dialog.confirm({
|
||||||
title: this.$t("Deleting event") as string,
|
title: this.$t("Deleting event") as string,
|
||||||
message: this.$t(
|
message: this.$t(
|
||||||
@ -325,7 +350,7 @@ export default class Report extends Vue {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
confirmCommentDelete(comment: IComment) {
|
confirmCommentDelete(comment: IComment): void {
|
||||||
this.$buefy.dialog.confirm({
|
this.$buefy.dialog.confirm({
|
||||||
title: this.$t("Deleting comment") as string,
|
title: this.$t("Deleting comment") as string,
|
||||||
message: this.$t(
|
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;
|
if (!this.report.event || !this.report.event.id) return;
|
||||||
const eventTitle = this.report.event.title;
|
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 {
|
try {
|
||||||
await this.$apollo.mutate({
|
await this.$apollo.mutate({
|
||||||
mutation: DELETE_COMMENT,
|
mutation: DELETE_COMMENT,
|
||||||
@ -379,7 +404,7 @@ export default class Report extends Vue {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async updateReport(status: ReportStatusEnum) {
|
async updateReport(status: ReportStatusEnum): Promise<void> {
|
||||||
try {
|
try {
|
||||||
await this.$apollo.mutate({
|
await this.$apollo.mutate({
|
||||||
mutation: UPDATE_REPORT,
|
mutation: UPDATE_REPORT,
|
||||||
@ -415,27 +440,6 @@ export default class Report extends Vue {
|
|||||||
console.error(error);
|
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>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
@ -44,7 +44,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<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 { IReport, ReportStatusEnum } from "@/types/report.model";
|
||||||
import { REPORTS } from "@/graphql/report";
|
import { REPORTS } from "@/graphql/report";
|
||||||
import ReportCard from "@/components/Report/ReportCard.vue";
|
import ReportCard from "@/components/Report/ReportCard.vue";
|
||||||
@ -77,7 +77,7 @@ export default class ReportList extends Vue {
|
|||||||
filterReports: ReportStatusEnum = ReportStatusEnum.OPEN;
|
filterReports: ReportStatusEnum = ReportStatusEnum.OPEN;
|
||||||
|
|
||||||
@Watch("$route.params.filter", { immediate: true })
|
@Watch("$route.params.filter", { immediate: true })
|
||||||
onRouteFilterChanged(val: string) {
|
onRouteFilterChanged(val: string): void {
|
||||||
if (!val) return;
|
if (!val) return;
|
||||||
const filter = val.toUpperCase();
|
const filter = val.toUpperCase();
|
||||||
if (filter in ReportStatusEnum) {
|
if (filter in ReportStatusEnum) {
|
||||||
@ -86,7 +86,7 @@ export default class ReportList extends Vue {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Watch("filterReports", { immediate: true })
|
@Watch("filterReports", { immediate: true })
|
||||||
async onFilterChanged(val: string) {
|
async onFilterChanged(val: string): Promise<void> {
|
||||||
await this.$router.push({
|
await this.$router.push({
|
||||||
name: RouteName.REPORTS,
|
name: RouteName.REPORTS,
|
||||||
params: { filter: val.toLowerCase() },
|
params: { filter: val.toLowerCase() },
|
||||||
|
@ -204,7 +204,7 @@ defmodule Mobilizon.Actors.Actor do
|
|||||||
end
|
end
|
||||||
|
|
||||||
def display_name_and_username(%__MODULE__{name: name} = actor) do
|
def display_name_and_username(%__MODULE__{name: name} = actor) do
|
||||||
"#{name} (#{preferred_username_and_domain(actor)})"
|
"#{name} (@#{preferred_username_and_domain(actor)})"
|
||||||
end
|
end
|
||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
|
@ -16,7 +16,8 @@ defmodule Mobilizon.Web.Email.Admin do
|
|||||||
alias Mobilizon.Web.{Email, Gettext}
|
alias Mobilizon.Web.{Email, Gettext}
|
||||||
|
|
||||||
@spec report(User.t(), Report.t(), String.t()) :: Bamboo.Email.t()
|
@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)
|
Gettext.put_locale(locale)
|
||||||
|
|
||||||
subject =
|
subject =
|
||||||
|
@ -147,7 +147,7 @@ defmodule Mobilizon.Web.Router do
|
|||||||
get("/events/:uuid/edit", PageController, :edit_event)
|
get("/events/:uuid/edit", PageController, :edit_event)
|
||||||
|
|
||||||
# This is a hack to ease link generation into emails
|
# 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)
|
get("/participation/email/confirm/:token", PageController, :participation_email_confirmation)
|
||||||
|
|
||||||
|
@ -38,12 +38,34 @@
|
|||||||
<%= if @report.reporter.type == :Application and @report.reporter.preferred_username == "relay" do %>
|
<%= 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 %>
|
<%= gettext("Someone on <b>%{instance}</b> reported the following content for you to analyze:", instance: @report.reporter.domain) |> raw %>
|
||||||
<% else %>
|
<% 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 %>
|
<% end %>
|
||||||
</p>
|
</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<%= if Map.has_key?(@report, :event) do %>
|
<%= if @report.reported do %>
|
||||||
|
<tr>
|
||||||
|
<td bgcolor="#ffffff" align="left" style="padding: 20px 30px 0px 30px; color: #474467; font-family: 'Roboto', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;" >
|
||||||
|
<p style="margin: 0;">
|
||||||
|
<%= if @report.reported.type == :Group do %>
|
||||||
|
<h3><%= gettext "Group reported" %></h3>
|
||||||
|
<a href="<%= "#{Mobilizon.Web.Endpoint.url()}/@#{Mobilizon.Actors.Actor.preferred_username_and_domain(@report.reported)}" %>" target="_blank">
|
||||||
|
<b><%= Mobilizon.Actors.Actor.display_name_and_username(@report.reported) %></b>
|
||||||
|
</a>
|
||||||
|
<% else %>
|
||||||
|
<h3><%= gettext "Profile reported" %></h3>
|
||||||
|
<b><%= Mobilizon.Actors.Actor.display_name_and_username(@report.reported) %></b>
|
||||||
|
<% end %>
|
||||||
|
</p>
|
||||||
|
<table cellspacing="0" cellpadding="0" border="0" width="100%" style="width: 100% !important;">
|
||||||
|
<tr>
|
||||||
|
<td align="left" valign="top" width="600px" height="1" style="background-color: #f0f0f0; border-collapse:collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; mso-line-height-rule: exactly; line-height: 1px;"><!--[if gte mso 15]> <![endif]--></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<% end %>
|
||||||
|
<%= if Map.has_key?(@report, :event) and @report.event do %>
|
||||||
<tr>
|
<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;" >
|
<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;">
|
<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;" >
|
<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">
|
<p style="margin: 0">
|
||||||
<h3><%= gettext "Reasons for report" %></h3>
|
<h3><%= gettext "Reasons for report" %></h3>
|
||||||
<%= @report.content %>
|
<%= @report.content |> raw %>
|
||||||
</p>
|
</p>
|
||||||
<table cellspacing="0" cellpadding="0" border="0" width="100%" style="width: 100% !important;">
|
<table cellspacing="0" cellpadding="0" border="0" width="100%" style="width: 100% !important;">
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -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" %>
|
<%= gettext "Event" %>
|
||||||
<%= @report.event.title %>
|
<%= @report.event.title %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
@ -26,7 +26,7 @@ msgid "Feed for %{email} on Mobilizon"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:52
|
#: lib/web/templates/email/report.html.eex:74
|
||||||
msgid "%{title} by %{creator}"
|
msgid "%{title} by %{creator}"
|
||||||
msgstr "%{title} لِـ %{creator}"
|
msgstr "%{title} لِـ %{creator}"
|
||||||
|
|
||||||
@ -42,13 +42,13 @@ msgid "Ask the community on Framacolibri"
|
|||||||
msgstr "أطلب مِن المجتمَع على Framacolibri"
|
msgstr "أطلب مِن المجتمَع على Framacolibri"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:8
|
#: lib/web/templates/email/report.text.eex:15
|
||||||
msgid "Comments"
|
msgid "Comments"
|
||||||
msgstr "التعليقات"
|
msgstr "التعليقات"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_updated.html.eex:62
|
#: 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"
|
msgid "Event"
|
||||||
msgstr "الفعالية"
|
msgstr "الفعالية"
|
||||||
|
|
||||||
@ -58,7 +58,7 @@ msgid "Instructions to reset your password on %{instance}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:14
|
#: lib/web/templates/email/report.text.eex:21
|
||||||
msgid "Reason"
|
msgid "Reason"
|
||||||
msgstr "السبب"
|
msgstr "السبب"
|
||||||
|
|
||||||
@ -78,7 +78,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/admin.ex:23
|
#: lib/web/email/admin.ex:24
|
||||||
msgid "New report on Mobilizon instance %{instance}"
|
msgid "New report on Mobilizon instance %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -739,7 +739,7 @@ msgid "Your content is yours"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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"
|
msgid "Confirm my e-mail address"
|
||||||
msgstr ""
|
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."
|
msgid "You created an account on <b>%{host}</b> with this email address. You are one click away from activating it."
|
||||||
msgstr ""
|
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
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:13
|
#: lib/web/templates/email/report.html.eex:13
|
||||||
msgid "New report on <b>%{instance}</b>"
|
msgid "New report on <b>%{instance}</b>"
|
||||||
@ -797,7 +792,7 @@ msgid "Please do not use it for real purposes."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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/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/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||||
@ -868,7 +863,7 @@ msgid "Event update!"
|
|||||||
msgstr "تم تحديث الفعالية!"
|
msgstr "تم تحديث الفعالية!"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:66
|
#: lib/web/templates/email/report.html.eex:88
|
||||||
msgid "Flagged comments"
|
msgid "Flagged comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -957,7 +952,7 @@ msgid "New email confirmation"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:84
|
#: lib/web/templates/email/report.html.eex:106
|
||||||
msgid "Reasons for report"
|
msgid "Reasons for report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1018,12 +1013,12 @@ msgid "Verify your email address"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:104
|
#: lib/web/templates/email/report.html.eex:126
|
||||||
msgid "View report"
|
msgid "View report"
|
||||||
msgstr "إعرض التقرير"
|
msgstr "إعرض التقرير"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:17
|
#: lib/web/templates/email/report.text.eex:24
|
||||||
msgid "View report:"
|
msgid "View report:"
|
||||||
msgstr "إعرض التقرير"
|
msgstr "إعرض التقرير"
|
||||||
|
|
||||||
@ -1290,7 +1285,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
|
||||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:4
|
#: 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!"
|
msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1305,3 +1299,33 @@ msgstr "لقد قمتَ بتقديم طلب للمشاركة في فعالية %
|
|||||||
#: lib/web/email/participation.ex:92
|
#: lib/web/email/participation.ex:92
|
||||||
msgid "Your participation to event %{title} has been confirmed"
|
msgid "Your participation to event %{title} has been confirmed"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
@ -23,7 +23,7 @@ msgid "Feed for %{email} on Mobilizon"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:52
|
#: lib/web/templates/email/report.html.eex:74
|
||||||
msgid "%{title} by %{creator}"
|
msgid "%{title} by %{creator}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -39,13 +39,13 @@ msgid "Ask the community on Framacolibri"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:8
|
#: lib/web/templates/email/report.text.eex:15
|
||||||
msgid "Comments"
|
msgid "Comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_updated.html.eex:62
|
#: 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"
|
msgid "Event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -55,7 +55,7 @@ msgid "Instructions to reset your password on %{instance}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:14
|
#: lib/web/templates/email/report.text.eex:21
|
||||||
msgid "Reason"
|
msgid "Reason"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -75,7 +75,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/admin.ex:23
|
#: lib/web/email/admin.ex:24
|
||||||
msgid "New report on Mobilizon instance %{instance}"
|
msgid "New report on Mobilizon instance %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -721,7 +721,7 @@ msgid "Your content is yours"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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"
|
msgid "Confirm my e-mail address"
|
||||||
msgstr ""
|
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."
|
msgid "You created an account on <b>%{host}</b> with this email address. You are one click away from activating it."
|
||||||
msgstr ""
|
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
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:13
|
#: lib/web/templates/email/report.html.eex:13
|
||||||
msgid "New report on <b>%{instance}</b>"
|
msgid "New report on <b>%{instance}</b>"
|
||||||
@ -779,7 +774,7 @@ msgid "Please do not use it for real purposes."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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/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/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||||
@ -844,7 +839,7 @@ msgid "Event update!"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:66
|
#: lib/web/templates/email/report.html.eex:88
|
||||||
msgid "Flagged comments"
|
msgid "Flagged comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -933,7 +928,7 @@ msgid "New email confirmation"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:84
|
#: lib/web/templates/email/report.html.eex:106
|
||||||
msgid "Reasons for report"
|
msgid "Reasons for report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -994,12 +989,12 @@ msgid "Verify your email address"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:104
|
#: lib/web/templates/email/report.html.eex:126
|
||||||
msgid "View report"
|
msgid "View report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:17
|
#: lib/web/templates/email/report.text.eex:24
|
||||||
msgid "View report:"
|
msgid "View report:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1266,7 +1261,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
|
||||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:4
|
#: 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!"
|
msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1281,3 +1275,33 @@ msgstr ""
|
|||||||
#: lib/web/email/participation.ex:92
|
#: lib/web/email/participation.ex:92
|
||||||
msgid "Your participation to event %{title} has been confirmed"
|
msgid "Your participation to event %{title} has been confirmed"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
@ -27,7 +27,7 @@ msgid "Feed for %{email} on Mobilizon"
|
|||||||
msgstr "Flux per %{email} a Mobilizon"
|
msgstr "Flux per %{email} a Mobilizon"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:52
|
#: lib/web/templates/email/report.html.eex:74
|
||||||
msgid "%{title} by %{creator}"
|
msgid "%{title} by %{creator}"
|
||||||
msgstr "%{title} de %{creator}"
|
msgstr "%{title} de %{creator}"
|
||||||
|
|
||||||
@ -43,13 +43,13 @@ msgid "Ask the community on Framacolibri"
|
|||||||
msgstr "Pregunta a la comunitat a Framacolibri"
|
msgstr "Pregunta a la comunitat a Framacolibri"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:8
|
#: lib/web/templates/email/report.text.eex:15
|
||||||
msgid "Comments"
|
msgid "Comments"
|
||||||
msgstr "Comentaris"
|
msgstr "Comentaris"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_updated.html.eex:62
|
#: 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"
|
msgid "Event"
|
||||||
msgstr "Activitat"
|
msgstr "Activitat"
|
||||||
|
|
||||||
@ -59,7 +59,7 @@ msgid "Instructions to reset your password on %{instance}"
|
|||||||
msgstr "Instruccions per canviar la contrasenya a %{instance}"
|
msgstr "Instruccions per canviar la contrasenya a %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:14
|
#: lib/web/templates/email/report.text.eex:21
|
||||||
msgid "Reason"
|
msgid "Reason"
|
||||||
msgstr "Raó"
|
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}"
|
msgstr "Instruccions per confirmar el teu compte de Mobilizon a %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/admin.ex:23
|
#: lib/web/email/admin.ex:24
|
||||||
msgid "New report on Mobilizon instance %{instance}"
|
msgid "New report on Mobilizon instance %{instance}"
|
||||||
msgstr "S'ha denunciat una activitat al servidor de Mobilizon %{instance}"
|
msgstr "S'ha denunciat una activitat al servidor de Mobilizon %{instance}"
|
||||||
|
|
||||||
@ -726,7 +726,7 @@ msgid "Your content is yours"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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"
|
msgid "Confirm my e-mail address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -754,11 +754,6 @@ msgid "You created an account on <b>%{host}</b> with this email address. You are
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Has creat un compte a %{host} amb aquest mail. Estàs a un clic d'activar-lo."
|
"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
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:13
|
#: lib/web/templates/email/report.html.eex:13
|
||||||
msgid "New report on <b>%{instance}</b>"
|
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"
|
msgstr "No ho facis servir més que proves, sisplau"
|
||||||
|
|
||||||
#, elixir-format
|
#, 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/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/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
#: lib/web/templates/email/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!"
|
msgstr "S'ha actualitzat l'activitat!"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:66
|
#: lib/web/templates/email/report.html.eex:88
|
||||||
msgid "Flagged comments"
|
msgid "Flagged comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -950,7 +945,7 @@ msgid "New email confirmation"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:84
|
#: lib/web/templates/email/report.html.eex:106
|
||||||
msgid "Reasons for report"
|
msgid "Reasons for report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1011,12 +1006,12 @@ msgid "Verify your email address"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:104
|
#: lib/web/templates/email/report.html.eex:126
|
||||||
msgid "View report"
|
msgid "View report"
|
||||||
msgstr "Mostra la denúncia"
|
msgstr "Mostra la denúncia"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:17
|
#: lib/web/templates/email/report.text.eex:24
|
||||||
msgid "View report:"
|
msgid "View report:"
|
||||||
msgstr "Mostra la denúncia"
|
msgstr "Mostra la denúncia"
|
||||||
|
|
||||||
@ -1286,7 +1281,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
|
||||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:4
|
#: 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!"
|
msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1301,3 +1295,33 @@ msgstr "Has soŀlicitat participar a l'activitat %{title}."
|
|||||||
#: lib/web/email/participation.ex:92
|
#: lib/web/email/participation.ex:92
|
||||||
msgid "Your participation to event %{title} has been confirmed"
|
msgid "Your participation to event %{title} has been confirmed"
|
||||||
msgstr "T'han aprovat la participació a %{title}"
|
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 ""
|
||||||
|
@ -23,7 +23,7 @@ msgid "Feed for %{email} on Mobilizon"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:52
|
#: lib/web/templates/email/report.html.eex:74
|
||||||
msgid "%{title} by %{creator}"
|
msgid "%{title} by %{creator}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -39,13 +39,13 @@ msgid "Ask the community on Framacolibri"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:8
|
#: lib/web/templates/email/report.text.eex:15
|
||||||
msgid "Comments"
|
msgid "Comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_updated.html.eex:62
|
#: 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"
|
msgid "Event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -55,7 +55,7 @@ msgid "Instructions to reset your password on %{instance}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:14
|
#: lib/web/templates/email/report.text.eex:21
|
||||||
msgid "Reason"
|
msgid "Reason"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -75,7 +75,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/admin.ex:23
|
#: lib/web/email/admin.ex:24
|
||||||
msgid "New report on Mobilizon instance %{instance}"
|
msgid "New report on Mobilizon instance %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -721,7 +721,7 @@ msgid "Your content is yours"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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"
|
msgid "Confirm my e-mail address"
|
||||||
msgstr ""
|
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."
|
msgid "You created an account on <b>%{host}</b> with this email address. You are one click away from activating it."
|
||||||
msgstr ""
|
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
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:13
|
#: lib/web/templates/email/report.html.eex:13
|
||||||
msgid "New report on <b>%{instance}</b>"
|
msgid "New report on <b>%{instance}</b>"
|
||||||
@ -779,7 +774,7 @@ msgid "Please do not use it for real purposes."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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/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/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||||
@ -844,7 +839,7 @@ msgid "Event update!"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:66
|
#: lib/web/templates/email/report.html.eex:88
|
||||||
msgid "Flagged comments"
|
msgid "Flagged comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -933,7 +928,7 @@ msgid "New email confirmation"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:84
|
#: lib/web/templates/email/report.html.eex:106
|
||||||
msgid "Reasons for report"
|
msgid "Reasons for report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -994,12 +989,12 @@ msgid "Verify your email address"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:104
|
#: lib/web/templates/email/report.html.eex:126
|
||||||
msgid "View report"
|
msgid "View report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:17
|
#: lib/web/templates/email/report.text.eex:24
|
||||||
msgid "View report:"
|
msgid "View report:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1266,7 +1261,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
|
||||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:4
|
#: 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!"
|
msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1281,3 +1275,33 @@ msgstr ""
|
|||||||
#: lib/web/email/participation.ex:92
|
#: lib/web/email/participation.ex:92
|
||||||
msgid "Your participation to event %{title} has been confirmed"
|
msgid "Your participation to event %{title} has been confirmed"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
@ -28,7 +28,7 @@ msgid "Feed for %{email} on Mobilizon"
|
|||||||
msgstr "Feed für %{email} auf Mobilizon"
|
msgstr "Feed für %{email} auf Mobilizon"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:52
|
#: lib/web/templates/email/report.html.eex:74
|
||||||
msgid "%{title} by %{creator}"
|
msgid "%{title} by %{creator}"
|
||||||
msgstr "%{title} von %{creator}"
|
msgstr "%{title} von %{creator}"
|
||||||
|
|
||||||
@ -44,13 +44,13 @@ msgid "Ask the community on Framacolibri"
|
|||||||
msgstr "Frag die Gemeinschaft auf Framacolibri"
|
msgstr "Frag die Gemeinschaft auf Framacolibri"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:8
|
#: lib/web/templates/email/report.text.eex:15
|
||||||
msgid "Comments"
|
msgid "Comments"
|
||||||
msgstr "Kommentare"
|
msgstr "Kommentare"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_updated.html.eex:62
|
#: 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"
|
msgid "Event"
|
||||||
msgstr "Veranstaltung"
|
msgstr "Veranstaltung"
|
||||||
|
|
||||||
@ -60,7 +60,7 @@ msgid "Instructions to reset your password on %{instance}"
|
|||||||
msgstr "Anweisungen um dein Passwort auf %{instance} zurückzusetzen"
|
msgstr "Anweisungen um dein Passwort auf %{instance} zurückzusetzen"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:14
|
#: lib/web/templates/email/report.text.eex:21
|
||||||
msgid "Reason"
|
msgid "Reason"
|
||||||
msgstr "Begründung"
|
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"
|
msgstr "Anweisungen um deinen Mobilizon-Account auf %{instance} zu bestätigen"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/admin.ex:23
|
#: lib/web/email/admin.ex:24
|
||||||
msgid "New report on Mobilizon instance %{instance}"
|
msgid "New report on Mobilizon instance %{instance}"
|
||||||
msgstr "Neue Meldung auf der Mobilizon-Instanz %{instance}"
|
msgstr "Neue Meldung auf der Mobilizon-Instanz %{instance}"
|
||||||
|
|
||||||
@ -731,7 +731,7 @@ msgid "Your content is yours"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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"
|
msgid "Confirm my e-mail address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -760,12 +760,6 @@ msgstr ""
|
|||||||
"Du hast einen Account auf %{host} mit dieser E-Mail-Adresse. Du bist nur ein "
|
"Du hast einen Account auf %{host} mit dieser E-Mail-Adresse. Du bist nur ein "
|
||||||
"Klick von der Aktivierung entfernt."
|
"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
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:13
|
#: lib/web/templates/email/report.html.eex:13
|
||||||
msgid "New report on <b>%{instance}</b>"
|
msgid "New report on <b>%{instance}</b>"
|
||||||
@ -796,7 +790,7 @@ msgid "Please do not use it for real purposes."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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/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/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
#: lib/web/templates/email/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!"
|
msgstr "Veranstaltung aktualisiert!"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:66
|
#: lib/web/templates/email/report.html.eex:88
|
||||||
msgid "Flagged comments"
|
msgid "Flagged comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -958,7 +952,7 @@ msgid "New email confirmation"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:84
|
#: lib/web/templates/email/report.html.eex:106
|
||||||
msgid "Reasons for report"
|
msgid "Reasons for report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1019,12 +1013,12 @@ msgid "Verify your email address"
|
|||||||
msgstr "Bestätig E-Mail Adresse"
|
msgstr "Bestätig E-Mail Adresse"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:104
|
#: lib/web/templates/email/report.html.eex:126
|
||||||
msgid "View report"
|
msgid "View report"
|
||||||
msgstr "Meldung ansehen"
|
msgstr "Meldung ansehen"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:17
|
#: lib/web/templates/email/report.text.eex:24
|
||||||
msgid "View report:"
|
msgid "View report:"
|
||||||
msgstr "Meldung ansehen"
|
msgstr "Meldung ansehen"
|
||||||
|
|
||||||
@ -1294,7 +1288,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
|
||||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:4
|
#: 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!"
|
msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1309,3 +1302,34 @@ msgstr "Du hast angefragt, an der Veranstaltung %{title} teilzunehmen."
|
|||||||
#: lib/web/email/participation.ex:92
|
#: lib/web/email/participation.ex:92
|
||||||
msgid "Your participation to event %{title} has been confirmed"
|
msgid "Your participation to event %{title} has been confirmed"
|
||||||
msgstr "Deine Teilnahme an der Veranstaltung %{title}wurde akzeptiert"
|
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 ""
|
||||||
|
@ -9,7 +9,7 @@ msgid "Feed for %{email} on Mobilizon"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:52
|
#: lib/web/templates/email/report.html.eex:74
|
||||||
msgid "%{title} by %{creator}"
|
msgid "%{title} by %{creator}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -25,13 +25,13 @@ msgid "Ask the community on Framacolibri"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:8
|
#: lib/web/templates/email/report.text.eex:15
|
||||||
msgid "Comments"
|
msgid "Comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_updated.html.eex:62
|
#: 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"
|
msgid "Event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -41,7 +41,7 @@ msgid "Instructions to reset your password on %{instance}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:14
|
#: lib/web/templates/email/report.text.eex:21
|
||||||
msgid "Reason"
|
msgid "Reason"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -61,7 +61,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/admin.ex:23
|
#: lib/web/email/admin.ex:24
|
||||||
msgid "New report on Mobilizon instance %{instance}"
|
msgid "New report on Mobilizon instance %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -702,7 +702,7 @@ msgid "Your content is yours"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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"
|
msgid "Confirm my e-mail address"
|
||||||
msgstr ""
|
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."
|
msgid "You created an account on <b>%{host}</b> with this email address. You are one click away from activating it."
|
||||||
msgstr ""
|
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
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:13
|
#: lib/web/templates/email/report.html.eex:13
|
||||||
msgid "New report on <b>%{instance}</b>"
|
msgid "New report on <b>%{instance}</b>"
|
||||||
@ -760,7 +755,7 @@ msgid "Please do not use it for real purposes."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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/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/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||||
@ -823,7 +818,7 @@ msgid "Event update!"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:66
|
#: lib/web/templates/email/report.html.eex:88
|
||||||
msgid "Flagged comments"
|
msgid "Flagged comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -912,7 +907,7 @@ msgid "New email confirmation"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:84
|
#: lib/web/templates/email/report.html.eex:106
|
||||||
msgid "Reasons for report"
|
msgid "Reasons for report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -973,12 +968,12 @@ msgid "Verify your email address"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:104
|
#: lib/web/templates/email/report.html.eex:126
|
||||||
msgid "View report"
|
msgid "View report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:17
|
#: lib/web/templates/email/report.text.eex:24
|
||||||
msgid "View report:"
|
msgid "View report:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1245,7 +1240,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
|
||||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:4
|
#: 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!"
|
msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1260,3 +1254,33 @@ msgstr ""
|
|||||||
#: lib/web/email/participation.ex:92
|
#: lib/web/email/participation.ex:92
|
||||||
msgid "Your participation to event %{title} has been confirmed"
|
msgid "Your participation to event %{title} has been confirmed"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
@ -32,7 +32,7 @@ msgid "Feed for %{email} on Mobilizon"
|
|||||||
msgstr "Feed for %{email} on Mobilizon"
|
msgstr "Feed for %{email} on Mobilizon"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:52
|
#: lib/web/templates/email/report.html.eex:74
|
||||||
msgid "%{title} by %{creator}"
|
msgid "%{title} by %{creator}"
|
||||||
msgstr "%{title} by %{creator}"
|
msgstr "%{title} by %{creator}"
|
||||||
|
|
||||||
@ -48,13 +48,13 @@ msgid "Ask the community on Framacolibri"
|
|||||||
msgstr "Ask the community on Framacolibri"
|
msgstr "Ask the community on Framacolibri"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:8
|
#: lib/web/templates/email/report.text.eex:15
|
||||||
msgid "Comments"
|
msgid "Comments"
|
||||||
msgstr "Comments"
|
msgstr "Comments"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_updated.html.eex:62
|
#: 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"
|
msgid "Event"
|
||||||
msgstr "Event"
|
msgstr "Event"
|
||||||
|
|
||||||
@ -64,7 +64,7 @@ msgid "Instructions to reset your password on %{instance}"
|
|||||||
msgstr "Instructions to reset your password on %{instance}"
|
msgstr "Instructions to reset your password on %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:14
|
#: lib/web/templates/email/report.text.eex:21
|
||||||
msgid "Reason"
|
msgid "Reason"
|
||||||
msgstr "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}"
|
msgstr "Instructions to confirm your Mobilizon account on %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/admin.ex:23
|
#: lib/web/email/admin.ex:24
|
||||||
msgid "New report on Mobilizon instance %{instance}"
|
msgid "New report on Mobilizon instance %{instance}"
|
||||||
msgstr "New report on Mobilizon instance %{instance}"
|
msgstr "New report on Mobilizon instance %{instance}"
|
||||||
|
|
||||||
@ -725,7 +725,7 @@ msgid "Your content is yours"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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"
|
msgid "Confirm my e-mail address"
|
||||||
msgstr ""
|
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."
|
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."
|
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
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:13
|
#: lib/web/templates/email/report.html.eex:13
|
||||||
msgid "New report on <b>%{instance}</b>"
|
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"
|
msgstr "Please do not use it in any real way"
|
||||||
|
|
||||||
#, elixir-format
|
#, 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/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/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
#: lib/web/templates/email/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!"
|
msgstr "Event updated!"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:66
|
#: lib/web/templates/email/report.html.eex:88
|
||||||
msgid "Flagged comments"
|
msgid "Flagged comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -935,7 +930,7 @@ msgid "New email confirmation"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:84
|
#: lib/web/templates/email/report.html.eex:106
|
||||||
msgid "Reasons for report"
|
msgid "Reasons for report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -996,12 +991,12 @@ msgid "Verify your email address"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:104
|
#: lib/web/templates/email/report.html.eex:126
|
||||||
msgid "View report"
|
msgid "View report"
|
||||||
msgstr "View the report"
|
msgstr "View the report"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:17
|
#: lib/web/templates/email/report.text.eex:24
|
||||||
msgid "View report:"
|
msgid "View report:"
|
||||||
msgstr "View the report"
|
msgstr "View the report"
|
||||||
|
|
||||||
@ -1268,7 +1263,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
|
||||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:4
|
#: 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!"
|
msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1283,3 +1277,33 @@ msgstr "You requested to participate in event %{title}."
|
|||||||
#: lib/web/email/participation.ex:92
|
#: lib/web/email/participation.ex:92
|
||||||
msgid "Your participation to event %{title} has been confirmed"
|
msgid "Your participation to event %{title} has been confirmed"
|
||||||
msgstr "Your participation to event %{title} has been approved"
|
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 ""
|
||||||
|
@ -27,7 +27,7 @@ msgid "Feed for %{email} on Mobilizon"
|
|||||||
msgstr "Feed para% {email} en Mobilizon"
|
msgstr "Feed para% {email} en Mobilizon"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:52
|
#: lib/web/templates/email/report.html.eex:74
|
||||||
msgid "%{title} by %{creator}"
|
msgid "%{title} by %{creator}"
|
||||||
msgstr "%{title} por %{creator}"
|
msgstr "%{title} por %{creator}"
|
||||||
|
|
||||||
@ -43,13 +43,13 @@ msgid "Ask the community on Framacolibri"
|
|||||||
msgstr "Preguntar a la comunidad en framacolibri"
|
msgstr "Preguntar a la comunidad en framacolibri"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:8
|
#: lib/web/templates/email/report.text.eex:15
|
||||||
msgid "Comments"
|
msgid "Comments"
|
||||||
msgstr "Comentarios"
|
msgstr "Comentarios"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_updated.html.eex:62
|
#: 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"
|
msgid "Event"
|
||||||
msgstr "Evento"
|
msgstr "Evento"
|
||||||
|
|
||||||
@ -59,7 +59,7 @@ msgid "Instructions to reset your password on %{instance}"
|
|||||||
msgstr "Instrucciones para restablecer su contraseña en %{instance}"
|
msgstr "Instrucciones para restablecer su contraseña en %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:14
|
#: lib/web/templates/email/report.text.eex:21
|
||||||
msgid "Reason"
|
msgid "Reason"
|
||||||
msgstr "Razón"
|
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}"
|
msgstr "Instrucciones para confirmar su cuenta Mobilizon en %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/admin.ex:23
|
#: lib/web/email/admin.ex:24
|
||||||
msgid "New report on Mobilizon instance %{instance}"
|
msgid "New report on Mobilizon instance %{instance}"
|
||||||
msgstr "Nuevo informe sobre la instancia Mobilizon %{instance}"
|
msgstr "Nuevo informe sobre la instancia Mobilizon %{instance}"
|
||||||
|
|
||||||
@ -896,7 +896,7 @@ msgid "Your content is yours"
|
|||||||
msgstr "Tu contenido es tuyo"
|
msgstr "Tu contenido es tuyo"
|
||||||
|
|
||||||
#, elixir-format
|
#, 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"
|
msgid "Confirm my e-mail address"
|
||||||
msgstr "Confirmar mi dirección de correo electrónico"
|
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 "
|
"Creó una cuenta en <b>% {host} </b> con esta dirección de correo "
|
||||||
"electrónico. Estás a un clic de activarlo."
|
"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
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:13
|
#: lib/web/templates/email/report.html.eex:13
|
||||||
msgid "New report on <b>%{instance}</b>"
|
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."
|
msgstr "Por favor no lo use de ninguna manera real."
|
||||||
|
|
||||||
#, elixir-format
|
#, 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/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/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
#: lib/web/templates/email/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!"
|
msgstr "¡Evento actualizado!"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:66
|
#: lib/web/templates/email/report.html.eex:88
|
||||||
msgid "Flagged comments"
|
msgid "Flagged comments"
|
||||||
msgstr "Comentarios marcados"
|
msgstr "Comentarios marcados"
|
||||||
|
|
||||||
@ -1143,7 +1136,7 @@ msgid "New email confirmation"
|
|||||||
msgstr "Nueva confirmación de correo electrónico"
|
msgstr "Nueva confirmación de correo electrónico"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:84
|
#: lib/web/templates/email/report.html.eex:106
|
||||||
msgid "Reasons for report"
|
msgid "Reasons for report"
|
||||||
msgstr "Razones para informar"
|
msgstr "Razones para informar"
|
||||||
|
|
||||||
@ -1207,12 +1200,12 @@ msgid "Verify your email address"
|
|||||||
msgstr "Verifica tu dirección de correo electrónico"
|
msgstr "Verifica tu dirección de correo electrónico"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:104
|
#: lib/web/templates/email/report.html.eex:126
|
||||||
msgid "View report"
|
msgid "View report"
|
||||||
msgstr "Ver el informe"
|
msgstr "Ver el informe"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:17
|
#: lib/web/templates/email/report.text.eex:24
|
||||||
msgid "View report:"
|
msgid "View report:"
|
||||||
msgstr "Ver el informe:"
|
msgstr "Ver el informe:"
|
||||||
|
|
||||||
@ -1584,7 +1577,6 @@ msgstr ""
|
|||||||
"medida en que estos destinatarios residen en un servidor diferente a este."
|
"medida en que estos destinatarios residen en un servidor diferente a este."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
|
||||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:4
|
#: 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!"
|
msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1599,3 +1591,35 @@ msgstr "Solicitaste participar en el evento %{title}."
|
|||||||
#: lib/web/email/participation.ex:92
|
#: lib/web/email/participation.ex:92
|
||||||
msgid "Your participation to event %{title} has been confirmed"
|
msgid "Your participation to event %{title} has been confirmed"
|
||||||
msgstr "Su participación en el evento %{title} ha sido aprobada"
|
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 ""
|
||||||
|
@ -27,7 +27,7 @@ msgid "Feed for %{email} on Mobilizon"
|
|||||||
msgstr "Mobilizon-syöte osoitteeseen %{email}"
|
msgstr "Mobilizon-syöte osoitteeseen %{email}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:52
|
#: lib/web/templates/email/report.html.eex:74
|
||||||
msgid "%{title} by %{creator}"
|
msgid "%{title} by %{creator}"
|
||||||
msgstr "%{title} luojalta %{creator}"
|
msgstr "%{title} luojalta %{creator}"
|
||||||
|
|
||||||
@ -43,13 +43,13 @@ msgid "Ask the community on Framacolibri"
|
|||||||
msgstr "Kysy yhteisöltä Framacolibrissa"
|
msgstr "Kysy yhteisöltä Framacolibrissa"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:8
|
#: lib/web/templates/email/report.text.eex:15
|
||||||
msgid "Comments"
|
msgid "Comments"
|
||||||
msgstr "Kommentit"
|
msgstr "Kommentit"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_updated.html.eex:62
|
#: 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"
|
msgid "Event"
|
||||||
msgstr "Tapahtuma"
|
msgstr "Tapahtuma"
|
||||||
|
|
||||||
@ -59,7 +59,7 @@ msgid "Instructions to reset your password on %{instance}"
|
|||||||
msgstr "Ohjeet salasanan palauttamiseen palvelimella %{instance}"
|
msgstr "Ohjeet salasanan palauttamiseen palvelimella %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:14
|
#: lib/web/templates/email/report.text.eex:21
|
||||||
msgid "Reason"
|
msgid "Reason"
|
||||||
msgstr "Syy"
|
msgstr "Syy"
|
||||||
|
|
||||||
@ -81,7 +81,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}"
|
|||||||
msgstr "Ohjeet Mobilizon-tilin vahvistamiseen palvelimella %{instance}"
|
msgstr "Ohjeet Mobilizon-tilin vahvistamiseen palvelimella %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/admin.ex:23
|
#: lib/web/email/admin.ex:24
|
||||||
msgid "New report on Mobilizon instance %{instance}"
|
msgid "New report on Mobilizon instance %{instance}"
|
||||||
msgstr "Uusi raportti Mobilizon-palvelimella %{instance}"
|
msgstr "Uusi raportti Mobilizon-palvelimella %{instance}"
|
||||||
|
|
||||||
@ -878,7 +878,7 @@ msgid "Your content is yours"
|
|||||||
msgstr "Sisältösi kuuluu sinulle"
|
msgstr "Sisältösi kuuluu sinulle"
|
||||||
|
|
||||||
#, elixir-format
|
#, 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"
|
msgid "Confirm my e-mail address"
|
||||||
msgstr "Vahvista sähköpostiosoite"
|
msgstr "Vahvista sähköpostiosoite"
|
||||||
|
|
||||||
@ -909,12 +909,6 @@ msgstr ""
|
|||||||
"Loit palvelimelle <b>%{host}</b> tilin tällä sähköpostiosoitteella. Aktivoi "
|
"Loit palvelimelle <b>%{host}</b> tilin tällä sähköpostiosoitteella. Aktivoi "
|
||||||
"se yhdellä napsautuksella."
|
"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
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:13
|
#: lib/web/templates/email/report.html.eex:13
|
||||||
msgid "New report on <b>%{instance}</b>"
|
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."
|
msgstr "Älä käytä todellisiin tarkoituksiin."
|
||||||
|
|
||||||
#, elixir-format
|
#, 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/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/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
#: lib/web/templates/email/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!"
|
msgstr "Tapahtuma päivitetty!"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:66
|
#: lib/web/templates/email/report.html.eex:88
|
||||||
msgid "Flagged comments"
|
msgid "Flagged comments"
|
||||||
msgstr "Merkityt kommentit"
|
msgstr "Merkityt kommentit"
|
||||||
|
|
||||||
@ -1122,7 +1116,7 @@ msgid "New email confirmation"
|
|||||||
msgstr "Uuden sähköpostiosoitteen vahvistaminen"
|
msgstr "Uuden sähköpostiosoitteen vahvistaminen"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:84
|
#: lib/web/templates/email/report.html.eex:106
|
||||||
msgid "Reasons for report"
|
msgid "Reasons for report"
|
||||||
msgstr "Raportin syy"
|
msgstr "Raportin syy"
|
||||||
|
|
||||||
@ -1185,12 +1179,12 @@ msgid "Verify your email address"
|
|||||||
msgstr "Vahvista sähköpostiosoite"
|
msgstr "Vahvista sähköpostiosoite"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:104
|
#: lib/web/templates/email/report.html.eex:126
|
||||||
msgid "View report"
|
msgid "View report"
|
||||||
msgstr "Näytä raportti"
|
msgstr "Näytä raportti"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:17
|
#: lib/web/templates/email/report.text.eex:24
|
||||||
msgid "View report:"
|
msgid "View report:"
|
||||||
msgstr "Näytä raportti:"
|
msgstr "Näytä raportti:"
|
||||||
|
|
||||||
@ -1542,7 +1536,6 @@ msgstr ""
|
|||||||
"palvelinta käyttäviä jäseniä."
|
"palvelinta käyttäviä jäseniä."
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
|
||||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:4
|
#: 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!"
|
msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1557,3 +1550,34 @@ msgstr "Lähetit pyynnön osallistua tapahtumaan %{title}."
|
|||||||
#: lib/web/email/participation.ex:92
|
#: lib/web/email/participation.ex:92
|
||||||
msgid "Your participation to event %{title} has been confirmed"
|
msgid "Your participation to event %{title} has been confirmed"
|
||||||
msgstr "Osallistumisesi tapahtumaan %{title} on hyväksytty"
|
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
@ -27,7 +27,7 @@ msgid "Feed for %{email} on Mobilizon"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:52
|
#: lib/web/templates/email/report.html.eex:74
|
||||||
msgid "%{title} by %{creator}"
|
msgid "%{title} by %{creator}"
|
||||||
msgstr "%{title} di %{creator}"
|
msgstr "%{title} di %{creator}"
|
||||||
|
|
||||||
@ -43,13 +43,13 @@ msgid "Ask the community on Framacolibri"
|
|||||||
msgstr "Chiedi alla comunità su Framacolibri"
|
msgstr "Chiedi alla comunità su Framacolibri"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:8
|
#: lib/web/templates/email/report.text.eex:15
|
||||||
msgid "Comments"
|
msgid "Comments"
|
||||||
msgstr "Commenti"
|
msgstr "Commenti"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_updated.html.eex:62
|
#: 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"
|
msgid "Event"
|
||||||
msgstr "Evento"
|
msgstr "Evento"
|
||||||
|
|
||||||
@ -59,7 +59,7 @@ msgid "Instructions to reset your password on %{instance}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:14
|
#: lib/web/templates/email/report.text.eex:21
|
||||||
msgid "Reason"
|
msgid "Reason"
|
||||||
msgstr "Spiegazione"
|
msgstr "Spiegazione"
|
||||||
|
|
||||||
@ -79,7 +79,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/admin.ex:23
|
#: lib/web/email/admin.ex:24
|
||||||
msgid "New report on Mobilizon instance %{instance}"
|
msgid "New report on Mobilizon instance %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -720,7 +720,7 @@ msgid "Your content is yours"
|
|||||||
msgstr "I tuoi dati ti appartengono"
|
msgstr "I tuoi dati ti appartengono"
|
||||||
|
|
||||||
#, elixir-format
|
#, 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"
|
msgid "Confirm my e-mail address"
|
||||||
msgstr "Conferma il mio indirizzo e-mail"
|
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."
|
msgid "You created an account on <b>%{host}</b> with this email address. You are one click away from activating it."
|
||||||
msgstr ""
|
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
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:13
|
#: lib/web/templates/email/report.html.eex:13
|
||||||
msgid "New report on <b>%{instance}</b>"
|
msgid "New report on <b>%{instance}</b>"
|
||||||
@ -778,7 +773,7 @@ msgid "Please do not use it for real purposes."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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/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/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
#: lib/web/templates/email/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!"
|
msgstr "Evento aggiornato!"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:66
|
#: lib/web/templates/email/report.html.eex:88
|
||||||
msgid "Flagged comments"
|
msgid "Flagged comments"
|
||||||
msgstr "Commenti contrassegnati"
|
msgstr "Commenti contrassegnati"
|
||||||
|
|
||||||
@ -930,7 +925,7 @@ msgid "New email confirmation"
|
|||||||
msgstr "Conferma del nuovo indirizzo e-mail"
|
msgstr "Conferma del nuovo indirizzo e-mail"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:84
|
#: lib/web/templates/email/report.html.eex:106
|
||||||
msgid "Reasons for report"
|
msgid "Reasons for report"
|
||||||
msgstr "Ragioni della segnalazione"
|
msgstr "Ragioni della segnalazione"
|
||||||
|
|
||||||
@ -992,12 +987,12 @@ msgid "Verify your email address"
|
|||||||
msgstr "Verifica il tuo indirizzo e-mail"
|
msgstr "Verifica il tuo indirizzo e-mail"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:104
|
#: lib/web/templates/email/report.html.eex:126
|
||||||
msgid "View report"
|
msgid "View report"
|
||||||
msgstr "Visualizza la segnalazione"
|
msgstr "Visualizza la segnalazione"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:17
|
#: lib/web/templates/email/report.text.eex:24
|
||||||
msgid "View report:"
|
msgid "View report:"
|
||||||
msgstr "Visualizza la segnalazione:"
|
msgstr "Visualizza la segnalazione:"
|
||||||
|
|
||||||
@ -1264,7 +1259,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
|
||||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:4
|
#: 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!"
|
msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1279,3 +1273,33 @@ msgstr ""
|
|||||||
#: lib/web/email/participation.ex:92
|
#: lib/web/email/participation.ex:92
|
||||||
msgid "Your participation to event %{title} has been confirmed"
|
msgid "Your participation to event %{title} has been confirmed"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
@ -25,7 +25,7 @@ msgid "Feed for %{email} on Mobilizon"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:52
|
#: lib/web/templates/email/report.html.eex:74
|
||||||
msgid "%{title} by %{creator}"
|
msgid "%{title} by %{creator}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -41,13 +41,13 @@ msgid "Ask the community on Framacolibri"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:8
|
#: lib/web/templates/email/report.text.eex:15
|
||||||
msgid "Comments"
|
msgid "Comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_updated.html.eex:62
|
#: 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"
|
msgid "Event"
|
||||||
msgstr "イベント"
|
msgstr "イベント"
|
||||||
|
|
||||||
@ -57,7 +57,7 @@ msgid "Instructions to reset your password on %{instance}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:14
|
#: lib/web/templates/email/report.text.eex:21
|
||||||
msgid "Reason"
|
msgid "Reason"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -77,7 +77,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/admin.ex:23
|
#: lib/web/email/admin.ex:24
|
||||||
msgid "New report on Mobilizon instance %{instance}"
|
msgid "New report on Mobilizon instance %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -713,7 +713,7 @@ msgid "Your content is yours"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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"
|
msgid "Confirm my e-mail address"
|
||||||
msgstr ""
|
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."
|
msgid "You created an account on <b>%{host}</b> with this email address. You are one click away from activating it."
|
||||||
msgstr ""
|
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
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:13
|
#: lib/web/templates/email/report.html.eex:13
|
||||||
msgid "New report on <b>%{instance}</b>"
|
msgid "New report on <b>%{instance}</b>"
|
||||||
@ -771,7 +766,7 @@ msgid "Please do not use it for real purposes."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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/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/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||||
@ -832,7 +827,7 @@ msgid "Event update!"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:66
|
#: lib/web/templates/email/report.html.eex:88
|
||||||
msgid "Flagged comments"
|
msgid "Flagged comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -921,7 +916,7 @@ msgid "New email confirmation"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:84
|
#: lib/web/templates/email/report.html.eex:106
|
||||||
msgid "Reasons for report"
|
msgid "Reasons for report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -982,12 +977,12 @@ msgid "Verify your email address"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:104
|
#: lib/web/templates/email/report.html.eex:126
|
||||||
msgid "View report"
|
msgid "View report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:17
|
#: lib/web/templates/email/report.text.eex:24
|
||||||
msgid "View report:"
|
msgid "View report:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1254,7 +1249,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
|
||||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:4
|
#: 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!"
|
msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1269,3 +1263,33 @@ msgstr ""
|
|||||||
#: lib/web/email/participation.ex:92
|
#: lib/web/email/participation.ex:92
|
||||||
msgid "Your participation to event %{title} has been confirmed"
|
msgid "Your participation to event %{title} has been confirmed"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
@ -28,7 +28,7 @@ msgid "Feed for %{email} on Mobilizon"
|
|||||||
msgstr "Feed voor %{email} op Mobilizon"
|
msgstr "Feed voor %{email} op Mobilizon"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:52
|
#: lib/web/templates/email/report.html.eex:74
|
||||||
msgid "%{title} by %{creator}"
|
msgid "%{title} by %{creator}"
|
||||||
msgstr "%{title} door %{creator}"
|
msgstr "%{title} door %{creator}"
|
||||||
|
|
||||||
@ -44,13 +44,13 @@ msgid "Ask the community on Framacolibri"
|
|||||||
msgstr "Vragen aan de gemeenschap op Framacolibri"
|
msgstr "Vragen aan de gemeenschap op Framacolibri"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:8
|
#: lib/web/templates/email/report.text.eex:15
|
||||||
msgid "Comments"
|
msgid "Comments"
|
||||||
msgstr "Opmerkingen"
|
msgstr "Opmerkingen"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_updated.html.eex:62
|
#: 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"
|
msgid "Event"
|
||||||
msgstr "Evenement"
|
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}"
|
msgstr "Instructies om uw wachtwoord opnieuw in te stellen op %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:14
|
#: lib/web/templates/email/report.text.eex:21
|
||||||
msgid "Reason"
|
msgid "Reason"
|
||||||
msgstr "Reden"
|
msgstr "Reden"
|
||||||
|
|
||||||
@ -82,7 +82,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}"
|
|||||||
msgstr "Instructies om uw Mobilizonaccount op %{instance} te bevestigen"
|
msgstr "Instructies om uw Mobilizonaccount op %{instance} te bevestigen"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/admin.ex:23
|
#: lib/web/email/admin.ex:24
|
||||||
msgid "New report on Mobilizon instance %{instance}"
|
msgid "New report on Mobilizon instance %{instance}"
|
||||||
msgstr "Nieuwe melding op de Mobilizonserver %{instance}"
|
msgstr "Nieuwe melding op de Mobilizonserver %{instance}"
|
||||||
|
|
||||||
@ -727,7 +727,7 @@ msgid "Your content is yours"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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"
|
msgid "Confirm my e-mail address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -756,12 +756,6 @@ msgstr ""
|
|||||||
"U hebt een account op %{host} gemaakt met dit emailadres. U bent op één "
|
"U hebt een account op %{host} gemaakt met dit emailadres. U bent op één "
|
||||||
"klik van de activering."
|
"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
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:13
|
#: lib/web/templates/email/report.html.eex:13
|
||||||
msgid "New report on <b>%{instance}</b>"
|
msgid "New report on <b>%{instance}</b>"
|
||||||
@ -791,7 +785,7 @@ msgid "Please do not use it for real purposes."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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/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/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
#: lib/web/templates/email/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!"
|
msgstr "Evenement bijgewerkt!"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:66
|
#: lib/web/templates/email/report.html.eex:88
|
||||||
msgid "Flagged comments"
|
msgid "Flagged comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -953,7 +947,7 @@ msgid "New email confirmation"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:84
|
#: lib/web/templates/email/report.html.eex:106
|
||||||
msgid "Reasons for report"
|
msgid "Reasons for report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1014,12 +1008,12 @@ msgid "Verify your email address"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:104
|
#: lib/web/templates/email/report.html.eex:126
|
||||||
msgid "View report"
|
msgid "View report"
|
||||||
msgstr "Bekijk de melding"
|
msgstr "Bekijk de melding"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:17
|
#: lib/web/templates/email/report.text.eex:24
|
||||||
msgid "View report:"
|
msgid "View report:"
|
||||||
msgstr "Bekijk de melding"
|
msgstr "Bekijk de melding"
|
||||||
|
|
||||||
@ -1289,7 +1283,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
|
||||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:4
|
#: 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!"
|
msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1304,3 +1297,34 @@ msgstr "U hebt gevraagd om deel te nemen aan het evenement %{title}."
|
|||||||
#: lib/web/email/participation.ex:92
|
#: lib/web/email/participation.ex:92
|
||||||
msgid "Your participation to event %{title} has been confirmed"
|
msgid "Your participation to event %{title} has been confirmed"
|
||||||
msgstr "Uw deelname aan het evenement %{title} is goedgekeurd"
|
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 ""
|
||||||
|
@ -26,7 +26,7 @@ msgid "Feed for %{email} on Mobilizon"
|
|||||||
msgstr "Flux per %{email} sus Mobilizon"
|
msgstr "Flux per %{email} sus Mobilizon"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:52
|
#: lib/web/templates/email/report.html.eex:74
|
||||||
msgid "%{title} by %{creator}"
|
msgid "%{title} by %{creator}"
|
||||||
msgstr "%{title} per %{creator}"
|
msgstr "%{title} per %{creator}"
|
||||||
|
|
||||||
@ -42,13 +42,13 @@ msgid "Ask the community on Framacolibri"
|
|||||||
msgstr "Demandatz a la comunautat sus Framacolibri"
|
msgstr "Demandatz a la comunautat sus Framacolibri"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:8
|
#: lib/web/templates/email/report.text.eex:15
|
||||||
msgid "Comments"
|
msgid "Comments"
|
||||||
msgstr "Comentaris"
|
msgstr "Comentaris"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_updated.html.eex:62
|
#: 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"
|
msgid "Event"
|
||||||
msgstr "Eveniment"
|
msgstr "Eveniment"
|
||||||
|
|
||||||
@ -58,7 +58,7 @@ msgid "Instructions to reset your password on %{instance}"
|
|||||||
msgstr "Consignas per reïnincializar vòstre senhal sus %{instance}"
|
msgstr "Consignas per reïnincializar vòstre senhal sus %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:14
|
#: lib/web/templates/email/report.text.eex:21
|
||||||
msgid "Reason"
|
msgid "Reason"
|
||||||
msgstr "Rason"
|
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}"
|
msgstr "Consignas per confirmar vòstre compte Mobilizon sus %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/admin.ex:23
|
#: lib/web/email/admin.ex:24
|
||||||
msgid "New report on Mobilizon instance %{instance}"
|
msgid "New report on Mobilizon instance %{instance}"
|
||||||
msgstr "Nòu senhalament sus l’instància Mobilizon %{instance}"
|
msgstr "Nòu senhalament sus l’instància Mobilizon %{instance}"
|
||||||
|
|
||||||
@ -725,7 +725,7 @@ msgid "Your content is yours"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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"
|
msgid "Confirm my e-mail address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -752,11 +752,6 @@ msgstr "Besonh d’ajuda ? Quicòm truca ?"
|
|||||||
msgid "You created an account on <b>%{host}</b> with this email address. You are one click away from activating it."
|
msgid "You created an account on <b>%{host}</b> with this email address. You are one click away from activating it."
|
||||||
msgstr "Avètz creat un compte sus %{host} amb aquesta adreça electronica. Sètz a un clic de l’activar."
|
msgstr "Avètz creat un compte sus %{host} amb aquesta adreça electronica. Sètz a un clic de l’activar."
|
||||||
|
|
||||||
#, elixir-format
|
|
||||||
#: lib/web/templates/email/report.html.eex:41
|
|
||||||
msgid "<b>%{reporter_name}</b> (%{reporter_username}) reported the following content."
|
|
||||||
msgstr "%{reporter_name} (%{reporter_username}) a senhalat lo contengut seguent."
|
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:13
|
#: lib/web/templates/email/report.html.eex:13
|
||||||
msgid "New report on <b>%{instance}</b>"
|
msgid "New report on <b>%{instance}</b>"
|
||||||
@ -787,7 +782,7 @@ msgid "Please do not use it for real purposes."
|
|||||||
msgstr "Mercés de l’utilizar pas d’un biais real"
|
msgstr "Mercés de l’utilizar pas d’un biais real"
|
||||||
|
|
||||||
#, elixir-format
|
#, 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/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/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
#: lib/web/templates/email/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 !"
|
msgstr "Eveniment actualizat !"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:66
|
#: lib/web/templates/email/report.html.eex:88
|
||||||
msgid "Flagged comments"
|
msgid "Flagged comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -952,7 +947,7 @@ msgid "New email confirmation"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:84
|
#: lib/web/templates/email/report.html.eex:106
|
||||||
msgid "Reasons for report"
|
msgid "Reasons for report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1014,12 +1009,12 @@ msgid "Verify your email address"
|
|||||||
msgstr "Verificar l’adreça electronica"
|
msgstr "Verificar l’adreça electronica"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:104
|
#: lib/web/templates/email/report.html.eex:126
|
||||||
msgid "View report"
|
msgid "View report"
|
||||||
msgstr "Veire lo senhalament"
|
msgstr "Veire lo senhalament"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:17
|
#: lib/web/templates/email/report.text.eex:24
|
||||||
msgid "View report:"
|
msgid "View report:"
|
||||||
msgstr "Veire lo senhalament"
|
msgstr "Veire lo senhalament"
|
||||||
|
|
||||||
@ -1291,7 +1286,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
|
||||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:4
|
#: 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!"
|
msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1306,3 +1300,33 @@ msgstr "Avètz demandat de participar a l’eveniment %{title}."
|
|||||||
#: lib/web/email/participation.ex:92
|
#: lib/web/email/participation.ex:92
|
||||||
msgid "Your participation to event %{title} has been confirmed"
|
msgid "Your participation to event %{title} has been confirmed"
|
||||||
msgstr "Vòstra participacion a l’eveniment %{title} es estada aprovada"
|
msgstr "Vòstra participacion a l’eveniment %{title} es estada aprovada"
|
||||||
|
|
||||||
|
#, elixir-format, fuzzy
|
||||||
|
#: lib/web/templates/email/report.html.eex:41
|
||||||
|
msgid "<b>%{reporter}</b> reported the following content."
|
||||||
|
msgstr "%{reporter_name} (%{reporter_username}) a senhalat lo contengut seguent."
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/templates/email/report.text.eex:5
|
||||||
|
msgid "Group %{group} was reported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/templates/email/report.html.eex:51
|
||||||
|
msgid "Group reported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/templates/email/report.text.eex:7
|
||||||
|
msgid "Profile %{profile} was reported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format
|
||||||
|
#: lib/web/templates/email/report.html.eex:56
|
||||||
|
msgid "Profile reported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, elixir-format, fuzzy
|
||||||
|
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
||||||
|
msgid "You have now confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
|
msgstr ""
|
||||||
|
@ -29,7 +29,7 @@ msgid "Feed for %{email} on Mobilizon"
|
|||||||
msgstr "Strumień dla %{email} na Mobilizon"
|
msgstr "Strumień dla %{email} na Mobilizon"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:52
|
#: lib/web/templates/email/report.html.eex:74
|
||||||
msgid "%{title} by %{creator}"
|
msgid "%{title} by %{creator}"
|
||||||
msgstr "%{title} od %{creator}"
|
msgstr "%{title} od %{creator}"
|
||||||
|
|
||||||
@ -45,13 +45,13 @@ msgid "Ask the community on Framacolibri"
|
|||||||
msgstr "Zapytaj społeczność na Framacolibri"
|
msgstr "Zapytaj społeczność na Framacolibri"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:8
|
#: lib/web/templates/email/report.text.eex:15
|
||||||
msgid "Comments"
|
msgid "Comments"
|
||||||
msgstr "Komentarze"
|
msgstr "Komentarze"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_updated.html.eex:62
|
#: 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"
|
msgid "Event"
|
||||||
msgstr "Wydarzenie"
|
msgstr "Wydarzenie"
|
||||||
|
|
||||||
@ -61,7 +61,7 @@ msgid "Instructions to reset your password on %{instance}"
|
|||||||
msgstr "Instrukcje resetowania hasła na %{instance}"
|
msgstr "Instrukcje resetowania hasła na %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:14
|
#: lib/web/templates/email/report.text.eex:21
|
||||||
msgid "Reason"
|
msgid "Reason"
|
||||||
msgstr "Powód"
|
msgstr "Powód"
|
||||||
|
|
||||||
@ -83,7 +83,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}"
|
|||||||
msgstr "Instrukcje potwierdzania konta Mobilizon na %{instance}"
|
msgstr "Instrukcje potwierdzania konta Mobilizon na %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/admin.ex:23
|
#: lib/web/email/admin.ex:24
|
||||||
msgid "New report on Mobilizon instance %{instance}"
|
msgid "New report on Mobilizon instance %{instance}"
|
||||||
msgstr "Nowe zgłoszenie na instancji Mobilizon %{instance}"
|
msgstr "Nowe zgłoszenie na instancji Mobilizon %{instance}"
|
||||||
|
|
||||||
@ -736,7 +736,7 @@ msgid "Your content is yours"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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"
|
msgid "Confirm my e-mail address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -765,12 +765,6 @@ msgstr ""
|
|||||||
"Utworzyłeś(-aś) konto na %{host} używając tego adresu e-mail. Zostało jedno "
|
"Utworzyłeś(-aś) konto na %{host} używając tego adresu e-mail. Zostało jedno "
|
||||||
"kliknięcie, aby zaktywować je."
|
"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
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:13
|
#: lib/web/templates/email/report.html.eex:13
|
||||||
msgid "New report on <b>%{instance}</b>"
|
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"
|
msgstr "Nie używaj go do żadnych rzeczywistych celów"
|
||||||
|
|
||||||
#, elixir-format
|
#, 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/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/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
#: lib/web/templates/email/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!"
|
msgstr "Zaktualizowano wydarzenie!"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:66
|
#: lib/web/templates/email/report.html.eex:88
|
||||||
msgid "Flagged comments"
|
msgid "Flagged comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -966,7 +960,7 @@ msgid "New email confirmation"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:84
|
#: lib/web/templates/email/report.html.eex:106
|
||||||
msgid "Reasons for report"
|
msgid "Reasons for report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1027,12 +1021,12 @@ msgid "Verify your email address"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:104
|
#: lib/web/templates/email/report.html.eex:126
|
||||||
msgid "View report"
|
msgid "View report"
|
||||||
msgstr "Zobacz zgłoszenie"
|
msgstr "Zobacz zgłoszenie"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:17
|
#: lib/web/templates/email/report.text.eex:24
|
||||||
msgid "View report:"
|
msgid "View report:"
|
||||||
msgstr "Zobacz zgłoszenie"
|
msgstr "Zobacz zgłoszenie"
|
||||||
|
|
||||||
@ -1302,7 +1296,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
|
||||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:4
|
#: 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!"
|
msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1317,3 +1310,34 @@ msgstr "Poprosiłeś(-aś) o uczestnictwo w wydarzeniu %{title}."
|
|||||||
#: lib/web/email/participation.ex:92
|
#: lib/web/email/participation.ex:92
|
||||||
msgid "Your participation to event %{title} has been confirmed"
|
msgid "Your participation to event %{title} has been confirmed"
|
||||||
msgstr "Twój udział w wydarzeniu %{title} został zatwierdzony"
|
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 ""
|
||||||
|
@ -23,7 +23,7 @@ msgid "Feed for %{email} on Mobilizon"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:52
|
#: lib/web/templates/email/report.html.eex:74
|
||||||
msgid "%{title} by %{creator}"
|
msgid "%{title} by %{creator}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -39,13 +39,13 @@ msgid "Ask the community on Framacolibri"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:8
|
#: lib/web/templates/email/report.text.eex:15
|
||||||
msgid "Comments"
|
msgid "Comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_updated.html.eex:62
|
#: 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"
|
msgid "Event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -55,7 +55,7 @@ msgid "Instructions to reset your password on %{instance}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:14
|
#: lib/web/templates/email/report.text.eex:21
|
||||||
msgid "Reason"
|
msgid "Reason"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -75,7 +75,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/admin.ex:23
|
#: lib/web/email/admin.ex:24
|
||||||
msgid "New report on Mobilizon instance %{instance}"
|
msgid "New report on Mobilizon instance %{instance}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -716,7 +716,7 @@ msgid "Your content is yours"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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"
|
msgid "Confirm my e-mail address"
|
||||||
msgstr ""
|
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."
|
msgid "You created an account on <b>%{host}</b> with this email address. You are one click away from activating it."
|
||||||
msgstr ""
|
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
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:13
|
#: lib/web/templates/email/report.html.eex:13
|
||||||
msgid "New report on <b>%{instance}</b>"
|
msgid "New report on <b>%{instance}</b>"
|
||||||
@ -774,7 +769,7 @@ msgid "Please do not use it for real purposes."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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/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/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||||
@ -837,7 +832,7 @@ msgid "Event update!"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:66
|
#: lib/web/templates/email/report.html.eex:88
|
||||||
msgid "Flagged comments"
|
msgid "Flagged comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -926,7 +921,7 @@ msgid "New email confirmation"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:84
|
#: lib/web/templates/email/report.html.eex:106
|
||||||
msgid "Reasons for report"
|
msgid "Reasons for report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -987,12 +982,12 @@ msgid "Verify your email address"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:104
|
#: lib/web/templates/email/report.html.eex:126
|
||||||
msgid "View report"
|
msgid "View report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:17
|
#: lib/web/templates/email/report.text.eex:24
|
||||||
msgid "View report:"
|
msgid "View report:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1259,7 +1254,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
|
||||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:4
|
#: 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!"
|
msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1274,3 +1268,33 @@ msgstr ""
|
|||||||
#: lib/web/email/participation.ex:92
|
#: lib/web/email/participation.ex:92
|
||||||
msgid "Your participation to event %{title} has been confirmed"
|
msgid "Your participation to event %{title} has been confirmed"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
@ -27,7 +27,7 @@ msgid "Feed for %{email} on Mobilizon"
|
|||||||
msgstr "Feed para %{email} sobre o Mobilizon"
|
msgstr "Feed para %{email} sobre o Mobilizon"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:52
|
#: lib/web/templates/email/report.html.eex:74
|
||||||
msgid "%{title} by %{creator}"
|
msgid "%{title} by %{creator}"
|
||||||
msgstr "%{title} por %{creator}"
|
msgstr "%{title} por %{creator}"
|
||||||
|
|
||||||
@ -43,13 +43,13 @@ msgid "Ask the community on Framacolibri"
|
|||||||
msgstr "Perguntar à comunidade Framacolibri"
|
msgstr "Perguntar à comunidade Framacolibri"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:8
|
#: lib/web/templates/email/report.text.eex:15
|
||||||
msgid "Comments"
|
msgid "Comments"
|
||||||
msgstr "Comentários"
|
msgstr "Comentários"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_updated.html.eex:62
|
#: 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"
|
msgid "Event"
|
||||||
msgstr "Evento"
|
msgstr "Evento"
|
||||||
|
|
||||||
@ -59,7 +59,7 @@ msgid "Instructions to reset your password on %{instance}"
|
|||||||
msgstr "Instruções para reiniciar a senha de %{instance}"
|
msgstr "Instruções para reiniciar a senha de %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:14
|
#: lib/web/templates/email/report.text.eex:21
|
||||||
msgid "Reason"
|
msgid "Reason"
|
||||||
msgstr "Razão"
|
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}"
|
msgstr "Instruções para confirmar sua conta Mobilizon na instância %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/admin.ex:23
|
#: lib/web/email/admin.ex:24
|
||||||
msgid "New report on Mobilizon instance %{instance}"
|
msgid "New report on Mobilizon instance %{instance}"
|
||||||
msgstr "Novo relato na instância Mobilizon %{instance}"
|
msgstr "Novo relato na instância Mobilizon %{instance}"
|
||||||
|
|
||||||
@ -785,7 +785,7 @@ msgid "Your content is yours"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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"
|
msgid "Confirm my e-mail address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -814,11 +814,6 @@ msgstr ""
|
|||||||
"Você criou uma conta em %{host} com este endereço de email. Falta um clique "
|
"Você criou uma conta em %{host} com este endereço de email. Falta um clique "
|
||||||
"pra você ativar sua conta."
|
"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
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:13
|
#: lib/web/templates/email/report.html.eex:13
|
||||||
msgid "New report on <b>%{instance}</b>"
|
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"
|
msgstr "Por favor não utilize este serviço em nenhum caso real"
|
||||||
|
|
||||||
#, elixir-format
|
#, 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/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/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
#: lib/web/templates/email/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!"
|
msgstr "Evento atualizado!"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:66
|
#: lib/web/templates/email/report.html.eex:88
|
||||||
msgid "Flagged comments"
|
msgid "Flagged comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1010,7 +1005,7 @@ msgid "New email confirmation"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:84
|
#: lib/web/templates/email/report.html.eex:106
|
||||||
msgid "Reasons for report"
|
msgid "Reasons for report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1071,12 +1066,12 @@ msgid "Verify your email address"
|
|||||||
msgstr "Verificar endereço de email"
|
msgstr "Verificar endereço de email"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:104
|
#: lib/web/templates/email/report.html.eex:126
|
||||||
msgid "View report"
|
msgid "View report"
|
||||||
msgstr "Veja o relato"
|
msgstr "Veja o relato"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:17
|
#: lib/web/templates/email/report.text.eex:24
|
||||||
msgid "View report:"
|
msgid "View report:"
|
||||||
msgstr "Veja o relato"
|
msgstr "Veja o relato"
|
||||||
|
|
||||||
@ -1381,7 +1376,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
|
||||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:4
|
#: 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!"
|
msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1396,3 +1390,33 @@ msgstr "Você solicitou participar no evento %{title}."
|
|||||||
#: lib/web/email/participation.ex:92
|
#: lib/web/email/participation.ex:92
|
||||||
msgid "Your participation to event %{title} has been confirmed"
|
msgid "Your participation to event %{title} has been confirmed"
|
||||||
msgstr "A sua participação no evento %{title} foi aprovada"
|
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 ""
|
||||||
|
@ -28,7 +28,7 @@ msgid "Feed for %{email} on Mobilizon"
|
|||||||
msgstr "Лента для %{email} в Mobilizon"
|
msgstr "Лента для %{email} в Mobilizon"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:52
|
#: lib/web/templates/email/report.html.eex:74
|
||||||
msgid "%{title} by %{creator}"
|
msgid "%{title} by %{creator}"
|
||||||
msgstr "%{title} от %{creator}"
|
msgstr "%{title} от %{creator}"
|
||||||
|
|
||||||
@ -44,13 +44,13 @@ msgid "Ask the community on Framacolibri"
|
|||||||
msgstr "Обратиться к сообществу на Framacolibri"
|
msgstr "Обратиться к сообществу на Framacolibri"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:8
|
#: lib/web/templates/email/report.text.eex:15
|
||||||
msgid "Comments"
|
msgid "Comments"
|
||||||
msgstr "Комментарии"
|
msgstr "Комментарии"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_updated.html.eex:62
|
#: 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"
|
msgid "Event"
|
||||||
msgstr "Событие"
|
msgstr "Событие"
|
||||||
|
|
||||||
@ -60,7 +60,7 @@ msgid "Instructions to reset your password on %{instance}"
|
|||||||
msgstr "Инструкции по сбросу пароля на %{instance}"
|
msgstr "Инструкции по сбросу пароля на %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:14
|
#: lib/web/templates/email/report.text.eex:21
|
||||||
msgid "Reason"
|
msgid "Reason"
|
||||||
msgstr "Причина"
|
msgstr "Причина"
|
||||||
|
|
||||||
@ -82,7 +82,7 @@ msgid "Instructions to confirm your Mobilizon account on %{instance}"
|
|||||||
msgstr "Инструкции по подтверждению учётной записи Mobilizon на %{instance}"
|
msgstr "Инструкции по подтверждению учётной записи Mobilizon на %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/admin.ex:23
|
#: lib/web/email/admin.ex:24
|
||||||
msgid "New report on Mobilizon instance %{instance}"
|
msgid "New report on Mobilizon instance %{instance}"
|
||||||
msgstr "Новое сообщение о проблемах на сервере Mobilizon %{instance}"
|
msgstr "Новое сообщение о проблемах на сервере Mobilizon %{instance}"
|
||||||
|
|
||||||
@ -728,7 +728,7 @@ msgid "Your content is yours"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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"
|
msgid "Confirm my e-mail address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -757,13 +757,6 @@ msgstr ""
|
|||||||
"Вы создали на %{host} учётную запись с данным адресом электронной почты. "
|
"Вы создали на %{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
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:13
|
#: lib/web/templates/email/report.html.eex:13
|
||||||
msgid "New report on <b>%{instance}</b>"
|
msgid "New report on <b>%{instance}</b>"
|
||||||
@ -790,7 +783,7 @@ msgid "Please do not use it for real purposes."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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/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/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||||
@ -855,7 +848,7 @@ msgid "Event update!"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:66
|
#: lib/web/templates/email/report.html.eex:88
|
||||||
msgid "Flagged comments"
|
msgid "Flagged comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -944,7 +937,7 @@ msgid "New email confirmation"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:84
|
#: lib/web/templates/email/report.html.eex:106
|
||||||
msgid "Reasons for report"
|
msgid "Reasons for report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1005,12 +998,12 @@ msgid "Verify your email address"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:104
|
#: lib/web/templates/email/report.html.eex:126
|
||||||
msgid "View report"
|
msgid "View report"
|
||||||
msgstr "Показать сообщение о проблеме"
|
msgstr "Показать сообщение о проблеме"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:17
|
#: lib/web/templates/email/report.text.eex:24
|
||||||
msgid "View report:"
|
msgid "View report:"
|
||||||
msgstr "Показать сообщение о проблеме"
|
msgstr "Показать сообщение о проблеме"
|
||||||
|
|
||||||
@ -1277,7 +1270,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
|
||||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:4
|
#: 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!"
|
msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1292,3 +1284,35 @@ msgstr ""
|
|||||||
#: lib/web/email/participation.ex:92
|
#: lib/web/email/participation.ex:92
|
||||||
msgid "Your participation to event %{title} has been confirmed"
|
msgid "Your participation to event %{title} has been confirmed"
|
||||||
msgstr ""
|
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 ""
|
||||||
|
@ -28,7 +28,7 @@ msgid "Feed for %{email} on Mobilizon"
|
|||||||
msgstr "Flöde för %{email} på Mobilizon"
|
msgstr "Flöde för %{email} på Mobilizon"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:52
|
#: lib/web/templates/email/report.html.eex:74
|
||||||
msgid "%{title} by %{creator}"
|
msgid "%{title} by %{creator}"
|
||||||
msgstr "%{title} av %{creator}"
|
msgstr "%{title} av %{creator}"
|
||||||
|
|
||||||
@ -44,13 +44,13 @@ msgid "Ask the community on Framacolibri"
|
|||||||
msgstr "Fråga människorna på Framacolibri"
|
msgstr "Fråga människorna på Framacolibri"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:8
|
#: lib/web/templates/email/report.text.eex:15
|
||||||
msgid "Comments"
|
msgid "Comments"
|
||||||
msgstr "Kommentarer"
|
msgstr "Kommentarer"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_updated.html.eex:62
|
#: 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"
|
msgid "Event"
|
||||||
msgstr "Evenemang"
|
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}"
|
msgstr "Instruktioner för att återställa ditt lösenord på %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:14
|
#: lib/web/templates/email/report.text.eex:21
|
||||||
msgid "Reason"
|
msgid "Reason"
|
||||||
msgstr "Motivering"
|
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}"
|
msgstr "Instruktioner för att bekräfta ditt Mobilizon-konto på %{instance}"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/email/admin.ex:23
|
#: lib/web/email/admin.ex:24
|
||||||
msgid "New report on Mobilizon instance %{instance}"
|
msgid "New report on Mobilizon instance %{instance}"
|
||||||
msgstr "Ny anmälan på Mobilizon-instansen %{instance}"
|
msgstr "Ny anmälan på Mobilizon-instansen %{instance}"
|
||||||
|
|
||||||
@ -729,7 +729,7 @@ msgid "Your content is yours"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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"
|
msgid "Confirm my e-mail address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -758,12 +758,6 @@ msgstr ""
|
|||||||
"Du har skapat ett konto på <b>%{host}</b> med den här e-postadressen. Nu "
|
"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."
|
"å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
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:13
|
#: lib/web/templates/email/report.html.eex:13
|
||||||
msgid "New report on <b>%{instance}</b>"
|
msgid "New report on <b>%{instance}</b>"
|
||||||
@ -790,7 +784,7 @@ msgid "Please do not use it for real purposes."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, 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/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/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
#: lib/web/templates/email/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!"
|
msgstr "Evenemang uppdaterat!"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:66
|
#: lib/web/templates/email/report.html.eex:88
|
||||||
msgid "Flagged comments"
|
msgid "Flagged comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -949,7 +943,7 @@ msgid "New email confirmation"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:84
|
#: lib/web/templates/email/report.html.eex:106
|
||||||
msgid "Reasons for report"
|
msgid "Reasons for report"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1010,12 +1004,12 @@ msgid "Verify your email address"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.html.eex:104
|
#: lib/web/templates/email/report.html.eex:126
|
||||||
msgid "View report"
|
msgid "View report"
|
||||||
msgstr "Visa anmälan"
|
msgstr "Visa anmälan"
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/report.text.eex:17
|
#: lib/web/templates/email/report.text.eex:24
|
||||||
msgid "View report:"
|
msgid "View report:"
|
||||||
msgstr "Visa anmälan:"
|
msgstr "Visa anmälan:"
|
||||||
|
|
||||||
@ -1282,7 +1276,6 @@ msgid "Your content may be downloaded by other instances in the network. Your pu
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, elixir-format
|
#, elixir-format
|
||||||
#: lib/web/templates/email/event_participation_confirmed.html.eex:45
|
|
||||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:4
|
#: 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!"
|
msgid "You have confirmed your participation. Update your calendar, because you're on the guest list now!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1297,3 +1290,34 @@ msgstr "Du har bett om att få delta i evenemanget %{title}."
|
|||||||
#: lib/web/email/participation.ex:92
|
#: lib/web/email/participation.ex:92
|
||||||
msgid "Your participation to event %{title} has been confirmed"
|
msgid "Your participation to event %{title} has been confirmed"
|
||||||
msgstr "Din förfrågan om att få delta i evenemanget %{title} har godkännts"
|
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 ""
|
||||||
|
Loading…
Reference in New Issue
Block a user