1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-03-28 14:56:19 +01:00

src/libclient/api/interaction.h: cleanup

Change-Id: I5f3509ee76db39aa054f0ad8d06c3a3e49ca4c06
This commit is contained in:
ovari123 2025-02-13 21:09:27 -05:00 committed by ovari123@zoho.com
parent 79d3c7be03
commit d0639b4e88

View file

@ -286,9 +286,9 @@ getContactInteractionString(const QString& authorUri, const ContactAction& actio
if (authorUri.isEmpty()) {
return QObject::tr("You joined the conversation.");
}
return QObject::tr("%1 joined the conversation.").arg(authorUri);
return QObject::tr("%1 has joined the conversation.").arg(authorUri);
case ContactAction::LEAVE:
return QObject::tr("%1 left the conversation.").arg(authorUri);
return QObject::tr("%1 has left the conversation.").arg(authorUri);
case ContactAction::BANNED:
return QObject::tr("%1 was blocked from the conversation.").arg(authorUri);
case ContactAction::UNBANNED: