diff options
| author | Jeff Garzik <[email protected]> | 2012-08-01 10:56:17 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2012-08-01 10:56:17 -0700 |
| commit | ffe47d6d5d6ddfc0ad145f5a891e2165c3d69009 (patch) | |
| tree | c30d30baadfa02be183b40535d3bf43d2701f60b /src/util.cpp | |
| parent | Add doc/release-notes.txt, temporary for 0.7 release (diff) | |
| parent | Update Warning-strings to use a standard-format (diff) | |
| download | discoin-ffe47d6d5d6ddfc0ad145f5a891e2165c3d69009.tar.xz discoin-ffe47d6d5d6ddfc0ad145f5a891e2165c3d69009.zip | |
Merge pull request #1636 from Diapolo/Warning_string
Update Warning-strings to use a standard-format
Diffstat (limited to 'src/util.cpp')
| -rw-r--r-- | src/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index 4cb8a214d..6014081c6 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -1205,7 +1205,7 @@ void AddTimeData(const CNetAddr& ip, int64 nTime) if (!fMatch) { fDone = true; - string strMessage = _("Warning: Please check that your computer's date and time are correct. If your clock is wrong Bitcoin will not work properly."); + string strMessage = _("Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin will not work properly."); strMiscWarning = strMessage; printf("*** %s\n", strMessage.c_str()); uiInterface.ThreadSafeMessageBox(strMessage+" ", string("Bitcoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION); |