utf8 conversion: fix up seperation of locale and doc building
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.
This commit is contained in:
@@ -4,25 +4,30 @@ XCOMM $XConsortium: French.tmpl /main/1 1995/12/08 09:41:35 rswiston $
|
||||
* variable for the French locale.
|
||||
*/
|
||||
|
||||
SOURCE_LANG=fr_FR.UTF-8
|
||||
#if BuildingDocs
|
||||
|
||||
#ifdef AlphaArchitecture
|
||||
LANG=fr_FR.UTF-8
|
||||
#endif
|
||||
|
||||
#ifdef RsArchitecture
|
||||
SHELL=/bin/ksh
|
||||
LANG=fr_FR
|
||||
#endif
|
||||
XCOMM stick to ISO8859-1
|
||||
SOURCE_LANG=fr_FR.ISO8859-1
|
||||
|
||||
#ifdef SunArchitecture
|
||||
LANG=fr
|
||||
#endif
|
||||
|
||||
#ifdef HPArchitecture
|
||||
LANG=fr_FR.utf8
|
||||
#if defined(LinuxArchitecture) || defined(BSDArchitecture)
|
||||
LANG=fr_FR.ISO8859-1
|
||||
#endif
|
||||
|
||||
#else
|
||||
|
||||
XCOMM use UTF-8 for localization
|
||||
SOURCE_LANG=fr_FR.UTF-8
|
||||
|
||||
#ifdef SunArchitecture
|
||||
LANG=fr
|
||||
#endif
|
||||
|
||||
#if defined(LinuxArchitecture) || defined(BSDArchitecture)
|
||||
LANG=fr_FR.UTF-8
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
@@ -4,25 +4,30 @@ XCOMM $XConsortium: German.tmpl /main/1 1995/12/08 09:41:46 rswiston $
|
||||
* variable for the German locale.
|
||||
*/
|
||||
|
||||
SOURCE_LANG=de_DE.UTF-8
|
||||
#if BuildingDocs
|
||||
|
||||
#ifdef AlphaArchitecture
|
||||
LANG=de_DE.UTF-8
|
||||
#endif
|
||||
|
||||
#ifdef RsArchitecture
|
||||
SHELL=/bin/ksh
|
||||
LANG=de_DE
|
||||
#endif
|
||||
XCOMM stick to ISO8859-1
|
||||
SOURCE_LANG=de_DE.ISO8859-1
|
||||
|
||||
#ifdef SunArchitecture
|
||||
LANG=de
|
||||
#endif
|
||||
|
||||
#ifdef HPArchitecture
|
||||
LANG=de_DE.utf8
|
||||
#if defined(LinuxArchitecture) || defined(BSDArchitecture)
|
||||
LANG=de_DE.ISO8859-1
|
||||
#endif
|
||||
|
||||
#else
|
||||
|
||||
XCOMM use UTF-8 for localization
|
||||
SOURCE_LANG=de_DE.UTF-8
|
||||
|
||||
#ifdef SunArchitecture
|
||||
LANG=de
|
||||
#endif
|
||||
|
||||
#if defined(LinuxArchitecture) || defined(BSDArchitecture)
|
||||
LANG=de_DE.UTF-8
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
@@ -4,25 +4,31 @@ XCOMM $XConsortium: Italian.tmpl /main/1 1995/12/08 09:41:55 rswiston $
|
||||
* variable for the Italian locale.
|
||||
*/
|
||||
|
||||
SOURCE_LANG=it_IT.UTF-8
|
||||
#if BuildingDocs
|
||||
|
||||
#ifdef AlphaArchitecture
|
||||
LANG=it_IT.UTF-8
|
||||
#endif
|
||||
|
||||
#ifdef RsArchitecture
|
||||
SHELL=/bin/ksh
|
||||
LANG=it_IT
|
||||
#endif
|
||||
XCOMM stick to ISO8859-1
|
||||
SOURCE_LANG=it_IT.ISO8859-1
|
||||
|
||||
#ifdef SunArchitecture
|
||||
LANG=it
|
||||
#endif
|
||||
|
||||
#ifdef HPArchitecture
|
||||
LANG=it_IT.utf8
|
||||
#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
|
||||
|
||||
@@ -4,25 +4,29 @@ XCOMM $XConsortium: Spanish.tmpl /main/1 1995/12/08 09:42:25 rswiston $
|
||||
* variable for the Spanish locale.
|
||||
*/
|
||||
|
||||
SOURCE_LANG=es_ES.UTF-8
|
||||
#if BuildingDocs
|
||||
|
||||
#ifdef AlphaArchitecture
|
||||
LANG=es_ES.UTF-8
|
||||
#endif
|
||||
|
||||
#ifdef RsArchitecture
|
||||
SHELL=/bin/ksh
|
||||
LANG=es_ES
|
||||
#endif
|
||||
XCOMM stick to ISO8859-1
|
||||
SOURCE_LANG=es_ES.ISO8859-1
|
||||
|
||||
#ifdef SunArchitecture
|
||||
LANG=es
|
||||
#endif
|
||||
|
||||
#ifdef HPArchitecture
|
||||
LANG=es_ES.utf8
|
||||
#if defined(LinuxArchitecture) || defined(BSDArchitecture)
|
||||
LANG=es_ES.ISO8859-1
|
||||
#endif
|
||||
|
||||
#else
|
||||
|
||||
SOURCE_LANG=es_ES.UTF-8
|
||||
|
||||
#ifdef SunArchitecture
|
||||
LANG=es
|
||||
#endif
|
||||
|
||||
#if defined(LinuxArchitecture) || defined(BSDArchitecture)
|
||||
LANG=es_ES.UTF-8
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
@@ -4,21 +4,30 @@ XCOMM $XConsortium: Swedish.tmpl /main/1 1995/12/08 09:42:34 rswiston $
|
||||
* variable for the Swedish locale.
|
||||
*/
|
||||
|
||||
#if BuildingDocs
|
||||
|
||||
XCOMM stick to ISO8859-1
|
||||
SOURCE_LANG=sv_SE.ISO8859-1
|
||||
|
||||
#ifdef AlphaArchitecture
|
||||
LANG=sv_SE.ISO8859-1
|
||||
#endif
|
||||
|
||||
#ifdef RsArchitecture
|
||||
SHELL=/bin/ksh
|
||||
LANG=sv_SE
|
||||
#endif
|
||||
|
||||
#ifdef SunArchitecture
|
||||
LANG=sv
|
||||
#endif
|
||||
|
||||
#ifdef HPArchitecture
|
||||
LANG=sv_SE.iso88591
|
||||
#if defined(LinuxArchitecture) || defined(BSDArchitecture)
|
||||
LANG=sv_SE.ISO8859-1
|
||||
#endif
|
||||
|
||||
#else
|
||||
|
||||
XCOMM use UTF-8 for localization
|
||||
SOURCE_LANG=sv_SE.UTF-8
|
||||
|
||||
#ifdef SunArchitecture
|
||||
LANG=sv
|
||||
#endif
|
||||
|
||||
#if defined(LinuxArchitecture) || defined(BSDArchitecture)
|
||||
LANG=sv_SE.UTF-8
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user