Changed some wording and removed website section

This commit is contained in:
2023-08-26 10:50:59 -07:00
parent e3e3564366
commit 79dbca77db
4 changed files with 32 additions and 3 deletions

View File

@@ -32,13 +32,13 @@ if ( post_password_required() ) {
if ( '1' === $sophia_after_dark_comment_count ) {
printf(
/* translators: 1: title. */
esc_html__( 'One thought on “%1$s”', 'sophia-after-dark' ),
esc_html__( 'One Remark on “%1$s”', 'sophia-after-dark' ),
'<span>' . get_the_title() . '</span>'
);
} else {
printf( // WPCS: XSS OK.
/* translators: 1: comment count number, 2: title. */
esc_html( _nx( '%1$s thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', $sophia_after_dark_comment_count, 'comments title', 'sophia-after-dark' ) ),
esc_html( _nx( '%1$s Remark on &ldquo;%2$s&rdquo;', '%1$s Remarks on &ldquo;%2$s&rdquo;', $sophia_after_dark_comment_count, 'comments title', 'sophia-after-dark' ) ),
number_format_i18n( $sophia_after_dark_comment_count ),
'<span>' . get_the_title() . '</span>'
);