setup: split listing of .in sources for POTFILES

Extract them from _generate_potfiles_in() to an own
_generate_meta_potfiles_in() function.

Reviewed-by: Cole Robinson <crobinso@redhat.com>
Signed-off-by: Pino Toscano <ptoscano@redhat.com>
This commit is contained in:
Pino Toscano 2020-07-08 16:54:12 +02:00 committed by Cole Robinson
parent a8d2438d5a
commit fdc902e461

View File

@ -59,6 +59,13 @@ _appdata_files = [
]
def _generate_meta_potfiles_in():
potfiles = ""
for ignore, filelist in _desktop_files + _appdata_files:
potfiles += "\n".join(filelist) + "\n"
return potfiles
def _generate_potfiles_in():
def find(dirname, ext):
ret = []
@ -72,8 +79,7 @@ def _generate_potfiles_in():
potfiles += "\n".join(find("virtManager", "*.py")) + "\n\n"
potfiles += "\n".join(find("virtinst", "*.py")) + "\n\n"
for ignore, filelist in _desktop_files + _appdata_files:
potfiles += "\n".join(filelist) + "\n"
potfiles += _generate_meta_potfiles_in()
potfiles += "\n"
potfiles += "\n".join(["[type: gettext/glade]" + f for