1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-22 14:52:41 +01:00

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
This commit is contained in:
Christopher Speck 2021-06-27 16:02:57 -04:00
parent a641ec82a3
commit 9637420861
3 changed files with 5 additions and 5 deletions

View file

@ -252,7 +252,7 @@ final class PhabricatorAuthStartController
$message = pht( $message = pht(
'ERROR: You are making a Conduit API request to "%s", but the correct '. 'ERROR: You are making a Conduit API request to "%s", but the correct '.
'HTTP request path to use in order to access a COnduit method is "%s" '. 'HTTP request path to use in order to access a Conduit method is "%s" '.
'(for example, "%s"). Check your configuration.', '(for example, "%s"). Check your configuration.',
$request_path, $request_path,
$conduit_path, $conduit_path,

View file

@ -56,7 +56,7 @@ final class PhabricatorConfigConsoleController
->setBorder(true); ->setBorder(true);
$box = id(new PHUIObjectBoxView()) $box = id(new PHUIObjectBoxView())
->setHeaderText(pht('Phabricator Configuation')) ->setHeaderText(pht('Phabricator Configuration'))
->setBackground(PHUIObjectBoxView::WHITE_CONFIG) ->setBackground(PHUIObjectBoxView::WHITE_CONFIG)
->setObjectList($menu); ->setObjectList($menu);
@ -72,7 +72,7 @@ final class PhabricatorConfigConsoleController
->setFooter($launcher_view); ->setFooter($launcher_view);
return $this->newPage() return $this->newPage()
->setTitle(pht('Phabricator Configuation')) ->setTitle(pht('Phabricator Configuration'))
->setCrumbs($crumbs) ->setCrumbs($crumbs)
->appendChild($view); ->appendChild($view);
} }

View file

@ -714,8 +714,8 @@ final class PhabricatorRepositoryCommit
if (!$path) { if (!$path) {
throw new Exception( throw new Exception(
pht( pht(
'This commit ("%s") is associated with a repository ("%s") that '. 'This commit ("%s") is associated with a repository ("%s") which '.
'with a remote URI ("%s") that does not appear to be hosted on '. 'has a remote URI ("%s") that does not appear to be hosted on '.
'GitHub. Repositories must be hosted on GitHub to be built with '. 'GitHub. Repositories must be hosted on GitHub to be built with '.
'CircleCI.', 'CircleCI.',
$commit_phid, $commit_phid,