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

Make membership lock/unlock feed stories read more naturally

Summary: Ref T12732. This is pre-existing.

Test Plan: {F4967438}

Reviewers: chad, amckinley

Reviewed By: chad

Maniphest Tasks: T12732

Differential Revision: https://secure.phabricator.com/D17969
This commit is contained in:
epriestley 2017-05-19 14:08:55 -07:00
parent 789d57522b
commit bbc5f79227

View file

@ -209,12 +209,12 @@ final class PhabricatorProjectTransaction
case self::TYPE_LOCKED:
if ($new) {
return pht(
'%s locked %s membership.',
'%s locked membership for %s.',
$author_handle,
$object_handle);
} else {
return pht(
'%s unlocked %s membership.',
'%s unlocked membership for %s.',
$author_handle,
$object_handle);
}