Skip to content

Commit 2681eca

Browse files
committed
fix(command): typos
1 parent 3c06305 commit 2681eca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

inc/command/cleanticketscommand.class.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ protected function fixBadForm_2(InputInterface $input, OutputInterface $output)
218218
];
219219
}
220220
if ($replace === null) {
221-
$message = __("Unable to determine the encoding type of item ID: %1$d", "formcreator");
221+
$message = __('Unable to determine the encoding type of item ID: %1$d', "formcreator");
222222
$output->writeln("<error>" . sprintf($message, $item['id']) . "</error>");
223223
continue;
224224
}
@@ -282,8 +282,8 @@ protected function fixBadForm_3(InputInterface $input, OutputInterface $output)
282282
];
283283
}
284284
if ($replace === null) {
285-
$message = __("Unable to determine the encoding type of item ID: %1$d", "formcreator");
286-
$output->writeln("<error>" . sprinf($message, $item['id']) . "</error>");
285+
$message = __('Unable to determine the encoding type of item ID: %1$d', "formcreator");
286+
$output->writeln("<error>" . sprintf($message, $item['id']) . "</error>");
287287
continue;
288288
}
289289
$item['content'] = str_replace($pattern, $replace, $item['content']);

0 commit comments

Comments
 (0)