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

authored by

Rabah Meradi and committed by
epriestley
0bf106ee 9856802b

+4 -4
+1 -1
src/applications/drydock/management/DrydockManagementLeaseWorkflow.php
··· 22 22 array( 23 23 'name' => 'attributes', 24 24 'param' => 'name=value,...', 25 - 'help' => pht('Resource specficiation.'), 25 + 'help' => pht('Resource specification.'), 26 26 ), 27 27 )); 28 28 }
+1 -1
src/applications/harbormaster/stepgroup/HarbormasterExternalBuildStepGroup.php
··· 6 6 const GROUPKEY = 'harbormaster.external'; 7 7 8 8 public function getGroupName() { 9 - return pht('Interacting with External Build Sytems'); 9 + return pht('Interacting with External Build Systems'); 10 10 } 11 11 12 12 public function getGroupOrder() {
+2 -2
src/applications/people/controller/PhabricatorPeopleLdapController.php
··· 38 38 39 39 $crumbs = $this->buildApplicationCrumbs(); 40 40 $crumbs->addTextCrumb( 41 - pht('Import Ldap Users'), 41 + pht('Import LDAP Users'), 42 42 $this->getApplicationURI('/ldap/')); 43 43 44 44 $nav = $this->buildSideNavView(); ··· 56 56 } 57 57 58 58 return $this->newPage() 59 - ->setTitle(pht('Import Ldap Users')) 59 + ->setTitle(pht('Import LDAP Users')) 60 60 ->setCrumbs($crumbs) 61 61 ->setNavigation($nav); 62 62 }