Author: nextgens
Date: 2007-05-23 19:28:22 +0000 (Wed, 23 May 2007)
New Revision: 13339
Modified:
trunk/freenet/src/freenet/node/useralerts/IPUndetectedUserAlert.java
Log:
L10n fix
Modified: trunk/freenet/src/freenet/node/useralerts/IPUndetectedUserAlert.java
===================================================================
--- trunk/freenet/src/freenet/node/useralerts/IPUndetectedUserAlert.java
2007-05-23 19:20:33 UTC (rev 13338)
+++ trunk/freenet/src/freenet/node/useralerts/IPUndetectedUserAlert.java
2007-05-23 19:28:22 UTC (rev 13339)
@@ -46,7 +46,7 @@
Option o = sc.getOption("tempIPAddressHint");
HTMLNode textNode = new HTMLNode("div");
- L10n.addL10nSubstitution(textNode,
node.ipDetector.isDetecting() ? "detectingWithConfigLink" :
"unknownAddressWithConfigLink",
+ L10n.addL10nSubstitution(textNode,
l10n(node.ipDetector.isDetecting() ? "detectingWithConfigLink" :
"unknownAddressWithConfigLink"),
new String[] { "link", "/link", "port" },
new String[] { "<a href=\"/config/\">", "</a>",
Integer.toString(node.getPortNumber()) });
HTMLNode formNode = textNode.addChild("form", new String[] {
"action", "method" }, new String[] { "/config/", "post" });