I'm producing a windows executable EXE file of my java program with an ANT task of launch4j in Eclipse. In the ANT task I'm using a saved launch4j config file (xml) and additionally overwrite the version information.
<launch4j
configFile="${launch4j.config.dir}/paginaEPUBChecker.xml"
fileVersion="${program.version.number}"
txtFileVersion="${program.version.txtNumber}"
productVersion="${program.version.number}"
txtProductVersion="${program.version.txtNumber}"
/>
Everything is working perfect so far. The executable is beeing produced and runs just fine.
But when looking into the file's property details (right click => properties => details) I get the "language" property with the value "English (US)" even though I'm working with a German Windows version and therefore would expect it to be "German".
Do you know whether there is a (probably hidden or undocumented?) launch4j config option to set the language property to "German"?
src\net\sf\launch4j\RCBuilder.javawhich Launch4J later uses it with Windres utility to create the executable, the default resource "LANGUAGE" is LANG_NEUTRAL with SUBLANG_DEFAULT, causing it to fall back to English (US). You can verify this using the open-source ResEdit utility upon the created executable. That is why it is not in German (LANG_GERMAN with SUBLANG_NEUTRAL) see msdn.microsoft.com/en-us/library/windows/desktop/… and wiki.winehq.org/SublangNeutral – eee Feb 9 at 4:22