From 802be0e27fc865e237583f6d8a845e19f5ed81fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 27 Feb 2012 11:55:12 +0100 Subject: [PATCH] Verbose names --- trans/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trans/models.py b/trans/models.py index 392b9f8ba..8bda8d064 100644 --- a/trans/models.py +++ b/trans/models.py @@ -37,7 +37,7 @@ class SubProject(models.Model): repo = models.CharField(max_length = 200) branch = models.CharField(max_length = 50) filemask = models.CharField(max_length = 200) - style_choices = (('po', 'po'), ('ts', 'ts')) + style_choices = (('po', 'GNU Gettext'), ('ts', 'Qt TS')) style = models.CharField(max_length = 10, choices = style_choices) @models.permalink