Skip to content
Permalink
Browse files
fix i18n part of #1039
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@8347 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Apr 13, 2008
1 parent b1b6bdc commit 8008185
Showing 1 changed file with 1 addition and 1 deletion.
@@ -433,7 +433,7 @@ void QgsDbSourceSelect::on_btnConnect_clicked()
QMessageBox::warning(this, tr("Connection failed"),
tr
("Connection to %1 on %2 failed. Either the database is down or your settings are incorrect.%3Check your username and password and try again.%4The database said:%5%6").
arg(settings.readEntry(key + "/database")).arg(settings.readEntry(key + "/host")).arg("\n\n").arg("\n\n").arg("\n").arg(QString::fromLocal8Bit(PQerrorMessage(pd))));
arg(settings.readEntry(key + "/database")).arg(settings.readEntry(key + "/host")).arg("\n\n").arg("\n\n").arg("\n").arg(QString::fromUtf8(PQerrorMessage(pd))));
}
}

0 comments on commit 8008185

Please sign in to comment.