summaryrefslogtreecommitdiff
path: root/modules/queue.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/queue.module')
-rw-r--r--modules/queue.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/queue.module b/modules/queue.module
index 6f8537eba..e54e88e0a 100644
--- a/modules/queue.module
+++ b/modules/queue.module
@@ -253,13 +253,13 @@ function queue_nodeapi(&$node, $op) {
case 'insert':
case 'update':
if ($node->moderate && user_access('access submission queue')) {
- drupal_set_message(t('The post is queued for approval. You can check the votes in the <a href="%queue">submission queue</a>.', array('%queue' => url('queue'))));
+ drupal_set_message(t('the post is queued for approval. You can check the votes in the <a href="%queue">submission queue</a>.', array('%queue' => url('queue'))));
}
else if ($node->moderate) {
- drupal_set_message(t('The post is queued for approval. The editors will decide whether it should be published.'));
+ drupal_set_message(t('the post is queued for approval. The editors will decide whether it should be published.'));
}
else {
- drupal_set_message(t('The post is published.'));
+ drupal_set_message(t('the post is published.'));
}
break;
}