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

Normalize casing on property boxes

Summary: Going to render these all normal case instead of all caps, and bump up the font size. Should be more consistent. Yellow if you green anything orange.

Test Plan: grep, lint

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+44 -44
+1 -1
src/applications/almanac/controller/AlmanacBindingViewController.php
··· 68 68 $this->buildAlmanacPropertiesTable($binding), 69 69 $timeline, 70 70 )) 71 - ->addPropertySection(pht('DETAILS'), $details); 71 + ->addPropertySection(pht('Details'), $details); 72 72 73 73 return $this->newPage() 74 74 ->setTitle($title)
+1 -1
src/applications/almanac/controller/AlmanacController.php
··· 158 158 ->setIcon('fa-plus'); 159 159 160 160 $header = id(new PHUIHeaderView()) 161 - ->setHeader(pht('PROPERTIES')) 161 + ->setHeader(pht('Properties')) 162 162 ->addActionLink($add_button); 163 163 164 164 return id(new PHUIObjectBoxView())
+1 -1
src/applications/almanac/controller/AlmanacServiceViewController.php
··· 81 81 $service->getServiceImplementation()->getServiceTypeShortName()); 82 82 83 83 return id(new PHUIObjectBoxView()) 84 - ->setHeaderText(pht('DETAILS')) 84 + ->setHeaderText(pht('Details')) 85 85 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 86 86 ->appendChild($properties); 87 87 }
+1 -1
src/applications/badges/controller/PhabricatorBadgesViewController.php
··· 72 72 $timeline, 73 73 $comment_view, 74 74 )) 75 - ->addPropertySection(pht('DESCRIPTION'), $details); 75 + ->addPropertySection(pht('Description'), $details); 76 76 77 77 return $this->newPage() 78 78 ->setTitle($title)
+2 -2
src/applications/calendar/controller/PhabricatorCalendarEventViewController.php
··· 94 94 $add_comment_form, 95 95 )) 96 96 ->setCurtain($curtain) 97 - ->addPropertySection(pht('DETAILS'), $details) 98 - ->addPropertySection(pht('DESCRIPTION'), $description); 97 + ->addPropertySection(pht('Details'), $details) 98 + ->addPropertySection(pht('Description'), $description); 99 99 100 100 return $this->newPage() 101 101 ->setTitle($page_title)
+1 -1
src/applications/daemon/controller/PhabricatorDaemonBulkJobViewController.php
··· 29 29 $curtain = $this->buildCurtainView($job); 30 30 31 31 $box = id(new PHUIObjectBoxView()) 32 - ->setHeaderText(pht('DETAILS')) 32 + ->setHeaderText(pht('Details')) 33 33 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 34 34 ->addPropertyList($properties); 35 35
+1 -1
src/applications/dashboard/controller/PhabricatorDashboardManageController.php
··· 198 198 $viewer->renderHandleList($dashboard->getPanelPHIDs())); 199 199 200 200 return id(new PHUIObjectBoxView()) 201 - ->setHeaderText(pht('DETAILS')) 201 + ->setHeaderText(pht('Details')) 202 202 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 203 203 ->addPropertyList($properties); 204 204 }
+1 -1
src/applications/dashboard/controller/PhabricatorDashboardPanelViewController.php
··· 165 165 : phutil_tag('em', array(), $does_not_appear)); 166 166 167 167 return id(new PHUIObjectBoxView()) 168 - ->setHeaderText(pht('DETAILS')) 168 + ->setHeaderText(pht('Details')) 169 169 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 170 170 ->addPropertyList($properties); 171 171 }
+1 -1
src/applications/differential/controller/DifferentialRevisionViewController.php
··· 480 480 } 481 481 482 482 $header = id(new PHUIHeaderView()) 483 - ->setHeader(pht('DETAILS')); 483 + ->setHeader(pht('Details')); 484 484 485 485 return id(new PHUIObjectBoxView()) 486 486 ->setHeader($header)
+4 -4
src/applications/diffusion/controller/DiffusionBrowseController.php
··· 310 310 )); 311 311 312 312 if ($properties) { 313 - $view->addPropertySection(pht('DETAILS'), $properties); 313 + $view->addPropertySection(pht('Details'), $properties); 314 314 } 315 315 316 316 $title = array($basename, $repository->getDisplayName()); ··· 413 413 )); 414 414 415 415 if ($details) { 416 - $view->addPropertySection(pht('DETAILS'), $details); 416 + $view->addPropertySection(pht('Details'), $details); 417 417 } 418 418 419 419 return $this->newPage() ··· 1409 1409 1410 1410 $file = $this->renderFileButton($file_uri); 1411 1411 $header = id(new PHUIHeaderView()) 1412 - ->setHeader(pht('DETAILS')) 1412 + ->setHeader(pht('Details')) 1413 1413 ->addActionLink($file); 1414 1414 1415 1415 $box = id(new PHUIObjectBoxView()) ··· 1426 1426 ->appendChild($message); 1427 1427 1428 1428 $header = id(new PHUIHeaderView()) 1429 - ->setHeader(pht('DETAILS')); 1429 + ->setHeader(pht('Details')); 1430 1430 1431 1431 $box = id(new PHUIObjectBoxView()) 1432 1432 ->setHeader($header)
+2 -2
src/applications/diffusion/controller/DiffusionCommitController.php
··· 355 355 $change_list, 356 356 $add_comment, 357 357 )) 358 - ->addPropertySection(pht('DESCRIPTION'), $detail_list) 359 - ->addPropertySection(pht('DETAILS'), $details) 358 + ->addPropertySection(pht('Description'), $detail_list) 359 + ->addPropertySection(pht('Details'), $details) 360 360 ->setCurtain($curtain); 361 361 362 362 $page = $this->newPage()
+2 -2
src/applications/diffusion/controller/DiffusionRepositoryController.php
··· 288 288 $description = new PHUIRemarkupView($viewer, $description); 289 289 $view->addTextContent($description); 290 290 return id(new PHUIObjectBoxView()) 291 - ->setHeaderText(pht('DESCRIPTION')) 291 + ->setHeaderText(pht('Description')) 292 292 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 293 293 ->appendChild($view); 294 294 } ··· 354 354 } 355 355 356 356 $box = id(new PHUIObjectBoxView()) 357 - ->setHeaderText(pht('DETAILS')) 357 + ->setHeaderText(pht('Details')) 358 358 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 359 359 ->appendChild($view); 360 360
+1 -1
src/applications/fund/controller/FundInitiativeViewController.php
··· 62 62 $timeline, 63 63 $add_comment, 64 64 )) 65 - ->addPropertySection(pht('DETAILS'), $details); 65 + ->addPropertySection(pht('Details'), $details); 66 66 67 67 return $this->newPage() 68 68 ->setTitle($title)
+1 -1
src/applications/harbormaster/controller/HarbormasterBuildViewController.php
··· 539 539 $this->getStatus($build)); 540 540 541 541 return id(new PHUIObjectBoxView()) 542 - ->setHeaderText(pht('PROPERTIES')) 542 + ->setHeaderText(pht('Properties')) 543 543 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 544 544 ->appendChild($properties); 545 545
+1 -1
src/applications/harbormaster/controller/HarbormasterBuildableViewController.php
··· 178 178 : pht('Automatic Buildable')); 179 179 180 180 return id(new PHUIObjectBoxView()) 181 - ->setHeaderText(pht('PROPERTIES')) 181 + ->setHeaderText(pht('Properties')) 182 182 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 183 183 ->appendChild($properties); 184 184 }
+1 -1
src/applications/harbormaster/controller/HarbormasterStepViewController.php
··· 104 104 } 105 105 106 106 return id(new PHUIObjectBoxView()) 107 - ->setHeaderText(pht('PROPERTIES')) 107 + ->setHeaderText(pht('Properties')) 108 108 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 109 109 ->appendChild($view); 110 110 }
+2 -2
src/applications/herald/controller/HeraldRuleViewController.php
··· 54 54 ->setHeader($header) 55 55 ->setCurtain($curtain) 56 56 ->setMainColumn($timeline) 57 - ->addPropertySection(pht('DETAILS'), $details) 58 - ->addPropertySection(pht('DESCRIPTION'), $description); 57 + ->addPropertySection(pht('Details'), $details) 58 + ->addPropertySection(pht('Description'), $description); 59 59 60 60 return $this->newPage() 61 61 ->setTitle($title)
+1 -1
src/applications/legalpad/controller/LegalpadDocumentManageController.php
··· 176 176 } 177 177 178 178 return id(new PHUIObjectBoxView()) 179 - ->setHeaderText(pht('PROPERTIES')) 179 + ->setHeaderText(pht('Properties')) 180 180 ->addPropertyList($properties) 181 181 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY); 182 182 }
+2 -2
src/applications/macro/controller/PhabricatorMacroViewController.php
··· 72 72 $timeline, 73 73 $add_comment_form, 74 74 )) 75 - ->addPropertySection(pht('MACRO'), $file) 76 - ->addPropertySection(pht('DETAILS'), $details); 75 + ->addPropertySection(pht('Macro'), $file) 76 + ->addPropertySection(pht('Details'), $details); 77 77 78 78 return $this->newPage() 79 79 ->setTitle($title_short)
+2 -2
src/applications/maniphest/controller/ManiphestTaskDetailController.php
··· 88 88 $timeline, 89 89 $comment_view, 90 90 )) 91 - ->addPropertySection(pht('DESCRIPTION'), $description) 92 - ->addPropertySection(pht('DETAILS'), $details); 91 + ->addPropertySection(pht('Description'), $description) 92 + ->addPropertySection(pht('Details'), $details); 93 93 94 94 return $this->newPage() 95 95 ->setTitle($title)
+1 -1
src/applications/meta/controller/PhabricatorApplicationDetailViewController.php
··· 63 63 $policies, 64 64 $panels, 65 65 )) 66 - ->addPropertySection(pht('DETAILS'), $details); 66 + ->addPropertySection(pht('Details'), $details); 67 67 68 68 return $this->newPage() 69 69 ->setTitle($title)
+1 -1
src/applications/nuance/controller/NuanceItemManageController.php
··· 40 40 $view = id(new PHUITwoColumnView()) 41 41 ->setHeader($header) 42 42 ->setCurtain($curtain) 43 - ->addPropertySection(pht('DETAILS'), $properties) 43 + ->addPropertySection(pht('Details'), $properties) 44 44 ->setMainColumn($timeline); 45 45 46 46 return $this->newPage()
+2 -2
src/applications/nuance/controller/NuanceSourceViewController.php
··· 40 40 $view = id(new PHUITwoColumnView()) 41 41 ->setHeader($header) 42 42 ->setCurtain($curtain) 43 - ->addPropertySection(pht('DETAILS'), $properties) 44 - ->addPropertySection(pht('ROUTING'), $routing_list) 43 + ->addPropertySection(pht('Details'), $properties) 44 + ->addPropertySection(pht('Routing'), $routing_list) 45 45 ->setMainColumn($timeline); 46 46 47 47 return $this->newPage()
+1 -1
src/applications/passphrase/controller/PassphraseCredentialViewController.php
··· 36 36 ->setSubheader($subheader) 37 37 ->setCurtain($curtain) 38 38 ->setMainColumn($timeline) 39 - ->addPropertySection(pht('PROPERTIES'), $content); 39 + ->addPropertySection(pht('Properties'), $content); 40 40 41 41 return $this->newPage() 42 42 ->setTitle($title)
+1 -1
src/applications/people/controller/PhabricatorPeopleProfileManageController.php
··· 57 57 $manage = id(new PHUITwoColumnView()) 58 58 ->setHeader($header) 59 59 ->setCurtain($curtain) 60 - ->addPropertySection(pht('DETAILS'), $properties) 60 + ->addPropertySection(pht('Details'), $properties) 61 61 ->setMainColumn( 62 62 array( 63 63 $timeline,
+1 -1
src/applications/phlux/controller/PhluxViewController.php
··· 41 41 $timeline->setShouldTerminate(true); 42 42 43 43 $object_box = id(new PHUIObjectBoxView()) 44 - ->setHeaderText(pht('DETAILS')) 44 + ->setHeaderText(pht('Details')) 45 45 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 46 46 ->addPropertyList($properties); 47 47
+2 -2
src/applications/phortune/controller/PhortuneMerchantViewController.php
··· 131 131 $view->addProperty(pht('Status'), $status_view); 132 132 133 133 return id(new PHUIObjectBoxView()) 134 - ->setHeaderText(pht('DETAILS')) 134 + ->setHeaderText(pht('Details')) 135 135 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 136 136 ->appendChild($view); 137 137 } ··· 146 146 $description = new PHUIRemarkupView($viewer, $description); 147 147 $view->addTextContent($description); 148 148 return id(new PHUIObjectBoxView()) 149 - ->setHeaderText(pht('DESCRIPTION')) 149 + ->setHeaderText(pht('Description')) 150 150 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 151 151 ->appendChild($view); 152 152 }
+1 -1
src/applications/phortune/controller/PhortuneProductViewController.php
··· 38 38 $product->getPriceAsCurrency()->formatForDisplay()); 39 39 40 40 $object_box = id(new PHUIObjectBoxView()) 41 - ->setHeaderText(pht('DETAILS')) 41 + ->setHeaderText(pht('Details')) 42 42 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 43 43 ->addPropertyList($properties); 44 44
+1 -1
src/applications/phortune/controller/PhortuneSubscriptionViewController.php
··· 82 82 $autopay_method); 83 83 84 84 $details = id(new PHUIObjectBoxView()) 85 - ->setHeaderText(pht('DETAILS')) 85 + ->setHeaderText(pht('Details')) 86 86 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 87 87 ->addPropertyList($properties); 88 88
+1 -1
src/applications/phurl/controller/PhabricatorPhurlURLViewController.php
··· 145 145 } 146 146 147 147 return id(new PHUIObjectBoxView()) 148 - ->setHeaderText(pht('DETAILS')) 148 + ->setHeaderText(pht('Details')) 149 149 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 150 150 ->appendChild($properties); 151 151 }
+1 -1
src/applications/ponder/controller/PonderQuestionViewController.php
··· 119 119 ->setSubheader($subheader) 120 120 ->setCurtain($curtain) 121 121 ->setMainColumn($ponder_content) 122 - ->addPropertySection(pht('DETAILS'), $details) 122 + ->addPropertySection(pht('Details'), $details) 123 123 ->addClass('ponder-question-view'); 124 124 125 125 $page_objects = array_merge(
+1 -1
src/applications/project/controller/PhabricatorProjectManageController.php
··· 48 48 $manage = id(new PHUITwoColumnView()) 49 49 ->setHeader($header) 50 50 ->setCurtain($curtain) 51 - ->addPropertySection(pht('DETAILS'), $properties) 51 + ->addPropertySection(pht('Details'), $properties) 52 52 ->setMainColumn( 53 53 array( 54 54 $timeline,
+1 -1
src/applications/spaces/controller/PhabricatorSpacesViewController.php
··· 45 45 } 46 46 47 47 $box = id(new PHUIObjectBoxView()) 48 - ->setHeaderText(pht('DETAILS')) 48 + ->setHeaderText(pht('Details')) 49 49 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 50 50 ->addPropertyList($property_list); 51 51