From b729af9ff5ad016daeb3aa91374a5ab7a6cd58cd Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 31 Aug 2023 15:52:05 +0200 Subject: [PATCH] build: i18n-scan.pl: process HTTPS DNS proxy provider descriptions Ref: https://github.com/openwrt/luci/pull/6546#issue-1872235715 Signed-off-by: Jo-Philipp Wich --- build/i18n-scan.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/i18n-scan.pl b/build/i18n-scan.pl index da7a944b96..f824e60943 100755 --- a/build/i18n-scan.pl +++ b/build/i18n-scan.pl @@ -237,7 +237,7 @@ my $msguniq_pid = open2($msguniq_out, $msguniq_in, 'msguniq', '-s'); print $msguniq_in "msgid \"\"\nmsgstr \"Content-Type: text/plain; charset=UTF-8\"\n"; -if (open F, "find @ARGV -type f '(' -name '*.htm' -o -name '*.lua' -o -name '*.js' -o -name '*.uc' -o -name '*.ut' -o -path '*/menu.d/*.json' -o -path '*/acl.d/*.json' -o -path '*/statistics/plugins/*.json' ')' |") +if (open F, "find @ARGV -type f '(' -name '*.htm' -o -name '*.lua' -o -name '*.js' -o -name '*.uc' -o -name '*.ut' -o -path '*/menu.d/*.json' -o -path '*/acl.d/*.json' -o -path '*/statistics/plugins/*.json' -o -path '*/https-dns-proxy/providers/*.json' ')' |") { while (defined( my $file = readline F)) { -- 2.30.2