Author: toad
Date: 2008-05-27 12:49:36 +0000 (Tue, 27 May 2008)
New Revision: 20104

Modified:
   trunk/freenet/src/freenet/clients/http/StatisticsToadlet.java
Log:
Fix "The default translation for StatisticsToadlet.disconnecting hasn't been 
found!"
(We were using l10n() not l10nDark()).

Modified: trunk/freenet/src/freenet/clients/http/StatisticsToadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/StatisticsToadlet.java       
2008-05-27 12:05:38 UTC (rev 20103)
+++ trunk/freenet/src/freenet/clients/http/StatisticsToadlet.java       
2008-05-27 12:49:36 UTC (rev 20104)
@@ -749,7 +749,7 @@
                }
                if (numberOfDisconnecting > 0) {
                        HTMLNode peerStatsListenOnlyListItem = 
peerStatsList.addChild("li").addChild("span");
-                       peerStatsListenOnlyListItem.addChild("span", new 
String[] { "class", "title", "style" }, new String[] { "peer_disconnecting", 
l10n("disconnecting"), "border-bottom: 1px dotted; cursor: help;" }, 
l10nDark("disconnectingShort"));
+                       peerStatsListenOnlyListItem.addChild("span", new 
String[] { "class", "title", "style" }, new String[] { "peer_disconnecting", 
l10nDark("disconnecting"), "border-bottom: 1px dotted; cursor: help;" }, 
l10nDark("disconnectingShort"));
                        peerStatsListenOnlyListItem.addChild("span", ":\u00a0" 
+ numberOfDisconnecting);
                }
                if (numberOfSeedServers > 0) {


Reply via email to