I18n: Fixed plurals of bytes

Change-Id: I620e9338087d9cdc08b440b7417a9c22497b6abc
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
This commit is contained in:
Robert Loehning
2012-07-27 19:21:03 +02:00
committed by Robert Löhning
parent 506df46f0b
commit 5e4584253a
3 changed files with 4 additions and 5 deletions

View File

@@ -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;