We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76fb52e commit 902d49bCopy full SHA for 902d49b
Client/qtTeamTalk/chattextlist.cpp
@@ -131,7 +131,7 @@ void ChatTextList::joinedChannel(int channelid)
131
topicItem->setData(Qt::UserRole + 3, tr("Topic: %1").arg(_Q(chan.szTopic)));
132
addItem(topicItem);
133
134
- QListWidgetItem* quotaItem = new QListWidgetItem(tr("Disk quota: %1 KBytes").arg(chan.nDiskQuota/1024));
+ QListWidgetItem* quotaItem = new QListWidgetItem(tr("Disk quota: %1").arg(getFormattedSize(chan.nDiskQuota)));
135
quotaItem->setForeground(Qt::darkRed);
136
quotaItem->setData(Qt::UserRole + 1, dt);
137
quotaItem->setData(Qt::UserRole + 2, tr("Channel"));
0 commit comments