From 19d25982c66ec9d49afc51d05c116aabaa0a4516 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 28 Feb 2012 13:32:01 +0100 Subject: [PATCH] Store flags --- trans/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trans/models.py b/trans/models.py index 87463f68f..b88d0c1c9 100644 --- a/trans/models.py +++ b/trans/models.py @@ -235,7 +235,7 @@ class Unit(models.Model): def update_from_unit(self, unit, force): location = ', '.join(unit.getlocations()) - flags = '' # FIXME + flags = ', '.join(unit.typecomments) target = join_plural(unit.target.strings) fuzzy = unit.isfuzzy() translated = unit.istranslated()