1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-04-04 16:38:24 +02:00

Fix some copy and bugs in Ponder

Summary: Fixes T12939. Fixes some feed stories, mailtags, and headers.

Test Plan: Review changes locally by asking how babby is formed.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T12939

Differential Revision: https://secure.phabricator.com/D18285
This commit is contained in:
Chad Little 2017-07-27 14:30:35 -07:00
parent a7121f022f
commit 9cf5bc30cd
4 changed files with 27 additions and 3 deletions

View file

@ -94,7 +94,7 @@ final class PonderQuestionViewController extends PonderController {
$wiki = new PHUIRemarkupView($viewer, $question->getAnswerWiki()); $wiki = new PHUIRemarkupView($viewer, $question->getAnswerWiki());
$answer_wiki = id(new PHUIObjectBoxView()) $answer_wiki = id(new PHUIObjectBoxView())
->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY)
->setHeaderText(pht('ANSWER SUMMARY')) ->setHeaderText(pht('Answer Summary'))
->appendChild($wiki) ->appendChild($wiki)
->addClass('ponder-answer-wiki'); ->addClass('ponder-answer-wiki');
} }

View file

@ -10,11 +10,11 @@ final class PonderQuestionEditor
} }
public function getCreateObjectTitle($author, $object) { public function getCreateObjectTitle($author, $object) {
return pht('%s created this question.', $author); return pht('%s asked this question.', $author);
} }
public function getCreateObjectTitleForFeed($author, $object) { public function getCreateObjectTitleForFeed($author, $object) {
return pht('%s created %s.', $author, $object); return pht('%s asked %s.', $author, $object);
} }
/** /**

View file

@ -23,4 +23,11 @@ final class PonderAnswerTransaction
return 'PonderAnswerTransactionType'; return 'PonderAnswerTransactionType';
} }
public function getMailTags() {
$tags = parent::getMailTags();
$tags[] = PonderQuestionTransaction::MAILTAG_OTHER;
return $tags;
}
} }

View file

@ -14,12 +14,29 @@ final class PonderAnswerContentTransaction
} }
public function getTitle() { public function getTitle() {
$old = $this->getOldValue();
if (!strlen($old)) {
return pht(
'%s added an answer.',
$this->renderAuthor());
}
return pht( return pht(
'%s updated the answer details.', '%s updated the answer details.',
$this->renderAuthor()); $this->renderAuthor());
} }
public function getTitleForFeed() { public function getTitleForFeed() {
$old = $this->getOldValue();
if (!strlen($old)) {
return pht(
'%s added %s.',
$this->renderAuthor(),
$this->renderObject());
}
return pht( return pht(
'%s updated the answer details for %s.', '%s updated the answer details for %s.',
$this->renderAuthor(), $this->renderAuthor(),