Author: nextgens
Date: 2007-05-23 19:50:17 +0000 (Wed, 23 May 2007)
New Revision: 13342

Modified:
   trunk/freenet/src/freenet/node/useralerts/IPUndetectedUserAlert.java
Log:
Fix other, related l10n keys

Modified: trunk/freenet/src/freenet/node/useralerts/IPUndetectedUserAlert.java
===================================================================
--- trunk/freenet/src/freenet/node/useralerts/IPUndetectedUserAlert.java        
2007-05-23 19:44:22 UTC (rev 13341)
+++ trunk/freenet/src/freenet/node/useralerts/IPUndetectedUserAlert.java        
2007-05-23 19:50:17 UTC (rev 13342)
@@ -53,8 +53,8 @@
                formNode.addChild("input", new String[] { "type", "name", 
"value" }, new String[] { "hidden", "formPassword", 
node.clientCore.formPassword });
                HTMLNode listNode = formNode.addChild("ul", "class", "config");
                HTMLNode itemNode = listNode.addChild("li");
-               itemNode.addChild("span", "class", "configshortdesc", 
o.getShortDesc()).addChild("input", new String[] { "type", "name", "value" }, 
new String[] { "text", sc.getPrefix() + ".tempIPAddressHint", 
o.getValueString() });
-               itemNode.addChild("span", "class", "configlongdesc", 
o.getLongDesc());
+               itemNode.addChild("span", "class", "configshortdesc", 
L10n.getString(o.getShortDesc())).addChild("input", new String[] { "type", 
"name", "value" }, new String[] { "text", sc.getPrefix() + 
".tempIPAddressHint", o.getValueString() });
+               itemNode.addChild("span", "class", "configlongdesc", 
L10n.getString(o.getLongDesc()));
                formNode.addChild("input", new String[] { "type", "value" }, 
new String[] { "submit", L10n.getString("UserAlert.apply") });
                formNode.addChild("input", new String[] { "type", "value" }, 
new String[] { "reset", L10n.getString("UserAlert.apply") });
                return textNode;


Reply via email to