diff options
author | Florian Fainelli <florian@openwrt.org> | 2008-07-07 09:03:30 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2008-07-07 09:03:30 +0000 |
commit | 4a74897e1ac642bf3792cdd680a342f89e56ea29 (patch) | |
tree | 02ef52a6a321a8baeab667c198be5eeea2e695fc /contrib | |
parent | 8169f8ca8bc35349136d66dd12683222435967f9 (diff) |
Add french translations to LuCI
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/package/luci/Makefile | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/contrib/package/luci/Makefile b/contrib/package/luci/Makefile index 6b968e38a..e5f804043 100644 --- a/contrib/package/luci/Makefile +++ b/contrib/package/luci/Makefile @@ -433,6 +433,17 @@ define Package/luci-i18n-english/install endef +define Package/luci-i18n-french + $(call Package/luci/i18ntemplate) + TITLE:=French +endef + +define Package/luci-i18n-french/install + $(call Package/luci/install/template,$(1),i18n/french) +endef + + + ### Compile ### ifneq ($(CONFIG_PACKAGE_luci-core),) @@ -514,9 +525,12 @@ endif ifneq ($(CONFIG_PACKAGE_luci-i18n-german),) PKG_SELECTED_MODULES+=i18n/german endif -ifneq ($(CONFIG_PACKAGE_luci-i18n-english),) +ifneq ($(CONFIG_Pfrenchluci-i18n-english),) PKG_SELECTED_MODULES+=i18n/english endif +ifneq ($(CONFIG_PACKAGE_luci-i18n-french),) + PKG_SELECTED_MODULES+=i18n/french +endif MAKE_FLAGS += \ @@ -560,3 +574,4 @@ $(eval $(call BuildPackage,luci-theme-openwrt)) $(eval $(call BuildPackage,luci-i18n-german)) $(eval $(call BuildPackage,luci-i18n-english)) +$(eval $(call BuildPackage,luci-i18n-french)) |