Change "moderation queue" to "approval queue"
marco.robotangel - December 16, 2007 - 17:51
| Project: | Drupal |
| Version: | 7.x-dev |
| Component: | user interface text |
| Category: | task |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | patch (code needs review) |
Description
The help text says: "List and edit site comments and the comment moderation queue.". The menu point says "Approval queue". This is confusing, so we need to change either both to "approval queue" or "moderation queue".
I suggest using "moderation queue" because it just sounds more senseful to me.

#1
Looks like this is fixed in CVS now.
Marking closed, but feel free to re-open if I'm wrong.
#2
Using
grep 'Approval' * -riandgrep 'Moderation' * -riThere were far more occurrences of 'approval', especially in code. Additionally I think 'Approval' makes more sense here than 'Moderation', given the context that most people use this feature. I found three occurrences of 'Moderation' in comment module. two of them are fixed in this patch. One is not fixed because it makes sense in it's place.The three occurrences, using
grep 'moderation' modules/comment -ri;modules/comment/comment.module: 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>';modules/comment/comment.module: 'description' => 'List and edit site comments and the comment moderation queue.',
modules/comment/comment.module: drupal_set_message(t('Your comment has been queued for moderation by site administrators and will be published after approval.'));
Goes into d7 due to lang string freeze.
#3
this would be a good one for newbie to do
#4
Reroll.