Is it possible to create separate *.mo and *.po files for every application? Lets say that I add new external app to my project and I dont want to localize it but use some translations which, are contained in it.
Is it possible to create separate *.mo and *.po files for every application? Let
Share
In short – yes, it’s possible and recommended (it helps keeping order in the translations). Simply:
manage.py makemessagesin the root directory of your Django app to create.po/.mofiles for that particular app.$APPPATH/locale/<language>/LC_MESSAGES/django.(po|mo)directory (so inside the app directory).