Author: nextgens
Date: 2006-11-14 23:16:27 +0000 (Tue, 14 Nov 2006)
New Revision: 10923

Modified:
   trunk/freenet/src/freenet/clients/http/QueueToadlet.java
Log:
Fix the wording on the /queue/ page

Modified: trunk/freenet/src/freenet/clients/http/QueueToadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/QueueToadlet.java    2006-11-14 
22:15:56 UTC (rev 10922)
+++ trunk/freenet/src/freenet/clients/http/QueueToadlet.java    2006-11-14 
23:16:27 UTC (rev 10923)
@@ -642,7 +642,7 @@
                        NumberFormat nf = NumberFormat.getInstance();
                        nf.setMaximumFractionDigits(1);
                        if (finalized) {
-                               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) + "%");
+                               progressBar.addChild("div", new String[] { 
"class", "title" }, new String[] { "progress_fraction_finalized", "This 
progress value is accurate" }, nf.format((int) ((fetched / (double) min) * 
1000) / 10.0) + "%");
                        } else {
                                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)+ "%");
                        }


Reply via email to