Index: interwiki.module
===================================================================
--- interwiki.module	(revision 1699)
+++ interwiki.module	(working copy)
@@ -320,12 +320,12 @@
       $output = t('The interwiki filter is enabled. You can easily link to terms in various wikis or other websites by typing %unpiped. ' . 
         'Use the "|" character to create a "piped link," e.g., "%piped" '.
         'displays as "%trans." '.
-        'For a full list of available prefixes and the websites to which they point, see %prefixes.',
+        'For a full list of available prefixes and the websites to which they point, see !prefixes.',
       array(
           '%unpiped' => $unpiped,
           '%piped' => $piped,
       '%trans' => $trans_result,
-          '%prefixes' => l('interwiki', "interwiki/$format")
+          '!prefixes' => l('interwiki', "interwiki/$format")
         ));
       $form[interwiki]['intro'] = array('#type' => 'markup', '#value' => "<p>$output</p>");
 
@@ -359,16 +359,16 @@
     return t('Easily link to terms in various wikis or other websites by typing %unpiped. ' . 
         'Use the "|" character to create a "piped link," e.g., "%piped" '.
         'displays as "<a href="http://en.wikipedia.org/wiki/public_transport">public transportation</a>." '.
-        'For a full list of available prefixes and the websites to which they point, see %prefixes.',
+        'For a full list of available prefixes and the websites to which they point, see !prefixes.',
         array(
           '%unpiped' => $unpiped,
           '%piped' => $piped,
-          '%prefixes' => l('interwiki', "interwiki/$format")
+          '!prefixes' => l('interwiki', "interwiki/$format")
         ));
   } else {
-    return t('Easily link to terms in various wikis. For help, see %prefixes.',
+    return t('Easily link to terms in various wikis. For help, see !prefixes.',
         array(
-          '%prefixes' => l('interwiki', "interwiki/$format")
+          '!prefixes' => l('interwiki', "interwiki/$format")
         ));
   }
 }
