Looking through some of the Django code at authentication forms I noticed the following syntax
label=_(\"Username\")
Normally I would have
It calls the function _ with the argument "Username", just like f("Username") would call the function f. Probably _ is a function for internationalising strings.
_
"Username"
f("Username")
f