|
Revision 123, 1.0 KB
(checked in by moo, 7 years ago)
|
|
Chinese translation for admin page
|
| Rev | Line | |
|---|
| [60] | 1 | <?php |
|---|
| [123] | 2 | include("./common.php"); |
|---|
| [60] | 3 | ?> |
|---|
| 4 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|---|
| 5 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 6 | <head> |
|---|
| 7 | <meta http-equiv="Content-Language" content="en-us" /> |
|---|
| 8 | <?php |
|---|
| 9 | echo <<<HEAD |
|---|
| 10 | <meta http-equiv="Content-Type" content="text/html; charset=$charset" /> |
|---|
| [123] | 11 | <meta http-equiv="Content-Language" content="$lang" /> |
|---|
| [60] | 12 | <script type="text/javascript" src="tablesort.js" charset="$charset"></script> |
|---|
| 13 | HEAD; |
|---|
| 14 | ?> |
|---|
| 15 | |
|---|
| 16 | <link rel="stylesheet" type="text/css" href="xcache.css" /> |
|---|
| [123] | 17 | <title><?php echo _T('XCache Administration Help'); ?></title> |
|---|
| [60] | 18 | <script> |
|---|
| 19 | function toggle(o) |
|---|
| 20 | { |
|---|
| 21 | o.style.display = o.style.display != 'block' ? 'block' : 'none'; |
|---|
| 22 | } |
|---|
| 23 | </script> |
|---|
| 24 | </head> |
|---|
| 25 | |
|---|
| 26 | <body> |
|---|
| [123] | 27 | <h1><?php echo _T('XCache Administration Help'); ?></h1> |
|---|
| [60] | 28 | <div id1="help"> |
|---|
| [123] | 29 | <?php include(get_language_file("help")); ?> |
|---|
| [60] | 30 | </div> |
|---|
| 31 | |
|---|
| [123] | 32 | <?php echo _T('See also'); ?>: <a href="http://trac.lighttpd.net/xcache/wiki/PhpIni">setting php.ini for XCache</a> in the <a href="http://trac.lighttpd.net/xcache/">XCache wiki</a> |
|---|
| [60] | 33 | </body> |
|---|
| 34 | </html> |
|---|