To turn on the internationalization semantics, use the ICLUI_I18N environment variable:
SET ICLUI_I18N=ON
export ICLUI_I18N=ON
To turn off the internationalization semantics:
SET ICLUI_I18N=OFF
export ICLUI_I18N=OFF
The semantics are off by default.
You can also use the IString class to turn internationalization on or off from within your program. The IString class provides three member functions that allow you to programmatically turn internationalization on or off, and test for internationalization:
static void enableInternationalization( Boolean enable = true); static void disableInternationalization(); static Boolean isInternationalized();