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: jp.php,v 1.13 2007/02/18 19:11:31 bigmichi1 Exp $
21
 
22
$charset                = 'euc-jp';
23
$text['title']          = 'システム情報';
24
 
25
$text['vitals']         = 'システム動作状況';
26
$text['hostname']       = 'ホスト名';
27
$text['ip']             = 'IPアドレス';
28
$text['kversion']       = 'カーネルバージョン(uname)';
29
$text['dversion']       = 'Distro Name';
30
$text['uptime']         = '連続稼働時間(uptime)';
31
$text['users']          = 'ログインユーザ数';
32
$text['loadavg']        = 'ロードアベレージ';
33
 
34
$text['hardware']       = 'ハードウェア情報';
35
$text['numcpu']         = 'CPU数';
36
$text['cpumodel']       = 'CPUモデル';
37
$text['cpuspeed']       = 'クロック速度(MHz)';
38
$text['busspeed']       = 'BUS Speed';
39
$text['cache']          = 'キャッシュサイズ';
40
$text['bogomips']       = 'System 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['connections']    = '現在接続しているネットワーク接続一覧';
54
 
55
$text['memusage']       = 'メモリ使用状況';
56
$text['phymem']         = '物理メモリ量';
57
$text['swap']           = 'ディスクスワップ';
58
 
59
$text['fs']             = 'マウント済みファイルシステム一覧';
60
$text['mount']          = 'マウントポイント';
61
$text['partition']      = 'ディスクパーティション';
62
 
63
$text['percent']        = '利用割合';
64
$text['type']           = 'ファイルシステム種別';
65
$text['free']           = '空き';
66
$text['used']           = '利用';
67
$text['size']           = '全体';
68
$text['totals']         = '合計';
69
 
70
$text['kb']             = 'KB';
71
$text['mb']             = 'MB';
72
$text['gb']             = 'GB';
73
 
74
$text['none']           = 'ありません';
75
 
76
$text['capacity']       = '容量'; 
77
 
78
$text['template']       = 'デザイン選択';
79
$text['language']       = '言語';
80
$text['submit']         = '送信';
81
$text['created']        = 'Created by';
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['locale']         = 'en_US';
106
$text['gen_time']       = 'on %b %d, %Y at %I:%M %p';
107
 
108
?>