summaryrefslogtreecommitdiff
path: root/src/rekonqpage
diff options
context:
space:
mode:
authormatgic78 <matgic78@gmail.com>2010-01-31 15:57:24 +0100
committermatgic78 <matgic78@gmail.com>2010-02-06 11:22:47 +0100
commitb9b292845f2953396fc088c551b31f79eddd3caa (patch)
treeec633b62b9efea6e3917ab64e225c63d5abcce43 /src/rekonqpage
parentAdd tooltips to buttons (diff)
downloadrekonq-b9b292845f2953396fc088c551b31f79eddd3caa.tar.xz
Changed strings following pano's recommandations
Diffstat (limited to 'src/rekonqpage')
-rw-r--r--src/rekonqpage/previewselectorbar.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rekonqpage/previewselectorbar.cpp b/src/rekonqpage/previewselectorbar.cpp
index e7800f09..5f3956d7 100644
--- a/src/rekonqpage/previewselectorbar.cpp
+++ b/src/rekonqpage/previewselectorbar.cpp
@@ -50,7 +50,7 @@ void PreviewSelectorBar::setup()
if(m_button != 0)
return;
- m_label = new QLabel(i18n("Please go to the page you want to preview"), this);
+ m_label = new QLabel(i18n("Please open up the webpage you want to add as favorite"), this);
m_label->setWordWrap(true);
QToolButton *closeButton = new QToolButton(this);
@@ -58,7 +58,7 @@ void PreviewSelectorBar::setup()
closeButton->setIcon(KIcon("dialog-close"));
connect(closeButton, SIGNAL(clicked(bool)), SLOT(hide()));
- m_button = new QPushButton(KIcon("insert-image"), i18n("Set to this page"), this);
+ m_button = new QPushButton(KIcon("insert-image"), i18n("Set to This Page"), this);
m_button->setMaximumWidth(250);
connect(m_button, SIGNAL(clicked(bool)), SLOT(clicked()));
@@ -91,7 +91,7 @@ void PreviewSelectorBar::verifyUrl()
else
{
m_button->setEnabled(false);
- m_button->setToolTip(i18n("You can't set this page as preview"));
+ m_button->setToolTip(i18n("You can not add this webpage as favorite"));
}
}