From 352c6ba4ba6e5154817a3260d72051da82d284a6 Mon Sep 17 00:00:00 2001
From: zzz <zzz@mail.i2p>
Date: Mon, 9 Jan 2012 23:58:24 +0000
Subject: [PATCH]   * i2prouter: Don't attempt to translate strings from script

---
 installer/resources/i2prouter | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/installer/resources/i2prouter b/installer/resources/i2prouter
index eb9c476f68..6ee350140e 100644
--- a/installer/resources/i2prouter
+++ b/installer/resources/i2prouter
@@ -461,10 +461,13 @@ fi
 
 
 gettext() {
-    "$WRAPPER_CMD" --translate "$1" "$WRAPPER_CONF" 2>/dev/null
-    if [ $? != 0 ] ; then
+    # TODO provide translations and call external gettext.
+    # For now, don't attempt to translate via the wrapper,
+    # it probably isn't supported in the community edition.
+    #"$WRAPPER_CMD" --translate "$1" "$WRAPPER_CONF" 2>/dev/null
+    #if [ $? != 0 ] ; then
         echo "$1"
-    fi
+    #fi
 }
 
 outputFile() {
-- 
GitLab