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

@ -136,12 +136,12 @@ unsigned int ChatLobbyUserNotify::getNewCount()
QString ChatLobbyUserNotify::getTrayMessage(bool plural)
{
return plural ? tr("You have %1 new messages") : tr("You have %1 new message");
return plural ? tr("You have %1 mentions") : tr("You have %1 mention");
}
QString ChatLobbyUserNotify::getNotifyMessage(bool plural)
{
return plural ? tr("%1 new messages") : tr("%1 new message");
return plural ? tr("%1 mentions") : tr("%1 mention");
}
void ChatLobbyUserNotify::iconClicked()