I see _ in some code before strings, e.g.
lable = _("Password")
What does it mean? One told me it is for multilanguage support. I have not found anything on the internet to confirm this...
Many thanks for your help.
. --update-- Thanks, @thg435 , after seeing your text, I've found exactly what is:
from django.utils.translation import ugettext, ugettext_lazy as _
'-' is a shorthand...