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

Skip to content
Snippets Groups Projects
Commit 59e5ec74 authored by zzz's avatar zzz
Browse files

fix 1 sec tag causing po error

parent 7944065e
No related branches found
No related tags found
No related merge requests found
...@@ -351,7 +351,7 @@ public class SummaryBarRenderer { ...@@ -351,7 +351,7 @@ public class SummaryBarRenderer {
"<table>\n" + "<table>\n" +
"<tr><td align=\"left\"><b>") "<tr><td align=\"left\"><b>")
.append(_("1 sec")) // formatDuration2() would say 1000 ms .append(DataHelper.formatDuration2(3 * 1000)) // lie and say 3 sec since 1 sec would appear as 1000 ms
.append(":</b></td><td align=\"right\">") .append(":</b></td><td align=\"right\">")
.append(_helper.getSecondKBps()) .append(_helper.getSecondKBps())
.append("Bps</td></tr>\n"); .append("Bps</td></tr>\n");
......
...@@ -18,7 +18,7 @@ public class RouterVersion { ...@@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */ /** deprecated */
public final static String ID = "Monotone"; public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION; public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 37; public final static long BUILD = 38;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = "-rc"; public final static String EXTRA = "-rc";
......
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