Merge tag '1.1.1' into chapril

This commit is contained in:
Tykayn 2021-04-29 16:02:08 +02:00 committed by tykayn
commit 12045b7b21
135 changed files with 4249 additions and 1816 deletions

View File

@ -15,6 +15,5 @@ Makefile
README.md
SECURITY.md
ssh_match_hostname
support
.js/package-lock.json
js/node_modules

View File

@ -5,6 +5,49 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## 1.1.1 - 21-03-2021
### Changed
- Allow to remove user location setting and location information on an event or group
- Instance level feeds are now shown on the instance About page, and are exposed as `rel=alternate` links, if instance level feeds are activated in the config
- Webfinger module now queries the host-meta XRD endpoint to detect the webfinger well-known endpoint
- Instance maximum upload sizes are now exposed in the API
- Improve handling of media files which are too heavy
- Improve details when editing or showing an user through CLI
- More strict browser compatibility
- Renamed "Close events" to "Nearby events" ("close" is too close to "closed")
- Improved Sentry integration
### Fixes
- Fixed accessing a group discussion page without being a member (the page was just broken)
- Fixed reloading the members list after excluding a member
- Fixed comments being closed under an event message when not connected
- Fixed path issue when fetching favicon for resources
- Fixed content type and size missing for profile avatars
- Fixed HTTP clients user-agent not using runtime configuration
- Fixed the `support` folder not being copied into releases
- Fixed the participation button position when text is too long or in some cases
- Fixed the incorrect CSP configuration
- Fixed discussions being sent to followers instead of members
- Fixed showing broken public UI for deleted/suspended group
- Fixed warning when getting out of creating/editing an unsaved event that was broken for some languages
- Fixed addresses being not trimmed in the iCalendar exports
- Fixed editing an user's email in CLI
- Fixed suspended actors being refreshed
### Translations
- Gaelic
- German
- Kabyle (New!)
- Norwegian
- Russian
- Slovenian
- Spanish
## 1.1.0 - 31-03-2021
This version introduces a new way to install and host Mobilizon : Elixir releases. This is the new default way of installing Mobilizon. Please read [UPGRADE.md](./UPGRADE.md#upgrading-from-10-to-11) for details on how to migrate to Elixir binary releases or stay on source install.

View File

@ -16,7 +16,7 @@ Staying on source releases means:
* You can change things in Mobilizon's code and recompile right away to test changes
## Releases
If you want to migrate to releases, [we provide a full guide](https://tcit.frama.io/documentation/administration/upgrading/source_to_release/). You may do this at any time.
If you want to migrate to releases, [we provide a full guide](https://docs.joinmobilizon.org/administration/upgrading/source_to_release/). You may do this at any time.
## Source install
To stay on a source release, you just need to check the following things:

View File

@ -25,9 +25,9 @@ config :mobilizon, :instance,
allow_relay: true,
federating: true,
remote_limit: 100_000,
upload_limit: 10_000_000,
avatar_upload_limit: 2_000_000,
banner_upload_limit: 4_000_000,
upload_limit: 10_485_760,
avatar_upload_limit: 2_097_152,
banner_upload_limit: 4_194_304,
remove_orphan_uploads: true,
orphan_upload_grace_period_hours: 48,
remove_unconfirmed_users: true,

View File

@ -23,6 +23,7 @@ COPY priv ./priv
COPY config/config.exs config/prod.exs ./config/
COPY config/docker.exs ./config/runtime.exs
COPY rel ./rel
COPY support ./support
COPY --from=assets ./priv/static ./priv/static
RUN mix phx.digest \

1
js/.prettierrc.json Normal file
View File

@ -0,0 +1 @@
{}

View File

@ -1,6 +1,6 @@
{
"name": "mobilizon",
"version": "1.1.0",
"version": "1.1.1",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
@ -28,7 +28,6 @@
"bulma-divider": "^0.2.0",
"core-js": "^3.6.4",
"date-fns": "^2.16.0",
"eslint-plugin-cypress": "^2.10.3",
"graphql": "^15.0.0",
"graphql-tag": "^2.10.3",
"intersection-observer": "^0.12.0",
@ -42,7 +41,7 @@
"tiptap": "^1.32.0",
"tiptap-extensions": "^1.34.0",
"unfetch": "^4.2.0",
"v-tooltip": "^2.1.2",
"v-tooltip": "^2.1.3",
"vue": "^2.6.11",
"vue-apollo": "^3.0.3",
"vue-class-component": "^7.2.3",
@ -65,11 +64,11 @@
"@types/prosemirror-state": "^1.2.4",
"@types/prosemirror-view": "^1.11.4",
"@types/vuedraggable": "^2.23.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/cli-plugin-babel": "~4.5.12",
"@vue/cli-plugin-e2e-cypress": "~4.5.12",
"@vue/cli-plugin-eslint": "~4.5.12",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-pwa": "~4.5.12",
"@vue/cli-plugin-router": "~4.5.12",
"@vue/cli-plugin-typescript": "~4.5.12",
@ -78,17 +77,19 @@
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^1.1.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.0.0",
"eslint": "^6.7.2",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^6.2.2",
"flush-promises": "^1.0.2",
"jest-junit": "^12.0.0",
"mock-apollo-client": "^0.5",
"prettier": "2.2.1",
"mock-apollo-client": "^0.6",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"sass": "^1.29.0",
"sass-loader": "^10.0.1",
"typescript": "^4.2.3",
"sass-loader": "^8.0.2",
"typescript": "~4.1.5",
"vue-cli-plugin-svg": "~0.1.3",
"vue-i18n-extract": "^1.0.2",
"vue-template-compiler": "^2.6.11",

View File

@ -10,7 +10,7 @@
@select="handleSelect"
@infinite-scroll="getAsyncData"
>
<template slot-scope="props">
<template #default="props">
<div class="media">
<div class="media-left">
<img

View File

@ -78,7 +78,7 @@
></b-table-column
>
<template slot="detail" slot-scope="props">
<template #detail="props">
<article>
<div class="content">
<strong>{{ props.row.actor.name }}</strong>

View File

@ -103,7 +103,7 @@
></b-table-column
>
<template slot="detail" slot-scope="props">
<template #detail="props">
<article>
<div class="content">
<strong>{{ props.row.targetActor.name }}</strong>

View File

@ -39,7 +39,7 @@
</div>
</article>
</form>
<b-notification v-else :closable="false">{{
<b-notification v-else-if="isConnected" :closable="false">{{
$t("The organiser has chosen to close comments.")
}}</b-notification>
<p
@ -65,7 +65,7 @@
@delete-comment="deleteComment"
/>
</transition-group>
<div v-else-if="isAbleToComment" class="no-comments">
<div class="no-comments">
<span>{{ $t("No comments yet") }}</span>
</div>
</transition>
@ -350,11 +350,15 @@ export default class CommentTree extends Vue {
}
get isAbleToComment(): boolean {
if (this.currentActor?.id) {
if (this.isConnected) {
return this.areCommentsClosed || this.isEventOrganiser;
}
return false;
}
get isConnected(): boolean {
return this.currentActor?.id != undefined;
}
}
</script>

View File

@ -12,7 +12,7 @@
expanded
@select="updateSelected"
>
<template slot-scope="{ option }">
<template #default="{ option }">
<b-icon :icon="option.poiInfos.poiIcon.icon" />
<b>{{ option.poiInfos.name }}</b
><br />
@ -150,7 +150,7 @@ export default class AddressAutoComplete extends Vue {
}
get queryText(): string {
if (this.value) {
if (this.value !== undefined) {
return new Address(this.value).fullName;
}
return this.initialQueryText;

View File

@ -22,7 +22,7 @@
expanded
@select="updateSelected"
>
<template slot-scope="{ option }">
<template #default="{ option }">
<b-icon :icon="option.poiInfos.poiIcon.icon" />
<b>{{ option.poiInfos.name }}</b
><br />
@ -31,7 +31,7 @@
<template slot="empty">
<span v-if="isFetching">{{ $t("Searching") }}</span>
<div v-else-if="queryText.length >= 3" class="is-enabled">
<span>{{ $t('No results for "{queryText}"') }}</span>
<span>{{ $t('No results for "{queryText}"', { queryText }) }}</span>
<span>{{
$t(
"You can try another search term or drag and drop the marker on the map",
@ -46,6 +46,12 @@
</div>
</template>
</b-autocomplete>
<b-button
:disabled="!queryText"
@click="resetAddress"
class="reset-area"
icon-left="close"
/>
</b-field>
<div class="map" v-if="selected && selected.geom && selected.poiInfos">
<map-leaflet
@ -295,6 +301,20 @@ export default class FullAddressAutoComplete extends Vue {
);
});
}
@Watch("queryText")
resetAddressOnEmptyField(queryText: string): void {
if (queryText === "" && this.selected?.id) {
console.log("doing reset");
this.resetAddress();
}
}
resetAddress(): void {
this.$emit("input", null);
this.queryText = "";
this.selected = new Address();
}
}
</script>
<style lang="scss">

View File

@ -1,15 +1,35 @@
<template>
<div class="root">
<figure class="image" v-if="imageSrc">
<img :src="imageSrc" />
<figure class="image" v-if="imageSrc && !imagePreviewLoadingError">
<img :src="imageSrc" @error="showImageLoadingError" />
</figure>
<figure class="image is-128x128" v-else>
<div class="image-placeholder">
<span class="has-text-centered">{{ textFallback }}</span>
<div
class="image-placeholder"
:class="{ error: imagePreviewLoadingError }"
>
<span class="has-text-centered" v-if="imagePreviewLoadingError">{{
$t("Error while loading the preview")
}}</span>
<span class="has-text-centered" v-else>{{ textFallback }}</span>
</div>
</figure>
<div class="action-buttons">
<p v-if="pictureFile" class="metadata">
<span class="name" :title="pictureFile.name">{{
pictureFile.name
}}</span>
<span class="size">({{ formatBytes(pictureFile.size) }})</span>
</p>
<p v-if="pictureTooBig" class="picture-too-big">
{{
$t(
"The selected picture is too heavy. You need to select a file smaller than {size}.",
{ size: formatBytes(maxSize) }
)
}}
</p>
<b-field class="file is-primary">
<b-upload @input="onFileChanged" :accept="accept" class="file-label">
<span class="file-cta">
@ -47,6 +67,10 @@ figure.image {
justify-content: center;
align-items: center;
&.error {
border: 2px solid red;
}
span {
flex: 1;
color: #eee;
@ -56,6 +80,27 @@ figure.image {
.action-buttons {
display: flex;
flex-direction: column;
.file {
justify-content: center;
}
.metadata {
display: inline-flex;
.name {
max-width: 200px;
display: block;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
margin-right: 5px;
}
}
}
.picture-too-big {
color: $danger;
}
</style>
@ -87,30 +132,32 @@ export default class PictureUpload extends Vue {
})
textFallback!: string;
imageSrc: string | null = this.defaultImage ? this.defaultImage.url : null;
@Prop({ type: Number, required: false, default: 10_485_760 })
maxSize!: number;
file!: File | null;
mounted(): void {
if (this.pictureFile) {
this.updatePreview(this.pictureFile);
imagePreviewLoadingError = false;
get pictureTooBig(): boolean {
return this.pictureFile?.size > this.maxSize;
}
get imageSrc(): string | null {
if (this.pictureFile !== undefined) {
if (this.pictureFile === null) return null;
try {
return URL.createObjectURL(this.pictureFile);
} catch (e) {
console.error(e);
}
}
}
@Watch("pictureFile")
onPictureFileChanged(val: File): void {
this.updatePreview(val);
}
@Watch("defaultImage")
onDefaultImageChange(defaultImage: IMedia): void {
this.imageSrc = defaultImage ? defaultImage.url : null;
return this.defaultImage ? this.defaultImage.url : null;
}
onFileChanged(file: File | null): void {
this.$emit("change", file);
this.updatePreview(file);
this.file = file;
}
@ -118,13 +165,23 @@ export default class PictureUpload extends Vue {
this.onFileChanged(null);
}
private updatePreview(file?: File | null) {
if (file) {
this.imageSrc = URL.createObjectURL(file);
return;
}
@Watch("imageSrc")
resetImageLoadingError(): void {
this.imagePreviewLoadingError = false;
}
this.imageSrc = null;
showImageLoadingError(): void {
this.imagePreviewLoadingError = true;
}
// https://gist.github.com/zentala/1e6f72438796d74531803cc3833c039c
formatBytes(bytes: number, decimals: number): string {
if (bytes == 0) return "0 Bytes";
const k = 1024,
dm = decimals || 2,
sizes = ["Bytes", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"],
i = Math.floor(Math.log(bytes) / Math.log(k));
return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + " " + sizes[i];
}
}
</script>

View File

@ -75,6 +75,14 @@ export const CONFIG = gql`
label
}
}
uploadLimits {
default
avatar
banner
}
instanceFeeds {
enabled
}
}
}
`;
@ -108,6 +116,9 @@ export const ABOUT = gql`
}
version
federating
instanceFeeds {
enabled
}
}
}
`;

View File

@ -132,7 +132,7 @@
"Click to upload": "Clica per pujar",
"Close": "Deshabilita",
"Close comments for all (except for admins)": "Deshabilita els comentaris per a tothom excepte admins",
"Close events": "Activitats prop de tu",
"Events nearby": "Activitats prop de tu",
"Closed": "Deshabilitats",
"Comment deleted": "S'ha esborrat el comentari",
"Comment from @{username} reported": "S'ha denunciat un comentari de @{username}",

View File

@ -8,10 +8,11 @@
"+ Post a public message": "+ Schreibe eine öffentliche Nachricht",
"+ Start a discussion": "+ Starte eine Diskussion",
"<b>Please do not use it in any real way.</b>": "<b>Bitte benutze diese Seite nicht für tatsächliche Veranstaltungsplanung.</b>",
"<b>{contact}</b> will be displayed as contact.": "<b>{contact}</b> wird als Kontakt angezeigt.|<b>{contact}</b> wird als Kontakte angezeigt.",
"<b>{contact}</b> will be displayed as contact.": "<b>{contact}</b> wird als Kontakt angezeigt.|<b>{contact}</b> werden als Kontakte angezeigt.",
"@{group}": "@{group}",
"@{username}": "@{username}",
"@{username} ({role})": "@{username} ({role})",
"@{username}'s follow request was accepted": "Die Folgeanfrage von @{username} wurde angenommen",
"@{username}'s follow request was rejected": "@{username}'s Folgeanfrage wurde zurückgewiesen",
"A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Ein Cookie ist eine kleine Datei mit Informationen, die an Ihren Computer gesendet wird, wenn Sie eine Website besuchen. Wenn Sie die Website erneut besuchen, ermöglicht das Cookie dieser Website, Ihren Browser zu erkennen. Cookies können Benutzereinstellungen und andere Informationen speichern. Sie können Ihren Browser so konfigurieren, dass er alle Cookies ablehnt. Dies kann jedoch dazu führen, dass einige Funktionen oder Dienste der Website nur eingeschränkt funktionieren. Die lokale Speicherung funktioniert auf die gleiche Weise, ermöglicht es Ihnen jedoch, mehr Daten zu speichern.",
"A cookie is a small file containing informations that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows to store more data.": "Ein Cookie ist eine kleine Datei, die auf deinen Computer übertragen wird, wenn du eine Webseite aufrufst. Sie enthält Informationen, die es der Webseite ermöglichen, deinen Computer beim nächsten Besuch wiederzuerkennen. Cookies können auch genutzt werden, um nutzerspezifische Einstellungen oder andere Informationen zu speichern. Du kannst deinen Browser so einstellen, dass er alle Cookies ablehnt oder diese beim Schließen des Browsers löscht. Dies kann jedoch dazu führen, das einige Funktionalitäten von Webseiten oder Diensten nicht mehr vollständig funktionieren. Lokale Website-Daten erfüllen den selben Zweck, erlauben es einer Webseite aber, größere Datenmengen auf deinem Computer zu speichern.",
@ -42,6 +43,7 @@
"Actions": "Aktionen",
"Activated": "Aktiviert",
"Active": "Aktiv",
"Activity": "Ereignisse",
"Actor": "Akteur",
"Add": "Hinzufügen",
"Add / Remove…": "Hinzufügen / Entfernen…",
@ -60,6 +62,7 @@
"Admin settings successfully saved.": "Admineinstellungen erfolgreich gespeichert.",
"Administration": "Administration",
"Administrator": "Administrator",
"All activities": "Alle Ereignisse",
"All good, let's continue!": "Das passt, weiter geht's!",
"All group members and other eventual server admins will still be able to view this information.": "Alle Gruppenmitglieder und andere Server-Administrator:innen können diese Information dennoch einsehen.",
"All the places have already been taken": "Alle Plätze sind schon vergeben",
@ -72,9 +75,9 @@
"An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Als Instanz bezeichnen wir eine Installation der Mobilizon-Software auf einem Server. Eine Instanz kann von jedem mit Hilfe der {mobilizon_software} oder anderer kompatibler Software betrieben werden. Der Name dieser Instanz lautet „{instance_name}“. Diese Instanz ist Teil des „Fediverse“, einem Netzwerk aus vielen verbundenen Instanzen, die alle miteinander kommunizieren können. Nutzer von verschiedenen Instanzen können so - genau wie beim E-Mail-System - miteinander kommunizieren, auch wenn sie Accounts bei völlig verschiedenen Instanzen registriert haben.",
"An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events on your behalf, automatically and remotely.": "Eine Programmierschnittstelle, auch API genannt (von englisch „application programming interface“) definiert ein Kommunikationsprotokoll, das Softwarekomponenten erlaubt, miteinander zu interagieren. Die Mobilizon-API ermöglicht Drittanbietersoftware beispielsweise automatisiert bestimmte Aktionen auszuführen, z.B. das Erstellen von Veranstaltungen in Ihrem Namen.",
"And {number} comments": "Und {number} Kommentare",
"Anonymous participant": "Anonymer Teilnehmer",
"Anonymous participant": "Anonyme*r Teilnehmer*in",
"Anonymous participants will be asked to confirm their participation through e-mail.": "Anonyme Teilnehmer werden gebeten, ihre Teilnahme per E-Mail zu bestätigen.",
"Anonymous participations": "Anonyme Teilnehmer",
"Anonymous participations": "Anonyme Teilnehmer*innen",
"Any day": "Egal wann",
"Anyone can join freely": "Jeder kann frei beitreten",
"Anyone wanting to be a member from your group will be able to from your group page.": "Jeder, der ein Mitglied Ihrer Gruppe werden möchte, kann dies von Ihrer Gruppenseite aus tun.",
@ -89,6 +92,7 @@
"Are you sure you want to cancel the event creation? You'll lose all modifications.": "Sind Sie sich sicher, dass Sie das Erstellen der Veranstaltung abbrechen möchten? Alle Änderungen werden verloren gehen.",
"Are you sure you want to cancel the event edition? You'll lose all modifications.": "Sind Sie sich sicher, dass die Veranstaltung abrechen möchten? Sie verlieren dann alle Änderungen.",
"Are you sure you want to cancel your participation at event \"{title}\"?": "Sind Sie sicher, dass Sie Ihre Teilnahme an der Veranstaltung \"{Titel}\" stornieren möchten?",
"Are you sure you want to delete this entire discussion?": "Sind Sie sicher, dass sie die gesamte Diskussion löschen wollen?",
"Are you sure you want to delete this event? This action cannot be reverted.": "Sind Sie sicher, dass Sie diese Veranstaltung löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.",
"As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Da der Veranstalter sich entschieden hat, die Teilnahmeanfragen manuell zu validieren, wird Ihre Teilnahme erst dann wirklich bestätigt, wenn Sie eine E-Mail erhalten, in der die Annahme bestätigt wird.",
"Assigned to": "Zugewiesen an",
@ -101,6 +105,7 @@
"Bold": "Fett",
"By @{group}": "Von @{group}",
"By @{username}": "von @{username}",
"By others": "Von Anderen",
"By {author}": "Von {author}",
"By {group}": "Von {group}",
"By {username} and {group}": "Nach {username} und {group}",
@ -133,6 +138,7 @@
"Closed": "Geschlossen",
"Comment deleted": "Kommentar gelöscht",
"Comment from @{username} reported": "Kommentar von @{username} gemeldet",
"Comment text can't be empty": "Der Kommentar darf nicht leer sein",
"Comments": "Kommentare",
"Comments are closed for everybody else.": "Kommentare sind für alle anderen geschlossen.",
"Comments have been closed.": "Die Kommentarfunktion wurde deaktiviert.",
@ -167,6 +173,7 @@
"Create my event": "Erstelle eine neue Veranstaltung",
"Create my group": "Erstelle eine Gruppe",
"Create my profile": "Erstelle mein Profil",
"Create new links": "Erstelle neue Links",
"Create resource": "Ressource erstellen",
"Create the discussion": "Beginne die Diskussion",
"Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Erstellen Sie To-Do-Listen für alle Aufgaben, die Sie erledigen müssen, weisen Sie diese zu und legen Sie Fälligkeitsdaten fest.",
@ -195,11 +202,13 @@
"Delete Event": "Veranstaltung löschen",
"Delete account": "Account löschen",
"Delete conversation": "Lösche Konversation",
"Delete discussion": "Diskussion löschen",
"Delete event": "Veranstaltung löschen",
"Delete everything": "Alles löschen",
"Delete group": "Gruppe löschen",
"Delete my account": "Mein Konto löschen",
"Delete post": "Beitrag löschen",
"Delete this discussion": "Diese Diskussion löschen",
"Delete this identity": "Diese Identität löschen",
"Delete your identity": "Ihre Identität löschen",
"Delete {eventTitle}": "Lösche {eventTitle}",
@ -235,7 +244,7 @@
"Either the account is already validated, either the validation token is incorrect.": "Das Konto ist bereits bestätigt oder der Bestätigungstoken ist abgelaufen.",
"Either the email has already been changed, either the validation token is incorrect.": "Die E-Mail-Adresse wurde bereits geändert oder der Bestätigungstoken ist abgelaufen.",
"Either the participation has already been validated, either the validation token is incorrect.": "Die Teilnahme wurde bereits bestätigt oder der Bestätigungstoken ist abgelaufen.",
"Either the participation request has already been validated, either the validation token is incorrect.": "Entweder wurde die Teilnahmeanfrage bereits validiert, oder das Validierungs-Token ist falsch.",
"Either the participation request has already been validated, either the validation token is incorrect.": "Die Teilnahmeanfrage wurde schon bestätigt, oder das Bestätigungs-Token ist nicht gültig.",
"Email": "E-Mail",
"Email address": "E-Mail-Adresse",
"Email notifications": "E-Mail-Benachrichtigungen",
@ -252,6 +261,7 @@
"Error stacktrace": "Error-Stacktrace",
"Error while changing email": "Fehler beim Ändern der E-Mail-Adresse",
"Error while communicating with the server.": "Fehler bei der Kommunikation mit dem Server.",
"Error while loading the preview": "Fehler beim Laden der Vorschau",
"Error while login with {provider}. Retry or login another way.": "Fehler bei der Anmeldung mit {provider}. Versuchen Sie es erneut oder nutzen Sie eine andere Login-Möglichkeit.",
"Error while login with {provider}. This login provider doesn't exist.": "Fehler bei der Anmeldung über {provider}. Dieser Anbieter existiert nicht.",
"Error while reporting group {groupTitle}": "Fehler beim melden der Gruppe {groupTitle}",
@ -272,6 +282,7 @@
"Event {eventTitle} deleted": "Veranstaltung {eventTitle} gelöscht",
"Event {eventTitle} reported": "Veranstaltung {eventTitle} gemeldet",
"Events": "Veranstaltungen",
"Events nearby": "Veranstaltungen in Ihrer Nähe",
"Events tagged with {tag}": "Veranstaltung getaggt mit {tag}",
"Everything": "Alles",
"Ex: mobilizon.fr": "Z.B.: mobilizon.fr",
@ -299,8 +310,9 @@
"Forgot your password?": "Passwort vergessen?",
"From a birthday party with friends and family to a march for climate change, right now, our gatherings are <b>trapped inside the tech giants platforms</b>. How can we organize, how can we click “Attend,” without <b>providing private data</b> to Facebook or <b>locking ourselves up</b> inside MeetUp?": "Von der Geburtstagsparty mit Freunden und Familie bis hin zu Demonstrationen gegen den Klimawandel, momentan sind unsere Veranstaltungen <b>in den Platformen der Tech-Giganten gefangen</b>. Wie können wir uns organisieren, wie können wir auf „Teilnehmen“ klicken ohne <b>private Daten an Facebook zu geben</b> oder <b>abhängig von MeetUp zu sein</b>?",
"From the {startDate} at {startTime} to the {endDate}": "Vom {startDate} um {startTime} bis zum {endDate}",
"From the {startDate} at {startTime} to the {endDate} at {endTime}": "Vom {startDate} um {startTime} bis zum {endDate} um {endTime}",
"From the {startDate} at {startTime} to the {endDate} at {endTime}": "Vom {startDate} um {startTime} Uhr bis zum {endDate} um {endTime} Uhr",
"From the {startDate} to the {endDate}": "Vom {startDate} bis zum {endDate}",
"From yourself": "Von Ihnen selbst",
"Gather ⋅ Organize ⋅ Mobilize": "Treffen ⋅ Organisieren ⋅ Mobilisieren",
"General": "Allgemein",
"General information": "Allgemeine Informationen",
@ -311,7 +323,7 @@
"Go to the event page": "Zur Veranstaltungsseite",
"Going as {name}": "Teilnehmen als {name}",
"Group": "Gruppe",
"Group Followers": "Follower dieser Gruppe",
"Group Followers": "Follower*innen dieser Gruppe",
"Group List": "Gruppenliste",
"Group Members": "Gruppenmitglieder",
"Group address": "Gruppenadresse",
@ -368,10 +380,11 @@
"Instance Short Description": "Kurzbeschreibung der Instanz",
"Instance Slogan": "Slogan der Instanz",
"Instance Terms": "Nutzungsbedingungen der Instanz",
"Instance Terms Source": "Herkunft der Nutzungsbedingungen der Instanz",
"Instance Terms Source": "Herkunft der Instanz-Regeln",
"Instance Terms URL": "URL der Nutzungsbedingungen der Instanz",
"Instance administrator": "Administrator der Instanz",
"Instance configuration": "Einstellungen der Instanz",
"Instance feeds": "Instanz Feeds",
"Instance languages": "Sprache der Instanz",
"Instance rules": "Instanz-Regeln",
"Instance settings": "Einstellungen der Instanz",
@ -410,6 +423,7 @@
"Limited number of places": "Limitierte Anzahl an Plätzen",
"List title": "Titel der Liste",
"Load more": "Mehr anzeigen",
"Load more activities": "Mehr Ereignisse laden",
"Loading comments…": "Lade Kommentare…",
"Local": "Lokal",
"Locality": "Ort",
@ -424,7 +438,7 @@
"Manage my notifications": "Meine Benachrichtigungen verwalten",
"Manage my settings": "Meine Einstellungen verwalten",
"Manage participations": "Teilnehmer verwalten",
"Manually approve new followers": "Neue Follower manuell genehmigen",
"Manually approve new followers": "Neue Follower*innen manuell genehmigen",
"Manually invite new members": "Manuelles Einladen neuer Mitglieder",
"Mark as resolved": "Als gelöst markieren",
"Member": "Mitglied",
@ -464,13 +478,14 @@
"New members": "Neue Mitglieder",
"New note": "Neue Notiz",
"New password": "Neues Passwort",
"New post": "Neuer Beitrag",
"New profile": "Neues Profil",
"Next": "Nächste",
"Next month": "Nächsten Monat",
"Next page": "Nächste Seite",
"Next week": "Nächste Woche",
"No address defined": "Keine Adresse festgelegt",
"No closed reports yet": "Noch keine geschlossenen Berichte",
"No closed reports yet": "Bisher keine geschlossenen Berichte",
"No comment": "Kein Kommentar",
"No comments yet": "Noch keine Kommentare",
"No discussions yet": "Noch keine Diskussionen gestartet",
@ -479,8 +494,9 @@
"No follower matches the filters": "Kein Follower passt zu diesen Filtern",
"No group found": "Keine Gruppe gefunden",
"No groups found": "Keine Gruppen gefunden",
"No information": "Keine Informationen",
"No instance follows your instance yet.": "Noch keine Instanz folgt deiner Instanz.",
"No instance to approve|Approve instance|Approve {number} instances": "Keine Instanz zu prüfen|Überprüfe Instanz|Überprüfe {number} Instanzen",
"No instance to approve|Approve instance|Approve {number} instances": "Keine Instanz zu prüfen|Genehmige Instanz|Genehmige {number} Instanzen",
"No instance to reject|Reject instance|Reject {number} instances": "Keine Instanz abzulehnen|Lehne Instanz ab|Lehne {number} Instanzen ab",
"No instance to remove|Remove instance|Remove {number} instances": "Keine Instanz zu entfernen|Entferne Instanz|Entferne {number} Instanzen",
"No languages found": "Keine Sprachen gefunden",
@ -514,6 +530,7 @@
"Nothing to see here": "Hier gibt es nichts zu sehen",
"Notification before the event": "Benachrichtigung vor der Veranstaltung",
"Notification on the day of the event": "Benachrichtigung am Tag der Veranstaltung",
"Notifications": "Benachrichtigungen",
"Notifications for manually approved participations to an event": "Benachrichtigungen bei manuell bestätigten Teilnahmen an einer Veranstlatung",
"Now, create your first profile:": "Erstellen Sie jetzt Ihr erstes Profil:",
"Number of places": "Anzahl der Plätze",
@ -571,12 +588,13 @@
"Password reset": "Passwort zurücksetzen",
"Past events": "Vergangene Veranstaltungen",
"Pending": "Ausstehend",
"Personal feeds": "Persönliche Feeds",
"Pick": "Wähle",
"Pick a group": "Wählen Sie eine Gruppe",
"Pick a profile or a group": "Wähle ein Profil der eine Gruppe",
"Pick an identity": "Wählen Sie eine Identität",
"Pick an instance": "Wähle eine Instanz",
"Please add as many details as possible to help identify the problem.": "Bitte gib uns so viele Details wie möglich, die uns helfen könnten, das Problem zu analysieren.",
"Please add as many details as possible to help identify the problem.": "Bitte geben Sie uns so viele Details wie möglich, die uns helfen könnten, das Problem zu analysieren.",
"Please check your spam folder if you didn't receive the email.": "Bitte sehen Sie auch in Ihrem Spam-Ordner nach, wenn Sie keine E-Mail erhalten haben.",
"Please contact this instance's Mobilizon admin if you think this is a mistake.": "Bitte kontaktieren Sie den Administrator dieser Mobilizon-Instanz, wenn Sie denken, dass dies ein Fehler ist.",
"Please do not use it in any real way.": "Bitte nicht im praktischen Einsatz verwenden.",
@ -601,12 +619,13 @@
"Privacy policy": "Datenschutzerklärung",
"Private event": "Private Veranstaltung",
"Private feeds": "Private Feeds",
"Profile feeds": "Profil-Feeds",
"Profiles": "Profile",
"Profiles and federation": "Profile und Föderation",
"Promote": "Promoten",
"Public": "Öffentlich",
"Public RSS/Atom Feed": "Öffentlicher RSS/Atom-Feed",
"Public comment moderation": "Öffentliche Kommentare",
"Public comment moderation": "Moderation öffentlicher Kommentare",
"Public event": "Öffentliche Veranstaltung",
"Public feeds": "Öffentliche Feeds",
"Public iCal Feed": "Öffentlicher iCal-Feed",
@ -623,6 +642,7 @@
"Redirecting to content…": "Weiterleitung zum Inhalt…",
"Redirecting to event…": "Weiterleiten zur Veranstaltung…",
"Refresh profile": "Profil aktualisieren",
"Regenerate new links": "Erstelle die Links neu",
"Region": "Region",
"Register": "Registrieren",
"Register an account on Mobilizon!": "Erstelle einen Mobilizon-Account!",
@ -729,14 +749,21 @@
"The event organizer didn't add any description.": "Der Organisator hat keine Beschreibung hinzugefügt.",
"The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "Der Organisator möchte Teilnahmen manuell bestätigen. Wenn Sie ohne Konto teilnehmen möchten, erklären Sie bitte warum Sie an der Veranstaltung interessiert sind.",
"The event title will be ellipsed.": "Der Titel der Veranstaltung wird verkürzt dargestellt.",
"The event will show as attributed to this group.": "Das Ereignis wird als dieser Gruppe zugehörig angezeigt.",
"The event will show as attributed to your personal profile.": "Das Ereignis wird als Ihrem persönlichen Profil zugewiesen angezeigt.",
"The event will show as attributed to this group.": "Die Veranstaltung wird als dieser Gruppe zugehörig angezeigt.",
"The event will show as attributed to this profile.": "Die Veranstaltung wird als Ihrem Profil zugewiesen angezeigt.",
"The event will show as attributed to your personal profile.": "Die Veranstaltung wird als Ihrem persönlichen Profil zugewiesen angezeigt.",
"The event will show the group as organizer.": "Bei diese Veranstaltung wird die Gruppe als Organisationsteam angezeigt.",
"The event {event} was created by {profile}.": "Die Veranstaltung {event} wurde erstellt von {profile}.",
"The event {event} was deleted by {profile}.": "Die Veranstaltung {event} wurde von {profile} gelöscht.",
"The event {event} was updated by {profile}.": "Die Veranstaltung {event} wurde von {profile} aktualisiert.",
"The events you created are not shown here.": "Die Veranstaltung, die Sie erstellt haben ist hier nicht gelistet.",
"The group can now be joined by anyone.": "Der Gruppe können nun alle beitreten.",
"The group can now only be joined with an invite.": "Der Gruppe kann nun ausschließlich durch Einladung beigetreten werden.",
"The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Diese Gruppe wird öffentlich in Suchergebnissen sichtbar sein und könnte im Bereich „Entdecken“ auftauchen. Nur öffentliche Informationen werden auf der Gruppenseite angezeigt.",
"The group's avatar was changed.": "Der Profilbild der Gruppe wurde geändert.",
"The group's banner was changed.": "Das Gruppenbanner wurde geändert.",
"The group's physical address was changed.": "Die physische Adresse der Gruppe wurde geändert.",
"The group's short description was changed.": "Die Kurzbeschreibung der Gruppe wurde geändert.",
"The instance administrator is the person or entity that runs this Mobilizon instance.": "Der Administrator der Instanz ist die Person oder Organisation, die diese Mobilizon-Instanz betreibt.",
"The member was removed from the group {group}": "Das Mitglied wurde aus der Gruppe {group} entfernt",
"The new email doesn't seem to be valid": "Die neue E-Mail-Adresse scheint ungültig zu sein",
@ -751,6 +778,7 @@
"The post {post} was deleted by {profile}.": "Der Beitrag {post} wurde von {profile} gelöscht.",
"The post {post} was updated by {profile}.": "Der Beitrag {post} wurde von {profile} aktualisiert.",
"The report will be sent to the moderators of your instance. You can explain why you report this content below.": "Die Meldung wird an die Moderatoren Ihrer Instanz gesendet. Sie können unten erläutern, warum Sie diesen Inhalt melden.",
"The selected picture is too heavy. You need to select a file smaller than {size}.": "Die ausgewählte Bilddatei ist zu groß. Die Datei darf höchstens {size} groß sein.",
"The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Die technischen Details des Fehlers können den Entwickler*innen helfen, das Problem einfacher zu lösen. Bitte füge sie der Rückmeldung hinzu.",
"The user account you're trying to login as has not been confirmed yet. Check your email inbox and eventually your spam folder.": "Der Account, mit dem Du dich einloggen willst, wurde noch nicht bestätigt. Schau in deinem E-Mail-Postfach und in deinem Spam-Ordner nach.",
"The {default_privacy_policy} will be used. They will be translated in the user's language.": "Die {default_privacy_policy} wird verwendet. Sie wird in die Sprache des Nutzers übersetzt.",
@ -760,6 +788,8 @@
"There will be no way to recover your data.": "Es gibt keinen Weg Ihre Daten wiederherszustellen.",
"There's no discussions yet": "Es gibt noch keine Diskussion",
"These events may interest you": "Diese Veranstaltungen könnten Sie interessieren",
"These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Diese Feeds enthalten Veranstaltungsdaten für alle Veranstaltungen, für die irgendeines Ihrer Profile Teilnehmer*in oder Ersteller*in ist.",
"These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Diese Feeds enthalten Veranstaltungsdaten für alle Veranstaltungen, für die dieses Profil Teilnehmer*in oder Ersteller*in ist.",
"This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Diese Mobilizon-Instanz und der Organisator akzeptieren anonyme Teilnahmen, aber eine Bestätigung per E-Mail ist erforderlich.",
"This URL is not supported": "Diese URL wird nicht unterstützt",
"This email is already registered as participant for this event": "Diese E-Mail-Adresse ist bereits als Teilnehmer:in für die Veranstaltung registriert",
@ -804,14 +834,18 @@
"URL": "URL",
"URL copied to clipboard": "URL in die Zwischenablage kopiert",
"Unable to copy to clipboard": "Kopieren in die Zwischenablage nicht möglich",
"Unable to create the group. One of the pictures may be too heavy.": "Das Erstellen der Gruppe ist fehlgeschlagen. Eines der Bilder ist eventuell zu groß.",
"Unable to create the profile. The avatar picture may be too heavy.": "Das Erstellen des Profils ist fehlgeschlagen. Das Profilbild ist eventuell zu groß.",
"Unable to detect timezone.": "Zeitzone kann nicht erkannt werden.",
"Unable to load event for participation. The error details are provided below:": "Event für die Teilnahme kann nicht geladen werden. Die Fehlerdetails finden Sie unten:",
"Unable to save your participation in this browser.": "Ihre Teilnahme kann in diesem Browser nicht gespeichert werden.",
"Unable to update the profile. The avatar picture may be too heavy.": "Die Aktualisierung des Profils ist fehlgeschlagen. Das Profilbild ist eventuell zu groß.",
"Unfortunately, this instance isn't opened to registrations": "Leider lässt diese Instanz keine Registrierungen zu",
"Unfortunately, your participation request was rejected by the organizers.": "Leider wurde Ihre Teilnahmeanfrage vom Organisator abgelehnt.",
"Unknown": "Unbekannt",
"Unknown actor": "Unbekannter Akteur",
"Unknown error.": "Unbekannter Fehler.",
"Unknown value for the openness setting.": "Unbekannter Wert für die Zugangsbeschränkungen.",
"Unsaved changes": "Nicht gespeicherte Änderungen",
"Unset group": "Auswahl der Gruppe aufheben",
"Unsuspend": "Freigeben",
@ -839,6 +873,9 @@
"View event page": "Veranstaltungsseite anzeigen",
"View everything": "Alles anzeigen",
"View page on {hostname} (in a new window)": "Seite auf {hostname} anzeigen (in einem neuen Fenster)",
"Visibility was set to an unknown value.": "Die Sichtbarkeit wurde in unbekannt geändert.",
"Visibility was set to private.": "Die Sichtbarkeit wurde in privat geändert.",
"Visibility was set to public.": "Die Sichtbarkeit wurde in öffentlich geändert.",
"Visible everywhere on the web": "Öffentlich sichtbar im gesamten Internet",
"Visible everywhere on the web (public)": "Sichtbar im ganzen Internet (öffentlich)",
"Waiting for organization team approval.": "Warte auf die Bestätigung des Organisationsteams.",
@ -867,13 +904,14 @@
"Who published {number} events": "Die {number} Veranstaltungen angelegt haben",
"Why create an account?": "Warum ein Konto erstellen?",
"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.": "Ermöglicht die Anzeige und Verwaltung Ihres Teilnahmestatus auf der Veranstaltungsseite, wenn Sie dieses Gerät verwenden. Deaktivieren Sie diese Option, wenn Sie ein öffentliches Gerät verwenden.",
"Within {number} kilometers of {place}": "|Innerhalb eines Kilometers von {place}|Innerhalb {number} Kilometer von {place}",
"Within {number} kilometers of {place}": "|Innerhalb eines Kilometers von {place}|Innerhalb von {number} Kilometer von {place}",
"World map": "Weltkarte",
"Write something…": "Schreiben Sie etwas…",
"Yesterday": "Gestern",
"You accepted the invitation to join the group.": "Sie haben die Einladung zur Gruppe angenommen.",
"You added the member {member}.": "Sie haben das Mitglied {member} hinzugefügt.",
"You and one other person are going to this event": "Du gehst alleine zu dieser Veranstaltung | Du und eine weitere Person gehen zu dieser Veranstaltung | Du und {approved} weitere Personen gehen zu dieser Veranstaltung.",
"You archived the discussion {discussion}.": "Sie haben die Diskussion {discussion} archiviert.",
"You are already a participant of this event.": "Du nimmst bereits an dieser Veranstaltung teil.",
"You are already logged-in.": "Du bist bereits eingeloggt.",
"You are not an administrator for this group.": "Sie sind kein Administrator dieser Gruppe.",
@ -881,16 +919,23 @@
"You are not part of any group.": "Sie sind kein Teil einer Gruppe.",
"You are participating in this event anonymously": "Sie nehmen anonym an dieser Veranstaltung teil",
"You are participating in this event anonymously but didn't confirm participation": "Sie nehmen an dieser Veranstaltung anonym teil, haben aber Ihre Teilnahme noch nicht bestätigt",
"You can add tags by hitting the Enter key or by adding a comma": "Sie können Tags hinzufügen, indem Sie Enter drücken oder durch ein Komma trennen",
"You can add tags by hitting the Enter key or by adding a comma": "Sie können Schlagworte hinzufügen, indem Sie Enter drücken oder durch ein Komma trennen",
"You can pick your timezone into your preferences.": "Sie können Ihre Zeitzone in den Einstellungen festlegen.",
"You can try another search term or drag and drop the marker on the map": "Sie können einen anderen Suchbegriff verwenden oder die Markierung auf der Karte verschieben",
"You can't change your password because you are registered through {provider}.": "Sie können Ihr Passwort nicht ändern, weil Sie über {provider} angemeldet sind.",
"You can't remove your last identity.": "Du kannst deine letzte Identität nicht löschen.",
"You can't reset your password because you use a 3rd-party auth provider to login.": "Du kannst dein Passwort nicht zurücksetzen, weil du über einen Drittanbieter eingeloggt bist.",
"You created the discussion {discussion}.": "Sie haben die Diskussion {discussion} erstellt.",
"You created the event {event}.": "Sie haben die Veranstaltung {event} erstellt.",
"You created the folder {resource}.": "Sie haben den Ordner {resource} erstellt.",
"You created the group {group}.": "Sie haben die Gruppe {group} erstellt.",
"You created the post {post}.": "Sie haben den Beitrag {post} erstellt.",
"You created the resource {resource}.": "Sie haben die Ressource {resource} erstellt.",
"You deleted the discussion {discussion}.": "Sie haben die Diskussion {discussion} gelöscht.",
"You deleted the event {event}.": "Sie haben die Veranstaltung {event} gelöscht.",
"You deleted the folder {resource}.": "Sie haben den Ordner {resource} gelöscht.",
"You deleted the post {post}.": "Sie haben den Beitrag {post} gelöscht.",
"You deleted the resource {resource}.": "Sie haben die Ressource {resource} gelöscht.",
"You demoted the member {member} to an unknown role.": "Sie haben {member} zu einer unbekannten Rolle zurückgestuft.",
"You demoted {member} to moderator.": "Sie haben {member} zum/zur Moderator/in zurückgestuft.",
"You demoted {member} to simple member.": "Sie haben {member} zu einem einfachen Mitglied zurückgestuft.",
@ -909,16 +954,30 @@
"You may also ask to {resend_confirmation_email}.": "Du kannst auch die {resend_confirmation_email}.",
"You may clear all participation information for this device with the buttons below.": "Sie können alle Teilnahmeinformationen für dieses Gerät mit den Schaltflächen unten löschen.",
"You may now close this window, or {return_to_event}.": "Sie können das Fenster jetzt schließe oder {return_to_event}.",
"You may show some members as contacts.": "Sie können einige Mitglieder als Kontakte anzeigen lassen.",
"You moved the folder {resource} into {new_path}.": "Sie haben den Ordner {resource} nach {new_path} verschoben.",
"You moved the folder {resource} to the root folder.": "Sie haben den Ordner {resource} in das Root-Verzeichnis verschoben.",
"You moved the resource {resource} into {new_path}.": "Sie haben die Ressource {resource} nach {new_path} verschoben.",
"You moved the resource {resource} to the root folder.": "Sie haben die Ressource {resource} in das Root-Verzeichnis verschoben.",
"You need to create the group before you create an event.": "Sie müssen zunächst eine Gruppe anlegen, bevor Sie eine Veranstaltung anlegen können.",
"You need to login.": "Sie müssen sich einloggen.",
"You posted a comment on the event {event}.": "Sie haben die Veranstaltung {event} kommentiert.",
"You promoted the member {member} to an unknown role.": "Sie haben {member} einer unbekannten Rolle zugewiesen.",
"You promoted {member} to administrator.": "Sie haben {member} zum/zur Administrator/in befördert.",
"You promoted {member} to moderator.": "Sie haben {member} zum/zur Moderator/in befördert.",
"You renamed the discussion from {old_discussion} to {discussion}.": "Sie haben die Diskussion {old_discussion} in {discussion} umbenannt.",
"You renamed the folder from {old_resource_title} to {resource}.": "Sie haben den Ordner {old_resource_title} in {resource} umbenannt.",
"You renamed the resource from {old_resource_title} to {resource}.": "Sie haben die Ressource {old_resource_title} in {resource} umbenannt.",
"You replied to a comment on the event {event}.": "Sie haben auf ein Kommentar in der Veranstaltung {event} geantwortet.",
"You replied to the discussion {discussion}.": "Sie haben auf die Diskussion {discussion} geantwortet.",
"You requested to join the group.": "Sie haben die angefragt der Gruppe beizutreten.",
"You updated the event {event}.": "Sie haben die Veranstaltung {event} aktualisiert.",
"You updated the group {group}.": "Sie haben die Gruppe {group} aktualisiert.",
"You updated the member {member}.": "Sie haben {member} aktualisiert.",
"You updated the post {post}.": "Sie haben den Beitrag {post} aktualisiert.",
"You were demoted to an unknown role by {profile}.": "Sie wurden von {profile} in eine unbekannte Rolle zurückgestuft.",
"You were demoted to moderator by {profile}.": "Sie wurden von {profile} zum/zur Moderator/in zurückgestuft.",
"You were demoted to simple member by {profile}.": "Sie wurden von {profile} zum einfachen Mitglied zurückgestuft.",
"You were promoted to administrator by {profile}.": "Sie wurden von {profile} zum/zur Administrator/in befördert.",
"You were promoted to an unknown role by {profile}.": "Sie wurden von {profile} zu einer unbekannten Rolle befördert.",
"You were promoted to moderator by {profile}.": "Sie wurden von {profile} zum/zur Moderator/in befördert.",
@ -927,6 +986,7 @@
"You will find here all the events you have created or of which you are a participant.": "Hier finden Sie alle Ereignisse, die Sie erstellt haben oder an denen Sie beteiligt sind.",
"You wish to participate to the following event": "Sie möchten an der folgenden Veranstaltung teilnehmen",
"You'll get a weekly recap every Monday for upcoming events, if you have any.": "Sie erhalten jeden Montag eine Benachrichtigung über Ihre anstehenden Veranstaltungen.",
"You'll need to change the URLs where there were previously entered.": "Sie müssen die URLs überall dort ändern, wo sie zuvor eingetragen wurden.",
"You'll need to transmit the group URL so people may access the group's profile.": "Du musst die Adresse (URL) der Gruppe weitergeben, um Leuten Zugriff auf das Gruppenprofil zu geben.",
"You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Sie müssen die Gruppen-URL übertragen, damit andere Personen auf das Profil der Gruppe zugreifen können. Die Gruppe wird nicht in der Mobilizonsuche oder in normalen Suchmaschinen gefunden.",
"You'll receive a confirmation email.": "Sie erhalten eine Bestätigungsmail.",
@ -934,6 +994,7 @@
"Your account has been validated": "Ihr Account wurde validiert",
"Your account is being validated": "Ihr Account wird validiert",
"Your account is nearly ready, {username}": "Ihr Account ist fast bereit, {username}",
"Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "Ihr Ort, Landkreis oder Bundesland wird nur genutzt um Ihnen Veranstaltungen in Ihrer Nähe anzuzeigen. Der Veranstaltungsradius berücksichtigt den Verwaltungssitz des Gebietes.",
"Your current email is {email}. You use it to log in.": "Ihre aktuelle E-Mail-Adresse ist {email}. Diese kann zum Anmelden verwendet werden.",
"Your email": "Ihre E-Mail",
"Your email address was automatically set based on your {provider} account.": "Ihre E-Mail-Adresse wurde automatisch basierend auf Ihrem {provider}-Account gesetzt.",
@ -1022,15 +1083,36 @@
"{number} organized events": "Keine organisierten Veranstaltungen|Eine organisierte Veranstaltung|{number} organisierte Veranstaltungen",
"{number} participations": "Keine Teilnehmer|Ein Teilnehmer|{number} Teilnehmer",
"{number} posts": "Keine Beiträge |Ein Beitrag|{number} Beiträge",
"{old_group_name} was renamed to {group}.": "{old_group_name} wurde in {group} umbenannt.",
"{profile} (by default)": "{profile} (Standard)",
"{profile} added the member {member}.": "{profile} hat das Mitglied {member} hinzugefügt.",
"{profile} archived the discussion {discussion}.": "{profile} hat die Diskussion {discussion} archiviert.",
"{profile} created the discussion {discussion}.": "{profile} hat die Diskussion {discussion} erstellt.",
"{profile} created the folder {resource}.": "{profile} hat den Ordner {resource} erstellt.",
"{profile} created the group {group}.": "{profile} hat die Gruppe {group} erstellt.",
"{profile} created the resource {resource}.": "{profile} hat die Ressource {resource} erstellt.",
"{profile} deleted the discussion {discussion}.": "{profile} hat die Diskussion {discussion} gelöscht.",
"{profile} deleted the folder {resource}.": "{profile} hat den Ordner {resource} gelöscht.",
"{profile} deleted the resource {resource}.": "{profile} hat die Ressource {resource} gelöscht.",
"{profile} demoted {member} to an unknown role.": "{profile} hat {member} zu einer unbekannten Rolle zurückgestuft.",
"{profile} demoted {member} to moderator.": "{profile} hat {member} zum/zur Moderator/in zurückgestuft.",
"{profile} demoted {member} to simple member.": "{profile} hat {member} zu einem einfachen Mitglied zurückgestuft.",
"{profile} excluded member {member}.": "{profile} hat {member} ausgeschlossen.",
"{profile} moved the folder {resource} into {new_path}.": "{profile} hat den Ordner {resource} nach {new_path} verschoben.",
"{profile} moved the folder {resource} to the root folder.": "{profile} hat den Ordner {resource} in das Root-Verzeichnis verschoben.",
"{profile} moved the resource {resource} into {new_path}.": "{profile} hat die Ressource {resource} nach {new_path} verschoben.",
"{profile} moved the resource {resource} to the root folder.": "{profile} hat die Ressource {resource} in das Root-Verzeichnis verschoben.",
"{profile} posted a comment on the event {event}.": "{profile} hat die Veranstaltung {event} kommentiert.",
"{profile} promoted {member} to administrator.": "{profile} hat {member} zum/zur Administrator/in befördert.",
"{profile} promoted {member} to an unknown role.": "{profile} hat {member} zu einer unbekannten Rolle befördert.",
"{profile} promoted {member} to moderator.": "{profile} hat {member} zum/zur Moderator/in befördert.",
"{profile} quit the group.": "{profile} hat die Gruppe verlassen.",
"{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} hat die Diskussion {old_discussion} in {discussion} umbenannt.",
"{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} hat den Ordner {old_resource_title} in {resource} umbenannt.",
"{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} hat die Ressource {old_resource_title} in {resource} umbenannt.",
"{profile} replied to a comment on the event {event}.": "{profile} hat auf ein Kommentar in der Veranstaltung {event} geantwortet.",
"{profile} replied to the discussion {discussion}.": "{profile} hat auf die Diskussion {discussion} geantwortet.",
"{profile} updated the group {group}.": "{profile} hat die Gruppe {group} aktualisiert.",
"{profile} updated the member {member}.": "{profile} hat {member} aktualisiert.",
"{title} ({count} todos)": "{title} ({count} To-dos)",
"{username} was invited to {group}": "{username} wurde zu {group} eingeladen",

View File

@ -858,7 +858,7 @@
"Your upcoming events": "Your upcoming events",
"Last published events": "Last published events",
"On {instance}": "On {instance}",
"Close events": "Close events",
"Events nearby": "Events nearby",
"Within {number} kilometers of {place}": "|Within one kilometer of {place}|Within {number} kilometers of {place}",
"@{username}": "@{username}",
"Yesterday": "Yesterday",
@ -979,5 +979,11 @@
"Personal feeds": "Personal feeds",
"These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.",
"The event will show as attributed to this profile.": "The event will show as attributed to this profile.",
"You may show some members as contacts.": "You may show some members as contacts."
"You may show some members as contacts.": "You may show some members as contacts.",
"The selected picture is too heavy. You need to select a file smaller than {size}.": "The selected picture is too heavy. You need to select a file smaller than {size}.",
"Unable to create the group. One of the pictures may be too heavy.": "Unable to create the group. One of the pictures may be too heavy.",
"Unable to update the profile. The avatar picture may be too heavy.": "Unable to update the profile. The avatar picture may be too heavy.",
"Unable to create the profile. The avatar picture may be too heavy.": "Unable to create the profile. The avatar picture may be too heavy.",
"Error while loading the preview": "Error while loading the preview",
"Instance feeds": "Instance feeds"
}

View File

@ -138,7 +138,7 @@
"Click to upload": "Haz clic para subir (upload)",
"Close": "Cerrar",
"Close comments for all (except for admins)": "Cerrar comentarios para todos (excepto para administradores)",
"Close events": "Eventos cercanos",
"Events nearby": "Eventos cercanos",
"Closed": "Cerrado",
"Collections": "Colecciones",
"Comment deleted": "Comentario borrado",
@ -273,6 +273,7 @@
"Error stacktrace": "Seguimiento de errores",
"Error while changing email": "Error al cambiar el correo electrónico",
"Error while communicating with the server.": "Error al comunicarse con el servidor.",
"Error while loading the preview": "Error al cargar la vista previa",
"Error while login with {provider}. Retry or login another way.": "Error al iniciar sesión con {provider}. Vuelva a intentarlo o inicie sesión de otra manera.",
"Error while login with {provider}. This login provider doesn't exist.": "Error al iniciar sesión con {provider}. Este proveedor de inicio de sesión no existe.",
"Error while reporting group {groupTitle}": "Error al informar sobre el grupo {groupTitle}",
@ -396,6 +397,7 @@
"Instance Terms URL": "URL de Términos de Instancia",
"Instance administrator": "Administrador de instancia",
"Instance configuration": "Configuración de instancia",
"Instance feeds": "Flujos de instancias",
"Instance languages": "Idiomas de instancia",
"Instance rules": "Reglas de instancia",
"Instance settings": "Configuraciones de instancia",
@ -793,6 +795,7 @@
"The post {post} was deleted by {profile}.": "La publicación {post} ha sido borrada por {profile}.",
"The post {post} was updated by {profile}.": "La publicación {post} ha sido actualizada por {profile}.",
"The report will be sent to the moderators of your instance. You can explain why you report this content below.": "El informe se enviará a los moderadores de su instancia. Puede explicar por qué declara este contenido a continuación.",
"The selected picture is too heavy. You need to select a file smaller than {size}.": "La imagen seleccionada es demasiado pesada. Debe seleccionar un archivo menor que {size}.",
"The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Los detalles técnicos del error pueden ayudar a los desarrolladores a resolver el problema más fácilmente. Agrégalos a tus comentarios.",
"The user account you're trying to login as has not been confirmed yet. Check your email inbox and eventually your spam folder.": "La cuenta de usuario que está intentando iniciar sesión aún no se ha confirmado. Verifique su bandeja de entrada de correo electrónico y eventualmente su carpeta de correo no deseado.",
"The username is a unique identifier of your account on this and all the other instances. It's as unique as an email address, which makes it easy for other people to interact with it.": "El nombre de usuario es un identificador único de su cuenta en esta y todas las demás instancias. Es tan único como una dirección de correo electrónico, lo que facilita que otras personas interactúen con él.",
@ -851,9 +854,12 @@
"URL": "URL",
"URL copied to clipboard": "URL copiada al portapapeles",
"Unable to copy to clipboard": "No se puede copiar al portapapeles",
"Unable to create the group. One of the pictures may be too heavy.": "No se pudo crear el grupo. Es posible que una de las imágenes sea demasiado pesada.",
"Unable to create the profile. The avatar picture may be too heavy.": "No se pudo crear el perfil. Es posible que la imagen del avatar sea demasiado pesada.",
"Unable to detect timezone.": "No se pudo detectar la zona horaria.",
"Unable to load event for participation. The error details are provided below:": "No se puede cargar el evento para participar. Los detalles del error se proporcionan a continuación:",
"Unable to save your participation in this browser.": "No se puede guardar su participación en este navegador.",
"Unable to update the profile. The avatar picture may be too heavy.": "No se pudo actualizar el perfil. Es posible que la imagen del avatar sea demasiado pesada.",
"Unfortunately, this instance isn't opened to registrations": "Desafortunadamente, esta instancia no está abierta a registros",
"Unfortunately, your participation request was rejected by the organizers.": "Lamentablemente, su solicitud de participación fue rechazada por los organizadores.",
"Unknown": "Desconocido",

View File

@ -128,7 +128,7 @@
"Click to upload": "Cliquez pour téléverser",
"Close": "Fermé",
"Close comments for all (except for admins)": "Fermer les commentaires à tout le monde (excepté les administrateur⋅rice·s)",
"Close events": "Événements proches",
"Events nearby": "Événements proches",
"Closed": "Fermé",
"Comment deleted": "Commentaire supprimé",
"Comment from @{username} reported": "Commentaire de @{username} signalé",
@ -1073,5 +1073,11 @@
"Personal feeds": "Flux personnels",
"These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Ces flux contiennent des informations sur les événements pour lesquels n'importe lequel de vos profils est un⋅e participant⋅e ou un⋅e créateur⋅ice. Vous devriez les garder privés. Vous pouvez trouver des flux spécifiques à chaque profil sur la page d'édition des profils.",
"The event will show as attributed to this profile.": "L'événement sera affiché comme attribué à ce profil.",
"You may show some members as contacts.": "Vous pouvez afficher certain⋅es membres en tant que contacts."
"You may show some members as contacts.": "Vous pouvez afficher certain⋅es membres en tant que contacts.",
"The selected picture is too heavy. You need to select a file smaller than {size}.": "L'image sélectionnée est trop lourde. Vous devez sélectionner un fichier de moins de {size}.",
"Unable to create the group. One of the pictures may be too heavy.": "Impossible de créer le groupe. Une des images est trop lourde.",
"Unable to update the profile. The avatar picture may be too heavy.": "Impossible de mettre à jour le profil. L'image d'avatar est probablement trop lourde.",
"Unable to create the profile. The avatar picture may be too heavy.": "Impossible de créer le profil. L'image d'avatar est probablement trop lourde.",
"Error while loading the preview": "Erreur lors du chargement de l'aperçu",
"Instance feeds": "Flux de l'instance"
}

View File

@ -122,7 +122,7 @@
"Click to upload": "Briog airson luchdadh suas",
"Close": "Dùin",
"Close comments for all (except for admins)": "Dùin na beachdan dhan a h-uile duine (ach rianairean)",
"Close events": "Tachartasan am fagas",
"Events nearby": "Tachartasan am fagas",
"Closed": "Dùinte",
"Comment deleted": "Chaidh am beachd a sguabadh às",
"Comment from @{username} reported": "Chaidh gearan a dhèanamh mu bheachd le @{username}",
@ -179,7 +179,7 @@
"Delete": "Sguab às",
"Delete Comment": "Sguab às am beachd",
"Delete Event": "Sguab às an tachartas",
"Delete account": "Sguab à an cunntas",
"Delete account": "Sguab às an cunntas",
"Delete conversation": "Sguab às an còmhradh",
"Delete discussion": "Sguab às an deasbad",
"Delete event": "Sguab às an tachartas",

View File

@ -131,7 +131,7 @@
"Click to upload": "Preme para subir",
"Close": "Pechar",
"Close comments for all (except for admins)": "Pechar comentarios para todos (excepto admins)",
"Close events": "Pechar eventos",
"Events nearby": "Pechar eventos",
"Closed": "Pechado",
"Comment deleted": "Comentario eliminado",
"Comment from @{username} reported": "Comentario de @{username} denunciado",
@ -257,6 +257,7 @@
"Error stacktrace": "Informe do erro",
"Error while changing email": "Fallo ó cambiar o email",
"Error while communicating with the server.": "Fallo de comunicación co servidor.",
"Error while loading the preview": "Fallo ao subir a vista previa",
"Error while login with {provider}. Retry or login another way.": "Erro ó conectar con {provider}. Reintentar ou conectar doutro xeito.",
"Error while login with {provider}. This login provider doesn't exist.": "Erro ó conectar con {provider}. Este provedor podería non existir.",
"Error while reporting group {groupTitle}": "Erro ó denunciar o grupo {groupTitle}",
@ -373,6 +374,7 @@
"Instance Terms URL": "URL dos Termos da instancia",
"Instance administrator": "Administradora da instancia",
"Instance configuration": "Configuración da instancia",
"Instance feeds": "Fontes da instancia",
"Instance languages": "Idiomas da instancia",
"Instance rules": "Normas da instancia",
"Instance settings": "Axustes da instancia",
@ -739,6 +741,7 @@
"The post {post} was deleted by {profile}.": "A publicación {post} foi eliminada por {profile}.",
"The post {post} was updated by {profile}.": "A publicación {post} foi actualizada por {profile}.",
"The report will be sent to the moderators of your instance. You can explain why you report this content below.": "A denuncia vaise enviar á moderación da instancia. Podes explicar aquí abaixo as razóns para denunciar.",
"The selected picture is too heavy. You need to select a file smaller than {size}.": "A imaxe seleccionada é demasiado grande. Debes escoller un ficheiro menor de {size}.",
"The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Os detalles técnicos do erro axudan ás desenvolvedoras a solucionar o problema máis facilmente. Engádeos ao teu informe.",
"The {default_privacy_policy} will be used. They will be translated in the user's language.": "Vaise usar a {default_privacy_policy} e será traducida ó idioma da usuaria.",
"The {default_terms} will be used. They will be translated in the user's language.": "Serán utilizados os {default_terms}. Serán traducidos ó idioma da usuaria.",
@ -790,9 +793,12 @@
"URL": "URL",
"URL copied to clipboard": "URL copiado ó portapapeis",
"Unable to copy to clipboard": "Non se puido copiar ao portapapeis",
"Unable to create the group. One of the pictures may be too heavy.": "Non se puido crear o grupo. Unha das imaxes podería ser demasiado grande.",
"Unable to create the profile. The avatar picture may be too heavy.": "Non se puido crear o perfil. A imaxe do avatar podería ser demasiado grande.",
"Unable to detect timezone.": "Non se detectou a zona horaria.",
"Unable to load event for participation. The error details are provided below:": "Non se puido cargar a participación no evento. Aquí abaixo tes detalles do erro:",
"Unable to save your participation in this browser.": "Non se puido gardar a túa participación neste navegador.",
"Unable to update the profile. The avatar picture may be too heavy.": "Non se puido actualizar o perfil. A imaxe do avatar podería ser demasiado grande.",
"Unfortunately, this instance isn't opened to registrations": "Desgraciadamente esta instancia non ten aberto o rexistro",
"Unfortunately, your participation request was rejected by the organizers.": "Desgraciadamente a túa solicitude de participación foi rexeitada pola organización.",
"Unknown": "Descoñecido",

View File

@ -127,7 +127,7 @@
"Click to upload": "Kattintson a feltöltéshez",
"Close": "Lezárás",
"Close comments for all (except for admins)": "Hozzászólások lezárása mindenkinél (kivéve az adminisztrátoroknál)",
"Close events": "Események bezárása",
"Events nearby": "Események bezárása",
"Closed": "Lezárva",
"Comment deleted": "Hozzászólás törölve",
"Comment from @{username} reported": "@{username} felhasználótól érkezett hozzászólás jelentve",

View File

@ -1 +1,185 @@
{}
{
"About": "Γef",
"Accept": "Qbel",
"Accepted": "Yettwaqbel",
"Account": "Amiḍan",
"Actions": "Actions",
"Activated": "Irmed",
"Active": "Urmid",
"Activity": "Armud",
"Add": "Rnu",
"Add a group": "Rnu agraw",
"Add a note": "Rnu tazmilt",
"Admin": "Anedbal",
"Administration": "Tadbelt",
"Administrator": "Anedbal",
"Application": "Application",
"Avatar": "Avaṭar",
"Banner": "Aγarrac",
"Bold": "Tira tazurant",
"Cancel": "Annuler",
"Cancelled": "Ittwasefsex",
"Change": "Beddel",
"Change my password": "Abeddel n awal-iw uffir",
"City or region": "Tiγremt neγ tamnaḍt",
"Clear": "Sfeḍ",
"Click for more information": "Sit i wugar n telɣut",
"Close": "Mdel",
"Closed": "Yemdel",
"Comments": "Iwenniten",
"Confirmed": "Yettwaqbel",
"Contact": "Anermes",
"Country": "Country",
"Create": "Rnu",
"Create a new list": "Rnu tabdert tamaynut",
"Create an account": "Rnu amiḍan",
"Create group": "Snulfu-d agraw",
"Custom": "Udmawan",
"Custom URL": "URL yugnen",
"Dashboard": "Tafelwit n usenqed",
"Date": "Azemz",
"Date and time": "Azemz aked usrag",
"Decline": "Agwi",
"Default": "Amezwar",
"Delete": "Kkes",
"Delete Comment": "Kkes awennit",
"Delete Event": "Kkes tadyant",
"Delete account": "Kkes amiḍan",
"Delete event": "Kkes tadyant",
"Demote": "Ṣubb deg usellun",
"Description": "Asnummel",
"Disabled": "Yensa",
"Display name": "Isem n uskan",
"Domain": "Taɣult",
"Draft": "Arewway",
"Drafts": "Irewwayen",
"Duplicate": "Sisleg",
"Edit": "Édition",
"Email": "Imayl",
"Email address": "Tansa imayl",
"Email notifications": "Ilɣa s yimayl",
"Enabled": "Irmed",
"Error": "Tuccḍa",
"Error message": "Izen n tuccḍa",
"Event": "Événement",
"Events": "Tidyanin",
"Everything": "Kulec",
"Explore": "Snirem",
"Forgot your password?": "Tettuḍ awal uffir?",
"General": "Amatu",
"Glossary": "Amawal n yilɣiten",
"Go": "Ddu",
"Group name": "Isem n ugraw",
"Group settings": "Iγewwaṛen nu graw",
"Groups": "Igrawen",
"Hide replies": "Ffer tiririyin",
"Home": "Asnubeg",
"Invited": "Yettwancad",
"Italic": "Uknan",
"Language": "Tutlayt",
"Last week": "Dduṛt yezrin",
"Leave": "Eǧǧ",
"Legal": "Usḍif",
"License": "Licence",
"Load more": "Sali ugar",
"Local": "Adigan",
"Locality": "Amḍiq",
"Location": "Adig",
"Log in": "Qqen",
"Log out": "Tuffɣa",
"Login": "Aseqdac",
"Member": "Amedraw",
"Members": "Imttekkiyen",
"Message": "Izen",
"Moderator": "Amaẓrag",
"Move": "Senkez",
"Name": "Isem",
"New folder": "Akaram amaynut",
"New note": "Tazmilt tamaynut",
"New password": "Awal uffir amaynut",
"New profile": "Nouveau profil",
"Next": "Uḍfir",
"Next month": "Aggur d-iteddun",
"Next page": "Asebtar ameḍfir",
"Next week": "Dduṛt d-iteddun",
"No languages found": "Ulac tutlaying i yettwafen",
"None": "Ula d yiwen",
"Notes": "Tizmilin",
"Notifications": "Ilɣa",
"OK": "IH",
"Old password": "Awal uffir aqbuṛ",
"Open": "Ldi",
"Organizer": "Sefrek",
"Other": "Nniḍen",
"Page": "Asebtar",
"Parent folder": "Akaram agejdan",
"Participant": "Imttekki",
"Password": "Mot de passe",
"Password reset": "Awennez n wawal uffir",
"Pending": "Ittraǧu",
"Post": "Amagrad",
"Post a comment": "Aru awennit",
"Posts": "Imagraden",
"Preferences": "Ismenyifen",
"Previous": "Précédent",
"Previous page": "Asebtar ssabeq",
"Privacy Policy": "Tasertit tabaḍnit",
"Privacy policy": "Tasertit n tbaḍnit",
"Public": "Azayez",
"Publish": "Suffeɣ-d",
"Radius": "Aɣar n yiri",
"Region": "Tamnaḍt",
"Reject": "Agi",
"Rejected": "Yerrad",
"Remove": "Kkes",
"Rename": "Beddel isem",
"Reopen": "Ldi i tikkelt-nniḍen",
"Reply": "Err",
"Report": "Aneqqis",
"Report this comment": "Sillef awennit agi",
"Reports": "Ineqqisen",
"Reset my password": "Wennez awal-iw uffir",
"Resources": "Tiɣbula",
"Restricted": "Yesεa tilas",
"Role": "Tamlilt",
"Rules": "Ilugan",
"SSL/TLS": "SSL/TLS",
"Save": "Sekles",
"Save draft": "Sekles arewway",
"Search": "Nadi",
"Searching…": "Anadi…",
"Search…": "Ffeɣ seg unadi…",
"Send email": "Azen imayl",
"Settings": "Iɣewwaṛen",
"Sign in with": "Kcem s",
"Status": "État",
"Street": "Abrid",
"Submit": "Azen",
"Suspend": "Ḥbes di leεḍil",
"Suspended": "Yeḥbes",
"Tentative": "Aɛraḍ",
"Terms": "Tiwtilin",
"Text": "Aḍris",
"This month": "Aggur-a",
"This week": "Ddurt-a",
"Timezone": "Iẓdi usrig",
"Title": "Azwel",
"Today": "Ass-a",
"Tomorrow": "Azekka",
"Type": "Anaw",
"URL": "URL",
"Unknown": "Arussin",
"Update": "Leqqem",
"Update group": "Leqqem agraw",
"Updated": "Yettwalqem",
"User": "Aseqdac",
"Username": "Isem n useqdac",
"Users": "Iseqdacen",
"View all": "Sken akk",
"Warning": "Ɣur-k",
"Website": "Asmel n web",
"Welcome back!": "Anṣuf i tikkelt-nniḍen!",
"Yesterday": "Iḍelli",
"Your email": "Imayl-ik",
"[deleted]": "[yettwakkes]"
}

View File

@ -22,6 +22,7 @@
"pl": "Polski",
"pt": "Português",
"pt_BR": "Português brasileiro",
"ru": "Русский",
"sl": "Slovenščina",
"sv": "Svenska",
"zh_Hant": "繁體字"

View File

@ -9,7 +9,10 @@
"+ Start a discussion": "+ Start eit ordskifte",
"<b>{contact}</b> will be displayed as contact.": "<b>{contact}</b> vil bli vist som kontakt.|<b>{contact}</b> vil bli viste som kontaktar.",
"@{group}": "@{group}",
"@{username}": "@{username}",
"@{username} ({role})": "@{username} ({role})",
"@{username}'s follow request was accepted": "Fylgjeførespurnaden frå @{username} er godkjend",
"@{username}'s follow request was rejected": "Fyljgeførespurnaden frå @{username} vart avslegen",
"A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Ein infokapsel er ei lita fil som held på informasjon som vert sendt til datamaskina di når du besøkjer ei nettside. Når du kjem attende til sida, lèt infokapselen sida kjenna att nettlesaren din. Infokapslar kan ta vare på preferansane til brukaren og annan informasjon. Du kan setja opp nettlesaren din til å avvisa alle infokapslane, men det kan henda dette får nokre funksjonar eller tenester på nettsida til å berre verka delvis. Lokallagring verkar på same måte, berre at ein får lagra meir data.",
"A federated software": "Spreidd programvare",
"A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Ein plass der du forklarar reglar, skikk og retningsliner på nettstaden din. Du kan bruka HTML.",
@ -37,6 +40,7 @@
"Actions": "Handlingar",
"Activated": "Skrudd på",
"Active": "Aktiv",
"Activity": "Aktivitet",
"Actor": "Aktør",
"Add": "Legg til",
"Add / Remove…": "Legg til / fjern…",
@ -54,11 +58,13 @@
"Admin settings successfully saved.": "Administrasjonsinnstillingane er lagra.",
"Administration": "Administrering",
"Administrator": "Styrar",
"All activities": "Alle aktivitetar",
"All good, let's continue!": "Fint, då kan me halda fram!",
"All group members and other eventual server admins will still be able to view this information.": "Alle gruppemedlemer og andre eventuelle tenar-administratorar vil framleis sjå desse opplysingane.",
"All the places have already been taken": "Alle plassane er opptekne|Det er ein ledig plass|Det er {places} ledige plassar",
"All the places have already been taken": "Alle plassane er opptekne",
"Allow all comments from users with accounts": "Skru på alle kommentarar frå innlogga brukarar",
"Allow registrations": "Tillat nye brukarar",
"An error has occured. Sorry about that. You may try to reload the page.": "Her vart det feil. Me orsakar. Kanskje du kan prøva å lasta sida på nytt.",
"An ethical alternative": "Eit etisk alternativ",
"An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Ein Mobilizon-nettstad har installert ein versjon av Mobilizon på ein tenar. Alle kan laga ein nettstad ved å bruka {mobilizon_software} eller andre spreidde program, òg kjent som \"fødiverset\". Denne nettstaden heiter {instance_name}. Mobilizon er eit spreidd nettverk med mange nettstader (akkurat som eposttenarar). Brukarar som er medlemer av ulike nettstader kan kommunisera med kvarandre sjølv om dei ikkje registrerte seg på same nettstad.",
"An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events on your behalf, automatically and remotely.": "Eit \"application programming interface\" eller \"API\" er ein kommunikasjonsprotokoll som gjev programkomponentar høve til å kommunisera med kvarandre. Mobilizon-APIet, til dømes, lèt tredjepartsprogram kommunisera med Mobilizon-nettstader for å utføra visse handlingar, slik som å leggja ut innlegg på dine vegner, automatisk og utanfrå.",
@ -80,9 +86,11 @@
"Are you sure you want to cancel the event creation? You'll lose all modifications.": "Er du sikker på at du vil avbryta denne hendinga? Du vil mista alle endringane.",
"Are you sure you want to cancel the event edition? You'll lose all modifications.": "Er du sikker på at du vil slutta å redigera denne hendinga? Du mistar alle endringar.",
"Are you sure you want to cancel your participation at event \"{title}\"?": "Er du sikker på at du vil melda deg av hendinga \"{title}\"?",
"Are you sure you want to delete this entire discussion?": "Er du sikker på at du vil sletta heile ordskiftet?",
"Are you sure you want to delete this event? This action cannot be reverted.": "Er du sikker på at du vil sletta denne hendinga? Du kan ikkje angra dette.",
"As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Tilskiparen har valt å godkjenna deltakarar manuelt. Difor vil du berre få éi stadfesting på epost når deltakinga di er godkjend.",
"Assigned to": "Tildelt",
"Atom feed for events and posts": "Atom-straum for hendingar og innlegg",
"Avatar": "Profilbilete",
"Back to previous page": "Tilbake til førre sida",
"Banner": "Banner",
@ -91,6 +99,7 @@
"Bold": "Halvfeit",
"By @{group}": "Av @{group}",
"By @{username}": "Av @{username}",
"By others": "Av andre",
"By {author}": "Av {author}",
"By {group}": "Av {gruppe}",
"Can be an email or a link, or just plain text.": "Kan vera ei epostadresse eller ei lenke, eller rein tekst.",
@ -109,6 +118,7 @@
"Change my password": "Byt passord",
"Change timezone": "Endra tidssone",
"Check your inbox (and your junk mail folder).": "Sjekk innboksen din (og søppelmappa).",
"City or region": "By eller område",
"Clear": "Tøm",
"Clear participation data for all events": "Slett deltakingsdata for alle hendingar",
"Clear participation data for this event": "Slett deltakingsdata for denne hendinga",
@ -117,9 +127,11 @@
"Click to upload": "Klikk for å lasta opp",
"Close": "Steng",
"Close comments for all (except for admins)": "Steng for kommentarar frå alle (unnateke administratorar)",
"Events nearby": "Hendingar i nærleiken",
"Closed": "Stengt",
"Comment deleted": "Kommentaren er sletta",
"Comment from @{username} reported": "Kommentaren frå @{username} er rapportert",
"Comment text can't be empty": "Kommentaren kan ikkje vera tom",
"Comments": "Kommentarar",
"Comments are closed for everybody else.": "Ingen andre har lov å kommentera.",
"Confirm my participation": "Stadfest at eg deltek",
@ -131,6 +143,7 @@
"Contact": "Kontakt",
"Continue editing": "Rediger vidare",
"Cookies and Local storage": "Infokapslar og lokal lagring",
"Copy details to clipboard": "Kopier detaljane til utklyppstavla",
"Country": "Land",
"Create": "Lag",
"Create a calc": "Lag eit rekneark",
@ -148,6 +161,7 @@
"Create my event": "Lag hendinga mi",
"Create my group": "Lag gruppa mi",
"Create my profile": "Lag profilen min",
"Create new links": "Lag nye lenker",
"Create resource": "Lag ein ressurs",
"Create the discussion": "Lag ordskiftet",
"Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Lag gjeremålslister for alle oppgåvene du må gjera, tildel dei og set sluttfristar.",
@ -175,11 +189,13 @@
"Delete Event": "Slett hendinga",
"Delete account": "Slett kontoen",
"Delete conversation": "Slett samtala",
"Delete discussion": "Slett ordskiftet",
"Delete event": "Slett hendinga",
"Delete everything": "Slett alt",
"Delete group": "Slett gruppe",
"Delete my account": "Slett brukarkontoen min",
"Delete post": "Slett innlegg",
"Delete this discussion": "Slett dette ordskiftet",
"Delete this identity": "Slett denne identiteten",
"Delete your identity": "Slett identiteten din",
"Delete {eventTitle}": "Slett {eventTitle}",
@ -224,7 +240,11 @@
"Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Skriv inn dine eigne personvernvilkår. HTML er lov. {mobilizon_privacy_policy} er oppgjevne som mal.",
"Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Skriv inn dine eigne vilkår. HTML er lov. {mobilizon_terms} er oppgjevne som mal.",
"Error": "Feil",
"Error details copied!": "Feildetaljane er kopierte!",
"Error message": "Feilmelding",
"Error stacktrace": "Stabelsporing frå feilen",
"Error while changing email": "Greidde ikkje endra epostadressa",
"Error while loading the preview": "Greidde ikkje lasta førehandsvisinga",
"Error while login with {provider}. Retry or login another way.": "Greidde ikkje logga inn med {provider}. Prøv ein gong til, eller prøv med noko anna.",
"Error while login with {provider}. This login provider doesn't exist.": "Greidde ikkje logga inn med {provider}. Denne innloggingstilbydaren finst ikkje.",
"Error while reporting group {groupTitle}": "Greidde ikkje rapportera gruppa {groupTitle}",
@ -257,7 +277,9 @@
"Find an address": "Finn ei adresse",
"Find an instance": "Finn ein nettstad",
"Find another instance": "Finn ein annan nettstad",
"Follower": "Fylgjar",
"Followers": "Fylgjarar",
"Followers will receive new public events and posts.": "Fylgjarar får nye hendingar og innlegg.",
"Followings": "Fylgjer",
"For instance: London": "Til dømes: London",
"For instance: London, Taekwondo, Architecture…": "Til dømes: London, taekwondo, arkitektur…",
@ -266,6 +288,7 @@
"From the {startDate} at {startTime} to the {endDate}": "Frå {startDate} kl. {startTime} til {endDate}",
"From the {startDate} at {startTime} to the {endDate} at {endTime}": "Frå {startDate} kl. {startTime} til {endDate} kl. {endTime}",
"From the {startDate} to the {endDate}": "Frå {startDate} til {endDate}",
"From yourself": "Frå deg sjølv",
"Gather ⋅ Organize ⋅ Mobilize": "Kom saman ⋅ Organiser ⋅ Mobiliser",
"General": "Allment",
"General information": "Allmenne opplysingar",
@ -275,6 +298,7 @@
"Go": "Gå",
"Go to the event page": "Gå til hendingssida",
"Going as {name}": "Går som {name}",
"Group Followers": "Gruppefylgjarar",
"Group Members": "Gruppemedlemer",
"Group address": "Gruppeadresse",
"Group display name": "Visingsnamn for gruppa",
@ -302,6 +326,8 @@
"I participate": "Eg deltek",
"I want to allow people to participate without an account.": "Eg vil at folk skal kunna delta utan å ha ein brukarkonto.",
"I want to approve every participation request": "Eg vil godkjenna alle førespurnader om å delta",
"ICS feed for events": "ICS-straum for hendingar",
"ICS/WebCal Feed": "ICS/WebCal-straum",
"Identity {displayName} created": "Identiteten {displayName} er oppretta",
"Identity {displayName} deleted": "Identiteten {displayName} er sletta",
"Identity {displayName} updated": "Identiteten {displayName} er oppdatert",
@ -335,6 +361,7 @@
"Invite a new member": "Inviter ein ny medlem",
"Invite member": "Inviter ein medlem",
"Invited": "Invitert",
"It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "Det kan henda at dette innhaldet ikkje er tilgjengeleg på denne nettstaden, fordi han har blokkert profilane eller gruppene som laga innhaldet.",
"Italic": "Kursiv",
"Join <b>{instance}</b>, a Mobilizon instance": "Bli medlem av <b>{instance}</b>, ein nettstad på Mobilizon",
"Join group": "Bli med i ei gruppe",
@ -344,6 +371,7 @@
"Last IP adress": "Sist IP-adresse",
"Last group created": "Den nyaste gruppa",
"Last published event": "Nyaste hending",
"Last published events": "Dei siste hendingane",
"Last sign-in": "Sist logga på",
"Last week": "Sist veka",
"Latest posts": "Siste innlegg",
@ -359,6 +387,7 @@
"Limited number of places": "Avgrensa tal plassar",
"List title": "Tittel på lista",
"Load more": "Last fleire",
"Load more activities": "Hent fleire aktivitetar",
"Loading comments…": "Lastar kommentarar…",
"Local": "Lokal",
"Locality": "Stad",
@ -373,6 +402,7 @@
"Manage my notifications": "Handter varsla mine",
"Manage my settings": "Endre innstillingane mine",
"Manage participations": "Handter deltakingar",
"Manually approve new followers": "Godkjenn nye fylgjarar manuelt",
"Manually invite new members": "Inviter nye medlemer manuelt",
"Mark as resolved": "Merk som løyst",
"Member": "Medlem",
@ -407,6 +437,7 @@
"New members": "Nye medlemer",
"New note": "Nytt notat",
"New password": "Nytt passord",
"New post": "Nytt innlegg",
"New profile": "Ny profil",
"Next": "Neste",
"Next month": "Neste månad",
@ -419,8 +450,10 @@
"No discussions yet": "Ingen ordskifte enno",
"No end date": "Ingen sluttdato",
"No events found": "Fann ingen hendingar",
"No follower matches the filters": "Ingen fylgjar passar til filtra",
"No group found": "Fann ingen grupper",
"No groups found": "Fann ingen grupper",
"No information": "Ingen opplysingar",
"No instance follows your instance yet.": "Det er ingen nettstader som fylgjer din enno.",
"No instance to approve|Approve instance|Approve {number} instances": "Ingen nettstad å godkjenna|Godkjenn nettstaden|Godkjenn {number} nettstader",
"No instance to reject|Reject instance|Reject {number} instances": "Ingen nettstad å avslå|Avslå nettstaden|Avslå {number} nettstader",
@ -429,6 +462,7 @@
"No member matches the filters": "Ingen medlemer passar med filtra",
"No message": "Inga melding",
"No moderation logs yet": "Ingen gjennomsynsloggar enno",
"No more activity to display.": "Ikkje meir aktivitet å visa.",
"No one is going to this event": "Ingen skal på denne hendinga|Ein person skal|{going} personar skal",
"No open reports yet": "Ingen opne rapportar enno",
"No participant matches the filters": "Ingen deltakarar passar med filtra",
@ -452,6 +486,7 @@
"Nothing to see here": "Ingenting å sjå her",
"Notification before the event": "Varsling før hendinga",
"Notification on the day of the event": "Varsling på dagen for hendinga",
"Notifications": "Varsel",
"Notifications for manually approved participations to an event": "Varslingar for manuelt godkjende deltakingar til ei hending",
"Now, create your first profile:": "No kan du laga din fyrste profil:",
"Number of places": "Tal plassar",
@ -461,13 +496,17 @@
"On {date} ending at {endTime}": "{date}, slutt klokka {endTime}",
"On {date} from {startTime} to {endTime}": "{date} frå kl. {startTime} til {endTime}",
"On {date} starting at {startTime}": "{date}, startar klokka {startTime}",
"On {instance}": "På {instance}",
"Only accessible through link": "Berre tilgjengeleg med denne lenka",
"Only accessible through link (private)": "Berre tilgjengeleg med lenka (private)",
"Only accessible to members of the group": "Berre tilgjengeleg for gruppemedlemer",
"Only alphanumeric characters and underscores are supported.": "Du kan berre bruka bokstavar, tal og understrek.",
"Only alphanumeric lowercased characters and underscores are supported.": "Du kan berre bruka små bokstavar (a-z) og tal.",
"Only group members can access discussions": "Berre gruppemedlemer kan sjå ordskifte",
"Only group moderators can create, edit and delete posts.": "Berre gruppestyrarar kan skriva, endra og sletta innlegg.",
"Open": "Open",
"Open a topic on our forum": "Lag eit nytt emne på forumet vårt",
"Open an issue on our bug tracker (advanced users)": "Lag ei ny feilmelding på feilrettingsverktyet vårt (avanserte brukarar)",
"Opened reports": "Opna rapportar",
"Or": "Eller",
"Organized": "Organisert",
@ -497,11 +536,13 @@
"Password reset": "Nullstill passord",
"Past events": "Tidlegare hendingar",
"Pending": "Ventar",
"Personal feeds": "Personlege straumar",
"Pick": "Vel",
"Pick a group": "Vel ei gruppe",
"Pick a profile or a group": "Vel ein profil eller ei gruppe",
"Pick an identity": "Vel ein identitet",
"Pick an instance": "Vel ein nettstad",
"Please add as many details as possible to help identify the problem.": "Skriv inn så mange opplysingar du kan for å hjelpa oss å finna feilen.",
"Please check your spam folder if you didn't receive the email.": "Sjekk søppel-mappa di om du ikkje fekk eposten.",
"Please contact this instance's Mobilizon admin if you think this is a mistake.": "Ver god å kontakta administratoren på denne Mobilizon-tenaren om du meiner dette er feil.",
"Please do not use it in any real way.": "Ikkje bruk denne på ordentleg.",
@ -521,6 +562,7 @@
"Privacy policy": "Personvern",
"Private event": "Privat hending",
"Private feeds": "Private straumar",
"Profile feeds": "Profilstraumar",
"Profiles": "Profilar",
"Profiles and federation": "Profilar og spreiing",
"Promote": "Framhev",
@ -541,6 +583,7 @@
"Redirecting to content…": "Vidaresender til innhaldet…",
"Redirecting to event…": "Vidaresender til hendinga…",
"Refresh profile": "Last profilen på nytt",
"Regenerate new links": "Lag nye lenker på nytt",
"Region": "Region",
"Register an account on Mobilizon!": "Lag ein konto på Mobilizon!",
"Register an account on {instanceName}!": "Lag ein brukarkonto på {instancename}!",
@ -577,6 +620,7 @@
"Resource provided is not an URL": "Denne ressursen er ikkje ei URL-adresse",
"Resources": "Ressursar",
"Restricted": "Avgrensa",
"Return to the group page": "Gå tilbake til gruppesida",
"Right now": "Nett no",
"Role": "Rolle",
"Rules": "Reglar",
@ -589,6 +633,7 @@
"Searching…": "Søkjer…",
"Search…": "Søk…",
"Select a language": "Vel språk",
"Select a radius": "Vel ein radius",
"Select a timezone": "Vel ein tidssone",
"Select languages": "Vel språk",
"Send email": "Send epost",
@ -615,6 +660,7 @@
"Suspend group": "Sperr gruppa",
"Suspended": "Sperra",
"Task lists": "Oppgåveliste",
"Technical details": "Tekniske detaljar",
"Tentative": "Framlegg",
"Tentative: Will be confirmed later": "Førebels: Blir stadfesta seinare",
"Terms": "Vilkår",
@ -633,21 +679,41 @@
"The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "Tilskiparen godkjenner deltakarar manuelt. Sidan du har valt å delta utan brukarkonto, er det fint om du skriv kvifor du vil vera med.",
"The event title will be ellipsed.": "Tittelen på denne hendinga blir forkorta med ein ellipse (…).",
"The event will show as attributed to this group.": "Hendinga vil bli knytt til denne gruppa.",
"The event will show as attributed to this profile.": "Hendinga vil syna som tilkopla denne profilen.",
"The event will show as attributed to your personal profile.": "Hendinga vil bli knytt til den personlege profilen din.",
"The event will show the group as organizer.": "Denne hendinga vil syna gruppa som tilskipar.",
"The event {event} was created by {profile}.": "Brukaren {profile} laga hendinga {event}.",
"The event {event} was deleted by {profile}.": "Brukaren {profile} sletta hendinga {event}.",
"The event {event} was updated by {profile}.": "Brukaren {profile} oppdaterte hendinga {event}.",
"The events you created are not shown here.": "Dei hendingane du har laga, vil ikkje syna her.",
"The group can now be joined by anyone.": "Alle kan bli med i gruppa.",
"The group can now only be joined with an invite.": "Frå no må det invitasjon til for å bli med i gruppa.",
"The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Denne gruppa vil bli lista opp offentleg i søkjeresultat og kan bli føreslegen når folk utforskar nettstaden. Berre offentleg informasjon vil syna på sida til gruppa.",
"The group's avatar was changed.": "Gruppeavataren er endra.",
"The group's banner was changed.": "Gruppebanneret er endra.",
"The group's physical address was changed.": "Den fysiske adressa for gruppa er endra.",
"The group's short description was changed.": "Skildringa for gruppa er endra.",
"The instance administrator is the person or entity that runs this Mobilizon instance.": "Styraren er den personen eller eininga som driv denne Mobilizon-nettstaden.",
"The member was removed from the group {group}": "Medlemen vart fjerna frå gruppa {group}",
"The only way for your group to get new members is if an admininistrator invites them.": "Den einaste måten gruppa di kan få nye medlemer på, er dersom ein administrator inviterer dei.",
"The organiser has chosen to close comments.": "Tilskiparen har valt å stenga for kommentarar.",
"The page you're looking for doesn't exist.": "Denne sida finst ikkje.",
"The password was successfully changed": "Passordet er endra",
"The post {post} was created by {profile}.": "Brukaren {profile} skreiv innlegget {post}.",
"The post {post} was deleted by {profile}.": "{profile} sletta innlegget {post}.",
"The post {post} was updated by {profile}.": "{profile} oppdaterte innlegget {post}.",
"The report will be sent to the moderators of your instance. You can explain why you report this content below.": "Rapporten blir sendt til dei som styrer nettstaden din. Du kan forklara kvifor du rapporterer dette innhaldet under her.",
"The selected picture is too heavy. You need to select a file smaller than {size}.": "Dette biletet er for stort. Du må velja ei fil som er mindre enn {size}.",
"The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Dei tekniske detaljane om feilen kan hjelpa utviklarar å løysa problemet lettare. Ta dei gjerne med i feilmeldinga di.",
"The {default_privacy_policy} will be used. They will be translated in the user's language.": "{default_privacy_policy} vil bli brukt. Dei vil vera omsett til språket til brukaren.",
"The {default_terms} will be used. They will be translated in the user's language.": "{default_terms} vil bli brukte. Dei vil bli omsette til språket til lesaren.",
"There are {participants} participants.": "Det er {participants} deltakarar.",
"There is no activity yet. Start doing some things to see activity appear here.": "Ingen aktivitet enno. Gjer noko for å sjå aktiviteten her.",
"There will be no way to recover your data.": "Det blir umogleg å gjenoppretta opplysingane dine.",
"There's no discussions yet": "Ingen har diskutert dette enno",
"These events may interest you": "Desse hendingane er kanskje interessante",
"These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Desse straumane inneheld opplysingar om hendingar der einkvar av profilane dine er tilskipar eller deltakar. Du bør halda desse for deg sjølv. Du kan finna straumar for visse profilar på kvar profilside.",
"These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Desse straumane inneheld hendingsdata for dei hendingane der denne profilen er tilskipar eller deltakar. Du bør halde desse for deg sjølv. Du kan finna straumar for alle profilane dine i varselinnstillingane dine.",
"This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Denne Mobilizon-nettstaden og tilskiparen tillèt anonym deltaking, men krev at du stadfestar ved epost.",
"This URL is not supported": "Denne URL-adressa er ikkje støtta",
"This event has been cancelled.": "Denne hendinga er avlyst.",
@ -684,14 +750,19 @@
"Type or select a date…": "Skriv inn eller vel ein dato…",
"URL": "URL-adresse",
"URL copied to clipboard": "Adressa er kopiert til utklippstavla",
"Unable to copy to clipboard": "Greidde ikkje kopiera til utklyppstavla",
"Unable to create the group. One of the pictures may be too heavy.": "Greidde ikkje laga gruppa. Eit av bileta kan vera for stort.",
"Unable to create the profile. The avatar picture may be too heavy.": "Greidde ikkje laga profilen. Profilbiletet kan vera for stort.",
"Unable to detect timezone.": "Greidde ikkje finna tidssonen.",
"Unable to load event for participation. The error details are provided below:": "Greidde ikkje å lasta hendinga for å melda deg på. Her er feilmeldingane:",
"Unable to save your participation in this browser.": "Greidde ikkje lagra deltakinga di i denne nettlesaren.",
"Unable to update the profile. The avatar picture may be too heavy.": "Greidde ikkje oppdatera profilen. Profilbiletet kan vera for stort.",
"Unfortunately, this instance isn't opened to registrations": "Denne nettstaden er diverre ikkje open for innmeldingar no",
"Unfortunately, your participation request was rejected by the organizers.": "Tilskiparane har diverre avslege deltakinga di.",
"Unknown": "Ukjent",
"Unknown actor": "Ukjend aktør",
"Unknown error.": "Ukjend feil.",
"Unknown value for the openness setting.": "Det er uvisst om gruppa er open eller ikkje.",
"Unsaved changes": "Ulagra endringar",
"Unset group": "Ikkje vel gruppa",
"Unsuspend": "Opphev sperringa",
@ -716,10 +787,14 @@
"View event page": "Sjå på hendingssida",
"View everything": "Sjå alt",
"View page on {hostname} (in a new window)": "Sjå sida på {hostname} (i eit nytt vindauga)",
"Visibility was set to an unknown value.": "Det er uvisst om denne er offentleg eller ikkje.",
"Visibility was set to private.": "Vart gjort privat.",
"Visibility was set to public.": "Vart gjort offentleg.",
"Visible everywhere on the web": "Synleg overalt på veven",
"Visible everywhere on the web (public)": "Synleg overalt på veven (offentleg)",
"Waiting for organization team approval.": "Ventar på godkjenning frå tilskiparane.",
"Warning": "Åtvaring",
"We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Viss du melder frå til oss om feil, kan me utbetra denne programvara. Viss du vil melda frå til oss om denne feilen, er det to måtar å gjera det på (båe krev diverre at du registrerer deg som brukar):",
"We just sent an email to {email}": "Me har akkurat sendt ein epost til {email}",
"We use your timezone to make sure you get notifications for an event at the correct time.": "Me bruker tidssonen din for å sjå til at du får varsel for hendingar til rett tid.",
"We will redirect you to your instance in order to interact with this event": "Me sender deg vidare til nettstaden din, slik at du kan samhandla med denne hendinga",
@ -731,13 +806,19 @@
"Welcome back {username}!": "Velkomen att, {username}!",
"Welcome back!": "Velkomen att!",
"Welcome to Mobilizon, {username}!": "Velkomen til Mobilizon, {username}!",
"What can I do to help?": "Kva kan eg gjera for å hjelpa?",
"When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Når ein styrar i gruppa lagar ei hending og knyter ho til gruppa, vil ho syna her.",
"Who can view this event and participate": "Kven som kan sjå og delta på denne hendinga",
"Who can view this post": "Kven kan sjå dette innlegget",
"Who published {number} events": "Som har laga {number} hendingar",
"Why create an account?": "Kvifor laga konto?",
"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.": "Lèt deg syna og handtera deltakarstatusen din på hendingssida når du bruker denne eininga. Fjern merkinga viss du bruker ei offentleg eining.",
"Within {number} kilometers of {place}": "|Innan ein kilometer frå {place}|Innan {number} kilometer frå {place}",
"Write something…": "Skriv noko…",
"Yesterday": "I går",
"You accepted the invitation to join the group.": "Du tok imot invitasjonen om å bli med i gruppa.",
"You added the member {member}.": "Du la til medlemen {member}.",
"You archived the discussion {discussion}.": "Du arkiverte ordskiftet {discussion}.",
"You are not an administrator for this group.": "Du er ikkje styrar for denne gruppa.",
"You are not part of any group.": "Du er ikkje med i noko gruppe.",
"You are participating in this event anonymously": "Du deltek på denne hendinga anonymt",
@ -747,8 +828,23 @@
"You can pick your timezone into your preferences.": "Du kan velja tidssone i innstillingane dine.",
"You can try another search term or drag and drop the marker on the map": "Du kan søkja etter noko anna, eller dra og sleppa markøren på kartet",
"You can't change your password because you are registered through {provider}.": "Du kan ikkje endra passordet ditt, fordi du er registrert gjennom {provider}.",
"You created the discussion {discussion}.": "Du laga ordskiftet {discussion}.",
"You created the event {event}.": "Du laga hendinga {event}.",
"You created the folder {resource}.": "Du laga mappa {resource}.",
"You created the group {group}.": "Du laga gruppa {group}.",
"You created the post {post}.": "Du skreiv innlegget {post}.",
"You created the resource {resource}.": "Du laga ressursen {resource}.",
"You deleted the discussion {discussion}.": "Du sletta ordskiftet {discussion}.",
"You deleted the event {event}.": "Du sletta hendinga {event}.",
"You deleted the folder {resource}.": "Du sletta mappa {resource}.",
"You deleted the post {post}.": "Du sletta innlegget {post}.",
"You deleted the resource {resource}.": "Du sletta ressursen {resource}.",
"You demoted the member {member} to an unknown role.": "Du degraderte medlemen {member} til ei ukjend rolle.",
"You demoted {member} to moderator.": "Du degraderte {member} til redaktør.",
"You demoted {member} to simple member.": "Du degraderte {member} til vanleg medlem.",
"You didn't create or join any event yet.": "Du har ikkje laga eller vorte med på hendingar enno.",
"You don't follow any instances yet.": "Du fylgjer ingen nettstader enno.",
"You excluded member {member}.": "Du kasta ut medlemen {member}.",
"You have been disconnected": "Du er fråkopla",
"You have been invited by {invitedBy} to the following group:": "{invitedBy} har invitert deg til denne gruppa:",
"You have been removed from this group's members.": "Du er ikkje lenger medlem i denne gruppa.",
@ -756,22 +852,50 @@
"You have one event in {days} days.": "Du har ingen hendingar dei neste {days} dagane | Du har ei hending dei neste {days} dagane. | Du har {count} hendingar dei neste {days} dagane",
"You have one event today.": "Du har ingen hendingar i dag | Du har ei hending i dag. | Du har {count} hendingar i dag",
"You have one event tomorrow.": "Du har ingen hendingar i morgon | Du har ei hending i morgon. | Du har {count} hendingar i morgon",
"You invited {member}.": "Du inviterte {member}.",
"You may clear all participation information for this device with the buttons below.": "Du kan sletta alle deltakingsopplysingar for denne eininga ved å bruka knappane under.",
"You may now close this window, or {return_to_event}.": "Du kan lata att dette vindauga no, eller {return_to_event}.",
"You may now close this window.": "No kan du stenga dette vindauga.",
"You may show some members as contacts.": "Du kan syna nokre medlemer som kontakter.",
"You moved the folder {resource} into {new_path}.": "Du flytta mappa {resource} til {new_path}.",
"You moved the folder {resource} to the root folder.": "Du flytta mappa {resource} til rotmappa.",
"You moved the resource {resource} into {new_path}.": "Du flytta ressursen {resource} til {new_path}.",
"You moved the resource {resource} to the root folder.": "Du flytta ressursen {resource} til rotmappa.",
"You need to create the group before you create an event.": "Du må laga ei gruppe før du lagar ei hending.",
"You need to login.": "Du må logga inn.",
"You posted a comment on the event {event}.": "Du kommenterte hendinga {event}.",
"You promoted the member {member} to an unknown role.": "Du forfremja medlemen {member} til ei ukjend rolle.",
"You promoted {member} to administrator.": "Du forfremja {member} til styrar.",
"You promoted {member} to moderator.": "Du forfremja {member} til redaktør.",
"You renamed the discussion from {old_discussion} to {discussion}.": "Du døypte om ordskiftet frå {old_discussion} til {discussion}.",
"You renamed the folder from {old_resource_title} to {resource}.": "Du døypte om mappa frå {old_resource_title} til {resource}.",
"You renamed the resource from {old_resource_title} to {resource}.": "Du døypte om ressursen frå {old_resource_title} til {resource}.",
"You replied to a comment on the event {event}.": "Du svara på ein kommentar til hendinga {event}.",
"You replied to the discussion {discussion}.": "Du svara på ordskiftet {discussion}.",
"You requested to join the group.": "Du ba om å bli med i gruppa.",
"You updated the event {event}.": "Du oppdaterte hendinga {event}.",
"You updated the group {group}.": "Du oppdaterte gruppa {group}.",
"You updated the member {member}.": "Du oppdaterte medlemen {member}.",
"You updated the post {post}.": "Du oppdaterte innlegget {post}.",
"You were demoted to an unknown role by {profile}.": "{profile} degraderte deg til ei ukjend rolle.",
"You were demoted to moderator by {profile}.": "{profile} degraderte deg til redaktør.",
"You were demoted to simple member by {profile}.": "{profile} degraderte deg til vanleg medlem.",
"You were promoted to administrator by {profile}.": "{profile} forfremja deg til styrar.",
"You were promoted to an unknown role by {profile}.": "{profile} forfremja deg til ei ukjend rolle.",
"You were promoted to moderator by {profile}.": "{profile} forfremja deg til redaktør.",
"You will be able to add an avatar and set other options in your account settings.": "Du kan laga eit profilbilete og gjera andre val i kontoinnstillingane dine.",
"You will be redirected to the original instance": "Du blir send vidare til den opphavelege nettstaden",
"You will find here all the events you have created or of which you are a participant.": "Her finn du alle hendingane du har laga eller deltek på.",
"You wish to participate to the following event": "Du ynskjer å delta på denne hendinga",
"You'll get a weekly recap every Monday for upcoming events, if you have any.": "Du vil få eit samandrag kvar måndag over komande hendingar, om du har nokon.",
"You'll need to change the URLs where there were previously entered.": "Du må endra adressene der du har skrive dei inn tidlegare.",
"You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Du må senda ut gruppeadressa slik at folk kan sjå gruppeprofilen. Du vil ikkje finna gruppa i Mobilizon-søk eller vanlege søkjemotorar.",
"You'll receive a confirmation email.": "Du får ein stadfestingsepost.",
"Your account has been successfully deleted": "Kontoen din er sletta",
"Your account has been validated": "Kontoen din er godkjend",
"Your account is being validated": "Kontoen din blir godkjend",
"Your account is nearly ready, {username}": "Kontoen din er snart klar, {username}",
"Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "Byen eller området ditt og radiusen blir berre brukt til å føreslå hendingar i nærleiken. Hendingsradiusen går ut frå administrasjonssenteret i området du har valt.",
"Your current email is {email}. You use it to log in.": "Epostadressa du har no, er {email}. Du bruker ho til å logga inn.",
"Your email": "Epostadressa di",
"Your email address was automatically set based on your {provider} account.": "Epostadressa di vart avgjort automatisk ut frå {provider}-kontoen din.",
@ -793,6 +917,7 @@
"Your timezone is currently set to {timezone}.": "Tidssonen din er {timezone}.",
"Your timezone was detected as {timezone}.": "Me fann tidssonen {timezone}.",
"Your timezone {timezone} isn't supported.": "Tidssonen din {timezone} er ikkje støtta.",
"Your upcoming events": "Komande hendingar",
"[This comment has been deleted by it's author]": "[Skribenten har sletta denne kommentaren]",
"[This comment has been deleted]": "[Denne kommentaren er sletta]",
"[deleted]": "[sletta]",
@ -820,11 +945,18 @@
"with another identity…": "med ein annan identitet…",
"{approved} / {total} seats": "{approved} / {total} plassar",
"{available}/{capacity} available places": "Ingen ledige plassar|{available}/{capacity} ledige plassar",
"{count} km": "{count}km",
"{count} participants": "Ingen deltakarar enno| Ein deltakar | {count} deltakarar",
"{count} requests waiting": "{count} førespurnader ventar",
"{count} team members": "{count} medlemer på laget",
"{group} activity timeline": "Tidsline over aktiviteten i {group}",
"{group}'s events": "Hendingane til {group}",
"{instanceName} is an instance of the {mobilizon} software.": "{instanceName} er ein nettstad som bruker {mobilizon}-programvara.",
"{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} er ein nettstad på {mobilizon_link}, fri programvare som er laga av brukarmiljøet.",
"{member} accepted the invitation to join the group.": "{member} tok imot invitasjonen om å bli med i gruppa.",
"{member} rejected the invitation to join the group.": "{member} takka nei til invitasjonen om å bli med i gruppa.",
"{member} requested to join the group.": "{member} ba om å bli med i gruppa.",
"{member} was invited by {profile}.": "{profile} inviterte {member}.",
"{moderator} added a note on {report}": "{moderator} skreiv eit notat til {report}",
"{moderator} closed {report}": "{moderator} avslutta {report}",
"{moderator} deleted an event named \"{title}\"": "{moderator} sletta ei hending med namnet \"{title}\"",
@ -838,7 +970,37 @@
"{number} organized events": "Ingen organiserte hendingar|Ei organisert hending|{number} organiserte hendingar",
"{number} participations": "Ingen deltakarar|Ein deltakar|{number} deltakarar",
"{number} posts": "Ingen innlegg|Eitt innlegg|{number} innlegg",
"{old_group_name} was renamed to {group}.": "{old_group_name} vart døypt om til {group}.",
"{profile} (by default)": "{profile} (som standard)",
"{profile} added the member {member}.": "{profile} la til medlemen {member}.",
"{profile} archived the discussion {discussion}.": "{profile} arkiverte ordskiftet {discussion}.",
"{profile} created the discussion {discussion}.": "{profile} laga ordskiftet {discussion}.",
"{profile} created the folder {resource}.": "{profile} laga mappa {resource}.",
"{profile} created the group {group}.": "{profile} laga gruppa {group}.",
"{profile} created the resource {resource}.": "{profile} laga ressursen {resource}.",
"{profile} deleted the discussion {discussion}.": "{profile} sletta ordskiftet {discussion}.",
"{profile} deleted the folder {resource}.": "{profile} sletta mappa {resource}.",
"{profile} deleted the resource {resource}.": "{profile} sletta ressursen {resource}.",
"{profile} demoted {member} to an unknown role.": "{profile} degraderte {member} til ei ukjend rolle.",
"{profile} demoted {member} to moderator.": "{profile} degraderte {member} til redaktør.",
"{profile} demoted {member} to simple member.": "{profile} degraderte {member} til vanleg medlem.",
"{profile} excluded member {member}.": "{profile} kasta ut medlemen {member}.",
"{profile} moved the folder {resource} into {new_path}.": "{profile} flytta mappa {resource} til {new_path}.",
"{profile} moved the folder {resource} to the root folder.": "{profile} flytta mappa {resource} til rotmappa.",
"{profile} moved the resource {resource} into {new_path}.": "{profile} flytta ressursen {resource} til {new_path}.",
"{profile} moved the resource {resource} to the root folder.": "{profile} flytta ressursen {resource} til rotmappa.",
"{profile} posted a comment on the event {event}.": "{profile} kommenterte hendinga {event}.",
"{profile} promoted {member} to administrator.": "{profile} forfremja {member} til styrar.",
"{profile} promoted {member} to an unknown role.": "{profile} forfremja {member} til ei ukjend rolle.",
"{profile} promoted {member} to moderator.": "{profile} forfremja {member} til redaktør.",
"{profile} quit the group.": "{profile} forlét gruppa.",
"{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} døypte om ordskiftet frå {old_discussion} til {discussion}.",
"{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} døypte om mappa frå {old_resource_title} til {resource}.",
"{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} døypte om ressursen frå {old_resource_title} til {resource}.",
"{profile} replied to a comment on the event {event}.": "{profile} svara på ein kommentar til hendinga {event}.",
"{profile} replied to the discussion {discussion}.": "{profile} svara på ordskiftet {discussion}.",
"{profile} updated the group {group}.": "{profile} oppdaterte gruppa {group}.",
"{profile} updated the member {member}.": "{profile} oppdaterte medlemen {member}.",
"{title} ({count} todos)": "{title} ({count} ting å gjera)",
"{username} was invited to {group}": "{username} vart invitert til {group}",
"© The OpenStreetMap Contributors": "© OpenStreetMap-bidragsytarane"

View File

@ -1,24 +1,51 @@
{
"#{tag}": "#{tag}",
"(Masked)": "(Скрыто)",
"(this folder)": "(эта папка)",
"(this link)": "(эта ссылка)",
"+ Add a resource": "+ Добавить ресурс",
"+ Create an event": "+ Создать мероприятие",
"+ Post a public message": "+ Опубликовать публичное сообщение",
"+ Start a discussion": "+ Начать обсуждение",
"<b>{contact}</b> will be displayed as contact.": "<b>{contact}</b> будет отображаться как контакт.|<b>{contact}</b> будут отображаться как контакты.",
"@{group}": "@{group}",
"@{username}": "@{username}",
"@{username} ({role})": "@{username} ({role})",
"@{username}'s follow request was accepted": "Запрос на подписку от @{username} принят",
"@{username}'s follow request was rejected": "Запрос на подписку от @{username} отклонён",
"A cookie is a small file containing information that is sent to your computer when you visit a website. When you visit the site again, the cookie allows that site to recognize your browser. Cookies may store user preferences and other information. You can configure your browser to refuse all cookies. However, this may result in some website features or services partially working. Local storage works the same way but allows you to store more data.": "Cookie - это небольшой файл, содержащий информацию, которая сохраняется на вашем компьютере при посещении веб-сайта. Когда вы снова посещаете эту страницу, cookie позволяет сайту распознавать ваш браузер. Cookie могут хранить настройки пользователя и другую информацию. Вы можете настроить свой браузер так, чтобы он не принимал файлы cookie. Однако это может привести к тому, что часть функционала веб-сайта не будет работать. Локальное хранилище работает так же, но позволяет хранить больше данных.",
"A federated software": "Федеративное программное обеспечение",
"A place for your code of conduct, rules or guidelines. You can use HTML tags.": "Тут можно разместить общие правила, положения или руководства. Вы можете использовать HTML-теги.",
"A place to explain who you are and the things that set your instance apart. You can use HTML tags.": "Тут можно подробно описать кто вы и что делает этот узел особенным. Вы можете использовать HTML-теги.",
"A place to publish something to the whole world, your community or just your group members.": "Место для публикации чего-либо для всего мира, вашего сообщества или только участников вашей группы.",
"A place to store links to documents or resources of any type.": "Место для хранения ссылок на документы или ресурсы любого типа.",
"A practical tool": "Удобный инструмент",
"A short tagline for your instance homepage. Defaults to \"Gather ⋅ Organize ⋅ Mobilize\"": "Короткий слоган для домашней страницы вашего узла. По умолчанию: \"Собирать ⋅ Организовывать ⋅ Мобилизовывать\"",
"A user-friendly, emancipatory and ethical tool for gathering, organising, and mobilising.": "Удобный, свободный и этичный инструмент для объединения, организации и мобилизации.",
"A validation email was sent to {email}": "Письмо с подтверждением было отправлено на адрес {email}",
"API": "API",
"Abandon editing": "Отменить изменения",
"About": "О",
"About": "О нас",
"About Mobilizon": "О Mobilizon",
"About anonymous participation": "Об анонимном участии",
"About this event": "Об этом мероприятии",
"About this instance": "Об этом узле",
"About {instance}": "О {instance}",
"Accept": "Принять",
"Accepted": "Принято",
"Accessible only to members": "Доступно только участникам",
"Accessible through link": "Доступно по ссылке",
"Account": "Учётная запись",
"Actions": "Действия",
"Activated": "Активирован",
"Active": "Активный",
"Activity": "Активность",
"Actor": "Агент",
"Add": "Добавить",
"Add / Remove…": "Добавить / удалить…",
"Add a contact": "Добавить контакт",
"Add a group": "Добавить группу",
"Add a new post": "Добавить новый пост",
"Add a note": "Добавить заметку",
"Add a todo": "Добавить в список задач",
"Add an address": "Добавить адрес",
@ -28,76 +55,114 @@
"Additional comments": "Дополнительные комментарии",
"Admin": "Админ",
"Admin settings successfully saved.": "Настройки администратора успешно сохранены.",
"Administration": "Администрация",
"Administration": "Администрирование",
"Administrator": "Администратор",
"All activities": "Все действия",
"All good, let's continue!": "Все хорошо, продолжим!",
"All the places have already been taken": "Все места уже заняты",
"Allow all comments from users with accounts": "Разрешить все комментарии от авторизованных пользователей",
"Allow registrations": "Разрешить регистрацию",
"An error has occured. Sorry about that. You may try to reload the page.": "Произошла ошибка. Приносим вам тысячу извинений. Вы можете попробовать перезагрузить страницу.",
"An ethical alternative": "Этичная альтернатива",
"An instance is an installed version of the Mobilizon software running on a server. An instance can be run by anyone using the {mobilizon_software} or other federated apps, aka the “fediverse”. This instance's name is {instance_name}. Mobilizon is a federated network of multiple instances (just like email servers), users registered on different instances may communicate even though they didn't register on the same instance.": "Узел - это программное обеспечение Mobilizon, установленное на сервере. Узел может быть запущен кем угодно, использующим {mobilizon_software} или другие федеративные приложения, называемые «Федиверзум». Имя этого узла - {instance_name}. Mobilizon - это федеративная сеть, состоящая из нескольких узлов (как почтовые серверы). Пользователи могут свободно общаться друг с другом, даже если они зарегистрированы на разных узлах.",
"An “application programming interface” or “API” is a communication protocol that allows software components to communicate with each other. The Mobilizon API, for example, can allow third-party software tools to communicate with Mobilizon instances to carry out certain actions, such as posting events on your behalf, automatically and remotely.": "Интерфейс прикладного программирования» или «API» - это протокол связи, который позволяет программным компонентам взаимодействовать друг с другом. Например, API Mobilizon позволяет стороннему программному обеспечению взаимодействовать с узлами Mobilizon для выполнения определенных действий, таких как автоматическая публикация мероприятий от вашего имени.",
"And {number} comments": "И {number} комментариев",
"Anonymous participant": "Анонимный участник",
"Anonymous participants will be asked to confirm their participation through e-mail.": "Анонимные участники получат запрос на подтверждение своего участия по электронной почте.",
"Anonymous participations": "Анонимное участие",
"Any day": "В любой день",
"Anyone can join freely": "Каждый может присоединиться",
"Anyone wanting to be a member from your group will be able to from your group page.": "Каждый, кто хочет стать участником вашей группы, сможет сделать это на странице этой группы.",
"Application": "Приложение",
"Are you really sure you want to delete your whole account? You'll lose everything. Identities, settings, events created, messages and participations will be gone forever.": "Вы действительно уверены, что хотите удалить свою учетную запись? Вы потеряете всё. Идентификаторы, настройки, созданные мероприятия, сообщения и история исчезнут навсегда.",
"Are you sure you want to <b>completely delete</b> this group? All members - including remote ones - will be notified and removed from the group, and <b>all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed</b>.": "Вы действительно хотите <b>полностью удалить</b> эту группу? Все участники, включая участников с других узлов, будут уведомлены и удалены из группы, а <b>все данные группы (мероприятия, сообщения, обсуждения, задачи…) будут безвозвратно уничтожены</b>.",
"Are you sure you want to <b>delete</b> this comment? This action cannot be undone.": "Вы действительно хотите <b>удалить</b> этот комментарий? Это действие не может быть отменено.",
"Are you sure you want to <b>delete</b> this event? This action cannot be undone. You may want to engage the discussion with the event creator or edit its event instead.": "Вы действительно хотите <b>удалить</b> это мероприятие? Это действие не может быть отменено. Вы можете обсудить мероприятие с его автором, или просто отредактировать его.",
"Are you sure you want to <b>suspend</b> this group? All members - including remote ones - will be notified and removed from the group, and <b>all of the group data (events, posts, discussions, todos…) will be irretrievably destroyed</b>.": "Вы действительно хотите <b>заблокировать</b> эту группу? Все участники, включая участников с других узлов, будут уведомлены и удалены из группы, а <b>все данные группы (мероприятия, сообщения, обсуждения, задачи…) будут безвозвратно уничтожены</b>.",
"Are you sure you want to <b>suspend</b> this group? As this group originates from instance {instance}, this will only remove local members and delete the local data, as well as rejecting all the future data.": "Вы действительно хотите <b>заблокировать</b> эту группу? Поскольку эта группа принадлежит узлу {instance}, то будут удалены только локальные члены и локальные данные. Так же это приведёт к запрету публикации любых данных этой группой.",
"Are you sure you want to cancel the event creation? You'll lose all modifications.": "Вы уверены, что хотите отменить создание мероприятия? Все изменения будут потеряны.",
"Are you sure you want to cancel the event edition? You'll lose all modifications.": "Вы уверены, что хотите отменить редактирование мероприятия? Все изменения будут потеряны.",
"Are you sure you want to cancel your participation at event \"{title}\"?": "Вы действительно хотите отказаться от участия в мероприятии \"{title}\"?",
"Are you sure you want to delete this entire discussion?": "Вы уверены, что хотите полностью удалить это обсуждение?",
"Are you sure you want to delete this event? This action cannot be reverted.": "Вы уверены, что хотите удалить это мероприятие? Это действие нельзя отменить.",
"As the event organizer has chosen to manually validate participation requests, your participation will be really confirmed only once you receive an email stating it's being accepted.": "Поскольку организатор мероприятия решил вручную подтверждать запросы на участие, ваше участие будет фактически подтверждено после того, как вы получите электронное письмо о том, что оно было одобрено.",
"Assigned to": "Присвоен",
"Atom feed for events and posts": "Atom лента для мероприятий и публикаций",
"Avatar": "Аватар",
"Back to previous page": "Вернуться на предыдущую страницу",
"Banner": "Баннер",
"Before you can login, you need to click on the link inside it to validate your account.": "Перед тем как войти в систему, вы должны перейти по указанной в письме ссылке, чтобы подтвердить свою учетную запись.",
"Begins on": "Начало",
"Bold": "Жирный",
"By @{group}": "Из @{group}",
"By @{username}": "От @{username}",
"By others": "Другими",
"By {author}": "Автор {author}",
"By {group}": "Автор: {group}",
"Can be an email or a link, or just plain text.": "Может быть адресом электронной почты, ссылкой или простым текстом.",
"Cancel": "Отмена",
"Cancel anonymous participation": "Отменить анонимное участие",
"Cancel creation": "Отменить создание",
"Cancel edition": "Отменить редактирование",
"Cancel my participation request…": "Отменить мою заявку на участие…",
"Cancel my participation…": "Отменить моё участие…",
"Cancelled": "Отменено",
"Cancelled: Won't happen": "Отменено: Не состоится",
"Change": "Изменить",
"Change my email": "Изменить мой адрес электронной почты",
"Change my identity…": "Изменить мой идентификатор…",
"Change my password": "Изменить свой пароль",
"Change timezone": "Изменить часовой пояс",
"Check your inbox (and your junk mail folder).": "Проверьте свою электронную почту (и папку со спамом).",
"City or region": "Город, регион или область",
"Clear": "Очистить",
"Clear participation data for all events": "Очистить данные об участии для всех мероприятий",
"Clear participation data for this event": "Очистить данные об участии в этом мероприятии",
"Click for more information": "Кликнете для получения дополнительной информации",
"Click to upload": "Нажмите, чтобы загрузить",
"Close": "Закрыть",
"Close comments for all (except for admins)": "Закрыть комментарии для всех (кроме админов)",
"Events nearby": "Ближайшие мероприятия",
"Closed": "Закрыто",
"Comment deleted": "Комментарий удален",
"Comment from @{username} reported": "Жалоба на комментарий от @{username} отправлена",
"Comment text can't be empty": "Комментарий не может быть пустым",
"Comments": "Комментарии",
"Comments are closed for everybody else.": "Комментарии закрыты для всех остальных.",
"Confirm my participation": "Подтвердите мое участие",
"Confirm my particpation": "Подтвердите мое участие",
"Confirmed": "Подтверждённый",
"Confirmed at": "Подтверждён в",
"Confirmed: Will happen": "Подтверждено: Состоится",
"Congratulations, your account is now created!": "Поздравляем, ваша учетная запись создана!",
"Contact": "Контакт",
"Continue editing": "Продолжить редактирование",
"Cookies and Local storage": "Файлы cookie и локальное хранилище",
"Copy details to clipboard": "Копировать подробности в буфер обмена",
"Country": "Страна",
"Create": "Создать",
"Create a calc": "Создать таблицу",
"Create a discussion": "Начать обсуждение",
"Create a folder": "Создать папку",
"Create a new event": "Создать новое мероприятие",
"Create a new group": "Создать новую группу",
"Create a new identity": "Создать новый идентификатор",
"Create a new list": "Создать новый список",
"Create a pad": "Создать документ",
"Create a videoconference": "Создать видеоконференцию",
"Create an account": "Создать учётную запись",
"Create event": "Создать мероприятие",
"Create group": "Создать группу",
"Create my event": "Создать мое мероприятие",
"Create my group": "Создать мою группу",
"Create my profile": "Создать мой профиль",
"Create new links": "Создать новые ссылки",
"Create resource": "Создать ресурс",
"Create the discussion": "Начать обсуждение",
"Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Создавайте списки дел для каждой нужной вам задачи, назначайте их другим, и устанавливайте сроки выполнения.",
"Create token": "Создать токен",
"Created by {name}": "Создано {name}",
"Created by {username}": "Создано {username}",
"Current identity has been changed to {identityName} in order to manage this event.": "Текущий идентификатор был изменен на {identityName}, чтобы иметь возможность управлять этим событием.",
"Current page": "Текущая страница",
"Custom": "Пользовательский",
@ -111,13 +176,20 @@
"Date parameters": "Параметры даты",
"Decline": "Отклонить",
"Default": "По умолчанию",
"Default Mobilizon privacy policy": "Политика конфиденциальности Mobilizon по умолчанию",
"Default Mobilizon terms": "Условия использования Mobilizon по умолчанию",
"Delete": "Удалить",
"Delete Comment": "Удалить комментарий",
"Delete Event": "Удалить мероприятие",
"Delete account": "Удалить учётную запись",
"Delete conversation": "Удалить беседу",
"Delete discussion": "Удалить обсуждение",
"Delete event": "Удалить мероприятие",
"Delete everything": "Удалить всё",
"Delete group": "Удалить группу",
"Delete my account": "Удалить мою учётную запись",
"Delete post": "Удалить пост",
"Delete this discussion": "Удалить это обсуждение",
"Delete this identity": "Удалить этот идентификатор",
"Delete your identity": "Удалить ваш идентификатор",
"Delete {eventTitle}": "Удалить {eventTitle}",
@ -126,23 +198,31 @@
"Deleting event": "Удаление мероприятия",
"Deleting my account will delete all of my identities.": "Удаление моей учетной записи приведет к удалению всех моих личных данных.",
"Deleting your Mobilizon account": "Удаление моей учётной записи Mobilizon",
"Demote": "Понизить",
"Description": "Описание",
"Didn't receive the instructions?": "Не получили инструкции?",
"Disabled": "Отключено",
"Discussions": "Обсуждения",
"Display name": "Отображаемое имя",
"Display participation price": "Показать стоимость участия",
"Displayed nickname": "Отображаемый ник",
"Displayed on homepage and meta tags. Describe what Mobilizon is and what makes this instance special in a single paragraph.": "Отображается на главной странице и в метатегах. Опишите в одном абзаце, что такое Mobilizon и что делает этот узел особенным.",
"Do not receive any mail": "Не получать электронные письма",
"Do you wish to {create_event} or {explore_events}?": "Вы хотите {create_event} или {explore_events}?",
"Do you wish to {create_group} or {explore_groups}?": "Вы хотите {create_group} или {explore_groups}?",
"Domain": "Домен",
"Draft": "Черновик",
"Drafts": "Черновики",
"Due on": "Выполнить к",
"Duplicate": "Копировать",
"Edit": "Редактировать",
"Edit post": "Редактировать пост",
"Edited {ago}": "Изменено {ago}",
"Eg: Stockholm, Dance, Chess…": "Например: Москва, танцы, шахматы…",
"Either on the {instance} instance or on another instance.": "На узле {instance}, либо на другом.",
"Either the account is already validated, either the validation token is incorrect.": "Учетная запись уже подтверждена или токен проверки недействителен.",
"Either the email has already been changed, either the validation token is incorrect.": "Адрес электронной почты уже был изменен или токен проверки недействителен.",
"Either the participation request has already been validated, either the validation token is incorrect.": "Заявка на участие уже подтверждена или токен проверки недействителен.",
"Either the account is already validated, either the validation token is incorrect.": "Учетная запись уже активирована или проверочный токен недействителен.",
"Either the email has already been changed, either the validation token is incorrect.": "Адрес электронной почты уже был изменён или проверочный токен недействителен.",
"Either the participation request has already been validated, either the validation token is incorrect.": "Заявка на участие уже подтверждена или проверочный токен недействителен.",
"Email": "Электронная почта",
"Email address": "Адрес электронной почты",
"Email notifications": "Уведомления по электронной почте",
@ -150,9 +230,20 @@
"Ends on…": "Заканчивается в…",
"Enter the link URL": "Введите URL ссылки",
"Enter your email address below, and we'll email you instructions on how to change your password.": "Введите ниже свой адрес электронной почты, и мы пришлём вам инструкции по изменению пароля.",
"Enter your own privacy policy. HTML tags allowed. The {mobilizon_privacy_policy} is provided as template.": "Введите свою политику конфиденциальности. Вы можете использовать HTML-теги. {mobilizon_privacy_policy} используется в качестве шаблона.",
"Enter your own terms. HTML tags allowed. The {mobilizon_terms} are provided as template.": "Введите свои собственные условия. Вы можете использовать HTML-теги. {mobilizon_terms} используется в качестве шаблона.",
"Error": "Ошибка",
"Error details copied!": "Подробности об ошибке скопированы!",
"Error message": "Сообщение об ошибке",
"Error stacktrace": "Стектрейс ошибки",
"Error while changing email": "Произошла ошибка при изменении адреса электронной почты",
"Error while loading the preview": "Ошибка при загрузке превью",
"Error while login with {provider}. Retry or login another way.": "Не удалось войти через {provider}. Повторите попытку или войдите другим способом.",
"Error while login with {provider}. This login provider doesn't exist.": "Не удалось войти через {provider}. Такого провайдера аутентификации не существует.",
"Error while reporting group {groupTitle}": "Ошибка при отправке отчёта о группе {groupTitle}",
"Error while validating account": "Ошибка подтверждения учётной записи",
"Error while validating participation request": "Произошла ошибка при проверке заявки на участие",
"Ethical alternative to Facebook events, groups and pages, Mobilizon is a <b>tool designed to serve you</b>. Period.": "Mobilizon - это этичная альтернатива мероприятиям, группам и страницам Facebook. Это <b>инструмент, созданный для вас</b>. И точка.",
"Event": "Мероприятие",
"Event already passed": "Мероприятие уже прошло",
"Event cancelled": "Мероприятие отменено",
@ -164,33 +255,54 @@
"Event {eventTitle} deleted": "Мероприятие {eventTitle} удалено",
"Event {eventTitle} reported": "Жалоба на мероприятие {eventTitle} отправлена",
"Events": "Мероприятия",
"Events tagged with {tag}": "События с тегом {tag}",
"Everything": "Всё",
"Ex: mobilizon.fr": "Например: mobilizon.fr",
"Ex: someone@mobilizon.org": "Например: user@mobilizon.org",
"Explore": "Обзор",
"Explore events": "Обзор мероприятий",
"Failed to save admin settings": "Не удалось сохранить настройки администратора",
"Featured events": "Избранные мероприятия",
"Federated Group Name": "Имя федеративной группы",
"Federation": "Федерализация",
"Fetch more": "Загрузить больше",
"Find an address": "Найти адрес",
"Find an instance": "Найти узел",
"Find another instance": "Найти другой узел",
"Follower": "Подписчик",
"Followers": "Подписчики",
"Followers will receive new public events and posts.": "Подписчики будут оповещены о новых публичных мероприятиях и публикациях.",
"Followings": "Подписки",
"For instance: London": "Например: Москва",
"For instance: London, Taekwondo, Architecture…": "Например: Москва, йога, архитектура…",
"Forgot your password ?": "Забыли свой пароль?",
"Forgot your password?": "Забыли свой пароль?",
"From the {startDate} at {startTime} to the {endDate}": "От {startDate}, {startTime} до {endDate}",
"From the {startDate} at {startTime} to the {endDate} at {endTime}": "От {startDate}, {startTime} до {endDate}, {endTime}",
"From the {startDate} to the {endDate}": "От {startDate} до {endDate}",
"From yourself": "От себя",
"Gather ⋅ Organize ⋅ Mobilize": "Объединять ⋅ Организовывать ⋅ Мобилизовывать",
"General": "Общий",
"General": "Общая",
"General information": "Общая информация",
"Getting location": "Получить местоположение",
"Getting there": "Как туда добраться",
"Glossary": "Глоссарий",
"Go": "Идти",
"Go to the event page": "Перейти на страницу мероприятия",
"Group Followers": "Группа подписчиков",
"Group Members": "Участники группы",
"Group address": "Адрес группы",
"Group display name": "Отображаемое имя группы",
"Group name": "Название группы",
"Group settings": "Настройки группы",
"Group settings saved": "Настройки группы сохранены",
"Group short description": "Краткое описание группы",
"Group visibility": "Видимость группы",
"Group {displayName} created": "Группа {displayName} создана",
"Group {groupTitle} reported": "Жалоба на группу {groupTitle} отправлена",
"Groups": "Группы",
"Groups are not enabled on this instance.": "Группы не включены на этом узле.",
"Groups are spaces for coordination and preparation to better organize events and manage your community.": "Группы - это места для координации и подготовки, где вы занимаетесь организацией мероприятий и управлением своим сообществом.",
"Headline picture": "Заглавное изображение",
"Hide replies": "Скрыть ответы",
"Home": "Домашняя страница",
@ -204,38 +316,59 @@
"I participate": "Я участвую",
"I want to allow people to participate without an account.": "Я хочу разрешить участие людям без учетной записи.",
"I want to approve every participation request": "Я хочу одобрять каждую заявку на участие",
"ICS feed for events": "ICS лента для мероприятий",
"ICS/WebCal Feed": "ICS/WebCal лента",
"Identity {displayName} created": "Идентификатор {displayName} создан",
"Identity {displayName} deleted": "Идентификатор {displayName} удалён",
"Identity {displayName} updated": "Идентификатор {displayName} обновлён",
"If allowed by organizer": "Если разрешено организатором",
"If an account with this email exists, we just sent another confirmation email to {email}": "Если учетная запись с этим адресом электронной почты существует, мы отправим еще одно письмо с подтверждением на адрес {email}",
"If this identity is the only administrator of some groups, you need to delete them before being able to delete this identity.": "Если этот идентификатор является единственным администратором некоторых групп, то сперва нужно удалить эти группы, прежде чем вы сможете удалить этот идентификатор.",
"If you are being asked for your federated indentity, it's composed of your username and your instance. For instance, the federated identity for your first profile is:": "Если вас спрашивают ваш федеративный идентификатор, то он состоит из вашего имени пользователя и имени вашего узла. Например, федеративный идентификатор для вашего первого профиля:",
"If you have opted for manual validation of participants, Mobilizon will send you an email to inform you of new participations to be processed. You can choose the frequency of these notifications below.": "Если вы выбрали одобрение участников вручную, Mobilizon отправит вам электронное письмо о новых заявках на участие. Ниже вы можете выбрать, как часто вы желаете получать эти уведомления.",
"If you want, you may send a message to the event organizer here.": "Здесь вы можете отправить сообщение организатору мероприятия.",
"In the following context, an application is a software, either provided by the Mobilizon team or by a 3rd-party, used to interact with your instance.": "Приложение в этом контексте - это программное обеспечение, предоставленное командой Mobilizon или третьей стороной, которое используется для взаимодействия с вашим узлом.",
"Instance": "Узел",
"Instance Long Description": "Подробное описание узла",
"Instance Name": "Имя узла",
"Instance Privacy Policy": "Политика конфиденциальности узла",
"Instance Privacy Policy Source": "Источник политики конфиденциальности узла",
"Instance Privacy Policy URL": "URL-адрес политики конфиденциальности узла",
"Instance Rules": "Правила узла",
"Instance Short Description": "Краткое описание узла",
"Instance Slogan": "Слоган узла",
"Instance Terms": "Условия использования узла",
"Instance Terms Source": "Условия использования этого узла",
"Instance Terms URL": "URL условий использования узла",
"Instance administrator": "Администратор узла",
"Instance configuration": "Настройки узла",
"Instance languages": "Языки узла",
"Instance rules": "Правила узла",
"Instance settings": "Настройки узла",
"Instances": "Узлы",
"Instances following you": "Узлы, подписанные на вас",
"Instances you follow": "Узлы, на которые вы подписаны",
"Invite a new member": "Пригласить нового участника",
"Invite member": "Пригласить участника",
"Invited": "Приглашён",
"It is possible that the content is not accessible on this instance, because this instance has blocked the profiles or groups behind this content.": "Контент может быть недоступен на этом узле, потому что узел заблокировал профили или группы, которым этот контент принадлежит.",
"Italic": "Курсив",
"Join <b>{instance}</b>, a Mobilizon instance": "Присоединиться к <b>{instance}</b>, узлу Mobilizon",
"Join group": "Вступить в группу",
"Keep the entire conversation about a specific topic together on a single page.": "Храните всю беседу по определенной теме на одной странице.",
"Key words": "Ключевые слова",
"Language": "Язык",
"Last IP adress": "Последний IP-адрес",
"Last group created": "Последняя созданная группа",
"Last published event": "Последнее опубликованное мероприятие",
"Last published events": "Последние опубликованные мероприятия",
"Last sign-in": "Последний вход",
"Last week": "На прошлой неделе",
"Latest posts": "Последние записи",
"Learn more": "Узнать больше",
"Learn more about Mobilizon": "Узнать больше о Mobilizon",
"Learn more about {instance}": "Подробнее о {instance}",
"Leave": "Покинуть",
"Leave event": "Покинуть мероприятие",
"Leaving event \"{title}\"": "Покинуть мероприятие \"{title}\"",
"Legal": "Правовая информация",
@ -244,6 +377,8 @@
"Limited number of places": "Ограниченное количество мест",
"List title": "Заголовок списка",
"Load more": "Загрузить больше",
"Load more activities": "Загрузить больше действий",
"Loading comments…": "Загрузка комментариев…",
"Local": "Местный",
"Locality": "Местонахождение",
"Location": "Местонахождение",
@ -253,55 +388,83 @@
"Login on Mobilizon!": "Авторизуйтесь на Mobilizon!",
"Login on {instance}": "Войдите на узел {instance}",
"Login status": "Статус входа",
"Main languages you/your moderators speak": "Основные языки, на которых говорите вы/ваши модераторы",
"Manage participations": "Управление участниками",
"Manually approve new followers": "Одобрять новых подписчиков вручную",
"Manually invite new members": "Пригласите новых участников вручную",
"Mark as resolved": "Отметить как решённое",
"Member": "Участник",
"Members": "Участники",
"Message": "Сообщение",
"Mobilizon": "Mobilizon",
"Mobilizon is a federated network. You can interact with this event from a different server.": "Mobilizon - это федеративная сеть. Вы можете взаимодействовать с этим мероприятием с другого сервера.",
"Mobilizon is a federated software, meaning you can interact - depending on your admin's federation settings - with content from other instances, such as joining groups or events that were created elsewhere.": "Mobilizon - это федеративное программное обеспечение. Это означает, что в зависимости от настроек федерализации администратором, вы можете взаимодействовать с контентом на других узлах, например присоединяться к группам или мероприятиям, созданным в другом месте.",
"Mobilizon is a tool that helps you <b>find, create and organise events</b>.": "Mobilizon - это инструмент, который поможет вам <b>находить, создавать и организовывать мероприятия</b>.",
"Mobilizon is not a giant platform, but a <b>multitude of interconnected Mobilizon websites</b>.": "Mobilizon - это не огромная платформа, а <b>множество взаимосвязанных узлов Mobilizon</b>.",
"Mobilizon software": "Программное обеспечение Mobilizon",
"Mobilizon uses a system of profiles to compartiment your activities. You will be able to create as many profiles as you want.": "Mobilizon использует разные профили для разных видов деятельности. Вы можете создать столько профилей, сколько захотите.",
"Mobilizon version": "Версия Mobilizon",
"Mobilizon will send you an email when the events you are attending have important changes: date and time, address, confirmation or cancellation, etc.": "Mobilizon отправит вам электронное письмо, если в мероприятиях, в которых вы участвуете, произошли важные изменения: дата и время, адрес, подтверждение или отмена и т.д.",
"Moderated comments (shown after approval)": "Модерируемые комментарии (будут видны после одобрения)",
"Moderation": "На модерации",
"Moderation log": "Журнал модерации",
"Moderation": "Модерирование",
"Moderation log": "Журнал модерирования",
"Moderator": "Модератор",
"Move": "Переместить",
"Move \"{resourceName}\"": "Переместить \"{resourceName}\"",
"Move resource to {folder}": "Переместить ресурс в {folder}",
"My account": "Моя учётная запись",
"My events": "Мои мероприятия",
"My groups": "Мои группы",
"My identities": "Мои идентификаторы",
"NOTE! The default terms have not been checked over by a lawyer and thus are unlikely to provide full legal protection for all situations for an instance admin using them. They are also not specific to all countries and jurisdictions. If you are unsure, please check with a lawyer.": "ВНИМАНИЕ! Условия по умолчанию не были проверены юристом и, вероятно, не обеспечивают полную правовую защиту во всех ситуациях для администратора узла, использующего их. Они также не подходит для каждого государства и правовой системы. Если вы не уверены, проконсультируйтесь с юристом.",
"Name": "Имя",
"New discussion": "Новое обсуждение",
"New email": "Новый адрес электронной почты",
"New folder": "Новая папка",
"New link": "Новая ссылка",
"New members": "Новые участники",
"New note": "Новая заметка",
"New password": "Новый пароль",
"New post": "Новая публикация",
"New profile": "Новый профиль",
"Next": "Следующий",
"Next month": "В следующем месяце",
"Next page": "Следующая страница",
"Next week": "На следующей неделе",
"No address defined": "Адрес не указан",
"No closed reports yet": "Пока нет закрытых отчётов",
"No comment": "Нет комментариев",
"No comments yet": "Пока нет комментариев",
"No discussions yet": "Пока нет обсуждений",
"No end date": "Без даты окончания",
"No events found": "Мероприятий не найдено",
"No follower matches the filters": "Ни один подписчик не соответствует критериям",
"No group found": "Группа не найдена",
"No groups found": "Группы не найдены",
"No information": "Нет информации",
"No instance follows your instance yet.": "Ни один узел еще не подписан на ваш узел.",
"No instance to approve|Approve instance|Approve {number} instances": "Нет узлов для одобрения | Одобрить узел | Одобрить {number} узлов",
"No instance to reject|Reject instance|Reject {number} instances": "Нет узлов для отклонения | Отклонить узел | Отклонить {number} узлов",
"No instance to remove|Remove instance|Remove {number} instances": "Нет узлов для удаления | Удалить узел | Удалить {number} узлов",
"No languages found": "Язык не найден",
"No member matches the filters": "Ни один участник не соответствует критериям",
"No message": "Нет сообщений",
"No moderation logs yet": "Журналов модерации пока нет",
"No one is going to this event": "Никто не идёт на это мероприятие|Один человек пойдёт|{going} людей пойдут",
"No moderation logs yet": "Журналов модерования пока нет",
"No more activity to display.": "Больше нет действия для отображения.",
"No one is going to this event": "Пока никто не участвует|Один человек пойдёт|{going} людей пойдут",
"No open reports yet": "Пока нет открытых отчётов",
"No participant matches the filters": "Ни один участник не соответствует критериям",
"No participant to approve|Approve participant|Approve {number} participants": "Нет участников для одобрения | Принять участника | Принять {number} участников",
"No participant to reject|Reject participant|Reject {number} participants": "Нет участников для отклонения | Отклонить участника | Отклонить {number} участников",
"No posts found": "Публикаций не найдено",
"No posts yet": "Публикаций пока нет",
"No profile matches the filters": "Ни один профиль не соответствует критериям",
"No profiles found": "Профили не найдены",
"No public upcoming events": "Нет предстоящих публичных мероприятий",
"No resolved reports yet": "Решённых отчётов пока нет",
"No resources in this folder": "В этой папке нет ресурсов",
"No resources selected": "Ресурсы не выбраны|Выбран один ресурс|Выбрано {count} ресурсов",
"No resources yet": "Ресурсов пока нет",
"No results for \"{queryText}\"": "Нет результатов по запросу \"{queryText}\"",
"No rules defined yet.": "Правила еще не определены.",
"None": "Никто",
@ -311,7 +474,9 @@
"Nothing to see here": "Здесь ничего нет",
"Notification before the event": "Уведомление перед мероприятием",
"Notification on the day of the event": "Уведомление в день мероприятия",
"Notifications": "Уведомления",
"Notifications for manually approved participations to an event": "Уведомления об участиях в мероприятиях, одобренных вручную",
"Now, create your first profile:": "Теперь создайте свой первый профиль:",
"Number of places": "Количество мест",
"OK": "OK",
"Old password": "Прежний пароль",
@ -319,12 +484,20 @@
"On {date} ending at {endTime}": "{date}, заканчивается в {endTime}",
"On {date} from {startTime} to {endTime}": "{date} c {startTime} до {endTime}",
"On {date} starting at {startTime}": "{date}, начало в {startTime}",
"On {instance}": "На {instance}",
"Only accessible through link": "Доступно только по ссылке",
"Only accessible through link (private)": "Доступно только по ссылке (приватно)",
"Only accessible to members of the group": "Доступно только участникам группы",
"Only alphanumeric lowercased characters and underscores are supported.": "Допустимы только буквенно-цифровые символы нижнего регистра и подчеркивания.",
"Open": "Открыть",
"Only group members can access discussions": "Только участники группы имеют доступ к обсуждениям",
"Only group moderators can create, edit and delete posts.": "Только модераторы группы могут создавать, редактировать и удалять публикации.",
"Open": "Открыто",
"Open a topic on our forum": "Откройте тему на нашем форуме",
"Open an issue on our bug tracker (advanced users)": "Сообщить о проблеме в нашем багтрекере (для опытных пользователей)",
"Opened reports": "Открытые отчёты",
"Or": "Или",
"Organized": "Организованно",
"Organized by": "Организатор",
"Organized by {name}": "Организатор: {name}",
"Organizer": "Организатор",
"Organizer notifications": "Уведомления организатора",
@ -335,6 +508,7 @@
"Otherwise this identity will just be removed from the group administrators.": "В противном случае этот идентификатор будет удалён у администраторов группы.",
"Page": "Страница",
"Page limited to my group (asks for auth)": "Страница предназначена только для моей группы (требуется авторизация)",
"Parent folder": "Родительская папка",
"Participant": "Участник",
"Participants": "Участники",
"Participate": "Принять участие",
@ -349,24 +523,36 @@
"Password reset": "Сброс пароля",
"Past events": "Прошедшие мероприятия",
"Pending": "В ожидании",
"Personal feeds": "Личные ленты",
"Pick": "Выбрать",
"Pick a group": "Выберите группу",
"Pick a profile or a group": "Выберите профиль или группу",
"Pick an identity": "Выберите идентификатор",
"Pick an instance": "Выберите узел",
"Please add as many details as possible to help identify the problem.": "Сообщите нам как можно больше подробностей, чтобы мы смогли идентифицировать проблему.",
"Please check your spam folder if you didn't receive the email.": "Если вы не получили письмо, проверьте папку со спамом.",
"Please contact this instance's Mobilizon admin if you think this is a mistake.": "Если вы считаете, что произошла ошибка, обратитесь к администратору этого узла.",
"Please do not use it in any real way.": "Пожалуйста, используйте это только для тестовых целей.",
"Please enter your password to confirm this action.": "Введите свой пароль, чтобы подтвердить это действие.",
"Please make sure the address is correct and that the page hasn't been moved.": "Убедитесь, что адрес правильный и страница не была перемещена.",
"Please read the {fullRules} published by {instance}'s administrators.": "Пожалуйста, прочтите {fullRules}, опубликованные администраторами {instance}.",
"Post": "Публикация",
"Post a comment": "Оставить комментарий",
"Post a reply": "Ответить",
"Postal Code": "Почтовый индекс",
"Posts": "Публикации",
"Powered by {mobilizon}. © 2018 - {date} The Mobilizon Contributors - Made with the financial support of {contributors}.": "На основе {mobilizon}. © 2018 - {date} Участники Mobilizon - Создан благодаря финансовой поддержке {contributors}.",
"Preferences": "Предпочтения",
"Preferences": "Персональные настройки",
"Previous": "Предыдущий",
"Previous page": "Предыдущая страница",
"Privacy Policy": "Политика конфиденциальности",
"Privacy policy": "Политика конфиденциальности",
"Private event": "Приватное мероприятие",
"Private feeds": "Приватная лента",
"Profile feeds": "Ленты профиля",
"Profiles": "Профили",
"Profiles and federation": "Профили и федерализация",
"Promote": "Поднять",
"Public": "Публичный",
"Public RSS/Atom Feed": "Публичная RSS/Atom новостная лента",
"Public comment moderation": "Модерация публичных комментариев",
@ -374,36 +560,53 @@
"Public feeds": "Публичные ленты",
"Public iCal Feed": "Публичная iCal-лента",
"Public page": "Публичная страница",
"Publication date": "Дата публикации",
"Publish": "Опубликовать",
"Published events with <b>{comments}</b> comments and <b>{participations}</b> confirmed participations": "Опубликованные мероприятия с <b>{comments}</b> комментариями и <b>{participations}</b> подтвержденными участниками",
"RSS/Atom Feed": "RSS/Atom новостная лента",
"Radius": "Радиус",
"Recap every week": "Подводить итоги каждую неделю",
"Receive one email per request": "Получать электронное письмо на каждый запрос",
"Redirecting to content…": "Перенаправление к содержимому…",
"Refresh profile": "Обновить профиль",
"Regenerate new links": "Восстановить новые ссылки",
"Region": "Область",
"Register an account on {instanceName}!": "Зарегистрируйте аккаунт на {instanceName}!",
"Register on this instance": "Зарегистрируйтесь на этом узле",
"Registration is allowed, anyone can register.": "Регистрация разрешена, зарегистрироваться может любой желающий.",
"Registration is closed.": "Регистрация закрыта.",
"Registration is currently closed.": "Регистрация на данный момент закрыта.",
"Registrations": "Регистрации",
"Registrations": "Регистрация",
"Registrations are restricted by allowlisting.": "Регистрация ограничена белым списком.",
"Reject": "Отклонить",
"Rejected": "Отклонено",
"Remember my participation in this browser": "Запомнить моё участие для этого браузера",
"Remove": "Удалить",
"Rename": "Переименовать",
"Rename resource": "Переименовать ресурс",
"Reopen": "Открыть заново",
"Reply": "Ответ",
"Report": "Отчёт",
"Report": "Жалоба",
"Report #{reportNumber}": "Отчёт #{reportNumber}",
"Report this comment": "Пожаловаться на этот комментарий",
"Report this event": "Пожаловаться на это мероприятие",
"Report this group": "Пожаловаться на эту группу",
"Reported": "Уведомлено",
"Reported by": "Сообщил",
"Reported by someone on {domain}": "Об этом сообщил пользователь из {domain}",
"Reported by {reporter}": "Сообщил {reporter}",
"Reported group": "Жалоба на группу",
"Reported identity": "Идентификатор сообщившего",
"Reports": "Отчеты",
"Request for participation confirmation sent": "Запрос на подтверждение участия отправлен",
"Resend confirmation email": "Отправить письмо с подтверждением ещё раз",
"Reset my password": "Сбросить пароль",
"Resolved": "Решено",
"Resource provided is not an URL": "Указанный ресурс не является URL-адресом",
"Resources": "Ресурсы",
"Restricted": "Ограниченный",
"Return to the group page": "Вернуться на страницу группы",
"Right now": "Прямо сейчас",
"Role": "Роль",
"Rules": "Правила",
"SSL and it's successor TLS are encryption technologies to secure data communications when using the service. You can recognize an encrypted connection in your browser's address line when the URL begins with {https} and the lock icon is displayed in your browser's address bar.": "SSL и его преемник TLS - это технологии шифрования для защиты передачи данных при использовании сервиса. Вы можете увидеть в браузере, что соединение зашифровано, если адрес начинается с {https}, а в адресной строке есть значок замка.",
@ -413,8 +616,11 @@
"Search": "Поиск",
"Search events, groups, etc.": "Искать мероприятия, группы и т. п.",
"Searching…": "Поиск…",
"Search…": "Поиск…",
"Select a language": "Выберите язык",
"Select a radius": "Выберите радиус",
"Select a timezone": "Выберите часовой пояс",
"Select languages": "Выберите языки",
"Send email": "Отправить электронное письмо",
"Send the confirmation email again": "Отправьте письмо с подтверждением еще раз",
"Send the report": "Отправить отчёт",
@ -422,19 +628,25 @@
"Set an URL to a page with your own terms.": "Установите URL-адрес на страницу с вашими собственными условиями.",
"Settings": "Настройки",
"Share this event": "Поделиться этим мероприятием",
"Short bio": "Коротко о себе",
"Show map": "Показать карту",
"Show remaining number of places": "Показать оставшееся количество мест",
"Show the time when the event begins": "Показать время начала мероприятия",
"Show the time when the event ends": "Показать время окончания мероприятия",
"Sign in with": "Войти в систему с",
"Sign up": "Зарегистрироваться",
"Since you are a new member, private content can take a few minutes to appear.": "Поскольку вы новый участник, может потребоваться несколько минут, чтобы приватный контент стал видимым.",
"Some terms, technical or otherwise, used in the text below may cover concepts that are difficult to grasp. We have provided a glossary here to help you understand them better:": "Некоторые термины, технические или иные, используемые в приведенном ниже тексте, могут охватывать трудные для понимания концепции. Мы подготовили глоссарий чтобы помочь вам лучше их освоить:",
"Starts on…": "Начало…",
"Status": "Статус",
"Street": "Улица",
"Submit": "Отправить",
"Suspend": "Приостановить",
"Suspend": "Заблокировать",
"Suspend group": "Заблокировать группу",
"Suspended": "Приостановлен",
"Task lists": "Списки задач",
"Technical details": "Технические подробности",
"Tentative": "Предварительный",
"Tentative: Will be confirmed later": "Предварительно: будет подтверждено позже",
"Terms": "Условия",
"Terms of service": "Условия обслуживания",
@ -451,23 +663,60 @@
"The event organizer didn't add any description.": "Организатор мероприятия не добавил описания.",
"The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "Организатор мероприятия утверждает участие вручную. Поскольку вы выбрали участие без учётной записи, объясните, почему вы хотите участвовать в этом мероприятии.",
"The event title will be ellipsed.": "Название этого мероприятие сокращено троеточием.",
"The event will show as attributed to this group.": "Событие будет отображаться как связанное с этой группой.",
"The event will show as attributed to this profile.": "Мероприятие будет отображаться как связанное с этим профилем.",
"The event will show as attributed to your personal profile.": "Мероприятие будет отображаться как связанное с вашим личным профилем.",
"The event will show the group as organizer.": "На мероприятии группа будет представлена как организатор.",
"The event {event} was created by {profile}.": "Мероприятие {event} было создано пользователем {profile}.",
"The event {event} was deleted by {profile}.": "Мероприятие {event} было удалено пользователем {profile}.",
"The event {event} was updated by {profile}.": "Мероприятие {event} было обновлено пользователем {profile}.",
"The events you created are not shown here.": "Созданные вами мероприятия здесь не отображаются.",
"The group can now be joined by anyone.": "Теперь каждый может присоединиться к группе.",
"The group can now only be joined with an invite.": "Теперь к группе можно присоединиться только по приглашению.",
"The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Группа будет представлена в результатах поиска и может быть предложена в разделе «Обзор». На её странице будет отображаться только общедоступная информация.",
"The group's avatar was changed.": "Аватар группы был изменён.",
"The group's banner was changed.": "Баннер группы был изменён.",
"The group's physical address was changed.": "Физический адрес группы был изменён.",
"The group's short description was changed.": "Краткое описание группы было изменено.",
"The instance administrator is the person or entity that runs this Mobilizon instance.": "Администратор узла - это физическое или юридическое лицо, которое управляет данным узлом Mobilizon.",
"The member was removed from the group {group}": "Участник удалён из группы {group}",
"The only way for your group to get new members is if an admininistrator invites them.": "Новые участники смогут вступать в вашу группу только по приглашению администратора.",
"The organiser has chosen to close comments.": "Организатор решил отключить комментарии.",
"The page you're looking for doesn't exist.": "Страницы, которую вы ищете, не существует.",
"The password was successfully changed": "Пароль был успешно изменен",
"The post {post} was created by {profile}.": "Публикация {post} была создана пользователем {profile}.",
"The post {post} was deleted by {profile}.": "Публикация {post} была удалена пользователем {profile}.",
"The post {post} was updated by {profile}.": "Публикация {post} была обновлена пользователем {profile}.",
"The report will be sent to the moderators of your instance. You can explain why you report this content below.": "Отчёт будет отправлен модераторам вашего узла. Вы можете объяснить причину своей жалобы ниже.",
"The selected picture is too heavy. You need to select a file smaller than {size}.": "Выбранное изображение слишком большое. Вы должны выбрать файл меньше, чем {size}.",
"The technical details of the error can help developers solve the problem more easily. Please add them to your feedback.": "Технические подробности ошибки могут помочь разработчикам быстрее решить проблему. Пожалуйста, добавьте их в свой отзыв.",
"The {default_privacy_policy} will be used. They will be translated in the user's language.": "Будет использоваться {default_privacy_policy}. Они будут переведены на язык пользователя.",
"The {default_terms} will be used. They will be translated in the user's language.": "Будут использоваться {default_terms}. Они будут переведены на язык пользователя.",
"There are {participants} participants.": "Имеется {participants} участников.",
"There is no activity yet. Start doing some things to see activity appear here.": "Пока нет действий. Действия появятся здесь, после того, как вы сделаете что-либо.",
"There will be no way to recover your data.": "Восстановить ваши данные будет невозможно.",
"There's no discussions yet": "Пока нет обсуждений",
"These events may interest you": "Эти мероприятия могут вас заинтересовать",
"These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Эти ленты содержат данные о мероприятиях, участником или создателем которых является любой из ваших профилей. Вы должны держать их в секрете. Вы можете найти ленты для конкретного профиля на его странице с настройками.",
"These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Эти ленты содержат данные о мероприятиях, участником или создателем которых является данный профиль. Вы должны держать их в секрете. Вы можете найти ленты для всех ваших профилей в настройках уведомлений.",
"This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "Этот узел Mobilizon и этот организатор мероприятия допускают анонимное участие, но требуют подтверждения по электронной почте.",
"This URL is not supported": "Этот URL не поддерживается",
"This event has been cancelled.": "Это мероприятие было отменено.",
"This event is accessible only through it's link. Be careful where you post this link.": "Это мероприятие доступно только по ссылке. Будьте осторожны, когда публикуете её.",
"This group doesn't have a description yet.": "У этой группы ещё нет описания.",
"This group is invite-only": "Эта группа только для приглашённых",
"This identifier is unique to your profile. It allows others to find you.": "Этот идентификатор уникален для вашего профиля. Он даёт возможность другим найти вас.",
"This identity is not a member of any group.": "Этот идентификатор не является членом какой-либо группы.",
"This information is saved only on your computer. Click for details": "Эта информация сохраняется только на вашем компьютере. Нажмите, чтобы узнать подробности",
"This instance isn't opened to registrations, but you can register on other instances.": "Этот узел не позволяет регистрироваться, но вы можете зарегистрироваться на других.",
"This instance, <b>{instanceName} ({domain})</b>, hosts your profile, so remember its name.": "Этот узел, <b>{instanceName} ({domain})</b>, содержит ваш профиль, поэтому запомните его имя.",
"This is a demonstration site to test Mobilizon.": "Это демонстрационная площадка для тестирования Mobilizon.",
"This is like your federated username (<code>{username}</code>) for groups. It will allow the group to be found on the federation, and is guaranteed to be unique.": "Подобно федеративному имени пользователя (<code>{username}</code>) для групп. Это дает возможность найти группу во всей сети и гарантирует ее уникальность.",
"This month": "В этом месяце",
"This setting will be used to display the website and send you emails in the correct language.": "Этот параметр используется для отображения веб-сайта и отправки вам электронных писем на соответствующем языке.",
"This website isn't moderated and the data that you enter will be automatically destroyed every day at 00:01 (Paris timezone).": "Эта веб-сайт не модерируется, и любые введенные вами данные будут автоматически удаляться каждый день в 00:01 (время по Парижу).",
"This week": "На этой неделе",
"This weekend": "На эти выходные",
"This will delete / anonymize all content (events, comments, messages, participations…) created from this identity.": "Это приведет к удалению / анонимизации всего контента (событий, комментариев, сообщений, участия…), созданного с помощью этого идентификатора.",
"Timezone": "Часовой пояс",
"Timezone detected as {timezone}.": "Часовой пояс определен как {timezone}.",
@ -475,36 +724,65 @@
"To activate more notifications, head over to the notification settings.": "Перейдите в настройки уведомлений, чтобы включить дополнительные уведомления.",
"To confirm, type your event title \"{eventTitle}\"": "Для подтверждения введите название мероприятия \"{eventTitle}\"",
"To confirm, type your identity username \"{preferredUsername}\"": "Для подтверждения введите имя пользователя \"{preferredUsername}\" идентификатора",
"To create and manage multiples identities from a same account": "Для создания и управления несколькими идентификаторами из одной учётной записи",
"To create and manage your events": "Для создания и управления вашими мероприятиями",
"To create or join an group and start organizing with other people": "Создавать группы и присоединяться к ним для объединения с другими людьми",
"To register for an event by choosing one of your identities": "Чтобы зарегистрироваться на мероприятие, выбрав один из ваших идентификаторов",
"Today": "Сегодня",
"Tomorrow": "Завтра",
"Transfer to {outsideDomain}": "Перенос в {outsideDomain}",
"Type": "Тип",
"Type or select a date…": "Введите или выберите дату…",
"URL": "URL-адрес",
"URL copied to clipboard": "URL скопирован в буфер обмена",
"Unable to copy to clipboard": "Невозможно скопировать в буфер обмена",
"Unable to create the group. One of the pictures may be too heavy.": "Группа не может быть создана. Одно из изображений, похоже, слишком большое.",
"Unable to create the profile. The avatar picture may be too heavy.": "Профиль не может быть создан. Аватарка, похоже, слишком большая..",
"Unable to detect timezone.": "Не удалось определить часовой пояс.",
"Unable to load event for participation. The error details are provided below:": "Не удалось загрузить мероприятие для участия. Подробная информация об ошибке представлена ниже:",
"Unable to save your participation in this browser.": "Невозможно сохранить статус вашего участия в этом браузере.",
"Unable to update the profile. The avatar picture may be too heavy.": "Профиль не может быть обновлен. Аватарка, похоже, слишком большая.",
"Unfortunately, this instance isn't opened to registrations": "К сожалению, регистрация на этом узле закрыта",
"Unfortunately, your participation request was rejected by the organizers.": "К сожалению, ваша заявка на участие была отклонена организаторами.",
"Unknown": "Неизвестный",
"Unknown actor": "Неизвестный агент",
"Unknown error.": "Неизвестная ошибка.",
"Unknown value for the openness setting.": "Неизвестное значение ограничений доступа.",
"Unsaved changes": "Несохранённые изменения",
"Unset group": "Отменить выбор группы",
"Unsuspend": "Отменить приостановку",
"Upcoming": "Предстоящие",
"Upcoming events": "Предстоящие мероприятия",
"Update": "Обновить",
"Update event {name}": "Обновить мероприятие {name}",
"Update group": "Обновить группу",
"Update my event": "Обновить моё мероприятие",
"Update post": "Обновить пост",
"Updated": "Обновлено",
"Uploaded media size": "Размер загруженного медиафайла",
"Use my location": "Использовать моё местоположение",
"User": "Пользователь",
"Username": "Имя пользователя",
"Users": "Пользователи",
"View a reply": "|Посмотреть один ответ|Посмотреть {totalReplies} ответов",
"View all": "Посмотреть всё",
"View all events": "Посмотреть все мероприятия",
"View all posts": "Просмотреть все публикации",
"View event page": "Просмотреть страницу мероприятия",
"View everything": "Посмотреть всё",
"View page on {hostname} (in a new window)": "Просмотреть страницу на {hostname} (в новом окне)",
"Visibility was set to an unknown value.": "Видимость изменена на неизвестное значение.",
"Visibility was set to private.": "Видимость изменена на приватную.",
"Visibility was set to public.": "Видимость изменена на публичную.",
"Visible everywhere on the web": "Видно всем в Интернете",
"Visible everywhere on the web (public)": "Видно во всем Интернете (публично)",
"Waiting for organization team approval.": "Ожидает одобрения организаторами.",
"Warning": "Предупреждение",
"We improve this software thanks to your feedback. To let us know about this issue, two possibilities (both unfortunately require user account creation):": "Мы улучшаем это программное обеспечение благодаря вашим отзывам. У вас есть два способа сообщить нам об этой проблеме (оба, увы, требуют создания учетной записи пользователя):",
"We just sent an email to {email}": "Мы отправили электронное письмо на адрес {email}",
"We use your timezone to make sure you get notifications for an event at the correct time.": "Мы используем настройки вашего часового пояса, чтобы вы своевременно получали уведомления о мероприятиях.",
"We will redirect you to your instance in order to interact with this event": "Вы будете перенаправлены на свой узел, чтобы иметь возможность взаимодействовать с этим событием",
"We will redirect you to your instance in order to interact with this group": "Мы перенаправим вас на ваш узел, чтобы вы могли взаимодействовать с этой группой",
"We'll send you an email one hour before the event begins, to be sure you won't forget about it.": "Мы отправим вам электронное письмо за час до начала мероприятия, чтобы вы не забыли про него.",
"We'll use your timezone settings to send a recap of the morning of the event.": "Мы используем настройки вашего часового пояса, чтобы утром отправить вам напоминание о мероприятии.",
"Website": "Веб-сайт",
@ -512,32 +790,97 @@
"Welcome back {username}!": "С возвращением, {username}!",
"Welcome back!": "С возвращением!",
"Welcome to Mobilizon, {username}!": "Добро пожаловать в Mobilizon, {username}!",
"What can I do to help?": "Чем я могу помочь?",
"When a moderator from the group creates an event and attributes it to the group, it will show up here.": "Когда модератор группы создаёт событие и назначает его группе, оно появляется здесь.",
"Who can view this event and participate": "Кто может просматривать и участвовать в мероприятии",
"Who can view this post": "Кто может видеть этот пост",
"Who published {number} events": "Которые опубликовали {number} мероприятий",
"Why create an account?": "Почему стоит создать учётную запись?",
"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.": "Это позволит вам просматривать и управлять своим статусом участия на странице мероприятия при использовании этого устройства. Снимите флажок, если вы используете общедоступное устройство.",
"Within {number} kilometers of {place}": "|В пределах километра от {place}|В пределах {number} километров от {place}",
"Write something…": "Напиши что-нибудь…",
"Yesterday": "Вчера",
"You accepted the invitation to join the group.": "Вы приняли приглашение присоединиться к группе.",
"You added the member {member}.": "Вы добавили участника {member}.",
"You archived the discussion {discussion}.": "Вы отправили {discussion} обсуждение в архив.",
"You are not an administrator for this group.": "Вы не являетесь администратором этой группы.",
"You are not part of any group.": "Вы не состоите ни в одной группе.",
"You are participating in this event anonymously": "Вы участвуете в этом мероприятии анонимно",
"You are participating in this event anonymously but didn't confirm participation": "Вы участвуете в этом мероприятии анонимно, но не подтвердили свое участие",
"You can add tags by hitting the Enter key or by adding a comma": "Вы можете добавлять тэги, нажимая клавишу Enter или разделяя слова запятой",
"You can pick your timezone into your preferences.": "Вы можете изменить часовой пояс по своему усмотрению.",
"You can try another search term or drag and drop the marker on the map": "Вы можете попробовать другие критерии поиска или перетащить маркер на карту",
"You can't change your password because you are registered through {provider}.": "Вы не можете изменить свой пароль, потому что вы зарегистрированы через {provider}.",
"You created the discussion {discussion}.": "Вы создали обсуждение {discussion}.",
"You created the event {event}.": "Вы создали мероприятие {event}.",
"You created the folder {resource}.": "Вы создали папку {resource}.",
"You created the group {group}.": "Вы создали группу {group}.",
"You created the post {post}.": "Вы создали публикацию {post}.",
"You created the resource {resource}.": "Вы создали ресурс {resource}.",
"You deleted the discussion {discussion}.": "Вы удалили обсуждение {discussion}.",
"You deleted the event {event}.": "Вы удалили мероприятие {event}.",
"You deleted the folder {resource}.": "Вы удалили папку {resource}.",
"You deleted the post {post}.": "Вы удалили публикацию {post}.",
"You deleted the resource {resource}.": "Вы удалили ресурс {resource}.",
"You demoted the member {member} to an unknown role.": "Вы понизили статус {member} до неизвестной роли.",
"You demoted {member} to moderator.": "Вы понизили статус {member} до модератора.",
"You demoted {member} to simple member.": "Вы понизили статус {member} до обычного участника.",
"You didn't create or join any event yet.": "Вы ещё не создали и не участвовали ни в одном мероприятии.",
"You don't follow any instances yet.": "Вы пока не подписаны ни на один узел.",
"You excluded member {member}.": "Вы исключили участника {member}.",
"You have been disconnected": "Вы были отключены",
"You have been invited by {invitedBy} to the following group:": "Вы были приглашены пользователем {invitedBy} в следующую группу:",
"You have been removed from this group's members.": "Вы были удалены из участников этой группы.",
"You have cancelled your participation": "Вы отказались от участия",
"You have one event in {days} days.": "У вас нет мероприятий в течение {days} дней | У вас одно мероприятие в течении {days} дней | У вас {count} мероприятий в течении {days} дней",
"You have one event today.": "У вас сегодня нет мероприятий | У вас сегодня одно мероприятие. | У вас сегодня {count} мероприятий",
"You have one event tomorrow.": "Завтра у вас нет мероприятий | Завтра у вас одно мероприятие. | Завтра у вас {count} мероприятий",
"You invited {member}.": "Вы пригласили {member}.",
"You may clear all participation information for this device with the buttons below.": "Вы можете удалить всю информацию об участии для этого устройства с помощью кнопок ниже.",
"You may now close this window, or {return_to_event}.": "Теперь вы можете закрыть это окно, или {return_to_event}.",
"You may show some members as contacts.": "Вы можете просматривать некоторых участников как контакты.",
"You moved the folder {resource} into {new_path}.": "Вы переместили папку {resource} в {new_path}.",
"You moved the folder {resource} to the root folder.": "Вы переместили папку {resource} в корневую папку.",
"You moved the resource {resource} into {new_path}.": "Вы переместили ресурс {resource} в {new_path}.",
"You moved the resource {resource} to the root folder.": "Вы переместили ресурс {resource} в корневую папку.",
"You need to create the group before you create an event.": "Перед созданием мероприятия вам необходимо создать группу.",
"You need to login.": "Вы должны авторизоваться.",
"You posted a comment on the event {event}.": "Вы оставили комментарий к мероприятию {event}.",
"You promoted the member {member} to an unknown role.": "Вы повысили статус {member} до неизвестной роли.",
"You promoted {member} to administrator.": "Вы повысили статус {member} до администратора.",
"You promoted {member} to moderator.": "Вы повысили статус {member} до модератора.",
"You renamed the discussion from {old_discussion} to {discussion}.": "Вы переименовали обсуждение с {old_discussion} в {discussion}.",
"You renamed the folder from {old_resource_title} to {resource}.": "Вы переименовали папку с {old_resource_title} в {resource}.",
"You renamed the resource from {old_resource_title} to {resource}.": "Вы переименовали ресурс с {old_resource_title} в {resource}.",
"You replied to a comment on the event {event}.": "Вы ответили на комментарий к мероприятию {event}.",
"You replied to the discussion {discussion}.": "Вы ответили на обсуждение {discussion}.",
"You requested to join the group.": "Вы попросили присоединиться к группе.",
"You updated the event {event}.": "Вы обновили мероприятие {event}.",
"You updated the group {group}.": "Вы обновили группу {group}.",
"You updated the member {member}.": "Вы обновили участника {member}.",
"You updated the post {post}.": "Вы обновили публикацию {post}.",
"You were demoted to an unknown role by {profile}.": "{profile} понизил ваш статус до неизвестной роли.",
"You were demoted to moderator by {profile}.": "{profile} понизил ваш статус до модератора.",
"You were demoted to simple member by {profile}.": "{profile} понизил ваш статус до обычного участника.",
"You were promoted to administrator by {profile}.": "{profile} повысил ваш статус до администратора.",
"You were promoted to an unknown role by {profile}.": "{profile} повысил ваш статус до неизвестной роли.",
"You were promoted to moderator by {profile}.": "{profile} повысил ваш статус до модератора.",
"You will be able to add an avatar and set other options in your account settings.": "Вы сможете добавить аватар и изменить другие параметры в настройках своей учётной записи.",
"You will be redirected to the original instance": "Вы будете перенаправлены на исходный узел",
"You will find here all the events you have created or of which you are a participant.": "Здесь вы найдёте все мероприятия, которые вы создали или в которых участвовали.",
"You wish to participate to the following event": "Вы хотите принять участие в следующем мероприятии",
"You'll get a weekly recap every Monday for upcoming events, if you have any.": "Каждый понедельник вы будете получать сводку о предстоящих мероприятиях, в которых вы принимаете участие.",
"You'll need to change the URLs where there were previously entered.": "Вы должны изменить URL-адреса там, где они были введены ранее.",
"You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Вы должны предоставить URL-адрес группы, чтобы другие могли получить доступ к её профилю. Группу нельзя будет найти ни в поиске Mobilizon, ни в обычных поисковых системах.",
"You'll receive a confirmation email.": "Вы получите электронное письмо с подтверждением.",
"Your account has been successfully deleted": "Ваша учетная запись была успешно удалена",
"Your account has been validated": "Ваша учетная запись была подтверждена",
"Your account is being validated": "Ваша учетная запись проверяется",
"Your account is nearly ready, {username}": "Ваш аккаунт почти готов, {username}",
"Your current email is {email}. You use it to log in.": "Ваш текущий адрес электронной почты{email}. Вы используете его для входа в систему.",
"Your city or region and the radius will only be used to suggest you events nearby. The event radius will consider the administrative center of the area.": "Ваш город, регион или область будут использоваться только для рекомендации вам ближайших мероприятий. Радиус мероприятия считается относительно административного центра области.",
"Your current email is {email}. You use it to log in.": "Ваш адрес электронной почты {email}. Вы используете его для входа в систему.",
"Your email": "Ваш адрес электронной почты",
"Your email address was automatically set based on your {provider} account.": "Ваш адрес электронной почты был автоматически установлен на основе вашей учётной записи {provider}.",
"Your email has been changed": "Ваш адрес электронной почты был изменен",
"Your email is being changed": "Ваш адрес электронной почты меняется",
"Your email will only be used to confirm that you're a real person and send you eventual updates for this event. It will NOT be transmitted to other instances or to the event organizer.": "Ваш адрес электронной почты будет использоваться только для подтверждения того, что вы настоящий человек, и для отправки вам возможных новостей об этом мероприятии. Он НЕ будет передан другим узлам или организатору мероприятия.",
@ -548,28 +891,53 @@
"Your participation request has been validated": "Ваше участие подтверждено",
"Your participation request is being validated": "Ваше участие проверяется",
"Your participation status has been changed": "Ваш статус участия был изменен",
"Your participation status is saved only on this device and will be deleted one month after the event's passed.": "Ваш статус участия сохраняется только на этом устройстве и будет удалён через месяц после завершения мероприятия.",
"Your participation still has to be approved by the organisers.": "Ваша заявка всё ещё ожидает одобрения организаторов.",
"Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "Ваше участие будет подтверждено, когда вы перейдете по ссылке в электронном письме, а также после того, как организатор вручную одобрит ваше участие.",
"Your participation will be validated once you click the confirmation link into the email.": "Ваше участие будет подтверждено, как только вы перейдете по ссылке в электронном письме.",
"Your profile will be shown as contact.": "Ваш профиль будет отображаться как контакт.",
"Your timezone is currently set to {timezone}.": "Ваш часовой пояс в настоящее время установлен на {timezone}.",
"Your timezone was detected as {timezone}.": "Ваш часовой пояс был определен как {timezone}.",
"Your timezone {timezone} isn't supported.": "Ваш часовой пояс {timezone} не поддерживается.",
"Your upcoming events": "Ваши предстоящие мероприятия",
"[This comment has been deleted by it's author]": "[Этот комментарий был удален автором]",
"[This comment has been deleted]": "[Этот комментарий был удалён]",
"[deleted]": "[удалено]",
"a non-existent report": "несуществующий отчет",
"and {number} groups": "и {number} групп",
"any distance": "любое расстояние",
"as {identity}": "как {identity}",
"contact uninformed": "контакт не уведомлен",
"create a group": "создать группу",
"create an event": "создать мероприятие",
"default Mobilizon privacy policy": "Политика конфиденциальности Mobilizon по умолчанию",
"default Mobilizon terms": "условия использования Mobilizon по умолчанию",
"e.g. 10 Rue Jangot": "например: Садовая 10",
"explore the events": "просмотреть мероприятия",
"explore the groups": "посмотреть группы",
"full rules": "полные правила",
"iCal Feed": "iCal лента",
"instance rules": "правила узла",
"more than 1360 contributors": "более 1360 участников",
"profile@instance": "профиль@узел",
"report #{report_number}": "отчёт #{report_number}",
"return to the event's page": "вернуться на страницу мероприятия",
"terms of service": "условия обслуживания",
"with another identity…": "с другим идентификатором…",
"{approved} / {total} seats": "{approved} / {total} мест",
"{available}/{capacity} available places": "Мест нет|{available}/{capacity} свободных мест",
"{count} km": "{count} км",
"{count} participants": "Нет участников | Один участник | {count} участников",
"{count} requests waiting": "{count} ожидающих рассмотрения заявок",
"{count} team members": "{count} членов команды",
"{group} activity timeline": "История активности {group}",
"{group}'s events": "Мероприятия {group}",
"{instanceName} is an instance of the {mobilizon} software.": "{instanceName} - это узел использующий ПО {mobilizon}.",
"{instanceName} is an instance of {mobilizon_link}, a free software built with the community.": "{instanceName} — это узел {mobilizon_link}, бесплатного программного обеспечения, созданного при участии сообщества.",
"{member} accepted the invitation to join the group.": "{member} принял приглашение присоединиться к группе.",
"{member} rejected the invitation to join the group.": "{member} отклонил приглашение присоединиться к группе.",
"{member} requested to join the group.": "{member} попросил присоединиться к группе.",
"{member} was invited by {profile}.": "{member} был приглашен пользователем {profile}.",
"{moderator} added a note on {report}": "{moderator} добавил примечание к {report}",
"{moderator} closed {report}": "{moderator} закрыл {report}",
"{moderator} deleted an event named \"{title}\"": "{moderator} удалил мероприятие с названием \"{title}\"",
@ -578,9 +946,43 @@
"{moderator} marked {report} as resolved": "{moderator} пометил {report} как решённый",
"{moderator} reopened {report}": "{moderator} повторно открыл {report}",
"{moderator} suspended profile {profile}": "{moderator} заблокировал профиль {profile}",
"{nb} km": "{nb} км",
"{number} members": "{number} участников",
"{number} organized events": "Нет организованных мероприятий|Организованно одно мероприятие|Организованно {number} мероприятий",
"{number} participations": "Нет участников|Один участник|{number} участников",
"{number} posts": "Нет публикаций|Одна публикация|{number} публикаций",
"{old_group_name} was renamed to {group}.": "{old_group_name} переименована в {group}.",
"{profile} (by default)": "{profile} (по умолчанию)",
"{profile} added the member {member}.": "{profile} добавил участника {member}.",
"{profile} archived the discussion {discussion}.": "{profile} отправил обсуждение {discussion} в архив.",
"{profile} created the discussion {discussion}.": "{profile} создал обсуждение {discussion}.",
"{profile} created the folder {resource}.": "{profile} создал папку {resource}.",
"{profile} created the group {group}.": "{profile} создал группу {group}.",
"{profile} created the resource {resource}.": "{profile} создал ресурс {resource}.",
"{profile} deleted the discussion {discussion}.": "{profile} удалил обсуждение {discussion}.",
"{profile} deleted the folder {resource}.": "{profile} удалил папку {resource}.",
"{profile} deleted the resource {resource}.": "{profile} удалил ресурс {resource}.",
"{profile} demoted {member} to an unknown role.": "{profile} понизил статус {member} до неизвестной роли.",
"{profile} demoted {member} to moderator.": "{profile} понизил статус {member} до модератора.",
"{profile} demoted {member} to simple member.": "{profile} понизил статус {member} до обычного участника.",
"{profile} excluded member {member}.": "{profile} исключил участника {member}.",
"{profile} moved the folder {resource} into {new_path}.": "{profile} переместил папку {resource} в {new_path}.",
"{profile} moved the folder {resource} to the root folder.": "{profile} переместил папку {resource} в корневую папку.",
"{profile} moved the resource {resource} into {new_path}.": "{profile} переместил ресурс {resource} в {new_path}.",
"{profile} moved the resource {resource} to the root folder.": "{profile} переместил ресурс {resource} в корневую папку.",
"{profile} posted a comment on the event {event}.": "{profile} оставил комментарий к мероприятию {event}.",
"{profile} promoted {member} to administrator.": "{profile} повысил статус {member} до администратора.",
"{profile} promoted {member} to an unknown role.": "{profile} повысил статус {member} до неизвестной роли.",
"{profile} promoted {member} to moderator.": "{profile} повысил статус {member} до модератора.",
"{profile} quit the group.": "{profile} покинул группу.",
"{profile} renamed the discussion from {old_discussion} to {discussion}.": "{profile} переименовал обсуждение с {old_discussion} в {discussion}.",
"{profile} renamed the folder from {old_resource_title} to {resource}.": "{profile} переименовал папку с {old_resource_title} в {resource}.",
"{profile} renamed the resource from {old_resource_title} to {resource}.": "{profile} переименовал ресурс с {old_resource_title} в {resource}.",
"{profile} replied to a comment on the event {event}.": "{profile} ответил на комментарий к мероприятию {event}.",
"{profile} replied to the discussion {discussion}.": "{profile} ответил на обсуждение {обсуждение}.",
"{profile} updated the group {group}.": "{profile} обновил группу {group}.",
"{profile} updated the member {member}.": "{profile} обновил участника {member}.",
"{title} ({count} todos)": "{title} ({count} незавершенных задач)",
"{username} was invited to {group}": "{username} был приглашён в {group}",
"© The OpenStreetMap Contributors": "© Авторы OpenStreetMap"
}

View File

@ -123,10 +123,11 @@
"Click to upload": "Kliknite za pošiljanje",
"Close": "Zapri",
"Close comments for all (except for admins)": "Zapri komentarje za vse (razen za skrbnike)",
"Close events": "Zapri dogodke",
"Events nearby": "Zapri dogodke",
"Closed": "Zaprto",
"Comment deleted": "Komentar je izbrisan",
"Comment from @{username} reported": "Prijavljen je bil komentar uporabnika @{username}",
"Comment text can't be empty": "Besedilo komentarja ne sme biti prazno",
"Comments": "Komentarji",
"Comments are closed for everybody else.": "Komentarji so zaprti za vse ostale.",
"Confirm my participation": "Potrdi mojo udeležbo",
@ -141,14 +142,14 @@
"Copy details to clipboard": "Kopiraj podrobnosti v odložišče",
"Country": "Država",
"Create": "Ustvari",
"Create a calc": "Ustvari tabelo",
"Create a calc": "Ustvari preglednico",
"Create a discussion": "Ustvari razpravo",
"Create a folder": "Ustvari mapo",
"Create a new event": "Ustvari nov dogodek",
"Create a new group": "Ustvari novo skupino",
"Create a new identity": "Ustvari novo identiteto",
"Create a new list": "Ustvari nov seznam",
"Create a pad": "Ustvari zapisnik",
"Create a pad": "Ustvari beležko",
"Create a videoconference": "Ustvari videokonferenco",
"Create an account": "Ustvari račun",
"Create event": "Ustvari dogodek",
@ -156,6 +157,7 @@
"Create my event": "Ustvari moj dogodek",
"Create my group": "Ustvari mojo skupino",
"Create my profile": "Ustvari moj profil",
"Create new links": "Ustvari nove povezave",
"Create resource": "Ustvari vir",
"Create the discussion": "Ustvari razpravo",
"Create to-do lists for all the tasks you need to do, assign them and set due dates.": "Ustvarite sezname opravil za vse naloge, ki jih morate opraviti, jih dodelite in določite roke.",
@ -212,8 +214,8 @@
"Domain": "Domena",
"Draft": "Osnutek",
"Drafts": "Osnutki",
"Due on": "Do",
"Duplicate": "Podvojiti",
"Due on": "Zapade",
"Duplicate": "Podvoji",
"Edit": "Uredi",
"Edit post": "Uredi objavo",
"Edited {ago}": "Urejeno {ago}",
@ -423,6 +425,7 @@
"New members": "Novi člani",
"New note": "Nova opomba",
"New password": "Novo geslo",
"New post": "Nova objava",
"New profile": "Nov profil",
"Next": "Naslednje",
"Next month": "Naslednji mesec",
@ -471,6 +474,7 @@
"Nothing to see here": "Tukaj ni ničesar za videti",
"Notification before the event": "Obvestilo pred dogodkom",
"Notification on the day of the event": "Obvestilo na dan dogodka",
"Notifications": "Obvestila",
"Notifications for manually approved participations to an event": "Obvestila o ročno odobrenih udeležbah na dogodku",
"Now, create your first profile:": "Ustvarite svoj prvi profil:",
"Number of places": "Število mest",
@ -498,7 +502,7 @@
"Organizer": "Organizator",
"Organizer notifications": "Obvestila organizatorja",
"Organizers": "Organizatorji",
"Other": "Ostali",
"Other": "Ostalo",
"Other notification options:": "Druge možnosti obveščanja:",
"Other software may also support this.": "To lahko podpira tudi druga programska oprema.",
"Otherwise this identity will just be removed from the group administrators.": "V nasprotnem primeru bo ta identiteta odstranjena samo iz skupine skrbnikov.",
@ -519,6 +523,7 @@
"Password reset": "Ponastavitev gesla",
"Past events": "Pretekli dogodki",
"Pending": "Na čakanju",
"Personal feeds": "Osebni viri",
"Pick": "Izberi",
"Pick a group": "Izberi skupino",
"Pick a profile or a group": "Izberi profil ali skupino",
@ -531,7 +536,7 @@
"Please enter your password to confirm this action.": "Vnesite svoje geslo, da potrdite to dejanje.",
"Please make sure the address is correct and that the page hasn't been moved.": "Prepričajte se, da je naslov pravilen in da stran ni bila premaknjena.",
"Please read the {fullRules} published by {instance}'s administrators.": "Preberite {fullRules}, ki so jih objavili skrbniki vozlišča {instance}.",
"Post": "Objavi",
"Post": "Objava",
"Post a comment": "Objavi komentar",
"Post a reply": "Objavi odgovor",
"Postal Code": "Poštna številka",
@ -544,6 +549,7 @@
"Privacy policy": "Politika zasebnosti",
"Private event": "Zasebni dogodek",
"Private feeds": "Zasebni viri",
"Profile feeds": "Viri profilov",
"Profiles": "Profili",
"Profiles and federation": "Profili in federacija",
"Promote": "Povišaj",
@ -563,6 +569,7 @@
"Receive one email per request": "Na zahtevo prejmi eno e-pošto",
"Redirecting to content…": "Preusmeritev na vsebino …",
"Refresh profile": "Osveži profil",
"Regenerate new links": "Obnovi nove povezave",
"Region": "Regija",
"Register an account on {instanceName}!": "Registrirajte račun na {instanceName}!",
"Register on this instance": "Registriraj se na tem vozlišču",
@ -657,6 +664,7 @@
"The event organizer manually approves participations. Since you've chosen to participate without an account, please explain why you want to participate to this event.": "Organizator dogodka ročno odobri udeležbe. Ker ste se odločili za udeležbo brez računa, pojasnite, zakaj želite sodelovati na tem dogodku.",
"The event title will be ellipsed.": "Naslov dogodka bo zatemnjen.",
"The event will show as attributed to this group.": "Dogodek bo prikazan kot dodeljen tej skupini.",
"The event will show as attributed to this profile.": "Dogodek bo prikazan kot dodeljen temu profilu.",
"The event will show as attributed to your personal profile.": "Dogodek bo prikazan kot pripisan vašemu osebnemu profilu.",
"The event will show the group as organizer.": "Na dogodku bo skupina prikazana kot organizator.",
"The event {event} was created by {profile}.": "Dogodek {event} je ustvaril/a {profil}.",
@ -667,7 +675,7 @@
"The group can now only be joined with an invite.": "Skupini se lahko pridružite le z vabilom.",
"The group will be publicly listed in search results and may be suggested in the explore section. Only public informations will be shown on it's page.": "Skupina bo javno navedena v rezultatih iskanja in bo morda predlagana v razdelku za raziskovanje. Na tej strani bodo prikazane samo javne informacije.",
"The group's avatar was changed.": "Podoba skupine je bila spremenjena.",
"The group's banner was changed.": "Spremenjena je bila oznaka skupine.",
"The group's banner was changed.": "Naslovnica skupine je bila spremenjena.",
"The group's physical address was changed.": "Fizični naslov skupine je bil spremenjen.",
"The group's short description was changed.": "Kratek opis skupine je bil spremenjen.",
"The instance administrator is the person or entity that runs this Mobilizon instance.": "Skrbnik vozlišča je fizična ali pravna oseba, ki vodi to Mobilizon vozlišče.",
@ -688,6 +696,8 @@
"There will be no way to recover your data.": "Vaših podatkov ne bo mogoče obnoviti.",
"There's no discussions yet": "Ni še nobenih razprav",
"These events may interest you": "Ti dogodki vas lahko zanimajo",
"These feeds contain event data for the events for which any of your profiles is a participant or creator. You should keep these private. You can find feeds for specific profiles on each profile edition page.": "Viri vsebujejo podatke za dogodke, pri katerih je kateri koli od vaših profilov udeleženec ali ustvarjalec. Ti viri naj bodo zasebni. Viri za posamezne profile so na voljo na strani za urejanje profila.",
"These feeds contain event data for the events for which this specific profile is a participant or creator. You should keep these private. You can find feeds for all of your profiles into your notification settings.": "Viri vsebujejo podatke za dogodke, pri katerih je ta profil udeleženec ali ustvarjalec. Ti viri naj bodo zasebni. Viri za vse svoje profile so na voljo v nastavitvah obveščanja.",
"This Mobilizon instance and this event organizer allows anonymous participations, but requires validation through email confirmation.": "To Mobilizon vozlišče in organizator dogodkov omogočata anonimne udeležbe, vendar zahtevata potrditev po e-pošti.",
"This URL is not supported": "Ta URL ni podprt",
"This event has been cancelled.": "Ta dogodek je bil preklican.",
@ -824,6 +834,7 @@
"You invited {member}.": "Povabili ste {member}.",
"You may clear all participation information for this device with the buttons below.": "Vse podatke o udeležbi za to napravo lahko počistite s spodnjimi gumbi.",
"You may now close this window, or {return_to_event}.": "Zdaj lahko zaprete to okno ali {return_to_event}.",
"You may show some members as contacts.": "Nekatere člane lahko prikažete kot stike.",
"You moved the folder {resource} into {new_path}.": "Premaknili ste mapo {resource} v {new_path}.",
"You moved the folder {resource} to the root folder.": "Premaknili ste mapo {resource} v korensko mapo.",
"You moved the resource {resource} into {new_path}.": "Vir {resource} ste premaknili v {new_path}.",
@ -855,6 +866,7 @@
"You will find here all the events you have created or of which you are a participant.": "Tu boste našli vse dogodke, ki ste jih ustvarili ali pri katerih sodelujete.",
"You wish to participate to the following event": "Želite se udeležiti naslednjega dogodka",
"You'll get a weekly recap every Monday for upcoming events, if you have any.": "Vsak ponedeljek boste dobili tedenski povzetek prihajajočih dogodkov.",
"You'll need to change the URLs where there were previously entered.": "Spremeniti boste morali naslove URL, ki so bili predhodno vneseni.",
"You'll need to transmit the group URL so people may access the group's profile. The group won't be findable in Mobilizon's search or regular search engines.": "Morali boste poslati URL skupine, da bodo lahko ljudje dostopali do profila skupine. Skupine ne bo mogoče najti v iskalnikih Mobilizon ali običajnih iskalnikih.",
"You'll receive a confirmation email.": "Prejeli boste potrditveno e-pošto.",
"Your account has been successfully deleted": "Vaš račun je uspešno izbrisan",

View File

@ -158,10 +158,14 @@ const router = new Router({
router.beforeEach(authGuardIfNeeded);
router.afterEach(() => {
if (router.app.$children[0]) {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
router.app.$children[0].error = null;
try {
if (router.app.$children[0]) {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
router.app.$children[0].error = null;
}
} catch (e) {
console.error(e);
}
});

View File

@ -89,4 +89,12 @@ export interface IConfig {
ldap: boolean;
oauthProviders: IOAuthProvider[];
};
uploadLimits: {
default: number;
avatar: number;
banner: number;
};
instanceFeeds: {
enabled: boolean;
};
}

View File

@ -13,9 +13,9 @@ export interface ICurrentUser {
}
export interface IUserPreferredLocation {
range?: number;
name?: string;
geohash?: string;
range?: number | null;
name?: string | null;
geohash?: string | null;
}
export interface IUserSettings {

View File

@ -42,9 +42,13 @@
<table class="table is-fullwidth">
<tr>
<td>{{ $t("Instance languages") }}</td>
<td :title="this.config ? this.config.languages.join(', ') : ''">
<td
v-if="config.languages.length > 0"
:title="this.config ? this.config.languages.join(', ') : ''"
>
{{ formattedLanguageList }}
</td>
<td v-else>{{ $t("No information") }}</td>
</tr>
<tr>
<td>{{ $t("Mobilizon version") }}</td>
@ -72,6 +76,29 @@
</td>
<td v-else>{{ $t("Disabled") }}</td>
</tr>
<tr class="instance-feeds">
<td>{{ $t("Instance feeds") }}</td>
<td v-if="config.instanceFeeds.enabled" class="buttons">
<b-button
tag="a"
size="is-small"
icon-left="rss"
href="/feed/instance/atom"
target="_blank"
>{{ $t("RSS/Atom Feed") }}</b-button
>
<b-button
tag="a"
size="is-small"
icon-left="calendar-sync"
href="/feed/instance/ics"
target="_blank"
>{{ $t("ICS/WebCal Feed") }}</b-button
>
</td>
<td v-else>{{ $t("Disabled") }}</td>
</tr>
</table>
</section>
</div>
@ -177,5 +204,14 @@ section {
}
}
}
tr.instance-feeds {
height: 3rem;
td:first-child {
vertical-align: middle;
}
td:last-child {
height: 3rem;
}
}
}
</style>

View File

@ -32,6 +32,7 @@
<picture-upload
v-model="avatarFile"
:defaultImage="identity.avatar"
:maxSize="avatarMaxSize"
class="picture-upload"
/>
@ -231,6 +232,9 @@ import {
DELETE_FEED_TOKEN,
} from "@/graphql/feed_tokens";
import { IFeedToken } from "@/types/feedtoken.model";
import { ServerParseError } from "apollo-link-http-common";
import { IConfig } from "@/types/config.model";
import { CONFIG } from "@/graphql/config";
@Component({
components: {
@ -256,6 +260,7 @@ import { IFeedToken } from "@/types/feedtoken.model";
this.handleErrors(graphQLErrors);
},
},
config: CONFIG,
},
})
export default class EditIdentity extends mixins(identityEditionMixin) {
@ -263,6 +268,8 @@ export default class EditIdentity extends mixins(identityEditionMixin) {
@Prop({ type: String }) identityName!: string;
config!: IConfig;
errors: string[] = [];
avatarFile: File | null = null;
@ -450,6 +457,10 @@ export default class EditIdentity extends mixins(identityEditionMixin) {
}
}
get avatarMaxSize(): number | undefined {
return this?.config?.uploadLimits?.avatar;
}
async generateFeedTokens(): Promise<void> {
const newToken = await this.createNewFeedToken();
this.identity.feedTokens.push(newToken);
@ -528,6 +539,21 @@ export default class EditIdentity extends mixins(identityEditionMixin) {
private handleError(err: any) {
console.error(err);
if (err?.networkError?.name === "ServerParseError") {
const error = err?.networkError as ServerParseError;
if (error?.response?.status === 413) {
const errorMessage = this.isUpdate
? this.$t(
"Unable to update the profile. The avatar picture may be too heavy."
)
: this.$t(
"Unable to create the profile. The avatar picture may be too heavy."
);
this.errors.push(errorMessage as string);
}
}
if (err.graphQLErrors !== undefined) {
err.graphQLErrors.forEach(({ message }: { message: string }) => {
this.$notifier.error(message);

View File

@ -33,7 +33,7 @@
:label="$t('Username')"
searchable
>
<template slot="searchable" slot-scope="props">
<template #searchable="props">
<b-input
v-model="props.filters.preferredUsername"
placeholder="Search..."
@ -68,7 +68,7 @@
</b-table-column>
<b-table-column field="domain" :label="$t('Domain')" searchable>
<template slot="searchable" slot-scope="props">
<template #searchable="props">
<b-input
v-model="props.filters.domain"
placeholder="Search..."

View File

@ -33,7 +33,7 @@
:label="$t('Username')"
searchable
>
<template slot="searchable" slot-scope="props">
<template #searchable="props">
<b-input
v-model="props.filters.preferredUsername"
placeholder="Search..."
@ -68,7 +68,7 @@
</b-table-column>
<b-table-column field="domain" :label="$t('Domain')" searchable>
<template slot="searchable" slot-scope="props">
<template #searchable="props">
<b-input
v-model="props.filters.domain"
placeholder="Search..."

View File

@ -33,7 +33,7 @@
{{ props.row.id }}
</b-table-column>
<b-table-column field="email" :label="$t('Email')" searchable>
<template slot="searchable" slot-scope="props">
<template #searchable="props">
<b-input
v-model="props.filters.email"
:placeholder="$t('Search…')"
@ -76,7 +76,7 @@
{{ props.row.locale }}
</b-table-column>
<template slot="detail" slot-scope="props">
<template #detail="props">
<router-link
class="profile"
v-for="actor in props.row.actors"

View File

@ -18,7 +18,7 @@
}"
>{{ discussion.actor.name }}</router-link
>
<b-skeleton v-else animated />
<b-skeleton v-else-if="$apollo.loading" animated />
</li>
<li>
<router-link
@ -31,7 +31,7 @@
}"
>{{ $t("Discussions") }}</router-link
>
<b-skeleton animated v-else />
<b-skeleton animated v-else-if="$apollo.loading" />
</li>
<li class="is-active">
<router-link
@ -41,6 +41,9 @@
</li>
</ul>
</nav>
<b-message v-if="error" type="is-danger">
{{ error }}
</b-message>
<section>
<div class="discussion-title">
<h2 class="title" v-if="discussion.title && !editTitleMode">
@ -60,8 +63,16 @@
<b-icon icon="pencil" />
</span>
</h2>
<b-skeleton v-else-if="!editTitleMode" height="50px" animated />
<form v-else @submit.prevent="updateDiscussion" class="title-edit">
<b-skeleton
v-else-if="!editTitleMode && $apollo.loading"
height="50px"
animated
/>
<form
v-else-if="!$apollo.loading && !error"
@submit.prevent="updateDiscussion"
class="title-edit"
>
<b-input :value="discussion.title" v-model="newTitle" />
<div class="buttons">
<b-button
@ -100,7 +111,7 @@
@click="loadMoreComments"
>{{ $t("Fetch more") }}</b-button
>
<form @submit.prevent="reply">
<form @submit.prevent="reply" v-if="!error">
<b-field :label="$t('Text')">
<editor v-model="newComment" />
</b-field>
@ -217,6 +228,7 @@ export default class discussion extends mixins(GroupMixin) {
RouteName = RouteName;
usernameWithDomain = usernameWithDomain;
error: string | null = null;
async reply(): Promise<void> {
if (this.newComment === "") return;
@ -422,6 +434,11 @@ export default class discussion extends mixins(GroupMixin) {
if (errors[0].message.includes("No such discussion")) {
await this.$router.push({ name: RouteName.PAGE_NOT_FOUND });
}
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
if (errors[0].code === "unauthorized") {
this.error = errors[0].message;
}
}
mounted(): void {

View File

@ -424,6 +424,20 @@ section {
}
}
</style>
<style lang="scss">
.dialog .modal-card {
max-width: 500px;
.modal-card-foot {
justify-content: center;
flex-wrap: wrap;
& > button {
margin-bottom: 5px;
}
}
}
</style>
<script lang="ts">
import { Component, Prop, Vue, Watch } from "vue-property-decorator";

View File

@ -1341,6 +1341,10 @@ div.sidebar {
.intro.section {
background: white;
.is-3-tablet {
width: initial;
}
p.tags {
a {
text-decoration: none;

View File

@ -172,7 +172,7 @@
}}
</span>
</b-table-column>
<template slot="detail" slot-scope="props">
<template #detail="props">
<article v-html="nl2br(props.row.metadata.message)" />
</template>
<template slot="empty">

View File

@ -58,12 +58,20 @@
<div>
<b>{{ $t("Avatar") }}</b>
<picture-upload :textFallback="$t('Avatar')" v-model="avatarFile" />
<picture-upload
:textFallback="$t('Avatar')"
v-model="avatarFile"
:maxSize="avatarMaxSize"
/>
</div>
<div>
<b>{{ $t("Banner") }}</b>
<picture-upload :textFallback="$t('Banner')" v-model="bannerFile" />
<picture-upload
:textFallback="$t('Banner')"
v-model="bannerFile"
:maxSize="bannerMaxSize"
/>
</div>
<button class="button is-primary" native-type="submit">
@ -84,6 +92,10 @@ import { MemberRole } from "@/types/enums";
import RouteName from "../../router/name";
import { convertToUsername } from "../../utils/username";
import PictureUpload from "../../components/PictureUpload.vue";
import { ErrorResponse } from "apollo-link-error";
import { ServerParseError } from "apollo-link-http-common";
import { CONFIG } from "@/graphql/config";
import { IConfig } from "@/types/config.model";
@Component({
components: {
@ -93,6 +105,7 @@ import PictureUpload from "../../components/PictureUpload.vue";
currentActor: {
query: CURRENT_ACTOR_CLIENT,
},
config: CONFIG,
},
})
export default class CreateGroup extends mixins(IdentityEditionMixin) {
@ -100,6 +113,8 @@ export default class CreateGroup extends mixins(IdentityEditionMixin) {
group = new Group();
config!: IConfig;
avatarFile: File | null = null;
bannerFile: File | null = null;
@ -110,6 +125,7 @@ export default class CreateGroup extends mixins(IdentityEditionMixin) {
async createGroup(): Promise<void> {
try {
this.errors = [];
await this.$apollo.mutate({
mutation: CREATE_GROUP,
variables: this.buildVariables(),
@ -154,6 +170,14 @@ export default class CreateGroup extends mixins(IdentityEditionMixin) {
return window.location.hostname;
}
get avatarMaxSize(): number | undefined {
return this?.config?.uploadLimits?.avatar;
}
get bannerMaxSize(): number | undefined {
return this?.config?.uploadLimits?.banner;
}
@Watch("group.name")
updateUsername(groupName: string): void {
this.group.preferredUsername = convertToUsername(groupName);
@ -194,9 +218,22 @@ export default class CreateGroup extends mixins(IdentityEditionMixin) {
};
}
private handleError(err: any) {
private handleError(err: ErrorResponse) {
if (err?.networkError?.name === "ServerParseError") {
const error = err?.networkError as ServerParseError;
if (error?.response?.status === 413) {
this.errors.push(
this.$t(
"Unable to create the group. One of the pictures may be too heavy."
) as string
);
}
}
this.errors.push(
...err.graphQLErrors.map(({ message }: { message: string }) => message)
...(err.graphQLErrors || []).map(
({ message }: { message: string }) => message
)
);
}
}

View File

@ -376,6 +376,12 @@ export default class GroupMembers extends mixins(GroupMixin) {
async removeMember(memberId: string): Promise<void> {
const { roles, MEMBERS_PER_PAGE, group, page } = this;
const variables = {
name: usernameWithDomain(group),
page,
limit: MEMBERS_PER_PAGE,
roles,
};
try {
await this.$apollo.mutate<{ removeMember: IMember }>({
mutation: REMOVE_MEMBER,
@ -386,14 +392,7 @@ export default class GroupMembers extends mixins(GroupMixin) {
refetchQueries: [
{
query: GROUP_MEMBERS,
variables() {
return {
name: usernameWithDomain(group),
page,
limit: MEMBERS_PER_PAGE,
roles,
};
},
variables,
},
],
});

View File

@ -47,6 +47,7 @@
:textFallback="$t('Avatar')"
v-model="avatarFile"
:defaultImage="group.avatar"
:maxSize="avatarMaxSize"
/>
</b-field>
@ -55,6 +56,7 @@
:textFallback="$t('Banner')"
v-model="bannerFile"
:defaultImage="group.banner"
:maxSize="bannerMaxSize"
/>
</b-field>
<p class="label">{{ $t("Group visibility") }}</p>
@ -158,6 +160,9 @@
}}</b-button>
</div>
</form>
<b-message type="is-danger" v-for="(value, index) in errors" :key="index">
{{ value }}
</b-message>
</section>
<b-message v-else>
{{ $t("You are not an administrator for this group.") }}
@ -177,6 +182,10 @@ import RouteName from "../../router/name";
import { UPDATE_GROUP, DELETE_GROUP } from "../../graphql/group";
import { IGroup, usernameWithDomain } from "../../types/actor";
import { Address, IAddress } from "../../types/address.model";
import { CONFIG } from "@/graphql/config";
import { IConfig } from "@/types/config.model";
import { ErrorResponse } from "apollo-link-error";
import { ServerParseError } from "apollo-link-http-common";
@Component({
components: {
@ -184,14 +193,21 @@ import { Address, IAddress } from "../../types/address.model";
PictureUpload,
editor: () => import("../../components/Editor.vue"),
},
apollo: {
config: CONFIG,
},
})
export default class GroupSettings extends mixins(GroupMixin) {
loading = true;
RouteName = RouteName;
config!: IConfig;
newMemberUsername = "";
errors: string[] = [];
avatarFile: File | null = null;
bannerFile: File | null = null;
@ -205,12 +221,16 @@ export default class GroupSettings extends mixins(GroupMixin) {
showCopiedTooltip = false;
async updateGroup(): Promise<void> {
const variables = this.buildVariables();
await this.$apollo.mutate<{ updateGroup: IGroup }>({
mutation: UPDATE_GROUP,
variables,
});
this.$notifier.success(this.$t("Group settings saved") as string);
try {
const variables = this.buildVariables();
await this.$apollo.mutate<{ updateGroup: IGroup }>({
mutation: UPDATE_GROUP,
variables,
});
this.$notifier.success(this.$t("Group settings saved") as string);
} catch (err) {
this.handleError(err);
}
}
confirmDeleteGroup(): void {
@ -299,5 +319,32 @@ export default class GroupSettings extends mixins(GroupMixin) {
get currentAddress(): IAddress {
return new Address(this.group.physicalAddress);
}
get avatarMaxSize(): number | undefined {
return this?.config?.uploadLimits?.avatar;
}
get bannerMaxSize(): number | undefined {
return this?.config?.uploadLimits?.banner;
}
private handleError(err: ErrorResponse) {
if (err?.networkError?.name === "ServerParseError") {
const error = err?.networkError as ServerParseError;
if (error?.response?.status === 413) {
this.errors.push(
this.$t(
"Unable to create the group. One of the pictures may be too heavy."
) as string
);
}
}
this.errors.push(
...(err.graphQLErrors || []).map(
({ message }: { message: string }) => message
)
);
}
}
</script>

View File

@ -260,7 +260,7 @@
<!-- Events close to you -->
<section class="events-close" v-if="closeEvents.total > 0">
<h2 class="is-size-2 has-text-weight-bold">
{{ $t("Close events") }}
{{ $t("Events nearby") }}
</h2>
<p>
{{

View File

@ -80,6 +80,12 @@
</option>
</b-select>
</b-field>
<b-button
:disabled="address == undefined"
@click="resetArea"
class="reset-area"
icon-left="close"
/>
</b-field>
<p>
{{
@ -239,11 +245,11 @@ export default class Preferences extends Vue {
}
}
get locationRange(): number | undefined {
get locationRange(): number | undefined | null {
return this.loggedUser?.settings?.location?.range;
}
set locationRange(locationRange: number | undefined) {
set locationRange(locationRange: number | undefined | null) {
if (locationRange) {
this.updateUserSettings({
location: {
@ -253,6 +259,16 @@ export default class Preferences extends Vue {
}
}
resetArea(): void {
this.updateUserSettings({
location: {
geohash: null,
name: null,
range: null,
},
});
}
private async updateUserSettings(userSettings: IUserSettings) {
await this.$apollo.mutate<{ setUserSetting: string }>({
mutation: SET_USER_SETTINGS,
@ -262,3 +278,10 @@ export default class Preferences extends Vue {
}
}
</script>
<style lang="scss" scoped>
.reset-area {
align-self: center;
position: relative;
top: 10px;
}
</style>

View File

@ -67,7 +67,7 @@
</b-field>
<p class="control has-text-centered" v-if="!submitted">
<button class="button is-primary is-large">
<button type="submit" class="button is-primary is-large">
{{ $t("Login") }}
</button>
</p>
@ -222,44 +222,51 @@ export default class Login extends Vue {
}
saveUserData(data.login);
await this.$apollo.mutate({
mutation: UPDATE_CURRENT_USER_CLIENT,
variables: {
id: data.login.user.id,
email: this.credentials.email,
isLoggedIn: true,
role: data.login.user.role,
},
});
try {
await initializeCurrentActor(this.$apollo.provider.defaultClient);
} catch (err) {
if (err instanceof NoIdentitiesException) {
this.$router.push({
name: RouteName.REGISTER_PROFILE,
params: {
email: this.currentUser.email,
userAlreadyActivated: "true",
},
});
}
}
await this.setupClientUserAndActors(data.login);
if (this.$route.query.redirect) {
console.log("redirect", this.$route.query.redirect);
this.$router.push(this.$route.query.redirect as string);
return;
}
window.localStorage.setItem("welcome-back", "yes");
if (window.localStorage) {
window.localStorage.setItem("welcome-back", "yes");
}
this.$router.push({ name: RouteName.HOME });
return;
} catch (err) {
this.submitted = false;
console.error(err);
err.graphQLErrors.forEach(({ message }: { message: string }) => {
this.errors.push(message);
});
if (err.graphQLErrors) {
err.graphQLErrors.forEach(({ message }: { message: string }) => {
this.errors.push(message);
});
} else if (err.networkError) {
this.errors.push(err.networkError.message);
}
}
}
private async setupClientUserAndActors(login: ILogin): Promise<void> {
await this.$apollo.mutate({
mutation: UPDATE_CURRENT_USER_CLIENT,
variables: {
id: login.user.id,
email: this.credentials.email,
isLoggedIn: true,
role: login.user.role,
},
});
try {
await initializeCurrentActor(this.$apollo.provider.defaultClient);
} catch (err) {
if (err instanceof NoIdentitiesException) {
this.$router.push({
name: RouteName.REGISTER_PROFILE,
params: {
email: this.currentUser.email,
userAlreadyActivated: "true",
},
});
}
}
}
}

View File

@ -13,7 +13,6 @@ import buildCurrentUserResolver from "@/apollo/user";
import { isServerError } from "@/types/apollo";
import { AUTH_ACCESS_TOKEN } from "@/constants";
import { logout } from "@/utils/auth";
import { SnackbarProgrammatic as Snackbar } from "buefy";
import { Socket as PhoenixSocket } from "phoenix";
import * as AbsintheSocket from "@absinthe/socket";
import { createAbsintheSocketLink } from "@absinthe/socket-apollo-link";
@ -123,12 +122,7 @@ const errorLink = onError(
}
if (networkError) {
console.log(`[Network error]: ${networkError}`);
Snackbar.open({
message: "Please refresh the page and retry.",
type: "is-danger",
position: "is-bottom",
});
console.error(`[Network error]: ${networkError}`);
}
}
);

View File

@ -2,23 +2,45 @@ import { config, createLocalVue, mount } from "@vue/test-utils";
import { routes } from "@/router";
import App from "@/App.vue";
import VueRouter from "vue-router";
import Home from "@/views/Home.vue";
import Buefy from "buefy";
const localVue = createLocalVue();
config.mocks.$t = (key: string): string => key;
localVue.use(VueRouter);
const router = new VueRouter({ routes });
const wrapper = mount(App, {
localVue,
router,
stubs: ["NavBar", "mobilizon-footer"],
});
localVue.use(Buefy);
describe("routing", () => {
test("Homepage", async () => {
router.push("/");
const router = new VueRouter({ routes, mode: "history" });
const wrapper = mount(App, {
localVue,
router,
stubs: {
NavBar: true,
"mobilizon-footer": true,
},
});
expect(wrapper.html()).toContain('<div id="homepage">');
});
test("About", async () => {
const router = new VueRouter({ routes, mode: "history" });
const wrapper = mount(App, {
localVue,
router,
stubs: {
NavBar: true,
"mobilizon-footer": true,
},
});
router.push("/about");
await wrapper.vm.$nextTick();
expect(wrapper.findComponent(Home).exists()).toBe(true);
await wrapper.vm.$nextTick();
expect(wrapper.vm.$route.path).toBe("/about/instance");
expect(wrapper.html()).toContain(
'<a href="/about/instance" aria-current="page"'
);
});
});

View File

@ -37,7 +37,7 @@ describe("CommentTree", () => {
let requestHandlers: Record<string, RequestHandler>;
const generateWrapper = (handlers = {}, baseData = {}) => {
const cache = new InMemoryCache({ addTypename: false });
const cache = new InMemoryCache({ addTypename: true });
mockClient = createMockClient({
cache,
@ -88,10 +88,13 @@ describe("CommentTree", () => {
it("renders a comment tree", async () => {
generateWrapper();
expect(wrapper.findComponent({ name: "b-notification" }).text()).toBe(
"The organiser has chosen to close comments."
);
expect(wrapper.exists()).toBe(true);
expect(wrapper.find(".loading").text()).toBe("Loading comments…");
await wrapper.vm.$nextTick();
await wrapper.vm.$nextTick(); // because of the <transition>
expect(wrapper.find(".no-comments").text()).toBe("No comments yet");
expect(wrapper.html()).toMatchSnapshot();
});

View File

@ -2,21 +2,26 @@
exports[`CommentTree renders a comment tree 1`] = `
<div>
<b-notification-stub active="true" duration="2000" animation="fade">The organiser has chosen to close comments.</b-notification-stub>
<p class="loading has-text-centered">
Loading comments…
</p>
</div>
`;
exports[`CommentTree renders a comment tree 2`] = `
<div>
<b-notification-stub active="true" duration="2000" animation="fade">The organiser has chosen to close comments.</b-notification-stub>
<!---->
<transition-stub name="comment-empty-list" mode="out-in">
<transition-group-stub tag="ul" name="comment-list" class="comment-list">
<comment-stub comment="[object Object]" event="[object Object]" class="root-comment"></comment-stub>
<comment-stub comment="[object Object]" event="[object Object]" class="root-comment"></comment-stub>
</transition-group-stub>
<div class="no-comments"><span>No comments yet</span></div>
</transition-stub>
</div>
`;
exports[`CommentTree renders a comment tree 2`] = `
<div>
<!---->
<transition-stub name="comment-empty-list" mode="out-in">
<transition-group-stub tag="ul" name="comment-list" class="comment-list">
<comment-stub comment="[object Object]" event="[object Object]" class="root-comment"></comment-stub>
<comment-stub comment="[object Object]" event="[object Object]" class="root-comment"></comment-stub>
</transition-group-stub>
<div class="no-comments"><span>No comments yet</span></div>
</transition-stub>
</div>
`;

View File

@ -42,7 +42,7 @@ describe("ParticipationSection", () => {
customProps: Record<string, unknown> = {},
baseData: Record<string, unknown> = {}
) => {
const cache = new InMemoryCache({ addTypename: false });
const cache = new InMemoryCache({ addTypename: true });
mockClient = createMockClient({
cache,

View File

@ -65,7 +65,7 @@ describe("ParticipationWithoutAccount", () => {
customProps: Record<string, unknown> = {},
baseData: Record<string, unknown> = {}
) => {
const cache = new InMemoryCache({ addTypename: false });
const cache = new InMemoryCache({ addTypename: true });
mockClient = createMockClient({
cache,

View File

@ -0,0 +1,183 @@
import { config, createLocalVue, mount, Wrapper } from "@vue/test-utils";
import Login from "@/views/User/Login.vue";
import Buefy from "buefy";
import {
createMockClient,
MockApolloClient,
RequestHandler,
} from "mock-apollo-client";
import VueApollo from "vue-apollo";
import buildCurrentUserResolver from "@/apollo/user";
import { InMemoryCache } from "apollo-cache-inmemory";
import { configMock } from "../../mocks/config";
import { i18n } from "@/utils/i18n";
import { CONFIG } from "@/graphql/config";
import { loginMock, loginResponseMock } from "../../mocks/auth";
import { LOGIN } from "@/graphql/auth";
import { CURRENT_USER_CLIENT } from "@/graphql/user";
import { ICurrentUser } from "@/types/current-user.model";
import flushPromises from "flush-promises";
import RouteName from "@/router/name";
const localVue = createLocalVue();
localVue.use(Buefy);
config.mocks.$t = (key: string): string => key;
const $router = { push: jest.fn() };
describe("Render login form", () => {
let wrapper: Wrapper<Vue>;
let mockClient: MockApolloClient | null;
let apolloProvider;
let requestHandlers: Record<string, RequestHandler>;
const generateWrapper = (
handlers: Record<string, unknown> = {},
customProps: Record<string, unknown> = {},
baseData: Record<string, unknown> = {},
customMocks: Record<string, unknown> = {}
) => {
const cache = new InMemoryCache({ addTypename: true });
mockClient = createMockClient({
cache,
resolvers: buildCurrentUserResolver(cache),
});
requestHandlers = {
configQueryHandler: jest.fn().mockResolvedValue(configMock),
loginMutationHandler: jest.fn().mockResolvedValue(loginResponseMock),
...handlers,
};
mockClient.setRequestHandler(CONFIG, requestHandlers.configQueryHandler);
mockClient.setRequestHandler(LOGIN, requestHandlers.loginMutationHandler);
apolloProvider = new VueApollo({
defaultClient: mockClient,
});
wrapper = mount(Login, {
localVue,
i18n,
apolloProvider,
propsData: {
...customProps,
},
mocks: {
$route: { query: {} },
$router,
...customMocks,
},
stubs: ["router-link", "router-view"],
data() {
return {
...baseData,
};
},
});
};
afterEach(() => {
wrapper.destroy();
mockClient = null;
apolloProvider = null;
$router.push.mockReset();
});
it("requires email and password to be filled", async () => {
generateWrapper();
await wrapper.vm.$nextTick();
await wrapper.vm.$nextTick();
expect(wrapper.exists()).toBe(true);
expect(requestHandlers.configQueryHandler).toHaveBeenCalled();
expect(wrapper.vm.$apollo.queries.config).toBeTruthy();
wrapper.find('form input[type="email"]').setValue("");
wrapper.find('form input[type="password"]').setValue("");
wrapper.find("form button.button").trigger("click");
const form = wrapper.find("form");
expect(form.exists()).toBe(true);
const formElement = form.element as HTMLFormElement;
expect(formElement.checkValidity()).toBe(false);
});
it("renders and submits the login form", async () => {
generateWrapper();
await wrapper.vm.$nextTick();
await wrapper.vm.$nextTick();
expect(wrapper.exists()).toBe(true);
expect(requestHandlers.configQueryHandler).toHaveBeenCalled();
expect(wrapper.vm.$apollo.queries.config).toBeTruthy();
wrapper.find('form input[type="email"]').setValue("some@email.tld");
wrapper.find('form input[type="password"]').setValue("somepassword");
wrapper.find("form").trigger("submit");
await wrapper.vm.$nextTick();
expect(requestHandlers.loginMutationHandler).toHaveBeenCalledWith({
...loginMock,
});
await wrapper.vm.$nextTick();
await wrapper.vm.$nextTick();
const currentUser = mockClient?.cache.readQuery<{
currentUser: ICurrentUser;
}>({
query: CURRENT_USER_CLIENT,
})?.currentUser;
expect(currentUser?.email).toBe("some@email.tld");
expect(currentUser?.id).toBe("1");
expect(jest.isMockFunction(wrapper.vm.$router.push)).toBe(true);
await flushPromises();
expect($router.push).toHaveBeenCalledWith({ name: RouteName.HOME });
});
it("handles a login error", async () => {
generateWrapper({
loginMutationHandler: jest.fn().mockResolvedValue({
errors: [
{
message:
'"Impossible to authenticate, either your email or password are invalid."',
},
],
}),
});
await wrapper.vm.$nextTick();
await wrapper.vm.$nextTick();
expect(wrapper.exists()).toBe(true);
expect(requestHandlers.configQueryHandler).toHaveBeenCalled();
expect(wrapper.vm.$apollo.queries.config).toBeTruthy();
wrapper.find('form input[type="email"]').setValue("some@email.tld");
wrapper.find('form input[type="password"]').setValue("somepassword");
wrapper.find("form").trigger("submit");
await wrapper.vm.$nextTick();
expect(requestHandlers.loginMutationHandler).toHaveBeenCalledWith({
...loginMock,
});
await flushPromises();
expect(wrapper.find("article.message.is-danger").text()).toContain(
"Impossible to authenticate, either your email or password are invalid."
);
expect($router.push).not.toHaveBeenCalled();
});
it("handles redirection after login", async () => {
generateWrapper(
{},
{},
{},
{
$route: { query: { redirect: "/about/instance" } },
}
);
await wrapper.vm.$nextTick();
await wrapper.vm.$nextTick();
wrapper.find('form input[type="email"]').setValue("some@email.tld");
wrapper.find('form input[type="password"]').setValue("somepassword");
wrapper.find("form").trigger("submit");
await flushPromises();
expect($router.push).toHaveBeenCalledWith("/about/instance");
});
});

View File

@ -25,7 +25,7 @@ describe("App component", () => {
let requestHandlers: Record<string, RequestHandler>;
const createComponent = (handlers = {}, baseData = {}) => {
const cache = new InMemoryCache({ addTypename: false });
const cache = new InMemoryCache({ addTypename: true });
mockClient = createMockClient({
cache,

View File

@ -0,0 +1,20 @@
export const loginMock = {
email: "some@email.tld",
password: "somepassword",
};
export const loginResponseMock = {
data: {
login: {
__typename: "Login",
accessToken: "some access token",
refreshToken: "some refresh token",
user: {
__typename: "User",
email: "some@email.tld",
id: "1",
role: "ADMINISTRATOR",
},
},
},
};

View File

@ -1,37 +1,49 @@
export const configMock = {
data: {
config: {
__typename: "Config",
anonymous: {
__typename: "Anonymous",
actorId: "1",
eventCreation: {
__typename: "AnonymousEventCreation",
allowed: false,
validation: {
__typename: "AnonymousEventCreationValidation",
captcha: {
__typename: "AnonymousEventCreationValidationCaptcha",
enabled: false,
},
email: {
__typename: "AnonymousEventCreationValidationEmail",
confirmationRequired: true,
enabled: true,
},
},
},
participation: {
__typename: "AnonymousParticipation",
allowed: true,
validation: {
__typename: "AnonymousParticipationValidation",
captcha: {
__typename: "AnonymousParticipationValidationCaptcha",
enabled: false,
},
email: {
__typename: "AnonymousParticipationValidationEmail",
confirmationRequired: true,
enabled: true,
},
},
},
reports: {
__typename: "AnonymousReports",
allowed: false,
},
},
auth: {
__typename: "Auth",
ldap: false,
oauthProviders: [],
},
@ -39,24 +51,30 @@ export const configMock = {
demoMode: false,
description: "Mobilizon.fr est l'instance Mobilizon de Framasoft.",
features: {
__typename: "Features",
eventCreation: true,
groups: true,
},
geocoding: {
__typename: "Geocoding",
autocomplete: true,
provider: "Elixir.Mobilizon.Service.Geospatial.Pelias",
},
languages: ["fr"],
location: {
__typename: "Lonlat",
latitude: 48.8717,
longitude: 2.32075,
},
maps: {
__typename: "Maps",
tiles: {
__typename: "Tiles",
attribution: "© The OpenStreetMap Contributors",
endpoint: "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
},
routing: {
__typename: "Routing",
type: "OPENSTREETMAP",
},
},
@ -65,22 +83,35 @@ export const configMock = {
registrationsOpen: true,
resourceProviders: [
{
__typename: "ResourceProvider",
endpoint: "https://lite.framacalc.org/",
software: "calc",
type: "ethercalc",
},
{
__typename: "ResourceProvider",
endpoint: "https://hebdo.framapad.org/p/",
software: "pad",
type: "etherpad",
},
{
__typename: "ResourceProvider",
endpoint: "https://framatalk.org/",
software: "visio",
type: "jitsi",
},
],
slogan: null,
uploadLimits: {
__typename: "UploadLimits",
default: 10_000_000,
avatar: 2_000_000,
banner: 4_000_000,
},
instanceFeeds: {
__typename: "InstanceFeeds",
enabled: false,
},
},
},
};

View File

@ -12,6 +12,7 @@ export const fetchEventBasicMock = {
uuid: "f37910ea-fd5a-4756-9679-00971f3f4106",
joinOptions: EventJoinOptions.FREE,
participantStats: {
__typename: "ParticipantStats",
notApproved: 0,
notConfirmed: 0,
rejected: 0,
@ -28,18 +29,26 @@ export const fetchEventBasicMock = {
export const joinEventResponseMock = {
data: {
joinEvent: {
__typename: "Participant",
id: "5",
role: ParticipantRole.NOT_APPROVED,
insertedAt: "2020-12-07T09:33:41Z",
metadata: {
__typename: "ParticipantMetadata",
cancellationToken: "some token",
message: "a message long enough",
},
event: {
__typename: "Event",
id: "1",
uuid: "f37910ea-fd5a-4756-9679-00971f3f4106",
},
actor: {
__typename: "Person",
preferredUsername: "some_actor",
name: "Some actor",
avatar: null,
domain: null,
id: "1",
},
},
@ -73,7 +82,9 @@ export const eventCommentThreadsMock = {
totalReplies: 5,
updatedAt: "2020-12-03T09:02:00Z",
actor: {
__typename: "Person",
avatar: {
__typename: "Media",
id: "78",
url: "http://someavatar.url.me",
},
@ -97,7 +108,9 @@ export const eventCommentThreadsMock = {
totalReplies: 0,
updatedAt: "2020-12-03T11:02:00Z",
actor: {
__typename: "Person",
avatar: {
__typename: "Media",
id: "78",
url: "http://someavatar.url.me",
},
@ -123,6 +136,7 @@ export const newCommentForEventMock = {
export const newCommentForEventResponse: DataMock = {
data: {
createComment: {
__typename: "Comment",
id: "79",
uuid: "e37910ea-fd5a-4756-9679-01171f3f4444",
url:
@ -134,8 +148,11 @@ export const newCommentForEventResponse: DataMock = {
updatedAt: "2020-12-03T13:02:00Z",
originComment: null,
inReplyToComment: null,
replies: [],
actor: {
__typename: "Person",
avatar: {
__typename: "Media",
id: "78",
url: "http://someavatar.url.me",
},

View File

@ -38,7 +38,7 @@ module.exports = {
css: {
loaderOptions: {
scss: {
additionalData: `@import "@/variables.scss";`,
prependData: `@import "@/variables.scss";`,
},
},
},

File diff suppressed because it is too large Load Diff

View File

@ -592,7 +592,7 @@ defmodule Mobilizon.Federation.ActivityPub do
Enum.each(Users.list_moderators(), fn moderator ->
moderator
|> Admin.report(report)
|> Mailer.deliver_later()
|> Mailer.send_email_later()
end)
{:ok, activity, report}
@ -621,6 +621,10 @@ defmodule Mobilizon.Federation.ActivityPub do
Logger.info("Actor was deleted")
{:error, :actor_deleted}
{:error, e} ->
Logger.warn("Failed to make actor from url")
{:error, e}
e ->
Logger.warn("Failed to make actor from url")
{:error, e}
@ -654,7 +658,7 @@ defmodule Mobilizon.Federation.ActivityPub do
@spec make_actor_from_nickname(String.t()) :: {:ok, %Actor{}} | {:error, any()}
def make_actor_from_nickname(nickname) do
case WebFinger.finger(nickname) do
{:ok, %{"url" => url}} when not is_nil(url) ->
{:ok, url} when is_binary(url) ->
make_actor_from_url(url)
_e ->
@ -801,6 +805,10 @@ defmodule Mobilizon.Federation.ActivityPub do
Logger.info("Response HTTP 410")
{:error, :actor_deleted}
{:error, e} ->
Logger.warn("Could not decode actor at fetch #{url}, #{inspect(e)}")
{:error, e}
e ->
Logger.warn("Could not decode actor at fetch #{url}, #{inspect(e)}")
{:error, e}

View File

@ -17,7 +17,8 @@ defmodule Mobilizon.Federation.ActivityPub.Fetcher do
def fetch(url, options \\ []) do
on_behalf_of = Keyword.get(options, :on_behalf_of, Relay.get_actor())
with date <- Signature.generate_date_header(),
with false <- address_invalid(url),
date <- Signature.generate_date_header(),
headers <-
[{:Accept, "application/activity+json"}]
|> maybe_date_fetch(date)
@ -38,6 +39,9 @@ defmodule Mobilizon.Federation.ActivityPub.Fetcher do
{:ok, %Tesla.Env{} = res} ->
{:error, res}
{:error, err} ->
{:error, err}
end
end
@ -90,4 +94,12 @@ defmodule Mobilizon.Federation.ActivityPub.Fetcher do
{:error, err}
end
end
@spec address_invalid(String.t()) :: false | {:error, :invalid_url}
defp address_invalid(address) do
with %URI{host: host, scheme: scheme} <- URI.parse(address),
true <- is_nil(host) or is_nil(scheme) do
{:error, :invalid_url}
end
end
end

View File

@ -114,7 +114,10 @@ defmodule Mobilizon.Federation.ActivityPub.Refresher do
Logger.debug(inspect(items))
Enum.each(items, &handling_element/1)
items
|> Enum.map(fn item -> Task.async(fn -> handling_element(item) end) end)
|> Task.await_many()
Logger.debug("Finished processing a collection")
:ok
end
@ -124,7 +127,7 @@ defmodule Mobilizon.Federation.ActivityPub.Refresher do
do: process_collection(first, on_behalf_of)
defp process_collection(%{"type" => "OrderedCollection", "first" => first}, on_behalf_of)
when is_bitstring(first) do
when is_binary(first) do
Logger.debug("OrderedCollection has a first property pointing to an URI")
with {:ok, data} <- Fetcher.fetch(first, on_behalf_of: on_behalf_of) do

View File

@ -126,7 +126,7 @@ defmodule Mobilizon.Federation.ActivityPub.Relay do
end
end
defp fetch_object(object) when is_bitstring(object), do: {object, object}
defp fetch_object(object) when is_binary(object), do: {object, object}
@spec fetch_actor(String.t()) :: {:ok, String.t()} | {:error, String.t()}
# Dirty hack
@ -159,7 +159,7 @@ defmodule Mobilizon.Federation.ActivityPub.Relay do
@spec finger_actor(String.t()) :: {:ok, String.t()} | {:error, String.t()}
defp finger_actor(nickname) do
case WebFinger.finger(nickname) do
{:ok, %{"url" => url}} when not is_nil(url) ->
{:ok, url} when is_binary(url) ->
{:ok, url}
_e ->

View File

@ -132,7 +132,8 @@ defmodule Mobilizon.Federation.ActivityPub.Types.Discussions do
)
args
|> Map.update(:title, "", &String.trim/1)
# title might be nil
|> Map.update(:title, "", fn title -> String.trim(title || "") end)
|> Map.put(:text, text)
end
end

View File

@ -26,7 +26,7 @@ defmodule Mobilizon.Federation.ActivityPub.Utils do
# Some implementations send the actor URI as the actor field, others send the entire actor object,
# so figure out what the actor's URI is based on what we have.
def get_url(%{"id" => id}), do: id
def get_url(id) when is_bitstring(id), do: id
def get_url(id) when is_binary(id), do: id
def get_url(ids) when is_list(ids), do: get_url(hd(ids))
def get_url(_), do: nil
@ -223,7 +223,7 @@ defmodule Mobilizon.Federation.ActivityPub.Utils do
end
end
def get_actor(%{"actor" => %{"id" => id}}) when is_bitstring(id) do
def get_actor(%{"actor" => %{"id" => id}}) when is_binary(id) do
id
end

View File

@ -31,7 +31,7 @@ defmodule Mobilizon.Federation.ActivityStream.Converter.Discussion do
%{
"type" => "Note",
"to" => [discussion.actor.followers_url],
"to" => [discussion.actor.members_url],
"cc" => [],
"name" => discussion.title,
"content" => discussion.last_comment.text,

View File

@ -155,7 +155,7 @@ defmodule Mobilizon.Federation.ActivityStream.Converter.Event do
end
@spec get_address(map | binary | nil) :: integer | nil
defp get_address(address_url) when is_bitstring(address_url) do
defp get_address(address_url) when is_binary(address_url) do
get_address(%{"id" => address_url})
end

View File

@ -38,7 +38,7 @@ defmodule Mobilizon.Federation.ActivityStream.Converter.Media do
%{"type" => "Document", "url" => media_url, "name" => name},
actor_id
)
when is_bitstring(media_url) do
when is_binary(media_url) do
with {:ok, %{body: body}} <- Tesla.get(media_url, opts: @http_options),
{:ok, %{name: name, url: url, content_type: content_type, size: size}} <-
Upload.store(%{body: body, name: name}),

View File

@ -94,7 +94,7 @@ defmodule Mobilizon.Federation.ActivityStream.Converter.Utils do
end
end
defp fetch_tag(tag) when is_bitstring(tag), do: [tag_without_hash(tag)]
defp fetch_tag(tag) when is_binary(tag), do: [tag_without_hash(tag)]
defp tag_without_hash("#" <> tag_title), do: tag_title
defp tag_without_hash(tag_title), do: tag_title

View File

@ -12,26 +12,37 @@ defmodule Mobilizon.Federation.WebFinger do
alias Mobilizon.Actors.Actor
alias Mobilizon.Federation.ActivityPub
alias Mobilizon.Federation.WebFinger.XmlBuilder
alias Mobilizon.Service.HTTP.WebfingerClient
alias Mobilizon.Service.HTTP.{HostMetaClient, WebfingerClient}
alias Mobilizon.Web.Endpoint
alias Mobilizon.Web.Router.Helpers, as: Routes
require Jason
require Logger
import SweetXml
def host_meta do
base_url = Endpoint.url()
%URI{host: host} = URI.parse(base_url)
{
:XRD,
%{xmlns: "http://docs.oasis-open.org/ns/xri/xrd-1.0"},
{
:Link,
%{
rel: "lrdd",
type: "application/xrd+xml",
template: "#{base_url}/.well-known/webfinger?resource={uri}"
%{
xmlns: "http://docs.oasis-open.org/ns/xri/xrd-1.0",
"xmlns:hm": "http://host-meta.net/ns/1.0"
},
[
{
:"hm:Host",
host
},
{
:Link,
%{
rel: "lrdd",
type: "application/jrd+json",
template: "#{base_url}/.well-known/webfinger?resource={uri}"
}
}
}
]
}
|> XmlBuilder.to_doc()
end
@ -56,29 +67,116 @@ defmodule Mobilizon.Federation.WebFinger do
end
@spec represent_actor(Actor.t()) :: struct()
def represent_actor(actor), do: represent_actor(actor, "JSON")
def represent_actor(%Actor{} = actor), do: represent_actor(actor, "JSON")
@spec represent_actor(Actor.t(), String.t()) :: struct()
def represent_actor(actor, "JSON") do
%{
"subject" => "acct:#{actor.preferred_username}@#{Endpoint.host()}",
"aliases" => [actor.url],
"links" => [
def represent_actor(%Actor{} = actor, "JSON") do
links =
[
%{"rel" => "self", "type" => "application/activity+json", "href" => actor.url},
%{
"rel" => "https://webfinger.net/rel/profile-page/",
"type" => "text/html",
"href" => actor.url
},
%{
"rel" => "http://ostatus.org/schema/1.0/subscribe",
"template" => "#{Routes.page_url(Endpoint, :interact, uri: nil)}{uri}"
}
]
|> maybe_add_avatar(actor)
|> maybe_add_profile_page(actor)
%{
"subject" => "acct:#{actor.preferred_username}@#{Endpoint.host()}",
"aliases" => [actor.url],
"links" => links
}
end
defp webfinger_from_json(doc) do
defp maybe_add_avatar(data, %Actor{avatar: avatar}) when not is_nil(avatar) do
data ++
[
%{
"rel" => "http://webfinger.net/rel/avatar",
"type" => avatar.content_type,
"href" => avatar.url
}
]
end
defp maybe_add_avatar(data, _actor), do: data
defp maybe_add_profile_page(data, %Actor{type: :Group, url: url}) do
data ++
[
%{
"rel" => "http://webfinger.net/rel/profile-page/",
"type" => "text/html",
"href" => url
}
]
end
defp maybe_add_profile_page(data, _actor), do: data
@doc """
Finger an actor to retreive it's ActivityPub ID/URL
Fetches the Extensible Resource Descriptor endpoint `/.well-known/host-meta` to find the Webfinger endpoint (usually `/.well-known/webfinger?resource=`) with `find_webfinger_endpoint/1` and then performs a Webfinger query to get the ActivityPub ID associated to an actor.
"""
@spec finger(String.t()) :: {:ok, String.t()} | {:error, atom()}
def finger(actor) do
actor = String.trim_leading(actor, "@")
with address when is_binary(address) <- apply_webfinger_endpoint(actor),
false <- address_invalid(address),
{:ok, %{body: body, status: code}} when code in 200..299 <-
WebfingerClient.get(address),
{:ok, %{"url" => url}} <- webfinger_from_json(body) do
{:ok, url}
else
e ->
Logger.debug("Couldn't finger #{actor}")
Logger.debug(inspect(e))
{:error, e}
end
end
@doc """
Fetches the Extensible Resource Descriptor endpoint `/.well-known/host-meta` to find the Webfinger endpoint (usually `/.well-known/webfinger?resource=`)
"""
@spec find_webfinger_endpoint(String.t()) :: String.t()
def find_webfinger_endpoint(domain) when is_binary(domain) do
with {:ok, %{body: body}} <- fetch_document("http://#{domain}/.well-known/host-meta"),
link_template <- find_link_from_template(body) do
{:ok, link_template}
end
end
@spec apply_webfinger_endpoint(String.t()) :: String.t() | {:error, :host_not_found}
defp apply_webfinger_endpoint(actor) do
with {:ok, domain} <- domain_from_federated_actor(actor) do
case find_webfinger_endpoint(domain) do
{:ok, link_template} ->
String.replace(link_template, "{uri}", "acct:#{actor}")
_ ->
"http://#{domain}/.well-known/webfinger?resource=acct:#{actor}"
end
end
end
@spec domain_from_federated_actor(String.t()) :: {:ok, String.t()} | {:error, :host_not_found}
defp domain_from_federated_actor(actor) do
case String.split(actor, "@") do
[_name, domain] ->
{:ok, domain}
_e ->
host = URI.parse(actor).host
if is_nil(host), do: {:error, :host_not_found}, else: {:ok, host}
end
end
@spec webfinger_from_json(map() | String.t()) ::
{:ok, map()} | {:error, :webfinger_information_not_json}
defp webfinger_from_json(doc) when is_map(doc) do
data =
Enum.reduce(doc["links"], %{"subject" => doc["subject"]}, fn link, data ->
case {link["type"], link["rel"]} do
@ -97,31 +195,26 @@ defmodule Mobilizon.Federation.WebFinger do
{:ok, data}
end
def finger(actor) do
actor = String.trim_leading(actor, "@")
defp webfinger_from_json(_doc), do: {:error, :webfinger_information_not_json}
domain =
case String.split(actor, "@") do
[_name, domain] ->
domain
@spec find_link_from_template(String.t()) :: String.t() | {:error, :link_not_found}
defp find_link_from_template(doc) do
with res when res in [nil, ""] <-
xpath(doc, ~x"//Link[@rel=\"lrdd\"][@type=\"application/json\"]/@template"s),
res when res in [nil, ""] <- xpath(doc, ~x"//Link[@rel=\"lrdd\"]/@template"s),
do: {:error, :link_not_found}
end
_e ->
URI.parse(actor).host
end
@spec fetch_document(String.t()) :: Tesla.Env.result()
defp fetch_document(endpoint) do
with {:error, err} <- HostMetaClient.get(endpoint), do: {:error, err}
end
address = "http://#{domain}/.well-known/webfinger?resource=acct:#{actor}"
Logger.debug(inspect(address))
with false <- is_nil(domain),
{:ok, %{body: body, status: code}} when code in 200..299 <-
WebfingerClient.get(address) do
webfinger_from_json(body)
else
e ->
Logger.debug(fn -> "Couldn't finger #{actor}" end)
Logger.debug(fn -> inspect(e) end)
{:error, e}
@spec address_invalid(String.t()) :: false | {:error, :invalid_address}
defp address_invalid(address) do
with %URI{host: host, scheme: scheme} <- URI.parse(address),
true <- is_nil(host) or is_nil(scheme) do
{:error, :invalid_address}
end
end
end

View File

@ -321,7 +321,7 @@ defmodule Mobilizon.GraphQL.Resolvers.Admin do
{:ok, _activity, follow} ->
{:ok, follow}
{:error, {:error, err}} when is_bitstring(err) ->
{:error, {:error, err}} when is_binary(err) ->
{:error, err}
end
end
@ -336,7 +336,10 @@ defmodule Mobilizon.GraphQL.Resolvers.Admin do
{:ok, _activity, follow} ->
{:ok, follow}
{:error, {:error, err}} when is_bitstring(err) ->
{:error, {:error, err}} when is_binary(err) ->
{:error, err}
{:error, err} when is_binary(err) ->
{:error, err}
end
end
@ -351,7 +354,10 @@ defmodule Mobilizon.GraphQL.Resolvers.Admin do
{:ok, _activity, follow} ->
{:ok, follow}
{:error, {:error, err}} when is_bitstring(err) ->
{:error, {:error, err}} when is_binary(err) ->
{:error, err}
{:error, err} when is_binary(err) ->
{:error, err}
end
end

View File

@ -134,6 +134,14 @@ defmodule Mobilizon.GraphQL.Resolvers.Config do
auth: %{
ldap: Config.ldap_enabled?(),
oauth_providers: Config.oauth_consumer_strategies()
},
upload_limits: %{
default: Config.get([:instance, :upload_limit]),
avatar: Config.get([:instance, :avatar_upload_limit]),
banner: Config.get([:instance, :banner_upload_limit])
},
instance_feeds: %{
enabled: Config.get([:instance, :enable_instance_feeds])
}
}
end

View File

@ -60,6 +60,7 @@ defmodule Mobilizon.GraphQL.Resolvers.Discussion do
{:ok, discussion}
else
nil -> {:error, dgettext("errors", "Discussion not found")}
{:member, false} -> {:error, :unauthorized}
end
end
@ -104,7 +105,7 @@ defmodule Mobilizon.GraphQL.Resolvers.Discussion do
}) do
{:ok, discussion}
else
{:error, :discussion, err, _} ->
{:error, type, err, _} when type in [:discussion, :comment] ->
{:error, err}
{:member, false} ->

View File

@ -26,7 +26,7 @@ defmodule Mobilizon.GraphQL.Resolvers.Group do
}
}
) do
with {:group, {:ok, %Actor{id: group_id} = group}} <-
with {:group, {:ok, %Actor{id: group_id, suspended: false} = group}} <-
{:group, ActivityPub.find_or_make_group_from_nickname(name)},
{:actor, %Actor{id: actor_id} = _actor} <- {:actor, Users.get_actor_for_user(user)},
{:member, true} <- {:member, Actors.is_member?(actor_id, group_id)} do
@ -44,7 +44,8 @@ defmodule Mobilizon.GraphQL.Resolvers.Group do
end
def find_group(_parent, %{preferred_username: name}, _resolution) do
with {:ok, actor} <- ActivityPub.find_or_make_group_from_nickname(name),
with {:ok, %Actor{suspended: false} = actor} <-
ActivityPub.find_or_make_group_from_nickname(name),
%Actor{} = actor <- restrict_fields_for_non_member_request(actor) do
{:ok, actor}
else
@ -96,7 +97,7 @@ defmodule Mobilizon.GraphQL.Resolvers.Group do
# TODO Move me to somewhere cleaner
defp save_attached_pictures(args) do
Enum.reduce([:avatar, :banner], args, fn key, args ->
if Map.has_key?(args, key) && !is_nil(args[key][:media]) do
if is_map(args) && Map.has_key?(args, key) && !is_nil(args[key][:media]) do
pic = args[key][:media]
with {:ok, %{name: name, url: url, content_type: content_type, size: _size}} <-
@ -122,14 +123,17 @@ defmodule Mobilizon.GraphQL.Resolvers.Group do
}
) do
with %Actor{id: creator_actor_id} = creator_actor <- Users.get_actor_for_user(user),
args <- Map.update(args, :preferred_username, "", &String.downcase/1),
args <- Map.put(args, :creator_actor, creator_actor),
args <- Map.put(args, :creator_actor_id, creator_actor_id),
args <- save_attached_pictures(args),
args when is_map(args) <- Map.update(args, :preferred_username, "", &String.downcase/1),
args when is_map(args) <- Map.put(args, :creator_actor, creator_actor),
args when is_map(args) <- Map.put(args, :creator_actor_id, creator_actor_id),
{:picture, args} when is_map(args) <- {:picture, save_attached_pictures(args)},
{:ok, _activity, %Actor{type: :Group} = group} <-
API.Groups.create_group(args) do
{:ok, group}
else
{:picture, {:error, :file_too_large}} ->
{:error, dgettext("errors", "The provided picture is too heavy")}
{:error, err} when is_binary(err) ->
{:error, err}
end
@ -154,12 +158,15 @@ defmodule Mobilizon.GraphQL.Resolvers.Group do
with %Actor{} = updater_actor <- Users.get_actor_for_user(user),
{:administrator, true} <-
{:administrator, Actors.is_administrator?(updater_actor.id, group_id)},
args <- Map.put(args, :updater_actor, updater_actor),
args <- save_attached_pictures(args),
args when is_map(args) <- Map.put(args, :updater_actor, updater_actor),
{:picture, args} when is_map(args) <- {:picture, save_attached_pictures(args)},
{:ok, _activity, %Actor{type: :Group} = group} <-
API.Groups.update_group(args) do
{:ok, group}
else
{:picture, {:error, :file_too_large}} ->
{:error, dgettext("errors", "The provided picture is too heavy")}
{:error, err} when is_binary(err) ->
{:error, err}

View File

@ -70,7 +70,7 @@ defmodule Mobilizon.GraphQL.Resolvers.Participant do
participant,
Map.get(args, :locale, "en")
)
|> Email.Mailer.deliver_later()
|> Email.Mailer.send_email_later()
end
{:ok, participant}
@ -264,7 +264,7 @@ defmodule Mobilizon.GraphQL.Resolvers.Participant do
@spec valid_email?(String.t() | nil) :: boolean
defp valid_email?(email) when is_nil(email), do: false
defp valid_email?(email) when is_bitstring(email) do
defp valid_email?(email) when is_binary(email) do
email
|> String.trim()
|> Checker.valid?()

View File

@ -225,9 +225,9 @@ defmodule Mobilizon.GraphQL.Resolvers.Person do
end
defp save_picture(media, key) do
with {:ok, %{name: name, url: url, content_type: content_type, size: _size}} <-
with {:ok, %{name: name, url: url, content_type: content_type, size: size}} <-
Upload.store(media.file, type: key, description: media.alt) do
%{"name" => name, "url" => url, "mediaType" => content_type}
%{"name" => name, "url" => url, "content_type" => content_type, "size" => size}
end
end

View File

@ -115,7 +115,7 @@ defmodule Mobilizon.GraphQL.Resolvers.User do
def create_user(_parent, args, _resolution) do
with :registration_ok <- check_registration_config(args),
{:ok, %User{} = user} <- Users.register(args),
{:ok, %Bamboo.Email{}} <-
%Bamboo.Email{} <-
Email.User.send_confirmation_email(user, Map.get(args, :locale, "en")) do
{:ok, user}
else
@ -206,7 +206,7 @@ defmodule Mobilizon.GraphQL.Resolvers.User do
Users.get_user_by_email(email, activated: true, unconfirmed: false),
{:can_reset_password, true} <-
{:can_reset_password, Authenticator.can_reset_password?(user)},
{:ok, %Bamboo.Email{} = _email_html} <-
{:ok, %Bamboo.Email{}} <-
Email.User.send_password_reset_email(user, Map.get(args, :locale, locale)) do
{:ok, email}
else
@ -358,11 +358,11 @@ defmodule Mobilizon.GraphQL.Resolvers.User do
{:ok, %User{} = user} <- Users.update_user_email(user, new_email) do
user
|> Email.User.send_email_reset_old_email()
|> Email.Mailer.deliver_later()
|> Email.Mailer.send_email_later()
user
|> Email.User.send_email_reset_new_email()
|> Email.Mailer.deliver_later()
|> Email.Mailer.send_email_later()
{:ok, user}
else

View File

@ -33,6 +33,8 @@ defmodule Mobilizon.GraphQL.Schema.ConfigType do
description: "The instance's enabled resource providers"
)
field(:upload_limits, :upload_limits, description: "The configuration for upload limits")
field(:timezones, list_of(:string), description: "The instance's available timezones")
field(:features, :features, description: "The instance's features")
field(:version, :string, description: "The instance's version")
@ -61,6 +63,7 @@ defmodule Mobilizon.GraphQL.Schema.ConfigType do
field(:rules, :string, description: "The instance's rules")
field(:auth, :auth, description: "The instance auth methods")
field(:instance_feeds, :instance_feeds, description: "The instance's feed settings")
end
@desc """
@ -283,6 +286,19 @@ defmodule Mobilizon.GraphQL.Schema.ConfigType do
field(:label, :string, description: "The label for the auth provider")
end
@desc """
An upload limits configuration
"""
object :upload_limits do
field(:default, :integer, description: "The default limitation, in bytes")
field(:avatar, :integer, description: "The avatar limitation, in bytes")
field(:banner, :integer, description: "The banner limitation, in bytes")
end
object :instance_feeds do
field(:enabled, :boolean, description: "Whether the instance-wide feeds are enabled")
end
object :config_queries do
@desc "Get the instance config"
field :config, :config do

View File

@ -16,9 +16,10 @@ defmodule Mix.Tasks.Mobilizon.Relay.Follow do
{:ok, _activity, _follow} ->
# put this task to sleep to allow the genserver to push out the messages
:timer.sleep(500)
shell_info("Requested to follow #{target}")
{:error, e} ->
IO.puts(:stderr, "Error while following #{target}: #{inspect(e)}")
shell_error("Error while following #{target}: #{inspect(e)}")
end
end

View File

@ -16,9 +16,10 @@ defmodule Mix.Tasks.Mobilizon.Relay.Unfollow do
{:ok, _activity, _follow} ->
# put this task to sleep to allow the genserver to push out the messages
:timer.sleep(500)
shell_info("Unfollowed #{target}")
{:error, e} ->
IO.puts(:stderr, "Error while unfollowing #{target}: #{inspect(e)}")
shell_error("Error while unfollowing #{target}: #{inspect(e)}")
end
end

View File

@ -40,7 +40,7 @@ defmodule Mix.Tasks.Mobilizon.Users.Modify do
with {:ok, %User{} = user} <- Users.get_user_by_email(email),
attrs <- %{},
role <- calculate_role(admin?, moderator?, user?),
attrs <- process_new_value(attrs, :mail, new_email, user.email),
attrs <- process_new_value(attrs, :email, new_email, user.email),
attrs <- process_new_value(attrs, :role, role, user.role),
attrs <-
if(disable? && !is_nil(user.confirmed_at),
@ -58,7 +58,11 @@ defmodule Mix.Tasks.Mobilizon.Users.Modify do
An user has been modified with the following information:
- email: #{user.email}
- Role: #{user.role}
- Activated: #{if user.confirmed_at, do: user.confirmed_at, else: "False"}
- account status: #{
if user.confirmed_at,
do: "activated on #{DateTime.to_string(user.confirmed_at)} (UTC)",
else: "disabled"
}
""")
else
{:makes_changes, false} ->

View File

@ -19,8 +19,11 @@ defmodule Mix.Tasks.Mobilizon.Users.Show do
actors <- Users.get_actors_for_user(user) do
shell_info("""
Informations for the user #{user.email}:
- Activated: #{user.confirmed_at}
- Disabled: #{user.disabled}
- account status: #{
if user.confirmed_at,
do: "Activated on #{DateTime.to_string(user.confirmed_at)} (UTC)",
else: "disabled"
}
- Role: #{user.role}
#{display_actors(actors)}
""")

View File

@ -16,7 +16,7 @@ defmodule Mobilizon do
alias Mobilizon.{Config, Storage, Web}
alias Mobilizon.Federation.ActivityPub
alias Mobilizon.Service.ErrorPage
alias Mobilizon.Service.{ErrorPage, ErrorReporter}
alias Mobilizon.Service.Export.{Feed, ICalendar}
@name Mix.Project.config()[:name]
@ -66,6 +66,16 @@ defmodule Mobilizon do
] ++
task_children(@env)
Logger.add_backend(Sentry.LoggerBackend)
:ok = Oban.Telemetry.attach_default_logger()
:telemetry.attach_many(
"oban-errors",
[[:oban, :job, :exception], [:oban, :circuit, :trip]],
&ErrorReporter.handle_event/4,
%{}
)
Supervisor.start_link(children, strategy: :one_for_one, name: Mobilizon.Supervisor)
end

View File

@ -156,7 +156,7 @@ defmodule Mobilizon.Actors do
query
|> filter_by_type(type)
|> filter_by_name(String.split(name, "@"))
|> filter_by_name(name |> String.trim() |> String.trim_leading("@") |> String.split("@"))
|> Repo.one()
end
@ -1282,11 +1282,13 @@ defmodule Mobilizon.Actors do
@doc """
Whether the actor needs to be updated.
Local actors obviously don't need to be updated
Local actors obviously don't need to be updated, neither do suspended ones
"""
@spec needs_update?(Actor.t()) :: boolean
def needs_update?(%Actor{domain: nil}), do: false
def needs_update?(%Actor{suspended: true}), do: false
def needs_update?(%Actor{last_refreshed_at: nil, domain: domain}) when not is_nil(domain),
do: true

View File

@ -23,7 +23,7 @@ defmodule Mobilizon.Actors.Bot do
schema "bots" do
field(:source, :string)
field(:type, :string, default: :ics)
field(:type, :string, default: "ics")
belongs_to(:actor, Actor)
belongs_to(:user, User)

View File

@ -83,8 +83,10 @@ defmodule Mobilizon.Addresses.Address do
def representation(nil), do: nil
def representation(%__MODULE__{} = address) do
"#{address.street} #{address.postal_code} #{address.locality} #{address.region} #{
address.country
}"
String.trim(
"#{address.street} #{address.postal_code} #{address.locality} #{address.region} #{
address.country
}"
)
end
end

View File

@ -78,7 +78,7 @@ defmodule Mobilizon.Admin do
defp stringify_struct(struct), do: struct
def get_admin_setting_value(group, name, fallback \\ nil)
when is_bitstring(group) and is_bitstring(name) do
when is_binary(group) and is_binary(name) do
case Repo.get_by(Setting, group: group, name: name) do
nil ->
fallback

View File

@ -0,0 +1,17 @@
defmodule Mobilizon.Service.ErrorReporter do
@moduledoc """
Module to delegate all exceptions to Sentry
"""
def handle_event([:oban, :job, :exception], measure, %{job: job} = meta, _) do
extra =
job
|> Map.take([:id, :args, :meta, :queue, :worker])
|> Map.merge(measure)
Sentry.capture_exception(meta.error, stacktrace: meta.stacktrace, extra: extra)
end
def handle_event([:oban, :circuit, :trip], _measure, meta, _) do
Sentry.capture_exception(meta.error, stacktrace: meta.stacktrace, extra: meta)
end
end

View File

@ -74,7 +74,7 @@ defmodule Mobilizon.Service.Geospatial.Provider do
%Geo.Point{coordinates: {x, y}, srid: srid}
end
def coordinates([x, y], srid) when is_bitstring(x) and is_bitstring(y) do
def coordinates([x, y], srid) when is_binary(x) and is_binary(y) do
%Geo.Point{coordinates: {String.to_float(x), String.to_float(y)}, srid: srid}
end

View File

@ -5,28 +5,26 @@ defmodule Mobilizon.Service.HTTP.ActivityPub do
alias Mobilizon.Config
@adapter Application.get_env(:tesla, __MODULE__, [])[:adapter] || Tesla.Adapter.Hackney
@default_opts [
recv_timeout: 20_000
]
@user_agent Config.instance_user_agent()
def client(options \\ []) do
headers = Keyword.get(options, :headers, [])
adapter = Application.get_env(:tesla, __MODULE__, [])[:adapter] || Tesla.Adapter.Hackney
opts = Keyword.merge(@default_opts, Keyword.get(options, :opts, []))
middleware = [
{Tesla.Middleware.Headers,
[{"User-Agent", @user_agent}, {"Accept", "application/activity+json"}] ++ headers},
[{"User-Agent", Config.instance_user_agent()}, {"Accept", "application/activity+json"}] ++
headers},
Tesla.Middleware.FollowRedirects,
{Tesla.Middleware.Timeout, timeout: 10_000},
{Tesla.Middleware.JSON,
decode_content_types: ["application/activity+json", "application/ld+json"]}
]
adapter = {@adapter, opts}
Tesla.client(middleware, adapter)
Tesla.client(middleware, {adapter, opts})
end
def get(client, url) do

View File

@ -13,13 +13,11 @@ defmodule Mobilizon.Service.HTTP.GeospatialClient do
adapter(Tesla.Adapter.Hackney, @default_opts)
@user_agent Config.instance_user_agent()
plug(Tesla.Middleware.FollowRedirects)
plug(Tesla.Middleware.Timeout, timeout: 10_000)
plug(Tesla.Middleware.Headers, [{"User-Agent", @user_agent}])
plug(Tesla.Middleware.Headers, [{"User-Agent", Config.instance_user_agent()}])
plug(Tesla.Middleware.JSON)
end

View File

@ -0,0 +1,24 @@
defmodule Mobilizon.Service.HTTP.HostMetaClient do
@moduledoc """
Tesla HTTP Basic Client
with XML middleware
"""
use Tesla
alias Mobilizon.Config
@default_opts [
recv_timeout: 20_000
]
adapter(Tesla.Adapter.Hackney, @default_opts)
plug(Tesla.Middleware.FollowRedirects)
plug(Tesla.Middleware.Timeout, timeout: 10_000)
plug(Tesla.Middleware.Headers, [
{"User-Agent", Config.instance_user_agent()},
{"Accept", "application/xrd+xml, application/xml, text/xml"}
])
end

View File

@ -12,11 +12,9 @@ defmodule Mobilizon.Service.HTTP.RemoteMediaDownloaderClient do
adapter(Tesla.Adapter.Hackney, @default_opts)
@user_agent Config.instance_user_agent()
plug(Tesla.Middleware.FollowRedirects)
plug(Tesla.Middleware.Timeout, timeout: 10_000)
plug(Tesla.Middleware.Headers, [{"User-Agent", @user_agent}])
plug(Tesla.Middleware.Headers, [{"User-Agent", Config.instance_user_agent()}])
end

View File

@ -12,11 +12,9 @@ defmodule Mobilizon.Service.HTTP.RichMediaPreviewClient do
adapter(Tesla.Adapter.Hackney, @default_opts)
@user_agent Config.instance_user_agent()
plug(Tesla.Middleware.FollowRedirects)
plug(Tesla.Middleware.Timeout, timeout: 10_000)
plug(Tesla.Middleware.Headers, [{"User-Agent", @user_agent}])
plug(Tesla.Middleware.Headers, [{"User-Agent", Config.instance_user_agent()}])
end

View File

@ -13,14 +13,12 @@ defmodule Mobilizon.Service.HTTP.WebfingerClient do
adapter(Tesla.Adapter.Hackney, @default_opts)
@user_agent Config.instance_user_agent()
plug(Tesla.Middleware.FollowRedirects)
plug(Tesla.Middleware.Timeout, timeout: 10_000)
plug(Tesla.Middleware.Headers, [
{"User-Agent", @user_agent},
{"User-Agent", Config.instance_user_agent()},
{"Accept", "application/json, application/activity+json, application/jrd+json"}
])

View File

@ -9,6 +9,8 @@ defmodule Mobilizon.Service.Metadata.Instance do
alias Mobilizon.Config
alias Mobilizon.Service.Metadata.Utils
alias Mobilizon.Web.Endpoint
alias Mobilizon.Web.Router.Helpers, as: Routes
import Mobilizon.Web.Gettext
@doc """
Build the list of tags for the instance
@ -40,6 +42,26 @@ defmodule Mobilizon.Service.Metadata.Instance do
Tag.tag(:meta, property: "og:description", content: description),
Tag.tag(:meta, property: "og:type", content: "website"),
HTML.raw(instance_json_ld)
] ++ maybe_add_instance_feeds(Config.get([:instance, :enable_instance_feeds]))
end
@spec maybe_add_instance_feeds(boolean()) :: list()
defp maybe_add_instance_feeds(true) do
[
Tag.tag(:link,
rel: "alternate",
type: "application/atom+xml",
title: gettext("%{name}'s feed", name: Config.instance_name()) |> HTML.raw(),
href: Routes.feed_url(Endpoint, :instance, :atom)
),
Tag.tag(:link,
rel: "alternate",
type: "text/calendar",
title: gettext("%{name}'s feed", name: Config.instance_name()) |> HTML.raw(),
href: Routes.feed_url(Endpoint, :instance, :ics)
)
]
end
defp maybe_add_instance_feeds(false), do: []
end

View File

@ -60,12 +60,16 @@ defmodule Mobilizon.Service.RichMedia.Favicon do
uri = URI.parse(url)
cond do
is_nil(image_uri.host) -> "#{uri.scheme}://#{uri.host}#{path}"
is_nil(image_uri.host) -> "#{uri.scheme}://#{uri.host}#{correct_path(path)}"
is_nil(image_uri.scheme) -> "#{uri.scheme}:#{path}"
true -> path
end
end
# Sometimes paths have "/" in front, sometimes not
defp correct_path("/" <> _ = path), do: path
defp correct_path(path), do: "/#{path}"
@spec find_favicon_link_tag(String.t()) :: {:ok, tuple()} | {:error, any()}
defp find_favicon_link_tag(html) do
with {:ok, html} <- Floki.parse_document(html),

View File

@ -23,7 +23,7 @@ defmodule Mobilizon.Service.Workers.Notification do
Users.get_user_with_settings!(user_id) do
email
|> Notification.before_event_notification(participant, locale)
|> Mailer.deliver_later()
|> Mailer.send_email_later()
:ok
end
@ -48,7 +48,7 @@ defmodule Mobilizon.Service.Workers.Notification do
true <- length(participations) > 0 do
user
|> Notification.on_day_notification(participations, total, locale)
|> Mailer.deliver_later()
|> Mailer.send_email_later()
:ok
else
@ -77,7 +77,7 @@ defmodule Mobilizon.Service.Workers.Notification do
true <- length(participations) > 0 do
user
|> Notification.weekly_notification(participations, total, locale)
|> Mailer.deliver_later()
|> Mailer.send_email_later()
:ok
else
@ -99,7 +99,7 @@ defmodule Mobilizon.Service.Workers.Notification do
Events.list_participants_for_event(event_id, [:not_approved]) do
user
|> Notification.pending_participation_notification(event, total)
|> Mailer.deliver_later()
|> Mailer.send_email_later()
:ok
else

View File

@ -23,7 +23,8 @@ defmodule Mobilizon.Web.Auth.Context do
context =
case Guardian.Plug.current_resource(conn) do
%User{} = user ->
%User{id: user_id, email: user_email} = user ->
Sentry.Context.set_user_context(%{id: user_id, name: user_email})
Map.put(context, :current_user, user)
nil ->

View File

@ -143,6 +143,6 @@ defmodule Mobilizon.Web.Email.Event do
) do
email
|> Email.Event.event_updated(actor, old_event, event, diff, timezone, locale)
|> Email.Mailer.deliver_later()
|> Email.Mailer.send_email_later()
end
end

Some files were not shown because too many files have changed in this diff Show More