summaryrefslogtreecommitdiffstats
path: root/bin/install/add_user.inc
diff options
context:
space:
mode:
Diffstat (limited to 'bin/install/add_user.inc')
-rw-r--r--bin/install/add_user.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/install/add_user.inc b/bin/install/add_user.inc
index 7ce2a25b..d7655fc8 100644
--- a/bin/install/add_user.inc
+++ b/bin/install/add_user.inc
@@ -50,11 +50,11 @@ $email = isset($options['e']) ? $options['e'] : '';
$name = isset($options['n']) ? $options['n'] : '';
if (User::create($username, $name, $email, $password, $access)) {
- printf(_('Created %s user %s with password %s'), _($access), $username, $password);
+ printf(T_('Created %s user %s with password %s'), T_($access), $username, $password);
echo "\n";
}
else {
- echo _('User creation failed'), "\n";
+ echo T_('User creation failed'), "\n";
exit(1);
}