From 78e7599a8af93377cb4064976d239798f1b0366a Mon Sep 17 00:00:00 2001
From: zzz <zzz@mail.i2p>
Date: Sat, 4 Jan 2014 16:39:10 +0000
Subject: [PATCH] better wording

---
 .../java/src/net/i2p/router/web/ConfigRestartBean.java    | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/apps/routerconsole/java/src/net/i2p/router/web/ConfigRestartBean.java b/apps/routerconsole/java/src/net/i2p/router/web/ConfigRestartBean.java
index 1b97a2f20f..2b38859c1b 100644
--- a/apps/routerconsole/java/src/net/i2p/router/web/ConfigRestartBean.java
+++ b/apps/routerconsole/java/src/net/i2p/router/web/ConfigRestartBean.java
@@ -71,8 +71,8 @@ public class ConfigRestartBean {
             buf.append(_("Shutdown in {0}", DataHelper.formatDuration2(timeRemaining), ctx));
             int tuns = ctx.tunnelManager().getParticipatingCount();
             if (tuns > 0) {
-                buf.append("<br>").append(ngettext("Please wait for routing commitment on {0} tunnel to expire",
-                                                "Please wait for routing commitments on {0} tunnels to expire",
+                buf.append("<br>").append(ngettext("Please wait for routing commitment to expire for {0} tunnel",
+                                                "Please wait for routing commitments to expire for {0} tunnels",
                                                 tuns, ctx));
             }
             buf.append("</h4><hr>");
@@ -82,8 +82,8 @@ public class ConfigRestartBean {
             buf.append(_("Restart in {0}", DataHelper.formatDuration2(timeRemaining), ctx));
             int tuns = ctx.tunnelManager().getParticipatingCount();
             if (tuns > 0) {
-                buf.append("<br>").append(ngettext("Please wait for routing commitment on {0} tunnel to expire",
-                                                "Please wait for routing commitments on {0} tunnels to expire",
+                buf.append("<br>").append(ngettext("Please wait for routing commitment to expire for {0} tunnel",
+                                                "Please wait for routing commitments to expire for {0} tunnels",
                                                 tuns, ctx));
             }
             buf.append("</h4><hr>");
-- 
GitLab