diff options
| author | Philip Kaufmann <[email protected]> | 2012-07-27 08:36:43 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2012-08-01 19:33:32 +0200 |
| commit | e6bc9c35f3518760800be47ec0b061fd508c8175 (patch) | |
| tree | 46f7382db98bab72e670cd4778c9d126eddd148a /src/util.cpp | |
| parent | Merge pull request #1465 from Diapolo/NOUI_showSSLVersion (diff) | |
| download | discoin-e6bc9c35f3518760800be47ec0b061fd508c8175.tar.xz discoin-e6bc9c35f3518760800be47ec0b061fd508c8175.zip | |
Update Warning-strings to use a standard-format
- ensure warnings always start with "Warning:" and that the first
character after ":" is written uppercase
- ensure the first sentence in warnings ends with an "!"
- remove unneeded spaces from Warning-strings
- add missing Warning-string translation
- remove a "\n" and replace with untranslatable "<br><br>"
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); |