Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Howdy Ivan George,
Yes, you will need to open the Messaging & Localization from the StrataFrame menu within Visual Studio. Then, within the Common Repository, create a localization key for each message you want to translate and associate that key with the messages from the different languages. Then, you can export those messages to XML. Within the AppMain.vb file (or program.cs) configure the application to use XML for localization information and provide the path to the folder containing the XML files.
Any text that is "embedded" within the framework can be configured to use a localization key. For instance, the "This field is required" message is set on the form by the ErrorProviderRequiredFieldDesc property, but if you specify the ErrorProviderRequiredFieldDescKey property, StrataFrame will pull the text from that localized XML file.
|