-          Release Notes for Bacula 1.37.32
+          Release Notes for Bacula 1.37.35
 
   Bacula code: Total files = 420 Total lines = 137,098 (*.h *.c *.in)
 
 - Web-bacula, previously a separate project by Juan Luis Frances,
   is now included in the Bacula GUI release (yet to be fully
   created).
+- The code is now Internationalized so that it can be localized
+  in native languages.  Thanks to Nicolas Boichat.
 
 New Directives:
 - New Job directive "Prefer Mounted Volumes = yes|no" causes the
 
 
 General:
 
+Changes to 1.37.35:
+11Aug05
+- Modified bconsole script so that it is improperly
+  installed, it will refuse to execute.  This avoids
+  recursive call loops.
 Changes to 1.37.34:
 06Aug05
 - Apply David's ACL fix to src/filed/acl.c
 
 #!/bin/sh
+which dirname >/dev/null 
+# does dirname exit?
+if [ $? = 0 ] ; then
+  cwd=`dirname $0`
+  if [ x$cwd = x. ]; then
+     cwd=`pwd`
+  fi
+  if [ x$cwd = x@sbindir@ ] ; then
+     echo "bconsole not properly installed."  
+     exit 1
+  fi
+fi
+if [ x@sbindir@ = x@sysconfdir@ ]; then
+   echo "bconsole not properly installed."
+   exit 1
+fi
 if [ $# = 1 ] ; then
    echo "doing bconsole $1.conf"
    @sbindir@/bconsole -c $1.conf
 
 /* */
 #undef  VERSION
-#define VERSION "1.37.34"
-#define BDATE   "06 August 2005"
-#define LSMDATE "06Aug05"
+#define VERSION "1.37.35"
+#define BDATE   "11 August 2005"
+#define LSMDATE "11Aug05"
 
 /* Debug flags */
 #undef  DEBUG