diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-05-01 01:44:22 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-05-01 01:44:22 +0200 |
commit | 2c9ea8dd8a766c1518d2d09e711bde3d7e52270e (patch) | |
tree | 6081adf1fbeb0bf365a93f5104719293008cfa6c /src/history.cpp | |
parent | Updating AUTHORS. (diff) | |
download | rekonq-2c9ea8dd8a766c1518d2d09e711bde3d7e52270e.tar.xz |
i18n plural bugs. Courtesy patch of Kristol Baf
Diffstat (limited to 'src/history.cpp')
-rw-r--r-- | src/history.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/history.cpp b/src/history.cpp index ee21a8f2..afcb477a 100644 --- a/src/history.cpp +++ b/src/history.cpp @@ -1177,7 +1177,7 @@ QVariant HistoryTreeModel::data(const QModelIndex &index, int role) const } if (index.column() == 1) { - return QString::number(rowCount(index.sibling(index.row(), 0))) + i18n(" items") ; + return i18np("1 item", "%1 items", rowCount(index.sibling(index.row(), 0))); } } } |