Subversion Repositories ALCASAR

Rev

Go to most recent revision | Details | Last modification | View Log

Rev Author Line No. Line
325 richard 1
<?php
2
//
3
// phpSysInfo - A PHP System Information Script
4
// http://phpsysinfo.sourceforge.net/
5
//
6
// This program is free software; you can redistribute it and/or
7
// modify it under the terms of the GNU General Public License
8
// as published by the Free Software Foundation; either version 2
9
// of the License, or (at your option) any later version.
10
//
11
// This program is distributed in the hope that it will be useful,
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
// GNU General Public License for more details.
15
//
16
// You should have received a copy of the GNU General Public License
17
// along with this program; if not, write to the Free Software
18
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
//
20
// $Id: cn.php,v 1.17 2007/02/18 19:11:31 bigmichi1 Exp $
21
 
22
$charset                = 'gb2312';
23
 
24
$text['title']          = '系统信息';
25
$text['vitals']         = '系统主要信息';
26
$text['hostname']       = '主机名称';
27
$text['ip']             = '主机对外IP';
28
$text['kversion']       = '内核版本';
29
$text['dversion']       = 'Distro Name';
30
$text['uptime']         = '开机时间';
31
$text['users']          = '在线使用者';
32
$text['loadavg']        = '平均负载';
33
 
34
$text['hardware']       = '硬件信息';
35
$text['numcpu']         = '处理器数量';
36
$text['cpumodel']       = 'CPU型号';
37
$text['cpuspeed']       = '芯片速度';
38
$text['busspeed']       = 'BUS Speed';
39
$text['cache']          = 'Cache大小';
40
$text['bogomips']       = '系统Bogomips';
41
 
42
$text['pci']            = 'PCI设备';
43
$text['ide']            = 'IDE设备';
44
$text['scsi']           = 'SCSI设备';
45
$text['usb']            = 'USB设备';
46
 
47
$text['netusage']       = '网络负载';
48
$text['device']         = '网络设备';
49
$text['received']       = '接收';
50
$text['sent']           = '送出';
51
$text['errors']         = '错误/中断';
52
 
53
$text['memusage']       = '内存使用量';
54
$text['phymem']         = '物理内存';
55
$text['swap']           = '虚拟内存(交换分区)';
56
 
57
$text['fs']             = '已挂载分区';
58
$text['mount']          = '挂载路径';
59
$text['partition']      = '物理磁盘';
60
 
61
$text['percent']        = '使用量百分比';
62
$text['type']           = '文件系统类型';
63
$text['free']           = '剩余空间';
64
$text['used']           = '已用空间';
65
$text['size']           = '总容量';
66
$text['totals']         = '总使用量';
67
 
68
$text['kb']             = 'KB';
69
$text['mb']             = 'MB';
70
$text['gb']             = 'GB';
71
 
72
$text['none']           = '无';
73
 
74
$text['capacity']       = '容量';
75
 
76
$text['template']       = '主题';
77
$text['language']       = '语言';
78
$text['submit']         = '确定';
79
$text['created']        = '生成 By';
80
$text['locale']         = 'zh_CN.eucCN';
81
$text['gen_time']       = 'on %b %d, %Y at %I:%M %p';
82
 
83
$text['days']           = '天';
84
$text['hours']          = '小时';
85
$text['minutes']        = '分钟';
86
 
87
$text['temperature']    = 'Temperature';
88
$text['voltage']        = 'Voltage';
89
$text['fans']           = 'Fans';
90
$text['s_value']        = 'Value';
91
$text['s_min']          = 'Min';
92
$text['s_max']          = 'Max';
93
$text['hysteresis']     = 'Hysteresis';
94
$text['s_limit']        = 'Limit';
95
$text['s_label']        = 'Label';
96
$text['degreeC']        = '&deg;C';
97
$text['degreeF']        = '&deg;F';
98
$text['voltage_mark']   = 'V';
99
$text['rpm_mark']       = 'RPM';
100
 
101
$text['app']		= 'Kernel + applications';
102
$text['buffers']	= 'Buffers';
103
$text['cached']		= 'Cached';
104
 
105
$text['connections']    = 'Established Network Connections';
106
?>