locale = OpenLocale(name);
D0 A0
struct Locale *OpenLocale(STRPTR);
This function opens a named locale. Locales contain many parameters that an application needs to consider when being integrated into different languages, territories and customs. Using the information stored in a locale instead of hard-coding it into an application, lets the application dynamically adapt to the user's environment.
Locales originally come from disk files which are created by the user using the Locale preferences editor. Passing a NULL instead of a name causes this function to return the current default locale. This is what most applications will do.
Every locale specifies a language, and special language drivers must be loaded from disk depending on which language is being used. These files include for example:
LOCALE:Languages/français.language
LOCALE:Languages/dansk.language
LOCALE:Languages/italiano.language
CloseLocale(), <libraries/locale.h>, <prefs/locale.h>