Thanks for the protocol. With these informations I was able to reproduce the issue on my test environment. The problem only occurs with certain language settings in your operating system. We're going to fix that problem with the upcoming update (0.9.22), that will be released within the next days.
In the meantime you can use the following workaround:
For Windows systems:- Create an empty BAT file in the program directory - let's call it for example 'ImmoTool-spanish.bat'.
- Copy the following content into the BAT file:
- Code: Select all
@ECHO OFF
:: path to java.exe
SET JAVA_EXE=java.exe
:: memory settings
SET JAVA_HEAP_MINIMUM=32m
SET JAVA_HEAP_MAXIMUM=256m
SET JAVA_PERM_SIZE=64m
:: prefer IPv4 networking
SET JAVA_PREFER_IPV4=true
:: hardware acceleration via OpenGL
SET JAVA_OPENGL=false
:: launch ImmoTool
%JAVA_EXE% -Xms%JAVA_HEAP_MINIMUM% -Xmx%JAVA_HEAP_MAXIMUM% -XX:MaxPermSize=%JAVA_PERM_SIZE% -Dsun.java2d.opengl=%JAVA_OPENGL% -Djava.net.preferIPv4Stack=%JAVA_PREFER_IPV4% -Dfile.encoding=UTF-8 -Duser.language=en -Duser.region=US -jar OpenEstate-Tool.jar %*
- If you launch the application by double click on 'ImmoTool-spanish.bat', the problem (hopefully) should not occur anymore.
For Linux systems:- Create an empty SH file in the program directory - let's call it for example 'ImmoTool-spanish.sh'.
- Copy the following content into the SH file:
- Code: Select all
#!/bin/sh
# path to java runtime
JAVA_BIN=java
#JAVA_BIN=/opt/java/bin/java
#JAVA_BIN=/usr/lib/jvm/java-6-sun/bin/java
# memory settings
JAVA_HEAP_MINIMUM=32m
JAVA_HEAP_MAXIMUM=256m
JAVA_PERM_SIZE=64m
# hardware acceleration via OpenGL
JAVA_OPENGL=false
# launch ImmoTool
$JAVA_BIN -Xms$JAVA_HEAP_MINIMUM -Xmx$JAVA_HEAP_MAXIMUM -XX:MaxPermSize=$JAVA_PERM_SIZE -Dsun.java2d.opengl=$JAVA_OPENGL -Dfile.encoding=UTF-8 -Duser.language=en -Duser.region=US -jar OpenEstate-Tool.jar "$@"
- Launch a shell / terminal and change into the program directory - for example (if the program is located at '/opt/OpenEstate-ImmoTool'):
- Code: Select all
cd /opt/OpenEstate-ImmoTool
- Make 'ImmoTool-spanish.sh' executable via
- Code: Select all
chmod ugo+x ImmoTool-spanish.sh
- Launch the application via
- Code: Select all
./ImmoTool-spanish.sh
Compared to the original BAT / SH files, the relevant modification is
-Duser.language=en -Duser.region=US in the last line.
sgisoft wrote:In addition we tested the beta version but has no Spanish module, so we can not verify if they have the same symptoms.
We currently don't provide languages packages for the beta release. It will take some more weeks, until the first multilingual beta version will be available.