How to use Internationalized human_time_diff() function in Chinese?
If you check out the source of human_time_diff: if ( $diff < HOUR_IN_SECONDS ) { $mins = round( $diff / MINUTE_IN_SECONDS ); if ( $mins <= 1 ) $mins = 1; /* translators: min=minute */ $since = sprintf( _n( ‘%s min’, ‘%s mins’, $mins ), $mins ); } elseif ( $diff < DAY_IN_SECONDS && $diff … Read more