From T162479:
So if you take a look at:
https://github.com/WikipediaLibrary/TWLight/blob/master/locale/qqq/LC_MESSAGES/django.po
You'll see that line 28 has a translator note on it. We need to add translation notes in there for every message. The notes get into that file by being picked up in the bit of code referenced in the comment. eg.
#. Translators: This labels a section of a form where we ask users to enter info (like country of residence) when applying for resource access. #: TWLight/applications/forms.py:189 msgid "About you" msgstr ""
There's a tranlator note in TWLight/applications/forms.py just ahead of the message label on line 189, that our tooling was able to pick up and place in this document. We'll need to add useful translation notes as Translators: comments in the source code. Basically, you'd need to fork the codebase on github, and start backtracing the referenced code bits in django.po and adding comments.