diff --git a/typo3/sysext/scheduler/Classes/Task/ExecuteSchedulableCommandAdditionalFieldProvider.php b/typo3/sysext/scheduler/Classes/Task/ExecuteSchedulableCommandAdditionalFieldProvider.php
index 429aef5f542665cf21448b49c95a9e2fb776d239..576209f9bfb31a91d8542cd979f36b76e871b7d5 100644
--- a/typo3/sysext/scheduler/Classes/Task/ExecuteSchedulableCommandAdditionalFieldProvider.php
+++ b/typo3/sysext/scheduler/Classes/Task/ExecuteSchedulableCommandAdditionalFieldProvider.php
@@ -230,7 +230,7 @@ class ExecuteSchedulableCommandAdditionalFieldProvider implements AdditionalFiel
     {
         return [
             'code' => '',
-            'label' => '<strong>' . $description . '</strong>'
+            'label' => $description
         ];
     }
 
@@ -324,7 +324,7 @@ class ExecuteSchedulableCommandAdditionalFieldProvider implements AdditionalFiel
      */
     protected function getArgumentLabel(InputArgument $argument): string
     {
-        return 'Argument: ' . $argument->getName() . '. <em>' . htmlspecialchars($argument->getDescription()) . '</em>';
+        return 'Argument: ' . $argument->getName() . '. ' . htmlspecialchars($argument->getDescription());
     }
 
     /**
@@ -335,7 +335,7 @@ class ExecuteSchedulableCommandAdditionalFieldProvider implements AdditionalFiel
      */
     protected function getOptionLabel(InputOption $option): string
     {
-        return 'Option: ' . htmlspecialchars($option->getName()) . '. <em>' . htmlspecialchars($option->getDescription()) . '</em>';
+        return 'Option: ' . htmlspecialchars($option->getName()) . '. ' . htmlspecialchars($option->getDescription());
     }
 
     /**
@@ -428,7 +428,7 @@ class ExecuteSchedulableCommandAdditionalFieldProvider implements AdditionalFiel
             $inputTag->addAttribute('type', 'text');
             $inputTag->addAttribute('value', $currentValue);
             $inputTag->addAttribute('class', 'form-control');
-            $html .=  $inputTag->render();
+            $html .= $inputTag->render();
         }
 
         return $html;
diff --git a/typo3/sysext/scheduler/Resources/Private/Language/locallang.xlf b/typo3/sysext/scheduler/Resources/Private/Language/locallang.xlf
index 718f6c51a52d19a55a93fcc8b1e8622531ec5645..c8411adb9c1078f4356c54788f3e5a7dd70515d5 100644
--- a/typo3/sysext/scheduler/Resources/Private/Language/locallang.xlf
+++ b/typo3/sysext/scheduler/Resources/Private/Language/locallang.xlf
@@ -184,7 +184,7 @@
 				<source>Amount of tasks without found class</source>
 			</trans-unit>
 			<trans-unit id="label.schedulableCommandName" resname="label.schedulableCommandName">
-				<source><![CDATA[Schedulable Command. <em>Save and reopen to define command arguments</em>]]></source>
+				<source>Schedulable Command. Save and reopen to define command arguments</source>
 			</trans-unit>
 			<trans-unit id="label.saveAndCreateNewTask" resname="label.saveAndCreateNewTask">
 				<source>Save and create new task</source>