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:
@@ -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'),
|
||||||
|
|||||||
@@ -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(),
|
||||||
|
|||||||
@@ -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());
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user