Internationalisation
Run
rdmo-admin messages make
to create/update the .po files for the translation. Then run
rdmo-admin poedit de
rdmo-admin poedit fr
...
rdmo-admin poedit de --js
to open the different .po files in Poedit and update the tranlations (manually).
Afterwards run
rdmo-admin messages compile
to create/update the corresponding .mo files.
Without rdmo-admin you need to change to the rdmo directory inside the rdmo repository and run:
django-admin makemessages -a
django-admin makemessages -a -d djangojs
To create the .po files. Then, edit the files using, e.g.:
poedit locale/de/LC_MESSAGES/django.po
poedit locale/de/LC_MESSAGES/djangojs.po
Afterwards run
django-admin compilemessages
to compile the .po file to .mo files.