80 lines
2.7 KiB
PHP
80 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: is.php,v 1.1 2001/06/29 17:14:20 precision Exp $
|
|
|
|
$text['title'] = 'Kerfisupplýsingar';
|
|
|
|
$text['vitals'] = 'Helstu Upplýsingar';
|
|
$text['hostname'] = 'Vélarnafn';
|
|
$text['ip'] = 'IP Tala';
|
|
$text['kversion'] = 'Útgáfa kjarna';
|
|
$text['uptime'] = 'Uppitími';
|
|
$text['users'] = 'Notendur';
|
|
$text['loadavg'] = 'Meðal álag';
|
|
|
|
$text['hardware'] = 'Upplýsingar um vélbúnað';
|
|
$text['numcpu'] = 'Örgjörvi/Örgjörvar';
|
|
$text['cpumodel'] = 'Týpa';
|
|
$text['mhz'] = 'Hraði';
|
|
$text['cache'] = 'Stærð flýtiminnis';
|
|
$text['bogomips'] = 'Kerfis Bogomips';
|
|
$text['pci'] = 'PCI Jaðartæki';
|
|
$text['ide'] = 'IDE Jaðartæki';
|
|
$text['scsi'] = 'SCSI Jaðartæki';
|
|
|
|
$text['netusage'] = 'Notkun Nets';
|
|
$text['device'] = 'Jaðartæki';
|
|
$text['received'] = 'Tekið á móti';
|
|
$text['sent'] = 'Sent';
|
|
$text['errors'] = 'Villur/Drop';
|
|
|
|
$text['memusage'] = 'Minnisnotkun';
|
|
$text['phymem'] = 'Vinnsluminni';
|
|
$text['swap'] = 'Sýndarminni';
|
|
|
|
$text['fs'] = 'Tengd Skráarkerfi';
|
|
$text['mount'] = 'Tengipunktur';
|
|
$text['partition'] = 'Disksneið';
|
|
|
|
$text['percent'] = 'Prósent af Heildarstærð';
|
|
$text['type'] = 'Týpa';
|
|
$text['free'] = 'Laust';
|
|
$text['used'] = 'Notað';
|
|
$text['size'] = 'Stærð';
|
|
$text['totals'] = 'Samtals';
|
|
|
|
$text['kb'] = 'KB';
|
|
$text['mb'] = 'MB';
|
|
$text['gb'] = 'GB';
|
|
|
|
$text['none'] = 'ekkert';
|
|
|
|
$text['capacity'] = 'Heildarstærð';
|
|
|
|
$text['template'] = 'Template';
|
|
$text['language'] = 'Tungumál';
|
|
$text['submit'] = 'Senda';
|
|
$text['created'] = 'Búið til af';
|
|
|
|
$text['days'] = 'dagar';
|
|
$text['hours'] = 'klukkustundir';
|
|
$text['minutes'] = 'mínútur';
|
|
?>
|