Skip to content

Commit

Permalink
Fix translator comment missing.
Browse files Browse the repository at this point in the history
  • Loading branch information
elliottprogrammer committed Dec 2, 2024
1 parent 4479d6f commit 7d60f42
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,11 @@ function PlanExpiry( purchase ) {
);
}

// translators: %1$s is the formatted date to display, i.e.- November 24th, 2024
return sprintf( __( 'Expires on %1$s', 'jetpack-my-jetpack' ), displayDate );
return sprintf(
// translators: %1$s is the formatted date to display, i.e.- November 24th, 2024
__( 'Expires on %1$s', 'jetpack-my-jetpack' ),
displayDate
);
}, [ expiry_date, isExpiringPurchase, isExpiringSoon ] );

const expiryAction = useCallback( () => {
Expand Down

0 comments on commit 7d60f42

Please sign in to comment.