In some django models I have often seen
myfield = models.CharField(_('myfield'))
class_name = models.CharField(_('Type'), max_length=128)
What exactly is the _ and tuple for? I never saw any such in the official django tutorial snippets
|
|
|
Then you didn't look at the right spots of the documentation:
|
|||
|
|
|
Go see at the top of the file, but it's most often this renamed import:
(and so it's a function call, not a tuple) |
|||
|
|
Yes this library is used to translate all strings on your django project, of course you have to mark those translation strings, take a look at this Django Docs |
||||
|
|