mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-20 05:42:40 +01:00
Make grammar more consistent
Summary: In Maniphest, we say "X closed <task> by committing <commit>". In Differential, we currently say "X closed <revision> by commit <commit>", which sounds nongrammatical to me. Test Plan: grammar'd Reviewers: btrahan, chad Reviewed By: chad Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D11544
This commit is contained in:
parent
4d6aea7ce8
commit
6a0fb7c37f
1 changed files with 2 additions and 2 deletions
|
@ -393,14 +393,14 @@ final class DifferentialTransaction extends PhabricatorApplicationTransaction {
|
|||
|
||||
if ($committer_name && ($committer_name != $author_name)) {
|
||||
return pht(
|
||||
'%s closed %s by commit %s (authored by %s).',
|
||||
'%s closed %s by committing %s (authored by %s).',
|
||||
$author_link,
|
||||
$object_link,
|
||||
$commit_name,
|
||||
$author_name);
|
||||
} else {
|
||||
return pht(
|
||||
'%s closed %s by commit %s.',
|
||||
'%s closed %s by committing %s.',
|
||||
$author_link,
|
||||
$object_link,
|
||||
$commit_name);
|
||||
|
|
Loading…
Reference in a new issue