mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01: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:
parent
3dae970129
commit
f717e4b563
3 changed files with 4 additions and 3 deletions
|
@ -126,6 +126,7 @@ final class FundBackerSearchEngine
|
|||
}
|
||||
|
||||
$table = id(new AphrontTableView($rows))
|
||||
->setNoDataString(pht('No backers found.'))
|
||||
->setHeaders(
|
||||
array(
|
||||
pht('Initiative'),
|
||||
|
|
|
@ -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(),
|
||||
|
|
|
@ -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());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue