I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 163023ec authored by str4d's avatar str4d
Browse files

String tweaks

parent 791bc9a8
No related branches found
No related tags found
No related merge requests found
...@@ -42,9 +42,13 @@ public class ConfigLoggingHelper extends HelperBase { ...@@ -42,9 +42,13 @@ public class ConfigLoggingHelper extends HelperBase {
buf.append(prefix).append('=').append(level).append('\n'); buf.append(prefix).append('=').append(level).append('\n');
} }
buf.append("</textarea><br>\n"); buf.append("</textarea><br>\n");
buf.append("<p>").append(_t("Add additional logging statements above. Example: net.i2p.router.tunnel=WARN")).append("<br>"); buf.append("<p>")
buf.append(_t("Or put entries in the logger.config file. Example: logger.record.net.i2p.router.tunnel=WARN")).append("<br>"); .append(_t("Add additional logging statements above (e.g. {0}).", "<b>net.i2p.router.tunnel=WARN</b>"))
buf.append(_t("Valid levels are DEBUG, INFO, WARN, ERROR, CRIT")).append("</p>\n"); .append("<br>")
.append(_t("Alternatively, put entries in the file {0} (e.g. {1}).", "<b>logger.config</b>", "<b>logger.record.net.i2p.router.tunnel=WARN</b>"))
.append("<br>")
.append(_t("Valid log levels are {0}.", "<b>DEBUG, INFO, WARN, ERROR, CRIT</b>"))
.append("</p>\n");
/**** /****
// this is too big and ugly // this is too big and ugly
......
...@@ -104,7 +104,7 @@ ...@@ -104,7 +104,7 @@
</tr> </tr>
<tr> <tr>
<td class="infowarn"> <td class="infowarn">
<b><%=intl._t("Do not reveal your port numbers to anyone as they can be used to discover your ip address.")%></b> <b><%=intl._t("Do not reveal your port numbers to anyone, as they can be used to discover your IP address.")%></b>
</td> </td>
</tr> </tr>
<tr> <tr>
......
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
<hr> <hr>
<div class="headline" id="configure"> <div class="headline" id="configure">
<h3><%=intl._t("Configuration")%></h3> <h3><%=intl._t("Configuration")%></h3>
<h4><%=intl._t("Location:")%> ${cfg.fileName}</h4> <h4><%=intl._t("File location")%>: ${cfg.fileName}</h4>
</div> </div>
<div id="messages">${cfg.messages}</div> <div id="messages">${cfg.messages}</div>
<form method="POST" action="config"> <form method="POST" action="config">
......
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
<hr> <hr>
<div class="headline" id="subscriptions"> <div class="headline" id="subscriptions">
<h3><%=intl._t("Subscriptions")%></h3> <h3><%=intl._t("Subscriptions")%></h3>
<h4><%=intl._t("Location:")%> ${subs.fileName}</h4> <h4><%=intl._t("File location")%>: ${subs.fileName}</h4>
</div> </div>
<div id="messages">${subs.messages}</div> <div id="messages">${subs.messages}</div>
<form method="POST" action="subscriptions"> <form method="POST" action="subscriptions">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment