summaryrefslogtreecommitdiff
path: root/modules/drupal/drupal.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/drupal/drupal.module')
-rw-r--r--modules/drupal/drupal.module8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/drupal/drupal.module b/modules/drupal/drupal.module
index 8ece0a6d9..47a08265a 100644
--- a/modules/drupal/drupal.module
+++ b/modules/drupal/drupal.module
@@ -43,12 +43,12 @@ function drupal_page() {
global $cid, $comment, $id, $op, $pid, $lid, $link, $mode, $order, $subject, $theme, $threshold;
switch($op) {
- case "Preview comment":
+ case t("Preview comment"):
$theme->header();
comment_preview($pid, $id, $subject, $comment);
$theme->footer();
break;
- case "Post comment":
+ case t("Post comment"):
comment_post($pid, $id, $subject, $comment);
$theme->header();
drupal_render($id, $cid);
@@ -59,13 +59,13 @@ function drupal_page() {
comment_reply($pid, $id);
$theme->footer();
break;
- case "Update settings":
+ case t("Update settings"):
comment_settings($mode, $order, $threshold);
$theme->header();
drupal_render($id, $cid);
$theme->footer();
break;
- case "Moderate comments":
+ case t("Moderate comments"):
comment_moderate($moderate);
$theme->header();
drupal_render($id, $cid);