diff --git a/apps/i2ptunnel/jsp/editClient.jsp b/apps/i2ptunnel/jsp/editClient.jsp
index 40d1028b0..ce4cfacae 100644
--- a/apps/i2ptunnel/jsp/editClient.jsp
+++ b/apps/i2ptunnel/jsp/editClient.jsp
@@ -56,17 +56,17 @@
@@ -87,7 +87,9 @@
P ort:
<% String value = editBean.getClientPort(curTunnel);
if (value == null || "".equals(value.trim()))
- out.write("
(required) ");
+ out.write("
(");
+ out.write(intl._("required"));
+ out.write(") ");
%>
@@ -99,7 +101,7 @@
} else { %>
- R eachable by:
+ <%=intl._("Reachable by")%>(R ):
<% if (!("127.0.0.1".equals(clientInterface)) &&
@@ -108,9 +110,9 @@
(clientInterface.trim().length() > 0)) {
otherInterface = clientInterface;
}
- %>>Locally (127.0.0.1)
- >Everyone (0.0.0.0)
- >LAN Hosts (Please specify your LAN address)
+ %>><%=intl._("Locally (127.0.0.1)")%>
+ ><%=intl._("Everyone (0.0.0.0)")%>
+ ><%=intl._("LAN Hosts (Please specify your LAN address)")%>
<% } // streamrclient %>
@@ -120,10 +122,12 @@
Host:
<% String vvv = otherInterface;
if (vvv == null || "".equals(vvv.trim()))
- out.write("
(required) ");
+ out.write("
(");
+ out.write(intl._("required"));
+ out.write(") ");
%>
<% } else { %>
-
O ther:
+ <%=intl._("Other")%>(
O ):
<% } %>
@@ -136,55 +140,57 @@
<% if ("httpclient".equals(tunnelType) || "connectclient".equals(tunnelType)) {
%>
- Outprox ies:
+ <%=intl._("Outproies")%>(x ):
<% } else if ("client".equals(tunnelType) || "ircclient".equals(tunnelType) || "streamrclient".equals(tunnelType)) {
%>
- T unnel Destination:
+ <%=intl._("Tunnel Destination")%>(T ):
<% String value2 = editBean.getClientDestination(curTunnel);
if (value2 == null || "".equals(value2.trim()))
- out.write(" (required) ");
+ out.write(" (");
+ out.write(intl._("required"));
+ out.write(") ");
%>
-
+
<% } %>
<% if (!"streamrclient".equals(tunnelType)) { %>
- Prof ile:
+ <%=intl._("Profile")%>(f ):
<% boolean interactiveProfile = editBean.isInteractive(curTunnel);
- %>value="interactive">interactive connection
- value="bulk">bulk connection (downloads/websites/BT)
+ %>value="interactive"><%=intl._("interactive connection")%>
+ value="bulk"><%=intl._("bulk connection (downloads/websites/BT)")%>
- Delay Connect:
+ <%=intl._("Delay Connect")%>(y ):
class="tickbox" />
-
+
- Sh ared Client:
+ <%=intl._("Shared Client")%>(h ):
class="tickbox" />
-
+
<% } // !streamrclient %>
- A uto Start:
+ <%=intl._("Auto Start")%>(A ):
class="tickbox" />
-
+