diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-05-31 20:29:30 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-05-31 20:29:30 +0000 |
commit | 38aaf5f35d8bc51f6792989a1a7732be5a1e7676 (patch) | |
tree | c782e563cf5862f5b03c066fd34171a7d2128f71 /modules/jabber.module | |
parent | b0ea30ed85b9e737bc6b3c7c5b7ec6ffe73c7803 (diff) | |
download | brdo-38aaf5f35d8bc51f6792989a1a7732be5a1e7676.tar.gz brdo-38aaf5f35d8bc51f6792989a1a7732be5a1e7676.tar.bz2 |
- Added missing translations and the like.
Diffstat (limited to 'modules/jabber.module')
-rw-r--r-- | modules/jabber.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/jabber.module b/modules/jabber.module index 0a15cc2de..98ddd7480 100644 --- a/modules/jabber.module +++ b/modules/jabber.module @@ -162,11 +162,11 @@ function jabber_user($type, $edit, $user) { switch ($type) { case "view_private": $result = user_get_authname($user, $module); - $output .= form_item("$name ID", $result); + $output .= form_item(t("$name ID"), $result); return $output; case "edit_form": $result = user_get_authname($user, $module); - $output .= form_textfield("$name ID", "authname_" . $module, $result, 30, 55, t("You may login to %s using a valid %id.", array("%s" => variable_get("site_name", "this web site"), "%id" => lm("$name ID", array("mod" => "user", "op" => "help"), $module)))); + $output .= form_textfield(t("$name ID"), "authname_" . $module, $result, 30, 55, t("You may login to %s using a valid %id.", array("%s" => variable_get("site_name", "this web site"), "%id" => lm("$name ID", array("mod" => "user", "op" => "help"), $module)))); return $output; case "edit_validate": return user_validate_authmap($user, $edit["authname_$module"], $module); |