@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
···2828 $message = pht(
2929 "Unable to connect to MySQL!\n\n".
3030 "%s\n\n".
3131- "Make sure Phabricator and MySQL are correctly configured.",
3131+ "Make sure databases connection information and MySQL are ".
3232+ "correctly configured.",
3233 $ex->getMessage());
33343435 $issue = id(new self())
···4242 pht(
4343 'Explicit S3 endpoint to use. This should be the endpoint '.
4444 'which corresponds to the region you have selected in '.
4545- '`amazon-s3.region`. Phabricator can not determine the correct '.
4545+ '`amazon-s3.region`. This software can not determine the correct '.
4646 'endpoint automatically because some endpoint locations are '.
4747 'irregular.'))
4848 ->addExample(
···7373 ->setSummary(pht('Access log location.'))
7474 ->setDescription(
7575 pht(
7676- "To enable the Phabricator access log, specify a path. The ".
7777- "Phabricator access than normal HTTP access logs (for instance, ".
7676+ "To enable the HTTP access log, specify a path. This log is ".
7777+ "more detailed than normal HTTP access logs (for instance, ".
7878 "it can show logged-in users, controllers, and other application ".
7979 "data).\n\n".
8080 "If not set, no log will be written."))
···8282 null,
8383 pht('Disable access log.'))
8484 ->addExample(
8585- '/var/log/phabricator/access.log',
8585+ '/var/log/devtools/access.log',
8686 pht('Write access log here.')),
8787 $this->newOption(
8888 'log.access.format',
···9898 ->setSummary(pht('SSH log location.'))
9999 ->setDescription(
100100 pht(
101101- "To enable the Phabricator SSH log, specify a path. The ".
102102- "access log can provide more detailed information about SSH ".
103103- "access than a normal SSH log (for instance, it can show ".
104104- "logged-in users, commands, and other application data).\n\n".
101101+ "To enable the SSH log, specify a path. This log can provide ".
102102+ "more detailed information about SSH access than a normal SSH ".
103103+ "log (for instance, it can show logged-in users, commands, and ".
104104+ "other application data).\n\n".
105105 "If not set, no log will be written."))
106106 ->addExample(
107107 null,
108108 pht('Disable SSH log.'))
109109 ->addExample(
110110- '/var/log/phabricator/ssh.log',
110110+ '/var/log/devtools/ssh.log',
111111 pht('Write SSH log here.')),
112112 $this->newOption(
113113 'log.ssh.format',
···121121 ->setSummary(pht('SSH error log location.'))
122122 ->setDescription(
123123 pht(
124124- 'To enable the Phabricator SSH error log, specify a path. Errors '.
125125- 'occurring in contexts where Phabricator is serving SSH requests '.
124124+ 'To enable the SSH error log, specify a path. Errors occurring '.
125125+ 'in contexts where this software is serving SSH requests '.
126126 'will be written to this log.'.
127127 "\n\n".
128128 'If not set, no log will be written.'))
129129 ->addExample(null, pht('Disable SSH error log.'))
130130 ->addExample(
131131- '/var/log/phabricator/ssh-error.log',
131131+ '/var/log/devtools/ssh-error.log',
132132 pht('Write SSH error log here.')),
133133 );
134134 }
···4444 pht('Require administrators to approve new accounts.'))
4545 ->setDescription(
4646 pht(
4747- "Newly registered Phabricator accounts can either be placed ".
4747+ "Newly registered accounts can either be placed ".
4848 "into a manual approval queue for administrative review, or ".
4949 "automatically activated immediately. The approval queue is ".
5050 "enabled by default because it gives you greater control over ".
5151- "who can register an account and access Phabricator.\n\n".
5151+ "who can register an account and access the server.\n\n".
5252 "If your install is completely public, or on a VPN, or users can ".
5353 "only register with a trusted provider like LDAP, or you've ".
5454- "otherwise configured Phabricator to prevent unauthorized ".
5454+ "otherwise configured the server to prevent unauthorized ".
5555 "registration, you can disable the queue to reduce administrative ".
5656 "overhead.\n\n".
5757 "NOTE: Before you disable the queue, make sure ".
···107107 'This option controls whether users can edit account email '.
108108 'addresses and profile real names.'.
109109 "\n\n".
110110- 'If you set up Phabricator to automatically synchronize account '.
110110+ 'If you set things up to automatically synchronize account '.
111111 'information from some other authoritative system, you can '.
112112 'prevent users from making these edits to ensure information '.
113113 'remains consistent across both systems.')),
···5050 pht(
5151 'Specify a system user to run the daemons as. Primarily, this '.
5252 'user will own the working copies of any repositories that '.
5353- 'Phabricator imports or manages. This option is new and '.
5353+ 'this software imports or manages. This option is new and '.
5454 'experimental.')),
5555 $this->newOption('phd.garbage-collection', 'wild', array())
5656 ->setLocked(true)
···2424 'name' => 'force',
2525 'help' => pht(
2626 'Stop all daemon processes on this host, even if they belong '.
2727- 'to another Phabricator instance.'),
2727+ 'to another instance.'),
2828 ),
2929 array(
3030 'name' => 'gently',
···88 ->setName('start')
99 ->setSynopsis(
1010 pht(
1111- 'Start the standard configured collection of Phabricator daemons. '.
1111+ 'Start the standard configured collection of daemons. '.
1212 'This is appropriate for most installs. Use **%s** to '.
1313 'customize which daemons are launched.',
1414 'phd launch'))