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:
parent
bc72ecbe0f
commit
57d0812be9
2 changed files with 6 additions and 2 deletions
|
@ -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",
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue