summaryrefslogtreecommitdiff
path: root/synchronization.h
diff options
context:
space:
mode:
Diffstat (limited to 'synchronization.h')
-rw-r--r--synchronization.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/synchronization.h b/synchronization.h
index 7bd3d216..32ffaba6 100644
--- a/synchronization.h
+++ b/synchronization.h
@@ -2,6 +2,7 @@
#define SYNCHRONIZATION_H_INCLUDED
#include "FreeFileSync.h"
+#include "library/statusHandler.h"
namespace FreeFileSync
@@ -28,6 +29,13 @@ namespace FreeFileSync
const bool useRecycleBin;
StatusHandler* statusUpdater;
wxString optionalLineBreak; //optional line break for status messages (used by GUI mode only)
+
+ //preload status texts
+ const Zstring txtCopyingFile;
+ const Zstring txtOverwritingFile;
+ const Zstring txtCreatingFolder;
+ const Zstring txtDeletingFile;
+ const Zstring txtDeletingFolder;
};
}
bgstack15