_n()の簡単な例は以下のようで
$domain = 'test';
$comment_count = 1;
echo _n('comment', 'comments', $comment_count, $domain) . '<br/>';
$comment_count = 2;
echo _n('comment', 'comments', $comment_count, $domain);
// 日本語環境(ja)の定義
msgid "comment"
msgid_plural "comments"
msgstr[0] "コメント"
msgstr[1] "コメント一覧"
// 実行結果
コメント
コメント一覧