1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00
This commit is contained in:
Pierre HUBERT 2021-03-13 19:08:23 +01:00
parent 6e4207f517
commit 06ab90de1e
2 changed files with 2 additions and 2 deletions

View File

@ -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 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 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 !", "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.", "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 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%)", "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%)",

View File

@ -391,7 +391,7 @@ class _ConversationScreenState extends SafeState<ConversationScreen> {
Widget _buildNoMessagesNotice() { Widget _buildNoMessagesNotice() {
return Expanded( return Expanded(
child: Center( child: Center(
child: Text(tr("There is no message yet in this converation.")), child: Text(tr("There is no message yet in this conversation.")),
), ),
); );
} }