From 1caba582c1a31933f5a1615ea99fb0430b32a584 Mon Sep 17 00:00:00 2001 From: Alex Benya Denisov Date: Thu, 30 Jul 2026 21:23:04 +0300 Subject: [PATCH] fix: select Russian LuCI language --- deploy/luci-builder/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/luci-builder/Dockerfile b/deploy/luci-builder/Dockerfile index 1523990..6df360b 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_LUCI_LANG_ru=m' \ + 'CONFIG_LUCI_LANG_ru=y' \ >> .config \ && make defconfig \ && awk ' \ @@ -160,7 +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_LUCI_LANG_ru=y$' .config \ && grep -q '^CONFIG_PACKAGE_luci-i18n-rmm-agent-ru=m$' .config RUN make -j1 package/luci-app-rmm-agent/compile V=s