1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-25 16:22:42 +01: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) { if (!$linter_name) {
throw new ArcanistUsageException( throw new ArcanistUsageException(
"You must configure '{$key}' with the name of a linter in order to ". pht(
"use ArcanistSingleLintEngine."); "You must configure '%s' with the name of a linter ".
"in order to use %s.",
$key,
__CLASS__));
} }
if (!class_exists($linter_name)) { if (!class_exists($linter_name)) {
throw new ArcanistUsageException( 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')) { if (!is_subclass_of($linter_name, 'ArcanistLinter')) {
throw new ArcanistUsageException( throw new ArcanistUsageException(
"Linter '{$linter_name}' configured in '{$key}' MUST be a subclass of ". pht(
"ArcanistLinter."); "Linter `%s` configured in '%s' MUST be a subclass of `%s`.",
$linter_name,
$key,
'ArcanistLinter'));
} }
// Filter the affected paths. // Filter the affected paths.