Commit df255ca2 authored by Tim Poffenbarger's avatar Tim Poffenbarger Committed by Samantha Ming

Reversed the descriptions of accessibility levels

parent 80845e80
...@@ -142,7 +142,7 @@ export default { ...@@ -142,7 +142,7 @@ export default {
text: s__('ForkProject|Private'), text: s__('ForkProject|Private'),
value: PRIVATE_VISIBILITY, value: PRIVATE_VISIBILITY,
icon: 'lock', icon: 'lock',
help: s__('ForkProject|The project can be accessed without any authentication.'), help: s__('ForkProject|Project access must be granted explicitly to each user. If this project is part of a group, access will be granted to members of the group.'),
disabled: this.isVisibilityLevelDisabled(PRIVATE_VISIBILITY), disabled: this.isVisibilityLevelDisabled(PRIVATE_VISIBILITY),
}, },
{ {
...@@ -157,7 +157,7 @@ export default { ...@@ -157,7 +157,7 @@ export default {
value: PUBLIC_VISIBILITY, value: PUBLIC_VISIBILITY,
icon: 'earth', icon: 'earth',
help: s__( help: s__(
'ForkProject|Project access must be granted explicitly to each user. If this project is part of a group, access will be granted to members of the group.', 'ForkProject|The project can be accessed without any authentication.',
), ),
disabled: this.isVisibilityLevelDisabled(PUBLIC_VISIBILITY), disabled: this.isVisibilityLevelDisabled(PUBLIC_VISIBILITY),
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment