diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-19 21:40:05 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-19 21:40:05 +0000 |
commit | 1d4fc1b1af5bee56408692c3600d67ca8cdc1026 (patch) | |
tree | 28e31a472f3be0ede1389fb494c512a8cb440409 /modules/comment | |
parent | 297957c2b0d12ca9f3cb9a8d92aff619531405af (diff) | |
download | brdo-1d4fc1b1af5bee56408692c3600d67ca8cdc1026.tar.gz brdo-1d4fc1b1af5bee56408692c3600d67ca8cdc1026.tar.bz2 |
#202473 by keith.smith: pre-RC1 spell checking on hopefully final text
Diffstat (limited to 'modules/comment')
-rw-r--r-- | modules/comment/comment.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 596b953fd..2d97e0ed2 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -131,7 +131,7 @@ function comment_help($path, $arg) { $output .= '<p>'. t('For more information, see the online handbook entry for <a href="@comment">Comment module</a>.', array('@comment' => 'http://drupal.org/handbook/modules/comment/')) .'</p>'; return $output; case 'admin/content/comment': - return '<p>'. t("Below is a list of the latest comments posted to your site. Click on a subject to see the comment, the author's name to edit the author's user information , 'edit' to modify the text, and 'delete' to remove their submission.") .'</p>'; + return '<p>'. t("Below is a list of the latest comments posted to your site. Click on a subject to see the comment, the author's name to edit the author's user information, 'edit' to modify the text, and 'delete' to remove their submission.") .'</p>'; case 'admin/content/comment/approval': return '<p>'. t("Below is a list of the comments posted to your site that need approval. To approve a comment, click on 'edit' and then change its 'moderation status' to Approved. Click on a subject to see the comment, the author's name to edit the author's user information, 'edit' to modify the text, and 'delete' to remove their submission.") .'</p>'; } |