summaryrefslogtreecommitdiffstats
path: root/rules/locales.in
blob: 292a602a603eb37c57c04c82929c1b2f30e87528 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
## SECTION=core

menuconfig LOCALES
	tristate
	prompt "system locales                "
	depends on GLIBC
	select HOST_LOCALEDEF
	help
	  select this to enable locale installation, otherwise your system will only
	  support locales "C" and "POSIX"

if LOCALES

comment "English Support"

config LOCALES_EN_US
	bool
	prompt "en_US (ISO8859-1)"
	default y
	help
	  American English language support.

config LOCALES_EN_US_UTF8
	bool
	prompt "en_US (UTF-8)"
	help
	  American English language support with utf-8.

config LOCALES_EN_GB
	bool
	prompt "en.GB (ISO8859-1)"
	help
	  British English language support.

config LOCALES_EN_GB_EURO
	bool
	prompt "en_GB.euro (ISO8859-15)"
	help
	  British English language support with Euro sign.

comment "German Support"

config LOCALES_DE_DE
	bool
	prompt "de_DE (ISO8859-1)"
	help
	  German language support (Germany).

config LOCALES_DE_DE_UTF8
	bool
	prompt "de_DE (utf-8)"
	help
	  German language support with utf-8 (Germany).

config LOCALES_DE_DE_EURO
	bool
	prompt "de_DE.euro (ISO8859-15)"
	help
	  German language support with Euro sign (Germany).

comment "Chinese Support"

config LOCALES_ZH_CN
	bool
	prompt "zh_CN (GB2312)"
	help
	  Chinese language support (mainland).

config LOCALES_ZH_CN_GBK
	bool
	prompt "zh_CN (GBK)"
	help
	  Chinese language support (mainland.GBK).

config LOCALES_ZH_CN_GB18030
	bool
	prompt "zh_CN (GB18030)"
	help
	  Chinese language support (mainland.GB13030).

config LOCALES_ZH_TW
	bool
	prompt "zh_TW (BIG5)"
	help
	  Chinese language support (taiwan).

config LOCALES_ZH_HK
	bool
	prompt "zh_HK (BIG5_HKSCS)"
	help
	  Chinese language support (Hongkong).

endif