<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"><<a href="mailto:ehud@unix.mvs.co.il">ehud@unix.mvs.co.il</a>></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>
><br>
> Is't there a way to make Wine "Hebrew Enabled"?<br>
<br>
</div>Wine is "Hebrew enabled" 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="$LANG"<br>
LC_NUMERIC="C"<br>
LC_TIME="C"<br>
LC_COLLATE="$LANG"<br>
LC_MONETARY="$LANG"<br>
LC_MESSAGES="$LANG"<br>
LC_PAPER="$LANG"<br>
LC_NAME="$LANG"<br>
LC_ADDRESS="$LANG"<br>
LC_TELEPHONE="C"<br>
LC_MEASUREMENT="C"<br>
LC_IDENTIFICATION="$LANG"<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 "$0" .exe`.exe<br>
<br>
#### set LANG environment for wine programs (Ehud Karni)<br>
. wine-LANG<br>
<br>
# first try explicit WINELOADER<br>
if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi<br>
<br>
# then default bin directory<br>
if [ -x "/usr/bin/wine" ]; then exec "/usr/bin/wine" "$appname" "$@"; fi<br>
<br>
# now try the directory containing $0<br>
appdir=""<br>
case "$0" in<br>
*/*)<br>
# $0 contains a path, use it<br>
appdir=`dirname "$0"`<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 "$d/$0" ]; then appdir="$d"; break; fi<br>
done<br>
;;<br>
esac<br>
if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi<br>
<br>
# finally look in PATH<br>
exec wine "$appname" "$@"<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':<br>
winepath winemine winefile winedbg wineconsole winecfg wineboot<br>
winebrowser uninstaller regsvr32 regedit progman notepad msiexec<br>
<div class="im"><br>
> 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 /"\<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 <<a href="http://www.keyserver.net/" target="_blank">http://www.keyserver.net/</a>> Better Safe Than Sorry<br>
</div></div></blockquote></div><br></div></div>