forked from I2P_Developers/i2p.i2p
Rename _() for translation to _t() for Java 9 compatibility (ticket #1456)
This commit is contained in:
@@ -42,7 +42,7 @@
|
||||
} else {
|
||||
// Text browsers don't render the two divs side-by-side, so just provide a link
|
||||
out.print("<a href=\"/summaryframe\">");
|
||||
out.print(intl._("Summary Bar"));
|
||||
out.print(intl._t("Summary Bar"));
|
||||
out.print("</a>");
|
||||
}
|
||||
|
||||
@@ -55,11 +55,11 @@
|
||||
out.print("<noscript><div class=\"refresh\"><form action=\"" + request.getRequestURI() + "\" method=\"POST\">\n" +
|
||||
"<b>");
|
||||
// We have intl defined when this is included, but not when compiled standalone.
|
||||
out.print(intl._("Refresh (s)"));
|
||||
out.print(intl._t("Refresh (s)"));
|
||||
out.print(":</b> <input size=\"3\" type=\"text\" name=\"refresh\" value=\"60\" >\n" +
|
||||
"<button type=\"submit\" value=\"Enable\" >");
|
||||
// ditto
|
||||
out.print(intl._("Enable"));
|
||||
out.print(intl._t("Enable"));
|
||||
out.print("</button>\n" +
|
||||
"</form></div></noscript></div>\n");
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user