82 lines
2.7 KiB
PHP
82 lines
2.7 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: cs.php,v 1.1 2001/05/30 18:22:09 precision Exp $
|
|
|
|
$charset = 'iso-8859-2';
|
|
|
|
$text['title'] = 'Informace o systému';
|
|
|
|
$text['vitals'] = 'Zásadní informace';
|
|
$text['hostname'] = 'Jméno poèítaèe';
|
|
$text['ip'] = 'IP adresa';
|
|
$text['kversion'] = 'Verze jádra';
|
|
$text['uptime'] = 'Uptime';
|
|
$text['users'] = 'Pøihlá¹ených u¾ivatelù';
|
|
$text['loadavg'] = 'Prùmìru loadu';
|
|
|
|
$text['hardware'] = 'Hardwarové informace';
|
|
$text['numcpu'] = 'Procesory';
|
|
$text['cpumodel'] = 'Model';
|
|
$text['mhz'] = 'Frekvence';
|
|
$text['cache'] = 'Velikost cache';
|
|
$text['bogomips'] = 'Bogomipsy';
|
|
$text['pci'] = 'PCI zaøízení';
|
|
$text['ide'] = 'IDE zaøízení';
|
|
$text['scsi'] = 'SCSI zaøízení';
|
|
|
|
$text['netusage'] = 'Pou¾ívání sítì';
|
|
$text['device'] = 'Zaøízení';
|
|
$text['received'] = 'Pøijato';
|
|
$text['sent'] = 'Odesláno';
|
|
$text['errors'] = 'Chyby/Vypu¹tìno';
|
|
|
|
$text['memusage'] = 'Obsazení pamìti';
|
|
$text['phymem'] = 'Fyzická pamì»';
|
|
$text['swap'] = 'Swap';
|
|
|
|
$text['fs'] = 'Namountované souborové systémy';
|
|
$text['mount'] = 'Adresáø';
|
|
$text['partition'] = 'Partition';
|
|
|
|
$text['percent'] = 'Obsazeno';
|
|
$text['type'] = 'Typ';
|
|
$text['free'] = 'Volno';
|
|
$text['used'] = 'Pou¾ito';
|
|
$text['size'] = 'Velikost';
|
|
$text['totals'] = 'Celkem';
|
|
|
|
$text['kb'] = 'KB';
|
|
$text['mb'] = 'MB';
|
|
$text['gb'] = 'GB';
|
|
|
|
$text['none'] = '¾ádná';
|
|
|
|
$text['capacity'] = 'Kapacita';
|
|
|
|
$text['template'] = '©ablona';
|
|
$text['language'] = 'Jazyk';
|
|
$text['submit'] = 'Odeslat';
|
|
$text['created'] = 'Vytvoøeno pomocí';
|
|
|
|
$text['days'] = 'dnù';
|
|
$text['hours'] = 'hodin';
|
|
$text['minutes'] = 'minut';
|
|
?>
|