<div dir="ltr">Sorry - I am lost...<div>Is there a script, a package or a GUI to do this?<br clear="all"><br>.:====================================================:.<br><br>Amichai Rotman<br><br>Registered Linux User#: 201192 [<a href="http://counter.li.org/">http://counter.li.org/</a>]<br>

Registered Ubuntu User #12851 [<a href="http://ubuntucounter.geekosophical.net">http://ubuntucounter.geekosophical.net</a>]<br><br>------------------------------------------------------------------------------------------------------------<br>

.:====================================================:.<br>
<br><br><div id="WISESTAMP_SIG_2722"></div><br><br><div class="gmail_quote">On Mon, Sep 13, 2010 at 22:00, Ehud Karni <span dir="ltr">&lt;<a href="mailto:ehud@unix.mvs.co.il">ehud@unix.mvs.co.il</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="im">On Mon, 13 Sep 2010 21:28:33 Amichai Rotman wrote:<br>
&gt;<br>
&gt; Is&#39;t there a way to make Wine &quot;Hebrew Enabled&quot;?<br>
<br>
</div>Wine is &quot;Hebrew enabled&quot; but you have to tell it that you want Hebrew<br>
to be your default language by using environment variables.<br>
<br>
I use the following (text files):<br>
<br>
-------------------- wine-LANG -----------------------------<br>
<br>
#!/bin/sh<br>
<br>
set -a<br>
<br>
##  LANG=he_IL.utf8<br>
LANG=he_IL.iso8859-8<br>
<br>
LC_CTYPE=&quot;$LANG&quot;<br>
LC_NUMERIC=&quot;C&quot;<br>
LC_TIME=&quot;C&quot;<br>
LC_COLLATE=&quot;$LANG&quot;<br>
LC_MONETARY=&quot;$LANG&quot;<br>
LC_MESSAGES=&quot;$LANG&quot;<br>
LC_PAPER=&quot;$LANG&quot;<br>
LC_NAME=&quot;$LANG&quot;<br>
LC_ADDRESS=&quot;$LANG&quot;<br>
LC_TELEPHONE=&quot;C&quot;<br>
LC_MEASUREMENT=&quot;C&quot;<br>
LC_IDENTIFICATION=&quot;$LANG&quot;<br>
LC_ALL=$LANG<br>
<br>
set +a<br>
<br>
#################### end of wine-LANG (by Ehud) ####################<br>
<br>
<br>
---------- wine-lang-exec (modification of wineboot) ----------<br>
<br>
#!/bin/sh<br>
#<br>
# Wrapper script to start a Winelib application once it is installed<br>
#<br>
# Copyright (C) 2002 Alexandre Julliard<br>
#<br>
# This library is free software; you can redistribute it and/or<br>
# modify it under the terms of the GNU Lesser General Public<br>
# License as published by the Free Software Foundation; either<br>
# version 2.1 of the License, or (at your option) any later version.<br>
#<br>
# This library is distributed in the hope that it will be useful,<br>
# but WITHOUT ANY WARRANTY; without even the implied warranty of<br>
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU<br>
# Lesser General Public License for more details.<br>
#<br>
# You should have received a copy of the GNU Lesser General Public<br>
# License along with this library; if not, write to the Free Software<br>
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA<br>
#<br>
<br>
# determine the app Winelib library name<br>
appname=`basename &quot;$0&quot; .exe`.exe<br>
<br>
#### set LANG environment for wine programs (Ehud Karni)<br>
. wine-LANG<br>
<br>
# first try explicit WINELOADER<br>
if [ -x &quot;$WINELOADER&quot; ]; then exec &quot;$WINELOADER&quot; &quot;$appname&quot; &quot;$@&quot;; fi<br>
<br>
# then default bin directory<br>
if [ -x &quot;/usr/bin/wine&quot; ]; then exec &quot;/usr/bin/wine&quot; &quot;$appname&quot; &quot;$@&quot;; fi<br>
<br>
# now try the directory containing $0<br>
appdir=&quot;&quot;<br>
case &quot;$0&quot; in<br>
  */*)<br>
    # $0 contains a path, use it<br>
    appdir=`dirname &quot;$0&quot;`<br>
    ;;<br>
  *)<br>
    # no directory in $0, search in PATH<br>
    saved_ifs=$IFS<br>
    IFS=:<br>
    for d in $PATH<br>
    do<br>
      IFS=$saved_ifs<br>
      if [ -x &quot;$d/$0&quot; ]; then appdir=&quot;$d&quot;; break; fi<br>
    done<br>
    ;;<br>
esac<br>
if [ -x &quot;$appdir/wine&quot; ]; then exec &quot;$appdir/wine&quot; &quot;$appname&quot; &quot;$@&quot;; fi<br>
<br>
# finally look in PATH<br>
exec wine &quot;$appname&quot; &quot;$@&quot;<br>
<br>
#################### end of wine-lang-exec (by Ehud) ####################<br>
<br>
<br>
<br>
Both files should be in /usr/bin, you should replace the following<br>
scripts by (hard) linking it to `wine-lang-exec&#39;:<br>
   winepath winemine winefile winedbg wineconsole winecfg wineboot<br>
   winebrowser uninstaller regsvr32 regedit progman notepad msiexec<br>
<div class="im"><br>
&gt; Where will I find those M$ Hebrew fonts?<br>
<br>
</div>Copy it from a M$Windows installation.<br>
<div><div></div><div class="h5"><br>
Ehud.<br>
<br>
<br>
--<br>
 Ehud Karni           Tel: +972-3-7966-561  /&quot;\<br>
 Mivtach - Simon      Fax: +972-3-7976-561  \ /  ASCII Ribbon Campaign<br>
 Insurance agencies   (USA) voice mail and   X   Against   HTML   Mail<br>
 <a href="http://www.mvs.co.il" target="_blank">http://www.mvs.co.il</a>  FAX:  1-815-5509341  / \<br>
 GnuPG: 98EA398D &lt;<a href="http://www.keyserver.net/" target="_blank">http://www.keyserver.net/</a>&gt;    Better Safe Than Sorry<br>
</div></div></blockquote></div><br></div></div>