Index: banner.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/banner/banner.module,v
retrieving revision 1.72
diff -u -r1.72 banner.module
--- banner.module	10 Dec 2006 21:40:36 -0000	1.72
+++ banner.module	13 Dec 2006 05:34:48 -0000
@@ -1452,16 +1452,16 @@
 function _banner_view_notifications($node) {
   $notifications = '';
   if($node->notify_day) {
-    $notifications .= '<p>'. t('A daily notification email is sent to %owner.', array('%owner' => theme_placeholder($node->name))) .'</p>';
+    $notifications .= '<p>'. t('A daily notification email is sent to !owner.', array('!owner' => theme_placeholder($node->name))) .'</p>';
   }
   if($node->notify_week) {
-    $notifications .= '<p>'. t('A weekly notification email is sent to %owner.', array('%owner' => theme_placeholder($node->name))) .'</p>';
+    $notifications .= '<p>'. t('A weekly notification email is sent to !owner.', array('!owner' => theme_placeholder($node->name))) .'</p>';
   }
   if($node->notify_failed) {
     $notifications .= '<p>'. t('There %failed.', array('%failed' => format_plural($node->notify_failed, 'has been 1 failed notification attempt', 'have been %count failed notification attempts'))) .'</p>';
   }
   if($node->notify_sent) {
-    $notifications .= '<p>'. t('A renewal reminder has already been sent to %owner.', array('%owner' => theme_placeholder($node->name))) .'</p>';
+    $notifications .= '<p>'. t('A renewal reminder has already been sent to !owner.', array('!owner' => theme_placeholder($node->name))) .'</p>';
   }
   if ($notifications) {
     $output = $notifications;
@@ -1678,7 +1678,7 @@
     '#title' => t('Mode'),
     '#default_value' => $node->mode,
     '#options' => _banner_get_mode_options(),
-    '#description' => t('Choose the desired mode for this banner. See the <a href="%url">banner help</a> for a description of the available modes.', array('%url' => url('admin/help/banner'))),
+    '#description' => t('Choose the desired mode for this banner. See the <a href="@url">banner help</a> for a description of the available modes.', array('@url' => url('admin/help/banner'))),
   );
   $form['content'] = array(
     '#type' => 'textarea',
