Fix bug #1676163 by copying in all the Qt translation files (they were broken out into different files in Qt5)

bzr-revno: 35
This commit is contained in:
Raoul Snyman 2017-03-27 22:27:39 -07:00
commit f69aa011c0
1 changed files with 1 additions and 1 deletions

View File

@ -409,7 +409,7 @@ class Builder(object):
self._print('Copying Qt translation files...')
source = self.get_qt_translations_path()
for filename in os.listdir(source):
if filename.startswith('qt_') and filename.endswith('.qm'):
if filename.startswith('qt') and filename.endswith('.qm'):
self._print_verbose('... %s', filename)
copy(os.path.join(source, filename), os.path.join(self.dist_path, 'i18n', filename))