106 lines
3.5 KiB
PHP
106 lines
3.5 KiB
PHP
<?php
|
|
//
|
|
// phpSysInfo - A PHP System Information Script
|
|
// http://phpsysinfo.sourceforge.net/
|
|
//
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License
|
|
// as published by the Free Software Foundation; either version 2
|
|
// of the License, or (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
//
|
|
// $Id: jp.php,v 1.9 2005/12/31 17:25:02 bigmichi1 Exp $
|
|
|
|
$charset = 'euc-jp';
|
|
$text['title'] = 'システム情報';
|
|
|
|
$text['vitals'] = 'システム動作状況';
|
|
$text['hostname'] = 'ホスト名';
|
|
$text['ip'] = 'IPアドレス';
|
|
$text['kversion'] = 'カーネルバージョン(uname)';
|
|
$text['dversion'] = 'Distro Name';
|
|
$text['uptime'] = '連続稼働時間(uptime)';
|
|
$text['users'] = 'ログインユーザ数';
|
|
$text['loadavg'] = 'ロードアベレージ';
|
|
|
|
$text['hardware'] = 'ハードウェア情報';
|
|
$text['numcpu'] = 'CPU数';
|
|
$text['cpumodel'] = 'CPUモデル';
|
|
$text['cpuspeed'] = 'クロック速度(MHz)';
|
|
$text['busspeed'] = 'BUS Speed';
|
|
$text['cache'] = 'キャッシュサイズ';
|
|
$text['bogomips'] = 'System Bogomips';
|
|
|
|
$text['pci'] = 'PCIデバイス一覧';
|
|
$text['ide'] = 'IDEデバイス一覧';
|
|
$text['scsi'] = 'SCSIデバイス一覧';
|
|
$text['usb'] = 'USBデバイス一覧';
|
|
|
|
$text['netusage'] = 'ネットワーク利用状況';
|
|
$text['device'] = 'インタフェイス名';
|
|
$text['received'] = '受信サイズ';
|
|
$text['sent'] = '送信サイズ';
|
|
$text['errors'] = 'エラー/受信不能';
|
|
|
|
$text['connections'] = '現在接続しているネットワーク接続一覧';
|
|
|
|
$text['memusage'] = 'メモリ使用状況';
|
|
$text['phymem'] = '物理メモリ量';
|
|
$text['swap'] = 'ディスクスワップ';
|
|
|
|
$text['fs'] = 'マウント済みファイルシステム一覧';
|
|
$text['mount'] = 'マウントポイント';
|
|
$text['partition'] = 'ディスクパーティション';
|
|
|
|
$text['percent'] = '利用割合';
|
|
$text['type'] = 'ファイルシステム種別';
|
|
$text['free'] = '空き';
|
|
$text['used'] = '利用';
|
|
$text['size'] = '全体';
|
|
$text['totals'] = '合計';
|
|
|
|
$text['kb'] = 'KB';
|
|
$text['mb'] = 'MB';
|
|
$text['gb'] = 'GB';
|
|
|
|
$text['none'] = 'ありません';
|
|
|
|
$text['capacity'] = '容量';
|
|
|
|
$text['template'] = 'デザイン選択';
|
|
$text['language'] = '言語';
|
|
$text['submit'] = '送信';
|
|
$text['created'] = 'Created by';
|
|
|
|
$text['days'] = '日';
|
|
$text['hours'] = '時間';
|
|
$text['minutes'] = '分';
|
|
|
|
$text['temperature'] = 'Temperature';
|
|
$text['voltage'] = 'Voltage';
|
|
$text['fans'] = 'Fans';
|
|
$text['s_value'] = 'Value';
|
|
$text['s_min'] = 'Min';
|
|
$text['s_max'] = 'Max';
|
|
$text['s_div'] = 'Div';
|
|
$text['hysteresis'] = 'Hysteresis';
|
|
$text['s_limit'] = 'Limit';
|
|
$text['s_label'] = 'Label';
|
|
$text['degree_mark'] = 'ºC';
|
|
$text['voltage_mark'] = 'V';
|
|
$text['rpm_mark'] = 'RPM';
|
|
|
|
$text['app'] = 'Kernel + applications';
|
|
$text['buffers'] = 'Buffers';
|
|
$text['cached'] = 'Cached';
|
|
|
|
?>
|