From 5b088aee981712bb1fe646f3aba01d9269d409bc Mon Sep 17 00:00:00 2001 From: Joe Dolson Date: Tue, 17 Jul 2018 14:29:31 -0500 Subject: [PATCH] Missing translator comment --- src/my-calendar-event-manager.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/my-calendar-event-manager.php b/src/my-calendar-event-manager.php index 8c7f213b2..eb7cd3a1c 100644 --- a/src/my-calendar-event-manager.php +++ b/src/my-calendar-event-manager.php @@ -2692,7 +2692,8 @@ function mc_check_data( $action, $post, $i ) { $conflict_id = $conflicts[0]->occur_id; $conflict_ev = mc_get_event( $conflict_id ); $conflict = mc_get_details_link( $conflict_ev ); - $errors .= mc_show_error( sprintf( __( 'That event conflicts with a previously scheduled event.', 'my-calendar' ), $conflict ), false ); + // Translators: URL to event details. + $errors .= mc_show_error( sprintf( __( 'That event conflicts with a previously scheduled event.', 'my-calendar' ), $conflict ), false ); } } $spam_content = ( '' != $desc ) ? $desc : $short;