Skip to content

Commit

Permalink
Fixed internationalization issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
mauteri committed Dec 29, 2023
1 parent 8ef2db2 commit 79087e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/core/classes/class-event.php
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ public function get_display_datetime(): string {
}

if ( ! empty( $start ) && ! empty( $end ) ) {
return sprintf( '%s to %s', $start, $end );
return sprintf( __( '%s to %s', 'gatherpress' ), $start, $end );
}

return __( '', 'gatherpress' );
Expand Down

0 comments on commit 79087e2

Please sign in to comment.