diff options
author | Pino Toscano <pino@kde.org> | 2013-06-07 09:54:38 +0200 |
---|---|---|
committer | Pino Toscano <pino@kde.org> | 2013-06-07 09:54:38 +0200 |
commit | 43d4fc732abb294a89127ce55b80d7f78fd606c7 (patch) | |
tree | a36eee0653f737df1f8254d2f6a901c72b426cda /src/history | |
parent | Fix behavior on unloaded sites (diff) | |
download | rekonq-43d4fc732abb294a89127ce55b80d7f78fd606c7.tar.xz |
i18n fixes
- remove string puzzles when possible
- remove exclamation marks
- remove contractions ("don't" -> "do not", etc)
- lowercase "NOT" (do not shout to the user)
- remove extra spaces, or add them where needed
- few style/spelling fixes
Diffstat (limited to 'src/history')
-rw-r--r-- | src/history/historymodels.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/history/historymodels.cpp b/src/history/historymodels.cpp index 76b504d3..3c846d2f 100644 --- a/src/history/historymodels.cpp +++ b/src/history/historymodels.cpp @@ -155,9 +155,9 @@ QVariant HistoryModel::data(const QModelIndex &index, int role) const int visitCount = item.visitCount; tooltip += QL1S("<center> <b>") + item.url + QL1S("</b> </center>"); tooltip += QL1S("<hr/>"); - tooltip += i18n("First Visit: ") + firstVisit + QL1S("<br/>"); - tooltip += i18n("Last Visit: ") + lastVisit + QL1S("<br/>"); - tooltip += i18n("Number of Visits: ") + QString::number(visitCount); + tooltip += i18n("First Visit: %1", firstVisit) + QL1S("<br/>"); + tooltip += i18n("Last Visit: %1", lastVisit) + QL1S("<br/>"); + tooltip += i18n("Number of Visits: %1", QString::number(visitCount)); return tooltip; } |