]> cloud.milkyroute.net Git - dolphin.git/commitdiff
update to i18n change: no more %n in plural calls
authorPeter Penz <peter.penz19@gmail.com>
Tue, 13 Feb 2007 17:35:17 +0000 (17:35 +0000)
committerPeter Penz <peter.penz19@gmail.com>
Tue, 13 Feb 2007 17:35:17 +0000 (17:35 +0000)
svn path=/trunk/playground/utils/dolphin/; revision=633273

src/dolphinview.cpp

index 9a516af2d1428574f94d9010bcb57434fa363a68..a9f677244206b3bf2d75abe4cf1b02a0f53661a1 100644 (file)
@@ -781,7 +781,7 @@ QString DolphinView::selectionStatusBarText() const
     }
 
     if (folderCount > 0) {
-        text = i18np("1 Folder selected", "%n Folders selected", folderCount);
+        text = i18np("1 Folder selected", "%1 Folders selected", folderCount);
         if (fileCount > 0) {
             text += ", ";
         }
@@ -789,7 +789,7 @@ QString DolphinView::selectionStatusBarText() const
 
     if (fileCount > 0) {
         const QString sizeText(KIO::convertSize(byteSize));
-        text += i18np("1 File selected (%1)", "%n Files selected (%1)", fileCount, sizeText);
+        text += i18np("1 File selected (%2)", "%1 Files selected (%2)", fileCount, sizeText);
     }
 
     return text;