From 7cd210f03ce73ed09a98420488205616c7310038 Mon Sep 17 00:00:00 2001 From: Alex Benya Denisov Date: Thu, 30 Jul 2026 21:10:17 +0300 Subject: [PATCH] fix: enable Russian LuCI translation package --- deploy/luci-builder/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deploy/luci-builder/Dockerfile b/deploy/luci-builder/Dockerfile index 6170de9..1523990 100644 --- a/deploy/luci-builder/Dockerfile +++ b/deploy/luci-builder/Dockerfile @@ -143,7 +143,7 @@ RUN rm -rf tmp/info \ RUN printf '%s\n' \ 'CONFIG_PACKAGE_luci-app-rmm-agent=m' \ - 'CONFIG_PACKAGE_luci-i18n-rmm-agent-ru=m' \ + 'CONFIG_LUCI_LANG_ru=m' \ >> .config \ && make defconfig \ && awk ' \ @@ -160,6 +160,7 @@ RUN printf '%s\n' \ ' .config > .config.packages-pruned \ && mv .config.packages-pruned .config \ && grep -q '^CONFIG_PACKAGE_luci-app-rmm-agent=m$' .config \ + && grep -q '^CONFIG_LUCI_LANG_ru=m$' .config \ && grep -q '^CONFIG_PACKAGE_luci-i18n-rmm-agent-ru=m$' .config RUN make -j1 package/luci-app-rmm-agent/compile V=s