summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPanagiotis Papadopoulos <pano_90@gmx.net>2009-12-09 19:24:21 +0100
committerPanagiotis Papadopoulos <pano_90@gmx.net>2009-12-09 19:24:21 +0100
commit618f09a62bc73f6fd9ab2fdbe39815d0aa5cd37b (patch)
treef94e2934fcb2de0ef72d00a1c5cd51c8665ab631 /src
parentxss attach prevention. (diff)
downloadrekonq-618f09a62bc73f6fd9ab2fdbe39815d0aa5cd37b.tar.xz
String fixes for the walletwidget
Diffstat (limited to 'src')
-rw-r--r--src/walletwidget.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/walletwidget.cpp b/src/walletwidget.cpp
index efb5af12..f47a2c5b 100644
--- a/src/walletwidget.cpp
+++ b/src/walletwidget.cpp
@@ -40,9 +40,9 @@ WalletWidget::WalletWidget(QWidget *parent)
: QWidget(parent)
, m_label( new QLabel(this) )
{
- QPushButton *rememberButton = new QPushButton( i18n("remember"), this);
- QPushButton *neverHereButton = new QPushButton( i18n("never for this site"), this);
- QPushButton *notNowButton = new QPushButton( i18n("not now"), this);
+ QPushButton *rememberButton = new QPushButton( i18n("Remember"), this);
+ QPushButton *neverHereButton = new QPushButton( i18n("Never for This Site"), this);
+ QPushButton *notNowButton = new QPushButton( i18n("Not Now"), this);
connect(rememberButton, SIGNAL(clicked()), this, SLOT(rememberData()));
connect(neverHereButton, SIGNAL(clicked()), this, SLOT(neverRememberData()));
@@ -90,7 +90,7 @@ void WalletWidget::notNowRememberData()
void WalletWidget::onSaveFormData(const QString &key, const QUrl &url)
{
- m_label->setText( i18n("Do you want rekonq to remember the password for %1 on %2?")
+ m_label->setText( i18n("Do you want rekonq to remember the password for \"%1\" on \"%2\"?")
.arg(key)
.arg(url.host())
);