80 lines
2.8 KiB
PHP
80 lines
2.8 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: de.php,v 1.3 2001/08/06 18:50:15 precision Exp $
|
||
|
||
$text['title'] = 'System Information';
|
||
|
||
$text['vitals'] = 'System Vitalität';
|
||
$text['hostname'] = 'Zugewiesener Hostname';
|
||
$text['ip'] = 'Überwachte IP';
|
||
$text['kversion'] = 'Kernel Version';
|
||
$text['uptime'] = 'Betriebszeit';
|
||
$text['users'] = 'Eingeloggte Benutzer';
|
||
$text['loadavg'] = 'Auslastung';
|
||
|
||
$text['hardware'] = 'Hardware Übersicht';
|
||
$text['numcpu'] = 'Prozessoren';
|
||
$text['cpumodel'] = 'Modell';
|
||
$text['mhz'] = 'Chip MHz';
|
||
$text['cache'] = 'Cachegröße';
|
||
$text['bogomips'] = 'System Bogomips';
|
||
$text['pci'] = 'PCI Geräte';
|
||
$text['ide'] = 'IDE Geräte';
|
||
$text['scsi'] = 'SCSI Geräte';
|
||
|
||
$text['netusage'] = 'Netzwerk Auslastung';
|
||
$text['device'] = 'Schnittstelle';
|
||
$text['received'] = 'Empfangen';
|
||
$text['sent'] = 'Gesendet';
|
||
$text['errors'] = 'Err/Drop';
|
||
|
||
$text['memusage'] = 'Speicher Auslastung';
|
||
$text['phymem'] = 'Physikalischer Speicher';
|
||
$text['swap'] = 'Auslagerungsdatei auf Disk';
|
||
|
||
$text['fs'] = 'Gemountete Filesysteme';
|
||
$text['mount'] = 'Mount';
|
||
$text['partition'] = 'Partition';
|
||
|
||
$text['percent'] = 'Prozentuale Auslastung';
|
||
$text['type'] = 'Typ';
|
||
$text['free'] = 'Frei';
|
||
$text['used'] = 'Benutzt';
|
||
$text['size'] = 'Größe';
|
||
$text['totals'] = 'Insgesamt';
|
||
|
||
$text['kb'] = 'KB';
|
||
$text['mb'] = 'MB';
|
||
$text['gb'] = 'GB';
|
||
|
||
$text['none'] = 'keine';
|
||
|
||
$text['capacity'] = 'Kapazit<69>t';
|
||
|
||
$text['template'] = 'Vorlage';
|
||
$text['language'] = 'Sprache';
|
||
$text['submit'] = '<27>ndern';
|
||
$text['created'] = 'Erstellt von';
|
||
|
||
$text['days'] = 'Tage';
|
||
$text['hours'] = 'Stunden';
|
||
$text['minutes'] = 'Minuten';
|
||
?>
|