From 8ab8f321b57fbe3791a7e124a7f17136dcf94690 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 1 Mar 2012 14:46:43 +0100 Subject: [PATCH] No need for explicit style it is detected automatically --- trans/models.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/trans/models.py b/trans/models.py index f86d2bc34..713f40c58 100644 --- a/trans/models.py +++ b/trans/models.py @@ -59,8 +59,6 @@ class SubProject(models.Model): repoweb = models.URLField(help_text = _('Link to repository browser, use %(file)s and %(line)s as filename and line placeholders')) branch = models.CharField(max_length = 50, help_text = _('Git branch to translate')) filemask = models.CharField(max_length = 200, help_text = _('Mask of files to translate, use * istead of language code')) - style_choices = (('po', 'GNU Gettext'), ('ts', 'Qt TS')) - style = models.CharField(max_length = 10, choices = style_choices) class Meta: ordering = ['name']