Author: Jogy
Date: 2006-08-21 19:59:48 +0000 (Mon, 21 Aug 2006)
New Revision: 10230
Modified:
trunk/freenet/src/freenet/clients/http/QueueToadlet.java
Log:
+verbose
not adding dotted "mouse over help available here"-underline as I think it
would be too confusing
Modified: trunk/freenet/src/freenet/clients/http/QueueToadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/QueueToadlet.java 2006-08-21
19:49:24 UTC (rev 10229)
+++ trunk/freenet/src/freenet/clients/http/QueueToadlet.java 2006-08-21
19:59:48 UTC (rev 10230)
@@ -621,9 +621,9 @@
NumberFormat nf = NumberFormat.getInstance();
nf.setMaximumFractionDigits(1);
if (finalized) {
- progressBar.addChild("div", new String[] {
"class", "title" }, new String[] { "progress_fraction_finalized", "finalized"
}, nf.format((int) ((fetched / (double) min) * 1000) / 10.0) + "%");
+ progressBar.addChild("div", new String[] {
"class", "title" }, new String[] { "progress_fraction_finalized", "This
progress value is accurate as the download process has been finalized" },
nf.format((int) ((fetched / (double) min) * 1000) / 10.0) + "%");
} else {
- progressBar.addChild("div", new String[] {
"class", "title" }, new String[] { "progress_fraction_not_finalized", "not
finalized" }, nf.format((int) ((fetched / (double) min) * 1000) / 10.0)+ "%");
+ progressBar.addChild("div", new String[] {
"class", "title" }, new String[] { "progress_fraction_not_finalized", "This
progress value is likely to change as the file download process has not been
finalized" }, nf.format((int) ((fetched / (double) min) * 1000) / 10.0)+ "%");
}
}
return progressCell;