[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r4079: Include the source address when adding a clock skew status e (vidalia/trunk/src/vidalia/log)
Author: edmanm
Date: 2009-08-28 02:54:49 -0400 (Fri, 28 Aug 2009)
New Revision: 4079
Modified:
vidalia/trunk/src/vidalia/log/StatusEventWidget.cpp
Log:
Include the source address when adding a clock skew status event.
Modified: vidalia/trunk/src/vidalia/log/StatusEventWidget.cpp
===================================================================
--- vidalia/trunk/src/vidalia/log/StatusEventWidget.cpp 2009-08-28 05:55:29 UTC (rev 4078)
+++ vidalia/trunk/src/vidalia/log/StatusEventWidget.cpp 2009-08-28 06:54:49 UTC (rev 4079)
@@ -221,15 +221,17 @@
if (skew < 0) {
description =
tr("Tor has determined that your computer's clock may be set to %1 "
- "seconds in the past. If your clock is not correct, Tor will not be "
- "able to function. Please verify your computer displays the correct "
- "time.").arg(qAbs(skew));
+ "seconds in the past compared to the directory server at %2. If your "
+ "clock is not correct, Tor will not be able to function. Please "
+ "verify your computer displays the correct time.").arg(qAbs(skew))
+ .arg(source);
} else {
description =
- tr("Tor has determined that your computer's clock may be set to %1 "
- "seconds in the future. If your clock is not correct, Tor will not be "
- "able to function. Please verify your computer displays the correct "
- "time.").arg(qAbs(skew));
+ tr("Tor has determined th at your computer's clock may be set to %1 "
+ "seconds in the future compared to the directory server at %2. If "
+ "your clock is not correct, Tor will not be able to function. Please "
+ "verify your computer displays the correct time.").arg(qAbs(skew))
+ .arg(source);
}
addNotification(icon, tr("Your Computer's Clock is Potentially Incorrect"),
description);