Changes between Version 1 and Version 2 of CommonCausesForTranslationProblems
- Timestamp:
- Mar 25, 2010, 7:06:13 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CommonCausesForTranslationProblems
v1 v2 9 9 == ForeignKey without verbose_name parameter == 10 10 11 In your models, make sure that your ForeignKey fields get a verbose_name parameter. Like this: 11 In your models, make sure that your ForeignKey fields get a verbose_name parameter. 12 13 Example: 12 14 13 15 {{{ … … 17 19 == Model methods without short_description attribute == 18 20 19 If Django is displaying the name of some model method, it should have a short_description attribute. Like this: 21 If Django is displaying the name of some model method, it should have a short_description attribute. 22 23 Example: 20 24 21 25 {{{