Docs (help and the dtinfo guides) are now always built using the ISO8859-1 locale. To support UTF-8, our docbook needs to be updated to something from this century, ideally this decade. In addition, a conversion to XML would also be required as a result. So, until that happens, use ISO8859-1 for docs. However, other locale information, like message catalogs, resource files, and the like are now converted to UTF-8. All supported languages are now built by default on linux again.
35 lines
578 B
Cheetah
35 lines
578 B
Cheetah
XCOMM $XConsortium: Italian.tmpl /main/1 1995/12/08 09:41:55 rswiston $
|
|
/*
|
|
* This file is a template for setting the platform-specific LANG
|
|
* variable for the Italian locale.
|
|
*/
|
|
|
|
#if BuildingDocs
|
|
|
|
XCOMM stick to ISO8859-1
|
|
SOURCE_LANG=it_IT.ISO8859-1
|
|
|
|
#ifdef SunArchitecture
|
|
LANG=it
|
|
#endif
|
|
|
|
#if defined(LinuxArchitecture) || defined(BSDArchitecture)
|
|
LANG=it_IT.ISO8859-1
|
|
#endif
|
|
|
|
#else
|
|
|
|
XCOMM use UTF-8 for localization
|
|
SOURCE_LANG=it_IT.UTF-8
|
|
|
|
#ifdef SunArchitecture
|
|
LANG=it
|
|
#endif
|
|
|
|
#if defined(LinuxArchitecture) || defined(BSDArchitecture)
|
|
LANG=it_IT.UTF-8
|
|
#endif
|
|
|
|
|
|
#endif
|