1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 17:28:51 +02:00

Fix 4 typos in code

Summary: Fixes T12516

Test Plan: grep for those typos

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: epriestley, PHID-OPKG-gm6ozazyms6q6i22gyam

Maniphest Tasks: T12516

Differential Revision: https://secure.phabricator.com/D17638
This commit is contained in:
Rabah Meradi 2017-04-07 04:09:56 -07:00 committed by epriestley
parent 9856802ba2
commit 0bf106eeea
3 changed files with 4 additions and 4 deletions

View file

@ -22,7 +22,7 @@ final class DrydockManagementLeaseWorkflow
array(
'name' => 'attributes',
'param' => 'name=value,...',
'help' => pht('Resource specficiation.'),
'help' => pht('Resource specification.'),
),
));
}

View file

@ -6,7 +6,7 @@ final class HarbormasterExternalBuildStepGroup
const GROUPKEY = 'harbormaster.external';
public function getGroupName() {
return pht('Interacting with External Build Sytems');
return pht('Interacting with External Build Systems');
}
public function getGroupOrder() {

View file

@ -38,7 +38,7 @@ final class PhabricatorPeopleLdapController
$crumbs = $this->buildApplicationCrumbs();
$crumbs->addTextCrumb(
pht('Import Ldap Users'),
pht('Import LDAP Users'),
$this->getApplicationURI('/ldap/'));
$nav = $this->buildSideNavView();
@ -56,7 +56,7 @@ final class PhabricatorPeopleLdapController
}
return $this->newPage()
->setTitle(pht('Import Ldap Users'))
->setTitle(pht('Import LDAP Users'))
->setCrumbs($crumbs)
->setNavigation($nav);
}