1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

localization: make FR, DE, IT, and ES app-defaults/ build

This commit is contained in:
Jon Trulson 2019-11-24 18:53:41 -07:00
parent 3ee747ac6b
commit e42c0cc1be
15 changed files with 101 additions and 9 deletions

View file

@ -476,6 +476,14 @@ programs/localized/Makefile
programs/localized/util/Makefile
programs/localized/C/Makefile
programs/localized/C/app-defaults/Makefile
programs/localized/de_DE.UTF-8/Makefile
programs/localized/de_DE.UTF-8/app-defaults/Makefile
programs/localized/fr_FR.UTF-8/Makefile
programs/localized/fr_FR.UTF-8/app-defaults/Makefile
programs/localized/it_IT.UTF-8/Makefile
programs/localized/it_IT.UTF-8/app-defaults/Makefile
programs/localized/es_ES.UTF-8/Makefile
programs/localized/es_ES.UTF-8/app-defaults/Makefile
])

View file

@ -1,25 +1,21 @@
SUBDIRS = util C
if SOLARIS
.NO_PARALLEL:
endif
if JAPANESE
SUBDIRS += ja_JP.dt-eucJP
endif
if GERMAN
SUBDIRS += de_DE.ISO8859-1
SUBDIRS += de_DE.UTF-8
endif
if ITALIAN
SUBDIRS += it_IT.ISO8859-1
SUBDIRS += it_IT.UTF-8
endif
if SPANISH
SUBDIRS += es_ES.ISO8859-1
SUBDIRS += es_ES.UTF-8
endif
if FRENCH
SUBDIRS += fr_FR.ISO8859-1
SUBDIRS += fr_FR.UTF-8
endif

View file

@ -0,0 +1,5 @@
MAINTAINERCLEANFILES = Makefile.in
include ../../templates/German.am
include ../../templates/app-defaults.am

View file

@ -0,0 +1,5 @@
MAINTAINERCLEANFILES = Makefile.in
include ../../templates/Spanish.am
include ../../templates/app-defaults.am

View file

@ -0,0 +1,5 @@
MAINTAINERCLEANFILES = Makefile.in
include ../../templates/French.am
include ../../templates/app-defaults.am

View file

@ -1 +0,0 @@
SUBDIRS = types config msg app-defaults palettes backdrops

View file

@ -0,0 +1 @@
SUBDIRS = msg app-defaults config types palettes backdrops

View file

@ -0,0 +1,5 @@
MAINTAINERCLEANFILES = Makefile.in
include ../../templates/Italian.am
include ../../templates/app-defaults.am

View file

@ -0,0 +1,17 @@
# This file is a template for setting the platform-specific LANG
# variable for a locale.
if SOLARIS
LANG=fr
endif
if LINUX
LANG=fr_FR.UTF-8
endif
if BSD
LANG=fr_FR.UTF-8
endif
SOURCE_LANG=fr_FR.ISO8859-1

View file

@ -0,0 +1,17 @@
# This file is a template for setting the platform-specific LANG
# variable for a locale.
if SOLARIS
LANG=de
endif
if LINUX
LANG=de_DE.UTF-8
endif
if BSD
LANG=de_DE.UTF-8
endif
SOURCE_LANG=de_DE.ISO8859-1

View file

@ -0,0 +1,17 @@
# This file is a template for setting the platform-specific LANG
# variable for a locale.
if SOLARIS
LANG=it
endif
if LINUX
LANG=it_IT.UTF-8
endif
if BSD
LANG=it_IT.UTF-8
endif
SOURCE_LANG=it_IT.ISO8859-1

View file

@ -0,0 +1,17 @@
# This file is a template for setting the platform-specific LANG
# variable for a locale.
if SOLARIS
LANG=es
endif
if LINUX
LANG=es_ES.UTF-8
endif
if BSD
LANG=es_ES.UTF-8
endif
SOURCE_LANG=es_ES.ISO8859-1