diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-10-29 19:39:19 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-10-29 19:39:19 +0000 |
commit | 54aba8d56198335e4b9e46f649922fe8f6b37099 (patch) | |
tree | 53f9299311aecb09b4d3db8a4363698f372f8d06 /admin.php | |
parent | 38c6aeafaddbfedecb6903a5b82407b33854e692 (diff) | |
download | brdo-54aba8d56198335e4b9e46f649922fe8f6b37099.tar.gz brdo-54aba8d56198335e4b9e46f649922fe8f6b37099.tar.bz2 |
- Applied Stefaan's locale patches. The statistics.module patch failed to
apply.
Diffstat (limited to 'admin.php')
-rw-r--r-- | admin.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -16,7 +16,7 @@ function admin_page($mod) { <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html> <head> - <title><?php echo variable_get("site_name", "drupal"); ?> administration pages</title> + <title><?php echo variable_get("site_name", "drupal") . " " . t("administration pages"); ?></title> </head> <style> body { font-family: helvetica, arial; font-size: 12pt; } @@ -27,10 +27,10 @@ function admin_page($mod) { td { font-family: helvetica, arial; font-size: 12pt; } </style> <body bgcolor="#FFFFFF" link="#005599" vlink="#004499" alink="#FF0000"> - <h1>Administration</h1> + <h1><?php echo t("Administration"); ?></h1> <?php - $links[] = "<a href=\"index.php\">home</a>"; + $links[] = "<a href=\"index.php\">" . t("home") . "</a>"; foreach (module_list() as $name) { if (module_hook($name, "link")) { $links = array_merge($links, module_invoke($name, "link", "admin")); |