mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-05 08:58:22 +02:00
Fix project stories.
Summary: Fix missed %s Test Plan: Load up feed. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D6692
This commit is contained in:
parent
6775005bad
commit
1ab7622edf
1 changed files with 3 additions and 3 deletions
|
@ -39,14 +39,14 @@ final class PhabricatorFeedStoryProject extends PhabricatorFeedStory {
|
||||||
case PhabricatorProjectTransactionType::TYPE_NAME:
|
case PhabricatorProjectTransactionType::TYPE_NAME:
|
||||||
if (strlen($old)) {
|
if (strlen($old)) {
|
||||||
$action = pht(
|
$action = pht(
|
||||||
'% renamed project %s from %s to %s.',
|
'%s renamed project %s from %s to %s.',
|
||||||
$author_link,
|
$author_link,
|
||||||
$this->linkTo($proj_phid),
|
$this->linkTo($proj_phid),
|
||||||
$this->renderString($old),
|
$this->renderString($old),
|
||||||
$this->renderString($new));
|
$this->renderString($new));
|
||||||
} else {
|
} else {
|
||||||
$action = pht(
|
$action = pht(
|
||||||
'% created project %s (as %s).',
|
'%s created project %s (as %s).',
|
||||||
$author_link,
|
$author_link,
|
||||||
$this->linkTo($proj_phid),
|
$this->linkTo($proj_phid),
|
||||||
$this->renderString($new));
|
$this->renderString($new));
|
||||||
|
@ -69,7 +69,7 @@ final class PhabricatorFeedStoryProject extends PhabricatorFeedStory {
|
||||||
if ((count($add) == 1) && (count($rem) == 0) &&
|
if ((count($add) == 1) && (count($rem) == 0) &&
|
||||||
(head($add) == $author_phid)) {
|
(head($add) == $author_phid)) {
|
||||||
$action = pht(
|
$action = pht(
|
||||||
'% joined project %s.',
|
'%s joined project %s.',
|
||||||
$author_link,
|
$author_link,
|
||||||
$this->linkTo($proj_phid));
|
$this->linkTo($proj_phid));
|
||||||
} else if ((count($add) == 0) && (count($rem) == 1) &&
|
} else if ((count($add) == 0) && (count($rem) == 1) &&
|
||||||
|
|
Loading…
Add table
Reference in a new issue