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:
parent
79d3c7be03
commit
d0639b4e88
1 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue