@ -90,7 +90,7 @@ KWatchGnuPGMainWindow::~KWatchGnuPGMainWindow()
void KWatchGnuPGMainWindow : : slotClear ( )
{
mCentralWidget - > clear ( ) ;
mCentralWidget - > append ( tqtr ( " [%1] Log cleared " ) . arg ( TQDateTime : : currentDateTime ( ) . toString ( TQt : : ISODate ) ) ) ;
mCentralWidget - > append ( i18n ( " [%1] Log cleared " ) . arg ( TQDateTime : : currentDateTime ( ) . toString ( TQt : : ISODate ) ) ) ;
}
void KWatchGnuPGMainWindow : : createActions ( )
@ -134,7 +134,7 @@ void KWatchGnuPGMainWindow::startWatcher()
while ( mWatcher - > isRunning ( ) ) {
kapp - > eventLoop ( ) - > processEvents ( TQEventLoop : : ExcludeUserInput ) ;
}
mCentralWidget - > append ( tqtr ( " [%1] Log stopped " )
mCentralWidget - > append ( i18n ( " [%1] Log stopped " )
. arg ( TQDateTime : : currentDateTime ( ) . toString ( TQt : : ISODate ) ) ) ;
}
mWatcher - > clearArguments ( ) ;
@ -147,7 +147,7 @@ void KWatchGnuPGMainWindow::startWatcher()
if ( ! mWatcher - > start ( ) ) {
KMessageBox : : sorry ( this , i18n ( " The watchgnupg logging process could not be started. \n Please install watchgnupg somewhere in your $PATH. \n This log window is now completely useless. " ) ) ;
} else {
mCentralWidget - > append ( tqtr ( " [%1] Log started " )
mCentralWidget - > append ( i18n ( " [%1] Log started " )
. arg ( TQDateTime : : currentDateTime ( ) . toString ( TQt : : ISODate ) ) ) ;
}
connect ( mWatcher , TQT_SIGNAL ( processExited ( TDEProcess * ) ) ,