From 06ab90de1eda4bd57c07a2f55f45c94cc6a39fd5 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Sat, 13 Mar 2021 19:08:23 +0100 Subject: [PATCH] Fix typo --- assets/langs/fr.json | 2 +- lib/ui/screens/conversation_screen.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/langs/fr.json b/assets/langs/fr.json index f63b6fa..60208bd 100644 --- a/assets/langs/fr.json +++ b/assets/langs/fr.json @@ -474,7 +474,7 @@ "The only way to join the group is to be invited by a moderator": "Seul un modérateur peut inviter quelqu'un à rejoindre le groupe", "The password and its confirmation do not match!": "La confirmation ne correspond pas au mot de passe !", "The post has been successfully created!": "Le post a été créé avec succès !", - "There is no message yet in this converation.": "Il y n'a pas encore de message dans cette conversation.", + "There is no message yet in this conversation.": "Il y n'a pas encore de message dans cette conversation.", "There is no post to display here yet.": "Il n'y a pas encore de post à afficher.", "This account is private.": "Ce compte est privé.", "This file could not be sent: it is too big! (Max allowed size: %1%)": "Ce fichier ne peut pas être envoyé : il est trop lourd ! (Taille maximale autorisée: %1%)", diff --git a/lib/ui/screens/conversation_screen.dart b/lib/ui/screens/conversation_screen.dart index e09df28..4c0052d 100644 --- a/lib/ui/screens/conversation_screen.dart +++ b/lib/ui/screens/conversation_screen.dart @@ -391,7 +391,7 @@ class _ConversationScreenState extends SafeState { Widget _buildNoMessagesNotice() { return Expanded( child: Center( - child: Text(tr("There is no message yet in this converation.")), + child: Text(tr("There is no message yet in this conversation.")), ), ); }