1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 10:46:35 +01:00

Use consistently British English in UI

This commit is contained in:
Jonathan Hooverman 2013-02-09 19:49:02 +01:00
parent 4e2a829680
commit e08a4d9836

View File

@ -252,7 +252,7 @@ void NetworkManager::sslError(QNetworkReply* reply, QList<QSslError> errors)
void NetworkManager::authentication(QNetworkReply* reply, QAuthenticator* auth)
{
QDialog* dialog = new QDialog(p_QupZilla);
dialog->setWindowTitle(tr("Authorization required"));
dialog->setWindowTitle(tr("Authorisation required"));
QFormLayout* formLa = new QFormLayout(dialog);
@ -348,7 +348,7 @@ void NetworkManager::ftpAuthentication(const QUrl &url, QAuthenticator* auth)
}
QDialog* dialog = new QDialog(mApp->getWindow());
dialog->setWindowTitle(tr("FTP authorization required"));
dialog->setWindowTitle(tr("FTP authorisation required"));
QFormLayout* formLa = new QFormLayout(dialog);
@ -415,7 +415,7 @@ void NetworkManager::ftpAuthentication(const QUrl &url, QAuthenticator* auth)
void NetworkManager::proxyAuthentication(const QNetworkProxy &proxy, QAuthenticator* auth)
{
QDialog* dialog = new QDialog(p_QupZilla);
dialog->setWindowTitle(tr("Proxy authorization required"));
dialog->setWindowTitle(tr("Proxy authorisation required"));
QFormLayout* formLa = new QFormLayout(dialog);