@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+5 -1
+5 -1
src/applications/passphrase/controller/PassphraseCredentialEditController.php
··· 293 293 ->addCheckbox( 294 294 'lock', 295 295 1, 296 - pht('Lock Permanently'), 296 + array( 297 + phutil_tag('strong', array(), pht('Lock Permanently:')), 298 + ' ', 299 + pht('Prevent the secret from being revealed or changed.'), 300 + ), 297 301 $v_is_locked) 298 302 ->setDisabled($credential_is_locked)); 299 303 }