Commit b04d6c2e61daad01ecf1b4a45cab6f54eae705bb
Exists in
spb-stable
and in
3 other branches
Merge pull request #6098 from jeromedalbert/master
Rename "Website url" labels to "Website"
Showing
3 changed files
with
3 additions
and
3 deletions
Show diff stats
app/views/admin/users/_form.html.haml
| ... | ... | @@ -81,7 +81,7 @@ |
| 81 | 81 | = f.label :twitter, class: 'control-label' |
| 82 | 82 | .col-sm-10= f.text_field :twitter, class: 'form-control' |
| 83 | 83 | .form-group |
| 84 | - = f.label :website_url, class: 'control-label' | |
| 84 | + = f.label :website_url, 'Website', class: 'control-label' | |
| 85 | 85 | .col-sm-10= f.text_field :website_url, class: 'form-control' |
| 86 | 86 | |
| 87 | 87 | .form-actions | ... | ... |
app/views/profiles/show.html.haml
| ... | ... | @@ -47,7 +47,7 @@ |
| 47 | 47 | = f.label :twitter, class: "control-label" |
| 48 | 48 | .col-sm-10= f.text_field :twitter, class: "form-control" |
| 49 | 49 | .form-group |
| 50 | - = f.label :website_url, class: "control-label" | |
| 50 | + = f.label :website_url, 'Website', class: "control-label" | |
| 51 | 51 | .col-sm-10= f.text_field :website_url, class: "form-control" |
| 52 | 52 | .form-group |
| 53 | 53 | = f.label :bio, class: "control-label" | ... | ... |
app/views/users/_profile.html.haml
| ... | ... | @@ -19,7 +19,7 @@ |
| 19 | 19 | %strong= link_to user.twitter, "http://www.twitter.com/#{user.twitter}" |
| 20 | 20 | - unless user.website_url.blank? |
| 21 | 21 | %li |
| 22 | - %span.light Website url: | |
| 22 | + %span.light Website: | |
| 23 | 23 | %strong= link_to user.short_website_url, user.full_website_url |
| 24 | 24 | - unless user.bio.blank? |
| 25 | 25 | %li | ... | ... |