Rename conversation strings to discussion
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
39c03301c9
commit
c3f73f4f87
|
@ -510,10 +510,7 @@
|
|||
"Website": "Website",
|
||||
"Actor": "Actor",
|
||||
"Statut": "Statut",
|
||||
"Conversations": "Conversations",
|
||||
"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.",
|
||||
"Upcoming events": "Upcoming events",
|
||||
"View all upcoming events": "View all upcoming events",
|
||||
|
@ -525,7 +522,6 @@
|
|||
"Post a public message": "Post a public message",
|
||||
"View all todos": "View all todos",
|
||||
"Discussions": "Discussions",
|
||||
"View all conversations": "View all conversations",
|
||||
"No public upcoming events": "No public upcoming events",
|
||||
"Latest posts": "Latest posts",
|
||||
"Invite a new member": "Invite a new member",
|
||||
|
@ -703,5 +699,9 @@
|
|||
"(this link)": "(this link)",
|
||||
"Move resource to {folder}": "Move resource to {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"
|
||||
}
|
||||
|
|
|
@ -78,11 +78,9 @@
|
|||
"Confirmed: Will happen": "Confirmé : aura lieu",
|
||||
"Contact": "Contact",
|
||||
"Continue editing": "Continuer la modification",
|
||||
"Conversations": "Conversations",
|
||||
"Country": "Pays",
|
||||
"Create": "Créer",
|
||||
"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 group": "Créer un nouveau groupe",
|
||||
"Create a new identity": "Créer une nouvelle identité",
|
||||
|
@ -260,7 +258,6 @@
|
|||
"My groups": "Mes groupes",
|
||||
"My identities": "Mes identités",
|
||||
"Name": "Nom",
|
||||
"New conversation": "Nouvelle conversation",
|
||||
"New email": "Nouvelle adresse e-mail",
|
||||
"New folder": "Nouveau dossier",
|
||||
"New link": "Nouveau lien",
|
||||
|
@ -478,7 +475,6 @@
|
|||
"Username": "Pseudo",
|
||||
"Users": "Utilisateur⋅ice⋅s",
|
||||
"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 todos": "Voir tous les todos",
|
||||
"View all upcoming events": "Voir tous les événements à venir",
|
||||
|
@ -703,5 +699,9 @@
|
|||
"(this link)": "(ce lien)",
|
||||
"Move resource to {folder}": "Déplacer la ressource dans {folder}",
|
||||
"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"
|
||||
}
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue