forked from qt-creator/qt-creator
I18n: Fixed plurals of bytes
Change-Id: I620e9338087d9cdc08b440b7417a9c22497b6abc Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
This commit is contained in:
committed by
Robert Löhning
parent
506df46f0b
commit
5e4584253a
@@ -394,7 +394,7 @@ QString WatchData::toToolTip() const
|
||||
formatToolTipRow(str, tr("Referencing Address"),
|
||||
QString::fromLatin1(hexReferencingAddress()));
|
||||
if (size)
|
||||
formatToolTipRow(str, tr("Static Object Size"), tr("%1 bytes").arg(size));
|
||||
formatToolTipRow(str, tr("Static Object Size"), tr("%n bytes", 0, size));
|
||||
formatToolTipRow(str, tr("Internal ID"), QLatin1String(iname));
|
||||
str << "</table></body></html>";
|
||||
return res;
|
||||
|
||||
Reference in New Issue
Block a user