1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-06-30 14:40:09 +02:00

list .po files in the manifest, not .mo !1014 #934

This commit is contained in:
Hans-Christoph Steiner 2022-02-22 23:06:32 +01:00
parent 72c749959a
commit 5bf2c89957
No known key found for this signature in database
GPG Key ID: 3E177817BA1B9BFA

View File

@ -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: