How to display a different "Welcome" file during installation based on Symbian device language settings
Article Metadata
Compatibility
Platform(s): S60 3rd Edition
Article
Created: User:Technical writer 2
(05 Oct 2006)
Last edited: hamishwillee
(14 Jun 2012)
Overview
How can I display a different "Welcome" file during installation according to different language settings?
Description
Displaying a message during installation that is localized to the current device language can be done with condition blocks (IF-ELSEIF-ELSE-ENDIF) inside a pkg file.
For example,
IF (LANGUAGE=1)
"welcome.l01"-"", FT
ELSEIF (LANGUAGE=2)
"welcome.l02"-"", FT
...
ENDIF
For information on language IDs, see TLanguage in e32const.h. For more information about pkg options and condition blocks, see 'Package file format' in the SDK Help.


(no comments yet)