From: Peter Penz Date: Tue, 13 Feb 2007 17:35:17 +0000 (+0000) Subject: update to i18n change: no more %n in plural calls X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/24636214578113d309017f3e96fab65306c7ee3f update to i18n change: no more %n in plural calls svn path=/trunk/playground/utils/dolphin/; revision=633273 --- diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp index 9a516af2d..a9f677244 100644 --- a/src/dolphinview.cpp +++ b/src/dolphinview.cpp @@ -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;