-rw-r--r-- | noncore/settings/netsystemtime/mainwindow.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/noncore/settings/netsystemtime/mainwindow.cpp b/noncore/settings/netsystemtime/mainwindow.cpp index ab71463..85a46b7 100644 --- a/noncore/settings/netsystemtime/mainwindow.cpp +++ b/noncore/settings/netsystemtime/mainwindow.cpp | |||
@@ -164,16 +164,18 @@ void MainWindow::runNTP() | |||
164 | { | 164 | { |
165 | if ( !ntpDelayElapsed() && ntpInteractive ) | 165 | if ( !ntpDelayElapsed() && ntpInteractive ) |
166 | { | 166 | { |
167 | QString msg = tr( "You asked for a delay of " ); | 167 | QString msg = tr( "You asked for a delay of " ); |
168 | msg.append( QString::number( ntpDelay ) ); | 168 | msg.append( QString::number( ntpDelay ) ); |
169 | msg.append( tr( " minutes, but only " ) ); | 169 | msg.append( tr( " minutes, but only " ) ); |
170 | msg.append( QString::number( _lookupDiff / 60 ) ); | 170 | msg.append( QString::number( _lookupDiff / 60 ) ); |
171 | msg.append( tr(" minutes elapsed since last lookup.<br>Continue?") ); | 171 | msg.append( tr(" minutes elapsed since last lookup.<br>Continue?") ); |
172 | |||
173 | QString msg = tr( "You asked for a delay of %1 minutes, but only %2 minutes elapsed since last lookup.<br>Continue?" ).arg( QString::number( ntpDelay ) ).arg( QString::number( _lookupDiff / 60 ) ); | ||
172 | 174 | ||
173 | switch ( | 175 | switch ( |
174 | QMessageBox::warning( this, tr( "Continue?" ), msg, QMessageBox::Yes, QMessageBox::No ) | 176 | QMessageBox::warning( this, tr( "Continue?" ), msg, QMessageBox::Yes, QMessageBox::No ) |
175 | ) | 177 | ) |
176 | { | 178 | { |
177 | case QMessageBox::Yes: break; | 179 | case QMessageBox::Yes: break; |
178 | case QMessageBox::No: return; | 180 | case QMessageBox::No: return; |
179 | default: return; | 181 | default: return; |
@@ -336,18 +338,17 @@ void MainWindow::slotNtpFinished( OProcess *p ) | |||
336 | int posEndOffset = _reEndOffset.match( ntpOutput, posOffset ); | 338 | int posEndOffset = _reEndOffset.match( ntpOutput, posOffset ); |
337 | posOffset += _offset.length() + 1; | 339 | posOffset += _offset.length() + 1; |
338 | QString diff = ntpOutput.mid( posOffset, posEndOffset - posOffset - 1 ); | 340 | QString diff = ntpOutput.mid( posOffset, posEndOffset - posOffset - 1 ); |
339 | 341 | ||
340 | float timeShift = diff.toFloat(); | 342 | float timeShift = diff.toFloat(); |
341 | if ( timeShift == 0.0 ) | 343 | if ( timeShift == 0.0 ) |
342 | return; | 344 | return; |
343 | int secsSinceLast = time - lastLookup; | 345 | int secsSinceLast = time - lastLookup; |
344 | output = QString::number( timeShift ); | 346 | output = tr( "%1 seconds").arg(QString::number( timeShift )); |
345 | output.append( tr( " seconds" ) ); | ||
346 | 347 | ||
347 | // Display information on time server tab | 348 | // Display information on time server tab |
348 | if ( ntpTabEnabled ) | 349 | if ( ntpTabEnabled ) |
349 | { | 350 | { |
350 | ntpTab->setTimeShift( output ); | 351 | ntpTab->setTimeShift( output ); |
351 | ntpTab->setNewTime( dt.toString() ); | 352 | ntpTab->setNewTime( dt.toString() ); |
352 | } | 353 | } |
353 | 354 | ||