From 35753b9d9de62cdaa90231e58f03a60b50dac9a0 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Fri, 15 Dec 2017 00:02:23 +0000 Subject: [PATCH] Add Project-Id-Version to .pot files, maybe it'll fix crowdin (#1462) --- translation_pot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/translation_pot.py b/translation_pot.py index d86e9dff..62070605 100755 --- a/translation_pot.py +++ b/translation_pot.py @@ -66,6 +66,7 @@ with open(tmpl_pot, 'wt', encoding='utf8') as f: print('msgstr ""', file=f) print(r'"Content-Type: text/plain; charset=UTF-8\n"', file=f) print(r'"Content-Transfer-Encoding: 8bit\n"', file=f) + print(r'"Project-Id-Version: znc-bouncer\n"', file=f) print(file=f) for line in tmpl: print(line, file=f)