Skip to content

Commit

Permalink
Locale: extract translatable messages also from C++ files (#3015)
Browse files Browse the repository at this point in the history
  • Loading branch information
marisn authored and neteler committed Jun 6, 2023
1 parent 5d16393 commit a8511fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion locale/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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_(\""
Expand Down

0 comments on commit a8511fc

Please sign in to comment.