From 9e4b1571b1d7a3cb80f24a5e6ca8721755f34ce5 Mon Sep 17 00:00:00 2001 From: Lauri Nurmi Date: Thu, 21 Jan 2021 13:38:47 +0200 Subject: [PATCH] Extract translatable strings from Obj-C++ files (.mm) also Until now any translatable strings inside .mm files were ignored, and half a dozen of them didn't appear anywhere else, and thus remained untranslated. --- locale/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/locale/Makefile b/locale/Makefile index 5fe5e0c73c..c195a0bb84 100644 --- a/locale/Makefile +++ b/locale/Makefile @@ -34,6 +34,7 @@ wxstd.pot: touch $@ find ../include -name "*.h" | $(XARGS) $(XGETTEXT) $(XGETTEXT_ARGS) -o wxstd.pot find ../src -name "*.cpp" | $(XARGS) $(XGETTEXT) $(XGETTEXT_ARGS) -o wxstd.pot + find ../src -name "*.mm" | $(XARGS) $(XGETTEXT) $(XGETTEXT_ARGS) -o wxstd.pot allpo: force-update @-for t in $(WX_LINGUAS_UPDATE); do $(MAKE) $$t.po; done