diff --git a/apps/routerconsole/java/src/net/i2p/router/web/ConfigKeyringHandler.java b/apps/routerconsole/java/src/net/i2p/router/web/ConfigKeyringHandler.java
index 271ac5819..38f7d4b41 100644
--- a/apps/routerconsole/java/src/net/i2p/router/web/ConfigKeyringHandler.java
+++ b/apps/routerconsole/java/src/net/i2p/router/web/ConfigKeyringHandler.java
@@ -31,16 +31,16 @@ public class ConfigKeyringHandler extends FormHandler {
} catch (DataFormatException dfe) {}
if (h != null && h.getData() != null && sk.getData() != null) {
_context.keyRing().put(h, sk);
- addFormNotice("Key for " + h.toBase64() + " added to keyring");
+ addFormNotice(_("Key for") + " " + h.toBase64() + " " + _("added to keyring"));
} else {
addFormError(_("Invalid destination or key"));
}
} else { // Delete
if (h != null && h.getData() != null) {
if (_context.keyRing().remove(h) != null)
- addFormNotice("Key for " + h.toBase64() + " removed from keyring");
+ addFormNotice(_("Key for") + " " + h.toBase64() + " " + _("removed from keyring"));
else
- addFormNotice("Key for " + h.toBase64() + " not found in keyring");
+ addFormNotice(_("Key for") + " " + h.toBase64() + " " + _("not found in keyring"));
} else {
addFormError(_("Invalid destination"));
}
diff --git a/apps/routerconsole/java/src/net/i2p/router/web/ConfigTunnelsHandler.java b/apps/routerconsole/java/src/net/i2p/router/web/ConfigTunnelsHandler.java
index 529bef9aa..e361f9698 100644
--- a/apps/routerconsole/java/src/net/i2p/router/web/ConfigTunnelsHandler.java
+++ b/apps/routerconsole/java/src/net/i2p/router/web/ConfigTunnelsHandler.java
@@ -32,7 +32,7 @@ public class ConfigTunnelsHandler extends FormHandler {
}
public void setShouldsave(String moo) {
- if ( (moo != null) && (moo.equals("Save changes")) )
+ if ( (moo != null) && (moo.equals(_("Save changes"))) )
_shouldSave = true;
}
diff --git a/apps/routerconsole/java/src/net/i2p/router/web/GraphHelper.java b/apps/routerconsole/java/src/net/i2p/router/web/GraphHelper.java
index c65a6beb3..edd0b07dd 100644
--- a/apps/routerconsole/java/src/net/i2p/router/web/GraphHelper.java
+++ b/apps/routerconsole/java/src/net/i2p/router/web/GraphHelper.java
@@ -104,15 +104,15 @@ public class GraphHelper extends HelperBase {
}
public String getForm() {
try {
- _out.write("
Peer | Expl. + Client | % of total | Part. from + to | % of total |
---|
" + _("Peer") + " | " + _("Expl. + Client") + " | " + _("% of total") + " | " + _("Part. from + to") + " | " + _("% of total") + " |
---|---|---|---|---|
");
out.write(netDbLink(h));
diff --git a/apps/routerconsole/jsp/configkeyring.jsp b/apps/routerconsole/jsp/configkeyring.jsp
index 5a487edc3..e7b835455 100644
--- a/apps/routerconsole/jsp/configkeyring.jsp
+++ b/apps/routerconsole/jsp/configkeyring.jsp
@@ -32,7 +32,7 @@
" />
<%=intl._("Manual Keyring Addition")%><%=intl._("Enter keys for encrypted remote destinations here.")%> - Keys for local destinations must be entered on the I2PTunnel page. + <%=intl._("Keys for local destinations must be entered on the")%> <%=intl._("I2PTunnel page")%>. |