? message_na_contrib.patch
Index: modules/cvslog/cvs.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cvslog/cvs.module,v
retrieving revision 1.118
diff -u -d -F^function -r1.118 cvs.module
--- modules/cvslog/cvs.module	5 Jul 2006 11:25:06 -0000	1.118
+++ modules/cvslog/cvs.module	29 Jul 2006 18:33:17 -0000
@@ -914,8 +914,8 @@ function cvs_account() {
   while ($user = db_fetch_object($result)) {
     $rows[] = array(
         $user->uid ? theme('username', $user) : $user->cvs_name, 
-        $user->commits ? t('%time ago', array('%time' => format_interval(time() - $user->last_commit, 1))) : message_na(), 
-        $user->commits ? t('%time ago', array('%time' => format_interval(time() - $user->first_commit, 1))) : message_na(), 
+        $user->commits ? t('%time ago', array('%time' => format_interval(time() - $user->last_commit, 1))) : t('n/a'), 
+        $user->commits ? t('%time ago', array('%time' => format_interval(time() - $user->first_commit, 1))) : t('n/a'), 
         $user->commits,
         ($user->status == CVS_PENDING ? 'pending' : ($user->status == CVS_APPROVED ? 'approved' : 'declined')),
         l(t('edit'), "user/$user->uid/edit/cvs"));
@@ -1063,7 +1063,7 @@ function cvs_repository() {
       l(t('delete'), "admin/cvs/repositories/delete/$repo->rid")
     );
     if ($repo->method) {
-      $updated = message_na();
+      $updated = t('n/a');
       $repo->method = t('external');
     }
     else {
Index: modules/evaluation/evaluation.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/evaluation/evaluation.module,v
retrieving revision 1.12
diff -u -d -F^function -r1.12 evaluation.module
--- modules/evaluation/evaluation.module	26 Jun 2006 23:53:49 -0000	1.12
+++ modules/evaluation/evaluation.module	29 Jul 2006 18:33:29 -0000
@@ -548,10 +548,10 @@ function evaluation_nodeapi(&$node, $op,
 This question is<br /> accessible from: %access<br />commentable from: %comment<br />non-commentable from: %noncomment<br />non-accessible from: %nonaccess',
                 array('%now' => format_date(time(), 'custom', t('d.m.Y G:i')),
                   '%title' => check_plain($node->title),
-                  '%access' => isset($node->time_view_start) ? format_date($node->time_view_start, 'custom', t('d.m.Y G:i')) : message_na(),
-                  '%comment' => isset($node->time_comment_start) ? format_date(($node->time_view_start + $node->time_comment_start), 'custom', t('d.m.Y G:i')) : message_na(),
-                  '%noncomment' => isset($node->time_comment_stop) ? format_date(($node->time_view_start + $node->time_comment_start + $node->time_comment_stop), 'custom', t('d.m.Y G:i')) : message_na(),
-                  '%nonaccess' => isset($node->time_view_stop) ? format_date(($node->time_view_start + $node->time_comment_start + $node->time_comment_stop + $node->time_view_stop), 'custom', t('d.m.Y G:i')) : message_na())));
+                  '%access' => isset($node->time_view_start) ? format_date($node->time_view_start, 'custom', t('d.m.Y G:i')) : t('n/a'),
+                  '%comment' => isset($node->time_comment_start) ? format_date(($node->time_view_start + $node->time_comment_start), 'custom', t('d.m.Y G:i')) : t('n/a'),
+                  '%noncomment' => isset($node->time_comment_stop) ? format_date(($node->time_view_start + $node->time_comment_start + $node->time_comment_stop), 'custom', t('d.m.Y G:i')) : t('n/a'),
+                  '%nonaccess' => isset($node->time_view_stop) ? format_date(($node->time_view_start + $node->time_comment_start + $node->time_comment_stop + $node->time_view_stop), 'custom', t('d.m.Y G:i')) : t('n/a'))));
           }
         }
       }
@@ -965,7 +965,7 @@ function evaluation_page_user($arg = 0) 
         l($node->title, "node/$node->nid") .' '. theme('mark', node_mark($node->nid, $node->timestamp)),
         l($node->name, "user/$node->uid"),
         array('class' => 'replies', 'data' => $node->comment_count),
-        ($node->comment_count) ? evaluation_format($node) : message_na(),
+        ($node->comment_count) ? evaluation_format($node) : t('n/a'),
         $status
       );
     }
@@ -1327,10 +1327,10 @@ function evaluation_show_timesettings($f
   if ($values['time_view_start'] > 0) {
     $_SESSION['timesettings_message'] = t('Current time: %now<br />The questions will be<br />       accesible from: %access<br />       commentable after: %comment<br />       non-commentable after: %noncomment<br />       non-accessible after: %nonaccess', 
       array('%now' => format_date(time(), 'custom', t('d.m.Y G:i')),
-        '%access' => $values['time_view_start'] ? format_date($values['time_view_start'], 'custom', t('d.m.Y G:i')) : message_na(),
-        '%comment' => $values['time_comment_start'] ? format_interval($values['time_comment_start']) : message_na(),
-        '%noncomment' => $values['time_comment_stop'] ? format_interval($values['time_comment_stop']) : message_na(),
-        '%nonaccess' => $values['time_view_stop'] ? format_interval($values['time_view_stop']) : message_na()));
+        '%access' => $values['time_view_start'] ? format_date($values['time_view_start'], 'custom', t('d.m.Y G:i')) : t('n/a'),
+        '%comment' => $values['time_comment_start'] ? format_interval($values['time_comment_start']) : t('n/a'),
+        '%noncomment' => $values['time_comment_stop'] ? format_interval($values['time_comment_stop']) : t('n/a'),
+        '%nonaccess' => $values['time_view_stop'] ? format_interval($values['time_view_stop']) : t('n/a')));
   }
 
   if (isset($_SESSION['timesettings_message'])) {
@@ -2050,7 +2050,7 @@ function evaluation_mail($nodes, $user, 
       case t('open'):
       case t('read only'):
         if (variable_get('evaluation_timesettings', 0)) {
-          $table[] = t("%title (%url)\nCurrent time: %now\n       accesible from: %access\n       commentable from: %comment\n       non-commentable from: %noncomment\n       non-accessible from: %nonaccess\n", array('%title' => check_plain($node->title), '%now' => format_date(time(), 'custom', t('d.m.Y G:i')), '%url' => url('node/'. $node->nid, NULL, NULL, TRUE), '%access' => format_date($node->time_view_start, 'custom', t('d.m.Y G:i')), '%comment' => $node->time_comment_start ? format_date(($node->time_view_start + $node->time_comment_start), 'custom', t('d.m.Y G:i')) : message_na(), '%noncomment' => $node->time_comment_stop ? format_date(($node->time_view_start + $node->time_comment_start + $node->time_comment_stop), 'custom', t('d.m.Y G:i')) : message_na(), '%nonaccess' => $node->time_view_stop ? format_date(($node->time_view_start + $node->time_comment_start + $node->time_comment_stop + $node->time_view_stop), 'custom', t('d.m.Y G:i')) : message_na()));
+          $table[] = t("%title (%url)\nCurrent time: %now\n       accesible from: %access\n       commentable from: %comment\n       non-commentable from: %noncomment\n       non-accessible from: %nonaccess\n", array('%title' => check_plain($node->title), '%now' => format_date(time(), 'custom', t('d.m.Y G:i')), '%url' => url('node/'. $node->nid, NULL, NULL, TRUE), '%access' => format_date($node->time_view_start, 'custom', t('d.m.Y G:i')), '%comment' => $node->time_comment_start ? format_date(($node->time_view_start + $node->time_comment_start), 'custom', t('d.m.Y G:i')) : t('n/a'), '%noncomment' => $node->time_comment_stop ? format_date(($node->time_view_start + $node->time_comment_start + $node->time_comment_stop), 'custom', t('d.m.Y G:i')) : t('n/a'), '%nonaccess' => $node->time_view_stop ? format_date(($node->time_view_start + $node->time_comment_start + $node->time_comment_stop + $node->time_view_stop), 'custom', t('d.m.Y G:i')) : t('n/a')));
         }
         else {
           $table[] = t("%title (%url)\n", array('%title' => check_plain($node->title), '%url' => url('node/'. $node->nid, NULL, NULL, TRUE)));
@@ -2058,7 +2058,7 @@ function evaluation_mail($nodes, $user, 
         break;
       case t('closed'):
         if (variable_get('evaluation_timesettings', 0)) {
-          $table[] = t("%url\nCurrent time: %now\n       accesible from: %access\n       commentable from: %comment\n       non-commentable from: %noncomment\n       non-accessible from: %nonaccess\n", array('%now' => format_date(time(), 'custom', t('d.m.Y G:i')), '%url' => url('node/'. $node->nid, NULL, NULL, TRUE), '%access' => format_date($node->time_view_start, 'custom', t('d.m.Y G:i')), '%comment' => $node->time_comment_start ? format_date(($node->time_view_start + $node->time_comment_start), 'custom', t('d.m.Y G:i')) : message_na(), '%noncomment' => $node->time_comment_stop ? format_date(($node->time_view_start + $node->time_comment_start + $node->time_comment_stop), 'custom', t('d.m.Y G:i')) : message_na(), '%nonaccess' => $node->time_view_stop ? format_date(($node->time_view_start + $node->time_comment_start + $node->time_comment_stop + $node->time_view_stop), 'custom', t('d.m.Y G:i')) : message_na()));
+          $table[] = t("%url\nCurrent time: %now\n       accesible from: %access\n       commentable from: %comment\n       non-commentable from: %noncomment\n       non-accessible from: %nonaccess\n", array('%now' => format_date(time(), 'custom', t('d.m.Y G:i')), '%url' => url('node/'. $node->nid, NULL, NULL, TRUE), '%access' => format_date($node->time_view_start, 'custom', t('d.m.Y G:i')), '%comment' => $node->time_comment_start ? format_date(($node->time_view_start + $node->time_comment_start), 'custom', t('d.m.Y G:i')) : t('n/a'), '%noncomment' => $node->time_comment_stop ? format_date(($node->time_view_start + $node->time_comment_start + $node->time_comment_stop), 'custom', t('d.m.Y G:i')) : t('n/a'), '%nonaccess' => $node->time_view_stop ? format_date(($node->time_view_start + $node->time_comment_start + $node->time_comment_stop + $node->time_view_stop), 'custom', t('d.m.Y G:i')) : t('n/a')));
         }
         else {
           $table[] = strtr("%url\n", array('%url' => url('node/'. $node->nid, NULL, NULL, TRUE)));
@@ -2301,7 +2301,7 @@ function evaluation_format($topic) {
     return t('%time ago', array('%time' => format_interval(time() - $topic->timestamp)));
   }
   else {
-    return message_na();
+    return t('n/a');
   }
 }
 
Index: modules/filtercache/filtercache.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/filtercache/filtercache.module,v
retrieving revision 1.6
diff -u -d -F^function -r1.6 filtercache.module
--- modules/filtercache/filtercache.module	18 Sep 2004 13:08:03 -0000	1.6
+++ modules/filtercache/filtercache.module	29 Jul 2006 18:33:30 -0000
@@ -58,7 +58,7 @@ function filtercache_admin() {
       return $filtered;
     }
     else { 
-      return message_na();
+      return t('n/a');
     }
   }
 }
Index: modules/naggregator/naggregator.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/naggregator/naggregator.module,v
retrieving revision 1.6
diff -u -d -F^function -r1.6 naggregator.module
--- modules/naggregator/naggregator.module	19 Jun 2006 13:38:17 -0000	1.6
+++ modules/naggregator/naggregator.module	29 Jul 2006 18:33:42 -0000
@@ -617,7 +617,7 @@ function naggregator_page() {
     }
   }
   else {
-    message_na();
+    t('n/a');
   }
 
     global $user;
@@ -639,7 +639,7 @@ function naggregator_page() {
     }
   }
   else {
-    message_na();
+    t('n/a');
   }
 }
 
Index: modules/node_aggregator/naggregator.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/node_aggregator/naggregator.module,v
retrieving revision 1.1
diff -u -d -F^function -r1.1 naggregator.module
--- modules/node_aggregator/naggregator.module	9 Nov 2005 10:44:55 -0000	1.1
+++ modules/node_aggregator/naggregator.module	29 Jul 2006 18:33:46 -0000
@@ -613,7 +613,7 @@ function naggregator_page() {
     }
   }
   else {
-    message_na();
+    t('n/a');
   }
 
     global $user;
@@ -635,7 +635,7 @@ function naggregator_page() {
     }
   }
   else {
-    message_na();
+    t('n/a');
   }
 }
 
Index: modules/og2list/og2list.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/og2list/og2list.module,v
retrieving revision 1.82
diff -u -d -F^function -r1.82 og2list.module
--- modules/og2list/og2list.module	27 Jul 2006 23:35:37 -0000	1.82
+++ modules/og2list/og2list.module	29 Jul 2006 18:33:49 -0000
@@ -219,7 +219,7 @@ function og2list_form_alter($form_id, &$
       $form['not_defined'] = array(
         '#type' => 'item',
         '#title' => t('Mail address'),
-        '#value' => message_na(),
+        '#value' => t('n/a'),
         '#description' => t('No mailing list has been created for this group.'),
         '#weight' => 2);
     }
Index: modules/subversion/subversion.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/subversion/subversion.module,v
retrieving revision 1.16
diff -u -d -F^function -r1.16 subversion.module
--- modules/subversion/subversion.module	14 Jul 2006 16:11:09 -0000	1.16
+++ modules/subversion/subversion.module	29 Jul 2006 18:34:02 -0000
@@ -1196,8 +1196,8 @@ function subversion_account($rid=0) {
   while ($user = db_fetch_object($result)) {
     $rows[] = array(
         $user->uid ? theme('username', $user) : $user->subversion_name, 
-        $user->commits ? t('%time ago', array('%time' => format_interval(time() - $user->last_commit, 1))) : message_na(), 
-        $user->commits ? t('%time ago', array('%time' => format_interval(time() - $user->first_commit, 1))) : message_na(), 
+        $user->commits ? t('%time ago', array('%time' => format_interval(time() - $user->last_commit, 1))) : t('n/a'), 
+        $user->commits ? t('%time ago', array('%time' => format_interval(time() - $user->first_commit, 1))) : t('n/a'), 
         $user->commits,
         ($user->status == SUBVERSION_PENDING ? 'pending' : ($user->status == SUBVERSION_APPROVED ? 'approved' : 'declined')),
         l(t('edit'), "user/$user->uid/edit/subversion"));
Index: sandbox/ber/node_aggregator/node_aggregator.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/sandbox/ber/node_aggregator/node_aggregator.module,v
retrieving revision 1.2
diff -u -d -F^function -r1.2 node_aggregator.module
--- sandbox/ber/node_aggregator/node_aggregator.module	16 Jun 2005 08:16:50 -0000	1.2
+++ sandbox/ber/node_aggregator/node_aggregator.module	29 Jul 2006 18:34:12 -0000
@@ -688,7 +688,7 @@ function node_aggregator_page() {
     }
   }
   else {
-    message_na();
+    t('n/a');
   }
 
     global $user;
@@ -710,7 +710,7 @@ function node_aggregator_page() {
     }
   }
   else {
-    message_na();
+    t('n/a');
   }
 }
 
Index: sandbox/jeremy/4.4.0/kerneltrap/statistics.module.patch
===================================================================
RCS file: /cvs/drupal-contrib/contributions/sandbox/jeremy/4.4.0/kerneltrap/statistics.module.patch,v
retrieving revision 1.1
diff -u -d -F^function -r1.1 statistics.module.patch
--- sandbox/jeremy/4.4.0/kerneltrap/statistics.module.patch	1 Aug 2004 16:27:03 -0000	1.1
+++ sandbox/jeremy/4.4.0/kerneltrap/statistics.module.patch	29 Jul 2006 18:34:17 -0000
@@ -175,12 +175,12 @@
      if ($log->url) {
        $url = "<a href=\"$log->url\" title=\"$log->url\">". (strlen($log->url) > 28 ? truncate_utf8($log->url, 28) . '...' : $log->url) ."</a>";
 @@ -284,7 +304,8 @@ function statistics_admin_accesslog_tabl
-       $url = message_na();
+       $url = t('n/a');
      }
  
--    $rows[] = array(array("data" => format_date($log->timestamp, "small"), "nowrap" => "nowrap"), ($log->nid ? l($log->title, "node/view/$log->nid") : message_na()), format_name($user), $log->hostname ? $log->hostname : message_na(), $url, ($log->nid ? l(t("track node"), "admin/statistics/log/node/$log->nid") : ""), ($user->uid ? l(t("track user"), "admin/statistics/log/user/$user->uid") : ""), ($log->hostname ? l(t("track host"), "admin/statistics/log/host/$log->hostname") : ""));
+-    $rows[] = array(array("data" => format_date($log->timestamp, "small"), "nowrap" => "nowrap"), ($log->nid ? l($log->title, "node/view/$log->nid") : t('n/a')), format_name($user), $log->hostname ? $log->hostname : t('n/a'), $url, ($log->nid ? l(t("track node"), "admin/statistics/log/node/$log->nid") : ""), ($user->uid ? l(t("track user"), "admin/statistics/log/user/$user->uid") : ""), ($log->hostname ? l(t("track host"), "admin/statistics/log/host/$log->hostname") : ""));
 +    $user = user_load(array("uid" => $log->uid));
-+    $rows[] = array(array('data' => format_date($log->timestamp, 'small'), 'nowrap' => 'nowrap'), $title, format_name($user), $log->hostname ? $log->hostname : message_na(), $url, ($user->uid ? l(t('track user'), "admin/statistics/log/user/$user->uid") : ''), ($log->title ? l(t('track title'), "admin/statistics/log/title/". urlencode($log->title)) : ''), ($log->hostname ? l(t('track host'), "admin/statistics/log/host/$log->hostname") : ''));
++    $rows[] = array(array('data' => format_date($log->timestamp, 'small'), 'nowrap' => 'nowrap'), $title, format_name($user), $log->hostname ? $log->hostname : t('n/a'), $url, ($user->uid ? l(t('track user'), "admin/statistics/log/user/$user->uid") : ''), ($log->title ? l(t('track title'), "admin/statistics/log/title/". urlencode($log->title)) : ''), ($log->hostname ? l(t('track host'), "admin/statistics/log/host/$log->hostname") : ''));
    }
  
    if ($pager = theme("pager", NULL, 50, 0, tablesort_pager())) {
Index: sandbox/jseng/drupal4blog/modules/blog.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/sandbox/jseng/drupal4blog/modules/blog.module,v
retrieving revision 1.1
diff -u -d -F^function -r1.1 blog.module
--- sandbox/jseng/drupal4blog/modules/blog.module	11 Jul 2004 14:50:57 -0000	1.1
+++ sandbox/jseng/drupal4blog/modules/blog.module	29 Jul 2006 18:34:20 -0000
@@ -342,7 +342,7 @@ function check_output_without_nl2br($tex
     }
   }
   else {
-    $text = message_na();
+    $text = t('n/a');
   }
 
   return $text;
Index: sandbox/jseng/drupal4blog/modules/blogapi.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/sandbox/jseng/drupal4blog/modules/blogapi.module,v
retrieving revision 1.1
diff -u -d -F^function -r1.1 blogapi.module
--- sandbox/jseng/drupal4blog/modules/blogapi.module	11 Jul 2004 14:50:57 -0000	1.1
+++ sandbox/jseng/drupal4blog/modules/blogapi.module	29 Jul 2006 18:34:22 -0000
@@ -258,7 +258,7 @@ function blogapi_edit_post($req_params) 
 
   $node = node_load(array('nid' => $params[0]));
   if (!$node) {
-    return blogapi_error(message_na());
+    return blogapi_error(t('n/a'));
   }
 
   if (!node_access('update', $node)) {
Index: sandbox/jseng/drupal4blog/modules/filter.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/sandbox/jseng/drupal4blog/modules/filter.module,v
retrieving revision 1.1
diff -u -d -F^function -r1.1 filter.module
--- sandbox/jseng/drupal4blog/modules/filter.module	11 Jul 2004 14:50:57 -0000	1.1
+++ sandbox/jseng/drupal4blog/modules/filter.module	29 Jul 2006 18:34:23 -0000
@@ -190,7 +190,7 @@ function check_output($text, $vars = arr
     }
   }
   else {
-    $text = message_na();
+    $text = t('n/a');
   }
 
   return $text;
Index: sandbox/jseng/drupal4blog/modules/forum.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/sandbox/jseng/drupal4blog/modules/forum.module,v
retrieving revision 1.1
diff -u -d -F^function -r1.1 forum.module
--- sandbox/jseng/drupal4blog/modules/forum.module	11 Jul 2004 14:50:57 -0000	1.1
+++ sandbox/jseng/drupal4blog/modules/forum.module	29 Jul 2006 18:34:25 -0000
@@ -263,7 +263,7 @@ function _forum_format($topic) {
     return t('%time ago<br />by %author', array('%time' => format_interval(time() - $topic->timestamp), '%author' => format_name($topic)));
   }
   else {
-    return message_na();
+    return t('n/a');
   }
 }
 
Index: sandbox/jseng/drupal4blog/modules/statistics.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/sandbox/jseng/drupal4blog/modules/statistics.module,v
retrieving revision 1.1
diff -u -d -F^function -r1.1 statistics.module
--- sandbox/jseng/drupal4blog/modules/statistics.module	11 Jul 2004 14:50:57 -0000	1.1
+++ sandbox/jseng/drupal4blog/modules/statistics.module	29 Jul 2006 18:34:27 -0000
@@ -281,10 +281,10 @@ function statistics_admin_accesslog_tabl
       $url = "<a href=\"$log->url\" title=\"$log->url\">". (strlen($log->url) > 28 ? truncate_utf8($log->url, 28) . '...' : $log->url) ."</a>";
     }
     else {
-      $url = message_na();
+      $url = t('n/a');
     }
 
-    $rows[] = array(array("data" => format_date($log->timestamp, "small"), "nowrap" => "nowrap"), ($log->nid ? l($log->title, "node/view/$log->nid") : message_na()), format_name($user), $log->hostname ? $log->hostname : message_na(), $url, ($log->nid ? l(t("track node"), "admin/statistics/log/node/$log->nid") : ""), ($user->uid ? l(t("track user"), "admin/statistics/log/user/$user->uid") : ""), ($log->hostname ? l(t("track host"), "admin/statistics/log/host/$log->hostname") : ""));
+    $rows[] = array(array("data" => format_date($log->timestamp, "small"), "nowrap" => "nowrap"), ($log->nid ? l($log->title, "node/view/$log->nid") : t('n/a')), format_name($user), $log->hostname ? $log->hostname : t('n/a'), $url, ($log->nid ? l(t("track node"), "admin/statistics/log/node/$log->nid") : ""), ($user->uid ? l(t("track user"), "admin/statistics/log/user/$user->uid") : ""), ($log->hostname ? l(t("track host"), "admin/statistics/log/host/$log->hostname") : ""));
   }
 
   if ($pager = theme("pager", NULL, 50, 0, tablesort_pager())) {
Index: sandbox/killes/speed-drupal/modules/filter/filter.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/sandbox/killes/speed-drupal/modules/filter/filter.module,v
retrieving revision 1.1
diff -u -d -F^function -r1.1 filter.module
--- sandbox/killes/speed-drupal/modules/filter/filter.module	14 Jan 2005 23:39:54 -0000	1.1
+++ sandbox/killes/speed-drupal/modules/filter/filter.module	29 Jul 2006 18:34:28 -0000
@@ -267,7 +267,7 @@ function check_output($text, $format = F
     }
   }
   else {
-    $text = message_na();
+    $text = t('n/a');
   }
 
   return $text;
Index: themes/civicspace/template.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/civicspace/template.php,v
retrieving revision 1.18
diff -u -d -F^function -r1.18 template.php
--- themes/civicspace/template.php	14 Nov 2005 20:45:28 -0000	1.18
+++ themes/civicspace/template.php	29 Jul 2006 18:34:39 -0000
@@ -742,7 +742,7 @@ function _phptemplate_forum_format($topi
     return t('<div="topic-posted">'. "\n" .'%time ago'. "\n" .'</div>'. "\n" .'<div="topic-author">'. "\n" .'%author</div>', array('%time' => format_interval(time() - $topic->timestamp), '%author' => format_name($topic)));
   }
   else {
-    return message_na();
+    return t('n/a');
   }
 } 
 
? modules/carto/po
