From 1ab7622edf97a67b80d682f0c033373c8edea2a8 Mon Sep 17 00:00:00 2001 From: Chad Little Date: Tue, 6 Aug 2013 21:01:20 -0700 Subject: [PATCH] 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 --- src/applications/feed/story/PhabricatorFeedStoryProject.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/applications/feed/story/PhabricatorFeedStoryProject.php b/src/applications/feed/story/PhabricatorFeedStoryProject.php index e45b350ebc..36336f10e5 100644 --- a/src/applications/feed/story/PhabricatorFeedStoryProject.php +++ b/src/applications/feed/story/PhabricatorFeedStoryProject.php @@ -39,14 +39,14 @@ final class PhabricatorFeedStoryProject extends PhabricatorFeedStory { case PhabricatorProjectTransactionType::TYPE_NAME: if (strlen($old)) { $action = pht( - '% renamed project %s from %s to %s.', + '%s renamed project %s from %s to %s.', $author_link, $this->linkTo($proj_phid), $this->renderString($old), $this->renderString($new)); } else { $action = pht( - '% created project %s (as %s).', + '%s created project %s (as %s).', $author_link, $this->linkTo($proj_phid), $this->renderString($new)); @@ -69,7 +69,7 @@ final class PhabricatorFeedStoryProject extends PhabricatorFeedStory { if ((count($add) == 1) && (count($rem) == 0) && (head($add) == $author_phid)) { $action = pht( - '% joined project %s.', + '%s joined project %s.', $author_link, $this->linkTo($proj_phid)); } else if ((count($add) == 0) && (count($rem) == 1) &&