Fix 2 minor issues with Durable Column

Summary: I left in an opacity change by mistake, and fix language on threads.

Test Plan: review in sandbox

Reviewers: epriestley, btrahan

Reviewed By: btrahan

Subscribers: Korvin, epriestley

Differential Revision: https://secure.phabricator.com/D12054
This commit is contained in:
Chad Little
2015-03-12 13:23:50 -07:00
parent eed10e47c9
commit c1bd1d1b9a
3 changed files with 17 additions and 18 deletions

View File

@@ -55,18 +55,18 @@ final class ConpherenceTransaction extends PhabricatorApplicationTransaction {
case ConpherenceTransactionType::TYPE_TITLE:
if ($old && $new) {
$title = pht(
'%s renamed this Thread from "%s" to "%s".',
'%s renamed this thread from "%s" to "%s".',
$this->renderHandleLink($author_phid),
$old,
$new);
} else if ($old) {
$title = pht(
'%s deleted the Thread name "%s".',
'%s deleted the thread name "%s".',
$this->renderHandleLink($author_phid),
$old);
} else {
$title = pht(
'%s named this Thread "%s".',
'%s named this thread "%s".',
$this->renderHandleLink($author_phid),
$new);
}