From acdfbbea7ac15ea562c352854c838d02f4484735 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 5 Mar 2012 14:05:23 +0100 Subject: [PATCH] Translatable label --- trans/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trans/forms.py b/trans/forms.py index a19fe6947..917ef008b 100644 --- a/trans/forms.py +++ b/trans/forms.py @@ -45,5 +45,5 @@ class TranslationForm(forms.Form): fuzzy = forms.BooleanField(label = _('Fuzzy'), required = False) class UploadForm(forms.Form): - file = forms.FileField() + file = forms.FileField(label = _('File')) overwrite = forms.BooleanField(label = _('Overwrite existing translations'), required = False)