Skip to content

Commit

Permalink
Add period to end of caption
Browse files Browse the repository at this point in the history
  • Loading branch information
spacedmonkey committed Apr 9, 2020
1 parent 7279ee8 commit 5b144af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/class-image.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,6 @@ public function get_caption() {
'https://unsplash.com/'
);
/* translators: 1: User URL, 2: User's name, 3: Unsplash URL */
return sprintf( __( 'Photo by <a href="%1$s">%2$s</a> on <a href="%3$s">Unsplash</a>', 'unsplash' ), esc_url( $user_url ), $user_name, esc_url( $url ) );
return sprintf( __( 'Photo by <a href="%1$s">%2$s</a> on <a href="%3$s">Unsplash</a>.', 'unsplash' ), esc_url( $user_url ), $user_name, esc_url( $url ) );
}
}

0 comments on commit 5b144af

Please sign in to comment.