I am creating an executable window file of my java program with the ANT launch4j task in Eclipse. In the ANT task, I use the saved start4j (xml) configuration file 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 still working. The executable is built and working fine.
But when viewing information about the file properties (right-click => properties => details) I get the "language" property with the value "English (US)", although I work with the German version of Windows and therefore would expect it to be " Deutsch".
Do you know if there is an option (possibly hidden or undocumented?) Start4j to set the language property to "German"?
source share