Просмотр исходного кода

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

Allan Cole 7 лет назад
Родитель
Сommit
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() )
 				);
 			?>