From 67b3c467589bcdada1882f483adf6169a2898b2d Mon Sep 17 00:00:00 2001
From: str4d <str4d@mail.i2p>
Date: Sun, 14 May 2017 05:40:45 +0000
Subject: [PATCH] Shortened button text on /configfamily

Helps to avoid overlong strings breaking layout in translation (specifically
Russian). The section subtitle already indicates full scope of action.
---
 apps/routerconsole/jsp/configfamily.jsp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/apps/routerconsole/jsp/configfamily.jsp b/apps/routerconsole/jsp/configfamily.jsp
index 7a87390296..905701a71f 100644
--- a/apps/routerconsole/jsp/configfamily.jsp
+++ b/apps/routerconsole/jsp/configfamily.jsp
@@ -40,7 +40,7 @@
 <input name="file" type="file" value="" />
   </td>
   <td class="optionsave">
-<input type="submit" name="action" class="download" value="<%=intl._t("Join Existing Router Family")%>" />
+<input type="submit" name="action" class="download" value="<%=intl._t("Join Family")%>" />
   </td>
  </tr>
 </form></table>
@@ -50,11 +50,11 @@
 <input type="hidden" name="nonce" value="<%=pageNonce%>" >
  <tr><th colspan="2"><%=intl._t("Create New Router Family")%></th></tr>
  <tr>
-  <td><%=intl._t("Family Name")%>:
+  <td><b><%=intl._t("Family Name")%>:</b>
 <input name="family" type="text" size="30" value="" />
   </td>
   <td class="optionsave">
-<input type="submit" name="action" class="accept" value="<%=intl._t("Create New Router Family")%>" />
+<input type="submit" name="action" class="accept" value="<%=intl._t("Create Family")%>" />
   </td>
  </tr>
 </form>
@@ -91,7 +91,7 @@
  <tr><th colspan="2"><%=intl._t("Leave Router Family")%></th></tr>
  <tr><td><%=intl._t("No longer be a member of the family {0}.", '"' + family + '"')%></td>
   <td class="optionsave">
-<input type="submit" name="action" class="delete" value="<%=intl._t("Leave Router Family")%>" />
+<input type="submit" name="action" class="delete" value="<%=intl._t("Leave Family")%>" />
   </td>
  </tr>
 </form>
-- 
GitLab