I18n: Fix all new cpp files not being parsed by UI message extractor.

The 'new' `.cc`/`.hh` extensions were never added to UI message
extractor.

Related to T43295.
This commit is contained in:
Bastien Montagne 2021-11-02 17:00:23 +01:00
parent 6981bee2c7
commit cde982d672
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ DOMAIN = "blender"
# Our own "gettext" stuff.
# File type (ext) to parse.
PYGETTEXT_ALLOWED_EXTS = {".c", ".cpp", ".cxx", ".hpp", ".hxx", ".h"}
PYGETTEXT_ALLOWED_EXTS = {".c", ".cc", ".cpp", ".cxx", ".hh", ".hpp", ".hxx", ".h"}
# Max number of contexts into a BLT_I18N_MSGID_MULTI_CTXT macro...
PYGETTEXT_MAX_MULTI_CTXT = 16