[freenet-cvs] r13340 - trunk/freenet/src/freenet/node/useralerts
nextgens at freenetproject.org
nextgens at freenetproject.org
Wed May 23 19:43:35 UTC 2007
Author: nextgens
Date: 2007-05-23 19:43:35 +0000 (Wed, 23 May 2007)
New Revision: 13340
Modified:
trunk/freenet/src/freenet/node/useralerts/IPUndetectedUserAlert.java
Log:
Fix the l10n fix
Modified: trunk/freenet/src/freenet/node/useralerts/IPUndetectedUserAlert.java
===================================================================
--- trunk/freenet/src/freenet/node/useralerts/IPUndetectedUserAlert.java 2007-05-23 19:28:22 UTC (rev 13339)
+++ trunk/freenet/src/freenet/node/useralerts/IPUndetectedUserAlert.java 2007-05-23 19:43:35 UTC (rev 13340)
@@ -46,7 +46,7 @@
Option o = sc.getOption("tempIPAddressHint");
HTMLNode textNode = new HTMLNode("div");
- L10n.addL10nSubstitution(textNode, l10n(node.ipDetector.isDetecting() ? "detectingWithConfigLink" : "unknownAddressWithConfigLink"),
+ L10n.addL10nSubstitution(textNode, "IPUndetectedUserAlert"+(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" });
More information about the cvs
mailing list