diff --git a/includes/functions.php b/includes/functions.php
index 11c3a2487b11e81a0d4cdbb9520fb9c1a7b131b6..f667ff02e530e895058d32c228fa74fde2d915ba 100644
--- a/includes/functions.php
+++ b/includes/functions.php
@@ -30,7 +30,9 @@ function schedule_cli_command( $command, $timestamp = null ) {
 		return new WP_Error( 'invalid-timestamp', __( 'Timestamp is in the past.', 'wp-cli-cron-control-offload' ) );
 	}
 
-	$event_args = array( 'command' => $command );
+	$event_args = array(
+		'command' => $command,
+	);
 
 	$scheduled = wp_schedule_single_event( $timestamp, ACTION, $event_args );
 
@@ -59,6 +61,7 @@ function validate_command( $command ) {
 	$first_command = explode( ' ', $command );
 	$first_command = array_shift( $first_command );
 	if ( ! is_command_allowed( $first_command ) ) {
+		/* translators: 1: Disallowed command */
 		return new WP_Error( 'blocked-command', sprintf( __( '`%1$s` not allowed', 'wp-cli-cron-control-offload' ), $first_command ) );
 	}
 
diff --git a/includes/run.php b/includes/run.php
index b6965a23c013f1d2f7c746f94fb108827742b804..a5a5ac04ec705194a698b20b42e9b6f9f4c002b5 100644
--- a/includes/run.php
+++ b/includes/run.php
@@ -16,11 +16,13 @@ namespace Automattic\WP\WP_CLI_Cron_Control_Offload;
 function run_event( $command ) {
 	if ( ! defined( 'WP_CLI' ) || ! \WP_CLI ) {
 		// TODO: reschedule at least once or twice.
+		/* translators: 1: Plugin's prefix for log messages, 2. WP-CLI command that would have run */
 		trigger_error( sprintf( __( '%1$s: Attempted to run event without WP-CLI loaded. (%2$s)', 'wp-cli-cron-control-offload' ), MESSAGE_PREFIX, var_export( $command, true ) ), E_USER_WARNING );
 		return;
 	}
 
 	if ( ! validate_command( $command ) ) {
+		/* translators: 1: Plugin's prefix for log messages, 2. WP-CLI command that would have run */
 		trigger_error( sprintf( __( '%1$s: Attempted to run blocked WP-CLI command. (%2$s)', 'wp-cli-cron-control-offload' ), MESSAGE_PREFIX, var_export( $command, true ) ), E_USER_WARNING );
 		return;
 	}
@@ -37,6 +39,7 @@ function run_event( $command ) {
 
 	// Command failed.
 	if ( ! is_object( $output ) || is_wp_error( $output ) ) {
+		/* translators: 1: Plugin's prefix for log messages, 2. Command error that caused failure */
 		trigger_error( sprintf( __( '%1$s: WP-CLI command failed. (%2$s)', 'wp-cli-cron-control-offload' ), MESSAGE_PREFIX, var_export( $command, true ) ), E_USER_WARNING );
 
 		$message = is_wp_error( $output ) ? $output->get_error_message() : var_export( $output, true );