]> cloud.milkyroute.net Git - dolphin.git/commitdiff
i18n fixes. Note: %n is no longer used in plural strings.
authorChusslove Illich <caslav.ilic@gmx.net>
Tue, 20 Feb 2007 15:03:09 +0000 (15:03 +0000)
committerChusslove Illich <caslav.ilic@gmx.net>
Tue, 20 Feb 2007 15:03:09 +0000 (15:03 +0000)
svn path=/trunk/KDE/kdebase/apps/; revision=635655

src/dolphinmainwindow.cpp
src/statusbarspaceinfo.cpp

index 98c8af83422f51b684726e6c6ff0180a7d3545ec..99ddcbbef591e61afb1242f131b15c271e160ebe 100644 (file)
@@ -590,7 +590,7 @@ void DolphinMainWindow::updatePasteAction()
             pasteAction->setText(i18n("Paste 1 File"));\r
         }\r
         else {\r
-            pasteAction->setText(i18n("Paste %1 Files").arg(count));\r
+            pasteAction->setText(i18n("Paste %1 Files"count));\r
         }\r
     }\r
     else {\r
index b61cf3f45124d8e885fcb782c7a86efc5b621725..8d07d799623fc13edc06c91cc5e1315fc52190e6 100644 (file)
@@ -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) {