summaryrefslogtreecommitdiff
path: root/ui/gui_status_handler.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:22:36 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:22:36 +0200
commitecb1524f8da7901338b263384fed3c612f117b4c (patch)
treee7e06423fe27ea5ab45f27fc4b39ae597ba72490 /ui/gui_status_handler.cpp
parent5.10 (diff)
downloadFreeFileSync-ecb1524f8da7901338b263384fed3c612f117b4c.tar.gz
FreeFileSync-ecb1524f8da7901338b263384fed3c612f117b4c.tar.bz2
FreeFileSync-ecb1524f8da7901338b263384fed3c612f117b4c.zip
5.11
Diffstat (limited to 'ui/gui_status_handler.cpp')
-rw-r--r--ui/gui_status_handler.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/ui/gui_status_handler.cpp b/ui/gui_status_handler.cpp
index c8311811..0f915ed9 100644
--- a/ui/gui_status_handler.cpp
+++ b/ui/gui_status_handler.cpp
@@ -200,7 +200,6 @@ SyncStatusHandler::~SyncStatusHandler()
const int totalWarnings = errorLog.getItemCount(TYPE_WARNING);
//finalize error log
- //finalize error log
std::wstring finalStatus;
if (abortIsRequested())
{
@@ -214,7 +213,7 @@ SyncStatusHandler::~SyncStatusHandler()
}
else if (totalWarnings > 0)
{
- finalStatus = _("Synchronization completed with warnings!");
+ finalStatus = _("Synchronization completed with warnings.");
errorLog.logMsg(finalStatus, TYPE_WARNING); //give status code same warning priority as display category!
}
else
@@ -223,7 +222,7 @@ SyncStatusHandler::~SyncStatusHandler()
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);
}
bgstack15