mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 14:52:41 +01:00
Remove product literal strings in "pht()", part 14
Summary: Ref T13658. Test Plan: Static checks only, these are mostly obscure or require breaking the install in unusual ways. Maniphest Tasks: T13658 Differential Revision: https://secure.phabricator.com/D21780
This commit is contained in:
parent
0eddc1a62c
commit
67e580be65
10 changed files with 39 additions and 40 deletions
|
@ -261,9 +261,9 @@ final class PhabricatorConduitAPIController
|
|||
return array(
|
||||
'ERR-INVALID-AUTH',
|
||||
pht(
|
||||
'This request originates from outside of the Phabricator '.
|
||||
'cluster address range. Requests signed with trusted '.
|
||||
'device keys must originate from within the cluster.'),
|
||||
'This request originates from outside of the cluster address '.
|
||||
'range. Requests signed with trusted device keys must '.
|
||||
'originate from within the cluster.'),
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -364,9 +364,9 @@ final class PhabricatorConduitAPIController
|
|||
return array(
|
||||
'ERR-INVALID-AUTH',
|
||||
pht(
|
||||
'This request originates from outside of the Phabricator '.
|
||||
'cluster address range. Requests signed with cluster API '.
|
||||
'tokens must originate from within the cluster.'),
|
||||
'This request originates from outside of the cluster address '.
|
||||
'range. Requests signed with cluster API tokens must '.
|
||||
'originate from within the cluster.'),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -87,9 +87,9 @@ final class PhabricatorConduitTokenEditController
|
|||
if ($token->getTokenType() === PhabricatorConduitToken::TYPE_CLUSTER) {
|
||||
$dialog->appendChild(
|
||||
pht(
|
||||
'This token is automatically generated by Phabricator, and used '.
|
||||
'to make requests between nodes in a Phabricator cluster. You '.
|
||||
'can not use this token in external applications.'));
|
||||
'This token is automatically generated, and used to make '.
|
||||
'requests between nodes in a cluster. You can not use this '.
|
||||
'token in external applications.'));
|
||||
} else {
|
||||
$form->appendChild(
|
||||
id(new AphrontFormTextControl())
|
||||
|
|
|
@ -80,7 +80,7 @@ final class ConduitConnectConduitAPIMethod extends ConduitAPIMethod {
|
|||
$ex->setErrorDescription(
|
||||
pht(
|
||||
"Your '%s' client version is '%d', which is newer than the ".
|
||||
"server version, '%d'. Upgrade your Phabricator install.",
|
||||
"server version, '%d'. Upgrade your server.",
|
||||
'arc',
|
||||
$client_version,
|
||||
$server_version));
|
||||
|
|
|
@ -88,7 +88,7 @@ final class PhabricatorConduitSearchEngine
|
|||
pht('Deprecated Methods'),
|
||||
pht(
|
||||
'Show old methods which will be deleted in a future '.
|
||||
'version of Phabricator.')),
|
||||
'version of this software.')),
|
||||
$is_deprecated));
|
||||
}
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ final class PhabricatorBaseURISetupCheck extends PhabricatorSetupCheck {
|
|||
$message = pht(
|
||||
'This request did not include a "Host" header. This may mean that '.
|
||||
'your webserver (like nginx or apache) is misconfigured so the '.
|
||||
'"Host" header is not making it to Phabricator, or that you are '.
|
||||
'"Host" header is not making it to this software, or that you are '.
|
||||
'making a raw request without a "Host" header using a tool or '.
|
||||
'library.'.
|
||||
"\n\n".
|
||||
|
@ -38,9 +38,9 @@ final class PhabricatorBaseURISetupCheck extends PhabricatorSetupCheck {
|
|||
'is required for some browsers to be able to set cookies.'.
|
||||
"\n\n".
|
||||
'This may mean the base URI is configured incorrectly. You must '.
|
||||
'serve Phabricator from a base URI with a dot (like '.
|
||||
'"https://phabricator.mycompany.com"), not a bare domain '.
|
||||
'(like "https://phabricator/"). If you are trying to use a bare '.
|
||||
'serve this software from a base URI with a dot (like '.
|
||||
'"https://devtools.example.com"), not a bare domain '.
|
||||
'(like "https://devtools/"). If you are trying to use a bare '.
|
||||
'domain, change your configuration to use a full domain with a dot '.
|
||||
'in it instead.'.
|
||||
"\n\n".
|
||||
|
@ -76,7 +76,7 @@ final class PhabricatorBaseURISetupCheck extends PhabricatorSetupCheck {
|
|||
'will not work properly until you configure it.'.
|
||||
"\n\n".
|
||||
'You should set the base URI to the URI you will use to access '.
|
||||
'Phabricator, like "http://phabricator.example.com/".'.
|
||||
'this server, like "http://devtools.example.com/".'.
|
||||
"\n\n".
|
||||
'Include the protocol (http or https), domain name, and port number if '.
|
||||
'you are using a port other than 80 (http) or 443 (https).'.
|
||||
|
@ -96,7 +96,7 @@ final class PhabricatorBaseURISetupCheck extends PhabricatorSetupCheck {
|
|||
->setMessage($message)
|
||||
->addCommand(
|
||||
hsprintf(
|
||||
'<tt>phabricator/ $</tt> %s',
|
||||
'<tt>$</tt> %s',
|
||||
csprintf(
|
||||
'./bin/config set phabricator.base-uri %s',
|
||||
$base_uri_guess)));
|
||||
|
|
|
@ -15,7 +15,7 @@ final class PhabricatorBinariesSetupCheck extends PhabricatorSetupCheck {
|
|||
|
||||
if (!Filesystem::binaryExists($bin_name)) {
|
||||
$message = pht(
|
||||
"Without '%s', Phabricator can not test for the availability ".
|
||||
"Without '%s', this software can not test for the availability ".
|
||||
"of other binaries.",
|
||||
$bin_name);
|
||||
$this->raiseWarning($bin_name, $message);
|
||||
|
@ -27,7 +27,7 @@ final class PhabricatorBinariesSetupCheck extends PhabricatorSetupCheck {
|
|||
|
||||
if (!Filesystem::binaryExists('diff')) {
|
||||
$message = pht(
|
||||
"Without '%s', Phabricator will not be able to generate or render ".
|
||||
"Without '%s', this software will not be able to generate or render ".
|
||||
"diffs in multiple applications.",
|
||||
'diff');
|
||||
$this->raiseWarning('diff', $message);
|
||||
|
@ -162,7 +162,7 @@ final class PhabricatorBinariesSetupCheck extends PhabricatorSetupCheck {
|
|||
$preamble = pht(
|
||||
"The '%s' binary could not be found. Set the webserver's %s ".
|
||||
"environmental variable to include the directory where it resides, or ".
|
||||
"add that directory to '%s' in the Phabricator configuration.",
|
||||
"add that directory to '%s' in configuration.",
|
||||
$bin,
|
||||
'PATH',
|
||||
'environment.append-paths');
|
||||
|
@ -170,10 +170,9 @@ final class PhabricatorBinariesSetupCheck extends PhabricatorSetupCheck {
|
|||
$preamble = pht(
|
||||
"The '%s' binary could not be found. Symlink it into '%s', or set the ".
|
||||
"webserver's %s environmental variable to include the directory where ".
|
||||
"it resides, or add that directory to '%s' in the Phabricator ".
|
||||
"configuration.",
|
||||
"it resides, or add that directory to '%s' in configuration.",
|
||||
$bin,
|
||||
'phabricator/support/bin/',
|
||||
'support/bin/',
|
||||
'PATH',
|
||||
'environment.append-paths');
|
||||
}
|
||||
|
@ -194,19 +193,19 @@ final class PhabricatorBinariesSetupCheck extends PhabricatorSetupCheck {
|
|||
|
||||
$message = pht(
|
||||
'Unable to determine the version number of "%s". Usually, this means '.
|
||||
'the program changed its version format string recently and Phabricator '.
|
||||
'does not know how to parse the new one yet, but might indicate that '.
|
||||
'you have a very old (or broken) binary.'.
|
||||
'the program changed its version format string recently and this '.
|
||||
'software does not know how to parse the new one yet, but might '.
|
||||
'indicate that you have a very old (or broken) binary.'.
|
||||
"\n\n".
|
||||
'Because we can not determine the version number, checks against '.
|
||||
'minimum and known-bad versions will be skipped, so we might fail '.
|
||||
'to detect an incompatible binary.'.
|
||||
"\n\n".
|
||||
'You may be able to resolve this issue by updating Phabricator, since '.
|
||||
'a newer version of Phabricator is likely to be able to parse the '.
|
||||
'You may be able to resolve this issue by updating this server, since '.
|
||||
'a newer version of the software is likely to be able to parse the '.
|
||||
'newer version string.'.
|
||||
"\n\n".
|
||||
'If updating Phabricator does not fix this, you can report the issue '.
|
||||
'If updating the software does not fix this, you can report the issue '.
|
||||
'to the upstream so we can adjust the parser.'.
|
||||
"\n\n".
|
||||
'If you are confident you have a recent version of "%s" installed and '.
|
||||
|
|
|
@ -35,11 +35,11 @@ final class PhabricatorDatabaseSetupCheck extends PhabricatorSetupCheck {
|
|||
->addPhabricatorConfig('mysql.port')
|
||||
->addCommand(
|
||||
hsprintf(
|
||||
'<tt>phabricator/ $</tt> ./bin/config set mysql.host %s',
|
||||
'<tt>$</tt> ./bin/config set mysql.host %s',
|
||||
$host))
|
||||
->addCommand(
|
||||
hsprintf(
|
||||
'<tt>phabricator/ $</tt> ./bin/config set mysql.port %s',
|
||||
'<tt>$</tt> ./bin/config set mysql.port %s',
|
||||
$port));
|
||||
}
|
||||
|
||||
|
@ -134,7 +134,7 @@ final class PhabricatorDatabaseSetupCheck extends PhabricatorSetupCheck {
|
|||
->setName(pht('Setup MySQL Schema'))
|
||||
->setMessage($message)
|
||||
->setIsFatal(true)
|
||||
->addCommand(hsprintf('<tt>phabricator/ $</tt> ./bin/storage upgrade'));
|
||||
->addCommand(hsprintf('<tt>$</tt> ./bin/storage upgrade'));
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -160,7 +160,7 @@ final class PhabricatorDatabaseSetupCheck extends PhabricatorSetupCheck {
|
|||
->setIsFatal(true)
|
||||
->setMessage($message)
|
||||
->addCommand(
|
||||
hsprintf('<tt>phabricator/ $</tt> ./bin/storage upgrade'));
|
||||
hsprintf('<tt>$</tt> ./bin/storage upgrade'));
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -177,7 +177,7 @@ final class PhabricatorDatabaseSetupCheck extends PhabricatorSetupCheck {
|
|||
'Database host "%s" is configured as a master, but is replicating '.
|
||||
'another host. This is dangerous and can mangle or destroy data. '.
|
||||
'Only replicas should be replicating. Stop replication on the '.
|
||||
'host or reconfigure Phabricator.',
|
||||
'host or adjust configuration.',
|
||||
$ref->getRefKey());
|
||||
|
||||
$this->newIssue('db.master.replicating')
|
||||
|
|
|
@ -34,8 +34,8 @@ final class PhabricatorElasticsearchSetupCheck extends PhabricatorSetupCheck {
|
|||
} catch (Exception $ex) {
|
||||
$summary = pht('Elasticsearch is not reachable as configured.');
|
||||
$message = pht(
|
||||
'Elasticsearch is configured (with the %s setting) but Phabricator'.
|
||||
' encountered an exception when trying to test the index.'.
|
||||
'Elasticsearch is configured (with the %s setting) but an '.
|
||||
'exception was encountered when trying to test the index.'.
|
||||
"\n\n".
|
||||
'%s',
|
||||
phutil_tag('tt', array(), 'cluster.search'),
|
||||
|
@ -69,7 +69,7 @@ final class PhabricatorElasticsearchSetupCheck extends PhabricatorSetupCheck {
|
|||
'Elasticsearch index exists but needs correction.');
|
||||
|
||||
$message = pht(
|
||||
'Either the Phabricator schema for Elasticsearch has changed '.
|
||||
'Either the schema for Elasticsearch has changed '.
|
||||
'or Elasticsearch created the index automatically. '.
|
||||
'Use the following command to rebuild the index.');
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ final class PhabricatorFileinfoSetupCheck extends PhabricatorSetupCheck {
|
|||
if (!extension_loaded('fileinfo')) {
|
||||
$message = pht(
|
||||
"The '%s' extension is not installed. Without '%s', ".
|
||||
"support, Phabricator may not be able to determine the MIME types ".
|
||||
"support, this software may not be able to determine the MIME types ".
|
||||
"of uploaded files.",
|
||||
'fileinfo',
|
||||
'fileinfo');
|
||||
|
|
|
@ -10,7 +10,7 @@ final class PhabricatorGDSetupCheck extends PhabricatorSetupCheck {
|
|||
if (!extension_loaded('gd')) {
|
||||
$message = pht(
|
||||
"The '%s' extension is not installed. Without '%s', support, ".
|
||||
"Phabricator will not be able to process or resize images ".
|
||||
"this server will not be able to process or resize images ".
|
||||
"(for example, to generate thumbnails). Install or enable '%s'.",
|
||||
'gd',
|
||||
'gd',
|
||||
|
@ -41,7 +41,7 @@ final class PhabricatorGDSetupCheck extends PhabricatorSetupCheck {
|
|||
|
||||
$message = pht(
|
||||
"The '%s' extension has support for only some image types. ".
|
||||
"Phabricator will be unable to process images of the missing ".
|
||||
"This server will be unable to process images of the missing ".
|
||||
"types until you build '%s' with support for them. ".
|
||||
"Supported types: %s. Missing types: %s.",
|
||||
'gd',
|
||||
|
|
Loading…
Reference in a new issue