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

Summary: Fixes T15980

Test Plan: Read the code

Reviewers: O1 Blessed Committers, avivey

Reviewed By: O1 Blessed Committers, avivey

Subscribers: avivey, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15980

Differential Revision: https://we.phorge.it/D25860

Pppery ed6644f3 48a74638

+8 -8
+1 -1
src/applications/config/check/PhabricatorFileinfoSetupCheck.php
··· 10 10 if (!extension_loaded('fileinfo')) { 11 11 $message = pht( 12 12 "The '%s' extension is not installed. Without '%s', ". 13 - "support, this software may not be able to determine the MIME types ". 13 + "this server may not be able to determine the MIME types ". 14 14 "of uploaded files.", 15 15 'fileinfo', 16 16 'fileinfo');
+1 -1
src/applications/config/check/PhabricatorGDSetupCheck.php
··· 9 9 protected function executeChecks() { 10 10 if (!extension_loaded('gd')) { 11 11 $message = pht( 12 - "The '%s' extension is not installed. Without '%s', support, ". 12 + "The '%s' extension is not installed. Without '%s' support, ". 13 13 "this server will not be able to process or resize images ". 14 14 "(for example, to generate thumbnails). Install or enable '%s'.", 15 15 'gd',
+1 -1
src/applications/config/option/PhabricatorCoreConfigOptions.php
··· 100 100 ->setDescription( 101 101 pht( 102 102 "These alternative URIs will be able to access 'normal' pages ". 103 - "on your this install. Other features such as OAuth ". 103 + "on this install. Other features such as OAuth ". 104 104 "won't work. The major use case for this is moving installs ". 105 105 "across domains.")) 106 106 ->addExample(
+1 -1
src/applications/config/option/PhabricatorMetaMTAConfigOptions.php
··· 24 24 When a user takes an action which generates an email notification (like 25 25 commenting on a Differential revision), the "From" address can either be set 26 26 to the user's email address (like "alincoln@logcabin.com") or the 27 - "metamta.defualt-address" address. 27 + "metamta.default-address" address. 28 28 29 29 The user experience is generally better if the user's real address is used as 30 30 the "From" header value, since the messages are easier to organize when they
+1 -1
src/applications/config/option/PhabricatorSyntaxHighlightingConfigOptions.php
··· 44 44 )) 45 45 ->setDescription( 46 46 pht( 47 - 'Syntax highlighting a supported for a few languages by '. 47 + 'Syntax highlighting is supported for a few languages by '. 48 48 'default, but you can install Pygments (a third-party syntax '. 49 49 'highlighting tool) to provide support for many more languages.'. 50 50 "\n\n".
+1 -1
src/applications/harbormaster/conduit/HarbormasterSendMessageConduitAPIMethod.php
··· 42 42 However, builds require long-running background processing and Habormaster 43 43 objects have a more complex lifecycle than most other application objects and 44 44 may spend significant periods of time locked by daemon processes during build 45 - execition. A synchronous edit might need to wait an arbitrarily long amount of 45 + execution. A synchronous edit might need to wait an arbitrarily long amount of 46 46 time for this lock to become available so the edit could be applied. 47 47 48 48 Additionally, some edits may also require an arbitrarily long amount of time to
+1 -1
src/applications/harbormaster/xaction/build/HarbormasterBuildMessageTransaction.php
··· 134 134 PhabricatorPolicyCapability::CAN_EDIT); 135 135 } catch (PhabricatorPolicyException $ex) { 136 136 throw new HarbormasterMessageException( 137 - pht('Insufficent Build Plan Permission'), 137 + pht('Insufficient Build Plan Permission'), 138 138 pht( 139 139 'The build plan for this build is configured to prevent '. 140 140 'users who can not edit it from issuing commands to the '.
+1 -1
src/applications/phortune/provider/PhortunePayPalPaymentProvider.php
··· 42 42 " into the fields above.\n\n". 43 43 "You can select whether the provider operates in test mode or ". 44 44 "accepts live payments using the **Mode** dropdown above.\n\n". 45 - "You can either use `sandbox.paypal.com` to retrieve live credentials, ". 45 + "You can either use `sandbox.paypal.com` to retrieve test credentials, ". 46 46 "or `paypal.com` to retrieve live credentials."); 47 47 } 48 48