comparison ui/mainwindow.cpp @ 781:60d3f59f0803

Fix typos in translatable strings.
author Andre Heinecke <andre.heinecke@intevation.de>
date Mon, 14 Jul 2014 11:50:23 +0200
parents 27043d74dc90
children e65e2a0be7c8
comparison
equal deleted inserted replaced
780:9f13c00a2647 781:60d3f59f0803
525 mSoftwareVersionContents = new QLabel(QApplication::applicationVersion()); 525 mSoftwareVersionContents = new QLabel(QApplication::applicationVersion());
526 const QDateTime lastCheck = mSettings.value("lastUpdateCheck").toDateTime().toLocalTime(); 526 const QDateTime lastCheck = mSettings.value("lastUpdateCheck").toDateTime().toLocalTime();
527 if (lastCheck.isValid()) { 527 if (lastCheck.isValid()) {
528 const QString lastUpdateCheck = QLocale::system().toString(lastCheck, DATETIME_FORMAT); 528 const QString lastUpdateCheck = QLocale::system().toString(lastCheck, DATETIME_FORMAT);
529 mLastUpdateCheck = 529 mLastUpdateCheck =
530 new QLabel(tr("Last sucessful update check:")); 530 new QLabel(tr("Last successful update check:"));
531 mLastUpdateCheckContents = new QLabel(lastUpdateCheck); 531 mLastUpdateCheckContents = new QLabel(lastUpdateCheck);
532 } else { 532 } else {
533 mLastUpdateCheck = new QLabel(tr("Last successful update check:")); 533 mLastUpdateCheck = new QLabel(tr("Last successful update check:"));
534 mLastUpdateCheckContents = new QLabel(QString()); 534 mLastUpdateCheckContents = new QLabel(QString());
535 mLastUpdateCheck->hide(); 535 mLastUpdateCheck->hide();

http://wald.intevation.org/projects/trustbridge/