Commit 359703c6968526b44bd3e5b089db1db667781a7c
1 parent
7e6a5800
Exists in
master
and in
4 other branches
Fix public cloning option text on projects#edit page
Showing
1 changed file
with
5 additions
and
2 deletions
Show diff stats
app/views/projects/_form.html.haml
| ... | ... | @@ -49,11 +49,14 @@ |
| 49 | 49 | Public mode: |
| 50 | 50 | .control-group |
| 51 | 51 | = f.label :public, class: 'control-label' do |
| 52 | - %span Public http clone | |
| 52 | + %span Public clone access | |
| 53 | 53 | .controls |
| 54 | 54 | = f.check_box :public |
| 55 | 55 | %span.descr |
| 56 | - If checked this project will be available for clone without any authentification. Also it will appears on #{link_to "Public page", public_root_path} | |
| 56 | + If checked, this project can be cloned | |
| 57 | + %em without any | |
| 58 | + authentification. | |
| 59 | + It will also be listed on the #{link_to "public access directory", public_root_path}. | |
| 57 | 60 | |
| 58 | 61 | |
| 59 | 62 | - if can? current_user, :change_namespace, @project | ... | ... |