diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-06-12 20:24:11 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-06-12 20:24:11 +0000 |
commit | 9e5878ae45f2f846756f5e8a69371d5507ac57c1 (patch) | |
tree | 5da24a48e9d716eb72734eaa26d8c4e8f2937b5a /includes | |
parent | 3b35b435763e1a40e77c08b63f2f18c2b94e9ef4 (diff) | |
download | brdo-9e5878ae45f2f846756f5e8a69371d5507ac57c1.tar.gz brdo-9e5878ae45f2f846756f5e8a69371d5507ac57c1.tar.bz2 |
- Fixed "administer" not being locale'd. (req. by Gerhard)
Diffstat (limited to 'includes')
-rw-r--r-- | includes/theme.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index fc34e68b3..9610b504a 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -60,7 +60,7 @@ function theme_account($theme) { $content .= "<P>\n"; if (user_access($user)) { - $content .= "<LI><A HREF=\"admin.php\">administer ". variable_get("site_name", "drupal") ."</A></LI>\n"; + $content .= "<LI><A HREF=\"admin.php\">". strtr(t("administer %a"), array("%a" => variable_get("site_name", "drupal"))) ."</A></LI>\n"; $content .= "<P>\n"; } |