In my Django project I use Vue + vue-gettext for i18n.
To make translatable strings I have the following code in my my .vue files:
<translate>Hello %{name}</translate>
<a href="..." v-translate>Click here</a>
(using translate tags and v-translate attributes)
Is there a way to configure manage.py makemessages to parse this code as well? By default it does not look into .vue files or parse this i18n code format.
Basically I ended up having a Makfile - that extracts messages from vue files and then merges it with django