108 lines
3.5 KiB
PHP
108 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: ko.php,v 1.13 2005/12/31 17:25:02 bigmichi1 Exp $
|
|
// Translated by Sungkook KIM - ace@aceteam.org
|
|
|
|
$charset = 'euc-kr';
|
|
|
|
$text['title'] = '시스템 정보';
|
|
|
|
$text['vitals'] = '현재 시스템 상황';
|
|
$text['hostname'] = '시스템의 호스트네임';
|
|
$text['ip'] = '시스템의 IP 주소';
|
|
$text['kversion'] = '커널 버젼';
|
|
$text['dversion'] = 'Distro Name';
|
|
$text['uptime'] = '실행 시간';
|
|
$text['users'] = '현재 접속자 수';
|
|
$text['loadavg'] = '평균 로드';
|
|
|
|
$text['hardware'] = '하드웨어 정보';
|
|
$text['numcpu'] = '프로세서 갯수';
|
|
$text['cpumodel'] = '프로세서 모델';
|
|
$text['cpuspeed'] = '칩셋 클럭';
|
|
$text['busspeed'] = 'BUS Speed';
|
|
$text['cache'] = '케쉬 사이즈';
|
|
$text['bogomips'] = '자체테스트 클럭';
|
|
|
|
$text['pci'] = 'PCI 장치';
|
|
$text['ide'] = 'IDE 장치';
|
|
$text['scsi'] = 'SCSI 장치';
|
|
$text['usb'] = 'USB 장치';
|
|
|
|
$text['netusage'] = ' 네트워크 사용정보';
|
|
$text['device'] = '장치';
|
|
$text['received'] = '받은 량';
|
|
$text['sent'] = '보낸 량';
|
|
$text['errors'] = '에러 / 실패';
|
|
|
|
$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'] = '만든이';
|
|
$text['locale'] = 'en_US';
|
|
$text['gen_time'] = 'on %b %d, %Y at %I:%M %p';
|
|
|
|
$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';
|
|
|
|
?>
|