Rename conversation strings to discussion

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2020-06-26 12:08:07 +02:00
parent 39c03301c9
commit c3f73f4f87
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
6 changed files with 16 additions and 16 deletions

View File

@ -510,10 +510,7 @@
"Website": "Website", "Website": "Website",
"Actor": "Actor", "Actor": "Actor",
"Statut": "Statut", "Statut": "Statut",
"Conversations": "Conversations",
"Text": "Text", "Text": "Text",
"New conversation": "New conversation",
"Create a new conversation": "Create a new conversation",
"All group members and other eventual server admins will still be able to view this information.": "All group members and other eventual server admins will still be able to view this information.", "All group members and other eventual server admins will still be able to view this information.": "All group members and other eventual server admins will still be able to view this information.",
"Upcoming events": "Upcoming events", "Upcoming events": "Upcoming events",
"View all upcoming events": "View all upcoming events", "View all upcoming events": "View all upcoming events",
@ -525,7 +522,6 @@
"Post a public message": "Post a public message", "Post a public message": "Post a public message",
"View all todos": "View all todos", "View all todos": "View all todos",
"Discussions": "Discussions", "Discussions": "Discussions",
"View all conversations": "View all conversations",
"No public upcoming events": "No public upcoming events", "No public upcoming events": "No public upcoming events",
"Latest posts": "Latest posts", "Latest posts": "Latest posts",
"Invite a new member": "Invite a new member", "Invite a new member": "Invite a new member",
@ -703,5 +699,9 @@
"(this link)": "(this link)", "(this link)": "(this link)",
"Move resource to {folder}": "Move resource to {folder}", "Move resource to {folder}": "Move resource to {folder}",
"Create a folder": "Create a folder", "Create a folder": "Create a folder",
"No resources in this folder": "No resources in this folder" "No resources in this folder": "No resources in this folder",
"New discussion": "New discussion",
"Create a discussion": "Create a discussion",
"Create the discussion": "Create the discussion",
"View all discussions": "View all discussions"
} }

View File

@ -78,11 +78,9 @@
"Confirmed: Will happen": "Confirmé : aura lieu", "Confirmed: Will happen": "Confirmé : aura lieu",
"Contact": "Contact", "Contact": "Contact",
"Continue editing": "Continuer la modification", "Continue editing": "Continuer la modification",
"Conversations": "Conversations",
"Country": "Pays", "Country": "Pays",
"Create": "Créer", "Create": "Créer",
"Create a calc": "Créer un calc", "Create a calc": "Créer un calc",
"Create a new conversation": "Créer une nouvelle conversation",
"Create a new event": "Créer un nouvel évènement", "Create a new event": "Créer un nouvel évènement",
"Create a new group": "Créer un nouveau groupe", "Create a new group": "Créer un nouveau groupe",
"Create a new identity": "Créer une nouvelle identité", "Create a new identity": "Créer une nouvelle identité",
@ -260,7 +258,6 @@
"My groups": "Mes groupes", "My groups": "Mes groupes",
"My identities": "Mes identités", "My identities": "Mes identités",
"Name": "Nom", "Name": "Nom",
"New conversation": "Nouvelle conversation",
"New email": "Nouvelle adresse e-mail", "New email": "Nouvelle adresse e-mail",
"New folder": "Nouveau dossier", "New folder": "Nouveau dossier",
"New link": "Nouveau lien", "New link": "Nouveau lien",
@ -478,7 +475,6 @@
"Username": "Pseudo", "Username": "Pseudo",
"Users": "Utilisateur⋅ice⋅s", "Users": "Utilisateur⋅ice⋅s",
"View a reply": "Aucune réponse | Voir une réponse | Voir {totalReplies} réponses", "View a reply": "Aucune réponse | Voir une réponse | Voir {totalReplies} réponses",
"View all conversations": "Voir toutes les conversations",
"View all resources": "Voir toutes les resources", "View all resources": "Voir toutes les resources",
"View all todos": "Voir tous les todos", "View all todos": "Voir tous les todos",
"View all upcoming events": "Voir tous les événements à venir", "View all upcoming events": "Voir tous les événements à venir",
@ -703,5 +699,9 @@
"(this link)": "(ce lien)", "(this link)": "(ce lien)",
"Move resource to {folder}": "Déplacer la ressource dans {folder}", "Move resource to {folder}": "Déplacer la ressource dans {folder}",
"Create a folder": "Créer un dossier", "Create a folder": "Créer un dossier",
"No resources in this folder": "Aucune ressource dans ce dossier" "No resources in this folder": "Aucune ressource dans ce dossier",
"New discussion": "Nouvelle discussion",
"Create a discussion": "Créer une discussion",
"Create the discussion": "Créer la discussion",
"View all discussions": "Voir toutes les discussions"
} }

View File

@ -20,7 +20,7 @@
name: RouteName.CONVERSATION_LIST, name: RouteName.CONVERSATION_LIST,
params: { preferredUsername: conversation.actor.preferredUsername }, params: { preferredUsername: conversation.actor.preferredUsername },
}" }"
>{{ $t("Conversations") }}</router-link >{{ $t("Discussions") }}</router-link
> >
</li> </li>
<li class="is-active"> <li class="is-active">

View File

@ -20,7 +20,7 @@
name: RouteName.CONVERSATION_LIST, name: RouteName.CONVERSATION_LIST,
params: { preferredUsername: usernameWithDomain(group) }, params: { preferredUsername: usernameWithDomain(group) },
}" }"
>{{ $t("Conversations") }}</router-link >{{ $t("Discussions") }}</router-link
> >
</li> </li>
</ul> </ul>
@ -39,7 +39,7 @@
name: RouteName.CREATE_CONVERSATION, name: RouteName.CREATE_CONVERSATION,
params: { preferredUsername: this.preferredUsername }, params: { preferredUsername: this.preferredUsername },
}" }"
>{{ $t("New conversation") }}</b-button >{{ $t("New discussion") }}</b-button
> >
</section> </section>
</div> </div>

View File

@ -1,6 +1,6 @@
<template> <template>
<section class="section container"> <section class="section container">
<h1>{{ $t("Create a new conversation") }}</h1> <h1>{{ $t("Create a discussion") }}</h1>
<form @submit.prevent="createConversation"> <form @submit.prevent="createConversation">
<b-field :label="$t('Title')"> <b-field :label="$t('Title')">
@ -11,7 +11,7 @@
<editor v-model="conversation.text" /> <editor v-model="conversation.text" />
</b-field> </b-field>
<button class="button is-primary" type="submit">{{ $t("Create my group") }}</button> <button class="button is-primary" type="submit">{{ $t("Create the discussion") }}</button>
</form> </form>
</section> </section>
</template> </template>

View File

@ -133,7 +133,7 @@
name: RouteName.CONVERSATION_LIST, name: RouteName.CONVERSATION_LIST,
params: { preferredUsername: usernameWithDomain(group) }, params: { preferredUsername: usernameWithDomain(group) },
}" }"
>{{ $t("View all conversations") }}</router-link >{{ $t("View all discussions") }}</router-link
> >
</section> </section>
</div> </div>