diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-10-03 16:45:13 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-10-03 16:45:13 -0300 |
commit | fd362fecd88ad7d5692dcd5686c3f05d46cb3c45 (patch) | |
tree | c1c0f4969fc7db7a6cace2759444c93853c468cb /data/make_project_file.py | |
parent | 93750f2371555ad0c769c62c1bd179e2b96c282c (diff) |
Update i18n strings.
Exclude pinned providers and tests from the bitmask.pro generator since
there is no strings to translate in there.
Diffstat (limited to 'data/make_project_file.py')
-rwxr-xr-x | data/make_project_file.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data/make_project_file.py b/data/make_project_file.py index d1567837..5519e128 100755 --- a/data/make_project_file.py +++ b/data/make_project_file.py @@ -52,7 +52,8 @@ if __name__ == '__main__': # Source files includes = ["*.py"] - excludes = ['__init__.py', '_version.py', 'ui_*.py', '*_rc.py'] + excludes = ['__init__.py', '_version.py', 'ui_*.py', '*_rc.py', + 'pinned*.py', 'tests'] sources = list_files(includes, excludes, SOURCE_ROOT) sources = " \\\n".join(["../{0}".format(f) for f in sources]) |