Commit 34324d2ee849c7c5084f57e1ae23953775f6de1b
1 parent
bd184217
Exists in
master
and in
39 other branches
Fixing up wrong translation
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/super_archives/forms.py
... | ... | @@ -22,7 +22,7 @@ email_field = forms.EmailField(validators=[UniqueValidator(User, 'email')]) |
22 | 22 | # UserProfile fields |
23 | 23 | institution_field = forms.CharField(max_length=120, label=_(u'Institution'), |
24 | 24 | required=False) |
25 | -role_field = forms.CharField(max_length=60, label=_(u'Function'), required=False) | |
25 | +role_field = forms.CharField(max_length=60, label=_(u'Role'), required=False) | |
26 | 26 | twitter_field = forms.URLField(label=_(u'Twitter'), required=False) |
27 | 27 | facebook_field = forms.URLField(label=_(u'Facebook'), required=False) |
28 | 28 | google_talk_field = forms.EmailField(label=_(u'Google Talk'), required=False) | ... | ... |