summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-05-01 09:34:17 +0000
committerDries Buytaert <dries@buytaert.net>2005-05-01 09:34:17 +0000
commit92b10946ace74a3fbb0907c4343e17f629affcac (patch)
tree8a75b22ffa2d698259ac4c843e00cc370cf00882
parentbca14f8991bc10835951479e583bacc87c254058 (diff)
downloadbrdo-92b10946ace74a3fbb0907c4343e17f629affcac.tar.gz
brdo-92b10946ace74a3fbb0907c4343e17f629affcac.tar.bz2
- Patch #21686 by Robin Monks: added two missing t() functions.
-rw-r--r--modules/user.module4
-rw-r--r--modules/user/user.module4
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/user.module b/modules/user.module
index 6e6f3f4d3..3322cdffa 100644
--- a/modules/user.module
+++ b/modules/user.module
@@ -1388,12 +1388,12 @@ function user_admin_access_check() {
$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;
diff --git a/modules/user/user.module b/modules/user/user.module
index 6e6f3f4d3..3322cdffa 100644
--- a/modules/user/user.module
+++ b/modules/user/user.module
@@ -1388,12 +1388,12 @@ function user_admin_access_check() {
$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;