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

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))
->setNoDataString(pht('No backers found.'))
->setHeaders(
array(
pht('Initiative'),

View file

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

View file

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