summaryrefslogtreecommitdiff
path: root/src/history.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/history.cpp')
-rw-r--r--src/history.cpp2
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)));
}
}
}