Setting the default language for UNICOM Intelligence Interviewer
When you run UNICOM Intelligence Interviewer the current language is set, by default, to the system locale setting in your computer’s operating system. You can specify a different language by changing the various configuration files (.exe.config) for each UNICOM Intelligence Interviewer application. If a configuration file does not exist for an application, you can create one.
Setting the default language
This example shows how to change the configuration file for the IPlayerConsole.exe application (Interviewer Console). A similar change can be made for the other UNICOM Intelligence Interviewer applications (ConfigWizard.exe - Configuration Wizard, IPlayer.exe - UNICOM Intelligence Interviewer, and IPlayerSyncMgr.exe – UNICOM Intelligence Interviewer - Synchronization Console).
1 Exit the UNICOM Intelligence Interviewer application.
2 Use a text editor to create a file named IPlayerConsole.exe.config in the UNICOM Intelligence Interviewer installation folder.
The default location is:
[INSTALL_FOLDER]\IBM\SPSS\<version>\Interviewer\
3 Insert the following XML elements into IPlayerConsole.exe.config, replacing en‑us with the appropriate four-letter language code to be used as the default:
<configuration>
<appSettings>
<add key="Culture" value="en-US" />
</appSettings>
</configuration>
Language
|
Code
|
Chinese
|
zh-CN
|
English
|
en-US
|
French
|
fr-FR
|
German
|
de-DE
|
Italian
|
it-IT
|
Japanese
|
ja-JP
|
Spanish
|
es-ES
|
4 Save IPlayerConsole.exe.config.
When you run UNICOM Intelligence Interviewer, the language is set to the language that you specified in the IPlayerConsole.exe.config file.
Setting the default language back to your system locale setting
1 Exit the IPlayerConsole.exe application.
2 Edit the IPlayerConsole.exe.config file that is in the UNICOM Intelligence Interviewer installation folder.
3 Remove the following XML elements:
<configuration>
<appSettings>
<add key="Culture" value="en-US" />
</appSettings>
</configuration>
4 Save IPlayerConsole.exe.config, and then start UNICOM Intelligence Interviewer.
See also