@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.

Some help pht

Summary: pht

Test Plan: diff review, test shortcuts.

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: aran, Korvin

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

+4 -4
+1 -1
src/applications/help/controller/PhabricatorHelpController.php
··· 5 5 public function buildStandardPageResponse($view, array $data) { 6 6 $page = $this->buildStandardPageView(); 7 7 8 - $page->setApplicationName('Help'); 8 + $page->setApplicationName(pht('Help')); 9 9 $page->setBaseURI('/help/'); 10 10 $page->setTitle(idx($data, 'title')); 11 11 $page->setGlyph('?');
+3 -3
src/applications/help/controller/PhabricatorHelpKeyboardShortcutController.php
··· 18 18 // terribly discoverable. 19 19 $keys[] = array( 20 20 'keys' => array('esc'), 21 - 'description' => 'Close any dialog, including this one.', 21 + 'description' => pht('Close any dialog, including this one.'), 22 22 ); 23 23 24 24 $stroke_map = array( ··· 55 55 56 56 $dialog = id(new AphrontDialogView()) 57 57 ->setUser($user) 58 - ->setTitle('Keyboard Shortcuts') 58 + ->setTitle(pht('Keyboard Shortcuts')) 59 59 ->appendChild($table) 60 - ->addCancelButton('#', 'Close'); 60 + ->addCancelButton('#', pht('Close')); 61 61 62 62 return id(new AphrontDialogResponse()) 63 63 ->setDialog($dialog);