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

Update a few random typos

Summary: Found a few typos which could be updated.

Test Plan:
I tested the Configuration page change by navigating to `/config` and verifying the page title set in the browser as well as the page title text on the page
|Before|After|
|---|---|
|{F9013208}|{F9013210}|
|{F9013300}|{F9013301}|

I verified the Conduit error message by navigating to `/auth/start/?__conduit__=1`
{F9013289}

The CircleCI error message was not verified due to the involvement of testing with CircleCI however the change is very minor and has very little risk of impacting any functionality.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin

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

+5 -5
+1 -1
src/applications/auth/controller/PhabricatorAuthStartController.php
··· 252 252 253 253 $message = pht( 254 254 'ERROR: You are making a Conduit API request to "%s", but the correct '. 255 - 'HTTP request path to use in order to access a COnduit method is "%s" '. 255 + 'HTTP request path to use in order to access a Conduit method is "%s" '. 256 256 '(for example, "%s"). Check your configuration.', 257 257 $request_path, 258 258 $conduit_path,
+2 -2
src/applications/config/controller/PhabricatorConfigConsoleController.php
··· 56 56 ->setBorder(true); 57 57 58 58 $box = id(new PHUIObjectBoxView()) 59 - ->setHeaderText(pht('Phabricator Configuation')) 59 + ->setHeaderText(pht('Phabricator Configuration')) 60 60 ->setBackground(PHUIObjectBoxView::WHITE_CONFIG) 61 61 ->setObjectList($menu); 62 62 ··· 72 72 ->setFooter($launcher_view); 73 73 74 74 return $this->newPage() 75 - ->setTitle(pht('Phabricator Configuation')) 75 + ->setTitle(pht('Phabricator Configuration')) 76 76 ->setCrumbs($crumbs) 77 77 ->appendChild($view); 78 78 }
+2 -2
src/applications/repository/storage/PhabricatorRepositoryCommit.php
··· 714 714 if (!$path) { 715 715 throw new Exception( 716 716 pht( 717 - 'This commit ("%s") is associated with a repository ("%s") that '. 718 - 'with a remote URI ("%s") that does not appear to be hosted on '. 717 + 'This commit ("%s") is associated with a repository ("%s") which '. 718 + 'has a remote URI ("%s") that does not appear to be hosted on '. 719 719 'GitHub. Repositories must be hosted on GitHub to be built with '. 720 720 'CircleCI.', 721 721 $commit_phid,