From 5bf2c899575046eb4a8035939989983f1def96dd Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 22 Feb 2022 23:06:32 +0100 Subject: [PATCH] list .po files in the manifest, not .mo !1014 #934 --- locale/pick-complete-translations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale/pick-complete-translations.py b/locale/pick-complete-translations.py index 3f343685..a866a231 100755 --- a/locale/pick-complete-translations.py +++ b/locale/pick-complete-translations.py @@ -44,7 +44,7 @@ with open(manifest_file) as fp: manifest_lines = set() for locale in active: - manifest_lines.add('include locale/%s/LC_MESSAGES/fdroidserver.mo\n' % locale) + manifest_lines.add('include locale/%s/LC_MESSAGES/fdroidserver.po\n' % locale) with open(manifest_file, 'a') as fp: for line in manifest_lines: