| 94 | | $total_comments = sprintf( __( '%1$s total' ), $num_comm['total_comments'] ); |
|---|
| 95 | | $approved_comments = sprintf( __( '%1$s approved' ), $num_comm['approved'] ); |
|---|
| 96 | | $spam_comments = sprintf( __( '%1$s spam' ), $num_comm['spam'] ); |
|---|
| 97 | | $moderated_comments = sprintf( __( '%1$s awaiting moderation' ), $num_comm['awaiting_moderation'] ); |
|---|
| | 94 | $total_comments = sprintf( __( '%1$s total' ), number_format_i18n($num_comm['total_comments']) ); |
|---|
| | 95 | $approved_comments = sprintf( __( '%1$s approved' ), number_format_i18n($num_comm['approved']) ); |
|---|
| | 96 | $spam_comments = sprintf( __( '%1$s spam' ), number_format_i18n($num_comm['spam']) ); |
|---|
| | 97 | $moderated_comments = sprintf( __( '%1$s awaiting moderation' ), number_format_i18n($num_comm['awaiting_moderation']) ); |
|---|