i18n in applications.
[wolnelektury.git] / apps / lessons / models.py
index b3c79d7..dc113ed 100644 (file)
@@ -8,7 +8,7 @@ from django.utils.translation import ugettext_lazy as _
 from os import path
 
 class Document(models.Model):
-    """Dokument - materiaƂ pomocniczy dla nauczycieli."""
+    """Document - hand-out for teachers"""
     title = models.CharField(_('title'), max_length=120)
     slug = models.SlugField(_('slug'))
     file = models.FileField(_('file'), upload_to='lessons/document')