gluon-core: add i18n support

This commit is contained in:
Matthias Schiffer 2015-03-18 20:24:57 +01:00
parent 870385aa55
commit 194ea0ffd9
1 changed files with 15 additions and 0 deletions

View File

@ -15,6 +15,21 @@ define Package/gluon-core
DEPENDS:=+gluon-config +lua-platform-info +luci-lib-nixio +odhcp6c +firewall
endef
define LangConfig
config GLUON_LANG_$(1)
bool "$(GLUON_LANG_$(1)) language support"
depends on PACKAGE_gluon-core
default n
endef
define Package/gluon-core/config
$(foreach lang,$(GLUON_SUPPORTED_LANGS),$(call LangConfig,$(lang)))
endef
define Package/gluon-core/description
Gluon community wifi mesh firmware framework: core
endef