diff --git a/apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java b/apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java index d1367a4ef..9a291c89f 100644 --- a/apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java +++ b/apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java @@ -761,7 +761,7 @@ public class I2PSnarkServlet extends Default { out.write("\n\t"); out.write(""); if (remaining > 0) - out.write(formatSize(total-remaining) + " / " + formatSize(total)); // 18MB/3GB + out.write("" + formatSize(total-remaining) + " /" + formatSize(total)); // 18MB/3GB else out.write(formatSize(total)); // 3GB out.write("\n\t"); @@ -927,7 +927,7 @@ public class I2PSnarkServlet extends Default { out.write(_("Add Torrent")); out.write("
\n
"); out.write(_("From URL")); - out.write(": \n"); + out.write(": \n"); // not supporting from file at the moment, since the file name passed isn't always absolute (so it may not resolve) //out.write("From file:
"); out.write("
\n"); out.write(_("Data to seed")); out.write(":
" + _manager.getDataDir().getAbsolutePath() + File.separatorChar - + "
\n"); @@ -980,7 +980,7 @@ public class I2PSnarkServlet extends Default { } out.write("\n"); out.write(_("or ")); - out.write(" ");