G'day,
I'm using AI 7.7 build 28804
My project is configured to create one package per language (option set on the "Languages" tab).
I need to include a localized jar in each single-language package. The file name of the jar must be the same ("resources.jar") in each package, but the contents will be different. When I build the localized jars with my Ant scripts, they are created in separate folders:
.../de/resources.jar
.../en/resources.jar
(side note: when I install the jar on the target machine, I do not want to include the language sub-folder)
I am struggling with how to build the single-language packages, such that each package gets the correct jar. What I think I need is to create a variable for the source-path folder, and then localize that variable. Something like:
.../[|Lang]/resources.jar
.../[|Lang]/resources.jar
I found this "Source Path variable" forum post which discusses how to use a variable in a source path. I followed the instructions and it seems to work fine, but it appears that I cannot localize Path Variables since they are global and not per-project.
Is there another approach I could use?
Thanks much,
Todd