Skip to content
Snippets Groups Projects
Commit d0639b4e authored by ovari's avatar ovari Committed by ovari
Browse files

src/libclient/api/interaction.h: cleanup

Change-Id: I5f3509ee76db39aa054f0ad8d06c3a3e49ca4c06
parent 79d3c7be
No related branches found
No related tags found
No related merge requests found
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment