Commit 1a09e97d413c14df1344186e6dec06ea7b91aed1
1 parent
97540ec0
Exists in
master
and in
29 other branches
ActionItem295: including the labels of the radio boxes
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1847 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
1 changed file
with
4 additions
and
0 deletions
Show diff stats
app/views/profile_editor/edit.rhtml
@@ -17,18 +17,22 @@ | @@ -17,18 +17,22 @@ | ||
17 | <%= _('This profile is:') %> | 17 | <%= _('This profile is:') %> |
18 | <div> | 18 | <div> |
19 | <%= radio_button 'profile_data', 'public_profile', 'true' %> | 19 | <%= radio_button 'profile_data', 'public_profile', 'true' %> |
20 | + <%= _('Public') %> | ||
20 | </div> | 21 | </div> |
21 | <div> | 22 | <div> |
22 | <%= radio_button 'profile_data', 'public_profile', 'false' %> | 23 | <%= radio_button 'profile_data', 'public_profile', 'false' %> |
24 | + <%= _('Private') %> | ||
23 | </div> | 25 | </div> |
24 | </p> | 26 | </p> |
25 | <p> | 27 | <p> |
26 | <%= _("This profile's content is:") %> | 28 | <%= _("This profile's content is:") %> |
27 | <div> | 29 | <div> |
28 | <%= radio_button 'profile_data', 'public_content', 'true' %> | 30 | <%= radio_button 'profile_data', 'public_content', 'true' %> |
31 | + <%= _('Public') %> | ||
29 | </div> | 32 | </div> |
30 | <div> | 33 | <div> |
31 | <%= radio_button 'profile_data', 'public_content', 'false' %> | 34 | <%= radio_button 'profile_data', 'public_content', 'false' %> |
35 | + <%= _('Private') %> | ||
32 | </div> | 36 | </div> |
33 | </p> | 37 | </p> |
34 | 38 |