I’m using the following snippet to modify the display of publishing date and author’s name info in Drupal 7 nodes:
$variables['submitted'] = t('Published by !username on !datetime', array('!username' => $variables['name'], '!datetime' => $variables['date']));
I want to modify the same info for comments, specifically by shortening it to just name and date. I may be wrong, but it seems that the equivalent information for comments comes from different variables. The problem is that, despite a lot of searching, I can’t find out what they are. Anyone know? If I can get those variables, the rest will be fairly straightfoward.