From ce6de4a9a0839d68b4e3305af476de7842be77c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C4=81ris=20Narti=C5=A1s?= Date: Tue, 6 Jun 2023 10:44:18 +0300 Subject: [PATCH] Locale: extract translatable messages also from C++ files (#3015) --- locale/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale/Makefile b/locale/Makefile index cd3dc9e6861..beceed0ebe3 100644 --- a/locale/Makefile +++ b/locale/Makefile @@ -32,7 +32,7 @@ WXPYDOMAIN = grasswxpy DOMAINS = $(LIBDOMAIN) $(MODDOMAIN) $(WXPYDOMAIN) LIB_POTFILES = find ../lib \( -name "*.c" -o -name "*.py" \) | xargs grep -l "_(\"\|n_(\"" -MOD_POTFILES = find ../ -name '*.c' | grep -v '../lib' | xargs grep -l "_(\"\|n_(\"" +MOD_POTFILES = find ../ \( -name "*.c" -o -name "*.cpp" \) | grep -v '../lib' | xargs grep -l "_(\"\|n_(\"" WXPY_POTFILES = find ../gui/wxpython -name '*.py' | xargs grep -l "_(\"\|n_(\"" #For Python script module messages MOD_PYFILES = find ../scripts -name '*.py' | xargs grep -l "_(\"\|n_(\""