Translatable label

This commit is contained in:
Michal Čihař 2012-03-05 14:05:23 +01:00
parent d8d4c82cbc
commit acdfbbea7a

View File

@ -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)