mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
Remove "talking to" prefix from private chats
Additionally, use the same name for “private chat“ in all menus (we had “personal talk” and “direct chat“ before)
This commit is contained in:
parent
6065587d78
commit
31635d2ae8
2 changed files with 3 additions and 3 deletions
|
|
@ -51,7 +51,7 @@ void TabMessage::addMentionTag(QString mentionTag) {
|
|||
|
||||
void TabMessage::retranslateUi()
|
||||
{
|
||||
messageMenu->setTitle(tr("Personal &talk"));
|
||||
messageMenu->setTitle(tr("Private &chat"));
|
||||
aLeave->setText(tr("&Leave"));
|
||||
}
|
||||
|
||||
|
|
@ -68,7 +68,7 @@ QString TabMessage::getUserName() const
|
|||
|
||||
QString TabMessage::getTabText() const
|
||||
{
|
||||
return tr("Talking to %1").arg(QString::fromStdString(otherUserInfo->name()));
|
||||
return tr("%1 - Private chat").arg(QString::fromStdString(otherUserInfo->name()));
|
||||
}
|
||||
|
||||
void TabMessage::closeRequest()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue