Locale ID (language) in version Info

Although I have the Language set to "English (United States)" in Delphi 7, doing a compile in Finalbuilder sets the Langague in the exe version comes up as "English (Australia)". There is not Language in the Win 32 property set, so where is this value being set and how do I change it?

-Bob McCabe

Hi Bob

Sorry for the delayed reply, not sure why we didn’t see this post before. The Language is set on the Version Info property page, there is a combo box where you can set the language.

Hi,

Sorry to comeback on an old topic.

I have a question regarding the locale ID. Like you wrote, it’s possible to change the language manually in the Version Info property page. In my case, in this same page I select the option “Use Property Set for Version Info”. So I use a property set to set version info and others parameters. I didn’t find how to set the language in the property Set. Could you please tell me if it’s possible to set the language by script using a property set or other and if the answer is yes, how I can do it ?

For your help.

Regards

EQ

PS : I use FinalBuilder 7

Hi

Locale is not part of the propertyset (not sure why, it really should be), so you would need to resort to using script to set the property from a variable at runtime, e.g :

(in the beforeaction script event) :

[code]Action.Locale = FBVariables.MyLocaleVariable[/code]

Hi,

thank you for your help, I am going to follow your advise.

Regards.

EQ

It works.

Thanks again!

Regards

EQ