mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-25 16:22:42 +01:00
pht
ize some strings
Summary: Self-explanatory. Test Plan: Eyeball it. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11206
This commit is contained in:
parent
d477df00eb
commit
0b51f4d7c9
1 changed files with 28 additions and 21 deletions
|
@ -267,34 +267,37 @@ abstract class ArcanistExternalLinter extends ArcanistFutureLinter {
|
|||
if (!Filesystem::binaryExists($interpreter)) {
|
||||
throw new ArcanistUsageException(
|
||||
pht(
|
||||
'Unable to locate interpreter "%s" to run linter %s. You may '.
|
||||
'need to install the interpreter, or adjust your linter '.
|
||||
'configuration.'.
|
||||
"\nTO INSTALL: %s",
|
||||
'Unable to locate interpreter "%s" to run linter %s. You may need '.
|
||||
'to install the interpreter, or adjust your linter configuration.',
|
||||
$interpreter,
|
||||
get_class($this),
|
||||
$this->getInstallInstructions()));
|
||||
get_class($this)));
|
||||
}
|
||||
if (!Filesystem::pathExists($binary)) {
|
||||
throw new ArcanistUsageException(
|
||||
sprintf(
|
||||
"%s\n%s",
|
||||
pht(
|
||||
'Unable to locate script "%s" to run linter %s. You may need '.
|
||||
'to install the script, or adjust your linter configuration. '.
|
||||
"\nTO INSTALL: %s",
|
||||
'to install the script, or adjust your linter configuration.',
|
||||
$binary,
|
||||
get_class($this),
|
||||
$this->getInstallInstructions()));
|
||||
get_class($this)),
|
||||
pht(
|
||||
'TO INSTALL: %s',
|
||||
$this->getInstallInstructions())));
|
||||
}
|
||||
} else {
|
||||
if (!Filesystem::binaryExists($binary)) {
|
||||
throw new ArcanistUsageException(
|
||||
sprintf(
|
||||
"%s\n%s",
|
||||
pht(
|
||||
'Unable to locate binary "%s" to run linter %s. You may need '.
|
||||
'to install the binary, or adjust your linter configuration. '.
|
||||
"\nTO INSTALL: %s",
|
||||
'to install the binary, or adjust your linter configuration.',
|
||||
$binary,
|
||||
get_class($this),
|
||||
$this->getInstallInstructions()));
|
||||
get_class($this)),
|
||||
pht(
|
||||
'TO INSTALL: %s',
|
||||
$this->getInstallInstructions())));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -415,7 +418,11 @@ abstract class ArcanistExternalLinter extends ArcanistFutureLinter {
|
|||
$future->resolvex();
|
||||
} else {
|
||||
throw new Exception(
|
||||
"Linter failed to parse output!\n\n{$stdout}\n\n{$stderr}");
|
||||
sprintf(
|
||||
"%s\n\nSTDOUT\n%s\n\nSTDERR\n%s",
|
||||
pht('Linter failed to parse output!'),
|
||||
$stdout,
|
||||
$stderr));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue