From 1a81483d2e1c269010b32355c0b64de0b0ba53b7 Mon Sep 17 00:00:00 2001 From: Chusslove Illich Date: Tue, 20 Feb 2007 15:03:09 +0000 Subject: i18n fixes. Note: %n is no longer used in plural strings. svn path=/trunk/KDE/kdebase/apps/; revision=635655 --- src/statusbarspaceinfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/statusbarspaceinfo.cpp') diff --git a/src/statusbarspaceinfo.cpp b/src/statusbarspaceinfo.cpp index b61cf3f45..8d07d7996 100644 --- a/src/statusbarspaceinfo.cpp +++ b/src/statusbarspaceinfo.cpp @@ -91,7 +91,7 @@ void StatusBarSpaceInfo::paintEvent(QPaintEvent* /* event */) } painter.drawRect(QRect(left, barTop + 2, right, barHeight - 1)); - text = i18n("%1% of %2 used", QString::number(100 - (int)(100.0 * m_kBAvailable / m_kBSize)), KIO::convertSizeFromKiB(m_kBSize)); + text = i18n("%1% of %2 used", 100 - (int)(100.0 * m_kBAvailable / m_kBSize), KIO::convertSizeFromKiB(m_kBSize)); } else { if (m_gettingSize) { -- cgit v1.3