Publicy wrote: > Thanks for the answer, but it doesn't work. > > Here is the section and your line : > > ... > ** > <http://sourceforge.net/mailarchive/forum.php?thread_name=483917FB.5060006%40gmail.com&forum_name=freevo-users> > > LANG="fr" > if [ "$FREEVO" == "daemon" ]; then > echo -n "Starting $DESC: " > freevoserver "daemon" "start" > echo "$NAME." > elif [ "$FREEVO" == "yes" ]; then > echo -n "Starting $DESC: " > if egrep -q '^display.*(x11|dga)' /etc/freevo/freevo.conf ; then > PATH=$PATH:/usr/X11R6/bin > $DAEMON -fs >> $FREEVO_LOG 2>&1 & > else > $DAEMON >> $FREEVO_LOG 2>&1 & > fi > echo "$NAME." > fi > .... > > $FREEVO come from boot_config and is set to yes and DEAMON is > $FREEVO_HOME/freevo > > Any other suggestion ?
In this case you need to have an export LANG=fr, the export is needed as the LANG is not part of the same command as the freevo command. You may also want to set LC_ALL, for dates, etc. HTH Duncan ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Freevo-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-users
