mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-19 14:38:18 +00:00
Add context as a comment string for Transifex
This commit is contained in:
parent
c5af2a77a5
commit
7021a1c632
|
@ -110,7 +110,10 @@ if __name__ == '__main__':
|
|||
'Content-Transfer-Encoding': '8bit',
|
||||
}
|
||||
for (msg, ctxt), occurrences in l10n_src.items():
|
||||
po.append(polib.POEntry(msgid=msg, msgstr="", occurrences=occurrences, msgctxt=ctxt))
|
||||
commenttxt = ctxt
|
||||
if(commenttxt):
|
||||
commenttxt = 'Context: '+commenttxt
|
||||
po.append(polib.POEntry(msgid=msg, msgstr="", occurrences=occurrences, msgctxt=ctxt, comment=commenttxt))
|
||||
po.save('data/languages/base.pot')
|
||||
|
||||
for filename in os.listdir("data/languages"):
|
||||
|
|
Loading…
Reference in a new issue