Commit ad4d92ebf8de863676bb3590390005f5bed544ba
1 parent
c7b312d2
Exists in
master
and in
39 other branches
Changing biography to bio
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
src/accounts/forms.py
| @@ -52,7 +52,7 @@ class UserUpdateForm(UserForm): | @@ -52,7 +52,7 @@ class UserUpdateForm(UserForm): | ||
| 52 | bio = forms.CharField( | 52 | bio = forms.CharField( |
| 53 | widget=forms.Textarea(attrs={'rows': '6', 'maxlength': '200'}), | 53 | widget=forms.Textarea(attrs={'rows': '6', 'maxlength': '200'}), |
| 54 | max_length=200, | 54 | max_length=200, |
| 55 | - label=_(u'Biography'), | 55 | + label=_(u'Bio'), |
| 56 | help_text=_(u'Write something about you in 200 characters or less.'), | 56 | help_text=_(u'Write something about you in 200 characters or less.'), |
| 57 | required=False, | 57 | required=False, |
| 58 | ) | 58 | ) |
src/accounts/templates/accounts/user_detail.html
| @@ -66,7 +66,7 @@ | @@ -66,7 +66,7 @@ | ||
| 66 | {% endif %} | 66 | {% endif %} |
| 67 | {% if user_.bio %} | 67 | {% if user_.bio %} |
| 68 | <li class="divider"> | 68 | <li class="divider"> |
| 69 | - <strong><abbr title="{% trans 'Biography' %}">{% trans 'Bio' %}</abbr></strong> | 69 | + <strong>{% trans 'Bio' %}</strong> |
| 70 | </li> | 70 | </li> |
| 71 | <li class="text-muted"> {{ user_.bio }}</li> | 71 | <li class="text-muted"> {{ user_.bio }}</li> |
| 72 | {% endif %} | 72 | {% endif %} |