浏览代码

AltoFocus: Fix missing singular placeholder, needed for some languages. Improvement wporg submission

Allan Cole 7 年之前
父节点
当前提交
0d6f1ed0c4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      altofocus/comments.php

+ 1 - 1
altofocus/comments.php

@@ -28,7 +28,7 @@ if ( post_password_required() ) {
 		<h2 class="comments-title">
 			<?php
 				printf( // WPCS: XSS OK.
-					esc_html( _nx( 'One Comment', '%1$s Comments', get_comments_number(), 'comments title', 'altofocus' ) ),
+					esc_html( _nx( '%1$s Comment', '%1$s Comments', get_comments_number(), 'comments title', 'altofocus' ) ),
 					number_format_i18n( get_comments_number() )
 				);
 			?>