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

Set specific timeline title for form creation

Summary:
The timeline for an EditEngine form says `created this object`. It should say `created this form`.

Closes T15880

Test Plan: Go to http://phorge.localhost/transactions/editengine/maniphest.task/ and create an EditEngine form, scroll down to its timeline.

Reviewers: O1 Blessed Committers, speck

Reviewed By: O1 Blessed Committers, speck

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15880

Differential Revision: https://we.phorge.it/D25726
This commit is contained in:
Andre Klapper 2024-07-09 11:57:09 +02:00
parent 1b5d2f83c3
commit 290883b2a9

View file

@ -7,6 +7,10 @@ final class PhabricatorEditEngineConfigurationEditor
return PhabricatorTransactionsApplication::class;
}
public function getCreateObjectTitle($author, $object) {
return pht('%s created this form.', $author);
}
public function getEditorObjectsDescription() {
return pht('Edit Configurations');
}