diff options
| author | Peter Penz <[email protected]> | 2007-02-13 17:35:17 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-02-13 17:35:17 +0000 |
| commit | 24636214578113d309017f3e96fab65306c7ee3f (patch) | |
| tree | cf02090e246523da10b2c4e05b5ef2165d892382 | |
| parent | 67e47827f63a5a3a394f46d7d33aace4f33b2399 (diff) | |
update to i18n change: no more %n in plural calls
svn path=/trunk/playground/utils/dolphin/; revision=633273
| -rw-r--r-- | src/dolphinview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; |
