diff options
| author | Panagiotis Papadopoulos <pano_90@gmx.net> | 2010-08-11 14:08:41 +0200 | 
|---|---|---|
| committer | Panagiotis Papadopoulos <pano_90@gmx.net> | 2010-08-11 14:08:41 +0200 | 
| commit | 4235d24924f49fafe440c9d21e1172a819546077 (patch) | |
| tree | 94d8ba21b03a945476f7d2f3302eb313221c21bb | |
| parent | Delaying single shots to let rekonq have more time to show itself before... (diff) | |
| download | rekonq-4235d24924f49fafe440c9d21e1172a819546077.tar.xz | |
Stay consistent with the terms
In the Favorites page we add Favorites, not Previews^^
| -rw-r--r-- | src/newtabpage.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/newtabpage.cpp b/src/newtabpage.cpp index 62b97d4d..1c14f3dc 100644 --- a/src/newtabpage.cpp +++ b/src/newtabpage.cpp @@ -171,7 +171,7 @@ void NewTabPage::favoritesPage()      add.findFirst("a").setAttribute("href", "about:preview/add");      add.findFirst("img").setAttribute("src" , QString("file:///" +                                        KIconLoader::global()->iconPath("list-add", KIconLoader::Small || KIconLoader::SizeSmall))); -    add.findFirst("span").appendInside(i18n("Add Preview")); +    add.findFirst("span").appendInside(i18n("Add Favorite"));      m_root.document().findFirst("#actions").appendInside(add);      QStringList names = ReKonfig::previewNames(); @@ -180,7 +180,7 @@ void NewTabPage::favoritesPage()      if (urls.isEmpty())      {          m_root.addClass("empty"); -        m_root.setPlainText(i18n("You can add a preview by clicking the \"Add Preview\" button in the top-right corner of this page")); +        m_root.setPlainText(i18n("You can add a favorite by clicking the \"Add Favorite\" button in the top-right corner of this page"));          return;      } | 
