From 2681eca61797615f9e07d808a7eb545a255af59b Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Thu, 7 Mar 2024 09:22:36 +0100 Subject: [PATCH] fix(command): typos --- inc/command/cleanticketscommand.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/inc/command/cleanticketscommand.class.php b/inc/command/cleanticketscommand.class.php index b8c2a2371..554a4cecb 100644 --- a/inc/command/cleanticketscommand.class.php +++ b/inc/command/cleanticketscommand.class.php @@ -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("" . sprintf($message, $item['id']) . ""); continue; } @@ -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("" . sprinf($message, $item['id']) . ""); + $message = __('Unable to determine the encoding type of item ID: %1$d', "formcreator"); + $output->writeln("" . sprintf($message, $item['id']) . ""); continue; } $item['content'] = str_replace($pattern, $replace, $item['content']);