| ID | TSS000316 | Creation date | February 23, 2006 |
| Platform | All Symbian | Devices | |
| Category | Symbian C++ | Subcategory | General |
| Keywords (APIs, classes, methods, functions): |
SIS packages and localized resource files
After adding multi-language support to an application by using localized resource files, the final step is to add them into a .pkg file and generate the SIS package.
There are two ways to do this: Resources can be added into a .pkg file either as language-dependent or language-independent files.
Language-independent files
These files are always copied to destination, regardless of language settings or user’s choices.
"MyApp.r01" - "!:\system\apps\MyApp\MyApp.r01" ; 01=English
"MyApp.r02" - "!:\system\apps\MyApp\MyApp.r02" ; 02=French
"MyApp.r03" - "!:\system\apps\MyApp\MyApp.r03" ; 03=German
; etc (see TLanguage in e32std.h for all lang. enumerations)
The application framework decides which one to load during application startup, based on the current language setting. Copying all the resource files to the device will increase memory consumption, but on the other hand the application will follow the current language setting of the device (restart may be required).
Language-dependent files
Specifies a list of files, of which only one will be installed, depending on the language selected by the user during installation. The ordering and number of the files must match the languages that were specified in the languages line of the .pkg file.
{ "MyApp.r01",
"MyApp.r02",
"MyApp.r03" } - "!:\system\apps\MyApp\MyApp.rsc"
Since only one of the localized resource files is copied, the application cannot follow the language settings of the device. Changing the language of the application requires a reinstall.
The preferred method for installing resource files depends on the combined size of all localized resources and whether the application should be able to follow the language setting of the device.
| Thread | Thread Starter | Forum | Replies | Last Post |
|---|---|---|---|---|
| sis to jar | rijas123 | General Discussion | 1 | 2008-04-28 12:55 |
| many app in a SIS file | Jeepy | Symbian Tools & SDKs | 2 | 2005-10-12 08:13 |
| Problem to port the application onto a nokia hand set | ankit kashyap | Mobile Java General | 7 | 2006-04-02 05:41 |
| Nokia论坛技术资料Symbian解决方案-中文版 | hoolee | Symbian | 488 | 2008-11-28 07:10 |
| " Error 1" in creating SIS file | new2symb | General Symbian C++ | 9 | 2007-07-17 11:47 |