Fix UserNotify ToolTip

This commit is contained in:
Phenom 2021-02-18 18:38:58 +01:00
parent 33007f902f
commit e2e89dc971
17 changed files with 121 additions and 80 deletions

View file

@ -94,6 +94,16 @@ unsigned int ChatUserNotify::getNewCount()
return sum;
}
QString ChatUserNotify::getTrayMessage(bool plural)
{
return plural ? tr("You have %1 mentions") : tr("You have %1 mention");
}
QString ChatUserNotify::getNotifyMessage(bool plural)
{
return plural ? tr("%1 mentions") : tr("%1 mention");
}
void ChatUserNotify::iconClicked()
{
ChatDialog *chatDialog = NULL;