? af-#1041426.patch
Index: CHANGELOG.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/advanced_forum/CHANGELOG.txt,v
retrieving revision 1.101.2.187
diff -u -p -r1.101.2.187 CHANGELOG.txt
--- CHANGELOG.txt	28 Jan 2011 03:03:44 -0000	1.101.2.187
+++ CHANGELOG.txt	28 Jan 2011 03:11:02 -0000
@@ -1,4 +1,4 @@
-$Id: CHANGELOG.txt,v 1.101.2.187 2011/01/28 03:03:44 michellec Exp $
+$Id: CHANGELOG.txt,v 1.101.2.184 2011/01/26 05:43:28 michellec Exp $
 
 ****************************** DRUPAL 6 - 2.x BRANCH ********************************
 
@@ -7,6 +7,7 @@ January 27, 2011
 #992428 by Michelle: Fixed mark as read so it's not displayed on containers and also made jump list use existing function to ensure access control maintained.
 #1042664 by troky: Fixed wrong variable in statistics caching.
 #1031712 by troky: Improved CSS to give structure to empty forums.
+#1041426 by __Sander__: Wrapped forum tools menu items in t().
 
 January 25, 2011
 ----------------
Index: advanced_forum.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/advanced_forum/advanced_forum.module,v
retrieving revision 1.149.2.92
diff -u -p -r1.149.2.92 advanced_forum.module
--- advanced_forum.module	28 Jan 2011 02:43:33 -0000	1.149.2.92
+++ advanced_forum.module	28 Jan 2011 03:11:02 -0000
@@ -1,5 +1,5 @@
 <?php
-// $Id: advanced_forum.module,v 1.149.2.92 2011/01/28 02:43:33 michellec Exp $
+// $Id: advanced_forum.module,v 1.149.2.91 2011/01/27 17:03:09 michellec Exp $
 
 /**
  * @file
@@ -1118,26 +1118,26 @@ function advanced_forum_forum_tools($tid
   global $user;
   
   if ($tid > 0) {
-    $targets[url("forum/active", array('query' => "forum[]=$tid"))] = "View active posts in this forum";
-    $targets[url("forum/unanswered", array('query' => "forum[]=$tid"))] = "View unanswered posts in this forum";
+    $targets[url("forum/active", array('query' => "forum[]=$tid"))] = t('View active posts in this forum');
+    $targets[url("forum/unanswered", array('query' => "forum[]=$tid"))] = t('View unanswered posts in this forum');
     
     if ($user->uid) {
-      $targets[url("forum/new", array('query' => "forum[]=$tid"))] = "View new posts in this forum";
+      $targets[url("forum/new", array('query' => "forum[]=$tid"))] = t('View new posts in this forum');
       
       if (module_exists('nodecomment')) {
-        $targets[url("forum/user", array('query' => "forum[]=$tid"))] = "View your posts in this forum";
+        $targets[url("forum/user", array('query' => "forum[]=$tid"))] = t('View your posts in this forum');
       }    
     }    
   }
   else {
-    $targets[url("forum/active")] = "View active forum posts";
-    $targets[url("forum/unanswered")] = "View unanswered forum posts";
+    $targets[url("forum/active")] = t('View active forum posts');
+    $targets[url("forum/unanswered")] = t('View unanswered forum posts');
     
     if ($user->uid) {
-      $targets[url("forum/new")] = "View new forum posts";
+      $targets[url("forum/new")] = t('View new forum posts');
       
       if (module_exists('nodecomment')) {
-        $targets[url("forum/user")] = "View your forum posts";
+        $targets[url("forum/user")] = t('View your forum posts');
       }
     }      
   }
