Changeset 1069
- Timestamp:
- 07/28/2012 05:53:31 PM (10 months ago)
- Location:
- trunk/htdocs
- Files:
-
- 8 modified
-
cacher/cacher-zh-simplified.lang.php (modified) (1 diff)
-
cacher/cacher-zh-traditional.lang.php (modified) (1 diff)
-
cacher/cacher.css (modified) (1 diff)
-
cacher/cacher.php (modified) (1 diff)
-
common/common-zh-simplified.lang.php (modified) (1 diff)
-
common/common-zh-traditional.lang.php (modified) (1 diff)
-
common/common.css (modified) (1 diff)
-
common/common.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/htdocs/cacher/cacher-zh-simplified.lang.php
r1066 r1069 1 1 <?php 2 2 3 $strings = array(3 $strings += array( 4 4 'XCache Help' 5 5 => 'XCache 帮助信息', -
trunk/htdocs/cacher/cacher-zh-traditional.lang.php
r1066 r1069 1 1 <?php 2 2 3 $strings = array(3 $strings += array( 4 4 'XCache Help' 5 5 => 'XCache 說明訊息', -
trunk/htdocs/cacher/cacher.css
r1068 r1069 24 24 dd { margin: 0; } 25 25 .blockarea { overflow: hidden; width: 400px; } 26 .legends { padding-bottom: 8px; } 26 27 div.legend { float: left; border: 1px solid gray; font: 12px/12px monospace; } 27 28 div.legendtitle { float: left; padding: 2px; padding-right: 10px; font: 12px/12px monospace; } -
trunk/htdocs/cacher/cacher.php
r1068 r1069 34 34 if ($config['percent_graph_type'] != 'free') { 35 35 $v = 1 - $v; 36 }37 if ($k % 30 == 0) {38 $v = 1;39 36 } 40 37 $v = (int) ($v * $c); -
trunk/htdocs/common/common-zh-simplified.lang.php
r1056 r1069 1 1 <?php 2 2 3 $strings = array(3 $strings += array( 4 4 'Cacher' 5 5 => '缓存器', 6 6 'Coverager' 7 7 => '代码覆盖查看器', 8 'Document' 9 => '帮助文档', 10 'Get Support' 11 => '获取支持', 12 'Discusson' 13 => '讨论', 8 14 '' 9 15 => '', -
trunk/htdocs/common/common-zh-traditional.lang.php
r1056 r1069 1 1 <?php 2 2 3 $strings = array(3 $strings += array( 4 4 'Cacher' 5 5 => '快取器', 6 6 'Coverager' 7 7 => '代码覆盖查看器', 8 'Document' 9 => '幫助文檔', 10 'Get Support' 11 => '獲取支持', 12 'Discusson' 13 => '討論', 8 14 '' 9 15 => '', -
trunk/htdocs/common/common.css
r1068 r1069 70 70 #header #mainnav a:active, #header #mainnav a:hover { 71 71 color: red; 72 } 73 #header #mainnav a { 74 padding: 0 8px 0 8px; 72 75 } 73 76 #headerbase { -
trunk/htdocs/common/common.php
r1068 r1069 45 45 foreach (array( 46 46 "http://xcache.lighttpd.net/" => "XCache", 47 "http://xcache.lighttpd.net/wiki/DocTOC" => _("Document"), 48 "http://xcache.lighttpd.net/wiki/GetSupport" => _("Get Support"), 49 "https://groups.google.com/group/xcache/" => _("Discusson"), 47 50 "http://www.php.net/" => "PHP", 48 "http://www.lighttpd.net/" => "L IGHTTPD",51 "http://www.lighttpd.net/" => "Lighttpd", 49 52 ) as $url => $title) { 50 53 $html[] = sprintf('<a href="%s" target="_blank">%s</a>', $url, $title); … … 255 258 } 256 259 260 $strings = array(); 257 261 include(get_language_file("../common/common")); 258 262

