From ecb1524f8da7901338b263384fed3c612f117b4c Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 17:22:36 +0200 Subject: 5.11 --- ui/batch_status_handler.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ui/batch_status_handler.cpp') diff --git a/ui/batch_status_handler.cpp b/ui/batch_status_handler.cpp index 5a32e545..ebfa84a0 100644 --- a/ui/batch_status_handler.cpp +++ b/ui/batch_status_handler.cpp @@ -157,7 +157,7 @@ BatchStatusHandler::~BatchStatusHandler() else if (totalWarnings > 0) { raiseReturnCode(returnCode_, FFS_RC_FINISHED_WITH_WARNINGS); - finalStatus = _("Synchronization completed with warnings!"); + finalStatus = _("Synchronization completed with warnings."); errorLog.logMsg(finalStatus, TYPE_WARNING); } else @@ -166,7 +166,7 @@ BatchStatusHandler::~BatchStatusHandler() getDataTotal (PHASE_SYNCHRONIZING) == 0) finalStatus = _("Nothing to synchronize!"); //even if "ignored conflicts" occurred! else - finalStatus = _("Synchronization completed successfully!"); + finalStatus = _("Synchronization completed successfully."); errorLog.logMsg(finalStatus, TYPE_INFO); } @@ -182,10 +182,10 @@ BatchStatusHandler::~BatchStatusHandler() //print the results list: logfile if (logFile.get()) { - //saving log file below may take a *long* time, so report (without logging) try { - reportStatus(replaceCpy(_("Saving log file %x"), L"%x", fmtFileName(logFile->getFilename()))); //throw? + //saving log file below may take a *long* time, so report (without logging) + reportStatus(replaceCpy(_("Saving log file %x..."), L"%x", fmtFileName(logFile->getFilename()))); //throw? forceUiRefresh(); // } catch (...) {} -- cgit