Index: /trunk/admin/common-en.lang.php
===================================================================
--- /trunk/admin/common-en.lang.php	(revision 124)
+++ /trunk/admin/common-en.lang.php	(revision 125)
@@ -1,5 +1,5 @@
 <?php
 
-// empty
+$GLOBALS['show_todo_strings'] = false;
 
 ?>
Index: /trunk/admin/common.php
===================================================================
--- /trunk/admin/common.php	(revision 124)
+++ /trunk/admin/common.php	(revision 125)
@@ -33,10 +33,12 @@
 			$file = get_language_file_ex($name, $l, $s);
 			if (isset($file)) {
+				$lang = $l;
 				break;
 			}
 			if (strpos($l, '-') !== false) {
-				$l = strtok($l, '-');
-				$file = get_language_file_ex($name, $l, $s);
+				$ll = strtok($l, '-');
+				$file = get_language_file_ex($name, $ll, $s);
 				if (isset($file)) {
+					$lang = $l;
 					break;
 				}
@@ -67,4 +69,7 @@
 
 include(get_language_file("common"));
+if (!isset($lang)) {
+	$lang = 'en-us';
+}
 
 ?>
Index: /trunk/admin/config.php.example
===================================================================
--- /trunk/admin/config.php.example	(revision 124)
+++ /trunk/admin/config.php.example	(revision 125)
@@ -17,4 +17,6 @@
 {
 	$o = str_replace($_SERVER['DOCUMENT_ROOT'],  "{DOCROOT}/", $o);
+	$xcachedir = realpath(dirname(__FILE__) . "/../");
+	$o = str_replace($xcachedir . "/", "{XCache}/", $o);
 	$o = str_replace("/home/", "{H}/", $o);
 	return $o;
Index: /trunk/admin/help.php
===================================================================
--- /trunk/admin/help.php	(revision 124)
+++ /trunk/admin/help.php	(revision 125)
@@ -5,9 +5,8 @@
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
-	<meta http-equiv="Content-Language" content="en-us" />
 <?php
 echo <<<HEAD
 	<meta http-equiv="Content-Type" content="text/html; charset=$charset" />
-	  <meta http-equiv="Content-Language" content="$lang" />
+	<meta http-equiv="Content-Language" content="$lang" />
 	<script type="text/javascript" src="tablesort.js" charset="$charset"></script>
 HEAD;
Index: /trunk/admin/xcache.css
===================================================================
--- /trunk/admin/xcache.css	(revision 124)
+++ /trunk/admin/xcache.css	(revision 125)
@@ -4,5 +4,5 @@
 table.cycles .col2 { background-color: #e0e0e0; }
 table.cycles th, table.cycles td { border-top: 1px solid white; border-left: 1px solid white; }
-table.cycles th { background-color: #707090; color: white; font-weight: bold; height: 20px; line-height: 16px; font-family: serif; }
+table.cycles th { background-color: #707090; color: white; font-weight: bold; height: 20px; line-height: 20px; font-family: serif; }
 th a { color: white; font-weight: bold; display: block; width: 100%; height: 100%; }
 .button { }
Index: /trunk/admin/xcache.tpl.php
===================================================================
--- /trunk/admin/xcache.tpl.php	(revision 124)
+++ /trunk/admin/xcache.tpl.php	(revision 125)
@@ -2,8 +2,8 @@
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
-	<meta http-equiv="Content-Language" content="en-us" />
 <?php
 echo <<<HEAD
 	<meta http-equiv="Content-Type" content="text/html; charset=$charset" />
+	<meta http-equiv="Content-Language" content="$lang" />
 	<script type="text/javascript" src="tablesort.js" charset="$charset"></script>
 HEAD;
