Clean up some Fund language

Summary: Ref T12685. Cleans up various Fund language nits.

Test Plan: Read carefully.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T12685

Differential Revision: https://secure.phabricator.com/D17856
This commit is contained in:
Chad Little
2017-05-08 19:47:35 -07:00
parent 3dae970129
commit f717e4b563
3 changed files with 4 additions and 3 deletions

View File

@@ -126,6 +126,7 @@ final class FundBackerSearchEngine
} }
$table = id(new AphrontTableView($rows)) $table = id(new AphrontTableView($rows))
->setNoDataString(pht('No backers found.'))
->setHeaders( ->setHeaders(
array( array(
pht('Initiative'), pht('Initiative'),

View File

@@ -37,7 +37,7 @@ final class FundInitiativeNameTransaction
$this->renderObject()); $this->renderObject());
} else { } else {
return pht( return pht(
'%s renamed %s initiative from %s to %s.', '%s renamed %s from %s to %s.',
$this->renderAuthor(), $this->renderAuthor(),
$this->renderObject(), $this->renderObject(),
$this->renderOldValue(), $this->renderOldValue(),

View File

@@ -28,12 +28,12 @@ final class FundInitiativeStatusTransaction
public function getTitleForFeed() { public function getTitleForFeed() {
if ($this->getNewValue() == FundInitiative::STATUS_CLOSED) { if ($this->getNewValue() == FundInitiative::STATUS_CLOSED) {
return pht( return pht(
'%s closed the initiative %s.', '%s closed %s.',
$this->renderAuthor(), $this->renderAuthor(),
$this->renderObject()); $this->renderObject());
} else { } else {
return pht( return pht(
'%s reopened the initiative %s.', '%s reopened %s.',
$this->renderAuthor(), $this->renderAuthor(),
$this->renderObject()); $this->renderObject());
} }