I want to use a string which is not in use yet. so there is no any {% trans 'word_I_want_to_use' %}
in template nor in views/models yet.
can I just create it like this in views.py?
from django.utils.translation import ugettext as _
_("word_I_want_to_use")
and makemessages
and compilemessages
.
and later on, I will put the {% trans 'word_I_want_to_use' %}
in template.
will this work?