1
0
Fork 0
mirror of https://framagit.org/framasoft/mobilizon.git synced 2025-03-12 09:32:48 +00:00

#1684 Mentions the activity in the title of the event created

This commit is contained in:
Massedil 2025-02-14 17:58:25 +01:00
parent bc72ecbe0f
commit 57d0812be9
2 changed files with 6 additions and 2 deletions

View file

@ -268,6 +268,7 @@
"Create a discussion": "Créer une discussion",
"Create a folder": "Créer un dossier",
"Create a new event": "Créer un nouvel événement",
"Create a new event or a new activity": "Créer un nouvel événement ou une nouvelle activité",
"Create a new group": "Créer un nouveau groupe",
"Create a new identity": "Créer une nouvelle identité",
"Create a new list": "Créer une nouvelle liste",

View file

@ -1,9 +1,12 @@
<template>
<div class="container mx-auto" v-if="hasCurrentActorPermissionsToEdit">
<h1 class="" v-if="isUpdate === true">
<h1 v-if="isUpdate === true">
{{ t("Update event {name}", { name: event.title }) }}
</h1>
<h1 class="" v-else>
<h1 v-else-if="configResult?.config.longEvents">
{{ t("Create a new event or a new activity") }}
</h1>
<h1 v-else>
{{ t("Create a new event") }}
</h1>