forked from I2P_Developers/i2p.i2p
Rename _() for translation to _t() for Java 9 compatibility (ticket #1456)
This commit is contained in:
@ -146,9 +146,9 @@ public class CSSHelper extends HelperBase {
|
||||
public String title(String s) {
|
||||
StringBuilder buf = new StringBuilder(128);
|
||||
buf.append("<title>")
|
||||
.append(_("I2P Router Console"))
|
||||
.append(_t("I2P Router Console"))
|
||||
.append(" - ")
|
||||
.append(_(s))
|
||||
.append(_t(s))
|
||||
.append("</title>");
|
||||
return buf.toString();
|
||||
}
|
||||
|
Reference in New Issue
Block a user