1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

Provide more context on what "Lock Permanently" means in the UI

Summary:
Administrators may encounter this UI for the first time when configuring a repository, without ever having used Passphrase before. If they end up here on a workflow like this, the meaning of "Lock Permanently" may not be totally clear. Add some explanatory text.

(See also T4721, which discusses Passphrase documentation more generally.)

Test Plan: {F154209}

Reviewers: lpriestley

Reviewed By: lpriestley

Subscribers: epriestley

Differential Revision: https://secure.phabricator.com/D9102
This commit is contained in:
epriestley 2014-05-14 09:25:58 -07:00
parent 7ab26aef66
commit d111536ae2

View file

@ -293,7 +293,11 @@ final class PassphraseCredentialEditController extends PassphraseController {
->addCheckbox(
'lock',
1,
pht('Lock Permanently'),
array(
phutil_tag('strong', array(), pht('Lock Permanently:')),
' ',
pht('Prevent the secret from being revealed or changed.'),
),
$v_is_locked)
->setDisabled($credential_is_locked));
}