diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-10-03 14:55:27 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-10-03 14:55:27 +0000 |
commit | 058971c33b8dca63fd33b188328fc3e3ec9fb372 (patch) | |
tree | de80494d6eca73119a1ff2d3a9fe448ea0c13497 /modules/queue.module | |
parent | 35f3bcd0426ea207e40c4a2dd6cae8a1d26c794e (diff) | |
download | brdo-058971c33b8dca63fd33b188328fc3e3ec9fb372.tar.gz brdo-058971c33b8dca63fd33b188328fc3e3ec9fb372.tar.bz2 |
- Help improvements and translation improvements from Michael. Thanks!
Diffstat (limited to 'modules/queue.module')
-rw-r--r-- | modules/queue.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/queue.module b/modules/queue.module index 50745ac16..ab8ba3b90 100644 --- a/modules/queue.module +++ b/modules/queue.module @@ -15,13 +15,13 @@ function queue_help($section) { switch ($section) { case 'admin/system/modules': - $output = "Enables content to be moderated by the community."; + $output = t("Enables content to be moderated by the community."); break; case 'admin/system/modules/queue': - $output = "The queue provides a way for your users to vote on submitted content. This is called <b>moderation</b>. Users can moderate a post up (give it a point), or down (subtract a point). The settings below give you control over how many points are required for the status of a post to be automatically changed. See individual items for details."; + $output = t("The queue provides a way for your users to vote on submitted content. This is called <b>moderation</b>. Users can moderate a post up (give it a point), or down (subtract a point). The settings below give you control over how many points are required for the status of a post to be automatically changed. See individual items for details."); break; } - return t($output); + return $output; } function queue_settings() { |