183 | | Always use lazy translations in `Django models`_. It's a good idea to add |
184 | | translations for the field names and table names, too. This means writing |
185 | | explicit ``verbose_name`` and ``verbose_name_plural`` options in the ``Meta`` |
186 | | class, though:: |
| 183 | Always use lazy translations in `Django models`_. Field names and table names |
| 184 | must be marked for translation otherwise they will not be translated in the |
| 185 | admin interface. This means writing explicit ``verbose_name`` and |
| 186 | ``verbose_name_plural`` options in the ``Meta`` class, though:: |