@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix two strings with missing pht()

Summary: Fixes T12517.

Test Plan: Viewed Config application; viewed repository list.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T12517

Differential Revision: https://secure.phabricator.com/D17639

+2 -2
+1 -1
src/applications/config/application/PhabricatorConfigApplication.php
··· 27 27 } 28 28 29 29 public function getName() { 30 - return 'Config'; 30 + return pht('Config'); 31 31 } 32 32 33 33 public function getShortDescription() {
+1 -1
src/applications/diffusion/controller/DiffusionRepositoryListController.php
··· 14 14 ->setName(pht('Commits')); 15 15 16 16 $items[] = id(new PHUIListItemView()) 17 - ->setName('Browse Commits') 17 + ->setName(pht('Browse Commits')) 18 18 ->setHref($this->getApplicationURI('commit/')); 19 19 20 20 return id(new PhabricatorRepositorySearchEngine())