diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-07-07 23:04:00 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-07-07 23:04:00 +0200 |
commit | e2967867f4da88958e70bbcd1be58a325380832b (patch) | |
tree | 6f9db3a0e68dd60317f4e43acbfe7aba3c2f5314 /src | |
parent | Krazy fixes (diff) | |
download | rekonq-e2967867f4da88958e70bbcd1be58a325380832b.tar.xz |
string missed update: set new favorite --> reload thumbnail
CCBUG: 303149
Diffstat (limited to 'src')
-rw-r--r-- | src/newtabpage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newtabpage.cpp b/src/newtabpage.cpp index 89363fe4..a25f07a9 100644 --- a/src/newtabpage.cpp +++ b/src/newtabpage.cpp @@ -872,7 +872,7 @@ void NewTabPage::setupPreview(QWebElement e, int index, bool showControls) e.findFirst(QL1S(".left img")).setAttribute(QL1S("src"), QL1S("file:///") + KIconLoader::global()->iconPath("view-refresh", KIconLoader::DefaultState)); - e.findFirst(QL1S(".left")).setAttribute(QL1S("title"), i18n("Set new favorite")); + e.findFirst(QL1S(".left")).setAttribute(QL1S("title"), i18n("Reload thumbnail")); e.findFirst(QL1S(".left")).setAttribute(QL1S("href"), QL1S("about:preview/reload/") + QVariant(index).toString()); e.findFirst(QL1S(".right")).setAttribute(QL1S("href"), QL1S("about:preview/remove/") + QVariant(index).toString()); |