Skip to content

Commit

Permalink
🩹 Comments title: Fix make-pot warning (#3178)
Browse files Browse the repository at this point in the history
  • Loading branch information
retlehs authored Jan 18, 2024
1 parent e5b06d3 commit 8bbc14e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/View/Composers/Comments.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ public function with()
*/
public function title()
{
/* translators: %1$s is replaced with the number of comments and %2$s with the post title */
return sprintf(
/* translators: %1$s is replaced with the number of comments and %2$s with the post title */
_nx('%1$s response to “%2$s”', '%1$s responses to “%2$s”', get_comments_number(), 'comments title', 'sage'),
get_comments_number() === 1 ? _x('One', 'comments title', 'sage') : number_format_i18n(get_comments_number()),
'<span>'.get_the_title().'</span>'
Expand Down

0 comments on commit 8bbc14e

Please sign in to comment.