dbhub: Remove closing "." from the progress dialog

See issue #1095.
This commit is contained in:
Martin Kleusberg
2017-09-01 11:27:28 +02:00
parent 9fa8ffba2e
commit 6cac6643f1

View File

@@ -320,9 +320,9 @@ void RemoteDatabase::prepareProgressDialog(QNetworkReply* reply, bool upload, co
// Set dialog text
if(upload)
m_progress->setLabelText(tr("Uploading remote database to\n%1.").arg(url));
m_progress->setLabelText(tr("Uploading remote database to\n%1").arg(url));
else
m_progress->setLabelText(tr("Downloading remote database from\n%1.").arg(url));
m_progress->setLabelText(tr("Downloading remote database from\n%1").arg(url));
// Show dialog
m_progress->show();