Index: modules/user.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/user.module,v
retrieving revision 1.466
diff -u -r1.466 user.module
--- modules/user.module	30 Apr 2005 09:27:19 -0000	1.466
+++ modules/user.module	30 Apr 2005 22:45:59 -0000
@@ -1388,12 +1388,12 @@
 
   $form = form_textfield(t('Username'), 'test', '', 32, 64, t('Enter a username to check if it will be denied or allowed.'));
   $form .= form_hidden('type', 'user');
-  $form .= form_submit('Check username');
+  $form .= form_submit(t('Check username'));
   $output .= form($form);
 
   $form = form_textfield(t('E-mail'), 'test', '', 32, 64, t('Enter an e-mail address to check if it will be denied or allowed.'));
   $form .= form_hidden('type', 'mail');
-  $form .= form_submit('Check e-mail');
+  $form .= form_submit(t('Check e-mail'));
   $output .= form($form);
 
   return $output;
