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

Remove product literal strings in "pht()", part 19

Summary: Ref T13658.

Test Plan: Static checks only.

Subscribers: PHID-OPKG-gm6ozazyms6q6i22gyam

Maniphest Tasks: T13658

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

+14 -13
+3 -2
src/applications/doorkeeper/worker/DoorkeeperAsanaFeedWorker.php
··· 512 512 private function getSynchronizationWarning() { 513 513 return pht( 514 514 "\xE2\x9A\xA0 DO NOT EDIT THIS TASK \xE2\x9A\xA0\n". 515 - "\xE2\x98\xA0 Your changes will not be reflected in Phabricator.\n". 515 + "\xE2\x98\xA0 Your changes will not be reflected in %s.\n". 516 516 "\xE2\x98\xA0 Your changes will be destroyed the next time state ". 517 - "is synchronized."); 517 + "is synchronized.", 518 + PlatformSymbols::getPlatformServerName()); 518 519 } 519 520 520 521 private function lookupAsanaUserIDs($all_phids) {
+5 -4
src/applications/drydock/operation/DrydockLandRepositoryOperation.php
··· 391 391 'title' => pht('Staging Unavailable'), 392 392 'body' => pht( 393 393 'When this diff was generated, the server was running an older '. 394 - 'version of Phabricator which did not support staging areas, so '. 394 + 'version of the software which did not support staging areas, so '. 395 395 'the change was not pushed to staging. Changes must be pushed '. 396 396 'to staging before they can be landed from the web.'), 397 397 ); ··· 400 400 'title' => pht('Repository Unsupported'), 401 401 'body' => pht( 402 402 'When this diff was generated, the server was running an older '. 403 - 'version of Phabricator which did not support staging areas for '. 403 + 'version of the software which did not support staging areas for '. 404 404 'this version control system, so the change was not pushed to '. 405 405 'staging. Changes must be pushed to staging before they can be '. 406 406 'landed from the web.'), ··· 432 432 'When this diff was generated, it was not pushed to staging for '. 433 433 'an unknown reason (the status code was "%s"). Changes must be '. 434 434 'pushed to staging before they can be landed from the web. '. 435 - 'The server may be running an out-of-date version of Phabricator, '. 436 - 'and updating may provide more information about this error.', 435 + 'The server may be running an out-of-date version of this '. 436 + 'software, and updating may provide more information about this '. 437 + 'error.', 437 438 $status), 438 439 ); 439 440 }
+1 -1
src/applications/files/config/PhabricatorFilesConfigOptions.php
··· 181 181 ->setSummary(pht('Local storage disk path.')) 182 182 ->setDescription( 183 183 pht( 184 - "Phabricator provides a local disk storage engine, which just ". 184 + "This software provides a local disk storage engine, which just ". 185 185 "writes files to some directory on local disk. The webserver ". 186 186 "must have read/write permissions on this directory. This is ". 187 187 "straightforward and suitable for most installs, but will not ".
+1 -1
src/applications/files/controller/PhabricatorFileUploadController.php
··· 46 46 pht('Drag and Drop:'), 47 47 pht( 48 48 'You can also upload files by dragging and dropping them from your '. 49 - 'desktop onto this page or the Phabricator home page.'))); 49 + 'desktop onto this page or the home page.'))); 50 50 51 51 $policies = id(new PhabricatorPolicyQuery()) 52 52 ->setViewer($viewer)
+1 -2
src/applications/harbormaster/artifact/HarbormasterFileArtifact.php
··· 10 10 11 11 public function getArtifactTypeDescription() { 12 12 return pht( 13 - 'Stores a reference to file data which has been uploaded to '. 14 - 'Phabricator.'); 13 + 'Stores a reference to file data.'); 15 14 } 16 15 17 16 public function getArtifactParameterSpecification() {
+1 -1
src/applications/harbormaster/controller/HarbormasterPlanRunController.php
··· 84 84 "example, `rX123456` or `D123`).\n\n". 85 85 "For more detailed output, you can also run manual builds from ". 86 86 "the command line:\n\n". 87 - " phabricator/ $ ./bin/harbormaster build <object> --plan %s", 87 + " $ ./bin/harbormaster build <object> --plan %s", 88 88 $plan->getID())) 89 89 ->appendChild( 90 90 id(new AphrontFormTextControl())
+2 -2
src/applications/harbormaster/customfield/HarbormasterBuildStepCoreCustomField.php
··· 30 30 'After completing this build step Harbormaster can continue the '. 31 31 'build normally, or it can pause the build and wait for a message. '. 32 32 'If you are using this build step to trigger some work in an '. 33 - 'external system, you may want to have Phabricator wait for that '. 34 - 'system to perform the work and report results back.'. 33 + 'external system, you may want wait for that system to perform '. 34 + 'the work and report results back.'. 35 35 "\n\n". 36 36 'If you select **Continue Build Normally**, the build plan will '. 37 37 'proceed once this step finishes.'.