Databases
1. Field Localization
In field localization the idea is to create for each target language a field that contains localized data. For instance in picture 3 the text field "Value" contains the native text and "Value_JA" contains the Japanese translations.

Picture 1: Field localization sample with native field "Value" and Japanese field "Value_JA".
Example SQL script to get dialog information in Japanese:
SELECT Dialog, Control, Property,
Value_JA AS "Value"
FROM Dialogs;
<< Back | Index | Next >>
|