summaryrefslogtreecommitdiffstats
path: root/rules/gettext.in
blob: da3051fb1a34381b4881e5306295baf1c41aa952 (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
## SECTION=system_libraries
menuconfig GETTEXT
	tristate
	prompt "gettext (gnu)                 "
	select LIBC_M
	select LIBC_DL
	select GCCLIBS_CXX
	select GCCLIBS_GCC_S
	select LIBXML2
	select LIBXML2_WRITER
	help
	  The gettext program translates a natural language
	  message into the user's language, by looking up
	  the translation in a message catalog.


if GETTEXT

config GETTEXT_ENVSUBST
	bool
	prompt "envsubst"
	help
	  Substitutes environment variables in shell format strings

config GETTEXT_TOOLS
	bool
	prompt "gettext/xgettext cli"
	select GETTEXT_LIBS
	help
	  Command line tools for translations.

config GETTEXT_LIBS
	bool
	prompt "gettext libs"
	help
	  System libraries for translations.

endif