? advuser.module.patch
Index: modules/advuser/advuser.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/advuser/advuser.module,v
retrieving revision 1.14
diff -u -p -r1.14 advuser.module
--- modules/advuser/advuser.module	9 Jun 2008 20:18:56 -0000	1.14
+++ modules/advuser/advuser.module	13 Oct 2008 17:07:25 -0000
@@ -11,7 +11,7 @@
 /**
  * @constants
  */
-define('ADVUSER_SUBSTITUTION_TEXT', t('<strong>Substitution variables</strong> available in subject and email body<br/><em> %user_name, %user_email, %user_status, %user_created, %user_theme, %user_timezone, %user_language, %user_signature, %site, %uri, %google_user (search google for user email), %yahoo_user (search yahoo for user email)</em>'));
+define('ADVUSER_SUBSTITUTION_TEXT', '<strong>Substitution variables</strong> available in subject and email body<br/><em> %user_name, %user_email, %user_status, %user_created, %user_theme, %user_timezone, %user_language, %user_signature, %site, %uri, %google_user (search google for user email), %yahoo_user (search yahoo for user email)</em>');
 
 /**
  * Implementation of hook_perm().
@@ -358,7 +358,7 @@ function advuser_multiple_email_confirm(
   $form['variables'] = array(
     '#type' => 'markup', 
     '#prefix' => '<div class="advuser-inset-panel">',
-    '#value' => ADVUSER_SUBSTITUTION_TEXT,
+    '#value' => t(ADVUSER_SUBSTITUTION_TEXT),
     '#suffix' => '</div>' 
   );
 
@@ -415,7 +415,7 @@ function advuser_settings() {
   $form['advuser_mail']['variables'] = array(
     '#type' => 'markup', 
     '#prefix' => '<div class="advuser-inset-panel">',
-    '#value' => ADVUSER_SUBSTITUTION_TEXT,
+    '#value' => t(ADVUSER_SUBSTITUTION_TEXT),
     '#suffix' => '</div>',
   );
 
