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
6 changed files with 16 additions and 16 deletions

View File

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

View File

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

View File

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

View File

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