diff options
| author | Panagiotis Papadopoulos <pano_90@gmx.net> | 2009-08-09 03:32:08 +0200 | 
|---|---|---|
| committer | Panagiotis Papadopoulos <pano_90@gmx.net> | 2009-08-09 03:32:08 +0200 | 
| commit | 077ffac8155a5f767bd4f5da74d20d5ad9001c54 (patch) | |
| tree | 4a52be8509dc880e486f1f5b7e0047f74482ddc7 | |
| parent | Added colons to strings (diff) | |
| download | rekonq-077ffac8155a5f767bd4f5da74d20d5ad9001c54.tar.xz | |
Added some FIXME notes about some strings
| -rw-r--r-- | src/networkaccessmanager.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/networkaccessmanager.cpp b/src/networkaccessmanager.cpp index 32bc15b5..eefa0d8e 100644 --- a/src/networkaccessmanager.cpp +++ b/src/networkaccessmanager.cpp @@ -141,8 +141,8 @@ void NetworkAccessManager::authenticationRequired(QNetworkReply *reply, QAuthent      passwordWidget.iconLabel->setText(QString());      passwordWidget.iconLabel->setPixmap(mainWindow->style()->standardIcon(QStyle::SP_MessageBoxQuestion, 0, mainWindow).pixmap(32, 32)); - -    QString introMessage = i18n("<qt>Enter username and password for %1 at %2</qt>", +    //FIXME Replace the text below with an explanation of what exactly %1 and %2 stand for +    QString introMessage = i18nc("%1=stuff %2=stuff2", "<qt>Enter username and password for %1 at %2</qt>",                                    Qt::escape(reply->url().toString()),                                    Qt::escape(reply->url().toString())  );      passwordWidget.introLabel->setText(introMessage); @@ -172,7 +172,7 @@ void NetworkAccessManager::proxyAuthenticationRequired(const QNetworkProxy &prox      proxyWdg.iconLabel->setText(QString());      proxyWdg.iconLabel->setPixmap(mainWindow->style()->standardIcon(QStyle::SP_MessageBoxQuestion, 0, mainWindow).pixmap(32, 32)); - +    //FIXME Connect to proxy %1 using what? Best solution would be adding a %2 after the "using:" part and explain %1 and %2 in an i18nc call      QString introMessage = i18n("<qt>Connect to proxy %1 using:</qt>", Qt::escape(proxy.hostName()) );      proxyWdg.introLabel->setText(introMessage);      proxyWdg.introLabel->setWordWrap(true); | 
