Skip to content

Commit

Permalink
fix(command): typos
Browse files Browse the repository at this point in the history
  • Loading branch information
btry committed Mar 7, 2024
1 parent 3c06305 commit 2681eca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions inc/command/cleanticketscommand.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ protected function fixBadForm_2(InputInterface $input, OutputInterface $output)
];
}
if ($replace === null) {
$message = __("Unable to determine the encoding type of item ID: %1$d", "formcreator");
$message = __('Unable to determine the encoding type of item ID: %1$d', "formcreator");
$output->writeln("<error>" . sprintf($message, $item['id']) . "</error>");
continue;
}
Expand Down Expand Up @@ -282,8 +282,8 @@ protected function fixBadForm_3(InputInterface $input, OutputInterface $output)
];
}
if ($replace === null) {
$message = __("Unable to determine the encoding type of item ID: %1$d", "formcreator");
$output->writeln("<error>" . sprinf($message, $item['id']) . "</error>");
$message = __('Unable to determine the encoding type of item ID: %1$d', "formcreator");
$output->writeln("<error>" . sprintf($message, $item['id']) . "</error>");
continue;
}
$item['content'] = str_replace($pattern, $replace, $item['content']);
Expand Down

0 comments on commit 2681eca

Please sign in to comment.