From 7837628b291fb542b9fd4ccba0ae527fbf9fbd8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 1 Mar 2012 13:31:10 +0100 Subject: [PATCH] Pass parsed plurals to form --- trans/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trans/views.py b/trans/views.py index 4460aa5fc..5c695b848 100644 --- a/trans/views.py +++ b/trans/views.py @@ -123,7 +123,7 @@ def translate(request, project, subproject, lang): # Prepare form form = TranslationForm(initial = { 'checksum': unit.checksum, - 'target': unit.target, + 'target': unit.get_target_plurals(), 'fuzzy': unit.fuzzy, })