forked from I2P_Developers/i2p.i2p
renaming
This commit is contained in:
@ -40,7 +40,7 @@ public class SummaryBarRenderer {
|
||||
aMap.put("Tunnels", "Tunnels");
|
||||
aMap.put("Congestion", "Congestion");
|
||||
aMap.put("TunnelStatus", "Tunnel Status");
|
||||
aMap.put("Destinations", "Local Destinations");
|
||||
aMap.put("Destinations", "Hidden Services and Clients");
|
||||
aMap.put("NewsHeadings", "News & Updates");
|
||||
SECTION_NAMES = Collections.unmodifiableMap(aMap);
|
||||
}
|
||||
@ -219,9 +219,9 @@ public class SummaryBarRenderer {
|
||||
.append("</a>\n" +
|
||||
|
||||
"<a href=\"/i2ptunnelmgr\" target=\"_top\" title=\"")
|
||||
.append(_("Local Destinations"))
|
||||
.append(_("Hidden Services and Clients"))
|
||||
.append("\">")
|
||||
.append(nbsp(_("I2PTunnel")))
|
||||
.append(nbsp(_("Hidden Services Manager")))
|
||||
.append("</a>\n" +
|
||||
|
||||
"<a href=\"/dns\" target=\"_top\" title=\"")
|
||||
|
@ -416,7 +416,10 @@ public class SummaryHelper extends HelperBase {
|
||||
List<Destination> clients = new ArrayList<Destination>(_context.clientManager().listClients());
|
||||
|
||||
StringBuilder buf = new StringBuilder(512);
|
||||
buf.append("<h3><a href=\"/i2ptunnelmgr\" target=\"_top\" title=\"").append(_("Add/remove/edit & control your client and server tunnels")).append("\">").append(_("Local Destinations")).append("</a></h3><hr class=\"b\"><div class=\"tunnels\">");
|
||||
buf.append("<h3><a href=\"/i2ptunnelmgr\" target=\"_top\" title=\"")
|
||||
.append(_("Add/remove/edit & control your client and server tunnels"))
|
||||
.append("\">").append(_("Hidden Services and Clients"))
|
||||
.append("</a></h3><hr class=\"b\"><div class=\"tunnels\">");
|
||||
if (!clients.isEmpty()) {
|
||||
Collections.sort(clients, new AlphaComparator());
|
||||
buf.append("<table>");
|
||||
@ -427,7 +430,7 @@ public class SummaryHelper extends HelperBase {
|
||||
|
||||
buf.append("<tr><td align=\"right\"><img src=\"/themes/console/images/");
|
||||
if (_context.clientManager().shouldPublishLeaseSet(h))
|
||||
buf.append("server.png\" alt=\"Server\" title=\"").append(_("Server")).append("\">");
|
||||
buf.append("server.png\" alt=\"Server\" title=\"").append(_("Hidden Service")).append("\">");
|
||||
else
|
||||
buf.append("client.png\" alt=\"Client\" title=\"").append(_("Client")).append("\">");
|
||||
buf.append("</td><td align=\"left\"><b><a href=\"tunnels#").append(h.toBase64().substring(0,4));
|
||||
|
Reference in New Issue
Block a user