1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-09-19 16:38:51 +02:00

phtize some strings

Summary: Self-explanatory.

Test Plan: Eyeball it.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

Differential Revision: https://secure.phabricator.com/D11503
This commit is contained in:
Joshua Spence 2015-01-27 06:58:30 +11:00
parent c450fa6c06
commit d0f84e8492

View file

@ -18,19 +18,28 @@ final class ArcanistSingleLintEngine extends ArcanistLintEngine {
if (!$linter_name) {
throw new ArcanistUsageException(
"You must configure '{$key}' with the name of a linter in order to ".
"use ArcanistSingleLintEngine.");
pht(
"You must configure '%s' with the name of a linter ".
"in order to use %s.",
$key,
__CLASS__));
}
if (!class_exists($linter_name)) {
throw new ArcanistUsageException(
"Linter '{$linter_name}' configured in '{$key}' does not exist!");
pht(
"Linter '%s' configured in '%s' does not exist!",
$linter_name,
$key));
}
if (!is_subclass_of($linter_name, 'ArcanistLinter')) {
throw new ArcanistUsageException(
"Linter '{$linter_name}' configured in '{$key}' MUST be a subclass of ".
"ArcanistLinter.");
pht(
"Linter `%s` configured in '%s' MUST be a subclass of `%s`.",
$linter_name,
$key,
'ArcanistLinter'));
}
// Filter the affected paths.