forked from I2P_Developers/i2p.i2p
Rename _() for translation to _t() for Java 9 compatibility (ticket #1456)
This commit is contained in:
@@ -22,14 +22,14 @@ input.default {
|
||||
<jsp:useBean class="net.i2p.router.web.ConfigUIHelper" id="uihelper" scope="request" />
|
||||
<jsp:setProperty name="uihelper" property="contextId" value="<%=(String)session.getAttribute(\"i2p.contextId\")%>" />
|
||||
|
||||
<h1><%=uihelper._("I2P UI Configuration")%></h1>
|
||||
<h1><%=uihelper._t("I2P UI Configuration")%></h1>
|
||||
<div class="main" id="main">
|
||||
|
||||
<%@include file="confignav.jsi" %>
|
||||
|
||||
<jsp:useBean class="net.i2p.router.web.ConfigUIHandler" id="formhandler" scope="request" />
|
||||
<%@include file="formhandler.jsi" %>
|
||||
<div class="configure"><div class="topshimten"><h3><%=uihelper._("Router Console Theme")%></h3></div>
|
||||
<div class="configure"><div class="topshimten"><h3><%=uihelper._t("Router Console Theme")%></h3></div>
|
||||
<form action="" method="POST">
|
||||
<input type="hidden" name="consoleNonce" value="<%=intl.getNonce()%>" >
|
||||
<input type="hidden" name="nonce" value="<%=pageNonce%>" >
|
||||
@@ -40,28 +40,28 @@ input.default {
|
||||
%>
|
||||
<jsp:getProperty name="uihelper" property="settings" />
|
||||
<% } else { %>
|
||||
<%=uihelper._("Theme selection disabled for Internet Explorer, sorry.")%>
|
||||
<%=uihelper._t("Theme selection disabled for Internet Explorer, sorry.")%>
|
||||
<hr>
|
||||
<%=uihelper._("If you're not using IE, it's likely that your browser is pretending to be IE; please configure your browser (or proxy) to use a different User Agent string if you'd like to access the console themes.")%>
|
||||
<%=uihelper._t("If you're not using IE, it's likely that your browser is pretending to be IE; please configure your browser (or proxy) to use a different User Agent string if you'd like to access the console themes.")%>
|
||||
<% } %>
|
||||
<jsp:getProperty name="uihelper" property="forceMobileConsole" />
|
||||
<h3><%=uihelper._("Router Console Language")%></h3>
|
||||
<h3><%=uihelper._t("Router Console Language")%></h3>
|
||||
<jsp:getProperty name="uihelper" property="langSettings" />
|
||||
<p><%=uihelper._("Please contribute to the router console translation project! Contact the developers in #i2p-dev on IRC to help.")%>
|
||||
<p><%=uihelper._t("Please contribute to the router console translation project! Contact the developers in #i2p-dev on IRC to help.")%>
|
||||
</p><hr><div class="formaction">
|
||||
<input type="reset" class="cancel" value="<%=intl._("Cancel")%>" >
|
||||
<input type="submit" name="shouldsave" class="accept" value="<%=intl._("Apply")%>" >
|
||||
<input type="reset" class="cancel" value="<%=intl._t("Cancel")%>" >
|
||||
<input type="submit" name="shouldsave" class="accept" value="<%=intl._t("Apply")%>" >
|
||||
</div></form>
|
||||
|
||||
<h3><%=uihelper._("Router Console Password")%></h3>
|
||||
<h3><%=uihelper._t("Router Console Password")%></h3>
|
||||
<form action="" method="POST">
|
||||
<input type="hidden" name="nonce" value="<%=pageNonce%>" >
|
||||
<jsp:getProperty name="uihelper" property="passwordForm" />
|
||||
<div class="formaction">
|
||||
<input type="submit" name="action" class="default" value="<%=intl._("Add user")%>" >
|
||||
<input type="submit" name="action" class="delete" value="<%=intl._("Delete selected")%>" >
|
||||
<input type="reset" class="cancel" value="<%=intl._("Cancel")%>" >
|
||||
<input type="submit" name="action" class="add" value="<%=intl._("Add user")%>" >
|
||||
<input type="submit" name="action" class="default" value="<%=intl._t("Add user")%>" >
|
||||
<input type="submit" name="action" class="delete" value="<%=intl._t("Delete selected")%>" >
|
||||
<input type="reset" class="cancel" value="<%=intl._t("Cancel")%>" >
|
||||
<input type="submit" name="action" class="add" value="<%=intl._t("Add user")%>" >
|
||||
</div>
|
||||
</form></div>
|
||||
</div></body></html>
|
||||
|
Reference in New Issue
Block a user